From d7ce18eac841162bfa8ec217ff698fa57cfc1ca8 Mon Sep 17 00:00:00 2001 From: Aleksandr Kazachkov Date: Fri, 23 Jul 2021 19:19:28 -0400 Subject: [PATCH] Removed extra reserve in base/bus.jl --- src/model/formulations/base/bus.jl | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/model/formulations/base/bus.jl b/src/model/formulations/base/bus.jl index dde369f..b028ad4 100644 --- a/src/model/formulations/base/bus.jl +++ b/src/model/formulations/base/bus.jl @@ -14,9 +14,6 @@ function _add_bus!(model::JuMP.Model, b::Bus)::Nothing # Fixed load net_injection[b.name, t] = AffExpr(-b.load[t]) - # Reserves - reserve[b.name, t] = AffExpr() - # Load curtailment curtail[b.name, t] = @variable(model, lower_bound = 0, upper_bound = b.load[t])