oemof.solph package

Submodules

oemof.solph.blocks module

Creating sets, variables, constraints and parts of the objective function for the specified groups.

This file is part of project oemof (github.com/oemof/oemof). It’s copyrighted by the contributors recorded in the version control history of the file, available from its original location oemof/oemof/solph/blocks.py

SPDX-License-Identifier: MIT

class oemof.solph.blocks.Bus(*args, **kwargs)[source]

Bases: pyomo.core.base.block.SimpleBlock

Block for all balanced buses.

The following constraints are build:

Bus balance om.Bus.balance[i, o, t]

\sum_{i \in INPUTS(n)} flow(i, n, t) =
\sum_{o \in OUTPUTS(n)} flow(n, o, t), \\
\forall n \in \textrm{BUSES},
\forall t \in \textrm{TIMESTEPS}.

class oemof.solph.blocks.Flow(*args, **kwargs)[source]

Bases: pyomo.core.base.block.SimpleBlock

Flow block with definitions for standard flows.

The following variables are created:

negative_gradient :
Difference of a flow in consecutive timesteps if flow is reduced indexed by NEGATIVE_GRADIENT_FLOWS, TIMESTEPS.
positive_gradient :
Difference of a flow in consecutive timesteps if flow is increased indexed by NEGATIVE_GRADIENT_FLOWS, TIMESTEPS.

The following sets are created: (-> see basic sets at Model )

SUMMED_MAX_FLOWS
A set of flows with the attribute summed_max being not None.
SUMMED_MIN_FLOWS
A set of flows with the attribute summed_min being not None.
NEGATIVE_GRADIENT_FLOWS
A set of flows with the attribute negative_gradient being not None.
POSITIVE_GRADIENT_FLOWS
A set of flows with the attribute positive_gradient being not None
INTEGER_FLOWS
A set of flows wher the attribute integer is True (forces flow to only take integer values)

The following constraints are build:

Flow max sum om.Flow.summed_max[i, o]

\sum_t flow(i, o, t) \cdot \tau
    \leq summed\_max(i, o) \cdot nominal\_value(i, o), \\
\forall (i, o) \in \textrm{SUMMED\_MAX\_FLOWS}.

Flow min sum om.Flow.summed_min[i, o]

\sum_t flow(i, o, t) \cdot \tau
    \geq summed\_min(i, o) \cdot nominal\_value(i, o), \\
\forall (i, o) \in \textrm{SUMMED\_MIN\_FLOWS}.

Negative gradient constraint om.Flow.negative_gradient_constr[i, o]:

flow(i, o, t-1) - flow(i, o, t) \geq \
negative\_gradient(i, o, t), \\
\forall (i, o) \in \textrm{NEGATIVE\_GRADIENT\_FLOWS}, \\
\forall t \in \textrm{TIMESTEPS}.

Positive gradient constraint om.Flow.positive_gradient_constr[i, o]:

flow(i, o, t) - flow(i, o, t-1) \geq \
positive\__gradient(i, o, t), \\
\forall (i, o) \in \textrm{POSITIVE\_GRADIENT\_FLOWS}, \\
\forall t \in \textrm{TIMESTEPS}.

The following parts of the objective function are created:

If variable_costs are set by the user:

\sum_{(i,o)} \sum_t flow(i, o, t) \cdot variable\_costs(i, o, t)

The expression can be accessed by om.Flow.variable_costs and their value after optimization by om.Flow.variable_costs() .

class oemof.solph.blocks.InvestmentFlow(*args, **kwargs)[source]

Bases: pyomo.core.base.block.SimpleBlock

Block for all flows with investment being not None.

The following sets are created: (-> see basic sets at Model )

FLOWS
A set of flows with the attribute invest of type options.Investment.
FIXED_FLOWS
A set of flow with the attribute fixed set to True
SUMMED_MAX_FLOWS
A subset of set FLOWS with flows with the attribute summed_max being not None.
SUMMED_MIN_FLOWS
A subset of set FLOWS with flows with the attribute summed_min being not None.
MIN_FLOWS
A subset of FLOWS with flows having set a value of not None in the first timestep.

The following variables are created:

invest om.InvestmentFlow.invest[i, o]
Value of the investment variable i.e. equivalent to the nominal value of the flows after optimization (indexed by FLOWS)

The following constraints are build:

Actual value constraint for fixed invest
flows om.InvestmentFlow.fixed[i, o, t]

flow(i, o, t) = actual\_value(i, o, t) \cdot invest(i, o), \\
\forall (i, o) \in \textrm{FIXED\_FLOWS}, \\
\forall t \in \textrm{TIMESTEPS}.

Lower bound (min) constraint for invest flows
om.InvestmentFlow.min[i, o, t]

flow(i, o, t) \geq min(i, o, t) \cdot invest(i, o), \\
\forall (i, o) \in \textrm{MIN\_FLOWS}, \\
\forall t \in \textrm{TIMESTEPS}.

Upper bound (max) constraint for invest flows
om.InvestmentFlow.max[i, o, t]

flow(i, o, t) \leq max(i, o, t) \cdot invest(i, o), \\
\forall (i, o) \in \textrm{FLOWS}, \\
\forall t \in \textrm{TIMESTEPS}.

Flow max sum for invest flow
om.InvestmentFlow.summed_max[i, o]

\sum_t flow(i, o, t) \cdot \tau \leq summed\_max(i, o) \
\cdot invest(i, o) \\
\forall (i, o) \in \textrm{SUMMED\_MAX\_FLOWS}.

Flow min sum for invest flow om.InvestmentFlow.summed_min[i, o]

\sum_t flow(i, o, t) \cdot \tau \geq summed\_min(i, o) \
\cdot invest(i, o) \\
\forall (i, o) \in \textrm{SUMMED\_MIN\_FLOWS}.

The following parts of the objective function are created:

Equivalent periodical costs (epc) expression
om.InvestmentFlow.investment_costs:

\sum_{i, o} invest(i, o) \cdot ep\_costs(i, o)

The expression can be accessed by om.InvestmentFlow.variable_costs and their value after optimization by om.InvestmentFlow.variable_costs() . This works similar for investment costs with *.investment_costs etc.

class oemof.solph.blocks.NonConvexFlow(*args, **kwargs)[source]

Bases: pyomo.core.base.block.SimpleBlock

The following sets are created: (-> see basic sets at
Model )
A set of flows with the attribute nonconvex of type
options.NonConvex.
MIN_FLOWS
A subset of set NONCONVEX_FLOWS with the attribute min being not None in the first timestep.
ACTIVITYCOSTFLOWS
A subset of set NONCONVEX_FLOWS with the attribute activity_costs being not None.
STARTUPFLOWS

A subset of set NONCONVEX_FLOWS with the attribute maximum_startups or startup_costs

being not None.
MAXSTARTUPFLOWS
A subset of set STARTUPFLOWS with the attribute maximum_startups being not None.
SHUTDOWNFLOWS
A subset of set NONCONVEX_FLOWS with the attribute maximum_shutdowns or shutdown_costs being not None.
MAXSHUTDOWNFLOWS
A subset of set SHUTDOWNFLOWS with the attribute maximum_shutdowns being not None.
MINUPTIMEFLOWS
A subset of set NONCONVEX_FLOWS with the attribute minimum_uptime being not None.
MINDOWNTIMEFLOWS
A subset of set NONCONVEX_FLOWS with the attribute minimum_downtime being not None.

The following variables are created:

Status variable (binary) om.NonConvexFlow.status:
Variable indicating if flow is >= 0 indexed by FLOWS
Startup variable (binary) om.NonConvexFlow.startup:
Variable indicating startup of flow (component) indexed by STARTUPFLOWS
Shutdown variable (binary) om.NonConvexFlow.shutdown:
Variable indicating shutdown of flow (component) indexed by SHUTDOWNFLOWS

The following constraints are created:

Minimum flow constraint om.NonConvexFlow.min[i,o,t]

flow(i, o, t) \geq min(i, o, t) \cdot nominal\_value \
    \cdot status(i, o, t), \\
\forall t \in \textrm{TIMESTEPS}, \\
\forall (i, o) \in \textrm{NONCONVEX\_FLOWS}.

Maximum flow constraint om.NonConvexFlow.max[i,o,t]

flow(i, o, t) \leq max(i, o, t) \cdot nominal\_value \
    \cdot status(i, o, t), \\
\forall t \in \textrm{TIMESTEPS}, \\
\forall (i, o) \in \textrm{NONCONVEX\_FLOWS}.

Startup constraint om.NonConvexFlow.startup_constr[i,o,t]

startup(i, o, t) \geq \
    status(i,o,t) - status(i, o, t-1) \\
\forall t \in \textrm{TIMESTEPS}, \\
\forall (i,o) \in \textrm{STARTUPFLOWS}.

Maximum startups constraint om.NonConvexFlow.max_startup_constr[i,o,t]

\sum_{t \in \textrm{TIMESTEPS}} startup(i, o, t) \leq \
    N_{start}(i,o)
\forall (i,o) \in \textrm{MAXSTARTUPFLOWS}.

Shutdown constraint om.NonConvexFlow.shutdown_constr[i,o,t]

shutdown(i, o, t) \geq \
    status(i, o, t-1) - status(i, o, t) \\
\forall t \in \textrm{TIMESTEPS}, \\
\forall (i, o) \in \textrm{SHUTDOWNFLOWS}.

