Skip to content

VolumeEstimate

VolumeEstimate provides an approximate volume for a part calculated from the extracted geometry. It records the numerical value, the unit, and the estimate type, which states how the figure was derived—currently an upper bound that ignores cavities. This information is useful for material usage planning, weight calculations, shipping cost projections, and pricing analysis. Because the estimate type is explicit, you can judge how conservative the figure is when sharing estimates with suppliers or customers and when validating results against ERP records or quotes. When combined with material data it can power carbon-footprint assessments.

Bases: Quantity

Represents a volume estimate for a part or feature.

PARAMETER DESCRIPTION
value

The value of the quantity.

TYPE: Decimal

unit

The unit of the quantity.

TYPE: str

volume_estimate_type

The type of volume estimate, such as gross or net volume.

TYPE: VolumeEstimateType

Source code in werk24/models/v2/models.py
class VolumeEstimate(Quantity):
    """
    Represents a volume estimate for a part or feature.
    """

    volume_estimate_type: VolumeEstimateType = Field(
        ...,
        description="The type of volume estimate, such as gross or net volume.",
    )