Skip to content

Commit

Permalink
Bugfix: correct LCOE units in OpenMDAO HOPP wrapper (#43)
Browse files Browse the repository at this point in the history
* correct units for lcoe_real in HOPPComponent
  • Loading branch information
jaredthomas68 authored Nov 11, 2024
1 parent a0ffaf0 commit e37dcd0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Unreleased

- add `CoolProp` to `pyproject.toml`
- change units of `lcoe_real` in `HOPPComponent` from "MW*h" to "kW*h"

## v0.1.3 [1 November 2024]

Expand Down
2 changes: 1 addition & 1 deletion greenheart/tools/optimization/openmdao.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def setup(self):
self.add_output("hybrid_electrical_generation_capex", units="USD")
self.add_output("hybrid_electrical_generation_opex", units="USD")
self.add_output("aep", units="kW*h")
self.add_output("lcoe_real", units="USD/(MW*h)")
self.add_output("lcoe_real", units="USD/(kW*h)")
self.add_output("power_signal", units="kW", val=np.zeros(8760))

def compute(self, inputs, outputs):
Expand Down

0 comments on commit e37dcd0

Please sign in to comment.