-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enhance RaoResult with Monitoring results (#841)
* enhance RaoResult with Angle and Voltage Monitoring results * enhance RaoResult with Angle and Voltage Monitoring results * fix previous commit * enhance unit test of AbstractRaoResultClone.java * add test coverage for AbstractRaoResultClone.java * changes after review * changes after review * minor changes after second review Signed-off-by: belthlemar <[email protected]>
- Loading branch information
1 parent
374158d
commit e62b60b
Showing
20 changed files
with
2,964 additions
and
70 deletions.
There are no files selected for viewing
168 changes: 168 additions & 0 deletions
168
...esult-api/src/main/java/com/farao_community/farao/data/rao_result_api/RaoResultClone.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,168 @@ | ||
/* | ||
* Copyright (c) 2023, RTE (http://www.rte-france.com) | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
*/ | ||
|
||
package com.farao_community.farao.data.rao_result_api; | ||
|
||
import com.farao_community.farao.commons.Unit; | ||
import com.farao_community.farao.data.crac_api.Instant; | ||
import com.farao_community.farao.data.crac_api.RemedialAction; | ||
import com.farao_community.farao.data.crac_api.State; | ||
import com.farao_community.farao.data.crac_api.cnec.FlowCnec; | ||
import com.farao_community.farao.data.crac_api.cnec.Side; | ||
import com.farao_community.farao.data.crac_api.network_action.NetworkAction; | ||
import com.farao_community.farao.data.crac_api.range_action.PstRangeAction; | ||
import com.farao_community.farao.data.crac_api.range_action.RangeAction; | ||
|
||
import java.util.*; | ||
|
||
/** | ||
* Clone that reproduces the results obtained by another RaoResult instance. It can be used to override some methods without rewriting all the implementations | ||
* @author Mohamed Ben Rejeb {@literal <mohamed.ben-rejeb at rte-france.com>} | ||
*/ | ||
public class RaoResultClone implements RaoResult { | ||
|
||
private final RaoResult raoResult; | ||
|
||
protected RaoResultClone(RaoResult raoResult) { | ||
this.raoResult = raoResult; | ||
} | ||
|
||
@Override | ||
public ComputationStatus getComputationStatus() { | ||
return raoResult.getComputationStatus(); | ||
} | ||
|
||
@Override | ||
public ComputationStatus getComputationStatus(State state) { | ||
return raoResult.getComputationStatus(state); | ||
} | ||
|
||
@Override | ||
public double getFlow(Instant optimizedInstant, FlowCnec flowCnec, Side side, Unit unit) { | ||
return raoResult.getFlow(optimizedInstant, flowCnec, side, unit); | ||
} | ||
|
||
@Override | ||
public double getMargin(Instant optimizedInstant, FlowCnec flowCnec, Unit unit) { | ||
return raoResult.getMargin(optimizedInstant, flowCnec, unit); | ||
} | ||
|
||
@Override | ||
public double getRelativeMargin(Instant optimizedInstant, FlowCnec flowCnec, Unit unit) { | ||
return raoResult.getRelativeMargin(optimizedInstant, flowCnec, unit); | ||
} | ||
|
||
@Override | ||
public double getLoopFlow(Instant optimizedInstant, FlowCnec flowCnec, Side side, Unit unit) { | ||
return raoResult.getLoopFlow(optimizedInstant, flowCnec, side, unit); | ||
} | ||
|
||
@Override | ||
public double getCommercialFlow(Instant optimizedInstant, FlowCnec flowCnec, Side side, Unit unit) { | ||
return raoResult.getCommercialFlow(optimizedInstant, flowCnec, side, unit); | ||
} | ||
|
||
@Override | ||
public double getPtdfZonalSum(Instant optimizedInstant, FlowCnec flowCnec, Side side) { | ||
return raoResult.getPtdfZonalSum(optimizedInstant, flowCnec, side); | ||
} | ||
|
||
@Override | ||
public double getCost(Instant optimizedInstant) { | ||
return raoResult.getCost(optimizedInstant); | ||
} | ||
|
||
@Override | ||
public double getFunctionalCost(Instant optimizedInstant) { | ||
return raoResult.getFunctionalCost(optimizedInstant); | ||
} | ||
|
||
@Override | ||
public double getVirtualCost(Instant optimizedInstant) { | ||
return raoResult.getVirtualCost(optimizedInstant); | ||
} | ||
|
||
@Override | ||
public Set<String> getVirtualCostNames() { | ||
return raoResult.getVirtualCostNames(); | ||
} | ||
|
||
@Override | ||
public double getVirtualCost(Instant optimizedInstant, String virtualCostName) { | ||
return raoResult.getVirtualCost(optimizedInstant, virtualCostName); | ||
} | ||
|
||
@Override | ||
public boolean isActivatedDuringState(State state, RemedialAction<?> remedialAction) { | ||
return raoResult.isActivatedDuringState(state, remedialAction); | ||
} | ||
|
||
@Override | ||
public boolean wasActivatedBeforeState(State state, NetworkAction networkAction) { | ||
return raoResult.wasActivatedBeforeState(state, networkAction); | ||
} | ||
|
||
@Override | ||
public boolean isActivatedDuringState(State state, NetworkAction networkAction) { | ||
return raoResult.isActivatedDuringState(state, networkAction); | ||
} | ||
|
||
@Override | ||
public Set<NetworkAction> getActivatedNetworkActionsDuringState(State state) { | ||
return raoResult.getActivatedNetworkActionsDuringState(state); | ||
} | ||
|
||
@Override | ||
public boolean isActivatedDuringState(State state, RangeAction<?> rangeAction) { | ||
return raoResult.isActivatedDuringState(state, rangeAction); | ||
} | ||
|
||
@Override | ||
public int getPreOptimizationTapOnState(State state, PstRangeAction pstRangeAction) { | ||
return raoResult.getPreOptimizationTapOnState(state, pstRangeAction); | ||
} | ||
|
||
@Override | ||
public int getOptimizedTapOnState(State state, PstRangeAction pstRangeAction) { | ||
return raoResult.getOptimizedTapOnState(state, pstRangeAction); | ||
} | ||
|
||
@Override | ||
public double getPreOptimizationSetPointOnState(State state, RangeAction<?> rangeAction) { | ||
return raoResult.getPreOptimizationSetPointOnState(state, rangeAction); | ||
} | ||
|
||
@Override | ||
public double getOptimizedSetPointOnState(State state, RangeAction<?> rangeAction) { | ||
return raoResult.getOptimizedSetPointOnState(state, rangeAction); | ||
} | ||
|
||
@Override | ||
public Set<RangeAction<?>> getActivatedRangeActionsDuringState(State state) { | ||
return raoResult.getActivatedRangeActionsDuringState(state); | ||
} | ||
|
||
@Override | ||
public Map<PstRangeAction, Integer> getOptimizedTapsOnState(State state) { | ||
return raoResult.getOptimizedTapsOnState(state); | ||
} | ||
|
||
@Override | ||
public Map<RangeAction<?>, Double> getOptimizedSetPointsOnState(State state) { | ||
return raoResult.getOptimizedSetPointsOnState(state); | ||
} | ||
|
||
@Override | ||
public void setOptimizationStepsExecuted(OptimizationStepsExecuted optimizationStepsExecuted) { | ||
raoResult.setOptimizationStepsExecuted(optimizationStepsExecuted); | ||
} | ||
|
||
@Override | ||
public OptimizationStepsExecuted getOptimizationStepsExecuted() { | ||
return raoResult.getOptimizationStepsExecuted(); | ||
} | ||
} |
Oops, something went wrong.