Interface LccFilter


public interface LccFilter
Harmonic filter. q = b * v^2
Author:
Geoffroy Jamgotchian <geoffroy.jamgotchian at rte-france.com>, Mathieu Bague <mathieu.bague at rte-france.com>
  • Method Summary

    Modifier and Type
    Method
    Description
    double
    Get filter susceptance (Ω).
    boolean
    Check the filter is connected.
    setB(double b)
    Set filter susceptance (Ω).
    setConnected(boolean connected)
    Set the connection status of the filter.
  • Method Details

    • getB

      double getB()
      Get filter susceptance (Ω).
      Returns:
    • setB

      LccFilter setB(double b)
      Set filter susceptance (Ω).
      Parameters:
      b - filter susceptance;
      Returns:
      the filter itself to allow method chaining
    • isConnected

      boolean isConnected()
      Check the filter is connected.
      Returns:
      true if the filter is connected, false otherwise.
    • setConnected

      LccFilter setConnected(boolean connected)
      Set the connection status of the filter.
      Parameters:
      connected - the new connection status of the filter
      Returns:
      the filter itself to allow method chaining