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

    Type Alias PaulingNotation

    Visualization of electron spins using the Pauling box model.

    type PaulingNotation = {
        baseElement?: ElementSymbol;
        shells: {
            [K in ShellModel]?: {
                d: [Box, Box, Box, Box, Box];
                f: [Box, Box, Box, Box, Box, Box, Box];
                p: [Box, Box, Box];
                s: [Box];
            }
        };
    }
    Index

    Properties

    Properties

    baseElement?: ElementSymbol

    Optional noble gas core used for abbreviated notation.

    shells: {
        [K in ShellModel]?: {
            d: [Box, Box, Box, Box, Box];
            f: [Box, Box, Box, Box, Box, Box, Box];
            p: [Box, Box, Box];
            s: [Box];
        }
    }

    Mapping of shells to their subshell spin states.