All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.powsybl.openrao.data.crac.io.cim.parameters.RangeActionSpeed Maven / Gradle / Ivy

There is a newer version: 6.2.1
Show newest version
/*
 * 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