com.powsybl.openrao.data.cracimpl.InjectionRangeActionAdderImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of open-rao-crac-impl Show documentation
Show all versions of open-rao-crac-impl Show documentation
Object model for CRAC implementation
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.data.cracimpl;
import com.powsybl.openrao.commons.OpenRaoException;
import com.powsybl.openrao.data.cracapi.NetworkElement;
import com.powsybl.openrao.data.cracapi.rangeaction.*;
import java.util.*;
import static com.powsybl.openrao.commons.logs.OpenRaoLoggerProvider.BUSINESS_WARNS;
import static com.powsybl.openrao.data.cracimpl.AdderUtils.assertAttributeNotEmpty;
import static com.powsybl.openrao.data.cracimpl.AdderUtils.assertAttributeNotNull;
/**
* @author Baptiste Seguinot {@literal }
*/
public class InjectionRangeActionAdderImpl extends AbstractStandardRangeActionAdder implements InjectionRangeActionAdder {
public static final String INJECTION_RANGE_ACTION = "InjectionRangeAction";
private final List distributionKeys;
@Override
protected String getTypeDescription() {
return INJECTION_RANGE_ACTION;
}
InjectionRangeActionAdderImpl(CracImpl owner) {
super(owner);
distributionKeys = new ArrayList<>();
}
@Override
public InjectionRangeActionAdder withNetworkElementAndKey(double key, String networkElementId) {
return withNetworkElementAndKey(key, networkElementId, networkElementId);
}
@Override
public InjectionRangeActionAdder withNetworkElementAndKey(double key, String networkElementId, String networkElementName) {
distributionKeys.add(new DistributionKeyOnNetworkElement(key, networkElementId, networkElementName));
return this;
}
@Override
public InjectionRangeAction add() {
checkId();
checkAutoUsageRules();
if (!Objects.isNull(getCrac().getRemedialAction(id))) {
throw new OpenRaoException(String.format("A remedial action with id %s already exists", id));
}
// check network elements
checkNetworkElements();
assertAttributeNotEmpty(distributionKeys, INJECTION_RANGE_ACTION, "injection distribution key", "withNetworkElementAndKey()");
// check ranges
assertAttributeNotEmpty(ranges, INJECTION_RANGE_ACTION, "range", "newRange()");
// check usage rules
if (usageRules.isEmpty()) {
BUSINESS_WARNS.warn("InjectionRangeAction {} does not contain any usage rule, by default it will never be available", id);
}
Map neAndDk = addNetworkElements();
InjectionRangeAction injectionRangeAction = new InjectionRangeActionImpl(this.id, this.name, this.operator, this.groupId, this.usageRules, this.ranges, this.initialSetpoint, neAndDk, speed);
this.getCrac().addInjectionRangeAction(injectionRangeAction);
return injectionRangeAction;
}
private void checkNetworkElements() {
distributionKeys.forEach(dK -> assertAttributeNotNull(dK.networkElementId, INJECTION_RANGE_ACTION, "network element", "withNetworkElementAndKey()"));
}
private Map addNetworkElements() {
Map distributionKeyMap = new HashMap<>();
distributionKeys.forEach(sK -> {
if (Math.abs(sK.distributionKey) > 1e-3) {
NetworkElement networkElement = this.getCrac().addNetworkElement(sK.networkElementId, sK.networkElementName);
distributionKeyMap.merge(networkElement, sK.distributionKey, Double::sum);
}
});
return distributionKeyMap;
}
private static class DistributionKeyOnNetworkElement {
String networkElementId;
String networkElementName;
double distributionKey;
DistributionKeyOnNetworkElement(double distributionKey, String networkElementId, String networkElementName) {
this.networkElementId = networkElementId;
this.networkElementName = networkElementName;
this.distributionKey = distributionKey;
}
}
}