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

com.powsybl.openrao.data.crac.io.cim.parameters.CimCracCreationParameters 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;

import com.powsybl.openrao.commons.OpenRaoException;
import com.powsybl.openrao.data.crac.api.parameters.AbstractAlignedRaCracCreationParameters;

import java.util.*;

/**
 * @author Baptiste Seguinot {@literal }
 */
public class CimCracCreationParameters extends AbstractAlignedRaCracCreationParameters {
    private Set timeseriesMrids = new HashSet<>();
    private Set speedSet = new HashSet<>();
    private VoltageCnecsCreationParameters voltageCnecsCreationParameters = null;

    @Override
    public String getName() {
        return "CimCracCreatorParameters";
    }

    public Set getTimeseriesMrids() {
        return timeseriesMrids;
    }

    public void setTimeseriesMrids(Set timeseriesMrids) {
        this.timeseriesMrids = new HashSet<>(timeseriesMrids);
    }

    public void setRemedialActionSpeed(Set rangeActionSpeedSet) {
        this.speedSet = rangeActionSpeedSet;
        checkRangeActionSpeedSet();
    }

    public Set getRangeActionSpeedSet() {
        return new HashSet<>(speedSet);
    }

    public RangeActionSpeed getRangeActionSpeed(String remedialActionId) {
        for (RangeActionSpeed raSpeed : speedSet) {
            if (raSpeed.getRangeActionId().equals(remedialActionId)) {
                return raSpeed;
            }
        }
        return null;
    }

    public void checkRangeActionSpeedSet() {
        for (RangeActionSpeed raSpeed1 : speedSet) {
            for (RangeActionSpeed raSpeed2 : speedSet) {
                // Aligned RAs :
                if (areRasAligned(raSpeed1.getRangeActionId(), raSpeed2.getRangeActionId())) {
                    if (!raSpeed1.getSpeed().equals(raSpeed2.getSpeed())) {
                        throw new OpenRaoException(String.format("Range actions %s and %s are aligned but have different speeds (%s and %s)", raSpeed1.getRangeActionId(), raSpeed2.getRangeActionId(), raSpeed1.getSpeed().toString(), raSpeed2.getSpeed().toString()));
                    }
                } else if (raSpeed1.getSpeed().equals(raSpeed2.getSpeed()) && !raSpeed1.getRangeActionId().equals(raSpeed2.getRangeActionId())) {
                    throw new OpenRaoException(String.format("Range action %s has a speed %s already defined", raSpeed1.getRangeActionId(), raSpeed1.getSpeed().toString()));
                }
            }
        }
    }

    public VoltageCnecsCreationParameters getVoltageCnecsCreationParameters() {
        return voltageCnecsCreationParameters;
    }

    public void setVoltageCnecsCreationParameters(VoltageCnecsCreationParameters voltageCnecsCreationParameters) {
        this.voltageCnecsCreationParameters = voltageCnecsCreationParameters;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy