Technical Elements Documentation
    Preparing search index...

    Represents the technical element for 4.3.17 Radiological Consequence Analysis (RC).

    This technical element addresses the analysis of off-site radiological consequences from postulated releases.

    const analysis: RadiologicalConsequenceAnalysis = {
    "technical-element-type": TechnicalElementTypes.CONSEQUENCE_ANALYSIS,
    "technical-element-code": "RC",
    metadata: {
    version: "1.0",
    analysis_date: "2024-03-15",
    analyst: "Jane Smith",
    scopeDefinition: {
    // ... scope details
    }
    },
    releaseCategoryToConsequence: { ... },
    atmosphericTransportAndDispersion: { ... },
    dosimetry: { ... },
    consequenceQuantification: { ... },
    protectiveActionParameters: { ... },
    meteorologicalData: { ... }
    };
    interface RadiologicalConsequenceAnalysis {
        atmosphericTransportAndDispersion: AtmosphericDispersionAnalysis;
        commonAssumptions?: BaseAssumption[];
        consequenceQuantification: ConsequenceQuantificationAnalysis;
        created: string;
        description?: string;
        documentation?: RadiologicalConsequenceDocumentation;
        dosimetry: DosimetryAnalysis;
        metadata: TechnicalElementMetadata & {
            additionalMetadata?: {
                assumptions?: string[];
                limitations?: string[];
                riskIntegrationReferences?: {
                    analysisId: string;
                    date?: string;
                    usageDescription: string;
                    version?: string;
                }[];
                traceability?: string;
            };
            scopeDefinition: RadiologicalConsequenceAnalysisScope;
        };
        meteorologicalData: MeteorologicalDataAnalysis;
        modified: string;
        owner?: string;
        protectiveActionParameters: ProtectiveActionAnalysis;
        references?: {
            description: string;
            technicalElementId: string;
            technicalElementType: TechnicalElementTypes;
        }[];
        releaseCategoryToConsequence: ReleaseCategoryToConsequenceAnalysis;
        riskIntegrationDescription?: {
            consequenceMetricUsage: string;
            feedbackIncorporation?: string;
            integrationChallenges?: string[];
            keyInsights?: string[];
            supportDescription: string;
            uncertaintyPropagation?: string;
        };
        riskIntegrationInfo?: {
            riskIntegrationFeedback?: {
                analysisId: string;
                feedbackDate?: string;
                generalFeedback?: string;
                metricFeedback?: {
                    insights?: string[];
                    metric: string;
                    recommendations?: string[];
                    riskSignificance?: ImportanceLevel;
                }[];
                response?: {
                    changes?: string[];
                    description: string;
                    status: "IN_PROGRESS"
                    | "PENDING"
                    | "COMPLETED";
                };
            };
            riskSignificantConsequences: {
                consequenceMetrics: Record<string, number>;
                mappedRiskMetrics?: { mappingDescription: string; metricName: string }[];
                releaseCategoryId: string;
                riskInsights?: string[];
                riskSignificance: "HIGH" | "MEDIUM" | "LOW" | "NONE";
                sourceTermDefinitionId?: string;
                uncertaintyDescription?: string;
            }[];
        };
        status?: "DRAFT"
        | "APPROVED"
        | "REVIEW"
        | "DEPRECATED";
        tags?: string[];
        type: CONSEQUENCE_ANALYSIS;
        version: string;
    }

    Hierarchy

    • TechnicalElement<TechnicalElementTypes.CONSEQUENCE_ANALYSIS>
      • RadiologicalConsequenceAnalysis
    Index

    Atmospheric Dispersion Analysis

    Consequence Quantification

    Documentation & Traceability

    Dosimetry Analysis

    Meteorological Data Analysis

    Properties

    Protective Action Analysis

    Release Category Analysis

    Atmospheric Dispersion Analysis

    atmosphericTransportAndDispersion: AtmosphericDispersionAnalysis

    4.3.17.4 Atmospheric Transport and Dispersion (RCAD)

    Consequence Quantification

    consequenceQuantification: ConsequenceQuantificationAnalysis

    4.3.17.8 Consequence Quantification (RCQ)

    Documentation & Traceability

    Documentation of the Radiological Consequence Analysis process

    Dosimetry Analysis

    4.3.17.5 Dosimetry (RCDO)

    Meteorological Data Analysis

    meteorologicalData: MeteorologicalDataAnalysis

    4.3.17.3 Meteorological Data (RCME)

    Properties

    commonAssumptions?: BaseAssumption[]

    Common assumptions that apply across this technical element Using the standardized BaseAssumption interface

    created: string

    The date the technical element was created

    description?: string

    The description of the technical element

    metadata: TechnicalElementMetadata & {
        additionalMetadata?: {
            assumptions?: string[];
            limitations?: string[];
            riskIntegrationReferences?: {
                analysisId: string;
                date?: string;
                usageDescription: string;
                version?: string;
            }[];
            traceability?: string;
        };
        scopeDefinition: RadiologicalConsequenceAnalysisScope;
    }

    Metadata for the Radiological Consequence Analysis.

    Type declaration

    • OptionaladditionalMetadata?: {
          assumptions?: string[];
          limitations?: string[];
          riskIntegrationReferences?: {
              analysisId: string;
              date?: string;
              usageDescription: string;
              version?: string;
          }[];
          traceability?: string;
      }

      Additional metadata specific to Radiological Consequence Analysis.

      • Optionalassumptions?: string[]

        Radiological consequence analysis specific assumptions

      • Optionallimitations?: string[]

        Radiological consequence analysis specific limitations

      • OptionalriskIntegrationReferences?: {
            analysisId: string;
            date?: string;
            usageDescription: string;
            version?: string;
        }[]

        References to risk integration results that use this analysis. This provides traceability between technical elements.

      • Optionaltraceability?: string

        Traceability information

    • scopeDefinition: RadiologicalConsequenceAnalysisScope

      Scope of the radiological consequence analysis.

    modified: string

    The date the technical element was last modified

    owner?: string

    The owner of the technical element

    references?: {
        description: string;
        technicalElementId: string;
        technicalElementType: TechnicalElementTypes;
    }[]

    References to other technical elements

    riskIntegrationDescription?: {
        consequenceMetricUsage: string;
        feedbackIncorporation?: string;
        integrationChallenges?: string[];
        keyInsights?: string[];
        supportDescription: string;
        uncertaintyPropagation?: string;
    }

    Documentation of the integration with risk integration. Describes how this analysis is used in risk integration and how feedback is incorporated.

    Type declaration

    • consequenceMetricUsage: string

      How consequence metrics are used in risk integration

    • OptionalfeedbackIncorporation?: string

      How feedback from risk integration is incorporated

    • OptionalintegrationChallenges?: string[]

      Challenges in integrating with risk integration

    • OptionalkeyInsights?: string[]

      Key insights about consequences derived from risk integration

    • supportDescription: string

      Description of how this analysis supports risk integration

    • OptionaluncertaintyPropagation?: string

      How uncertainties are propagated to risk integration

    riskIntegrationInfo?: {
        riskIntegrationFeedback?: {
            analysisId: string;
            feedbackDate?: string;
            generalFeedback?: string;
            metricFeedback?: {
                insights?: string[];
                metric: string;
                recommendations?: string[];
                riskSignificance?: ImportanceLevel;
            }[];
            response?: {
                changes?: string[];
                description: string;
                status: "IN_PROGRESS"
                | "PENDING"
                | "COMPLETED";
            };
        };
        riskSignificantConsequences: {
            consequenceMetrics: Record<string, number>;
            mappedRiskMetrics?: { mappingDescription: string; metricName: string }[];
            releaseCategoryId: string;
            riskInsights?: string[];
            riskSignificance: "HIGH" | "MEDIUM" | "LOW" | "NONE";
            sourceTermDefinitionId?: string;
            uncertaintyDescription?: string;
        }[];
    }

    Risk integration information. This field provides information specifically structured for consumption by risk integration.

    Type declaration

    • OptionalriskIntegrationFeedback?: {
          analysisId: string;
          feedbackDate?: string;
          generalFeedback?: string;
          metricFeedback?: {
              insights?: string[];
              metric: string;
              recommendations?: string[];
              riskSignificance?: ImportanceLevel;
          }[];
          response?: {
              changes?: string[];
              description: string;
              status: "IN_PROGRESS"
              | "PENDING"
              | "COMPLETED";
          };
      }

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

      • 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 consequence analysis

      • OptionalmetricFeedback?: {
            insights?: string[];
            metric: string;
            recommendations?: string[];
            riskSignificance?: ImportanceLevel;
        }[]

        Feedback on specific consequence metrics

      • 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

    • riskSignificantConsequences: {
          consequenceMetrics: Record<string, number>;
          mappedRiskMetrics?: { mappingDescription: string; metricName: string }[];
          releaseCategoryId: string;
          riskInsights?: string[];
          riskSignificance: "HIGH" | "MEDIUM" | "LOW" | "NONE";
          sourceTermDefinitionId?: string;
          uncertaintyDescription?: string;
      }[]

      Risk-significant consequences identified in this analysis. This provides a simplified view of risk-significant consequences for risk integration.

    This helps maintain a clean dependency structure where Risk Integration depends on Radiological Consequence Analysis rather than directly on multiple upstream elements.

    status?: "DRAFT" | "APPROVED" | "REVIEW" | "DEPRECATED"

    The status of the technical element

    tags?: string[]

    Tags associated with the technical element

    type: CONSEQUENCE_ANALYSIS

    The type of technical element

    version: string

    The version of the technical element

    Protective Action Analysis

    protectiveActionParameters: ProtectiveActionAnalysis

    4.3.17.2 Protective Action Parameters and Other Site Data Analysis (RCPA)

    Release Category Analysis

    releaseCategoryToConsequence: ReleaseCategoryToConsequenceAnalysis

    4.3.17.1 Release Category to Radiological Consequence (RCRE)