com.powsybl.openrao.data.crac.io.cim.parameters.RangeActionSpeed Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of open-rao-crac-io-cim Show documentation
Show all versions of open-rao-crac-io-cim Show documentation
CRAC creator implementation for CRAC specific to SWE zone format
/*
* Copyright (c) 2022, 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.crac.io.cim.parameters;
/**
* A class that maps rangeActionId to speed
*
* @author Godelaine de Montmorillon {@literal }
*/
public class RangeActionSpeed {
private final String rangeActionId;
private final Integer speed;
public RangeActionSpeed(String rangeActionId, Integer speed) {
this.rangeActionId = rangeActionId;
this.speed = speed;
}
public String getRangeActionId() {
return rangeActionId;
}
public Integer getSpeed() {
return speed;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy