Technical Elements Documentation
    Preparing search index...

    Reusable interface for representing time boundaries of plant operating states. Used to define when a POS begins and ends to ensure mutual exclusivity.

    POS-B1, POS-B2, POS-B3

    interface TimeBoundary {
        endingCondition: string;
        startingCondition: string;
        transitionParameters?: TransitionParameter[];
    }
    Index

    Properties

    endingCondition: string

    Ending condition or event that marks the end of this POS (e.g., "Criticality achieved", "Cold shutdown reached")

    startingCondition: string

    Starting condition or event that marks the beginning of this POS (e.g., "Reactor trip", "Begin control rod withdrawal")

    transitionParameters?: TransitionParameter[]

    Specific plant parameters that define this transition Uses the reusable TransitionParameter interface