Print Efforts
Recognizing the skill and expertise required for complex prints and tight deadlines, 3DOS factors in both print complexity and time when calculating rewards.
Formula
print_time_reward = min(
# Max reward capped at 1% of raw material cost
raw_material_cost * 0.01,
# Reward based on exceeding the threshold duration
raw_material_cost * I(print_time > threshold_duration) * (print_time - threshold_duration) / threshold_duration
)
Explanation
Key Consideration
Example
Calculations
Output
Last updated