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

com.powsybl.openreac.parameters.output.network.AbstractNetworkOutput 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.output.network;

import com.powsybl.iidm.modification.NetworkModification;
import com.powsybl.iidm.network.Network;
import com.powsybl.openreac.parameters.output.AbstractNoThrowOutput;

import java.util.ArrayList;
import java.util.List;

/**
 * Abstract class that reads output from ampl and generates network modifications
 *
 * @param  The type of modification read in the output file
 * @author Nicolas Pierre {@literal }
 */
public abstract class AbstractNetworkOutput extends AbstractNoThrowOutput {

    protected final Network network;
    protected final List modifications = new ArrayList<>();

    protected AbstractNetworkOutput(Network network) {
        this.network = network;
    }

    public List getModifications() {
        return modifications;
    }

    @Override
    public boolean throwOnMissingFile() {
        triggerErrorState();
        return false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy