Periodic Table Database Schema - v0.7.1
    Preparing search index...

    Type Alias NuclideDecayChainEntry<N>

    Comprehensive entry defining the position of a nuclide within global decay networks. These entries are automatically generated by analyzing radioactive transitions.

    type NuclideDecayChainEntry<N extends NuclideId> = {
        a: number;
        chainDepth: number;
        daughterChains: NuclideDecayChainLink[];
        element: ElementSymbol;
        halfLife: number | null;
        isTerminal: boolean;
        minStepsToStable: number;
        n: number;
        nuclide: N;
        parentChains: NuclideDecayChainLink[];
        stable: boolean;
        z: number;
    }

    Type Parameters

    Index

    Properties

    a: number

    Nucleon count.

    chainDepth: number

    Total number of steps from the initial primordial source.

    daughterChains: NuclideDecayChainLink[]

    Documented transitions to subsequent nuclides.

    element: ElementSymbol

    Parent chemical element.

    halfLife: number | null

    Half-life of the nuclide or null if stable.

    isTerminal: boolean

    Indicates if the nuclide is a terminal point in a decay chain.

    minStepsToStable: number

    Number of steps until reaching a terminal stable nuclide.

    n: number

    Neutron count.

    nuclide: N

    The specific nuclide identifier.

    parentChains: NuclideDecayChainLink[]

    Documented transitions from precursor nuclides.

    stable: boolean

    Indicates if the nuclide is stable.

    z: number

    Proton count.