StorageManagementCost

PowerSystems.StorageManagementCostType
mutable struct StorageManagementCost <: OperationalCost
    variable::VariableCost
    fixed::Float64
    start_up::Float64
    shut_down::Float64
    energy_shortage_cost::Float64
    energy_surplus_cost::Float64
end

Data Structure for Operational Cost Data like variable cost and start - stop costs and energy storage cost.

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
  • energy_shortage_cost::Float64: Cost incurred by the model for being short of the energy target., validation range: (0, nothing), action if invalid: warn
  • energy_surplus_cost::Float64: Cost incurred by the model for surplus energy stored., validation range: (0, nothing), action if invalid: warn
source