Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OM Cost bug #340

Merged
merged 2 commits into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion greenheart/simulation/greenheart_simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ def setup_greenheart_simulation(config: GreenHeartSimulationConfig):
)
):
config.hopp_config["technologies"]["wind"]["fin_model"]["system_costs"][
"om_fixed"
Copy link
Collaborator

@bayc bayc Aug 27, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@kbrunik Should om_fixed be used anywhere? Or is it just an incorrect value/not needed for our analyses?

"om_capacity"
][i] = config.hopp_config["config"]["cost_info"]["wind_om_per_kw"]

om_fixed_wind_fin_model = config.hopp_config["technologies"]["wind"][
Expand Down
2 changes: 1 addition & 1 deletion hopp/simulation/hybrid_simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ def set_om_costs(self, pv_om_per_kw=None, wind_om_per_kw=None,
if battery_om_per_kw:
self.battery.om_capacity = battery_om_per_kw
if battery_om_per_mwh:
self.pv.om_production = battery_om_per_mwh
self.battery.om_production = battery_om_per_mwh

if hybrid_om_per_kw:
self.grid.om_capacity = hybrid_om_per_kw
Expand Down
Loading