Technical Elements Documentation
    Preparing search index...

    Reusable interface for representing subsumed plant operating states. Used to document when one POS is subsumed into another for analysis simplification.

    This interface is critical for regulatory compliance as it provides structured documentation of POS grouping decisions. It directly supports HLR-POS-B requirements

    Key regulatory requirements addressed:

    • POS-B3
    • POS-B5
    • POS-B6
    • POS-D1

    Without this interface, it would be difficult to maintain a clear record of which plant operating states were combined, why they were combined, and what analysis was performed to ensure the combination doesn't impact risk insights.

    POS-B5, POS-B6

    interface SubsumedPOS {
        justification: string;
        limitations?: string[];
        riskImpact?: ImportanceLevel;
        sensitivityAnalysis?: SensitivityStudy;
        subsumedPOS: string;
        subsumingPOS: string;
        validationMethod?: string;
    }
    Index

    Properties

    justification: string

    Justification for why this subsumption is valid

    limitations?: string[]

    Limitations introduced by this subsumption

    riskImpact?: ImportanceLevel

    Risk impact assessment of this subsumption

    sensitivityAnalysis?: SensitivityStudy

    Sensitivity analysis for this subsumption Replaced simple string with standardized SensitivityStudy interface

    subsumedPOS: string

    ID or name of the POS being subsumed

    subsumingPOS: string

    ID or name of the POS that is subsuming the other

    validationMethod?: string

    Validation method used to confirm the subsumption is appropriate