Skip to content

Commit

Permalink
Merge pull request #995 from oemof/fix/generic-caes-unused-fixed_cost…
Browse files Browse the repository at this point in the history
…s-parameter

Remove obsolete fixed costs parameter for GenericCAES initialization
  • Loading branch information
p-snft committed Oct 18, 2023
2 parents 91c5b55 + 27d677d commit b5b098a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/oemof/solph/components/experimental/_generic_caes.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ class GenericCAES(on.Transformer):
... electrical_input={bel: solph.flows.Flow()},
... fuel_input={bgas: solph.flows.Flow()},
... electrical_output={bel: solph.flows.Flow()},
... params=concept, fixed_costs=0)
... params=concept)
>>> type(caes)
<class 'oemof.solph.components.experimental._generic_caes.GenericCAES'>
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ def test_gen_caes():
fuel_input={bgas: Flow()},
electrical_output={bel_sink: Flow()},
params=concept,
fixed_costs=0,
)
)

Expand Down

0 comments on commit b5b098a

Please sign in to comment.