Technical Elements Documentation
    Preparing search index...

    Represents characteristics of a radionuclide release for consequence analysis.

    RCRE-A2

    const releaseCharacteristics: ReleaseCharacteristics = {
    numberOfPlumes: 1,
    radionuclideGroupFractions: { NobleGases: 1.0, Iodines: 0.5 },
    importantRadionuclides: ["I-131", "Cs-137"],
    releaseTiming: "0 hour",
    releaseDuration: "2 hours",
    warningTime: "0.5 hours",
    releaseEnergy: "High",
    releaseHeight: "Ground"
    };
    interface ReleaseCharacteristics {
        hazardsImpactingProtectiveActions?: string;
        importantRadionuclides?: string[];
        importantRadionuclidesJustification?: string;
        numberOfPlumes?: number;
        radionuclideGroupFractions?: Record<string, number>;
        radionuclideQuantities?: Record<string, number[]>;
        releasedParticleSize?: number;
        releasedParticleSizeDescription?: string;
        releaseDuration?: string;
        releaseEnergy?: number;
        releaseEnergyDescription?: string;
        releaseHeight?: number;
        releaseHeightDescription?: string;
        releaseTiming?: string;
        releaseTimingAndDuration?: [number, number][];
        releaseUncertainties?: string;
        warningTime?: number;
        warningTimeDescription?: string;
    }
    Index

    Properties

    hazardsImpactingProtectiveActions?: string

    Hazards impacting protective actions.

    "Presence of smoke may hinder evacuation."
    
    importantRadionuclides?: string[]

    Radionuclide isotopes important to dose or health effects. Required by RCRE-A2(c).

    ["I-131", "Cs-137", "Sr-90"]
    
    importantRadionuclidesJustification?: string

    Brief justification for why these radionuclides are important to health effects.

    "I-131 is important for thyroid dose; Cs-137 for long-term exposure; Sr-90 for bone dose"
    
    numberOfPlumes?: number

    The number of plumes associated with the release.

    1
    
    radionuclideGroupFractions?: Record<string, number>

    Fractions of radionuclide groups released.

    { NobleGases: 1.0, Iodines: 0.5 }
    
    radionuclideQuantities?: Record<string, number[]>

    Quantity of each radionuclide released by species in each time phase of release (in Becquerels or Curies). This is a record where the key is the radionuclide (e.g., "Cs-137") and the value is an array of quantities for each time phase.

    { "Cs-137": [1e15, 5e14], "I-131": [2e14, 1e14] }
    
    releasedParticleSize?: number

    Released particle size in micrometers (e.g., activity median aerodynamic diameter - AMAD).

    1.0
    
    releasedParticleSizeDescription?: string

    Released particle size description.

    "Aerosol"
    
    releaseDuration?: string

    Release duration for each release phase in hours.

    "2 hours"
    
    releaseEnergy?: number

    Thermal energy of the release(s) in Joules.

    1e9
    
    releaseEnergyDescription?: string

    Thermal energy description.

    "High"
    
    releaseHeight?: number

    Release height in meters above ground level.

    30
    
    releaseHeightDescription?: string

    Release height description.

    "Ground"
    
    releaseTiming?: string

    Release timing (start time) for each release phase in hours.

    "0 hour"
    
    releaseTimingAndDuration?: [number, number][]

    Release timing and duration of each release phase in hours. Array representing start time and duration for each phase.

    [[2], [1, 5]] // Phase 1: starts at 0 hours, lasts 2 hours; Phase 2: starts at 5 hours, lasts 1 hour.
    
    releaseUncertainties?: string

    Uncertainties associated with the release characteristics.

    "Uncertainty in release fraction for volatile isotopes."
    
    warningTime?: number

    Warning time before the start of release or releases in hours.

    1
    
    warningTimeDescription?: string

    Warning time as a string description.

    "0.5 hours"