Maximum shutdowns constraint om.NonConvexFlow.max_startup_constr[i,o,t]

\sum_{t \in \textrm{TIMESTEPS}} startup(i, o, t) \leq \
    N_{shutdown}(i,o)
\forall (i,o) \in \textrm{MAXSHUTDOWNFLOWS}.

Minimum uptime constraint om.NonConvexFlow.uptime_constr[i,o,t]

(status(i, o, t)-status(i, o, t-1)) \cdot minimum\_uptime(i, o) \\
\leq \sum_{n=0}^{minimum\_uptime-1} status(i,o,t+n) \\
\forall t \in \textrm{TIMESTEPS} | \\
t \neq \{0..minimum\_uptime\} \cup \
\{t\_max-minimum\_uptime..t\_max\} , \\
\forall (i,o) \in \textrm{MINUPTIMEFLOWS}.
\\ \\
status(i, o, t) = initial\_status(i, o) \\
\forall t \in \textrm{TIMESTEPS} | \\
t = \{0..minimum\_uptime\} \cup \
\{t\_max-minimum\_uptime..t\_max\} , \\
\forall (i,o) \in \textrm{MINUPTIMEFLOWS}.

Minimum downtime constraint om.NonConvexFlow.downtime_constr[i,o,t]

(status(i, o, t-1)-status(i, o, t)) \
\cdot minimum\_downtime(i, o) \\
\leq minimum\_downtime(i, o) \
- \sum_{n=0}^{minimum\_downtime-1} status(i,o,t+n) \\
\forall t \in \textrm{TIMESTEPS} | \\
t \neq \{0..minimum\_downtime\} \cup \
\{t\_max-minimum\_downtime..t\_max\} , \\
\forall (i,o) \in \textrm{MINDOWNTIMEFLOWS}.
\\ \\
status(i, o, t) = initial\_status(i, o) \\
\forall t \in \textrm{TIMESTEPS} | \\
t = \{0..minimum\_downtime\} \cup \
\{t\_max-minimum\_downtime..t\_max\} , \\
\forall (i,o) \in \textrm{MINDOWNTIMEFLOWS}.

The following parts of the objective function are created:

If nonconvex.startup_costs is set by the user:

\sum_{i, o \in STARTUPFLOWS} \sum_t  startup(i, o, t) \
\cdot startup\_costs(i, o)

If nonconvex.shutdown_costs is set by the user:

\sum_{i, o \in SHUTDOWNFLOWS} \sum_t shutdown(i, o, t) \
    \cdot shutdown\_costs(i, o)

If nonconvex.activity_costs is set by the user:

\sum_{i, o \in ACTIVITYCOSTFLOWS} \sum_t status(i, o, t) \
    \cdot activity\_costs(i, o)

class oemof.solph.blocks.Transformer(*args, **kwargs)[source]

Bases: pyomo.core.base.block.SimpleBlock

Block for the linear relation of nodes with type Transformer

The following sets are created: (-> see basic sets at Model )

TRANSFORMERS
A set with all Transformer objects.

The following constraints are created:

Linear relation om.Transformer.relation[i,o,t]

flow(i, n, t) / conversion\_factor(n, i, t) = \
flow(n, o, t) / conversion\_factor(n, o, t), \\
\forall t \in \textrm{TIMESTEPS}, \\
\forall n \in \textrm{TRANSFORMERS}, \\
\forall i \in \textrm{INPUTS(n)}, \\
\forall o \in \textrm{OUTPUTS(n)}.

oemof.solph.components module

This module is designed to hold components with their classes and associated individual constraints (blocks) and groupings. Therefore this module holds the class definition and the block directly located by each other.

This file is part of project oemof (github.com/oemof/oemof). It’s copyrighted by the contributors recorded in the version control history of the file, available from its original location oemof/oemof/solph/components.py

SPDX-License-Identifier: MIT

class oemof.solph.components.ExtractionTurbineCHP(conversion_factor_full_condensation, *args, **kwargs)[source]

Bases: oemof.solph.network.Transformer

A CHP with an extraction turbine in a linear model. For more options see the GenericCHP class.

One main output flow has to be defined and is tapped by the remaining flow. The conversion factors have to be defined for the maximum tapped flow ( full CHP mode) and for no tapped flow (full condensing mode). Even though it is possible to limit the variability of the tapped flow, so that the full condensing mode will never be reached.

Parameters:
  • conversion_factors (dict) – Dictionary containing conversion factors for conversion of inflow to specified outflow. Keys are output bus objects. The dictionary values can either be a scalar or a sequence with length of time horizon for simulation.
  • conversion_factor_full_condensation (dict) – The efficiency of the main flow if there is no tapped flow. Only one key is allowed. Use one of the keys of the conversion factors. The key indicates the main flow. The other output flow is the tapped flow.

Note

The following sets, variables, constraints and objective parts are created

Examples

>>> from oemof import solph
>>> bel = solph.Bus(label='electricityBus')
>>> bth = solph.Bus(label='heatBus')
>>> bgas = solph.Bus(label='commodityBus')
>>> et_chp = solph.components.ExtractionTurbineCHP(
...    label='variable_chp_gas',
...    inputs={bgas: solph.Flow(nominal_value=10e10)},
...    outputs={bel: solph.Flow(), bth: solph.Flow()},
...    conversion_factors={bel: 0.3, bth: 0.5},
...    conversion_factor_full_condensation={bel: 0.5})
constraint_group()[source]
class oemof.solph.components.ExtractionTurbineCHPBlock(*args, **kwargs)[source]

Bases: pyomo.core.base.block.SimpleBlock

Block for the linear relation of nodes with type ExtractionTurbineCHP

The following two constraints are created:

&
(1)\dot H_{Fuel}(t) =
   \frac{P_{el}(t) + \dot Q_{th}(t) \cdot \beta(t)}
     {\eta_{el,woExtr}(t)} \\
&
(2)P_{el}(t) \geq \dot Q_{th}(t) \cdot
   \frac{\eta_{el,maxExtr}(t)}
     {\eta_{th,maxExtr}(t)}

where \beta is defined as:

\beta(t) = \frac{\eta_{el,woExtr}(t) - \eta_{el,maxExtr}(t)}{\eta_{th,maxExtr}(t)}

where the first equation is the result of the relation between the input flow and the two output flows, the second equation stems from how the two output flows relate to each other, and the symbols used are defined as follows (with Variables (V) and Parameters (P)):

symbol attribute type explanation
\dot H_{Fuel} flow[i, n, t] V fuel input flow
P_{el} flow[n, main_output, t] V electric power
\dot Q_{th} flow[n, tapped_output, t] V thermal output
\beta main_flow_loss_index[n, t] P power loss index
\eta_{el,woExtr} conversion_factor_full_condensation [n, t] P electric efficiency without heat extraction
\eta_{el,maxExtr} conversion_factors[main_output][n, t] P electric efficiency with max heat extraction
\eta_{th,maxExtr} conversion_factors[tapped_output][n, t] P thermal efficiency with maximal heat extraction
CONSTRAINT_GROUP = True
class oemof.solph.components.GenericCHP(*args, **kwargs)[source]

Bases: oemof.network.Transformer

Component GenericCHP to model combined heat and power plants.

Can be used to model (combined cycle) extraction or back-pressure turbines and used a mixed-integer linear formulation. Thus, it induces more computational effort than the ExtractionTurbineCHP for the benefit of higher accuracy.

The full set of equations is described in: Mollenhauer, E., Christidis, A. & Tsatsaronis, G. Evaluation of an energy- and exergy-based generic modeling approach of combined heat and power plants Int J Energy Environ Eng (2016) 7: 167. https://doi.org/10.1007/s40095-016-0204-6

For a general understanding of (MI)LP CHP representation, see: Fabricio I. Salgado, P. Short - Term Operation Planning on Cogeneration Systems: A Survey Electric Power Systems Research (2007) Electric Power Systems Research Volume 78, Issue 5, May 2008, Pages 835-848 https://doi.org/10.1016/j.epsr.2007.06.001

Note

An adaption for the flow parameter H_L_FG_share_max has been made to set the flue gas losses at maximum heat extraction H_L_FG_max as share of the fuel flow H_F e.g. for combined cycle extraction turbines. The flow parameter H_L_FG_share_min can be used to set the flue gas losses at minimum heat extraction H_L_FG_min as share of the fuel flow H_F e.g. for motoric CHPs. The boolean component parameter back_pressure can be set to model back-pressure characteristics.

Also have a look at the examples on how to use it.

Parameters:
  • fuel_input (dict) – Dictionary with key-value-pair of oemof.Bus and oemof.Flow object for the fuel input.
  • electrical_output (dict) – Dictionary with key-value-pair of oemof.Bus and oemof.Flow object for the electrical output. Related parameters like P_max_woDH are passed as attributes of the oemof.Flow object.
  • heat_output (dict) – Dictionary with key-value-pair of oemof.Bus and oemof.Flow object for the heat output. Related parameters like Q_CW_min are passed as attributes of the oemof.Flow object.
  • Beta (list of numerical values) – Beta values in same dimension as all other parameters (length of optimization period).
  • back_pressure (boolean) – Flag to use back-pressure characteristics. Set to True and Q_CW_min to zero for back-pressure turbines. See paper above for more information.

Note

