Technical Elements Documentation
    Preparing search index...

    Describes a barrier preventing radionuclide release

    const containment: RadionuclideBarrier = {
    uuid: "CONT-01",
    name: "Primary Containment",
    state: BarrierStatus.INTACT,
    monitoringParameters: ["pressure", "temperature", "radiation"],
    breachCriteria: ["pressure > 60 psig", "temperature > 280°F"]
    };
    interface RadionuclideBarrier {
        breachCriteria?: string[];
        description?: string;
        monitoringParameters?: string[];
        state: BarrierStatus;
    }

    Hierarchy

    • Unique
    • Named
      • RadionuclideBarrier
    Index

    Properties

    breachCriteria?: string[]

    Criteria that would indicate a breach of this barrier

    description?: string

    Description of the barrier

    monitoringParameters?: string[]

    Parameters being monitored for this barrier

    Current status of the barrier