Merge branch 'master' into fix-p_nom-existing-renewables
This commit is contained in:
commit
b052a5e54a
@ -10,6 +10,8 @@ Release Notes
|
|||||||
Upcoming Release
|
Upcoming Release
|
||||||
================
|
================
|
||||||
|
|
||||||
|
* Reverted outdated hotfix for doubled renewable capacity in myopic optimization.
|
||||||
|
|
||||||
* Added Enhanced Geothermal Systems for generation of electricity and district heat.
|
* Added Enhanced Geothermal Systems for generation of electricity and district heat.
|
||||||
Cost and available capacity assumptions based on `Aghahosseini et al. (2020)
|
Cost and available capacity assumptions based on `Aghahosseini et al. (2020)
|
||||||
<https://www.sciencedirect.com/science/article/pii/S0306261920312551>`__.
|
<https://www.sciencedirect.com/science/article/pii/S0306261920312551>`__.
|
||||||
|
@ -132,8 +132,6 @@ def _add_land_use_constraint(n):
|
|||||||
"offwind-dc",
|
"offwind-dc",
|
||||||
"offwind-float",
|
"offwind-float",
|
||||||
]:
|
]:
|
||||||
extendable_i = (n.generators.carrier == carrier) & n.generators.p_nom_extendable
|
|
||||||
n.generators.loc[extendable_i, "p_nom_min"] = 0
|
|
||||||
|
|
||||||
ext_i = (n.generators.carrier == carrier) & ~n.generators.p_nom_extendable
|
ext_i = (n.generators.carrier == carrier) & ~n.generators.p_nom_extendable
|
||||||
existing = (
|
existing = (
|
||||||
@ -174,8 +172,6 @@ def _add_land_use_constraint_m(n, planning_horizons, config):
|
|||||||
"offwind-ac",
|
"offwind-ac",
|
||||||
"offwind-dc",
|
"offwind-dc",
|
||||||
]:
|
]:
|
||||||
extendable_i = (n.generators.carrier == carrier) & n.generators.p_nom_extendable
|
|
||||||
n.generators.loc[extendable_i, "p_nom_min"] = 0
|
|
||||||
|
|
||||||
existing = n.generators.loc[n.generators.carrier == carrier, "p_nom"]
|
existing = n.generators.loc[n.generators.carrier == carrier, "p_nom"]
|
||||||
ind = list(
|
ind = list(
|
||||||
|
Loading…
Reference in New Issue
Block a user