The following sets, variables, constraints and objective parts are created

Examples

>>> from oemof import solph
>>> bel = solph.Bus(label='electricityBus')
>>> bth = solph.Bus(label='heatBus')
>>> bgas = solph.Bus(label='commodityBus')
>>> ccet = solph.components.GenericCHP(
...    label='combined_cycle_extraction_turbine',
...    fuel_input={bgas: solph.Flow(
...        H_L_FG_share_max=[0.183])},
...    electrical_output={bel: solph.Flow(
...        P_max_woDH=[155.946],
...        P_min_woDH=[68.787],
...        Eta_el_max_woDH=[0.525],
...        Eta_el_min_woDH=[0.444])},
...    heat_output={bth: solph.Flow(
...        Q_CW_min=[10.552])},
...    Beta=[0.122], back_pressure=False)
>>> type(ccet)
<class 'oemof.solph.components.GenericCHP'>
alphas

Compute or return the _alphas attribute.

constraint_group()[source]
class oemof.solph.components.GenericCHPBlock(*args, **kwargs)[source]

Bases: pyomo.core.base.block.SimpleBlock

Block for the relation of the n nodes with type class:.GenericCHP.

The following constraints are created:

&
(1)\qquad \dot{H}_F(t) = fuel\ input \\
&
(2)\qquad \dot{Q}(t) = heat\ output \\
&
(3)\qquad P_{el}(t) = power\ output\\
&
(4)\qquad \dot{H}_F(t) = \alpha_0(t) \cdot Y(t) + \alpha_1(t) \cdot
P_{el,woDH}(t)\\
&
(5)\qquad \dot{H}_F(t) = \alpha_0(t) \cdot Y(t) + \alpha_1(t) \cdot
( P_{el}(t) + \beta \cdot \dot{Q}(t) )\\
&
(6)\qquad \dot{H}_F(t) \leq Y(t) \cdot
\frac{P_{el, max, woDH}(t)}{\eta_{el,max,woDH}(t)}\\
&
(7)\qquad \dot{H}_F(t) \geq Y(t) \cdot
\frac{P_{el, min, woDH}(t)}{\eta_{el,min,woDH}(t)}\\
&
(8)\qquad \dot{H}_{L,FG,max}(t) = \dot{H}_F(t) \cdot
\dot{H}_{L,FG,sharemax}(t)\\
&
(9)\qquad \dot{H}_{L,FG,min}(t) = \dot{H}_F(t) \cdot
\dot{H}_{L,FG,sharemin}(t)\\
&
(10)\qquad P_{el}(t) + \dot{Q}(t) + \dot{H}_{L,FG,max}(t) +
\dot{Q}_{CW, min}(t) \cdot Y(t) = / \leq \dot{H}_F(t)\\

where = / \leq depends on the CHP being back pressure or not.

The coefficients \alpha_0 and \alpha_1 can be determined given the efficiencies maximal/minimal load:

&
\eta_{el,max,woDH}(t) = \frac{P_{el,max,woDH}(t)}{\alpha_0(t)
\cdot Y(t) + \alpha_1(t) \cdot P_{el,max,woDH}(t)}\\
&
\eta_{el,min,woDH}(t) = \frac{P_{el,min,woDH}(t)}{\alpha_0(t)
\cdot Y(t) + \alpha_1(t) \cdot P_{el,min,woDH}(t)}\\

For the attribute \dot{H}_{L,FG,min} being not None, e.g. for a motoric CHP, the following is created:

Constraint:

&
(11)\qquad P_{el}(t) + \dot{Q}(t) + \dot{H}_{L,FG,min}(t) +
\dot{Q}_{CW, min}(t) \cdot Y(t) \geq \dot{H}_F(t)\\[10pt]

The symbols used are defined as follows (with Variables (V) and Parameters (P)):

math. symbol attribute type explanation
\dot{H}_{F} H_F[n,t] V input of enthalpy through fuel input
P_{el} P[n,t] V provided electric power
P_{el,woDH} P_woDH[n,t] V electric power without district heating
P_{el,min,woDH} P_min_woDH[n,t] P min. electric power without district heating
P_{el,max,woDH} P_max_woDH[n,t] P max. electric power without district heating
\dot{Q} Q[n,t] V provided heat
\dot{Q}_{CW, min} Q_CW_min[n,t] P minimal therm. condenser load to cooling water
\dot{H}_{L,FG,min} H_L_FG_min[n,t] V flue gas enthalpy loss at min heat extraction
\dot{H}_{L,FG,max} H_L_FG_max[n,t] V flue gas enthalpy loss at max heat extraction
\dot{H}_{L,FG,sharemin} H_L_FG_share_min[n,t] P share of flue gas loss at min heat extraction
\dot{H}_{L,FG,sharemax} H_L_FG_share_max[n,t] P share of flue gas loss at max heat extraction
Y Y[n,t] V status variable on/off
\alpha_0 n.alphas[0][n,t] P coefficient describing efficiency
\alpha_1 n.alphas[1][n,t] P coefficient describing efficiency
\beta Beta[n,t] P power loss index
\eta_{el,min,woDH} Eta_el_min_woDH[n,t] P el. eff. at min. fuel flow w/o distr. heating
\eta_{el,max,woDH} Eta_el_max_woDH[n,t] P el. eff. at max. fuel flow w/o distr. heating
CONSTRAINT_GROUP = True
class oemof.solph.components.GenericInvestmentStorageBlock(*args, **kwargs)[source]

Bases: pyomo.core.base.block.SimpleBlock

Storage with an Investment object.

The following sets are created: (-> see basic sets at Model )

INVESTSTORAGES
A set with all storages containing an Investment object.
INVEST_REL_CAP_IN
A set with all storages containing an Investment object with coupled investment of input power and storage capacity
INVEST_REL_CAP_OUT
A set with all storages containing an Investment object with coupled investment of output power and storage capacity
INVEST_REL_IN_OUT
A set with all storages containing an Investment object with coupled investment of input and output power
INITIAL_STORAGE_LEVEL
A subset of the set INVESTSTORAGES where elements of the set have an initial_storage_level attribute.
MIN_INVESTSTORAGES
A subset of INVESTSTORAGES where elements of the set have an min_storage_level attribute greater than zero for at least one time step.

The following variables are created:

capacity om.InvestmentStorage.capacity[n, t]
Level of the storage (indexed by STORAGES and TIMESTEPS)
invest om.InvestmentStorage.invest[n, t]
Nominal capacity of the storage (indexed by STORAGES)

The following constraints are build:

Storage balance
Same as for GenericStorageBlock.
Initial capacity of network.Storage

E(n, -1) = invest(n) \cdot c(n, -1), \\
\forall n \in \textrm{INITIAL\_STORAGE\_LEVEL}.

Connect the invest variables of the storage and the input flow.

InvestmentFlow.invest(source(n), n) + existing =
(invest(n) + existing) * invest\_relation\_input\_capacity(n) \\
\forall n \in \textrm{INVEST\_REL\_CAP\_IN}

Connect the invest variables of the storage and the output flow.

InvestmentFlow.invest(n, target(n)) + existing =
(invest(n) + existing) * invest\_relation\_output_capacity(n) \\
\forall n \in \textrm{INVEST\_REL\_CAP\_OUT}

Connect the invest variables of the input and the output flow.

InvestmentFlow.invest(source(n), n) + existing ==
(InvestmentFlow.invest(n, target(n)) + existing) *
invest\_relation\_input_output(n) \\
\forall n \in \textrm{INVEST\_REL\_IN\_OUT}

Maximal capacity om.InvestmentStorage.max_capacity[n, t]

E(n, t) \leq invest(n) \cdot c_{min}(n, t), \\
\forall n \in \textrm{MAX\_INVESTSTORAGES,} \\
\forall t \in \textrm{TIMESTEPS}.

Minimal capacity om.InvestmentStorage.min_capacity[n, t]

E(n, t) \geq invest(n) \cdot c_{min}(n, t), \\
\forall n \in \textrm{MIN\_INVESTSTORAGES,} \\
\forall t \in \textrm{TIMESTEPS}.

The following parts of the objective function are created:

Equivalent periodical costs (investment costs):

\sum_n invest(n) \cdot ep\_costs(n)

The expression can be accessed by om.InvestStorages.investment_costs and their value after optimization by om.InvestStorages.investment_costs() .

The symbols are the same as in:class:.GenericStorageBlock.

CONSTRAINT_GROUP = True
class oemof.solph.components.GenericStorage(*args, max_storage_level=1, min_storage_level=0, **kwargs)[source]

Bases: oemof.network.Transformer

Component GenericStorage to model with basic characteristics of storages.

Parameters:
  • nominal_storage_capacity (numeric) – Absolute nominal capacity of the storage
  • invest_relation_input_capacity (numeric or None) –

    Ratio between the investment variable of the input Flow and the investment variable of the storage.

    input\_invest =
capacity\_invest \cdot invest\_relation\_input\_capacity

  • invest_relation_output_capacity (numeric or None) –

    Ratio between the investment variable of the output Flow and the investment variable of the storage.

    output\_invest =
capacity\_invest \cdot invest\_relation\_output\_capacity

  • invest_relation_input_output (numeric or None) –

    Ratio between the investment variable of the output Flow and the investment variable of the input flow. This ratio used to fix the flow investments to each other. Values < 1 set the input flow lower than the output and > 1 will set the input flow higher than the output flow. If None no relation will be set.

    input\_invest =
