Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Formulate full_load_time docstring specific for energy #1096

Merged
merged 1 commit into from
Aug 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions src/oemof/solph/flows/_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,13 @@ class Flow(Edge):
the normed *upper bound* on the negative difference
(`flow[t-1] > flow[t]`) of two consecutive flow values.
full_load_time_max : numeric, :math:`t_{full\_load,max}`
Upper bound on the summed flow expressed as the equivalent time that
the flow would have to run at full capacity to yield the same sum. The
value will be multiplied with the nominal_value to get the absolute
limit.
Maximum energy transported by the flow expressed as the time (in
hours) that the flow would have to run at nominal capacity
(`nominal_value`).
full_load_time_min : numeric, :math:`t_{full\_load,min}`
Lower bound on the summed flow expressed as the equivalent time that
the flow would have to run at full capacity to yield the same sum. The
value will be multiplied with the nominal_value to get the absolute
limit.
Minimum energy transported by the flow expressed as the time (in
hours) that the flow would have to run at nominal capacity
(`nominal_value`).
integer : boolean
Set True to bound the flow values to integers.
nonconvex : :class:`NonConvex <oemof.solph.options.NonConvex>`
Expand Down
Loading