From 0568ba76092bf3f19ff6d9f48b62bbf27a0beed0 Mon Sep 17 00:00:00 2001 From: softwareengineerprogrammer <4056124+softwareengineerprogrammer@users.noreply.github.com> Date: Wed, 8 May 2024 10:56:07 -0700 Subject: [PATCH] Remove build date from output as it's both inaccurate and redundant with version - https://github.com/NREL/GEOPHIRES-X/issues/139 --- src/geophires_x/AGSOutputs.py | 1 - src/geophires_x/Outputs.py | 2 -- src/geophires_x/SUTRAOutputs.py | 1 - .../Beckers_et_al_2023_Tabulated_Database_Coaxial_sCO2_heat.out | 1 - ...Beckers_et_al_2023_Tabulated_Database_Coaxial_water_heat.out | 1 - .../Beckers_et_al_2023_Tabulated_Database_Uloop_sCO2_elec.out | 1 - .../Beckers_et_al_2023_Tabulated_Database_Uloop_sCO2_heat.out | 1 - .../Beckers_et_al_2023_Tabulated_Database_Uloop_water_elec.out | 1 - .../Beckers_et_al_2023_Tabulated_Database_Uloop_water_heat.out | 1 - tests/examples/FIXME_example1_outputunits.out | 1 - tests/examples/Fervo_Norbeck_Latimer_2024.out | 1 - tests/examples/S-DAC-GT.out | 1 - tests/examples/SUTRAExample1.out | 1 - .../Wanju_Yuan_Closed-Loop_Geothermal_Energy_Recovery.out | 1 - tests/examples/example1.out | 1 - tests/examples/example10_HP.out | 1 - tests/examples/example11_AC.out | 1 - tests/examples/example12_DH.out | 1 - tests/examples/example13.out | 1 - tests/examples/example1_addons.out | 1 - tests/examples/example2.out | 1 - tests/examples/example3.out | 1 - tests/examples/example4.out | 1 - tests/examples/example5.out | 1 - tests/examples/example8.out | 1 - tests/examples/example9.out | 1 - tests/examples/example_ITC.out | 1 - tests/examples/example_PTC.out | 1 - tests/examples/example_SHR-1.out | 1 - tests/examples/example_SHR-2.out | 1 - tests/examples/example_multiple_gradients.out | 1 - tests/examples/example_overpressure.out | 1 - tests/examples/example_overpressure2.out | 1 - tests/geophires-result_example-1.out | 1 - tests/geophires-result_example-2.out | 1 - tests/geophires-result_example-3.out | 1 - tests/geophires-result_example-4.out | 1 - tests/geophires-result_example-5.out | 1 - tests/result_with_ccus_profile.out | 1 - tests/result_with_revenue_and_cashflow_profile.out | 1 - 40 files changed, 41 deletions(-) diff --git a/src/geophires_x/AGSOutputs.py b/src/geophires_x/AGSOutputs.py index 87edbd7a..6c4836a3 100644 --- a/src/geophires_x/AGSOutputs.py +++ b/src/geophires_x/AGSOutputs.py @@ -83,7 +83,6 @@ def PrintOutputs(self, model: Model): f.write("Simulation Metadata\n") f.write("----------------------\n") f.write(f' GEOPHIRES Version: {geophires_x.__version__}\n') - f.write(" GEOPHIRES Build Date: 2022-06-30\n") f.write(" Simulation Date: " + datetime.datetime.now().strftime("%Y-%m-%d\n")) f.write(" Simulation Time: " + datetime.datetime.now().strftime("%H:%M\n")) f.write(" Calculation Time: " + "{0:10.3f}".format((time.time() - model.tic)) + " sec\n") diff --git a/src/geophires_x/Outputs.py b/src/geophires_x/Outputs.py index 3f58ea27..3625ba36 100644 --- a/src/geophires_x/Outputs.py +++ b/src/geophires_x/Outputs.py @@ -778,7 +778,6 @@ def PrintOutputs(self, model: Model): pumping_power_results = [] simulation_metadata.append(OutputTableItem('GEOPHIRES Version', geophires_x.__version__)) - simulation_metadata.append(OutputTableItem('GEOPHIRES Build Date', '2024-03-05')) simulation_metadata.append(OutputTableItem('Simulation Date', datetime.datetime.now().strftime('%Y-%m-%d'))) simulation_metadata.append(OutputTableItem('Simulation Time', datetime.datetime.now().strftime('%H:%M'))) simulation_metadata.append(OutputTableItem('Calculation Time', '{0:10.3f}'.format((time.time() - model.tic)) + ' sec')) @@ -1554,7 +1553,6 @@ def PrintOutputs(self, model: Model): f.write('Simulation Metadata\n') f.write('----------------------\n') f.write(f' GEOPHIRES Version: {geophires_x.__version__}\n') - f.write(' GEOPHIRES Build Date: 2024-03-05\n') # FIXME TODO https://github.com/NREL/GEOPHIRES-X/issues/139 f.write(' Simulation Date: '+ datetime.datetime.now().strftime('%Y-%m-%d\n')) f.write(' Simulation Time: '+ datetime.datetime.now().strftime('%H:%M\n')) f.write(' Calculation Time: '+'{0:10.3f}'.format((time.time()-model.tic)) + ' sec\n') diff --git a/src/geophires_x/SUTRAOutputs.py b/src/geophires_x/SUTRAOutputs.py index 1226a40d..023adea3 100644 --- a/src/geophires_x/SUTRAOutputs.py +++ b/src/geophires_x/SUTRAOutputs.py @@ -117,7 +117,6 @@ def PrintOutputs(self, model: Model): f.write("Simulation Metadata\n") f.write("----------------------\n") f.write(f' GEOPHIRES Version: {geophires_x.__version__}\n') - f.write(" GEOPHIRES Build Date: 2023-11-06\n") f.write(" Simulation Date: "+ datetime.datetime.now().strftime("%Y-%m-%d\n")) f.write(" Simulation Time: "+ datetime.datetime.now().strftime("%H:%M\n")) f.write(" Calculation Time: "+"{0:10.3f}".format((time.time()-model.tic)) + " sec\n") diff --git a/tests/examples/Beckers_et_al_2023_Tabulated_Database_Coaxial_sCO2_heat.out b/tests/examples/Beckers_et_al_2023_Tabulated_Database_Coaxial_sCO2_heat.out index 6abe4c49..601ca766 100644 --- a/tests/examples/Beckers_et_al_2023_Tabulated_Database_Coaxial_sCO2_heat.out +++ b/tests/examples/Beckers_et_al_2023_Tabulated_Database_Coaxial_sCO2_heat.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.4 - GEOPHIRES Build Date: 2022-06-30 Simulation Date: 2024-03-02 Simulation Time: 14:11 Calculation Time: 1.178 sec diff --git a/tests/examples/Beckers_et_al_2023_Tabulated_Database_Coaxial_water_heat.out b/tests/examples/Beckers_et_al_2023_Tabulated_Database_Coaxial_water_heat.out index fe77d540..deb133e3 100644 --- a/tests/examples/Beckers_et_al_2023_Tabulated_Database_Coaxial_water_heat.out +++ b/tests/examples/Beckers_et_al_2023_Tabulated_Database_Coaxial_water_heat.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.4 - GEOPHIRES Build Date: 2022-06-30 Simulation Date: 2024-03-02 Simulation Time: 14:12 Calculation Time: 1.004 sec diff --git a/tests/examples/Beckers_et_al_2023_Tabulated_Database_Uloop_sCO2_elec.out b/tests/examples/Beckers_et_al_2023_Tabulated_Database_Uloop_sCO2_elec.out index 478a9fa3..a3f80275 100644 --- a/tests/examples/Beckers_et_al_2023_Tabulated_Database_Uloop_sCO2_elec.out +++ b/tests/examples/Beckers_et_al_2023_Tabulated_Database_Uloop_sCO2_elec.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.4 - GEOPHIRES Build Date: 2022-06-30 Simulation Date: 2024-03-02 Simulation Time: 14:13 Calculation Time: 1.085 sec diff --git a/tests/examples/Beckers_et_al_2023_Tabulated_Database_Uloop_sCO2_heat.out b/tests/examples/Beckers_et_al_2023_Tabulated_Database_Uloop_sCO2_heat.out index 83151137..9f8b837f 100644 --- a/tests/examples/Beckers_et_al_2023_Tabulated_Database_Uloop_sCO2_heat.out +++ b/tests/examples/Beckers_et_al_2023_Tabulated_Database_Uloop_sCO2_heat.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.4 - GEOPHIRES Build Date: 2022-06-30 Simulation Date: 2024-03-02 Simulation Time: 14:13 Calculation Time: 1.093 sec diff --git a/tests/examples/Beckers_et_al_2023_Tabulated_Database_Uloop_water_elec.out b/tests/examples/Beckers_et_al_2023_Tabulated_Database_Uloop_water_elec.out index 54cb219f..337917d6 100644 --- a/tests/examples/Beckers_et_al_2023_Tabulated_Database_Uloop_water_elec.out +++ b/tests/examples/Beckers_et_al_2023_Tabulated_Database_Uloop_water_elec.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.4 - GEOPHIRES Build Date: 2022-06-30 Simulation Date: 2024-03-02 Simulation Time: 14:14 Calculation Time: 1.073 sec diff --git a/tests/examples/Beckers_et_al_2023_Tabulated_Database_Uloop_water_heat.out b/tests/examples/Beckers_et_al_2023_Tabulated_Database_Uloop_water_heat.out index 55df5059..48deb5ee 100644 --- a/tests/examples/Beckers_et_al_2023_Tabulated_Database_Uloop_water_heat.out +++ b/tests/examples/Beckers_et_al_2023_Tabulated_Database_Uloop_water_heat.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.4 - GEOPHIRES Build Date: 2022-06-30 Simulation Date: 2024-03-02 Simulation Time: 14:14 Calculation Time: 1.026 sec diff --git a/tests/examples/FIXME_example1_outputunits.out b/tests/examples/FIXME_example1_outputunits.out index 3410e8f2..7df4de12 100644 --- a/tests/examples/FIXME_example1_outputunits.out +++ b/tests/examples/FIXME_example1_outputunits.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.0 - GEOPHIRES Build Date: 2022-06-30 Simulation Date: 2023-09-29 Simulation Time: 21:03 Calculation Time: 13.691 sec diff --git a/tests/examples/Fervo_Norbeck_Latimer_2024.out b/tests/examples/Fervo_Norbeck_Latimer_2024.out index 341ef736..57d95991 100644 --- a/tests/examples/Fervo_Norbeck_Latimer_2024.out +++ b/tests/examples/Fervo_Norbeck_Latimer_2024.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.28 - GEOPHIRES Build Date: 2024-03-05 Simulation Date: 2024-05-07 Simulation Time: 13:15 Calculation Time: 0.612 sec diff --git a/tests/examples/S-DAC-GT.out b/tests/examples/S-DAC-GT.out index 4798eff2..c7ef68b8 100644 --- a/tests/examples/S-DAC-GT.out +++ b/tests/examples/S-DAC-GT.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.22 -GEOPHIRES Build Date: 2024-03-05 Simulation Date: 2024-03-20 Simulation Time: 17:51 Calculation Time: 0.433 sec diff --git a/tests/examples/SUTRAExample1.out b/tests/examples/SUTRAExample1.out index 2b251f33..848a42c6 100644 --- a/tests/examples/SUTRAExample1.out +++ b/tests/examples/SUTRAExample1.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.0 - GEOPHIRES Build Date: 2023-11-06 Simulation Date: 2023-11-06 Simulation Time: 17:26 Calculation Time: 1.566 sec 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 bb977ba1..67d9830e 100644 --- a/tests/examples/Wanju_Yuan_Closed-Loop_Geothermal_Energy_Recovery.out +++ b/tests/examples/Wanju_Yuan_Closed-Loop_Geothermal_Energy_Recovery.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.25 - GEOPHIRES Build Date: 2024-03-05 Simulation Date: 2024-04-30 Simulation Time: 08:43 Calculation Time: 1.706 sec diff --git a/tests/examples/example1.out b/tests/examples/example1.out index 7a8b05fb..0a41e19e 100644 --- a/tests/examples/example1.out +++ b/tests/examples/example1.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.25 - GEOPHIRES Build Date: 2024-03-05 Simulation Date: 2024-04-16 Simulation Time: 10:32 Calculation Time: 0.962 sec diff --git a/tests/examples/example10_HP.out b/tests/examples/example10_HP.out index 591b5b27..f408faa6 100644 --- a/tests/examples/example10_HP.out +++ b/tests/examples/example10_HP.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.25 - GEOPHIRES Build Date: 2024-03-05 Simulation Date: 2024-04-16 Simulation Time: 10:37 Calculation Time: 0.275 sec diff --git a/tests/examples/example11_AC.out b/tests/examples/example11_AC.out index 4aa65a5e..62581d5e 100644 --- a/tests/examples/example11_AC.out +++ b/tests/examples/example11_AC.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.25 - GEOPHIRES Build Date: 2024-03-05 Simulation Date: 2024-04-16 Simulation Time: 10:36 Calculation Time: 0.274 sec diff --git a/tests/examples/example12_DH.out b/tests/examples/example12_DH.out index 8143e650..b06a134c 100644 --- a/tests/examples/example12_DH.out +++ b/tests/examples/example12_DH.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.25 - GEOPHIRES Build Date: 2024-03-05 Simulation Date: 2024-04-16 Simulation Time: 10:46 Calculation Time: 0.257 sec diff --git a/tests/examples/example13.out b/tests/examples/example13.out index b228bc39..a6426ace 100644 --- a/tests/examples/example13.out +++ b/tests/examples/example13.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.25 - GEOPHIRES Build Date: 2024-03-05 Simulation Date: 2024-04-16 Simulation Time: 10:29 Calculation Time: 0.088 sec diff --git a/tests/examples/example1_addons.out b/tests/examples/example1_addons.out index 1a8a9d90..4d76179b 100644 --- a/tests/examples/example1_addons.out +++ b/tests/examples/example1_addons.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.25 - GEOPHIRES Build Date: 2024-03-05 Simulation Date: 2024-04-16 Simulation Time: 10:26 Calculation Time: 0.937 sec diff --git a/tests/examples/example2.out b/tests/examples/example2.out index 6040223a..72dfee10 100644 --- a/tests/examples/example2.out +++ b/tests/examples/example2.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.25 - GEOPHIRES Build Date: 2024-03-05 Simulation Date: 2024-04-16 Simulation Time: 10:33 Calculation Time: 0.365 sec diff --git a/tests/examples/example3.out b/tests/examples/example3.out index 4a3b1a8b..be17ae2c 100644 --- a/tests/examples/example3.out +++ b/tests/examples/example3.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.25 - GEOPHIRES Build Date: 2024-03-05 Simulation Date: 2024-04-16 Simulation Time: 10:34 Calculation Time: 0.333 sec diff --git a/tests/examples/example4.out b/tests/examples/example4.out index 44c3b90c..bca8d7c0 100644 --- a/tests/examples/example4.out +++ b/tests/examples/example4.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.25 - GEOPHIRES Build Date: 2024-03-05 Simulation Date: 2024-04-16 Simulation Time: 10:30 Calculation Time: 0.127 sec diff --git a/tests/examples/example5.out b/tests/examples/example5.out index 745d1288..86f54cba 100644 --- a/tests/examples/example5.out +++ b/tests/examples/example5.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.25 - GEOPHIRES Build Date: 2024-03-05 Simulation Date: 2024-04-16 Simulation Time: 10:31 Calculation Time: 0.124 sec diff --git a/tests/examples/example8.out b/tests/examples/example8.out index 9d940954..a8e02b45 100644 --- a/tests/examples/example8.out +++ b/tests/examples/example8.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.15 - GEOPHIRES Build Date: 2024-03-05 Simulation Date: 2024-03-05 Simulation Time: 09:59 Calculation Time: 0.617 sec diff --git a/tests/examples/example9.out b/tests/examples/example9.out index fd793375..3ded2edd 100644 --- a/tests/examples/example9.out +++ b/tests/examples/example9.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.25 - GEOPHIRES Build Date: 2024-03-05 Simulation Date: 2024-04-16 Simulation Time: 10:49 Calculation Time: 0.949 sec diff --git a/tests/examples/example_ITC.out b/tests/examples/example_ITC.out index cbd36d13..6af617a4 100644 --- a/tests/examples/example_ITC.out +++ b/tests/examples/example_ITC.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.25 - GEOPHIRES Build Date: 2024-03-05 Simulation Date: 2024-04-16 Simulation Time: 10:38 Calculation Time: 0.929 sec diff --git a/tests/examples/example_PTC.out b/tests/examples/example_PTC.out index 5952e80c..254884e3 100644 --- a/tests/examples/example_PTC.out +++ b/tests/examples/example_PTC.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.25 - GEOPHIRES Build Date: 2024-03-05 Simulation Date: 2024-04-16 Simulation Time: 10:36 Calculation Time: 0.971 sec diff --git a/tests/examples/example_SHR-1.out b/tests/examples/example_SHR-1.out index 6218480d..e32f6d13 100644 --- a/tests/examples/example_SHR-1.out +++ b/tests/examples/example_SHR-1.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.22 - GEOPHIRES Build Date: 2024-03-05 Simulation Date: 2024-04-10 Simulation Time: 14:58 Calculation Time: 1.538 sec diff --git a/tests/examples/example_SHR-2.out b/tests/examples/example_SHR-2.out index 9e79fdfa..0a315d50 100644 --- a/tests/examples/example_SHR-2.out +++ b/tests/examples/example_SHR-2.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.25 - GEOPHIRES Build Date: 2024-03-05 Simulation Date: 2024-04-16 Simulation Time: 10:45 Calculation Time: 0.957 sec diff --git a/tests/examples/example_multiple_gradients.out b/tests/examples/example_multiple_gradients.out index 4bcb2e00..6177df23 100644 --- a/tests/examples/example_multiple_gradients.out +++ b/tests/examples/example_multiple_gradients.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.25 - GEOPHIRES Build Date: 2024-03-05 Simulation Date: 2024-04-16 Simulation Time: 10:47 Calculation Time: 0.953 sec diff --git a/tests/examples/example_overpressure.out b/tests/examples/example_overpressure.out index 02d8723d..d9e4a3aa 100644 --- a/tests/examples/example_overpressure.out +++ b/tests/examples/example_overpressure.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.25 - GEOPHIRES Build Date: 2024-03-05 Simulation Date: 2024-04-21 Simulation Time: 20:27 Calculation Time: 1.553 sec diff --git a/tests/examples/example_overpressure2.out b/tests/examples/example_overpressure2.out index 5b8febf8..fa76a194 100644 --- a/tests/examples/example_overpressure2.out +++ b/tests/examples/example_overpressure2.out @@ -6,7 +6,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.26 - GEOPHIRES Build Date: 2024-03-05 Simulation Date: 2024-05-02 Simulation Time: 11:44 Calculation Time: 1.647 sec diff --git a/tests/geophires-result_example-1.out b/tests/geophires-result_example-1.out index f0d25efb..78223891 100644 --- a/tests/geophires-result_example-1.out +++ b/tests/geophires-result_example-1.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.0 - GEOPHIRES Build Date: 2022-06-30 Simulation Date: 2023-09-30 Simulation Time: 11:10 Calculation Time: 1.065 sec diff --git a/tests/geophires-result_example-2.out b/tests/geophires-result_example-2.out index a7008fb4..1162daf7 100644 --- a/tests/geophires-result_example-2.out +++ b/tests/geophires-result_example-2.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.0 - GEOPHIRES Build Date: 2022-06-30 Simulation Date: 2023-09-30 Simulation Time: 11:08 Calculation Time: 2.897 sec diff --git a/tests/geophires-result_example-3.out b/tests/geophires-result_example-3.out index 6eaf891a..d20191bd 100644 --- a/tests/geophires-result_example-3.out +++ b/tests/geophires-result_example-3.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.0 - GEOPHIRES Build Date: 2022-06-30 Simulation Date: 2023-09-30 Simulation Time: 11:11 Calculation Time: 0.057 sec diff --git a/tests/geophires-result_example-4.out b/tests/geophires-result_example-4.out index 6234ec30..e696f0a4 100644 --- a/tests/geophires-result_example-4.out +++ b/tests/geophires-result_example-4.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.0 - GEOPHIRES Build Date: 2022-06-30 Simulation Date: 2023-09-30 Simulation Time: 17:51 Calculation Time: 0.117 sec diff --git a/tests/geophires-result_example-5.out b/tests/geophires-result_example-5.out index 7c908346..4a5ba9c2 100644 --- a/tests/geophires-result_example-5.out +++ b/tests/geophires-result_example-5.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.0 - GEOPHIRES Build Date: 2022-06-30 Simulation Date: 2023-09-28 Simulation Time: 17:14 Calculation Time: 7.460 sec diff --git a/tests/result_with_ccus_profile.out b/tests/result_with_ccus_profile.out index 84308491..5fa96333 100644 --- a/tests/result_with_ccus_profile.out +++ b/tests/result_with_ccus_profile.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.11 - GEOPHIRES Build Date: 2022-06-30 Simulation Date: 2024-03-01 Simulation Time: 12:31 Calculation Time: 0.616 sec diff --git a/tests/result_with_revenue_and_cashflow_profile.out b/tests/result_with_revenue_and_cashflow_profile.out index 4dcaeade..7b9ecd5c 100644 --- a/tests/result_with_revenue_and_cashflow_profile.out +++ b/tests/result_with_revenue_and_cashflow_profile.out @@ -5,7 +5,6 @@ Simulation Metadata ---------------------- GEOPHIRES Version: 3.4.12 - GEOPHIRES Build Date: 2022-06-30 Simulation Date: 2024-03-04 Simulation Time: 07:46 Calculation Time: 0.611 sec