Technical Elements Documentation
    Preparing search index...

    Master Logic Diagram method for identifying initiating events

    IE-A9

    const mld: MasterLogicDiagram = {
    method_id: "MLD-001",
    version: "1.0",
    sources: new Set(["NUREG-1829", "Plant_FSAR"]),
    operating_states: new Set([OperatingState.POWER]),
    // ... other properties
    };
    interface MasterLogicDiagram {
        analyst: string;
        failure_modes: Record<
            string,
            {
                component_id: string;
                description: string;
                failureMode: string;
                id: string;
                name: string;
            },
        >;
        initiators: Record<string, InitiatorDefinition>;
        method_id: string;
        operating_states: Set<OperatingState>;
        radionuclide_barriers: Record<string, RadionuclideBarrier>;
        review_date: string;
        review_status: "DRAFT" | "APPROVED" | "REVIEWED";
        safety_functions: Record<string, SafetyFunction>;
        sources: Set<string>;
        supporting_documents: string[];
        systems_components: Record<string, SystemDefinition>;
        version: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    analyst: string

    Analyst who performed the method

    failure_modes: Record<
        string,
        {
            component_id: string;
            description: string;
            failureMode: string;
            id: string;
            name: string;
        },
    >

    Failure modes

    initiators: Record<string, InitiatorDefinition>

    Identified initiators

    method_id: string

    Unique identifier for the method

    operating_states: Set<OperatingState>

    Operating states considered

    radionuclide_barriers: Record<string, RadionuclideBarrier>

    Radionuclide barriers

    review_date: string

    Review date

    review_status: "DRAFT" | "APPROVED" | "REVIEWED"

    Review status

    safety_functions: Record<string, SafetyFunction>

    Safety functions

    sources: Set<string>

    Data sources used

    supporting_documents: string[]

    Supporting document references

    systems_components: Record<string, SystemDefinition>

    Systems and components

    version: string

    Version of the method