NREL / GEOPHIRES-X

MIT License
32 stars 25 forks source link

======== Overview

|GEOPHIRES Logo|

.. |GEOPHIRES Logo| image:: geophires-logo.png :alt: GEOPHIRES Logo

GEOPHIRES is a free and open-source geothermal techno-economic simulator. GEOPHIRES combines reservoir, wellbore, surface plant, and economic models to estimate the capital and operation and maintenance costs, instantaneous and lifetime energy production, and overall levelized cost of energy of a geothermal plant. Various reservoir conditions (EGS, doublets, etc.) and end-use options (electricity, direct-use heat, cogeneration) can be modeled. Users are encouraged to build upon to the GEOPHIRES framework to implement their own correlations and models. See the Documentation_ section below for more information.

GEOPHIRES-X is the successor version to GEOPHIRES v2.0 <https://github.com/NREL/GEOPHIRES-v2> (see CHANGELOG <CHANGELOG.rst> for more info).

Free software: MIT license <LICENSE>__

.. start-badges

.. list-table:: :stub-columns: 1

* - tests
  - | |github-actions|
    | |coverage|
* - package
  - | |commits-since|
    | |code-style|
    | |license|

.. TODO add the following to package badge list once PyPy distribution enabled: |version| |wheel| |supported-versions| |supported-implementations| .. * - docs .. - | |docs|

.. |github-actions| image:: https://github.com/NREL/GEOPHIRES-X/actions/workflows/github-actions.yml/badge.svg :alt: GitHub Actions Build Status :target: https://github.com/NREL/GEOPHIRES-X/actions

.. |version| image:: https://img.shields.io/pypi/v/geophires-x.svg :alt: PyPI Package latest release :target: https://pypi.org/project/geophires-x

.. |wheel| image:: https://img.shields.io/pypi/wheel/geophires-x.svg :alt: PyPI Wheel :target: https://pypi.org/project/geophires-x

.. |supported-versions| image:: https://img.shields.io/pypi/pyversions/geophires-x.svg :alt: Supported versions :target: https://pypi.org/project/geophires-x

.. |supported-implementations| image:: https://img.shields.io/pypi/implementation/geophires-x.svg :alt: Supported implementations :target: https://pypi.org/project/geophires-x

.. |commits-since| image:: https://img.shields.io/github/commits-since/softwareengineerprogrammer/GEOPHIRES-X/v3.6.6.svg :alt: Commits since latest release :target: https://github.com/softwareengineerprogrammer/GEOPHIRES-X/compare/v3.6.6...main

.. |docs| image:: https://readthedocs.org/projects/GEOPHIRES-X/badge/?style=flat :target: https://nrel.github.io/GEOPHIRES-X :alt: Documentation Status

.. |coverage| image:: https://coveralls.io/repos/github/NREL/GEOPHIRES-X/badge.svg?branch=main :target: https://coveralls.io/github/NREL/GEOPHIRES-X?branch=main :alt: Coverage Status

.. |code-style| image:: https://img.shields.io/badge/code%20style-black-000000.svg :target: https://github.com/NREL/GEOPHIRES-X/blob/main/.pre-commit-config.yaml :alt: Code Style: black

.. |license| image:: https://img.shields.io/badge/license-MIT-green.svg :target: https://github.com/NREL/GEOPHIRES-X/blob/main/LICENSE :alt: MIT license

.. end-badges

Getting Started

Web Interface

A web interface is available at gtp.scientificwebservices.com/geophires <https://gtp.scientificwebservices.com/geophires>__.

The short URL bit.ly/geophires <https://bit.ly/geophires>__ redirects to the same location.

Installation

Pip Package ^^^^^^^^^^^

If you do not need to view or edit GEOPHIRES-X source code, you can consume GEOPHIRES-X as a regular, non-editable python package::

pip3 install https://github.com/NREL/GEOPHIRES-X/archive/main.zip

.. (Eventually package will be published to PyPi, enabling pip install geophires-x)

Editable Installation (Recommended) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

An editable installation is recommended for most users. It will allow you to run GEOPHIRES-X locally, view its Python files in an IDE or text editor, and create your own extensions as described in How to extend GEOPHIRES-X <docs/How-to-extend-GEOPHIRES-X.md#how-to-extend-geophires-x>__.