output\_invest \cdot invest\_relation\_input\_output

  • initial_storage_level (numeric) – The content of the storage in the first time step of optimization.
  • balanced (boolian) – Couple storage level of first and last time step. (Total inflow and total outflow are balanced.)
  • loss_rate (numeric (sequence or scalar)) – The relative loss of the storage capacity from between two consecutive timesteps.
  • inflow_conversion_factor (numeric (sequence or scalar)) – The relative conversion factor, i.e. efficiency associated with the inflow of the storage.
  • outflow_conversion_factor (numeric (sequence or scalar)) – see: inflow_conversion_factor
  • min_storage_level (numeric (sequence or scalar)) – The minimum storaged energy of the storage as fraction of the nominal storage capacity (between 0 and 1). To set different values in every time step use a sequence.
  • max_storage_level (numeric (sequence or scalar)) – see: min_storage_level
  • investment (oemof.solph.options.Investment object) – Object indicating if a nominal_value of the flow is determined by the optimization problem. Note: This will refer all attributes to an investment variable instead of to the nominal_storage_capacity. The nominal_storage_capacity should not be set (or set to None) if an investment object is used.

Note

The following sets, variables, constraints and objective parts are created

Examples

Basic usage examples of the GenericStorage with a random selection of attributes. See the Flow class for all Flow attributes.

>>> from oemof import solph
>>> my_bus = solph.Bus('my_bus')
>>> my_storage = solph.components.GenericStorage(
...     label='storage',
...     nominal_storage_capacity=1000,
...     inputs={my_bus: solph.Flow(nominal_value=200, variable_costs=10)},
...     outputs={my_bus: solph.Flow(nominal_value=200)},
...     loss_rate=0.01,
...     initial_storage_level=0,
...     max_storage_level = 0.9,
...     inflow_conversion_factor=0.9,
...     outflow_conversion_factor=0.93)
>>> my_investment_storage = solph.components.GenericStorage(
...     label='storage',
...     investment=solph.Investment(ep_costs=50),
...     inputs={my_bus: solph.Flow()},
...     outputs={my_bus: solph.Flow()},
...     loss_rate=0.02,
...     initial_storage_level=None,
...     invest_relation_input_capacity=1/6,
...     invest_relation_output_capacity=1/6,
...     inflow_conversion_factor=1,
...     outflow_conversion_factor=0.8)
constraint_group()[source]
class oemof.solph.components.GenericStorageBlock(*args, **kwargs)[source]

Bases: pyomo.core.base.block.SimpleBlock

Storage without an Investment object.

The following sets are created: (-> see basic sets at Model )

STORAGES
A set with all Storage objects, which do not have an
attr:investment of type Investment.
STORAGES_BALANCED
A set of all Storage objects, with ‘balanced’ attribute set to True.
STORAGES_WITH_INVEST_FLOW_REL
A set with all Storage objects with two investment flows coupled with the ‘invest_relation_input_output’ attribute.

The following variables are created:

capacity
Capacity (level) for every storage and timestep. The value for the capacity at the beginning is set by the parameter initial_capacity or not set if initial_capacity is None. The variable of storage s and timestep t can be accessed by: om.Storage.capacity[s, t]

The following constraints are created:

Set last time step to the initial capacity if balanced == True

E(t_{last}) = &E(-1)

Storage balance om.Storage.balance[n, t]

E(t) = &E(t-1) \cdot
(1 - \delta(t))) \\
&- \frac{\dot{E}_o(t)}{\eta_o(t)} \cdot \tau(t)
+ \dot{E}_i(t) \cdot \eta_i(t) \cdot \tau(t)

Connect the invest variables of the input and the output flow.

InvestmentFlow.invest(source(n), n) + existing = \\
(InvestmentFlow.invest(n, target(n)) + existing) * \\
invest\_relation\_input\_output(n) \\
\forall n \in \textrm{INVEST\_REL\_IN\_OUT}

symbol explanation attribute
E(t) energy currently stored capacity
E_{nom} nominal capacity of the energy storage nominal_storage_capacity
c(-1) state before initial time step initial_storage_level
c_{min}(t) minimum allowed storage min_storage_level[t]
c_{max}(t) maximum allowed storage max_storage_level[t]
\delta(t) fraction of lost energy (e.g. leakage) per time loss_rate[t]
\dot{E}_i(t) energy flowing in inputs
\dot{E}_o(t) energy flowing out outputs
\eta_i(t) conversion factor (i.e. efficiency) when storing energy inflow_conversion_factor[t]
\eta_o(t) conversion factor when (i.e. efficiency) taking stored energy outflow_conversion_factor[t]
\tau(t) length of the time step  

The following parts of the objective function are created:

Nothing added to the objective function.

CONSTRAINT_GROUP = True
class oemof.solph.components.OffsetTransformer(*args, **kwargs)[source]

Bases: oemof.network.Transformer

An object with one input and one output.

Parameters:coefficients (tuple) – Tuple containing the first two polynomial coefficients i.e. the y-intersection and slope of a linear equation. The tuple values can either be a scalar or a sequence with length of time horizon for simulation.

Notes

The sets, variables, constraints and objective parts are created

Examples

>>> from oemof import solph
>>> bel = solph.Bus(label='bel')
>>> bth = solph.Bus(label='bth')
>>> ostf = solph.components.OffsetTransformer(
...    label='ostf',
...    inputs={bel: solph.Flow(
...        nominal_value=60, min=0.5, max=1.0,
...        nonconvex=solph.NonConvex())},
...    outputs={bth: solph.Flow()},
...    coefficients=(20, 0.5))
>>> type(ostf)
<class 'oemof.solph.components.OffsetTransformer'>
constraint_group()[source]
class oemof.solph.components.OffsetTransformerBlock(*args, **kwargs)[source]

Bases: pyomo.core.base.block.SimpleBlock

Block for the relation of nodes with type OffsetTransformer

The following constraints are created:

&
P_{out}(t) = C_1(t) \cdot P_{in}(t) + C_0(t) \cdot Y(t) \\

Variables (V) and Parameters (P)
symbol attribute type explanation
P_{out}(t) flow[n, o, t] V Power of output
P_{in}(t) flow[i, n, t] V Power of input
Y(t) status[i, n, t] V binary status variable of nonconvex input flow
C_1(t) coefficients[1][n, t] P linear coefficient 1 (slope)
C_0(t) coefficients[0][n, t] P linear coefficient 0 (y-intersection)
CONSTRAINT_GROUP = True

oemof.solph.constraints module

Additional constraints to be used in an oemof energy model. This file is part of project oemof (github.com/oemof/oemof). It’s copyrighted by the contributors recorded in the version control history of the file, available from its original location oemof/oemof/solph/constraints.py

SPDX-License-Identifier: MIT

oemof.solph.constraints.emission_limit(om, flows=None, limit=None)[source]

Short handle for generic_integral_limit() with keyword=”emission_factor”.

Note

Flow objects required an attribute “emission_factor”!

oemof.solph.constraints.equate_variables(model, var1, var2, factor1=1, name=None)[source]

Adds a constraint to the given model that set two variables to equal adaptable by a factor.

The following constraints are build:

var\textit{1} \cdot factor\textit{1} = var\textit{2}

Parameters:
  • var1 (pyomo.environ.Var) – First variable, to be set to equal with Var2 and multiplied with factor1.
  • var2 (pyomo.environ.Var) – Second variable, to be set equal to (Var1 * factor1).
  • factor1 (float) – Factor to define the proportion between the variables.
  • name (str) – Optional name for the equation e.g. in the LP file. By default the name is: equate + string representation of var1 and var2.
  • model (oemof.solph.Model) – Model to which the constraint is added.

Examples

The following example shows how to define a transmission line in the investment mode by connecting both investment variables. Note that the equivalent periodical costs (epc) of the line are 40. You could also add them to one line and set them to 0 for the other line.

>>> import pandas as pd
>>> from oemof import solph
>>> date_time_index = pd.date_range('1/1/2012', periods=5, freq='H')
>>> energysystem = solph.EnergySystem(timeindex=date_time_index)
>>> bel1 = solph.Bus(label='electricity1')
>>> bel2 = solph.Bus(label='electricity2')
>>> energysystem.add(bel1, bel2)
>>> energysystem.add(solph.Transformer(
...    label='powerline_1_2',
...    inputs={bel1: solph.Flow()},
...    outputs={bel2: solph.Flow(
...        investment=solph.Investment(ep_costs=20))}))
>>> energysystem.add(solph.Transformer(
...    label='powerline_2_1',
...    inputs={bel2: solph.Flow()},
...   outputs={bel1: solph.Flow(
...       investment=solph.Investment(ep_costs=20))}))
>>> om = solph.Model(energysystem)
>>> line12 = energysystem.groups['powerline_1_2']
>>> line21 = energysystem.groups['powerline_2_1']
>>> solph.constraints.equate_variables(
...    om,
...    om.InvestmentFlow.invest[line12, bel2],
...    om.InvestmentFlow.invest[line21, bel1])
oemof.solph.constraints.generic_integral_limit(om, keyword, flows=None, limit=None)[source]

Set a global limit for flows weighted by attribute called keyword. The attribute named by keyword has to be added to every flow you want to take into account.

