Skip to content

Commit

Permalink
Issue oemof#565 and Issue oemof#566 fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
ajimenezUCLA committed Feb 18, 2019
1 parent 73dd932 commit 886600d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions oemof/solph/blocks.py
Expand Up @@ -49,12 +49,12 @@ class Flow(SimpleBlock):
Flow max sum :attr:`om.Flow.summed_max[i, o]`
.. math::
\sum_t flow(i, o, t) \cdot \tau \leq 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 :attr:`om.Flow.summed_min[i, o]`
.. math::
\sum_t flow(i, o, t) \cdot \tau \geq 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 :attr:`om.Flow.negative_gradient_constr[i, o]`:
Expand Down
2 changes: 1 addition & 1 deletion oemof/solph/components.py
Expand Up @@ -1098,7 +1098,7 @@ class ExtractionTurbineCHPBlock(SimpleBlock):
\frac{P_{el} + \dot Q_{th} \cdot \beta}
{\eta_{el,woExtr}} \\
&
P_{el} \leq \dot Q_{th} \cdot
P_{el} \geq \dot Q_{th} \cdot
\frac{\eta_{el,maxExtr}}
{\eta_{th,maxExtr}}
Expand Down

0 comments on commit 886600d

Please sign in to comment.