diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 00b5b0cb..999ece17 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.9.7 +current_version = 3.9.8 commit = True tag = True diff --git a/.cookiecutterrc b/.cookiecutterrc index 6f45e716..4ce2ac72 100644 --- a/.cookiecutterrc +++ b/.cookiecutterrc @@ -54,7 +54,7 @@ default_context: sphinx_doctest: "no" sphinx_theme: "sphinx-py3doc-enhanced-theme" test_matrix_separate_coverage: "no" - version: 3.9.7 + version: 3.9.8 version_manager: "bump2version" website: "https://github.com/NREL" year_from: "2023" diff --git a/README.rst b/README.rst index fe941543..a43f3b35 100644 --- a/README.rst +++ b/README.rst @@ -56,9 +56,9 @@ Free software: `MIT license `__ :alt: Supported implementations :target: https://pypi.org/project/geophires-x -.. |commits-since| image:: https://img.shields.io/github/commits-since/softwareengineerprogrammer/GEOPHIRES-X/v3.9.7.svg +.. |commits-since| image:: https://img.shields.io/github/commits-since/softwareengineerprogrammer/GEOPHIRES-X/v3.9.8.svg :alt: Commits since latest release - :target: https://github.com/softwareengineerprogrammer/GEOPHIRES-X/compare/v3.9.7...main + :target: https://github.com/softwareengineerprogrammer/GEOPHIRES-X/compare/v3.9.8...main .. |docs| image:: https://readthedocs.org/projects/GEOPHIRES-X/badge/?style=flat :target: https://nrel.github.io/GEOPHIRES-X diff --git a/docs/conf.py b/docs/conf.py index 4fb58c28..eadfd887 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -18,7 +18,7 @@ year = '2025' author = 'NREL' copyright = f'{year}, {author}' -version = release = '3.9.7' +version = release = '3.9.8' pygments_style = 'trac' templates_path = ['./templates'] diff --git a/setup.py b/setup.py index 0988b4c3..853b078c 100755 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ def read(*names, **kwargs): setup( name='geophires-x', - version='3.9.7', + version='3.9.8', license='MIT', description='GEOPHIRES is a free and open-source geothermal techno-economic simulator.', long_description='{}\n{}'.format( diff --git a/src/geophires_x/Economics.py b/src/geophires_x/Economics.py index 3a425acc..9f1f8f42 100644 --- a/src/geophires_x/Economics.py +++ b/src/geophires_x/Economics.py @@ -969,7 +969,7 @@ def __init__(self, model: Model): Min=0.0, Max=1.0, UnitType=Units.PERCENT, - PreferredUnits=PercentUnit.TENTH, + PreferredUnits=PercentUnit.PERCENT, CurrentUnits=PercentUnit.TENTH, ErrMessage="assume default inflation rate during construction (0)" ) diff --git a/src/geophires_x/Outputs.py b/src/geophires_x/Outputs.py index 08c50e13..75ab9b76 100644 --- a/src/geophires_x/Outputs.py +++ b/src/geophires_x/Outputs.py @@ -264,8 +264,7 @@ def PrintOutputs(self, model: Model): label = Outputs._field_label(field.Name, 49) f.write(f' {label}{field.value:10.2f} {field.CurrentUnits.value}\n') - # FIXME TODO unit is missing https://github.com/NREL/GEOPHIRES-X/issues/382 - f.write(f' Accrued financing during construction: {model.economics.inflrateconstruction.value*100:10.2f} {model.economics.inflrateconstruction.CurrentUnits.value}\n') + f.write(f' Accrued financing during construction: {econ.inflrateconstruction.value:10.2f} {econ.inflrateconstruction.CurrentUnits.value}\n') f.write(f' Project lifetime: {model.surfaceplant.plant_lifetime.value:10.0f} {model.surfaceplant.plant_lifetime.CurrentUnits.value}\n') f.write(f' Capacity factor: {model.surfaceplant.utilization_factor.value * 100:10.1f} %\n') @@ -307,7 +306,7 @@ def PrintOutputs(self, model: Model): f.write(f' Number of Production Wells: {model.wellbores.nprod.value:10.0f}' + NL) f.write(f' Number of Injection Wells: {model.wellbores.ninj.value:10.0f}' + NL) f.write(f' {Outputs._field_label(Outputs.VERTICAL_WELL_DEPTH_OUTPUT_NAME, 49)}{model.reserv.depth.value:10.1f} ' + model.reserv.depth.CurrentUnits.value + NL) - f.write(f' Water loss rate: {model.reserv.waterloss.value*100:10.1f} ' + model.reserv.waterloss.CurrentUnits.value + NL) + f.write(f' Water loss rate: {model.reserv.waterloss.value:10.1f} {model.reserv.waterloss.CurrentUnits.value}\n') f.write(f' Pump efficiency: {model.surfaceplant.pump_efficiency.value:10.1f} ' + model.surfaceplant.pump_efficiency.CurrentUnits.value + NL) f.write(f' Injection temperature: {model.wellbores.Tinj.value:10.1f} ' + model.wellbores.Tinj.CurrentUnits.value + NL) if model.wellbores.rameyoptionprod.value: diff --git a/src/geophires_x/Reservoir.py b/src/geophires_x/Reservoir.py index f6b67cff..a04c7b71 100644 --- a/src/geophires_x/Reservoir.py +++ b/src/geophires_x/Reservoir.py @@ -320,16 +320,18 @@ def __init__(self, model: Model): ToolTipText="Geothermal reservoir volume" ) + # noinspection SpellCheckingInspection self.waterloss = self.ParameterDict[self.waterloss.Name] = floatParameter( "Water Loss Fraction", DefaultValue=0.0, Min=0.0, Max=0.99, UnitType=Units.PERCENT, - PreferredUnits=PercentUnit.TENTH, CurrentUnits=PercentUnit.TENTH, + PreferredUnits=PercentUnit.PERCENT, ErrMessage="assume default water loss fraction (0)", - ToolTipText="Fraction of water lost in the reservoir defined as (total geofluid lost)/(total geofluid produced)." + ToolTipText="Fraction of water lost in the reservoir defined as " + "(total geofluid lost)/(total geofluid produced)." ) self.cprock = self.ParameterDict[self.cprock.Name] = floatParameter( diff --git a/src/geophires_x/__init__.py b/src/geophires_x/__init__.py index d3eb2039..da437954 100644 --- a/src/geophires_x/__init__.py +++ b/src/geophires_x/__init__.py @@ -1 +1 @@ -__version__ = '3.9.7' +__version__ = '3.9.8' diff --git a/tests/example1_addons.csv b/tests/example1_addons.csv index 649ca8c1..61d30c22 100644 --- a/tests/example1_addons.csv +++ b/tests/example1_addons.csv @@ -9,7 +9,7 @@ SUMMARY OF RESULTS,Well depth,,3.0,kilometer SUMMARY OF RESULTS,Geothermal gradient,,50,degC/km SUMMARY OF RESULTS,Total Avoided Carbon Emissions,,474.67,kilotonne ECONOMIC PARAMETERS,Economic Model,,Fixed Charge Rate (FCR), -ECONOMIC PARAMETERS,Accrued financing during construction,,0.0, +ECONOMIC PARAMETERS,Accrued financing during construction,,0.0,% ECONOMIC PARAMETERS,Project lifetime,,30,yr ECONOMIC PARAMETERS,Capacity factor,,90.0,% ECONOMIC PARAMETERS,Project NPV,,72.08,MUSD @@ -36,7 +36,7 @@ EXTENDED ECONOMICS,AddOns Payback Period,,0.0,yr ENGINEERING PARAMETERS,Number of Production Wells,,2,count ENGINEERING PARAMETERS,Number of Injection Wells,,2,count ENGINEERING PARAMETERS,Well depth,,3.0,kilometer -ENGINEERING PARAMETERS,Water loss rate,,2.0, +ENGINEERING PARAMETERS,Water loss rate,,2.0,% ENGINEERING PARAMETERS,Pump efficiency,,80.0,% ENGINEERING PARAMETERS,Injection temperature,,50.0,degC ENGINEERING PARAMETERS,Average production well temperature drop,,3.0,degC @@ -99,7 +99,7 @@ SURFACE EQUIPMENT SIMULATION RESULTS,Average Annual Net Electricity Generation,, SURFACE EQUIPMENT SIMULATION RESULTS,Average Pumping Power,,0.2,MW SURFACE EQUIPMENT SIMULATION RESULTS,Initial pumping power/net installed power,,3.82,% SURFACE EQUIPMENT SIMULATION RESULTS,Heat to Power Conversion Efficiency,,10.07,% -Simulation Metadata,GEOPHIRES Version,,3.8.4, +Simulation Metadata,GEOPHIRES Version,,3.9.7, POWER GENERATION PROFILE,THERMAL DRAWDOWN,1,1.0, POWER GENERATION PROFILE,THERMAL DRAWDOWN,2,1.0056, POWER GENERATION PROFILE,THERMAL DRAWDOWN,3,1.0073, diff --git a/tests/examples/Fervo_Norbeck_Latimer_2023.out b/tests/examples/Fervo_Norbeck_Latimer_2023.out index da89c1e2..7641bac3 100644 --- a/tests/examples/Fervo_Norbeck_Latimer_2023.out +++ b/tests/examples/Fervo_Norbeck_Latimer_2023.out @@ -4,10 +4,10 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.7.23 - Simulation Date: 2025-03-10 - Simulation Time: 10:42 - Calculation Time: 0.434 sec + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 10:13 + Calculation Time: 0.432 sec ***SUMMARY OF RESULTS*** @@ -23,15 +23,15 @@ Simulation Metadata ***ECONOMIC PARAMETERS*** - Economic Model = BICYCLE - Accrued financing during construction: 5.00 + Economic Model = BICYCLE + Accrued financing during construction: 5.00 % Project lifetime: 10 yr Capacity factor: 90.0 % Project NPV: -13.03 MUSD Project IRR: -4.40 % Project VIR=PI=PIR: 0.54 Project MOIC: -0.18 - Project Payback Period: N/A + Project Payback Period: N/A Estimated Jobs Created: 6 ***ENGINEERING PARAMETERS*** @@ -39,7 +39,7 @@ Simulation Metadata Number of Production Wells: 1 Number of Injection Wells: 1 Well depth: 2.3 kilometer - Water loss rate: 10.0 + Water loss rate: 10.0 % Pump efficiency: 80.0 % Injection temperature: 41.0 degC Production Wellbore heat transmission calculated with Ramey's model diff --git a/tests/examples/Fervo_Project_Cape-2.out b/tests/examples/Fervo_Project_Cape-2.out index 8dd002a1..4219e97d 100644 --- a/tests/examples/Fervo_Project_Cape-2.out +++ b/tests/examples/Fervo_Project_Cape-2.out @@ -4,9 +4,9 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.8.9 - Simulation Date: 2025-03-26 - Simulation Time: 09:57 + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 10:13 Calculation Time: 0.650 sec ***SUMMARY OF RESULTS*** @@ -23,15 +23,15 @@ Simulation Metadata ***ECONOMIC PARAMETERS*** - Economic Model = BICYCLE - Accrued financing during construction: 5.00 + Economic Model = BICYCLE + Accrued financing during construction: 5.00 % Project lifetime: 15 yr Capacity factor: 90.0 % Project NPV: 42.34 MUSD Project IRR: 17.60 % Project VIR=PI=PIR: 1.83 Project MOIC: 1.42 - Project Payback Period: 6.50 yr + Project Payback Period: 6.50 yr Estimated Jobs Created: 19 ***ENGINEERING PARAMETERS*** @@ -39,7 +39,7 @@ Simulation Metadata Number of Production Wells: 1 Number of Injection Wells: 2 Well depth: 2.6 kilometer - Water loss rate: 2.0 + Water loss rate: 2.0 % Pump efficiency: 80.0 % Injection temperature: 56.7 degC Production Wellbore heat transmission calculated with Ramey's model diff --git a/tests/examples/Fervo_Project_Cape-3.out b/tests/examples/Fervo_Project_Cape-3.out index 2d30aaaf..17bb0184 100644 --- a/tests/examples/Fervo_Project_Cape-3.out +++ b/tests/examples/Fervo_Project_Cape-3.out @@ -4,10 +4,10 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.7.23 - Simulation Date: 2025-03-10 - Simulation Time: 10:42 - Calculation Time: 0.871 sec + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 10:13 + Calculation Time: 0.868 sec ***SUMMARY OF RESULTS*** @@ -23,15 +23,15 @@ Simulation Metadata ***ECONOMIC PARAMETERS*** - Economic Model = BICYCLE - Accrued financing during construction: 5.00 + Economic Model = BICYCLE + Accrued financing during construction: 5.00 % Project lifetime: 20 yr Capacity factor: 90.0 % Project NPV: 4580.36 MUSD Project IRR: 43.75 % Project VIR=PI=PIR: 5.27 Project MOIC: 6.30 - Project Payback Period: 3.38 yr + Project Payback Period: 3.38 yr Estimated Jobs Created: 976 ***ENGINEERING PARAMETERS*** @@ -39,7 +39,7 @@ Simulation Metadata Number of Production Wells: 39 Number of Injection Wells: 39 Well depth: 2.6 kilometer - Water loss rate: 5.0 + Water loss rate: 5.0 % Pump efficiency: 80.0 % Injection temperature: 56.7 degC Production Wellbore heat transmission calculated with Ramey's model diff --git a/tests/examples/Fervo_Project_Cape.out b/tests/examples/Fervo_Project_Cape.out index 031d95e9..538cec6e 100644 --- a/tests/examples/Fervo_Project_Cape.out +++ b/tests/examples/Fervo_Project_Cape.out @@ -4,10 +4,10 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.7.23 - Simulation Date: 2025-03-10 - Simulation Time: 10:42 - Calculation Time: 0.678 sec + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 10:13 + Calculation Time: 0.655 sec ***SUMMARY OF RESULTS*** @@ -23,15 +23,15 @@ Simulation Metadata ***ECONOMIC PARAMETERS*** - Economic Model = BICYCLE - Accrued financing during construction: 5.00 + Economic Model = BICYCLE + Accrued financing during construction: 5.00 % Project lifetime: 15 yr Capacity factor: 90.0 % Project NPV: 520.01 MUSD Project IRR: 21.00 % Project VIR=PI=PIR: 2.08 Project MOIC: 1.88 - Project Payback Period: 5.67 yr + Project Payback Period: 5.67 yr Estimated Jobs Created: 226 ***ENGINEERING PARAMETERS*** @@ -39,7 +39,7 @@ Simulation Metadata Number of Production Wells: 12 Number of Injection Wells: 12 Well depth: 2.6 kilometer - Water loss rate: 2.0 + Water loss rate: 2.0 % Pump efficiency: 80.0 % Injection temperature: 56.2 degC Production Wellbore heat transmission calculated with Ramey's model diff --git a/tests/examples/S-DAC-GT.out b/tests/examples/S-DAC-GT.out index ee909a9f..e53854f6 100644 --- a/tests/examples/S-DAC-GT.out +++ b/tests/examples/S-DAC-GT.out @@ -4,10 +4,10 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.7.23 - Simulation Date: 2025-03-10 - Simulation Time: 10:42 - Calculation Time: 0.107 sec + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 10:13 + Calculation Time: 0.099 sec ***SUMMARY OF RESULTS*** @@ -25,15 +25,15 @@ Simulation Metadata ***ECONOMIC PARAMETERS*** - Economic Model = BICYCLE - Accrued financing during construction: 0.00 + Economic Model = BICYCLE + Accrued financing during construction: 0.00 % Project lifetime: 30 yr Capacity factor: 90.0 % Project NPV: -82.17 MUSD Project IRR: -5.86 % Project VIR=PI=PIR: 0.20 Project MOIC: -0.30 - Project Payback Period: N/A + Project Payback Period: N/A CHP: Percent cost allocation for electrical plant: 92.25 % ***ENGINEERING PARAMETERS*** @@ -41,7 +41,7 @@ Simulation Metadata Number of Production Wells: 3 Number of Injection Wells: 3 Well depth: 3.1 kilometer - Water loss rate: 2.0 + Water loss rate: 2.0 % Pump efficiency: 80.0 % Injection temperature: 70.0 degC User-provided production well temperature drop diff --git a/tests/examples/Wanju_Yuan_Closed-Loop_Geothermal_Energy_Recovery.out b/tests/examples/Wanju_Yuan_Closed-Loop_Geothermal_Energy_Recovery.out index 5017ed9a..09da4f1a 100644 --- a/tests/examples/Wanju_Yuan_Closed-Loop_Geothermal_Energy_Recovery.out +++ b/tests/examples/Wanju_Yuan_Closed-Loop_Geothermal_Energy_Recovery.out @@ -4,10 +4,10 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.8.4 - Simulation Date: 2025-03-19 - Simulation Time: 10:30 - Calculation Time: 1.614 sec + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 09:22 + Calculation Time: 1.580 sec ***SUMMARY OF RESULTS*** @@ -23,15 +23,15 @@ Simulation Metadata ***ECONOMIC PARAMETERS*** - Economic Model = BICYCLE - Accrued financing during construction: 0.00 + Economic Model = BICYCLE + Accrued financing during construction: 0.00 % Project lifetime: 40 yr Capacity factor: 90.0 % Project NPV: -74.72 MUSD Project IRR: 0.00 % Project VIR=PI=PIR: -0.08 Project MOIC: -0.82 - Project Payback Period: N/A + Project Payback Period: N/A Estimated Jobs Created: 2 ***ENGINEERING PARAMETERS*** diff --git a/tests/examples/example1.out b/tests/examples/example1.out index 18c5bdd2..82ea3ba3 100644 --- a/tests/examples/example1.out +++ b/tests/examples/example1.out @@ -4,10 +4,10 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.8.4 - Simulation Date: 2025-03-19 - Simulation Time: 10:30 - Calculation Time: 0.810 sec + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 10:12 + Calculation Time: 0.773 sec ***SUMMARY OF RESULTS*** @@ -25,14 +25,14 @@ Simulation Metadata Economic Model = Fixed Charge Rate (FCR) Fixed Charge Rate (FCR): 5.00 - Accrued financing during construction: 0.00 + Accrued financing during construction: 0.00 % Project lifetime: 30 yr Capacity factor: 90.0 % Project NPV: -35.81 MUSD Project IRR: -2.85 % Project VIR=PI=PIR: 0.25 Project MOIC: -0.21 - Project Payback Period: N/A + Project Payback Period: N/A Estimated Jobs Created: 12 ***ENGINEERING PARAMETERS*** @@ -40,7 +40,7 @@ Simulation Metadata Number of Production Wells: 2 Number of Injection Wells: 2 Well depth: 3.0 kilometer - Water loss rate: 2.0 + Water loss rate: 2.0 % Pump efficiency: 80.0 % Injection temperature: 50.0 degC Production Wellbore heat transmission calculated with Ramey's model diff --git a/tests/examples/example10_HP.out b/tests/examples/example10_HP.out index a5bae0b0..51991cce 100644 --- a/tests/examples/example10_HP.out +++ b/tests/examples/example10_HP.out @@ -4,10 +4,10 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.8.4 - Simulation Date: 2025-03-19 - Simulation Time: 10:30 - Calculation Time: 0.101 sec + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 10:13 + Calculation Time: 0.096 sec ***SUMMARY OF RESULTS*** @@ -26,21 +26,21 @@ Simulation Metadata Economic Model = Standard Levelized Cost Interest Rate: 5.00 % - Accrued financing during construction: 5.00 + Accrued financing during construction: 5.00 % Project lifetime: 30 yr Capacity factor: 90.0 % Project NPV: 15.18 MUSD Project IRR: 9.52 % Project VIR=PI=PIR: 1.55 Project MOIC: 1.20 - Project Payback Period: 10.66 yr + Project Payback Period: 10.66 yr ***ENGINEERING PARAMETERS*** Number of Production Wells: 2 Number of Injection Wells: 2 Well depth: 2.1 kilometer - Water loss rate: 2.0 + Water loss rate: 2.0 % Pump efficiency: 80.0 % Injection temperature: 83.0 degC User-provided production well temperature drop diff --git a/tests/examples/example11_AC.out b/tests/examples/example11_AC.out index 9f77dd1a..5cff8880 100644 --- a/tests/examples/example11_AC.out +++ b/tests/examples/example11_AC.out @@ -4,10 +4,10 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.8.4 - Simulation Date: 2025-03-19 - Simulation Time: 10:30 - Calculation Time: 0.104 sec + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 10:13 + Calculation Time: 0.096 sec ***SUMMARY OF RESULTS*** @@ -27,21 +27,21 @@ Simulation Metadata Economic Model = Standard Levelized Cost Interest Rate: 5.00 % - Accrued financing during construction: 5.00 + Accrued financing during construction: 5.00 % Project lifetime: 30 yr Capacity factor: 90.0 % Project NPV: 10.11 MUSD Project IRR: 8.23 % Project VIR=PI=PIR: 1.38 Project MOIC: 1.01 - Project Payback Period: 11.81 yr + Project Payback Period: 11.81 yr ***ENGINEERING PARAMETERS*** Number of Production Wells: 2 Number of Injection Wells: 2 Well depth: 2.1 kilometer - Water loss rate: 2.0 + Water loss rate: 2.0 % Pump efficiency: 80.0 % Injection temperature: 83.0 degC User-provided production well temperature drop diff --git a/tests/examples/example12_DH.out b/tests/examples/example12_DH.out index 0072ba5a..30ef5573 100644 --- a/tests/examples/example12_DH.out +++ b/tests/examples/example12_DH.out @@ -4,10 +4,10 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.7.23 - Simulation Date: 2025-03-10 - Simulation Time: 10:42 - Calculation Time: 0.582 sec + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 10:13 + Calculation Time: 0.570 sec ***SUMMARY OF RESULTS*** @@ -29,21 +29,21 @@ Simulation Metadata Economic Model = Standard Levelized Cost Interest Rate: 7.00 % - Accrued financing during construction: 0.00 + Accrued financing during construction: 0.00 % Project lifetime: 20 yr Capacity factor: 96.3 % Project NPV: -20.39 MUSD Project IRR: 2.36 % Project VIR=PI=PIR: 0.68 Project MOIC: 0.18 - Project Payback Period: 16.46 yr + Project Payback Period: 16.46 yr ***ENGINEERING PARAMETERS*** Number of Production Wells: 2 Number of Injection Wells: 2 Well depth: 3.5 kilometer - Water loss rate: 0.0 + Water loss rate: 0.0 % Pump efficiency: 80.0 % Injection temperature: 50.0 degC Production Wellbore heat transmission calculated with Ramey's model diff --git a/tests/examples/example13.out b/tests/examples/example13.out index 1b861f12..b903fc30 100644 --- a/tests/examples/example13.out +++ b/tests/examples/example13.out @@ -4,10 +4,10 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.8.4 - Simulation Date: 2025-03-19 - Simulation Time: 10:30 - Calculation Time: 0.036 sec + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 10:12 + Calculation Time: 0.032 sec ***SUMMARY OF RESULTS*** @@ -27,14 +27,14 @@ Simulation Metadata Economic Model = Standard Levelized Cost Interest Rate: 5.00 % - Accrued financing during construction: 0.00 + Accrued financing during construction: 0.00 % Project lifetime: 30 yr Capacity factor: 80.0 % Project NPV: -31.42 MUSD Project IRR: -2.67 % Project VIR=PI=PIR: 0.37 Project MOIC: -0.12 - Project Payback Period: N/A + Project Payback Period: N/A CHP: Percent cost allocation for electrical plant: 60.28 % ***ENGINEERING PARAMETERS*** @@ -42,7 +42,7 @@ Simulation Metadata Number of Production Wells: 2 Number of Injection Wells: 2 Well depth: 4.0 kilometer - Water loss rate: 0.0 + Water loss rate: 0.0 % Pump efficiency: 80.0 % Injection temperature: 50.0 degC User-provided production well temperature drop diff --git a/tests/examples/example1_addons.out b/tests/examples/example1_addons.out index 5f057f82..97dcfb23 100644 --- a/tests/examples/example1_addons.out +++ b/tests/examples/example1_addons.out @@ -4,10 +4,10 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.8.4 - Simulation Date: 2025-03-19 - Simulation Time: 10:29 - Calculation Time: 0.784 sec + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 10:12 + Calculation Time: 0.776 sec ***SUMMARY OF RESULTS*** @@ -26,14 +26,14 @@ Simulation Metadata Economic Model = Fixed Charge Rate (FCR) Fixed Charge Rate (FCR): 5.00 - Accrued financing during construction: 0.00 + Accrued financing during construction: 0.00 % Project lifetime: 30 yr Capacity factor: 90.0 % Project NPV: 72.08 MUSD Project IRR: 23.66 % Project VIR=PI=PIR: 3.81 Project MOIC: -1324.72 - Project Payback Period: 5.97 yr + Project Payback Period: 5.97 yr Estimated Jobs Created: 12 ***ENGINEERING PARAMETERS*** @@ -41,7 +41,7 @@ Simulation Metadata Number of Production Wells: 2 Number of Injection Wells: 2 Well depth: 3.0 kilometer - Water loss rate: 2.0 + Water loss rate: 2.0 % Pump efficiency: 80.0 % Injection temperature: 50.0 degC Production Wellbore heat transmission calculated with Ramey's model diff --git a/tests/examples/example1_outputunits.out b/tests/examples/example1_outputunits.out index 0a298442..e071ce54 100644 --- a/tests/examples/example1_outputunits.out +++ b/tests/examples/example1_outputunits.out @@ -4,10 +4,10 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.7.23 - Simulation Date: 2025-03-10 - Simulation Time: 10:42 - Calculation Time: 0.778 sec + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 10:12 + Calculation Time: 0.781 sec ***SUMMARY OF RESULTS*** @@ -25,14 +25,14 @@ Simulation Metadata Economic Model = Fixed Charge Rate (FCR) Fixed Charge Rate (FCR): 5.00 - Accrued financing during construction: 0.00 + Accrued financing during construction: 0.00 % Project lifetime: 30 yr Capacity factor: 90.0 % Project NPV: -34.56 MUSD Project IRR: -2.67 % Project VIR=PI=PIR: 0.26 Project MOIC: -0.19 - Project Payback Period: N/A + Project Payback Period: N/A Estimated Jobs Created: 12 ***ENGINEERING PARAMETERS*** @@ -40,7 +40,7 @@ Simulation Metadata Number of Production Wells: 2 Number of Injection Wells: 2 Well depth: 3.0 kilometer - Water loss rate: 2.0 + Water loss rate: 2.0 % Pump efficiency: 80.0 % Injection temperature: 50.0 degC Production Wellbore heat transmission calculated with Ramey's model diff --git a/tests/examples/example2.out b/tests/examples/example2.out index d489b537..4ce62218 100644 --- a/tests/examples/example2.out +++ b/tests/examples/example2.out @@ -4,10 +4,10 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.8.4 - Simulation Date: 2025-03-19 - Simulation Time: 10:30 - Calculation Time: 0.211 sec + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 10:12 + Calculation Time: 0.203 sec ***SUMMARY OF RESULTS*** @@ -25,21 +25,21 @@ Simulation Metadata Economic Model = Standard Levelized Cost Interest Rate: 5.00 % - Accrued financing during construction: 0.00 + Accrued financing during construction: 0.00 % Project lifetime: 25 yr Capacity factor: 90.0 % Project NPV: 10.25 MUSD Project IRR: 7.84 % Project VIR=PI=PIR: 1.29 Project MOIC: 0.70 - Project Payback Period: 11.38 yr + Project Payback Period: 11.38 yr ***ENGINEERING PARAMETERS*** Number of Production Wells: 2 Number of Injection Wells: 2 Well depth: 3.0 kilometer - Water loss rate: 0.0 + Water loss rate: 0.0 % Pump efficiency: 80.0 % Injection temperature: 70.0 degC Production Wellbore heat transmission calculated with Ramey's model diff --git a/tests/examples/example3.out b/tests/examples/example3.out index 1a69db4c..01516178 100644 --- a/tests/examples/example3.out +++ b/tests/examples/example3.out @@ -4,10 +4,10 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.8.4 - Simulation Date: 2025-03-19 - Simulation Time: 10:30 - Calculation Time: 0.123 sec + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 10:12 + Calculation Time: 0.113 sec ***SUMMARY OF RESULTS*** @@ -25,15 +25,15 @@ Simulation Metadata ***ECONOMIC PARAMETERS*** - Economic Model = BICYCLE - Accrued financing during construction: 5.00 + Economic Model = BICYCLE + Accrued financing during construction: 5.00 % Project lifetime: 35 yr Capacity factor: 90.0 % Project NPV: -2.38 MUSD Project IRR: 6.78 % Project VIR=PI=PIR: 0.98 Project MOIC: 0.72 - Project Payback Period: 13.70 yr + Project Payback Period: 13.70 yr CHP: Percent cost allocation for electrical plant: 93.48 % ***ENGINEERING PARAMETERS*** @@ -41,7 +41,7 @@ Simulation Metadata Number of Production Wells: 3 Number of Injection Wells: 3 Well depth: 3.1 kilometer - Water loss rate: 2.0 + Water loss rate: 2.0 % Pump efficiency: 80.0 % Injection temperature: 73.0 degC User-provided production well temperature drop diff --git a/tests/examples/example4.out b/tests/examples/example4.out index fc5a8f55..f45baeab 100644 --- a/tests/examples/example4.out +++ b/tests/examples/example4.out @@ -4,10 +4,10 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.8.4 - Simulation Date: 2025-03-19 - Simulation Time: 10:30 - Calculation Time: 0.048 sec + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 10:12 + Calculation Time: 0.044 sec ***SUMMARY OF RESULTS*** @@ -23,15 +23,15 @@ Simulation Metadata ***ECONOMIC PARAMETERS*** - Economic Model = BICYCLE - Accrued financing during construction: 0.00 + Economic Model = BICYCLE + Accrued financing during construction: 0.00 % Project lifetime: 30 yr Capacity factor: 90.0 % Project NPV: -33.83 MUSD Project IRR: -2.11 % Project VIR=PI=PIR: 0.34 Project MOIC: -0.13 - Project Payback Period: N/A + Project Payback Period: N/A Estimated Jobs Created: 18 ***ENGINEERING PARAMETERS*** @@ -39,7 +39,7 @@ Simulation Metadata Number of Production Wells: 3 Number of Injection Wells: 2 Well depth: 2.0 kilometer - Water loss rate: 0.0 + Water loss rate: 0.0 % Pump efficiency: 80.0 % Injection temperature: 70.0 degC User-provided production well temperature drop diff --git a/tests/examples/example5.out b/tests/examples/example5.out index c6af9f36..18ee5ed4 100644 --- a/tests/examples/example5.out +++ b/tests/examples/example5.out @@ -4,10 +4,10 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.8.4 - Simulation Date: 2025-03-19 - Simulation Time: 10:30 - Calculation Time: 0.052 sec + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 10:12 + Calculation Time: 0.046 sec ***SUMMARY OF RESULTS*** @@ -23,22 +23,22 @@ Simulation Metadata ***ECONOMIC PARAMETERS*** - Economic Model = BICYCLE - Accrued financing during construction: 0.00 + Economic Model = BICYCLE + Accrued financing during construction: 0.00 % Project lifetime: 30 yr Capacity factor: 90.0 % Project NPV: 2.09 MUSD Project IRR: 7.66 % Project VIR=PI=PIR: 1.06 Project MOIC: 0.64 - Project Payback Period: 11.32 yr + Project Payback Period: 11.32 yr ***ENGINEERING PARAMETERS*** Number of Production Wells: 2 Number of Injection Wells: 2 Well depth: 3.0 kilometer - Water loss rate: 2.0 + Water loss rate: 2.0 % Pump efficiency: 80.0 % Injection temperature: 80.0 degC Production Wellbore heat transmission calculated with Ramey's model diff --git a/tests/examples/example8.out b/tests/examples/example8.out index 124f6471..2fa47290 100644 --- a/tests/examples/example8.out +++ b/tests/examples/example8.out @@ -4,10 +4,10 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.8.4 - Simulation Date: 2025-03-19 - Simulation Time: 10:30 - Calculation Time: 0.791 sec + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 10:13 + Calculation Time: 0.778 sec ***SUMMARY OF RESULTS*** @@ -25,21 +25,21 @@ Simulation Metadata Economic Model = Fixed Charge Rate (FCR) Fixed Charge Rate (FCR): 5.00 - Accrued financing during construction: 0.00 + Accrued financing during construction: 0.00 % Project lifetime: 30 yr Capacity factor: 60.0 % Project NPV: -7.63 MUSD Project IRR: 2.30 % Project VIR=PI=PIR: 0.58 Project MOIC: 0.23 - Project Payback Period: 22.18 yr + Project Payback Period: 22.18 yr ***ENGINEERING PARAMETERS*** Number of Production Wells: 1 Number of Injection Wells: 1 Well depth: 2.8 kilometer - Water loss rate: 2.0 + Water loss rate: 2.0 % Pump efficiency: 80.0 % Injection temperature: 30.0 degC Production Wellbore heat transmission calculated with Ramey's model diff --git a/tests/examples/example9.out b/tests/examples/example9.out index 7e6cb283..17a4007e 100644 --- a/tests/examples/example9.out +++ b/tests/examples/example9.out @@ -4,10 +4,10 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.8.4 - Simulation Date: 2025-03-19 - Simulation Time: 10:30 - Calculation Time: 0.792 sec + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 10:13 + Calculation Time: 0.774 sec ***SUMMARY OF RESULTS*** @@ -25,14 +25,14 @@ Simulation Metadata Economic Model = Fixed Charge Rate (FCR) Fixed Charge Rate (FCR): 5.00 - Accrued financing during construction: 0.00 + Accrued financing during construction: 0.00 % Project lifetime: 30 yr Capacity factor: 90.0 % Project NPV: -26.12 MUSD Project IRR: 0.00 % Project VIR=PI=PIR: -0.13 Project MOIC: -0.83 - Project Payback Period: N/A + Project Payback Period: N/A Estimated Jobs Created: 1 ***ENGINEERING PARAMETERS*** @@ -40,7 +40,7 @@ Simulation Metadata Number of Production Wells: 1 Number of Injection Wells: 1 Well depth: 3.8 kilometer - Water loss rate: 2.0 + Water loss rate: 2.0 % Pump efficiency: 80.0 % Injection temperature: 60.0 degC Production Wellbore heat transmission calculated with Ramey's model diff --git a/tests/examples/example_ITC.out b/tests/examples/example_ITC.out index 7c2e338e..b723bb1b 100644 --- a/tests/examples/example_ITC.out +++ b/tests/examples/example_ITC.out @@ -4,10 +4,10 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.8.4 - Simulation Date: 2025-03-19 - Simulation Time: 10:30 - Calculation Time: 0.808 sec + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 10:13 + Calculation Time: 0.780 sec ***SUMMARY OF RESULTS*** @@ -23,15 +23,15 @@ Simulation Metadata ***ECONOMIC PARAMETERS*** - Economic Model = BICYCLE - Accrued financing during construction: 0.00 + Economic Model = BICYCLE + Accrued financing during construction: 0.00 % Project lifetime: 30 yr Capacity factor: 90.0 % Project NPV: 10.31 MUSD Project IRR: 8.82 % Project VIR=PI=PIR: 1.19 Project MOIC: 0.72 - Project Payback Period: 11.46 yr + Project Payback Period: 11.46 yr Estimated Jobs Created: 41 ***ENGINEERING PARAMETERS*** @@ -39,7 +39,7 @@ Simulation Metadata Number of Production Wells: 2 Number of Injection Wells: 2 Well depth: 5.0 kilometer - Water loss rate: 2.0 + Water loss rate: 2.0 % Pump efficiency: 80.0 % Injection temperature: 50.0 degC Production Wellbore heat transmission calculated with Ramey's model diff --git a/tests/examples/example_PTC.out b/tests/examples/example_PTC.out index 368cea8a..424aa364 100644 --- a/tests/examples/example_PTC.out +++ b/tests/examples/example_PTC.out @@ -4,10 +4,10 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.8.4 - Simulation Date: 2025-03-19 - Simulation Time: 10:30 - Calculation Time: 0.814 sec + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 10:12 + Calculation Time: 0.778 sec ***SUMMARY OF RESULTS*** @@ -23,15 +23,15 @@ Simulation Metadata ***ECONOMIC PARAMETERS*** - Economic Model = BICYCLE - Accrued financing during construction: 0.00 + Economic Model = BICYCLE + Accrued financing during construction: 0.00 % Project lifetime: 30 yr Capacity factor: 90.0 % Project NPV: 13.44 MUSD Project IRR: 8.61 % Project VIR=PI=PIR: 1.12 Project MOIC: 0.67 - Project Payback Period: 9.18 yr + Project Payback Period: 9.18 yr Estimated Jobs Created: 41 ***ENGINEERING PARAMETERS*** @@ -39,7 +39,7 @@ Simulation Metadata Number of Production Wells: 2 Number of Injection Wells: 2 Well depth: 5.0 kilometer - Water loss rate: 2.0 + Water loss rate: 2.0 % Pump efficiency: 80.0 % Injection temperature: 50.0 degC Production Wellbore heat transmission calculated with Ramey's model diff --git a/tests/examples/example_SAM-single-owner-PPA.out b/tests/examples/example_SAM-single-owner-PPA.out index 775a314b..b93d2781 100644 --- a/tests/examples/example_SAM-single-owner-PPA.out +++ b/tests/examples/example_SAM-single-owner-PPA.out @@ -4,10 +4,10 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.9.6 - Simulation Date: 2025-05-14 - Simulation Time: 11:36 - Calculation Time: 0.888 sec + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 10:13 + Calculation Time: 0.891 sec ***SUMMARY OF RESULTS*** @@ -27,7 +27,7 @@ Simulation Metadata Real Discount Rate: 7.00 % Nominal Discount Rate: 9.14 % WACC: 6.41 % - Accrued financing during construction: 5.00 + Accrued financing during construction: 5.00 % Project lifetime: 20 yr Capacity factor: 90.0 % Project NPV: 2877.00 MUSD @@ -39,7 +39,7 @@ Simulation Metadata Number of Production Wells: 39 Number of Injection Wells: 39 Well depth: 2.6 kilometer - Water loss rate: 5.0 + Water loss rate: 5.0 % Pump efficiency: 80.0 % Injection temperature: 56.7 degC Production Wellbore heat transmission calculated with Ramey's model diff --git a/tests/examples/example_SBT_Hi_T.out b/tests/examples/example_SBT_Hi_T.out index 706f1dfb..3a04f1f6 100644 --- a/tests/examples/example_SBT_Hi_T.out +++ b/tests/examples/example_SBT_Hi_T.out @@ -4,10 +4,10 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.7.23 - Simulation Date: 2025-03-10 - Simulation Time: 10:42 - Calculation Time: 6.955 sec + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 09:23 + Calculation Time: 6.777 sec ***SUMMARY OF RESULTS*** @@ -23,15 +23,15 @@ Simulation Metadata ***ECONOMIC PARAMETERS*** - Economic Model = BICYCLE - Accrued financing during construction: 0.00 + Economic Model = BICYCLE + Accrued financing during construction: 0.00 % Project lifetime: 30 yr Capacity factor: 90.0 % Project NPV: -8.98 MUSD Project IRR: 6.35 % Project VIR=PI=PIR: 0.94 Project MOIC: 0.66 - Project Payback Period: 13.59 yr + Project Payback Period: 13.59 yr Estimated Jobs Created: 0 ***ENGINEERING PARAMETERS*** diff --git a/tests/examples/example_SBT_Lo_T.out b/tests/examples/example_SBT_Lo_T.out index e2cd16bc..1ceb4f83 100644 --- a/tests/examples/example_SBT_Lo_T.out +++ b/tests/examples/example_SBT_Lo_T.out @@ -4,10 +4,10 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.7.23 - Simulation Date: 2025-03-10 - Simulation Time: 10:42 - Calculation Time: 1.846 sec + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 09:23 + Calculation Time: 1.510 sec ***SUMMARY OF RESULTS*** @@ -23,15 +23,15 @@ Simulation Metadata ***ECONOMIC PARAMETERS*** - Economic Model = BICYCLE - Accrued financing during construction: 0.00 + Economic Model = BICYCLE + Accrued financing during construction: 0.00 % Project lifetime: 30 yr Capacity factor: 90.0 % Project NPV: -46.54 MUSD Project IRR: 0.00 % Project VIR=PI=PIR: -0.21 Project MOIC: -1.00 - Project Payback Period: N/A + Project Payback Period: N/A Estimated Jobs Created: 0 ***ENGINEERING PARAMETERS*** diff --git a/tests/examples/example_SHR-1.out b/tests/examples/example_SHR-1.out index 12e087b3..5546bdf6 100644 --- a/tests/examples/example_SHR-1.out +++ b/tests/examples/example_SHR-1.out @@ -4,10 +4,10 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.7.23 - Simulation Date: 2025-03-10 - Simulation Time: 10:42 - Calculation Time: 0.786 sec + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 10:13 + Calculation Time: 0.780 sec ***SUMMARY OF RESULTS*** @@ -26,14 +26,14 @@ Simulation Metadata Economic Model = Fixed Charge Rate (FCR) Fixed Charge Rate (FCR): 5.00 - Accrued financing during construction: 0.00 + Accrued financing during construction: 0.00 % Project lifetime: 30 yr Capacity factor: 90.0 % Project NPV: 6.06 MUSD Project IRR: 7.23 % Project VIR=PI=PIR: 1.03 Project MOIC: 1.30 - Project Payback Period: 13.38 yr + Project Payback Period: 13.38 yr Estimated Jobs Created: 66 ***ENGINEERING PARAMETERS*** @@ -41,7 +41,7 @@ Simulation Metadata Number of Production Wells: 2 Number of Injection Wells: 2 Well depth: 7.5 kilometer - Water loss rate: 2.0 + Water loss rate: 2.0 % Pump efficiency: 80.0 % Injection temperature: 50.0 degC Production Wellbore heat transmission calculated with Ramey's model diff --git a/tests/examples/example_SHR-2.out b/tests/examples/example_SHR-2.out index a95d1f90..349ff6af 100644 --- a/tests/examples/example_SHR-2.out +++ b/tests/examples/example_SHR-2.out @@ -4,10 +4,10 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.7.23 - Simulation Date: 2025-03-10 - Simulation Time: 10:42 - Calculation Time: 0.521 sec + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 10:13 + Calculation Time: 0.518 sec ***SUMMARY OF RESULTS*** @@ -26,14 +26,14 @@ Simulation Metadata Economic Model = Fixed Charge Rate (FCR) Fixed Charge Rate (FCR): 5.00 - Accrued financing during construction: 0.00 + Accrued financing during construction: 0.00 % Project lifetime: 20 yr Capacity factor: 95.0 % Project NPV: 407.43 MUSD Project IRR: 15.09 % Project VIR=PI=PIR: 1.98 Project MOIC: 2.02 - Project Payback Period: 7.61 yr + Project Payback Period: 7.61 yr Estimated Jobs Created: 221 ***ENGINEERING PARAMETERS*** @@ -41,7 +41,7 @@ Simulation Metadata Number of Production Wells: 2 Number of Injection Wells: 1 Well depth: 5.0 kilometer - Water loss rate: 2.0 + Water loss rate: 2.0 % Pump efficiency: 80.0 % Injection temperature: 50.0 degC Production Wellbore heat transmission calculated with Ramey's model diff --git a/tests/examples/example_multiple_gradients-2.out b/tests/examples/example_multiple_gradients-2.out index 4336ff26..9659219c 100644 --- a/tests/examples/example_multiple_gradients-2.out +++ b/tests/examples/example_multiple_gradients-2.out @@ -4,10 +4,10 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.8.4 - Simulation Date: 2025-03-19 - Simulation Time: 10:30 - Calculation Time: 0.837 sec + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 10:13 + Calculation Time: 0.783 sec ***SUMMARY OF RESULTS*** @@ -19,11 +19,11 @@ Simulation Metadata Flowrate per production well: 60.0 kg/sec Well depth: 4.0 kilometer Segment 1 Geothermal gradient: 50 degC/km - Segment 1 Thickness: 1 kilometer + Segment 1 Thickness: 1.0 kilometer Segment 2 Geothermal gradient: 40 degC/km - Segment 2 Thickness: 1 kilometer + Segment 2 Thickness: 1.0 kilometer Segment 3 Geothermal gradient: 30 degC/km - Segment 3 Thickness: 1 kilometer + Segment 3 Thickness: 1.0 kilometer Segment 4 Geothermal gradient: 50 degC/km @@ -31,14 +31,14 @@ Simulation Metadata Economic Model = Fixed Charge Rate (FCR) Fixed Charge Rate (FCR): 5.00 - Accrued financing during construction: 0.00 + Accrued financing during construction: 0.00 % Project lifetime: 30 yr Capacity factor: 90.0 % Project NPV: -47.23 MUSD Project IRR: -2.22 % Project VIR=PI=PIR: 0.31 Project MOIC: -0.16 - Project Payback Period: N/A + Project Payback Period: N/A Estimated Jobs Created: 17 ***ENGINEERING PARAMETERS*** @@ -46,7 +46,7 @@ Simulation Metadata Number of Production Wells: 2 Number of Injection Wells: 2 Well depth: 4.0 kilometer - Water loss rate: 2.0 + Water loss rate: 2.0 % Pump efficiency: 80.0 % Injection temperature: 50.0 degC User-provided production well temperature drop @@ -63,11 +63,11 @@ Simulation Metadata Maximum reservoir temperature: 400.0 degC Number of segments: 4 Segment 1 Geothermal gradient: 50 degC/km - Segment 1 Thickness: 1 kilometer + Segment 1 Thickness: 1.0 kilometer Segment 2 Geothermal gradient: 40 degC/km - Segment 2 Thickness: 1 kilometer + Segment 2 Thickness: 1.0 kilometer Segment 3 Geothermal gradient: 30 degC/km - Segment 3 Thickness: 1 kilometer + Segment 3 Thickness: 1.0 kilometer Segment 4 Geothermal gradient: 50 degC/km diff --git a/tests/examples/example_multiple_gradients.out b/tests/examples/example_multiple_gradients.out index 0a921c98..f08fa734 100644 --- a/tests/examples/example_multiple_gradients.out +++ b/tests/examples/example_multiple_gradients.out @@ -4,10 +4,10 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.8.4 - Simulation Date: 2025-03-19 - Simulation Time: 10:30 - Calculation Time: 0.814 sec + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 10:13 + Calculation Time: 0.779 sec ***SUMMARY OF RESULTS*** @@ -19,11 +19,11 @@ Simulation Metadata Flowrate per production well: 60.0 kg/sec Well depth: 4.0 kilometer Segment 1 Geothermal gradient: 50 degC/km - Segment 1 Thickness: 1 kilometer + Segment 1 Thickness: 1.0 kilometer Segment 2 Geothermal gradient: 40 degC/km - Segment 2 Thickness: 1 kilometer + Segment 2 Thickness: 1.0 kilometer Segment 3 Geothermal gradient: 30 degC/km - Segment 3 Thickness: 1 kilometer + Segment 3 Thickness: 1.0 kilometer Segment 4 Geothermal gradient: 50 degC/km @@ -31,14 +31,14 @@ Simulation Metadata Economic Model = Fixed Charge Rate (FCR) Fixed Charge Rate (FCR): 5.00 - Accrued financing during construction: 0.00 + Accrued financing during construction: 0.00 % Project lifetime: 30 yr Capacity factor: 90.0 % Project NPV: -47.23 MUSD Project IRR: -2.22 % Project VIR=PI=PIR: 0.31 Project MOIC: -0.16 - Project Payback Period: N/A + Project Payback Period: N/A Estimated Jobs Created: 17 ***ENGINEERING PARAMETERS*** @@ -46,7 +46,7 @@ Simulation Metadata Number of Production Wells: 2 Number of Injection Wells: 2 Well depth: 4.0 kilometer - Water loss rate: 2.0 + Water loss rate: 2.0 % Pump efficiency: 80.0 % Injection temperature: 50.0 degC User-provided production well temperature drop @@ -63,11 +63,11 @@ Simulation Metadata Maximum reservoir temperature: 400.0 degC Number of segments: 4 Segment 1 Geothermal gradient: 50 degC/km - Segment 1 Thickness: 1 kilometer + Segment 1 Thickness: 1.0 kilometer Segment 2 Geothermal gradient: 40 degC/km - Segment 2 Thickness: 1 kilometer + Segment 2 Thickness: 1.0 kilometer Segment 3 Geothermal gradient: 30 degC/km - Segment 3 Thickness: 1 kilometer + Segment 3 Thickness: 1.0 kilometer Segment 4 Geothermal gradient: 50 degC/km diff --git a/tests/examples/example_overpressure.out b/tests/examples/example_overpressure.out index 55a46393..7ed90218 100644 --- a/tests/examples/example_overpressure.out +++ b/tests/examples/example_overpressure.out @@ -4,10 +4,10 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.8.4 - Simulation Date: 2025-03-19 - Simulation Time: 10:30 - Calculation Time: 0.797 sec + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 10:12 + Calculation Time: 0.771 sec ***SUMMARY OF RESULTS*** @@ -25,14 +25,14 @@ Simulation Metadata Economic Model = Fixed Charge Rate (FCR) Fixed Charge Rate (FCR): 5.00 - Accrued financing during construction: 0.00 + Accrued financing during construction: 0.00 % Project lifetime: 30 yr Capacity factor: 90.0 % Project NPV: 1.32 MUSD Project IRR: 7.26 % Project VIR=PI=PIR: 1.03 Project MOIC: 0.89 - Project Payback Period: 13.74 yr + Project Payback Period: 13.74 yr Estimated Jobs Created: 13 ***ENGINEERING PARAMETERS*** @@ -40,7 +40,7 @@ Simulation Metadata Number of Production Wells: 2 Number of Injection Wells: 2 Well depth: 3.0 kilometer - Water loss rate: 2.0 + Water loss rate: 2.0 % Pump efficiency: 80.0 % Injection temperature: 50.0 degC Production Wellbore heat transmission calculated with Ramey's model diff --git a/tests/examples/example_overpressure2.out b/tests/examples/example_overpressure2.out index f8a0cdca..3efc7d7b 100644 --- a/tests/examples/example_overpressure2.out +++ b/tests/examples/example_overpressure2.out @@ -4,10 +4,10 @@ Simulation Metadata ---------------------- - GEOPHIRES Version: 3.8.4 - Simulation Date: 2025-03-19 - Simulation Time: 10:30 - Calculation Time: 0.797 sec + GEOPHIRES Version: 3.9.7 + Simulation Date: 2025-05-15 + Simulation Time: 10:13 + Calculation Time: 0.813 sec ***SUMMARY OF RESULTS*** @@ -25,14 +25,14 @@ Simulation Metadata Economic Model = Fixed Charge Rate (FCR) Fixed Charge Rate (FCR): 5.00 - Accrued financing during construction: 0.00 + Accrued financing during construction: 0.00 % Project lifetime: 30 yr Capacity factor: 90.0 % Project NPV: 2.78 MUSD Project IRR: 7.53 % Project VIR=PI=PIR: 1.06 Project MOIC: 0.94 - Project Payback Period: 13.56 yr + Project Payback Period: 13.56 yr Estimated Jobs Created: 13 ***ENGINEERING PARAMETERS*** @@ -40,7 +40,7 @@ Simulation Metadata Number of Production Wells: 2 Number of Injection Wells: 2 Well depth: 3.0 kilometer - Water loss rate: 2.0 + Water loss rate: 2.0 % Pump efficiency: 80.0 % Injection temperature: 50.0 degC Production Wellbore heat transmission calculated with Ramey's model