com.powsybl.openrao.searchtreerao.commons.objectivefunctionevaluator.MinMarginEvaluator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of open-rao-search-tree-rao Show documentation
Show all versions of open-rao-search-tree-rao Show documentation
Implementation of search tree remedial action optimisation with modular approach
The newest version!
/*
* Copyright (c) 2021, 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.powsybl.openrao.searchtreerao.commons.objectivefunctionevaluator;
import com.powsybl.openrao.commons.Unit;
import com.powsybl.openrao.data.crac.api.State;
import com.powsybl.openrao.data.crac.api.cnec.FlowCnec;
import com.powsybl.iidm.network.TwoSides;
import com.powsybl.openrao.searchtreerao.commons.FlowCnecSorting;
import com.powsybl.openrao.searchtreerao.commons.costevaluatorresult.CostEvaluatorResult;
import com.powsybl.openrao.searchtreerao.commons.costevaluatorresult.MaxCostEvaluatorResult;
import com.powsybl.openrao.searchtreerao.commons.marginevaluator.MarginEvaluator;
import com.powsybl.openrao.searchtreerao.result.api.FlowResult;
import com.powsybl.openrao.searchtreerao.result.api.RemedialActionActivationResult;
import java.util.*;
import java.util.stream.Collectors;
import static com.powsybl.openrao.searchtreerao.commons.objectivefunctionevaluator.CostEvaluatorUtils.groupFlowCnecsPerState;
/**
* @author Joris Mancini {@literal }
* @author Thomas Bouquet {@literal }
*/
public class MinMarginEvaluator implements CostEvaluator {
protected Set flowCnecs;
protected Unit unit;
protected MarginEvaluator marginEvaluator;
public MinMarginEvaluator(Set flowCnecs, Unit unit, MarginEvaluator marginEvaluator) {
this.flowCnecs = flowCnecs;
this.unit = unit;
this.marginEvaluator = marginEvaluator;
}
@Override
public String getName() {
return "min-margin-evaluator";
}
@Override
public CostEvaluatorResult evaluate(FlowResult flowResult, RemedialActionActivationResult remedialActionActivationResult) {
Map> flowCnecsPerState = groupFlowCnecsPerState(flowCnecs);
Map costPerState = flowCnecsPerState.entrySet().stream().collect(Collectors.toMap(Map.Entry::getKey, entry -> computeCostForState(flowResult, entry.getValue())));
return new MaxCostEvaluatorResult(costPerState, FlowCnecSorting.sortByMargin(flowCnecs, unit, marginEvaluator, flowResult));
}
private double getHighestThresholdAmongFlowCnecs() {
return flowCnecs.stream().map(this::getHighestThreshold).max(Double::compareTo).orElse(0.0);
}
private double getHighestThreshold(FlowCnec flowCnec) {
return Math.max(
Math.max(
flowCnec.getUpperBound(TwoSides.ONE, unit).orElse(0.0),
flowCnec.getUpperBound(TwoSides.TWO, unit).orElse(0.0)),
Math.max(
-flowCnec.getLowerBound(TwoSides.ONE, unit).orElse(0.0),
-flowCnec.getLowerBound(TwoSides.TWO, unit).orElse(0.0)));
}
protected double computeCostForState(FlowResult flowResult, Set flowCnecsOfState) {
List flowCnecsByMargin = FlowCnecSorting.sortByMargin(flowCnecsOfState, unit, marginEvaluator, flowResult);
FlowCnec limitingElement;
if (flowCnecsByMargin.isEmpty()) {
limitingElement = null;
} else {
limitingElement = flowCnecsByMargin.get(0);
}
if (limitingElement == null) {
// In case there is no limiting element (may happen in perimeters where only MNECs exist),
// return a finite value, so that the virtual cost is not hidden by the functional cost
// This finite value should only be equal to the highest possible margin, i.e. the highest cnec threshold
return -getHighestThresholdAmongFlowCnecs();
}
double margin = marginEvaluator.getMargin(flowResult, limitingElement, unit);
if (margin >= Double.MAX_VALUE / 2) {
// In case margin is infinite (may happen in perimeters where only unoptimized CNECs exist, none of which has seen its margin degraded),
// return a finite value, like MNEC case above
return -getHighestThresholdAmongFlowCnecs();
}
return -margin;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy