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

    Structural model for the concentration of a substance in a solvent at equilibrium.

    type Solubility = {
        ksp?: NumberValue<NoUnit>;
        qualifier?: SolubilityQualifier;
        solvent:
            | { id: CompoundId; type: COMPOUND }
            | { id: MixtureId; type: MIXTURE }
            | string;
        value?: NumberValue<"concentration">;
    }
    Index

    Properties

    The solubility product constant for ionic compounds.

    Qualitative description of the degree of solubility.

    solvent:
        | { id: CompoundId; type: COMPOUND }
        | { id: MixtureId; type: MIXTURE }
        | string

    The substance in which the solute is dissolved.

    value?: NumberValue<"concentration">

    Quantitative concentration (e.g., mol/L) of the solute.