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

    Representation of a single chemical constituent within a substance.

    type Component = {
        charge?: number;
        element: ElementSymbol;
        quantity: number;
        type?: ComponentRole;
    }
    Index

    Properties

    charge?: number

    The formal oxidation state or ionic charge of the component.

    element: ElementSymbol

    The chemical symbol of the element (e.g., 'H', 'Fe').

    quantity: number

    The stoichiometric quantity or relative amount of the element.

    The functional role of the component within the structure (e.g., cation, ligand).