Skip to content

Commit 33f4d14

Browse files
Merge pull request NREL#184 from softwareengineerprogrammer/main
Parse Surface Application field in client
2 parents d1bf1f2 + eb7869c commit 33f4d14

File tree

11 files changed

+23
-10
lines changed

11 files changed

+23
-10
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.4.24
2+
current_version = 3.4.25
33
commit = True
44
tag = True
55

.cookiecutterrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ default_context:
5454
sphinx_doctest: "no"
5555
sphinx_theme: "sphinx-py3doc-enhanced-theme"
5656
test_matrix_separate_coverage: "no"
57-
version: 3.4.24
57+
version: 3.4.25
5858
version_manager: "bump2version"
5959
website: "https://github.com/NREL"
6060
year_from: "2023"

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ Free software: `MIT license <LICENSE>`__
4747
:alt: Supported implementations
4848
:target: https://pypi.org/project/geophires-x
4949

50-
.. |commits-since| image:: https://img.shields.io/github/commits-since/softwareengineerprogrammer/GEOPHIRES-X/v3.4.24.svg
50+
.. |commits-since| image:: https://img.shields.io/github/commits-since/softwareengineerprogrammer/GEOPHIRES-X/v3.4.25.svg
5151
:alt: Commits since latest release
52-
:target: https://github.com/softwareengineerprogrammer/GEOPHIRES-X/compare/v3.4.24...main
52+
:target: https://github.com/softwareengineerprogrammer/GEOPHIRES-X/compare/v3.4.25...main
5353

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

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
year = '2023'
1919
author = 'NREL'
2020
copyright = f'{year}, {author}'
21-
version = release = '3.4.24'
21+
version = release = '3.4.25'
2222

2323
pygments_style = 'trac'
2424
templates_path = ['./templates']

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def read(*names, **kwargs):
1313

1414
setup(
1515
name='geophires-x',
16-
version='3.4.24',
16+
version='3.4.25',
1717
license='MIT',
1818
description='GEOPHIRES is a free and open-source geothermal techno-economic simulator.',
1919
long_description='{}\n{}'.format(

src/geophires_x/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '3.4.24'
1+
__version__ = '3.4.25'

src/geophires_x_client/geophires_x_result.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ class GeophiresXResult:
2727
'SUMMARY OF RESULTS': [
2828
_StringValueField('End-Use Option'),
2929
_StringValueField('End-Use'),
30+
_StringValueField('Surface Application'),
3031
'Average Net Electricity Production',
3132
'Electricity breakeven price',
3233
'Average Direct-Use Heat Production',

tests/examples/example10_HP.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Simulation Metadata
1313
***SUMMARY OF RESULTS***
1414

1515
End-Use Option: Direct-Use Heat
16-
Surface Application: Heat Pump
16+
Surface Application: Heat Pump
1717
Average Direct-Use Heat Production: 16.64 MW
1818
Direct-Use heat breakeven price (LCOH): 14.49 USD/MMBTU
1919
Number of production wells: 2

tests/examples/example11_AC.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Simulation Metadata
1313
***SUMMARY OF RESULTS***
1414

1515
End-Use Option: Direct-Use Heat
16-
Surface Application: Absorption Chiller
16+
Surface Application: Absorption Chiller
1717
Average Direct-Use Heat Production: 8.49 MW
1818
Average Cooling Production: 5.50 MW
1919
Direct-Use Cooling Breakeven Price (LCOC): 17.52 USD/MMBTU

tests/examples/example12_DH.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Simulation Metadata
1313
***SUMMARY OF RESULTS***
1414

1515
End-Use Option: Direct-Use Heat
16-
Surface Application: District Heating
16+
Surface Application: District Heating
1717
Average Direct-Use Heat Production: 19.15 MW
1818
Annual District Heating Demand: 242.90 GWh/year
1919
Average Annual Geothermal Heat Production: 144.70 GWh/year

0 commit comments

Comments
 (0)