You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Relayed by @claytonpbarrows, there is a request to be able to easily extract the total operational cost of a simulation — not quite the same thing as the objective function value. There are two ways this could be done:
Documentation of existing feature: we already have the calc_total_cost metric, which operates on individual generators, so one could just do something like:
. I should make sure there aren't any edge cases; if something like this actually works it seems like we should just go this route and put it in a tutorial somewhere.
2. Addition of new feature: there could be a new system-level metric:
calc_system_cost(sys)
that bakes in any edge cases (and would likely be a bit more performant, not that performance should be a huge issue).
Once #24 is merged and released (this week, probably), I'll work on this.
The text was updated successfully, but these errors were encountered:
Relayed by @claytonpbarrows, there is a request to be able to easily extract the total operational cost of a simulation — not quite the same thing as the objective function value. There are two ways this could be done:
calc_total_cost
metric, which operates on individual generators, so one could just do something like:. I should make sure there aren't any edge cases; if something like this actually works it seems like we should just go this route and put it in a tutorial somewhere.
2. Addition of new feature: there could be a new system-level metric:
calc_system_cost(sys)
that bakes in any edge cases (and would likely be a bit more performant, not that performance should be a huge issue).
Once #24 is merged and released (this week, probably), I'll work on this.
The text was updated successfully, but these errors were encountered: