2021-07-01 18:09:04 +00:00
|
|
|
"""Solve network."""
|
2019-04-18 09:39:17 +00:00
|
|
|
|
|
|
|
import pypsa
|
|
|
|
|
2021-07-01 18:09:04 +00:00
|
|
|
import numpy as np
|
2019-11-27 17:34:53 +00:00
|
|
|
|
2021-07-01 18:09:04 +00:00
|
|
|
from pypsa.linopt import get_var, linexpr, define_constraints
|
2019-04-18 09:39:17 +00:00
|
|
|
|
2021-07-01 18:09:04 +00:00
|
|
|
from pypsa.linopf import network_lopf, ilopf
|
2019-04-18 09:39:17 +00:00
|
|
|
|
|
|
|
from vresutils.benchmark import memory_logger
|
|
|
|
|
2021-07-01 18:09:04 +00:00
|
|
|
from helper import override_component_attrs
|
2019-04-18 09:39:17 +00:00
|
|
|
|
2021-07-01 18:09:04 +00:00
|
|
|
import logging
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
pypsa.pf.logger.setLevel(logging.WARNING)
|
2019-04-18 09:39:17 +00:00
|
|
|
|
|
|
|
|
2021-07-01 18:09:04 +00:00
|
|
|
def add_land_use_constraint(n):
|
2019-04-18 09:39:17 +00:00
|
|
|
|
2021-07-01 18:09:04 +00:00
|
|
|
#warning: this will miss existing offwind which is not classed AC-DC and has carrier 'offwind'
|
|
|
|
for carrier in ['solar', 'onwind', 'offwind-ac', 'offwind-dc']:
|
|
|
|
existing = n.generators.loc[n.generators.carrier == carrier, "p_nom"].groupby(n.generators.bus.map(n.buses.location)).sum()
|
|
|
|
existing.index += " " + carrier + "-" + snakemake.wildcards.planning_horizons
|
|
|
|
n.generators.loc[existing.index, "p_nom_max"] -= existing
|
2019-04-18 09:39:17 +00:00
|
|
|
|
2021-07-01 18:09:04 +00:00
|
|
|
n.generators.p_nom_max.clip(lower=0, inplace=True)
|
2019-04-18 09:39:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
def prepare_network(n, solve_opts=None):
|
2021-07-01 18:09:04 +00:00
|
|
|
|
2019-04-18 09:39:17 +00:00
|
|
|
if 'clip_p_max_pu' in solve_opts:
|
2020-01-24 14:31:17 +00:00
|
|
|
for df in (n.generators_t.p_max_pu, n.generators_t.p_min_pu, n.storage_units_t.inflow):
|
2019-04-18 09:39:17 +00:00
|
|
|
df.where(df>solve_opts['clip_p_max_pu'], other=0., inplace=True)
|
|
|
|
|
|
|
|
if solve_opts.get('load_shedding'):
|
|
|
|
n.add("Carrier", "Load")
|
|
|
|
n.madd("Generator", n.buses.index, " load",
|
|
|
|
bus=n.buses.index,
|
|
|
|
carrier='load',
|
|
|
|
sign=1e-3, # Adjust sign to measure p and p_nom in kW instead of MW
|
|
|
|
marginal_cost=1e2, # Eur/kWh
|
|
|
|
# intersect between macroeconomic and surveybased
|
|
|
|
# willingness to pay
|
|
|
|
# http://journal.frontiersin.org/article/10.3389/fenrg.2015.00055/full
|
|
|
|
p_nom=1e9 # kW
|
|
|
|
)
|
|
|
|
|
|
|
|
if solve_opts.get('noisy_costs'):
|
|
|
|
for t in n.iterate_components():
|
|
|
|
#if 'capital_cost' in t.df:
|
|
|
|
# t.df['capital_cost'] += 1e1 + 2.*(np.random.random(len(t.df)) - 0.5)
|
|
|
|
if 'marginal_cost' in t.df:
|
2019-08-07 17:08:06 +00:00
|
|
|
np.random.seed(174)
|
2021-07-01 18:09:04 +00:00
|
|
|
t.df['marginal_cost'] += 1e-2 + 2e-3 * (np.random.random(len(t.df)) - 0.5)
|
2019-04-18 09:39:17 +00:00
|
|
|
|
|
|
|
for t in n.iterate_components(['Line', 'Link']):
|
2019-08-07 17:08:06 +00:00
|
|
|
np.random.seed(123)
|
2021-07-01 18:09:04 +00:00
|
|
|
t.df['capital_cost'] += (1e-1 + 2e-2 * (np.random.random(len(t.df)) - 0.5)) * t.df['length']
|
2019-04-18 09:39:17 +00:00
|
|
|
|
|
|
|
if solve_opts.get('nhours'):
|
|
|
|
nhours = solve_opts['nhours']
|
|
|
|
n.set_snapshots(n.snapshots[:nhours])
|
|
|
|
n.snapshot_weightings[:] = 8760./nhours
|
2020-08-19 18:25:04 +00:00
|
|
|
|
2021-07-01 18:09:04 +00:00
|
|
|
if snakemake.config['foresight'] == 'myopic':
|
2020-08-17 10:04:45 +00:00
|
|
|
add_land_use_constraint(n)
|
2020-08-19 18:25:04 +00:00
|
|
|
|
2019-04-18 09:39:17 +00:00
|
|
|
return n
|
|
|
|
|
|
|
|
|
2019-11-27 17:34:53 +00:00
|
|
|
def add_battery_constraints(n):
|
2019-04-18 09:39:17 +00:00
|
|
|
|
2021-07-01 18:09:04 +00:00
|
|
|
chargers_b = n.links.carrier.str.contains("battery charger")
|
|
|
|
chargers = n.links.index[chargers_b & n.links.p_nom_extendable]
|
|
|
|
dischargers = chargers.str.replace("charger", "discharger")
|
|
|
|
|
|
|
|
if chargers.empty or ('Link', 'p_nom') not in n.variables.index:
|
|
|
|
return
|
2019-04-18 09:39:17 +00:00
|
|
|
|
2019-11-27 17:34:53 +00:00
|
|
|
link_p_nom = get_var(n, "Link", "p_nom")
|
2019-04-18 09:39:17 +00:00
|
|
|
|
2020-08-12 16:08:01 +00:00
|
|
|
lhs = linexpr((1,link_p_nom[chargers]),
|
|
|
|
(-n.links.loc[dischargers, "efficiency"].values,
|
|
|
|
link_p_nom[dischargers].values))
|
2020-03-26 13:54:10 +00:00
|
|
|
|
2019-11-27 17:34:53 +00:00
|
|
|
define_constraints(n, lhs, "=", 0, 'Link', 'charger_ratio')
|
2019-04-18 09:39:17 +00:00
|
|
|
|
|
|
|
|
2019-11-27 17:34:53 +00:00
|
|
|
def add_chp_constraints(n):
|
2019-04-18 09:39:17 +00:00
|
|
|
|
2020-08-14 07:11:19 +00:00
|
|
|
electric_bool = (n.links.index.str.contains("urban central")
|
|
|
|
& n.links.index.str.contains("CHP")
|
|
|
|
& n.links.index.str.contains("electric"))
|
|
|
|
heat_bool = (n.links.index.str.contains("urban central")
|
|
|
|
& n.links.index.str.contains("CHP")
|
|
|
|
& n.links.index.str.contains("heat"))
|
2019-04-18 09:39:17 +00:00
|
|
|
|
2020-08-14 07:11:19 +00:00
|
|
|
electric = n.links.index[electric_bool]
|
|
|
|
heat = n.links.index[heat_bool]
|
2021-07-01 18:09:04 +00:00
|
|
|
|
2020-08-14 07:11:19 +00:00
|
|
|
electric_ext = n.links.index[electric_bool & n.links.p_nom_extendable]
|
|
|
|
heat_ext = n.links.index[heat_bool & n.links.p_nom_extendable]
|
2021-07-01 18:09:04 +00:00
|
|
|
|
2020-08-14 07:11:19 +00:00
|
|
|
electric_fix = n.links.index[electric_bool & ~n.links.p_nom_extendable]
|
|
|
|
heat_fix = n.links.index[heat_bool & ~n.links.p_nom_extendable]
|
|
|
|
|
2021-07-01 18:09:04 +00:00
|
|
|
link_p = get_var(n, "Link", "p")
|
2020-08-14 07:11:19 +00:00
|
|
|
|
|
|
|
if not electric_ext.empty:
|
2019-07-16 14:00:21 +00:00
|
|
|
|
2019-11-27 17:34:53 +00:00
|
|
|
link_p_nom = get_var(n, "Link", "p_nom")
|
2019-04-18 09:39:17 +00:00
|
|
|
|
2019-12-12 14:03:51 +00:00
|
|
|
#ratio of output heat to electricity set by p_nom_ratio
|
2021-07-01 18:09:04 +00:00
|
|
|
lhs = linexpr((n.links.loc[electric_ext, "efficiency"]
|
|
|
|
*n.links.loc[electric_ext, "p_nom_ratio"],
|
2020-08-14 07:11:19 +00:00
|
|
|
link_p_nom[electric_ext]),
|
2021-07-01 18:09:04 +00:00
|
|
|
(-n.links.loc[heat_ext, "efficiency"].values,
|
2020-08-14 07:11:19 +00:00
|
|
|
link_p_nom[heat_ext].values))
|
2019-04-18 09:39:17 +00:00
|
|
|
|
2021-07-01 18:09:04 +00:00
|
|
|
define_constraints(n, lhs, "=", 0, 'chplink', 'fix_p_nom_ratio')
|
2020-08-14 07:11:19 +00:00
|
|
|
|
|
|
|
#top_iso_fuel_line for extendable
|
|
|
|
lhs = linexpr((1,link_p[heat_ext]),
|
|
|
|
(1,link_p[electric_ext].values),
|
|
|
|
(-1,link_p_nom[electric_ext].values))
|
|
|
|
|
|
|
|
define_constraints(n, lhs, "<=", 0, 'chplink', 'top_iso_fuel_line_ext')
|
|
|
|
|
|
|
|
if not electric_fix.empty:
|
|
|
|
|
|
|
|
#top_iso_fuel_line for fixed
|
|
|
|
lhs = linexpr((1,link_p[heat_fix]),
|
|
|
|
(1,link_p[electric_fix].values))
|
|
|
|
|
2021-07-01 18:09:04 +00:00
|
|
|
rhs = n.links.loc[electric_fix, "p_nom"].values
|
2019-04-18 09:39:17 +00:00
|
|
|
|
2021-07-01 18:09:04 +00:00
|
|
|
define_constraints(n, lhs, "<=", rhs, 'chplink', 'top_iso_fuel_line_fix')
|
2020-08-19 18:25:04 +00:00
|
|
|
|
2021-07-01 18:09:04 +00:00
|
|
|
if not electric.empty:
|
|
|
|
|
|
|
|
#backpressure
|
|
|
|
lhs = linexpr((n.links.loc[electric, "c_b"].values
|
|
|
|
*n.links.loc[heat, "efficiency"],
|
|
|
|
link_p[heat]),
|
|
|
|
(-n.links.loc[electric, "efficiency"].values,
|
|
|
|
link_p[electric].values))
|
|
|
|
|
|
|
|
define_constraints(n, lhs, "<=", 0, 'chplink', 'backpressure')
|
2020-08-19 18:25:04 +00:00
|
|
|
|
2020-07-07 16:40:17 +00:00
|
|
|
|
2021-06-21 10:34:47 +00:00
|
|
|
|
|
|
|
def add_pipe_retrofit_constraint(n):
|
|
|
|
"""Add constraint for retrofitting existing CH4 pipelines to H2 pipelines."""
|
|
|
|
|
|
|
|
gas_pipes_i = n.links[n.links.carrier=="Gas pipeline"].index
|
|
|
|
h2_retrofitted_i = n.links[n.links.carrier=='H2 pipeline retrofitted'].index
|
|
|
|
|
|
|
|
if h2_retrofitted_i.empty or gas_pipes_i.empty: return
|
|
|
|
|
|
|
|
link_p_nom = get_var(n, "Link", "p_nom")
|
|
|
|
|
|
|
|
pipe_capacity = n.links.loc[gas_pipes_i, 'p_nom']
|
2021-08-04 08:49:06 +00:00
|
|
|
|
|
|
|
CH4_per_H2 = 1 / n.config["sector"]["H2_retrofit_capacity_per_CH4"]
|
|
|
|
|
|
|
|
lhs = linexpr(
|
|
|
|
(CH4_per_H2, link_p_nom.loc[h2_retrofitted_i].rename(index=lambda x: x.replace("H2 pipeline retrofitted", "Gas pipeline"))),
|
|
|
|
(1, link_p_nom.loc[gas_pipes_i])
|
|
|
|
)
|
2021-06-21 10:34:47 +00:00
|
|
|
|
2021-07-13 06:50:15 +00:00
|
|
|
define_constraints(n, lhs, "=", pipe_capacity, 'Link', 'pipe_retrofit')
|
2021-06-21 10:34:47 +00:00
|
|
|
|
|
|
|
|
2019-11-27 17:34:53 +00:00
|
|
|
def extra_functionality(n, snapshots):
|
2020-08-12 16:08:01 +00:00
|
|
|
add_chp_constraints(n)
|
2019-11-27 17:34:53 +00:00
|
|
|
add_battery_constraints(n)
|
2021-06-21 10:34:47 +00:00
|
|
|
add_pipe_retrofit_constraint(n)
|
2019-04-18 09:39:17 +00:00
|
|
|
|
|
|
|
|
2021-07-01 18:09:04 +00:00
|
|
|
def solve_network(n, config, opts='', **kwargs):
|
|
|
|
solver_options = config['solving']['solver'].copy()
|
2019-04-18 09:39:17 +00:00
|
|
|
solver_name = solver_options.pop('name')
|
2021-07-01 18:09:04 +00:00
|
|
|
cf_solving = config['solving']['options']
|
|
|
|
track_iterations = cf_solving.get('track_iterations', False)
|
|
|
|
min_iterations = cf_solving.get('min_iterations', 4)
|
|
|
|
max_iterations = cf_solving.get('max_iterations', 6)
|
|
|
|
|
|
|
|
# add to network for extra_functionality
|
|
|
|
n.config = config
|
|
|
|
n.opts = opts
|
|
|
|
|
|
|
|
if cf_solving.get('skip_iterations', False):
|
|
|
|
network_lopf(n, solver_name=solver_name, solver_options=solver_options,
|
|
|
|
extra_functionality=extra_functionality, **kwargs)
|
|
|
|
else:
|
|
|
|
ilopf(n, solver_name=solver_name, solver_options=solver_options,
|
|
|
|
track_iterations=track_iterations,
|
|
|
|
min_iterations=min_iterations,
|
|
|
|
max_iterations=max_iterations,
|
|
|
|
extra_functionality=extra_functionality, **kwargs)
|
2019-04-18 09:39:17 +00:00
|
|
|
return n
|
|
|
|
|
2021-07-01 18:09:04 +00:00
|
|
|
|
2019-04-18 09:39:17 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
if 'snakemake' not in globals():
|
2021-06-18 07:45:51 +00:00
|
|
|
from helper import mock_snakemake
|
2021-07-01 18:09:04 +00:00
|
|
|
snakemake = mock_snakemake(
|
|
|
|
'solve_network',
|
|
|
|
simpl='',
|
|
|
|
clusters=48,
|
|
|
|
lv=1.0,
|
|
|
|
sector_opts='Co2L0-168H-T-H-B-I-solar3-dist1',
|
|
|
|
planning_horizons=2050,
|
2019-04-18 09:39:17 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
logging.basicConfig(filename=snakemake.log.python,
|
|
|
|
level=snakemake.config['logging_level'])
|
2021-06-18 07:41:18 +00:00
|
|
|
|
2019-04-18 09:39:17 +00:00
|
|
|
tmpdir = snakemake.config['solving'].get('tmpdir')
|
|
|
|
if tmpdir is not None:
|
2021-07-01 18:09:04 +00:00
|
|
|
Path(tmpdir).mkdir(parents=True, exist_ok=True)
|
|
|
|
opts = snakemake.wildcards.opts.split('-')
|
|
|
|
solve_opts = snakemake.config['solving']['options']
|
2019-04-18 09:39:17 +00:00
|
|
|
|
2021-07-01 18:09:04 +00:00
|
|
|
fn = getattr(snakemake.log, 'memory', None)
|
|
|
|
with memory_logger(filename=fn, interval=30.) as mem:
|
2019-04-18 09:39:17 +00:00
|
|
|
|
2021-07-01 18:09:04 +00:00
|
|
|
overrides = override_component_attrs(snakemake.input.overrides)
|
|
|
|
n = pypsa.Network(snakemake.input.network, override_component_attrs=overrides)
|
2020-07-07 16:40:17 +00:00
|
|
|
|
2021-07-01 18:09:04 +00:00
|
|
|
n = prepare_network(n, solve_opts)
|
2019-04-18 09:39:17 +00:00
|
|
|
|
2021-07-01 18:09:04 +00:00
|
|
|
n = solve_network(n, config=snakemake.config, opts=opts,
|
|
|
|
solver_dir=tmpdir,
|
|
|
|
solver_logfile=snakemake.log.solver)
|
2020-08-17 10:04:45 +00:00
|
|
|
|
2021-07-01 18:09:04 +00:00
|
|
|
if "lv_limit" in n.global_constraints.index:
|
|
|
|
n.line_volume_limit = n.global_constraints.at["lv_limit", "constant"]
|
|
|
|
n.line_volume_limit_dual = n.global_constraints.at["lv_limit", "mu"]
|
2019-04-18 09:39:17 +00:00
|
|
|
|
|
|
|
n.export_to_netcdf(snakemake.output[0])
|
|
|
|
|
|
|
|
logger.info("Maximum memory usage: {}".format(mem.mem_usage))
|