Technical Elements Documentation
    Preparing search index...

    Interface EventSequenceDesignInformation

    Interface representing design information specific to event sequences. Used to document the design basis and technical information supporting event sequence development.

    const designInfo: EventSequenceDesignInformation = {
    sourceId: "DWG-123",
    sourceType: "drawing",
    revision: "A",
    date: "2025-01-15",
    description: "System layout drawing",
    requirementId: "ES-001",
    standardSection: "4.3.3",
    supportedAspects: {
    timing: true,
    systemDependencies: true,
    operatorActions: false,
    phenomenologicalImpacts: false,
    successCriteria: true
    },
    applicationInSequence: "Used to determine system layout and physical dependencies",
    assumptions: ["Drawing represents as-designed configuration"]
    };

    ES-D1

    interface EventSequenceDesignInformation {
        applicationInSequence: string;
        assumptions?: string[];
        date?: string;
        description?: string;
        requirementId?: string;
        revision?: string;
        sourceId: string;
        sourceType: string;
        standardSection?: string;
        supportedAspects: {
            operatorActions?: boolean;
            phenomenologicalImpacts?: boolean;
            successCriteria?: boolean;
            systemDependencies?: boolean;
            timing?: boolean;
        };
    }

    Hierarchy (View Summary)

    Index

    Properties

    applicationInSequence: string

    How this design information was used in developing the event sequence. Describes the specific application and relevance of the design information.

    assumptions?: string[]

    Any assumptions or limitations in applying this design information. Documents important considerations when using this design information.

    date?: string

    Date of the source document

    date

    description?: string

    Description of the design information

    requirementId?: string

    Requirement identifier for traceability

    revision?: string

    Document revision identifier

    sourceId: string

    Identifier for the design source document

    sourceType: string

    Type of source document (e.g., "drawing", "calculation", "specification")

    standardSection?: string

    Section number in relevant standard (e.g., NRC RG 1.247)

    supportedAspects: {
        operatorActions?: boolean;
        phenomenologicalImpacts?: boolean;
        successCriteria?: boolean;
        systemDependencies?: boolean;
        timing?: boolean;
    }

    Specific aspects of the event sequence supported by this design information. Indicates which parts of the event sequence this design information is used to support.

    Type declaration

    • OptionaloperatorActions?: boolean

      Whether this supports operator actions (e.g., access paths, control locations)

    • OptionalphenomenologicalImpacts?: boolean

      Whether this supports phenomenological impacts (e.g., environmental conditions, physical phenomena)

    • OptionalsuccessCriteria?: boolean

      Whether this supports success criteria (e.g., system capabilities, performance requirements)

    • OptionalsystemDependencies?: boolean

      Whether this supports system dependencies (e.g., physical connections, shared components)

    • Optionaltiming?: boolean

      Whether this supports sequence timing (e.g., system response times, mission times)