Technical Elements Documentation
    Preparing search index...

    Interface ReleaseCategoryToConsequenceAnalysis

    Represents the analysis linking release categories to radiological consequences.

    RCRE-A1

    const releaseCategoryAnalysis = {
    siteInformation: {
    isBounding: false,
    siteReference: "SITE-001"
    },
    meteorologicalDataAssumptionsForBoundingSite: [],
    releaseCategoryInputs: [
    {
    releaseCategory: "RCAT-001",
    releaseCharacteristics: { ... }
    }
    ],
    releaseCategoryAndSourceTermReviewed: true,
    selectedConsequenceMeasures: ["Individual Early Fatality Risk", "Population Latent Cancer Risk"],
    releaseCategoryLinkageDocumentation: "See Event Sequence Analysis documentation for details."
    };
    interface ReleaseCategoryToConsequenceAnalysis {
        meteorologicalDataAssumptionsForBoundingSite?: string[];
        releaseCategoryAndSourceTermReviewed: boolean;
        releaseCategoryInputs: ReleaseCategoryInputs[];
        releaseCategoryLinkageDocumentation?: string;
        riskIntegrationFeedback?: {
            analysisId: string;
            feedbackDate?: string;
            generalFeedback?: string;
            releaseCategoryFeedback?: {
                insights?: string[];
                recommendations?: string[];
                releaseCategory: ReleaseCategoryReference;
                riskSignificance?: ImportanceLevel;
            }[];
            response?: {
                changes?: string[];
                description: string;
                status: "IN_PROGRESS"
                | "PENDING"
                | "COMPLETED";
            };
        };
        riskMetricMapping?: {
            releaseCategory: ReleaseCategoryReference;
            riskMetrics: {
                contributionDescription: string;
                riskMetric: string;
                significance?: ImportanceLevel;
            }[];
        }[];
        riskSignificanceCriteria?: {
            criteriaType: string;
            description: string;
            thresholds?: { level: ImportanceLevel; units?: string; value: number }[];
        }[];
        selectedConsequenceMeasures: string[];
        siteInformation: | { isBounding: false; siteReference: SiteReference }
        | { boundingSite: BoundingSite; isBounding: true };
    }
    Index

    Properties

    meteorologicalDataAssumptionsForBoundingSite?: string[]

    Assumptions made due to the lack of site details related to meteorological data for bounding site PRAs. Required by RCME-A11 (within the scope of RCRE).

    ["Assumption: Generic flat terrain meteorological data is conservative."]
    
    releaseCategoryAndSourceTermReviewed: boolean

    Indicates that the release category definitions (ES-C1) and mechanistic source term parameters (HLR-MS-A) were reviewed for the identification of inputs.

    true
    

    RCRE-A3

    releaseCategoryInputs: ReleaseCategoryInputs[]

    Inputs required for the off-site Radiological Consequence Analysis methodology for each release category. Includes characteristics like number of plumes, radionuclide release quantities, isotopes, timing, energy, height, particle size, and uncertainties. Derived from RCRE-A2 and informed by ES-C1 and HLR-MS-A (RCRE-A3).

    RCRE-A2

    releaseCategoryLinkageDocumentation?: string

    Documents the linkage between modeled plant operating states, initiating events, and event sequences leading to defined release categories.

    "Refer to the Event Sequence Analysis documentation for the mapping of event sequences to release categories."
    

    RCRE-C1

    riskIntegrationFeedback?: {
        analysisId: string;
        feedbackDate?: string;
        generalFeedback?: string;
        releaseCategoryFeedback?: {
            insights?: string[];
            recommendations?: string[];
            releaseCategory: ReleaseCategoryReference;
            riskSignificance?: ImportanceLevel;
        }[];
        response?: {
            changes?: string[];
            description: string;
            status: "IN_PROGRESS"
            | "PENDING"
            | "COMPLETED";
        };
    }

    Feedback from risk integration related to release categories. This field contains feedback from risk integration that should be considered in future revisions of the radiological consequence analysis.

    Type declaration

    • analysisId: string

      ID of the risk integration analysis that provided the feedback

    • OptionalfeedbackDate?: string

      Date the feedback was received

    • OptionalgeneralFeedback?: string

      General feedback on the release category analysis

    • OptionalreleaseCategoryFeedback?: {
          insights?: string[];
          recommendations?: string[];
          releaseCategory: ReleaseCategoryReference;
          riskSignificance?: ImportanceLevel;
      }[]

      Feedback on specific release categories

    • Optionalresponse?: {
          changes?: string[];
          description: string;
          status: "IN_PROGRESS" | "PENDING" | "COMPLETED";
      }

      Response to the feedback

      • Optionalchanges?: string[]

        Changes made or planned in response to the feedback

      • description: string

        Description of how the feedback was or will be addressed

      • status: "IN_PROGRESS" | "PENDING" | "COMPLETED"

        Status of the response

    riskMetricMapping?: {
        releaseCategory: ReleaseCategoryReference;
        riskMetrics: {
            contributionDescription: string;
            riskMetric: string;
            significance?: ImportanceLevel;
        }[];
    }[]

    Mapping between release categories and risk metrics used in risk integration. This provides a direct link between radiological consequence analysis and risk integration.

    Type declaration

    • releaseCategory: ReleaseCategoryReference

      Reference to the release category

    • riskMetrics: {
          contributionDescription: string;
          riskMetric: string;
          significance?: ImportanceLevel;
      }[]

      Corresponding risk metrics in risk integration

    riskSignificanceCriteria?: {
        criteriaType: string;
        description: string;
        thresholds?: { level: ImportanceLevel; units?: string; value: number }[];
    }[]

    Risk significance criteria used to evaluate release categories. This provides information on how release categories are evaluated in terms of risk significance.

    Type declaration

    • criteriaType: string

      Type of risk significance criteria

    • description: string

      Description of the criteria

    • Optionalthresholds?: { level: ImportanceLevel; units?: string; value: number }[]

      Threshold values for different significance levels

    selectedConsequenceMeasures: string[]

    Consequence measure(s) selected for the intended application of the PRA as per RI-A1.

    ["Individual Early Fatality Risk", "Population Latent Cancer Risk"]
    

    RCRE-B1

    siteInformation:
        | { isBounding: false; siteReference: SiteReference }
        | { boundingSite: BoundingSite; isBounding: true }

    Identification of the specific site or description of the bounding site used. Required by RCRE-A1.

    RCRE-A1