|
13 | 13 | from geophires_x.EconomicsUtils import BuildPricingModel, wacc_output_parameter, nominal_discount_rate_parameter, \ |
14 | 14 | real_discount_rate_parameter, after_tax_irr_parameter, moic_parameter, project_vir_parameter, \ |
15 | 15 | project_payback_period_parameter, inflation_cost_during_construction_output_parameter, \ |
16 | | - interest_during_construction_output_parameter, total_capex_parameter_output_parameter |
| 16 | + interest_during_construction_output_parameter, total_capex_parameter_output_parameter, \ |
| 17 | + overnight_capital_cost_output_parameter |
17 | 18 | from geophires_x.GeoPHIRESUtils import quantity |
18 | 19 | from geophires_x.OptionList import Configuration, WellDrillingCostCorrelation, EconomicModel, EndUseOptions, PlantType, \ |
19 | 20 | _WellDrillingCostCorrelationCitation |
@@ -2216,6 +2217,10 @@ def __init__(self, model: Model): |
2216 | 2217 | PreferredUnits=PercentUnit.PERCENT, |
2217 | 2218 | CurrentUnits=PercentUnit.PERCENT |
2218 | 2219 | ) |
| 2220 | + |
| 2221 | + self.overnight_capital_cost = self.OutputParameterDict[ |
| 2222 | + self.overnight_capital_cost.Name] = overnight_capital_cost_output_parameter() |
| 2223 | + |
2219 | 2224 | self.accrued_financing_during_construction_percentage = self.OutputParameterDict[ |
2220 | 2225 | self.accrued_financing_during_construction_percentage.Name] = OutputParameter( |
2221 | 2226 | Name='Accrued financing during construction', |
@@ -3507,6 +3512,9 @@ def _calculate_sam_economics(self, model: Model) -> None: |
3507 | 3512 | self.CCap.value = (self.sam_economics_calculations.capex.quantity() |
3508 | 3513 | .to(self.CCap.CurrentUnits.value).magnitude) |
3509 | 3514 |
|
| 3515 | + self.overnight_capital_cost.value = (self.sam_economics_calculations.overnight_capital_cost.quantity() |
| 3516 | + .to(self.overnight_capital_cost.CurrentUnits.value).magnitude) |
| 3517 | + |
3510 | 3518 | self.interest_during_construction.value = quantity( |
3511 | 3519 | self.sam_economics_calculations.pre_revenue_costs_and_cash_flow.interest_during_construction_usd, |
3512 | 3520 | 'USD' |
|
0 commit comments