com.powsybl.openrao.data.cracimpl.CounterTradeRangeActionAdderImpl 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) 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.powsybl.openrao.data.cracimpl;
import com.powsybl.openrao.commons.OpenRaoException;
import com.powsybl.openrao.data.cracapi.rangeaction.CounterTradeRangeAction;
import com.powsybl.openrao.data.cracapi.rangeaction.CounterTradeRangeActionAdder;
import com.powsybl.iidm.network.Country;
import java.util.Objects;
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 Gabriel Plante {@literal }
*/
class CounterTradeRangeActionAdderImpl extends AbstractStandardRangeActionAdder implements CounterTradeRangeActionAdder {
public static final String COUNTER_TRADE_RANGE_ACTION = "CounterTradeRangeAction";
private Country exportingCountry;
private Country importingCountry;
@Override
protected String getTypeDescription() {
return COUNTER_TRADE_RANGE_ACTION;
}
CounterTradeRangeActionAdderImpl(CracImpl owner) {
super(owner);
}
@Override
public CounterTradeRangeActionAdder withExportingCountry(Country exportingCountry) {
this.exportingCountry = exportingCountry;
return this;
}
@Override
public CounterTradeRangeActionAdder withImportingCountry(Country importingCountry) {
this.importingCountry = importingCountry;
return this;
}
@Override
public CounterTradeRangeAction add() {
checkId();
checkAutoUsageRules();
if (!Objects.isNull(getCrac().getRemedialAction(id))) {
throw new OpenRaoException(String.format("A remedial action with id %s already exists", id));
}
// check exporting and importing country
assertAttributeNotNull(exportingCountry, COUNTER_TRADE_RANGE_ACTION, "exporting country", "withExportingCountry()");
assertAttributeNotNull(importingCountry, COUNTER_TRADE_RANGE_ACTION, "importing country", "withImportingCountry()");
// check ranges
assertAttributeNotEmpty(ranges, COUNTER_TRADE_RANGE_ACTION, "range", "newRange()");
// check usage rules
if (usageRules.isEmpty()) {
BUSINESS_WARNS.warn("CounterTradeRangeAction {} does not contain any usage rule, by default it will never be available", id);
}
CounterTradeRangeAction counterTradeRangeAction = new CounterTradeRangeActionImpl(this.id, this.name, this.operator, this.groupId, this.usageRules, this.ranges, this.initialSetpoint, speed, this.exportingCountry, this.importingCountry);
getCrac().addCounterTradeRangeAction(counterTradeRangeAction);
return counterTradeRangeAction;
}
}