Skip to content

Commit 8345113

Browse files
port comments from doc py to baseline txt
1 parent 0224601 commit 8345113

2 files changed

Lines changed: 11 additions & 9 deletions

File tree

src/geophires_docs/generate_fpc_hiip_analysis_doc.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
from geophires_monte_carlo import GeophiresMonteCarloClient
99
from geophires_monte_carlo import MonteCarloRequest
10+
from geophires_monte_carlo import MonteCarloResult
1011
from geophires_monte_carlo import SimulationProgram
1112
from hip_ra import HipRaInputParameters
1213
from hip_ra_x import HipRaXClient
@@ -69,10 +70,10 @@ def generate_fpc_hiip_analysis_doc():
6970

7071
# Execute the client
7172
mc_client = GeophiresMonteCarloClient()
72-
mc_result = mc_client.get_monte_carlo_result(mc_request)
73+
mc_result: MonteCarloResult = mc_client.get_monte_carlo_result(mc_request)
7374

7475
# 3. Read MC JSON Results directly from the result object
75-
mc_stats = mc_result.result['output']
76+
mc_stats: dict = mc_result.result['output']
7677

7778
mc_stored_heat_mean_kj = mc_stats['Stored Heat (reservoir)']['mean']
7879
mc_stored_heat_mean_15j = mc_stored_heat_mean_kj / 1e12
Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1+
# Project Cape HIIP Validation Analysis Baseline
12
# See https://softwareengineerprogrammer.github.io/GEOPHIRES-X/Fervo_Project_Cape_HIIP_Analysis.html
23

3-
Reservoir Temperature, 199.0,
4-
Rejection Temperature, 80.0,
5-
Reservoir Porosity, 0.0,
6-
Reservoir Area, 48.0,
7-
Reservoir Thickness, 4.0,
4+
Reservoir Temperature, 199.0, -- Explicitly cited as the ORC design intake temperature
5+
Rejection Temperature, 80.0, -- Fixed by D&M to match the produced water injection temperature
6+
Reservoir Porosity, 0.0, -- Matches the "little to no porosity" description
7+
Reservoir Area, 48.0, -- Back-calculated from the SEC's total mean electric capacity of 14,005 MW and volumetric power density of 73 MW/km³ over a 4.0 km depth range
8+
Reservoir Thickness, 4.0, -- Matches the base accumulation depth bound
89
Reservoir Life Cycle, 30,
9-
Rock Heat Capacity, 2.212e12,
10+
Rock Heat Capacity, 2.212e12, -- GEOPHIRES Cape Station baseline
1011
Fluid Specific Heat Capacity, -1.0,
1112
Density Of Reservoir Fluid, -1.0,
12-
Density Of Reservoir Rock, 2.8e12,
13+
Density Of Reservoir Rock, 2.8e12, -- GEOPHIRES Cape Station baseline
1314
Recoverable Heat from Rock, 1.0,
1415
Recoverable Fluid Factor, 1.0,
1516
Print Output to Console, False,

0 commit comments

Comments
 (0)