Skip to content

Commit 2392fa5

Browse files
templatize remaining result values
1 parent bafb366 commit 2392fa5

2 files changed

Lines changed: 20 additions & 10 deletions

File tree

docs/Fervo_Project_Cape-4.md.jinja

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -81,29 +81,31 @@ in source code for the complete results.
8181
### Economic Results
8282

8383
{# noinspection MarkdownIncorrectTableFormatting #}
84-
| Metric | Result Value | Reference Value(s) | Reference Source |
85-
|----------------------------------------------------|---------------------------------------------|----------------------------------------------------------------|--------------------------------------------------|
84+
| Metric | Result Value | Reference Value(s) | Reference Source |
85+
|----------------------------------------------------|---------------------------------------------|--------------------------------------------------|------------------|
8686
| LCOE | {{ '$' ~ lcoe_usd_per_mwh ~ '/MWh' }} | $80/MWh | Horne et al, 2025 |
8787
| After-tax IRR | {{ irr_pct ~ '%' }} | 15–25% | Typical levered returns for energy projects |
8888
| Project NPV | {{ '$' ~ npv_musd ~ 'M' }} | | |
8989
| Project capital costs: Overnight Capital Cost | {{ '$' ~ occ_gusd ~ 'B' }} | | |
9090
| Project capital costs: Total CAPEX | {{ '$' ~ total_capex_gusd ~ 'B' }} (OCC + interest and inflation during construction) | | |
9191
| Project capital costs: $/kW | {{ '$' ~ capex_usd_per_kw ~ '/kW' }} (based on maximum net electricity generation) | $5000/kW; $4500/kW; $3000–$6000/kW | McClure, 2024; Horne et al, 2025; Latimer, 2025. |
92-
| WACC | 9.49% | 8.3% | Matson, 2024. |
92+
| WACC | {{ wacc_pct ~ '%' }} | 8.3% | Matson, 2024. |
9393
| Well Drilling and Completion Costs | {{ '$' ~ drilling_costs_per_well_musd ~ 'M/well' }}; {{ '$' ~ drilling_costs_musd ~ 'M' }} total | $<4M/well | Latimer, 2025. |
9494
| Stimulation Costs | {{ '$' ~ stim_costs_per_well_musd ~ 'M/well' }}; {{ '$' ~ stim_costs_musd ~ 'M' }} total | $4.65M/well (based on 46%:54% drilling:stimulation cost ratio) | Yusifov & Enriquez, 2025. |
9595

9696

9797
### Technical & Engineering Results
9898

99-
| Metric | Result Value | Reference Value(s) | Reference Source |
100-
|--------------------------------------|--------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
101-
| Minimum Net Electricity Generation | {{ min_net_generation_mwe }} MW | 500 MW | The announced upsizing to 500 MWe (Fervo Energy, 2025) is interpreted to mean that Cape Station's net electricity generation does not fall below 500 MWe. |
102-
| Maximum Net Electricity Generation | {{ max_net_generation_mwe}} MW | | |
103-
| Maximum Total Electricity Generation | 587 MW | | Actual maximum total generation may be bounded or constrained by modular power plant design not modeled in this case study. For example, a modular design with 50MW units may constrain maximum total generation to 600 MW. |
104-
| Number of times redrilling | 2 | 2–5 | Redrilling expected to be required within 5–10 years of project start |
105-
| Average Production Temperature | 200℃ | 204℃, 190.6–198.6℃ (optimal plant operating range) | Trent, 2024; Norbeck et al, 2024. |
99+
{# @formatter:off #}
100+
| Metric | Result Value | Reference Value(s) | Reference Source |
101+
|--------------------------------------|---|---|---|
102+
| Minimum Net Electricity Generation | {{ min_net_generation_mwe }} MW | 500 MW | The announced upsizing to 500 MWe (Fervo Energy, 2025) is interpreted to mean that Cape Station's net electricity generation does not fall below 500 MWe. |
103+
| Maximum Net Electricity Generation | {{ max_net_generation_mwe}} MW | | |
104+
| Maximum Total Electricity Generation | {{ max_total_generation_mwe }} MW | | Actual maximum total generation may be bounded or constrained by modular power plant design not modeled in this case study. For example, a modular design with 50MW units may constrain maximum total generation to 600 MW. |
105+
| Number of times redrilling | {{ number_of_times_redrilling }} | 2–5 | Redrilling expected to be required within 5–10 years of project start |
106+
| Average Production Temperature | {{ average_production_temperature_degc }} ℃ | 204℃, 190.6–198.6℃ (optimal plant operating range) | Trent, 2024; Norbeck et al, 2024. |
106107
| Total fracture surface area per well | {{ total_fracture_surface_area_per_well_mm2 }}×10⁶ m² ({{ total_fracture_surface_area_per_well_mft2 }} million ft²) | Project Red: 2.787×10⁶ m² (30 million ft²) | Greater fracture surface area expected than Project Red (Fercho et al, 2025). |
108+
{# @formatter:on #}
107109
108110
### Sensitivity Analysis
109111

docs/generate_fervo_project_cape_4_md.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,14 @@ def get_result_values(result: GeophiresXResult) -> dict[str, Any]:
9292
'total_capex_gusd': sig_figs(total_capex_q.to('GUSD').magnitude, 3),
9393
'min_net_generation_mwe': round(sig_figs(min_net_generation_mwe, 3)),
9494
'max_net_generation_mwe': round(sig_figs(max_net_generation_mwe, 3)),
95+
'max_total_generation_mwe': round(
96+
sig_figs(r['SURFACE EQUIPMENT SIMULATION RESULTS']['Maximum Total Electricity Generation']['value'], 3)
97+
),
98+
'number_of_times_redrilling': r['ENGINEERING PARAMETERS']['Number of times redrilling']['value'],
99+
'average_production_temperature_degc': round(
100+
sig_figs(r['RESERVOIR SIMULATION RESULTS']['Average Production Temperature']['value'], 3)
101+
),
102+
'wacc_pct': sig_figs(r['ECONOMIC PARAMETERS']['WACC']['value'], 3),
95103
'capex_usd_per_kw': round(
96104
sig_figs((total_capex_q / PlainQuantity(max_net_generation_mwe, 'MW')).to('USD / kW').magnitude, 2)
97105
),

0 commit comments

Comments
 (0)