You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/results/generator.jl
+4-8Lines changed: 4 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,8 @@
4
4
- `size_kw` Optimal generator capacity
5
5
- `lifecycle_fixed_om_cost_after_tax` Lifecycle fixed operations and maintenance cost in present value, after tax
6
6
- `year_one_fixed_om_cost_before_tax` fixed operations and maintenance cost over the first year, before considering tax benefits
7
-
- `lifecycle_variable_om_cost_after_tax` Lifecycle variable operations and maintenance cost in present value, after tax
8
-
- `year_one_variable_om_cost_before_tax` variable operations and maintenance cost over the first year, before considering tax benefits
7
+
- `lifecycle_variable_om_cost_after_tax` Lifecycle variable operations and maintenance cost in present value, after tax. Includes om_cost_per_kwh and om_cost_per_hr_per_kw_rated
8
+
- `year_one_variable_om_cost_before_tax` variable operations and maintenance cost over the first year, before considering tax benefits. Includes om_cost_per_kwh and om_cost_per_hr_per_kw_rated
9
9
- `lifecycle_fuel_cost_after_tax` Lifecycle fuel cost in present value, after tax
10
10
- `year_one_fuel_cost_before_tax` Fuel cost over the first year, before considering tax benefits. Does not include fuel use during outages if using multiple outage modeling.
11
11
- `year_one_fuel_cost_after_tax` Fuel cost over the first year, after considering tax benefits. Does not include fuel use during outages if using multiple outage modeling.
@@ -28,17 +28,13 @@ function add_generator_results(m::JuMP.AbstractModel, p::REoptInputs, d::Dict; _
28
28
29
29
GenPerUnitSizeOMCosts =@expression(m, p.third_party_factor * p.pwf_om *sum(m[:dvSize][t] * p.om_cost_per_kw[t] for t in p.techs.gen))
@test r["Financial"]["lifecycle_capital_costs"] ≈100*(700+324.235442*(1-0.26)) + other_offgrid_capex_after_tax atol=0.1# replacement in yr 10 is considered tax deductible
0 commit comments