Skip to content

RoughnessWaviness

Bases: BaseModel

Represents the waviness characteristics of a surface in terms of height and width.

PARAMETER DESCRIPTION
height

The height of the waviness, typically measured as the peak-to-valley distance.

TYPE: Size

width

The width of the waviness, representing the wavelength or distance between peaks.

TYPE: Size

Source code in werk24/models/v2/models.py
class RoughnessWaviness(BaseModel):
    """
    Represents the waviness characteristics of a surface in terms of height and width.
    """

    height: Size = Field(
        ...,
        description="The height of the waviness, typically measured as the peak-to-valley distance.",
    )
    width: Size = Field(
        ...,
        description="The width of the waviness, representing the wavelength or distance between peaks.",
    )