Raw Material Usage
By tracking and rewarding minimal raw material usage per order, 3DOS actively promotes sustainable practices within the platform. Manufacturers who minimize waste receive bonus rewards.
Formula
raw_material_reward = min(
# Total reward capped at 2% of order value
order_value * 0.02,
# Base reward based on material cost and sustainability
(raw_material_cost * material_consumed / order_value) * (
# Sustainability bonus (if applicable)
1 + 0.005 * I(sustainable_material)
)
)Explanation
Key considerations
Example
Calculations
Output
Last updated