Technical Elements Documentation
    Preparing search index...

    Interface representing plant operating state analysis.

    This is the main container interface that brings together all aspects of the Plant Operating States Analysis. It implements multiple High-Level Requirements (HLRs) and their Supporting Requirements (SRs).

    POS-A1, POS-A2, POS-A7, POS-A11, POS-A12, POS-A13, POS-B1, POS-B4, POS-B5, POS-B6, POS-B7, POS-B8, POS-D1, POS-D2, POS-D3

    const posAnalysis: PlantOperatingStatesAnalysis = {
    "technical-element-type": TechnicalElementTypes.PLANT_OPERATING_STATES_ANALYSIS,
    "technical-element-code": "POS",
    // ... other properties
    };
    interface PlantOperatingStatesAnalysis {
        additionalMetadata?: { assumptions?: string[]; limitations?: string[] };
        assumptionsLackOfDetail?: AssumptionsLackOfDetail[];
        commonAssumptions?: BaseAssumption[];
        created: string;
        description?: string;
        documentation?: PlantOperatingStatesDocumentation;
        hazardousSources: HazardousSources;
        includesAtPowerOperations: boolean;
        modelUncertainty?: ModelUncertaintyInfo[];
        modified: string;
        owner?: string;
        plantEvolutions: PlantEvolution[];
        plantOperatingStatesGroups?: PlantOperatingStatesGroup[];
        plantRepresentationAccuracy?: PlantRepresentationAccuracy & {
            highConfidenceAreas?: string[];
            improvementPlans?: string[];
            lowerConfidenceAreas?: string[];
        };
        posValidationRules: POSValidationRules;
        references?: {
            description: string;
            technicalElementId: string;
            technicalElementType: TechnicalElementTypes;
        }[];
        sscsAndOperationalCharacteristics?: string[];
        status?: "DRAFT"
        | "APPROVED"
        | "REVIEW"
        | "DEPRECATED";
        subsumedPOSs?: SubsumedPOS[];
        tags?: string[];
        timeVaryingConditions?: TimeVaryingCondition[];
        transitionEvents?: TransitionEvent[];
        type: PLANT_OPERATING_STATES_ANALYSIS;
        version: string;
    }

    Hierarchy

    • TechnicalElement<TechnicalElementTypes.PLANT_OPERATING_STATES_ANALYSIS>
      • PlantOperatingStatesAnalysis
    Index

    Properties

    additionalMetadata?: { assumptions?: string[]; limitations?: string[] }

    Additional metadata specific to Plant Operating States Analysis

    Type declaration

    • Optionalassumptions?: string[]

      Plant operating states specific assumptions

    • Optionallimitations?: string[]

      Plant operating states specific limitations

    assumptionsLackOfDetail?: AssumptionsLackOfDetail[]

    List of assumptions due to lack of as-built details

    POS-A13, POS-B8

    commonAssumptions?: BaseAssumption[]

    Common assumptions that apply across this technical element Using the standardized BaseAssumption interface

    created: string

    The date the technical element was created

    description?: string

    The description of the technical element

    Documentation of the analysis

    POS-D1, POS-D2, POS-D3

    hazardousSources: HazardousSources

    Hazardous sources information

    POS-A7

    includesAtPowerOperations: boolean

    Flag indicating whether at-power operations are included in the analysis Per regulatory guidance, at-power operations must be included at a minimum

    modelUncertainty?: ModelUncertaintyInfo[]

    Sources of model uncertainty related to POS definitions

    POS-A12

    modified: string

    The date the technical element was last modified

    owner?: string

    The owner of the technical element

    plantEvolutions: PlantEvolution[]

    List of plant evolutions to be analyzed Must include, at a minimum, plant evolutions from at-power operations

    POS-A1

    plantOperatingStatesGroups?: PlantOperatingStatesGroup[]

    Plant operating state groups for analysis simplification

    POS-B4

    plantRepresentationAccuracy?: PlantRepresentationAccuracy & {
        highConfidenceAreas?: string[];
        improvementPlans?: string[];
        lowerConfidenceAreas?: string[];
    }

    Plant representation accuracy assessment Documents how closely the PRA represents the as-built and as-operated plant

    Type declaration

    • OptionalhighConfidenceAreas?: string[]

      Areas with high confidence

    • OptionalimprovementPlans?: string[]

      Plans for improvement

    • OptionallowerConfidenceAreas?: string[]

      Areas with lower confidence

    posValidationRules: POSValidationRules

    Validation rules to ensure POSs are mutually exclusive and collectively exhaustive

    POS-B1, POS-B7

    references?: {
        description: string;
        technicalElementId: string;
        technicalElementType: TechnicalElementTypes;
    }[]

    References to other technical elements

    sscsAndOperationalCharacteristics?: string[]

    SSCs and operational characteristics needed for safety

    POS-A11

    status?: "DRAFT" | "APPROVED" | "REVIEW" | "DEPRECATED"

    The status of the technical element

    subsumedPOSs?: SubsumedPOS[]

    Documentation of subsumed POSs

    POS-B5, POS-B6

    tags?: string[]

    Tags associated with the technical element

    timeVaryingConditions?: TimeVaryingCondition[]

    Time-varying conditions across multiple POSs Captures changes in conditions over time that span multiple operating states

    transitionEvents?: TransitionEvent[]

    Transition events between plant operating states Documents the transitions and associated risks

    type: PLANT_OPERATING_STATES_ANALYSIS

    The type of technical element

    version: string

    The version of the technical element