@@ -87,10 +87,10 @@ def __init__(self, vu: dict[str, Any]):
87
87
capex_q = _Q (results_in_markdown ['Project capital costs: Total CAPEX' ]).quantity ()
88
88
markdown_capex_USD_per_kW = (
89
89
capex_q .to ('USD' ).magnitude
90
- / _Q (results_in_markdown ['Maximum Total Electricity Generation' ]).quantity ().to ('kW' ).magnitude
90
+ / _Q (results_in_markdown ['Maximum Net Electricity Generation' ]).quantity ().to ('kW' ).magnitude
91
91
)
92
92
self .assertAlmostEqual (
93
- sig_figs (markdown_capex_USD_per_kW , 3 ), results_in_markdown ['Project capital costs: $/kW' ]['value' ]
93
+ sig_figs (markdown_capex_USD_per_kW , 2 ), results_in_markdown ['Project capital costs: $/kW' ]['value' ]
94
94
)
95
95
96
96
field_mapping = {
@@ -123,9 +123,9 @@ def __init__(self, vu: dict[str, Any]):
123
123
124
124
result_capex_USD_per_kW = (
125
125
_Q (example_result ._get_result_field ('Total CAPEX' )).quantity ().to ('USD' ).magnitude
126
- / _Q (example_result ._get_result_field ('Maximum Total Electricity Generation' )).quantity ().to ('kW' ).magnitude
126
+ / _Q (example_result ._get_result_field ('Maximum Net Electricity Generation' )).quantity ().to ('kW' ).magnitude
127
127
)
128
- self .assertAlmostEqual (sig_figs (result_capex_USD_per_kW , 3 ), sig_figs (markdown_capex_USD_per_kW , 3 ))
128
+ self .assertAlmostEqual (sig_figs (result_capex_USD_per_kW , 2 ), sig_figs (markdown_capex_USD_per_kW , 2 ))
129
129
130
130
num_doublets = inputs_in_markdown ['Number of Doublets' ]['value' ]
131
131
self .assertEqual (
@@ -187,6 +187,7 @@ def parse_markdown_results_structured(self, markdown_text: str) -> dict:
187
187
'LCOE' ,
188
188
'Maximum Total Electricity Generation' ,
189
189
'Minimum Net Electricity Generation' ,
190
+ 'Maximum Net Electricity Generation' ,
190
191
'Number of times redrilling' ,
191
192
'Project capital costs: Total CAPEX' ,
192
193
'Project capital costs: $/kW' ,
0 commit comments