Technical Elements Documentation
    Preparing search index...

    Interface RadioactiveSource

    Characterization of a source of radioactive material.

    MS-B1

    const radioactiveSource: RadioactiveSource = {
    uuid: "rs-001",
    name: "Reactor Core",
    description: "The primary source of fission products.",
    radionuclides: ["I-131", "Cs-137", "Xe-133"],
    totalInventory: {
    "I-131": { quantity: 1.0e17, unit: "Bq" },
    "Cs-137": { quantity: 5.0e16, unit: "Bq" },
    "Xe-133": { quantity: 8.0e17, unit: "Bq" }
    },
    };
    interface RadioactiveSource {
        description: string;
        inventoryDataSource?: string;
        inventoryUncertainty?: {
            description: string;
            distributionType?: DistributionType;
            parameters?: Record<string, number>;
        };
        radionuclides: string[];
        radionuclideSelectionBasis?: string;
        totalInventory: Record<string, { quantity: number; unit: string }>;
    }

    Hierarchy

    • Unique
    • Named
      • RadioactiveSource
    Index

    Properties

    description: string

    Detailed description of the radioactive material source

    inventoryDataSource?: string

    Source of the inventory data

    inventoryUncertainty?: {
        description: string;
        distributionType?: DistributionType;
        parameters?: Record<string, number>;
    }

    Uncertainty in the inventory values

    radionuclides: string[]

    List of significant radionuclides in this source

    radionuclideSelectionBasis?: string

    Basis for the selection of included radionuclides

    totalInventory: Record<string, { quantity: number; unit: string }>

    Total inventory of radionuclides in this source