Skip to content

Commit 0568ba7

Browse files
Remove build date from output as it's both inaccurate and redundant with version - NREL#139
1 parent 8cf4ee9 commit 0568ba7

40 files changed

+0
-41
lines changed

src/geophires_x/AGSOutputs.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ def PrintOutputs(self, model: Model):
8383
f.write("Simulation Metadata\n")
8484
f.write("----------------------\n")
8585
f.write(f' GEOPHIRES Version: {geophires_x.__version__}\n')
86-
f.write(" GEOPHIRES Build Date: 2022-06-30\n")
8786
f.write(" Simulation Date: " + datetime.datetime.now().strftime("%Y-%m-%d\n"))
8887
f.write(" Simulation Time: " + datetime.datetime.now().strftime("%H:%M\n"))
8988
f.write(" Calculation Time: " + "{0:10.3f}".format((time.time() - model.tic)) + " sec\n")

src/geophires_x/Outputs.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -778,7 +778,6 @@ def PrintOutputs(self, model: Model):
778778
pumping_power_results = []
779779

780780
simulation_metadata.append(OutputTableItem('GEOPHIRES Version', geophires_x.__version__))
781-
simulation_metadata.append(OutputTableItem('GEOPHIRES Build Date', '2024-03-05'))
782781
simulation_metadata.append(OutputTableItem('Simulation Date', datetime.datetime.now().strftime('%Y-%m-%d')))
783782
simulation_metadata.append(OutputTableItem('Simulation Time', datetime.datetime.now().strftime('%H:%M')))
784783
simulation_metadata.append(OutputTableItem('Calculation Time', '{0:10.3f}'.format((time.time() - model.tic)) + ' sec'))
@@ -1554,7 +1553,6 @@ def PrintOutputs(self, model: Model):
15541553
f.write('Simulation Metadata\n')
15551554
f.write('----------------------\n')
15561555
f.write(f' GEOPHIRES Version: {geophires_x.__version__}\n')
1557-
f.write(' GEOPHIRES Build Date: 2024-03-05\n') # FIXME TODO https://github.com/NREL/GEOPHIRES-X/issues/139
15581556
f.write(' Simulation Date: '+ datetime.datetime.now().strftime('%Y-%m-%d\n'))
15591557
f.write(' Simulation Time: '+ datetime.datetime.now().strftime('%H:%M\n'))
15601558
f.write(' Calculation Time: '+'{0:10.3f}'.format((time.time()-model.tic)) + ' sec\n')

src/geophires_x/SUTRAOutputs.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@ def PrintOutputs(self, model: Model):
117117
f.write("Simulation Metadata\n")
118118
f.write("----------------------\n")
119119
f.write(f' GEOPHIRES Version: {geophires_x.__version__}\n')
120-
f.write(" GEOPHIRES Build Date: 2023-11-06\n")
121120
f.write(" Simulation Date: "+ datetime.datetime.now().strftime("%Y-%m-%d\n"))
122121
f.write(" Simulation Time: "+ datetime.datetime.now().strftime("%H:%M\n"))
123122
f.write(" Calculation Time: "+"{0:10.3f}".format((time.time()-model.tic)) + " sec\n")

tests/examples/Beckers_et_al_2023_Tabulated_Database_Coaxial_sCO2_heat.out

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
Simulation Metadata
66
----------------------
77
GEOPHIRES Version: 3.4.4
8-
GEOPHIRES Build Date: 2022-06-30
98
Simulation Date: 2024-03-02
109
Simulation Time: 14:11
1110
Calculation Time: 1.178 sec

tests/examples/Beckers_et_al_2023_Tabulated_Database_Coaxial_water_heat.out

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
Simulation Metadata
66
----------------------
77
GEOPHIRES Version: 3.4.4
8-
GEOPHIRES Build Date: 2022-06-30
98
Simulation Date: 2024-03-02
109
Simulation Time: 14:12
1110
Calculation Time: 1.004 sec

tests/examples/Beckers_et_al_2023_Tabulated_Database_Uloop_sCO2_elec.out

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
Simulation Metadata
66
----------------------
77
GEOPHIRES Version: 3.4.4
8-
GEOPHIRES Build Date: 2022-06-30
98
Simulation Date: 2024-03-02
109
Simulation Time: 14:13
1110
Calculation Time: 1.085 sec

tests/examples/Beckers_et_al_2023_Tabulated_Database_Uloop_sCO2_heat.out

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
Simulation Metadata
66
----------------------
77
GEOPHIRES Version: 3.4.4
8-
GEOPHIRES Build Date: 2022-06-30
98
Simulation Date: 2024-03-02
109
Simulation Time: 14:13
1110
Calculation Time: 1.093 sec

tests/examples/Beckers_et_al_2023_Tabulated_Database_Uloop_water_elec.out

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
Simulation Metadata
66
----------------------
77
GEOPHIRES Version: 3.4.4
8-
GEOPHIRES Build Date: 2022-06-30
98
Simulation Date: 2024-03-02
109
Simulation Time: 14:14
1110
Calculation Time: 1.073 sec

tests/examples/Beckers_et_al_2023_Tabulated_Database_Uloop_water_heat.out

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
Simulation Metadata
66
----------------------
77
GEOPHIRES Version: 3.4.4
8-
GEOPHIRES Build Date: 2022-06-30
98
Simulation Date: 2024-03-02
109
Simulation Time: 14:14
1110
Calculation Time: 1.026 sec

tests/examples/FIXME_example1_outputunits.out

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
Simulation Metadata
66
----------------------
77
GEOPHIRES Version: 3.0
8-
GEOPHIRES Build Date: 2022-06-30
98
Simulation Date: 2023-09-29
109
Simulation Time: 21:03
1110
Calculation Time: 13.691 sec

0 commit comments

Comments
 (0)