Skip to content

RoughnessEvaluationLength

Bases: BaseModel

For sophisticated application, the sample needs to be taken over a longer distances. This is specified the either the sampling length in millimeter (ISO 3012:1974, ISO 3012:1978, ISO 3012:1992) or as multiple of the main lambda (ISO 3012:2002 and ISO 3012:2021).

PARAMETER DESCRIPTION
length

TYPE: Size | None

lambda_c_multiple

TYPE: Decimal | None

Source code in werk24/models/v2/models.py
class RoughnessEvaluationLength(BaseModel):
    """For sophisticated application, the sample needs
    to be taken over a longer distances. This is specified the
    either the sampling length in millimeter (ISO 3012:1974,
    ISO 3012:1978, ISO 3012:1992) or as multiple of the main lambda
    (ISO 3012:2002 and ISO 3012:2021).
    """

    length: Optional[Size]
    lambda_c_multiple: Optional[Decimal]