Skip to content

Commit

Permalink
Merge pull request #116 from softwareengineerprogrammer/main
Browse files Browse the repository at this point in the history
Monte Carlo modularization/standardization first pass
  • Loading branch information
softwareengineerprogrammer authored Feb 12, 2024
2 parents 4e47136 + c2f7e1e commit 74181aa
Show file tree
Hide file tree
Showing 37 changed files with 923 additions and 439 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.3.4
current_version = 3.4.0
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion .cookiecutterrc
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ default_context:
sphinx_doctest: "no"
sphinx_theme: "sphinx-py3doc-enhanced-theme"
test_matrix_separate_coverage: "no"
version: 3.3.4
version: 3.4.0
version_manager: "bump2version"
website: "https://github.com/NREL"
year_from: "2023"
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ Changelog
GEOPHIRES-X (2023-2024)
------------------------

3.4
^^^
Monte Carlo moved to dedicated module

`diff <https://github.com/NREL/GEOPHIRES-X/compare/v3.3.0...v3.4.0>`__


3.3
^^^

Expand Down
9 changes: 7 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ Free software: `MIT license <LICENSE>`__
:alt: Supported implementations
:target: https://pypi.org/project/geophires-x

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

.. |docs| image:: https://readthedocs.org/projects/GEOPHIRES-X/badge/?style=flat
:target: https://nrel.github.io/GEOPHIRES-X
Expand Down Expand Up @@ -281,6 +281,11 @@ Extending GEOPHIRES-X

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

Monte Carlo
-----------

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

Other Documentation:
--------------------
The `GEOPHIRES v2.0 (previous version's) user manual <References/GEOPHIRES%20v2.0%20User%20Manual.pdf>`__ describes GEOPHIRES's high-level software architecture.
Expand Down
114 changes: 114 additions & 0 deletions docs/Monte-Carlo-User-Guide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
# GEOPHIRES Monte Carlo User Guide

## Example Setup

Create a project with the following structure, including GEOPHIRES in `requirements.txt` and setting up `venv` with `virtualenv`:

```
├── GEOPHIRES-example1.txt
├── MC_GEOPHIRES_Settings_file.txt
├── main.py
├── requirements.txt
└── venv/
```

In `main.py`:

```python
from pathlib import Path

from geophires_monte_carlo import GeophiresMonteCarloClient, MonteCarloResult, MonteCarloRequest, SimulationProgram


def monte_carlo():
client = GeophiresMonteCarloClient()

result: MonteCarloResult = client.get_monte_carlo_result(
MonteCarloRequest(
SimulationProgram.GEOPHIRES,

# Files from tests/geophires_monte_carlo_tests - copy these into the same directory as main.py
Path('GEOPHIRES-example1.txt').absolute(),
Path('MC_GEOPHIRES_Settings_file.txt').absolute(),
output_file=Path('MC_GEOPHIRES_Result.txt').absolute()
)
)

with open(result.output_file_path, 'r') as result_output_file:
result_display = result_output_file.read()
print(f'MC result:\n{result_display}')

if __name__ == '__main__':
monte_carlo()
```

To run:
```
(venv) python main.py
[...]
[2024-02-09 07:47:18][INFO] Complete geophires_monte_carlo.MC_GeoPHIRES3: main
MC result:
Electricity breakeven price, Project NPV, Gradient 1, Reservoir Temperature, Utilization Factor, Ambient Temperature
38.81, -42.59, (Gradient 1:30.09736131122952;Reservoir Temperature:320.2888549098197;Utilization Factor:0.9295528406892491;Ambient Temperature:20.684620766378806;)
17.81, -42.76, (Gradient 1:39.47722802709689;Reservoir Temperature:306.71578141214087;Utilization Factor:0.7604874092668568;Ambient Temperature:20.39891267899405;)
9.91, -41.95, (Gradient 1:50.24142993501238;Reservoir Temperature:311.3876336705825;Utilization Factor:0.8657162766204807;Ambient Temperature:20.205604589516913;)
61.37, -43.34, (Gradient 1:28.230745766883796;Reservoir Temperature:324.25115143107104;Utilization Factor:0.8308351836890867;Ambient Temperature:20.615118153663598;)
8.76, -41.76, (Gradient 1:54.66070153603035;Reservoir Temperature:319.6097066730564;Utilization Factor:0.855785650134492;Ambient Temperature:19.359218133245772;)
7.58, -37.63, (Gradient 1:57.53774721757885;Reservoir Temperature:318.6354560118773;Utilization Factor:0.9305717468323405;Ambient Temperature:20.011047903204176;)
9.35, -41.03, (Gradient 1:51.20593175130416;Reservoir Temperature:311.40737612727423;Utilization Factor:0.8876035819161642;Ambient Temperature:19.968497775278948;)
18.11, -42.68, (Gradient 1:38.66016637029756;Reservoir Temperature:310.20708430352124;Utilization Factor:0.7640202889998118;Ambient Temperature:18.805190553693578;)
10.07, -40.41, (Gradient 1:47.876595779164845;Reservoir Temperature:310.4061695000305;Utilization Factor:0.9228147348375185;Ambient Temperature:20.119411582814514;)
23.08, -41.38, (Gradient 1:33.342513206728185;Reservoir Temperature:305.48937077249826;Utilization Factor:0.9361923986407424;Ambient Temperature:18.423715643246567;)
Electricity breakeven price:
minimum: 7.58
maximum: 61.37
median: 13.94
average: 20.48
mean: 20.48
standard deviation: 16.36
bin values (as percentage): [0.09295408 0.18590816 0.18590816 0. 0. 0.
0. 0. 0. 0.18590816 0. 0.
0. 0. 0.09295408 0. 0. 0.
0. 0. 0. 0. 0. 0.
0. 0. 0. 0. 0. 0.09295408
0. 0. 0. 0. 0. 0.
0. 0. 0. 0. 0. 0.
0. 0. 0. 0. 0. 0.
0. 0.09295408]
bin edges: [ 7.58 8.6558 9.7316 10.8074 11.8832 12.959 14.0348 15.1106 16.1864
17.2622 18.338 19.4138 20.4896 21.5654 22.6412 23.717 24.7928 25.8686
26.9444 28.0202 29.096 30.1718 31.2476 32.3234 33.3992 34.475 35.5508
36.6266 37.7024 38.7782 39.854 40.9298 42.0056 43.0814 44.1572 45.233
46.3088 47.3846 48.4604 49.5362 50.612 51.6878 52.7636 53.8394 54.9152
55.991 57.0668 58.1426 59.2184 60.2942 61.37 ]
Project NPV:
minimum: -43.34
maximum: -37.63
median: -41.86
average: -41.55
mean: -41.55
standard deviation: 1.56
bin values (as percentage): [0.87565674 0. 0. 0. 0. 1.75131349
0.87565674 0. 0. 0. 0. 0.
0.87565674 0.87565674 0. 0. 0. 0.87565674
0. 0. 0.87565674 0. 0. 0.
0. 0.87565674 0. 0. 0. 0.
0. 0. 0. 0. 0. 0.
0. 0. 0. 0. 0. 0.
0. 0. 0. 0. 0. 0.
0. 0.87565674]
bin edges: [-43.34 -43.2258 -43.1116 -42.9974 -42.8832 -42.769 -42.6548 -42.5406
-42.4264 -42.3122 -42.198 -42.0838 -41.9696 -41.8554 -41.7412 -41.627
-41.5128 -41.3986 -41.2844 -41.1702 -41.056 -40.9418 -40.8276 -40.7134
-40.5992 -40.485 -40.3708 -40.2566 -40.1424 -40.0282 -39.914 -39.7998
-39.6856 -39.5714 -39.4572 -39.343 -39.2288 -39.1146 -39.0004 -38.8862
-38.772 -38.6578 -38.5436 -38.4294 -38.3152 -38.201 -38.0868 -37.9726
-37.8584 -37.7442 -37.63 ]
```

