Technical Elements Documentation
    Preparing search index...

    Interface representing hazard analysis that may induce initiating events

    IE-A6

    interface HazardAnalysis {
        affected_areas: string[];
        analysis_methods: string[];
        description: string;
        hazard_type: "INTERNAL" | "EXTERNAL";
        induced_initiating_events: string[];
        inducing_mechanisms: string[];
        potential_combinations: string[];
        radionuclide_barriers: Record<string, RadionuclideBarrier>;
        screening: { basis: string; status: ScreeningStatus };
        severity_levels: string[];
        subcategory: string;
    }

    Hierarchy

    • Unique
    • Named
      • HazardAnalysis
    Index

    Properties

    affected_areas: string[]

    Plant areas or locations affected

    analysis_methods: string[]

    Analysis methods used

    description: string

    Description of the hazard

    hazard_type: "INTERNAL" | "EXTERNAL"

    Type of hazard (internal or external)

    induced_initiating_events: string[]

    Initiating events that may be induced by this hazard

    inducing_mechanisms: string[]

    Potential inducing mechanisms for initiating events

    potential_combinations: string[]

    Other hazards that may combine with this one

    radionuclide_barriers: Record<string, RadionuclideBarrier>

    Radionuclide barriers considered in the analysis

    screening: { basis: string; status: ScreeningStatus }

    Screening status and basis

    severity_levels: string[]

    Hazard severity levels considered

    subcategory: string

    Hazard subcategory (e.g., "SEISMIC", "FLOOD", "FIRE")