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

    Parameters defining the geometry and size of a crystal's unit cell.

    type UnitCell = {
        a?: NumberValue<"length">;
        alpha?: NumberValue<"angle">;
        b?: NumberValue<"length">;
        beta?: NumberValue<"angle">;
        c?: NumberValue<"length">;
        gamma?: NumberValue<"angle">;
        Z?: number;
    }
    Index

    Properties

    Properties

    a?: NumberValue<"length">

    Lattice parameter representing the length of the 'a' axis.

    alpha?: NumberValue<"angle">

    Interaxial angle between the 'b' and 'c' axes.

    b?: NumberValue<"length">

    Lattice parameter representing the length of the 'b' axis.

    beta?: NumberValue<"angle">

    Interaxial angle between the 'a' and 'c' axes.

    c?: NumberValue<"length">

    Lattice parameter representing the length of the 'c' axis.

    gamma?: NumberValue<"angle">

    Interaxial angle between the 'a' and 'b' axes.

    Z?: number

    The number of formula units contained within the volume of the unit cell.