Total value of keyword attributes after optimization can be retrieved calling the om.oemof.solph.Model.integral_limit_${keyword}().

Parameters:
  • om (oemof.solph.Model) – Model to which constraints are added.
  • flows (dict) – Dictionary holding the flows that should be considered in constraint. Keys are (source, target) objects of the Flow. If no dictionary is given all flows containing the keyword attribute will be used.
  • keyword (attribute to consider) –
  • limit (numeric) – Absolute limit of keyword attribute for the energy system.

Note

Flow objects required an attribute named like keyword!

Constraint:

\sum_{i \in F_E} \sum_{t \in T} P_i(t) \cdot w_i(t)
\cdot    au(t) \leq M

With F_I being the set of flows considered for the integral limit and T being the set of time steps.

The symbols used are defined as follows (with Variables (V) and Parameters (P)):

P_n(t) V power flow n at time step t w_N(t) P weight given to Flow named according to keyword :math:` au(t)` P width of time step t L P global limit given by keyword limit

oemof.solph.constraints.investment_limit(model, limit=None)[source]

Set an absolute limit for the total investment costs of an investment optimization problem:

\sum_{investment\_costs} \leq limit

Parameters:
  • model (oemof.solph.Model) – Model to which the constraint is added
  • limit (float) – Absolute limit of the investment (i.e. RHS of constraint)

oemof.solph.custom module

This module is designed to hold custom components with their classes and associated individual constraints (blocks) and groupings. Therefore this module holds the class definition and the block directly located by each other.

This file is part of project oemof (github.com/oemof/oemof). It’s copyrighted by the contributors recorded in the version control history of the file, available from its original location oemof/oemof/solph/custom.py

SPDX-License-Identifier: MIT

class oemof.solph.custom.ElectricalBus(*args, **kwargs)[source]

Bases: oemof.solph.network.Bus

A electrical bus object. Every node has to be connected to Bus. This Bus is used in combination with ElectricalLine objects for linear optimal power flow (lopf) calculations.

Parameters:
  • slack (boolean) – If True Bus is slack bus for network
  • v_max (numeric) – Maximum value of voltage angle at electrical bus
  • v_min (numeric) – Mininum value of voltag angle at electrical bus
  • Note (This component is experimental. Use it with care.) –

Notes

The following sets, variables, constraints and objective parts are created
The objects are also used inside:
class oemof.solph.custom.ElectricalLine(*args, **kwargs)[source]

Bases: oemof.solph.network.Flow

An ElectricalLine to be used in linear optimal power flow calculations. based on angle formulation. Check out the Notes below before using this component!

Parameters:
  • reactance (float or array of floats) – Reactance of the line to be modelled
  • Note (This component is experimental. Use it with care.) –

Notes

  • To use this object the connected buses need to be of the type ElectricalBus.
  • It does not work together with flows that have set the attr.`nonconvex`, i.e. unit commitment constraints are not possible
  • Input and output of this component are set equal, therefore just use either only the input or the output to parameterize.
  • Default attribute min of in/outflows is overwritten by -1 if not set differently by the user
The following sets, variables, constraints and objective parts are created
constraint_group()[source]
class oemof.solph.custom.ElectricalLineBlock(*args, **kwargs)[source]

Bases: pyomo.core.base.block.SimpleBlock

Block for the linear relation of nodes with type class:.ElectricalLine

Note: This component is experimental. Use it with care.

The following constraints are created:

Linear relation om.ElectricalLine.electrical_flow[n,t]

flow(n, o, t) =  1 / reactance(n, t) \\cdot ()
voltage_angle(i(n), t) - volatage_angle(o(n), t), \\
\forall t \\in \\textrm{TIMESTEPS}, \\
\forall n \\in \\textrm{ELECTRICAL\_LINES}.

TODO: Add equate constraint of flows

The following variable are created:

TODO: Add voltage angle variable

TODO: Add fix slack bus voltage angle to zero constraint / bound

TODO: Add tests

CONSTRAINT_GROUP = True
class oemof.solph.custom.GenericCAES(*args, **kwargs)[source]

Bases: oemof.solph.network.Transformer

Component GenericCAES to model arbitrary compressed air energy storages.

The full set of equations is described in: Kaldemeyer, C.; Boysen, C.; Tuschy, I. A Generic Formulation of Compressed Air Energy Storage as Mixed Integer Linear Program – Unit Commitment of Specific Technical Concepts in Arbitrary Market Environments Materials Today: Proceedings 00 (2018) 0000–0000 [currently in review]

Parameters:
  • electrical_input (dict) – Dictionary with key-value-pair of oemof.Bus and oemof.Flow object for the electrical input.
  • fuel_input (dict) – Dictionary with key-value-pair of oemof.Bus and oemof.Flow object for the fuel input.
  • electrical_output (dict) – Dictionary with key-value-pair of oemof.Bus and oemof.Flow object for the electrical output.
  • Note (This component is experimental. Use it with care.) –

Notes

The following sets, variables, constraints and objective parts are created
  • GenericCAES

TODO: Add description for constraints. See referenced paper until then!

Examples

>>> from oemof import solph
>>> bel = solph.Bus(label='bel')
>>> bth = solph.Bus(label='bth')
>>> bgas = solph.Bus(label='bgas')
>>> # dictionary with parameters for a specific CAES plant
>>> concept = {
...    'cav_e_in_b': 0,
...    'cav_e_in_m': 0.6457267578,
...    'cav_e_out_b': 0,
...    'cav_e_out_m': 0.3739636077,
...    'cav_eta_temp': 1.0,
...    'cav_level_max': 211.11,
...    'cmp_p_max_b': 86.0918959849,
...    'cmp_p_max_m': 0.0679999932,
...    'cmp_p_min': 1,
...    'cmp_q_out_b': -19.3996965679,
...    'cmp_q_out_m': 1.1066036114,
...    'cmp_q_tes_share': 0,
...    'exp_p_max_b': 46.1294016678,
...    'exp_p_max_m': 0.2528340303,
...    'exp_p_min': 1,
...    'exp_q_in_b': -2.2073411014,
...    'exp_q_in_m': 1.129249765,
...    'exp_q_tes_share': 0,
...    'tes_eta_temp': 1.0,
...    'tes_level_max': 0.0}
>>> # generic compressed air energy storage (caes) plant
>>> caes = solph.custom.GenericCAES(
...    label='caes',
...    electrical_input={bel: solph.Flow()},
...    fuel_input={bgas: solph.Flow()},
...    electrical_output={bel: solph.Flow()},
...    params=concept, fixed_costs=0)
>>> type(caes)
<class 'oemof.solph.custom.GenericCAES'>
constraint_group()[source]
class oemof.solph.custom.GenericCAESBlock(*args, **kwargs)[source]

Bases: pyomo.core.base.block.SimpleBlock

Block for nodes of class:.GenericCAES.

Note: This component is experimental. Use it with care.

The following constraints are created:

&
(1) \qquad P_{cmp}(t) = electrical\_input (t)
    \quad \forall t \in T \\
&
(2) \qquad P_{cmp\_max}(t) = m_{cmp\_max} \cdot CAS_{fil}(t-1)
    + b_{cmp\_max}
    \quad \forall t \in\left[1, t_{max}\right] \\
&
(3) \qquad P_{cmp\_max}(t) = b_{cmp\_max}
    \quad \forall t \notin\left[1, t_{max}\right] \\
&
(4) \qquad P_{cmp}(t) \leq P_{cmp\_max}(t)
    \quad \forall t \in T  \\
&
(5) \qquad P_{cmp}(t) \geq P_{cmp\_min} \cdot ST_{cmp}(t)
    \quad \forall t \in T  \\
&
(6) \qquad P_{cmp}(t) = m_{cmp\_max} \cdot CAS_{fil\_max}
    + b_{cmp\_max} \cdot ST_{cmp}(t)
    \quad \forall t \in T \\
&
(7) \qquad \dot{Q}_{cmp}(t) =
    m_{cmp\_q} \cdot P_{cmp}(t) + b_{cmp\_q} \cdot ST_{cmp}(t)
    \quad \forall t \in T  \\
&
(8) \qquad \dot{Q}_{cmp}(t) = \dot{Q}_{cmp_out}(t)
    + \dot{Q}_{tes\_in}(t)
    \quad \forall t \in T \\
&
(9) \qquad r_{cmp\_tes} \cdot\dot{Q}_{cmp\_out}(t) =
    \left(1-r_{cmp\_tes}\right) \dot{Q}_{tes\_in}(t)
    \quad \forall t \in T \\
&
(10) \quad\; P_{exp}(t) = electrical\_output (t)
     \quad \forall t \in T \\
&
(11) \quad\; P_{exp\_max}(t) = m_{exp\_max} CAS_{fil}(t-1)
     + b_{exp\_max}
     \quad \forall t \in\left[1, t_{\max }\right] \\
&
(12) \quad\; P_{exp\_max}(t) = b_{exp\_max}
     \quad \forall t \notin\left[1, t_{\max }\right] \\
&
(13) \quad\; P_{exp}(t) \leq P_{exp\_max}(t)
     \quad \forall t \in T \\
&
(14) \quad\; P_{exp}(t) \geq P_{exp\_min}(t) \cdot ST_{exp}(t)
     \quad \forall t \in T \\
