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

    Type Alias ElectronConfig

    Structural model for the arrangement of electrons in shells and subshells.

    type ElectronConfig = {
        baseElement?: ElementSymbol;
        terms: { shell: ShellModel; subshell: Subshell; value: number }[];
    }
    Index

    Properties

    Properties

    baseElement?: ElementSymbol

    Optional noble gas core used for abbreviated notation.

    terms: { shell: ShellModel; subshell: Subshell; value: number }[]

    List of specific electron placements in the quantum shell model.

    Type Declaration

    • shell: ShellModel

      The principal quantum shell (e.g., K, L, M).

    • subshell: Subshell

      The azimuthal quantum subshell (s, p, d, f).

    • value: number

      The number of electrons occupying this subshell.