Skip to content

Commit

Permalink
Corrected the cost term for bidirectional investment
Browse files Browse the repository at this point in the history
  • Loading branch information
sambuddhac committed Dec 3, 2024
1 parent a8c03cd commit c8d15fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/model/core/transmission/investment_transmission.jl
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ function investment_transmission!(EP::Model, inputs::Dict, setup::Dict)
eTotalCNetworkExp,
if setup["asymmetrical_trans_flow_limit"] == 1
sum(vNEW_TRANS_CAP[l] * inputs["pC_Line_Reinforcement"][l]
for l in EXPANSION_LINES)+sum(vNEW_TRANS_CAP_Pos[l] * inputs["pC_Line_Reinforcement_Pos"][l]
for l in EXPANSION_LINES_ASYM)+sum(vNEW_TRANS_CAP_Neg[l] * inputs["pC_Line_Reinforcement_Neg"][l]
for l in EXPANSION_LINES)+sum(vNEW_TRANS_CAP_Pos[l] * inputs["pC_Line_Reinforcement"][l]
for l in EXPANSION_LINES_ASYM)+sum(vNEW_TRANS_CAP_Neg[l] * inputs["pC_Line_Reinforcement"][l]
for l in EXPANSION_LINES_ASYM)
else
sum(vNEW_TRANS_CAP[l] * inputs["pC_Line_Reinforcement"][l]
Expand Down

0 comments on commit c8d15fe

Please sign in to comment.