&
(15) \quad\; P_{exp}(t) \leq m_{exp\_max} \cdot CAS_{fil\_max}
     + b_{exp\_max} \cdot ST_{exp}(t)
     \quad \forall t \in T \\
&
(16) \quad\; \dot{Q}_{exp}(t) = m_{exp\_q} \cdot P_{exp}(t)
     + b_{cxp\_q} \cdot ST_{cxp}(t)
     \quad \forall t \in T \\
&
(17) \quad\; \dot{Q}_{exp\_in}(t) = fuel\_input(t)
     \quad \forall t \in T \\
&
(18) \quad\; \dot{Q}_{exp}(t) = \dot{Q}_{exp\_in}(t)
     + \dot{Q}_{tes\_out}(t)+\dot{Q}_{cxp\_add}(t)
     \quad \forall t \in T \\
&
(19) \quad\; r_{exp\_tes} \cdot \dot{Q}_{exp\_in}(t) =
     (1 - r_{exp\_tes})(\dot{Q}_{tes\_out}(t) + \dot{Q}_{exp\_add}(t))
     \quad \forall t \in T \\
&
(20) \quad\; \dot{E}_{cas\_in}(t) = m_{cas\_in}\cdot P_{cmp}(t)
     + b_{cas\_in}\cdot ST_{cmp}(t)
     \quad \forall t \in T \\
&
(21) \quad\; \dot{E}_{cas\_out}(t) = m_{cas\_out}\cdot P_{cmp}(t)
     + b_{cas\_out}\cdot ST_{cmp}(t)
     \quad \forall t \in T \\
&
(22) \quad\; \eta_{cas\_tmp} \cdot CAS_{fil}(t) = CAS_{fil}(t-1)
     + \tau\left(\dot{E}_{cas\_in}(t) - \dot{E}_{cas\_out}(t)\right)
     \quad \forall t \in\left[1, t_{max}\right] \\
 &
(23) \quad\; \eta_{cas\_tmp} \cdot CAS_{fil}(t) =
     \tau\left(\dot{E}_{cas\_in}(t) - \dot{E}_{cas\_out}(t)\right)
     \quad \forall t \notin\left[1, t_{max}\right] \\
&
(24) \quad\; CAS_{fil}(t) \leq CAS_{fil\_max}
     \quad \forall t \in T \\
&
(25) \quad\; TES_{fil}(t) = TES_{fil}(t-1)
     + \tau\left(\dot{Q}_{tes\_in}(t)
     - \dot{Q}_{tes\_out}(t)\right)
     \quad \forall t \in\left[1, t_{max}\right] \\
 &
(26) \quad\; TES_{fil}(t) =
     \tau\left(\dot{Q}_{tes\_in}(t)
     - \dot{Q}_{tes\_out}(t)\right)
     \quad \forall t \notin\left[1, t_{max}\right] \\
&
(27) \quad\; TES_{fil}(t) \leq TES_{fil\_max}
     \quad \forall t \in T \\
&

Table: Symbols and attribute names of variables and parameters

Variables (V) and Parameters (P)
symbol attribute type explanation
ST_{cmp} cmp_st[n,t] V Status of compression
{P}_{cmp} cmp_p[n,t] V Compression power
{P}_{cmp\_max} cmp_p_max[n,t] V Max. compression power
\dot{Q}_{cmp} cmp_q_out_sum[n,t] V Summed heat flow in compression
\dot{Q}_{cmp\_out} cmp_q_waste[n,t] V Waste heat flow from compression
ST_{exp}(t) exp_st[n,t] V Status of expansion (binary)
P_{exp}(t) exp_p[n,t] V Expansion power
P_{exp\_max}(t) exp_p_max[n,t] V Max. expansion power
\dot{Q}_{exp}(t) exp_q_in_sum[n,t] V Summed heat flow in expansion
\dot{Q}_{exp\_in}(t) exp_q_fuel_in[n,t] V Heat (external) flow into expansion
\dot{Q}_{exp\_add}(t) exp_q_add_in[n,t] V Additional heat flow into expansion
CAV_{fil}(t) cav_level[n,t] V Filling level if CAE
\dot{E}_{cas\_in}(t) cav_e_in[n,t] V Exergy flow into CAS
\dot{E}_{cas\_out}(t) cav_e_out[n,t] V Exergy flow from CAS
TES_{fil}(t) tes_level[n,t] V Filling level of Thermal Energy Storage (TES)
\dot{Q}_{tes\_in}(t) tes_e_in[n,t] V Heat flow into TES
\dot{Q}_{tes\_out}(t) tes_e_out[n,t] V Heat flow from TES
b_{cmp\_max} cmp_p_max_b[n,t] P Specific y-intersection
b_{cmp\_q} cmp_q_out_b[n,t] P Specific y-intersection
b_{exp\_max} exp_p_max_b[n,t] P Specific y-intersection
b_{exp\_q} exp_q_in_b[n,t] P Specific y-intersection
b_{cas\_in} cav_e_in_b[n,t] P Specific y-intersection
b_{cas\_out} cav_e_out_b[n,t] P Specific y-intersection
m_{cmp\_max} cmp_p_max_m[n,t] P Specific slope
m_{cmp\_q} cmp_q_out_m[n,t] P Specific slope
m_{exp\_max} exp_p_max_m[n,t] P Specific slope
m_{exp\_q} exp_q_in_m[n,t] P Specific slope
m_{cas\_in} cav_e_in_m[n,t] P Specific slope
m_{cas\_out} cav_e_out_m[n,t] P Specific slope
P_{cmp\_min} cmp_p_min[n,t] P Min. compression power
r_{cmp\_tes} cmp_q_tes_share[n,t] P Ratio between waste heat flow and heat flow into TES
r_{exp\_tes} exp_q_tes_share[n,t] P Ratio between external heat flow into expansion and heat flows from TES and additional source
\tau m.timeincrement[n,t] P Time interval length
TES_{fil\_max} tes_level_max[n,t] P Max. filling level of TES
CAS_{fil\_max} cav_level_max[n,t] P Max. filling level of TES
\tau cav_eta_tmp[n,t] P Temporal efficiency (loss factor to take intertemporal losses into account)
electrical\_input flow[list(n.electrical_input.keys())[0], n, t] P Electr. power input into compression
electrical\_output flow[n, list(n.electrical_output.keys())[0], t] P Electr. power output of expansion
fuel\_input flow[list(n.fuel_input.keys())[0], n, t] P Heat input (external) into Expansion
CONSTRAINT_GROUP = True

Bases: oemof.solph.network.Transformer

A Link object with 1…2 inputs and 1…2 outputs.

Parameters:
  • conversion_factors (dict) – Dictionary containing conversion factors for conversion of each flow. Keys are the connected tuples (input, output) bus objects. The dictionary values can either be a scalar or a sequence with length of time horizon for simulation.
  • Note (This component is experimental. Use it with care.) –

Notes

The sets, variables, constraints and objective parts are created

Examples

>>> from oemof import solph
>>> bel0 = solph.Bus(label="el0")
>>> bel1 = solph.Bus(label="el1")
>>> link = solph.custom.Link(
...    label="transshipment_link",
...    inputs={bel0: solph.Flow(), bel1: solph.Flow()},
...    outputs={bel0: solph.Flow(), bel1: solph.Flow()},
...    conversion_factors={(bel0, bel1): 0.92, (bel1, bel0): 0.99})
>>> print(sorted([x[1][5] for x in link.conversion_factors.items()]))
[0.92, 0.99]
>>> type(link)
<class 'oemof.solph.custom.Link'>
>>> sorted([str(i) for i in link.inputs])
['el0', 'el1']
>>> link.conversion_factors[(bel0, bel1)][3]
0.92
constraint_group()[source]
class oemof.solph.custom.LinkBlock(*args, **kwargs)[source]

Bases: pyomo.core.base.block.SimpleBlock

Block for the relation of nodes with type Link

Note: This component is experimental. Use it with care.

The following constraints are created:

TODO: Add description for constraints TODO: Add tests

CONSTRAINT_GROUP = True
class oemof.solph.custom.SinkDSM(demand, capacity_up, capacity_down, method, shift_interval=None, delay_time=None, cost_dsm_up=0, cost_dsm_down=0, **kwargs)[source]

Bases: oemof.solph.network.Sink

Demand Side Management implemented as Sink with flexibility potential.

Based on the paper by Zerrahn, Alexander and Schill, Wolf-Peter (2015): On the representation of demand-side management in power system models, in: Energy (84), pp. 840-845, 10.1016/j.energy.2015.03.037, accessed 17.09.2019, pp. 842-843.

SinkDSM adds additional constraints that allow to shift energy in certain time window constrained by capacity_up and capacity_down.

Parameters:
  • demand (numeric) – original electrical demand
  • capacity_up (int or array) – maximum DSM capacity that may be increased
  • capacity_down (int or array) – maximum DSM capacity that may be reduced
  • method ('interval' , 'delay') –

    Choose one of the DSM modelling approaches. Read notes about which parameters to be applied for which approach.

    interval :

    Simple model in which the load shift must be compensated in a predefined fixed interval (shift_interval is mandatory). Within time windows of the length shift_interval DSM up and down shifts are balanced. See SinkDSMIntervalBlock for details.

    delay :

    Sophisticated model based on the formulation by Zerrahn & Schill (2015). The load-shift of the component must be compensated in a predefined delay-time (delay_time is mandatory). For details see SinkDSMDelayBlock.
  • shift_interval (int) – Only used when method is set to ‘interval’. Otherwise, can be None. It’s the interval in which between DSM_{t}^{up} and DSM_{t}^{down} have to be compensated.
  • delay_time (int) – Only used when method is set to ‘delay’. Otherwise, can be None. Length of symmetrical time windows around t in which DSM_{t}^{up} and DSM_{t,tt}^{down} have to be compensated.
  • cost_dsm_up (int) – Cost per unit of DSM activity that increases the demand
  • cost_dsm_down (int) – Cost per unit of DSM activity that decreases the demand

