com.powsybl.openreac.parameters.input.VariableTwoWindingsTransformers Maven / Gradle / Ivy
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.openreac.parameters.input;
import com.powsybl.ampl.converter.AmplSubset;
import java.util.List;
/**
* @author Nicolas Pierre {@literal }
*
* List of transformers of which tap position can be modified by OpenReac.
*/
public class VariableTwoWindingsTransformers extends AbstractElementsInput {
public static final String PARAM_TRANSFORMER_FILE_NAME = "param_transformers.txt";
public VariableTwoWindingsTransformers(List elementIds) {
super(elementIds);
}
@Override
public String getFileName() {
return PARAM_TRANSFORMER_FILE_NAME;
}
@Override
AmplSubset getElementAmplSubset() {
return AmplSubset.BRANCH;
}
}