Skip to content

Commit

Permalink
Merge pull request #317 from UU-ER/storage-bugfix_documentation-review
Browse files Browse the repository at this point in the history
bugfixes and documentation update review
  • Loading branch information
JeanWi authored Nov 19, 2024
2 parents f0fc2e8 + 75a536b commit 8a147ad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -383,10 +383,10 @@ def init_cut_bidirectional_fix2(const, t):
)

if self.flexibility_data["power_energy_ratio"] == "fixedcapacity":
b_tec.const_cut_bidirectional = pyo.Constraint(
b_tec.const_cut_bidirectional1 = pyo.Constraint(
self.set_t_performance, rule=init_cut_bidirectional_fix1
)
b_tec.const_cut_bidirectional = pyo.Constraint(
b_tec.const_cut_bidirectional2 = pyo.Constraint(
self.set_t_performance, rule=init_cut_bidirectional_fix2
)
else:
Expand Down
6 changes: 3 additions & 3 deletions docs/source/workflow/LoadData.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ system by setting:
.. code-block:: console
"existing": [],
"new": ['electricityOffshore']
"new": ["electricityOffshore"]
- Then, for each of the networks that you specify, an input data folder with that
network name should be added in the corresponding folder ("existing" or
Expand Down Expand Up @@ -88,8 +88,8 @@ system by setting:

.. code-block:: console
"existing": ['WindTurbine_Onshore_1500': 2, 'Photovoltaic': 2.4],
"new": ['Storage_Battery', 'Photovoltaic', 'Furnace_NG']
"existing": {"WindTurbine_Onshore_1500": 2, "Photovoltaic": 2.4},
"new": ["Storage_Battery", "Photovoltaic", "Furnace_NG"]
Note: For wind turbines, the capacity of one turbine is specified in the name
(1500 W), and the size is an integer. Here, we thus have two 1.5MW wind turbines
Expand Down

0 comments on commit 8a147ad

Please sign in to comment.