Note

  • This component is a candidate component. It’s implemented as a custom component for users that like to use and test the component at early stage. Please report issues to improve the component.
  • As many constraints and dependencies are created in method ‘delay’, computational cost might be high with a large ‘delay_time’ and with model of high temporal resolution
  • Using method ‘delay’ might result in demand shifts that exceed the specified delay time by activating up and down simultaneously in the time steps between to DSM events.
  • It’s not recommended to assign cost to the flow that connects SinkDSM with a bus. Instead, use cost_dsm_up or cost_dsm_down
constraint_group()[source]
class oemof.solph.custom.SinkDSMDelayBlock(*args, **kwargs)[source]

Bases: pyomo.core.base.block.SimpleBlock

Constraints for SinkDSM with “delay” method

The following constraints are created for method = ‘delay’:

&
(1) \quad \dot{E}_{t} = demand_{t} + DSM_{t}^{up} -
\sum_{tt=t-L}^{t+L} DSM_{t,tt}^{do}  \quad \forall t \in \mathbb{T} \\
&
(2) \quad DSM_{t}^{up} = \sum_{tt=t-L}^{t+L} DSM_{t,tt}^{do}
\quad \forall t \in \mathbb{T} \\
&
(3) \quad DSM_{t}^{up} \leq  E_{t}^{up} \quad \forall t \in
\mathbb{T} \\
&
(4) \quad \sum_{tt=t-L}^{t+L} DSM_{t,tt}^{do}  \leq E_{t}^{do}
\quad \forall t \in \mathbb{T} \\
&
(5) \quad DSM_{t}^{up}  + \sum_{tt=t-L}^{t+L} DSM_{t,tt}^{do}
\leq max \{ E_{t}^{up}, E_{t}^{do} \}\quad \forall t \in \mathbb{T} \\
&

Table: Symbols and attribute names of variables and parameters

Variables (V) and Parameters (P)
symbol attribute type explanation
DSM_{t}^{up} dsm_do[g,t,tt] V DSM up shift (additional load)
DSM_{t,tt}^{do} dsm_up[g,t] V DSM down shift (less load)
\dot{E}_{t} flow[g,t] V Energy flowing in from electrical bus
L delay_time P Delay time for load shift
demand_{t} demand[t] P Electrical demand series
E_{t}^{do} capacity_down[tt] P Capacity DSM down shift
E_{t}^{up} capacity_up[tt] P Capacity DSM up shift
\mathbb{T}   P Time steps
CONSTRAINT_GROUP = True
class oemof.solph.custom.SinkDSMIntervalBlock(*args, **kwargs)[source]

Bases: pyomo.core.base.block.SimpleBlock

Constraints for SinkDSM with “interval” method

The following constraints are created for method = ‘interval’:

&
(1) \quad \dot{E}_{t} = demand_{t} + DSM_{t}^{up} - DSM_{t}^{do}
\quad \forall t \in \mathbb{T}\\
&
(2) \quad  DSM_{t}^{up} \leq E_{t}^{up} \quad \forall t \in
\mathbb{T}\\
&
(3) \quad DSM_{t}^{do} \leq  E_{t}^{do} \quad \forall t \in
\mathbb{T}\\
&
(4) \quad  \sum_{t=t_s}^{t_s+\tau} DSM_{t}^{up} =
\sum_{t=t_s}^{t_s+\tau} DSM_{t}^{do} \quad \forall t_s \in \{k
\in \mathbb{T} \mid k \mod \tau = 0\} \\
&

Table: Symbols and attribute names of variables and parameters

Variables (V) and Parameters (P)
symbol attribute type explanation
DSM_{t}^{up} capacity_up V DSM up shift
DSM_{t}^{do} capacity_down V DSM down shift
\dot{E}_{t} inputs V Energy flowing in from electrical bus
demand_{t} demand[t] P Electrical demand series
E_{t}^{do} capacity_down[tt] P Capacity DSM down shift capacity
E_{t}^{up} capacity_up[tt] P Capacity DSM up shift
\tau shift_interval P Shift interval
\mathbb{T}   P Time steps
CONSTRAINT_GROUP = True

oemof.solph.groupings module

list: Groupings needed on an energy system for it to work with solph.

If you want to use solph on an energy system, you need to create it with these groupings specified like this:

from oemof.network import EnergySystem import solph

energy_system = EnergySystem(groupings=solph.GROUPINGS)

This file is part of project oemof (github.com/oemof/oemof). It’s copyrighted by the contributors recorded in the version control history of the file, available from its original location oemof/oemof/solph/groupings.py

SPDX-License-Identifier: MIT

oemof.solph.groupings.constraint_grouping(node, fallback=<function <lambda>>)[source]

Grouping function for constraints.

This function can be passed in a list to groupings of oemof.solph.network.EnergySystem.

Parameters:
  • node (Node <oemof.network.Node) – The node for which the figure out a constraint group.
  • fallback (callable, optional) – A function of one argument. If node doesn’t have a constraint_group attribute, this is used to group the node instead. Defaults to not group the node at all.

oemof.solph.models module

Solph Optimization Models

This file is part of project oemof (github.com/oemof/oemof). It’s copyrighted by the contributors recorded in the version control history of the file, available from its original location oemof/oemof/solph/models.py

SPDX-License-Identifier: MIT

class oemof.solph.models.BaseModel(energysystem, **kwargs)[source]

Bases: pyomo.core.base.PyomoModel.ConcreteModel

The BaseModel for other solph-models (Model, MultiPeriodModel, etc.)

Parameters:
  • energysystem (EnergySystem object) – Object that holds the nodes of an oemof energy system graph
  • constraint_groups (list (optional)) – Solph looks for these groups in the given energy system and uses them to create the constraints of the optimization problem. Defaults to Model.CONSTRAINTS
  • objective_weighting (array like (optional)) – Weights used for temporal objective function expressions. If nothing is passed timeincrement will be used which is calculated from the freq length of the energy system timeindex .
  • auto_construct (boolean) – If this value is true, the set, variables, constraints, etc. are added, automatically when instantiating the model. For sequential model building process set this value to False and use methods _add_parent_block_sets, _add_parent_block_variables, _add_blocks, _add_objective
  • Attributes
  • -----------
  • timeincrement (sequence) – Time increments.
  • flows (dict) – Flows of the model.
  • name (str) – Name of the model.
  • es (solph.EnergySystem) – Energy system of the model.
  • meta (pyomo.opt.results.results_.SolverResults or None) – Solver results.
  • dual (.. or None) –
  • rc (.. or None) –
CONSTRAINT_GROUPS = []
receive_duals()[source]

Method sets solver suffix to extract information about dual variables from solver. Shadow prices (duals) and reduced costs (rc) are set as attributes of the model.

relax_problem()[source]

Relaxes integer variables to reals of optimization model self.

results()[source]

Returns a nested dictionary of the results of this optimization

solve(solver='cbc', solver_io='lp', **kwargs)[source]

Takes care of communication with solver to solve the model.

Parameters:
  • solver (string) – solver to be used e.g. “glpk”,”gurobi”,”cplex”
  • solver_io (string) – pyomo solver interface file format: “lp”,”python”,”nl”, etc.
  • **kwargs (keyword arguments) – Possible keys can be set see below:
Other Parameters:
 
  • solve_kwargs (dict) – Other arguments for the pyomo.opt.SolverFactory.solve() method Example : {“tee”:True}
  • cmdline_options (dict) – Dictionary with command line options for solver e.g. {“mipgap”:”0.01”} results in “–mipgap 0.01” {“interior”:” “} results in “–interior” Gurobi solver takes numeric parameter values such as {“method”: 2}
class oemof.solph.models.Model(energysystem, **kwargs)[source]

Bases: oemof.solph.models.BaseModel

An energy system model for operational and investment optimization.

Parameters:
  • energysystem (EnergySystem object) – Object that holds the nodes of an oemof energy system graph
  • constraint_groups (list) – Solph looks for these groups in the given energy system and uses them to create the constraints of the optimization problem. Defaults to Model.CONSTRAINTS
  • following basic sets are created** (**The) –
  • NODES – A set with all nodes of the given energy system.
  • TIMESTEPS – A set with all timesteps of the given time horizon.
  • FLOWS – A 2 dimensional set with all flows. Index: (source, target)
  • following basic variables are created** (**The) –
  • flow – Flow from source to target indexed by FLOWS, TIMESTEPS. Note: Bounds of this variable are set depending on attributes of the corresponding flow object.
CONSTRAINT_GROUPS = [<class 'oemof.solph.blocks.Bus'>, <class 'oemof.solph.blocks.Transformer'>, <class 'oemof.solph.blocks.InvestmentFlow'>, <class 'oemof.solph.blocks.Flow'>, <class 'oemof.solph.blocks.NonConvexFlow'>]

