Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • aka (just) state
  • Defines the maximum allowed beam rates for a combination of fault states
    • Rate names are hard-coded in edu.stanford.slac.mps.jdbc.logic.Rate
  • Characterized by a state number
    • A negative state number has a predefined meaning (see method getMacroState() in the class edu.stanford.slac.mps.jdbc.logic.LogicDB in MPS Config)
    • A non-negative state number limits beam rates
  • The binary representation of the (non-negative) state number reflects the states of the corresponding faults; example for 2 faults: A (position=0) and B (position=1):

    State Number

    Binary Representation

    B

    A

    Beam Rates Rate Limits at 4 locations Locations

    0

    00

    F

    F

    0Hz 10Hz 0Hz 0Hz

    1

    01

    F

    T

    0Hz 10Hz 120Hz 120Hz

    2

    10

    T

    F

    120Hz 10Hz 0Hz 0Hz

    3

    11

    T

    T

    120Hz 10Hz 120Hz 120Hz

...