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

bugfixes and documentation update review #317

Merged
merged 2 commits into from
Nov 19, 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
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