ThreePartCost

PowerSystems.ThreePartCostType
mutable struct ThreePartCost <: OperationalCost
    variable::VariableCost
    fixed::Float64
    start_up::Float64
    shut_down::Float64
end

Data Structure Operational Cost Data in Three parts fixed, variable cost and start - stop costs.

Arguments

  • variable::VariableCost: variable cost
  • fixed::Float64: fixed cost
  • start_up::Float64: start-up cost, validation range: (0, nothing), action if invalid: warn
  • shut_down::Float64: shut-down cost, validation range: (0, nothing), action if invalid: warn
source