Prerequisites:

  1. Python 3.8+: You must have Python 3.8 or later installed on your machine. Python can be downloaded at python.org/downloads <https://www.python.org/downloads/>__. (On Ubuntu: alias python=python3 if not aliased already.)
  2. Git <https://git-scm.com/book/en/v2/Getting-Started-Installing-Git>__
  3. Virtual environment (aka virtualenv): Install virtual environment on your machine <https://virtualenv.pypa.io/en/latest/installation.html#via-pip>__ if you don't have it already
  4. On Windows, you will need Admin privileges (required to successfully activate the virtual environment)

Steps:

  1. Open a command line (i.e. Terminal on Mac, PowerShell on Windows)

  2. Create a directory for GEOPHIRES::

    mkdir my-geophires-project cd my-geophires-project

  3. Create a virtual environment::

    python -m venv venv

  4. Source the virtual environment:

    • Windows::

      venv\Scripts\activate

    • macOS/Linux::

      source venv/bin/activate

  5. Install the geophires-x package::

    pip3 install -e git+https://github.com/NREL/GEOPHIRES-X.git#egg=geophires-x --src .

  6. Run on an example file::

    cd geophires-x cd tests cd examples python -mgeophires_x example1.txt

  7. View and edit source code by opening the my-geophires-project/ directory in an IDE or editor such as PyCharm <https://www.jetbrains.com/pycharm/>, Spyder <https://www.spyder-ide.org/>, or Visual Studio Code <https://code.visualstudio.com/>__. The GEOPHIRES-X source code will be located in the my-geophires-project/geophires-x directory. You can add your own python files in my-geophires-x/ that use the source as a module as shown below.

To update the editable installation with the latest GEOPHIRES version::

cd geophires-x
git pull
# resolve merge conflicts, if any
pip install -e .

Usage

Python ^^^^^^

Example usage in Python:

.. code:: python

from geophires_x_client import GeophiresXClient
from geophires_x_client.geophires_input_parameters import GeophiresInputParameters

client = GeophiresXClient()
result = client.get_geophires_result(
            GeophiresInputParameters({
                "Gradient 1": "69",
                "Reservoir Depth": "5",
                "End-Use Option": "1",
                "Power Plant Type": "4"
            })
        )

with open(result.output_file_path, 'r') as f:
    print(f.read())

If you followed the editable installation example above, put this code in my-geophires-project/main.py, then run::

python main.py

You will then see output including a case report::

(venv) ➜  my-geophires-project python main.py
No valid plant outlet pressure provided. GEOPHIRES will assume default plant outlet pressure (100 kPa)
No valid plant outlet pressure provided. GEOPHIRES will assume default plant outlet pressure (100 kPa)

                               *****************
                               ***CASE REPORT***
                               *****************

Simulation Metadata
----------------------
 GEOPHIRES Version: 3.4.42
 Simulation Date: 2024-07-08
 Simulation Time:  10:07
 Calculation Time:      0.047 sec

                           ***SUMMARY OF RESULTS***

      End-Use Option: Electricity
      Average Net Electricity Production:                    23.94 MW
      Electricity breakeven price:                            5.04 cents/kWh

[...]

You may also pass parameters as a text file:

.. code:: python

from pathlib import Path
from geophires_x_client import GeophiresXClient
from geophires_x_client.geophires_input_parameters import GeophiresInputParameters

# https://github.com/NREL/GEOPHIRES-X/blob/main/tests/examples/example1.txt
example_file_path = Path('geophires-x/tests/examples/example1.txt').absolute()

client = GeophiresXClient()
result = client.get_geophires_result(
            GeophiresInputParameters(from_file_path=example_file_path)
        )

with open(result.output_file_path, 'r') as f:
    print(f.read())

test_geophires_x.py <tests/test_geophires_x.py> has additional examples of how to consume and call `GeophiresXClient <src/geophires_x_client/init.py#L14>`.

Command Line ^^^^^^^^^^^^

If you installed with pip (editable or non-), you may run GEOPHIRES from the command line, passing your input file as an argument::

python -mgeophires_x my_geophires_input.txt

You may also optionally pass the output file as well::

python -mgeophires_x my_geophires_input.txt my_geophires_result.out

(If you do not pass an output file argument a default name will be used.)

Documentation

GEOPHIRES combines reservoir, wellbore, surface plant, and economic and cost models and correlations to estimate the capital and operation and maintenance costs, instantaneous and lifetime energy production, and overall levelized cost of energy of a geothermal plant.

The high-level software architecture is illustrated in the diagram below. Green, orange and blue rectangles refer to internal GEOPHIRES components, external user-interface components, and external reservoir simulators (TOUGH2), respectively. Rectangles with solid outline are always executed during a simulation run; rectangles with dashed outline refer to optional or user-provided components.

|GEOPHIRES Architecture Diagram|