oemof.solph.network module

Classes used to model energy supply systems within solph.

Classes are derived from oemof core network classes and adapted for specific optimization tasks. An energy system is modelled as a graph/network of nodes with very specific constraints on which types of nodes are allowed to be connected.

This file is part of project oemof (github.com/oemof/oemof). It’s copyrighted by the contributors recorded in the version control history of the file, available from its original location oemof/oemof/solph/network.py

SPDX-License-Identifier: MIT

class oemof.solph.network.Bus(*args, **kwargs)[source]

Bases: oemof.network.Bus

A balance object. Every node has to be connected to Bus.

Notes

The following sets, variables, constraints and objective parts are created
constraint_group()[source]
class oemof.solph.network.EnergySystem(**kwargs)[source]

Bases: oemof.energy_system.EnergySystem

A variant of EnergySystem specially tailored to solph.

In order to work in tandem with solph, instances of this class always use solph.GROUPINGS. If custom groupings are supplied via the groupings keyword argument, solph.GROUPINGS is prepended to those.

If you know what you are doing and want to use solph without solph.GROUPINGS, you can just use core's EnergySystem directly.

class oemof.solph.network.Flow(**kwargs)[source]

Bases: oemof.network.Edge

Defines a flow between two nodes.

Keyword arguments are used to set the attributes of this flow. Parameters which are handled specially are noted below. For the case where a parameter can be either a scalar or a sequence, a scalar value will be converted to a sequence containing the scalar value at every index. This sequence is then stored under the paramter’s key.

Parameters:
  • nominal_value (numeric) – The nominal value of the flow. If this value is set the corresponding optimization variable of the flow object will be bounded by this value multiplied with min(lower bound)/max(upper bound).
  • max (numeric (sequence or scalar)) – Normed maximum value of the flow. The flow absolute maximum will be calculated by multiplying nominal_value with max
  • min (numeric (sequence or scalar)) – Nominal minimum value of the flow (see max).
  • actual_value (numeric (sequence or scalar)) – Specific value for the flow variable. Will be multiplied with the nominal_value to get the absolute value. If fixed is set to True the flow variable will be fixed to actual_value * nominal_value, i.e. this value is set exogenous.
  • positive_gradient (dict, default: {‘ub’: None, ‘costs’: 0}) –

    A dictionary containing the following two keys:

    • ’ub’: numeric (sequence, scalar or None), the normed upper bound on the positive difference (flow[t-1] < flow[t]) of two consecutive flow values.
    • ’costs`: numeric (scalar or None), the gradient cost per unit.
  • negative_gradient (dict, default: {‘ub’: None, ‘costs’: 0}) –

    A dictionary containing the following two keys:

    • ’ub’: numeric (sequence, scalar or None), the normed upper bound on the negative difference (flow[t-1] > flow[t]) of two consecutive flow values.
    • ’costs`: numeric (scalar or None), the gradient cost per unit.
  • summed_max (numeric) – Specific maximum value summed over all timesteps. Will be multiplied with the nominal_value to get the absolute limit.
  • summed_min (numeric) – see above
  • variable_costs (numeric (sequence or scalar)) – The costs associated with one unit of the flow. If this is set the costs will be added to the objective expression of the optimization problem.
  • fixed (boolean) – Boolean value indicating if a flow is fixed during the optimization problem to its ex-ante set value. Used in combination with the actual_value.
  • investment (Investment) – Object indicating if a nominal_value of the flow is determined by the optimization problem. Note: This will refer all attributes to an investment variable instead of to the nominal_value. The nominal_value should not be set (or set to None) if an investment object is used.
  • nonconvex (NonConvex) – If a nonconvex flow object is added here, the flow constraints will be altered significantly as the mathematical model for the flow will be different, i.e. constraint etc. from NonConvexFlow will be used instead of Flow. Note: at the moment this does not work if the investment attribute is set .

Notes

The following sets, variables, constraints and objective parts are created

Examples

Creating a fixed flow object:

>>> f = Flow(actual_value=[10, 4, 4], fixed=True, variable_costs=5)
>>> f.variable_costs[2]
5
>>> f.actual_value[2]
4

Creating a flow object with time-depended lower and upper bounds:

>>> f1 = Flow(min=[0.2, 0.3], max=0.99, nominal_value=100)
>>> f1.max[1]
0.99
class oemof.solph.network.Sink(*args, **kwargs)[source]

Bases: oemof.network.Sink

An object with one input flow.

constraint_group()[source]
class oemof.solph.network.Source(*args, **kwargs)[source]

Bases: oemof.network.Source

An object with one output flow.

constraint_group()[source]
class oemof.solph.network.Transformer(*args, **kwargs)[source]

Bases: oemof.network.Transformer

A linear Transformer object with n inputs and n outputs.

Parameters:conversion_factors (dict) – Dictionary containing conversion factors for conversion of each flow. Keys are the connected bus objects. The dictionary values can either be a scalar or a sequence with length of time horizon for simulation.

Examples

Defining an linear transformer:

>>> from oemof import solph
>>> bgas = solph.Bus(label='natural_gas')
>>> bcoal = solph.Bus(label='hard_coal')
>>> bel = solph.Bus(label='electricity')
>>> bheat = solph.Bus(label='heat')
>>> trsf = solph.Transformer(
...    label='pp_gas_1',
...    inputs={bgas: solph.Flow(), bcoal: solph.Flow()},
...    outputs={bel: solph.Flow(), bheat: solph.Flow()},
...    conversion_factors={bel: 0.3, bheat: 0.5,
...                        bgas: 0.8, bcoal: 0.2})
>>> print(sorted([x[1][5] for x in trsf.conversion_factors.items()]))
[0.2, 0.3, 0.5, 0.8]
>>> type(trsf)
<class 'oemof.solph.network.Transformer'>
>>> sorted([str(i) for i in trsf.inputs])
['hard_coal', 'natural_gas']
>>> trsf_new = solph.Transformer(
...    label='pp_gas_2',
...    inputs={bgas: solph.Flow()},
...    outputs={bel: solph.Flow(), bheat: solph.Flow()},
...    conversion_factors={bel: 0.3, bheat: 0.5})
>>> trsf_new.conversion_factors[bgas][3]
1

Notes

The following sets, variables, constraints and objective parts are created
constraint_group()[source]

oemof.solph.options module

Optional classes to be added to a network class. This file is part of project oemof (github.com/oemof/oemof). It’s copyrighted by the contributors recorded in the version control history of the file, available from its original location oemof/oemof/solph/options.py

SPDX-License-Identifier: MIT

class oemof.solph.options.Investment(maximum=inf, minimum=0, ep_costs=0, existing=0)[source]

Bases: object

Parameters:
  • maximum (float) – Maximum of the additional invested capacity
  • minimum (float) – Minimum of the additional invested capacity
  • ep_costs (float) – Equivalent periodical costs for the investment, if period is one year these costs are equal to the equivalent annual costs.
  • existing (float) – Existing / installed capacity. The invested capacity is added on top of this value.
class oemof.solph.options.NonConvex(**kwargs)[source]

Bases: object

Parameters:
  • startup_costs (numeric (sequence or scalar)) – Costs associated with a start of the flow (representing a unit).
  • shutdown_costs (numeric (sequence or scalar)) – Costs associated with the shutdown of the flow (representing a unit).
  • activity_costs (numeric (sequence or scalar)) – Costs associated with the active operation of the flow, independently from the actual output.
  • minimum_uptime (numeric (1 or positive integer)) – Minimum time that a flow must be greater then its minimum flow after startup. Be aware that minimum up and downtimes can contradict each other and may lead to infeasible problems.
  • minimum_downtime (numeric (1 or positive integer)) – Minimum time a flow is forced to zero after shutting down. Be aware that minimum up and downtimes can contradict each other and may to infeasible problems.
  • maximum_startups (numeric (0 or positive integer)) – Maximum number of start-ups.
  • maximum_shutdowns (numeric (0 or positive integer)) – Maximum number of shutdowns.
  • initial_status (numeric (0 or 1)) – Integer value indicating the status of the flow in the first time step (0 = off, 1 = on). For minimum up and downtimes, the initial status is set for the respective values in the edge regions e.g. if a minimum uptime of four timesteps is defined, the initial status is fixed for the four first and last timesteps of the optimization period. If both, up and downtimes are defined, the initial status is set for the maximum of both e.g. for six timesteps if a minimum downtime of six timesteps is defined in addition to a four timestep minimum uptime.
max_up_down

Compute or return the _max_up_down attribute.

oemof.solph.plumbing module

Plumbing stuff.

This file is part of project oemof (github.com/oemof/oemof). It’s copyrighted by the contributors recorded in the version control history of the file, available from its original location oemof/oemof/solph/plumbing.py

SPDX-License-Identifier: MIT

oemof.solph.plumbing.sequence(sequence_or_scalar)[source]

Tests if an object is sequence (except string) or scalar and returns a the original sequence if object is a sequence and a ‘emulated’ sequence object of class _Sequence if object is a scalar or string.

Parameters:sequence_or_scalar (array-like, None, int, float) –

Examples

>>> sequence([1,2])
[1, 2]
>>> x = sequence(10)
>>> x[0]
10
>>> x[10]
10
>>> print(x)
[10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10]

Module contents