Skip to content

Commit

Permalink
Fix equations
Browse files Browse the repository at this point in the history
  • Loading branch information
simnh committed Jun 19, 2019
1 parent 83e6771 commit 2105171
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/oemof/tabular/facades.py
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ def build_solph_components(self):

if self.profile is None:
self.profile = 1

f = Flow(
nominal_value=self._nominal_value(),
variable_costs=self.marginal_cost,
Expand Down Expand Up @@ -533,7 +533,7 @@ class ExtractionTurbine(ExtractionTurbineCHP, Facade):
`ExtractionTurbineCHP <https://oemof.readthedocs.io/en/stable/oemof_solph.html#extractionturbinechp-component>`_ :
.. math::
x^{flow, carrier} =
x^{flow, carrier}(t) =
\frac{x^{flow, electricity}(t) + x^{flow, heat}(t) \cdot c^{beta}(t)}{c^{condensing\_efficiency}(t)}
\qquad \forall t \in T
Expand All @@ -555,7 +555,7 @@ class ExtractionTurbine(ExtractionTurbineCHP, Facade):
.. math::
x^{opex} = \sum_t (x^{flow, out}(t) \cdot c^{marginal\_cost}(t)
+ x^{flow, carrier} \cdot c^{carrier\_cost}(t))
+ x^{flow, carrier}(t) \cdot c^{carrier\_cost}(t))
Examples
Expand Down Expand Up @@ -715,7 +715,7 @@ class BackpressureTurbine(Transformer, Facade):
.. math::
x^{opex} = \sum_t (x^{flow, out}(t) \cdot c^{marginal\_cost}(t)
+ x^{flow, carrier} \cdot c^{carrier\_cost}(t))
+ x^{flow, carrier}(t) \cdot c^{carrier\_cost}(t))
Examples
---------
Expand Down Expand Up @@ -850,7 +850,7 @@ class Conversion(Transformer, Facade):
.. math::
x^{opex} = \sum_t (x^{flow, out}(t) \cdot c^{marginal\_cost}(t)
+ x^{flow, carrier} \cdot c^{carrier\_cost}(t))
+ x^{flow, carrier}(t) \cdot c^{carrier\_cost}(t))
Examples
Expand Down

0 comments on commit 2105171

Please sign in to comment.