Skip to content

Commit

Permalink
Corrected number of days in year in annual cost calculation (#3010)
Browse files Browse the repository at this point in the history
  • Loading branch information
j-a-foster authored Dec 5, 2023
1 parent e75276e commit f145d83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion process/costs_2015.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def run(self, output: bool):
self.mean_electric_output = (
heat_transport_variables.pnetelmw * cost_variables.cpfact
)
self.annual_electric_output = self.mean_electric_output * 24.0e0 * 265.25e0
self.annual_electric_output = self.mean_electric_output * 24.0e0 * 365.25e0

# Annual maintenance cost.
self.maintenance = (
Expand Down

0 comments on commit f145d83

Please sign in to comment.