Skip to content

Commit 85856ae

Browse files
committed
Fix Italy North exchange alignment by removing incorrect DE net position addition to CH
1 parent 23a0a6e commit 85856ae

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/rte_france/trm_algorithm/operational_conditions_aligners/ItalyNorthExchangeAligner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ ExchangeAndNetPosition computeExchangeAndNetPosition(Network network) {
125125
private static Map<String, Double> updateMarketBasedNtcs(ExchangeAndNetPositionInterface marketBasedExchangeAndNetPosition) {
126126
return Map.of(
127127
new CountryEICode(FR).getCode(), marketBasedExchangeAndNetPosition.getNetPosition(FR),
128-
new CountryEICode(CH).getCode(), marketBasedExchangeAndNetPosition.getNetPosition(CH) + marketBasedExchangeAndNetPosition.getNetPosition(DE),
128+
new CountryEICode(CH).getCode(), marketBasedExchangeAndNetPosition.getNetPosition(CH),
129129
new CountryEICode(AT).getCode(), marketBasedExchangeAndNetPosition.getNetPosition(AT),
130130
new CountryEICode(SI).getCode(), marketBasedExchangeAndNetPosition.getNetPosition(SI)
131131
);

0 commit comments

Comments
 (0)