com.farao_community.farao.data.crac_impl.AbstractBranchCnec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of farao-crac-impl Show documentation
Show all versions of farao-crac-impl Show documentation
Object model for CRAC implementation
/*
* Copyright (c) 2020, 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.farao_community.farao.data.crac_impl;
import com.farao_community.farao.commons.Unit;
import com.farao_community.farao.data.crac_api.NetworkElement;
import com.farao_community.farao.data.crac_api.State;
import com.farao_community.farao.data.crac_api.cnec.BranchCnec;
import com.farao_community.farao.data.crac_api.cnec.Side;
import com.farao_community.farao.data.crac_api.threshold.BranchThreshold;
import java.util.Collections;
import java.util.Set;
/**
* Critical network element and contingency.
*
* @author Viktor Terrier {@literal }
*/
public abstract class AbstractBranchCnec> extends AbstractCnec implements BranchCnec {
protected Set thresholds;
protected final Double[] nominalVoltages = new Double[2];
protected BranchBoundsCache bounds = new BranchBoundsCache();
AbstractBranchCnec(String id,
String name,
NetworkElement networkElement,
String operator,
State state,
boolean optimized,
boolean monitored,
Set thresholds,
double frm,
Double nominalVLeft,
Double nominalVRight) {
super(id, name, Collections.singleton(networkElement), operator, state, optimized, monitored, frm);
this.thresholds = thresholds;
this.nominalVoltages[0] = nominalVLeft;
this.nominalVoltages[1] = nominalVRight;
}
@Override
public NetworkElement getNetworkElement() {
return getNetworkElements().iterator().next();
}
@Override
public double computeMargin(double actualValue, Side side, Unit unit) {
double marginOnLowerBound = actualValue - getLowerBound(side, unit).orElse(Double.NEGATIVE_INFINITY);
double marginOnUpperBound = getUpperBound(side, unit).orElse(Double.POSITIVE_INFINITY) - actualValue;
return Math.min(marginOnLowerBound, marginOnUpperBound);
}
@Override
public final Set getThresholds() {
return thresholds;
}
@Override
public Double getNominalVoltage(Side side) {
return nominalVoltages[side.equals(Side.LEFT) ? 0 : 1];
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AbstractBranchCnec cnec = (AbstractBranchCnec) o;
return super.equals(cnec) && thresholds.equals(cnec.thresholds);
}
@Override
public int hashCode() {
return super.hashCode();
}
}