Technical Elements Documentation
    Preparing search index...

    Interface RiskIntegrationMethod

    Interface for documenting the methods and codes used for Risk Integration.

    RI-B7

    {
    uuid: "123e4567-e89b-12d3-a456-426614174006",
    name: "MinMaxCut Importance Analysis",
    version: "2.3.1",
    description: "Method for calculating importance measures for minimal cut sets",
    applicability: "Suitable for Boolean logic models with well-defined minimal cut sets",
    limitations: [
    "Assumes independence between basic events",
    "May not be suitable for highly non-linear models"
    ],
    justification: "Industry standard approach with well-documented validation history"
    }
    interface RiskIntegrationMethod {
        applicability?: string;
        description?: string;
        justification: string;
        limitations?: string[];
        sqaReference?: string;
        verificationStatus?: {
            verificationDate?: string;
            verificationMethod?: string;
            verified: boolean;
            verifier?: string;
        };
        version?: string;
    }

    Hierarchy

    • Unique
    • Named
      • RiskIntegrationMethod
    Index

    Properties

    applicability?: string

    Scope of applicability

    description?: string

    Description of the method or code [153, RI-B7].

    justification: string

    Justification for the application of the method or code, considering its limitations and the PRA scope [153, RI-B7].

    limitations?: string[]

    Limitations of the method or code [153, RI-B7].

    sqaReference?: string

    Reference to software quality assurance documentation, if applicable

    verificationStatus?: {
        verificationDate?: string;
        verificationMethod?: string;
        verified: boolean;
        verifier?: string;
    }

    Verification and validation status

    version?: string

    Version of the method or code.