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

    Type Alias NuclideDecayChainLink

    Represents a single link within a nuclear decay chain.

    type NuclideDecayChainLink = {
        mode: DecayMode;
        nuclide: NuclideId;
        probability: number | null;
    }
    Index

    Properties

    mode: DecayMode

    The specific mode of transition.

    nuclide: NuclideId

    Target nuclide in the decay sequence.

    probability: number | null

    Mathematical probability of the specific decay branch.