cheminfo-types
    Preparing search index...

    Interface TGAZone

    A zone representing a mass-loss step in a TGA experiment. Zones are typically extracted from instrument software output (e.g., Mettler Toledo "Results" section).

    interface TGAZone {
        from?: Value;
        inflectionPoint?: Value;
        kind: string;
        massLoss: Value;
        middlePoint?: Value;
        relativeMassLoss: number;
        to?: Value;
    }
    Index

    Properties

    from?: Value

    Start of the temperature range for this zone.

    inflectionPoint?: Value

    Temperature at the inflection point of the mass-loss curve.

    kind: string

    Type of the zone (e.g., "horizontal", "Residual").

    massLoss: Value

    Absolute mass loss with units.

    middlePoint?: Value

    Temperature at the midpoint of the mass-loss step.

    relativeMassLoss: number

    Relative mass loss as a fraction (0 to 1).

    to?: Value

    End of the temperature range for this zone.