Interface TapChangerStep<S extends TapChangerStep>

All Known Subinterfaces:
PhaseTapChangerStep, RatioTapChangerStep

public interface TapChangerStep<S extends TapChangerStep>
Author:
Geoffroy Jamgotchian <geoffroy.jamgotchian at rte-france.com>
  • Method Summary

    Modifier and Type
    Method
    Description
    double
    Get the susceptance deviation in percent of nominal value.
    double
    Get the conductance deviation in percent of nominal value.
    double
    Get the resistance deviation in percent of nominal value.
    double
    Get the voltage ratio in per unit.
    double
    Get the reactance deviation in percent of nominal value.
    setB(double b)
    Set the susceptance deviation in percent of nominal value.
    setG(double g)
    Set the conductance deviation in percent of nominal value.
    setR(double r)
    Set the resistance deviation in percent of nominal value.
    setRho(double rho)
    Set the voltage ratio in per unit.
    setX(double x)
    Set the reactance deviation in percent of nominal value.
  • Method Details

    • getRho

      double getRho()
      Get the voltage ratio in per unit.
    • setRho

      S setRho(double rho)
      Set the voltage ratio in per unit.
    • getR

      double getR()
      Get the resistance deviation in percent of nominal value.
    • setR

      S setR(double r)
      Set the resistance deviation in percent of nominal value.
    • getX

      double getX()
      Get the reactance deviation in percent of nominal value.
    • setX

      S setX(double x)
      Set the reactance deviation in percent of nominal value.
    • getB

      double getB()
      Get the susceptance deviation in percent of nominal value.
    • setB

      S setB(double b)
      Set the susceptance deviation in percent of nominal value.
    • getG

      double getG()
      Get the conductance deviation in percent of nominal value.
    • setG

      S setG(double g)
      Set the conductance deviation in percent of nominal value.