.. |GEOPHIRES Architecture Diagram| image:: References/geophires-architecture-diagram_2024-11-20.png :alt: GEOPHIRES Architecture Diagram

GEOPHIRES has a variety of different reservoir models including (1) Multiple parallel fractures model; (2) 1-Dimensional linear heat sweep model; (3) M/A thermal drawdown parameter model; (4) Percentage temperature drawdown model; (5) User-provided reservoir temperature production data; (6) Coupling to TOUGH2 external reservoir simulator; (7) SUTRA: Reservoir Thermal Energy Storage (RTES; also known as Underground Thermal Energy Storage - UTES); (8) Slender Body Theory (SBT); (9) Cylindrical.

GEOPHIRES can simulate three different end-uses of the geothermal heat: (1) direct-use heat (e.g. for industrial processing heating or residential space heating); (2) electricity (with subcritical ORC, supercritical ORC, single-flash, or double-flash plant); (3) co-generation of heat and electricity. The co-generation option considers bottoming cycle, topping cycle, and parallel cycle.

GEOPHIRES has 4 economic models to calculate the levelized cost of heat or electricity: (1) fixed charge rate (FCR) model; (2) standard discounting levelized cost model; (3) BICYCLE model; (4) CLGS.

The capital and O&M costs for the different geothermal system components (exploration, well drilling, surface plant, etc.) are either provided by the user or calculated with built-in correlations.

Parameters

Available parameters are documented in the Parameters Reference <https://nrel.github.io/GEOPHIRES-X/parameters.html>__.

Note that many parameters are interrelated and/or conditionally dependent on one another; reviewing the GEOPHIRES example(s) relevant to your use case in the following section is strongly recommended to gain a working understanding of how to construct valid sets of input parameters.

Examples

GEOPHIRES includes a variety of example input files demonstrating its features for different types of geothermal systems and case studies of real-world geothermal projects. Starting with an existing GEOPHIRES example that is similar to your intended use/application can be an easier approach to using GEOPHIRES than constructing your own inputs from scratch.

Example input .txt files and corresponding case report .out files are available in the tests/examples directory <tests/examples>__ of the repository. Example-specific web interface deeplinks are listed in the Link column.

.. list-table:: :widths: 50 40 5 5 :header-rows: 1

*GEOPHIRES v2.0 input file

Videos

NREL GEOPHIRES Workshop: Features Overview & Examples <https://www.youtube.com/watch?v=KsFvpvXjOB4>__

NREL GEOPHIRES Workshop: Case Studies <https://youtu.be/uMUDTUL6yWg>__

HIP-RA: Heat in Place - Resource Assessment

HIP-RA-X README <src/hip_ra_x/README.md>__

HIP-RA-X Parameters Reference <https://nrel.github.io/GEOPHIRES-X/hip_ra_x_parameters.html>__

A HIP-RA web interface is available at gtp.scientificwebservices.com/hip-ra <https://gtp.scientificwebservices.com/hip-ra>__.

Monte Carlo

Monte Carlo User Guide <https://softwareengineerprogrammer.github.io/GEOPHIRES-X/Monte-Carlo-User-Guide.html>__

A Monte Carlo web interface is available at gtp.scientificwebservices.com/monte-carlo <https://gtp.scientificwebservices.com/monte-carlo>__.

Extending GEOPHIRES-X

How to extend GEOPHIRES-X <docs/How-to-extend-GEOPHIRES-X.md#how-to-extend-geophires-x>__ user guide

Extension example: SUTRA <https://github.com/NREL/GEOPHIRES-X/commit/984cb4da1505667adb2c45cb1297cab6550774bd#diff-5b1ea85ce061b9a1137a46c48d2d293126224d677d3ab38d9b2f4dcfc4e1674e>__

Additional Documentation

Theoretical basis for GEOPHIRES: GEOPHIRES v2.0: updated geothermal techno‐economic simulation tool <References/Beckers%202019%20GEOPHIRES%20v2.pdf>; accompanying GEOPHIRES v2.0 user manual <References/GEOPHIRES%20v2.0%20User%20Manual.pdf>.

Additional materials can be found in /References </References>__.

Development

If you are interested in sharing your extensions with others, or even contributing them back to this repository, you may want to follow the Development instructions <CONTRIBUTING.rst#development>__. (You can also create a fork after doing an editable install so don't worry about picking this method if you're unsure.)

.. TODO feedback section - why user feedback is important/valuable, how to file issues/contact authors

.. TODO FAQ/trivia section - "HDR" naming (HDR.out, HDR.json) is for Hot Dry Rock