com.farao_community.farao.data.crac_impl.HvdcRangeActionAdderImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of farao-crac-impl Show documentation
Show all versions of farao-crac-impl Show documentation
Object model for CRAC implementation
/*
* 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.farao_community.farao.data.crac_impl;
import com.farao_community.farao.commons.FaraoException;
import com.farao_community.farao.commons.logs.FaraoLoggerProvider;
import com.farao_community.farao.data.crac_api.NetworkElement;
import com.farao_community.farao.data.crac_api.range_action.HvdcRangeAction;
import com.farao_community.farao.data.crac_api.range_action.HvdcRangeActionAdder;
import java.util.ArrayList;
import java.util.Objects;
import static com.farao_community.farao.data.crac_impl.AdderUtils.assertAttributeNotEmpty;
import static com.farao_community.farao.data.crac_impl.AdderUtils.assertAttributeNotNull;
/**
* @author Godelaine de Montmorillon {@literal }
* @author Baptiste Seguinot {@literal }
*/
public class HvdcRangeActionAdderImpl extends AbstractStandardRangeActionAdder implements HvdcRangeActionAdder {
public static final String HVDC_RANGE_ACTION = "HvdcRangeAction";
private String networkElementId;
private String networkElementName;
@Override
protected String getTypeDescription() {
return HVDC_RANGE_ACTION;
}
HvdcRangeActionAdderImpl(CracImpl owner) {
super(owner);
this.ranges = new ArrayList<>();
}
@Override
public HvdcRangeActionAdder withNetworkElement(String networkElementId) {
return withNetworkElement(networkElementId, networkElementId);
}
@Override
public HvdcRangeActionAdder withNetworkElement(String networkElementId, String networkElementName) {
this.networkElementId = networkElementId;
this.networkElementName = networkElementName;
return this;
}
@Override
public HvdcRangeAction add() {
checkId();
checkAutoUsageRules();
assertAttributeNotNull(networkElementId, HVDC_RANGE_ACTION, "network element", "withNetworkElement()");
assertAttributeNotEmpty(ranges, HVDC_RANGE_ACTION, "range", "newRange()");
if (!Objects.isNull(getCrac().getRemedialAction(id))) {
throw new FaraoException(String.format("A remedial action with id %s already exists", id));
}
if (usageRules.isEmpty()) {
FaraoLoggerProvider.BUSINESS_WARNS.warn("HvdcRangeAction {} does not contain any usage rule, by default it will never be available", id);
}
NetworkElement networkElement = this.getCrac().addNetworkElement(networkElementId, networkElementName);
HvdcRangeActionImpl hvdcWithRange = new HvdcRangeActionImpl(this.id, this.name, this.operator, this.usageRules, ranges, initialSetpoint, networkElement, groupId, speed);
this.getCrac().addHvdcRangeAction(hvdcWithRange);
return hvdcWithRange;
}
}