## Documentation

See [module documentation](reference/geophires_monte_carlo.html)
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
year = '2023'
author = 'NREL'
copyright = f'{year}, {author}'
version = release = '3.3.4'
version = release = '3.4.0'

pygments_style = 'trac'
templates_path = ['./templates']
Expand Down
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Contents
overview
parameters
How-to-extend-GEOPHIRES-X
Monte-Carlo-User-Guide
.. reference/index
Indices and tables
Expand Down
12 changes: 12 additions & 0 deletions docs/reference/geophires_monte_carlo.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
geophires_monte_carlo
=====================

.. testsetup::

from geophires_monte_carlo import *

.. automodule:: geophires_monte_carlo
:members:

.. automodule:: geophires_monte_carlo.MC_GeoPHIRES3
:members:
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def read(*names, **kwargs):

setup(
name='geophires-x',
version='3.3.4',
version='3.4.0',
license='MIT',
description='GEOPHIRES is a free and open-source geothermal techno-economic simulator.',
long_description='{}\n{}'.format(
Expand Down
3 changes: 3 additions & 0 deletions src/geophires_monte_carlo/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/MC_GEOPHIRES_Result.txt
/MC_HIP_Result.txt
*.png
10 changes: 10 additions & 0 deletions src/geophires_monte_carlo/Examples/MC_GEOPHIRES_Settings_file.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
INPUT, Gradient 1, uniform, 25, 60
INPUT, Reservoir Temperature, normal, 250, 10
INPUT, Utilization Factor,uniform, 0.7, 0.95
INPUT, Ambient Temperature,triangular, 15, 20, 25
OUTPUT, Average Net Electricity Production
OUTPUT, Average Production Temperature
OUTPUT, Average Annual Total Electricity Generation
ITERATIONS, 250
MC_OUTPUT_FILE, MC_GEOPHIRES_Result.txt
PYTHON_PATH, ..\..\venv\Scripts\python.exe
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ INPUT, Ambient Temperature,triangular, 15, #, 25
OUTPUT, Average Net Electricity Production
OUTPUT, Average Annual Total Electricity Generation
ITERATIONS, 10
MC_OUTPUT_FILE, MC_Result.txt
MC_OUTPUT_FILE, MC_GEOPHIRES_Result_2.txt
12 changes: 12 additions & 0 deletions src/geophires_monte_carlo/Examples/MC_HIP_Settings_file.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
INPUT, Formation Porosity, uniform, 9.0, 28.0
INPUT, Reservoir Area, uniform, 50.0, 120.0
INPUT, Reservoir Thickness, uniform, 0.122, 0.299
INPUT, Reservoir Temperature, uniform, 130, 170
INPUT, Rejection Temperature, uniform, 20, 33
OUTPUT, Available Heat (fluid)
OUTPUT, Producible Heat (fluid)
OUTPUT, Producible Heat/Unit Area (fluid)
OUTPUT, Producible Electricity (fluid)
OUTPUT, Producible Electricity/Unit Area (fluid)
ITERATIONS, 250
MC_OUTPUT_FILE, MC_HIP_Result.txt
Loading

0 comments on commit 74181aa

Please sign in to comment.