From 7916407951db8c1bc507ce0bacef0c9c7d2edd0e Mon Sep 17 00:00:00 2001
From: "p.kuiper"
Date: Thu, 2 Jun 2022 16:33:59 +0200
Subject: [PATCH] Implementation of various support structure improvements as
explained in ticket PP-108.
Relates to PP-108
---
resources/definitions/ultimaker.def.json | 40 ++++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/resources/definitions/ultimaker.def.json b/resources/definitions/ultimaker.def.json
index 2946a06c6d..d2dd1b559c 100644
--- a/resources/definitions/ultimaker.def.json
+++ b/resources/definitions/ultimaker.def.json
@@ -154,6 +154,46 @@
},
"bridge_fan_speed_3": {
"value": "cool_fan_speed_min"
+ },
+
+ "support_wall_count": {
+ "value": 0
+ },
+ "zig_zaggify_support": {
+ "value": true
+ },
+ "support_infill_rate": {
+ "value": 80
+ },
+ "support_offset": {
+ "value": "=2*line_width"
+ },
+ "support_xy_distance": {
+ "value": "=support_offset"
+ },
+ "support_join_distance": {
+ "value": 0
+ },
+ "gradual_support_infill_steps": {
+ "value": 2
+ },
+ "gradual_support_infill_step_height": {
+ "value": "=4*layer_height"
+ },
+ "minimum_support_area": {
+ "value": "=pow((0.15+support_offset), 2)"
+ },
+ "support_interface_height": {
+ "value": "=2*layer_height"
+ },
+ "support_interface_pattern": {
+ "value": "zigzag"
+ },
+ "minimum_interface_area": {
+ "value": "=minimum_support_area"
+ },
+ "support_interface_offset": {
+ "value": "=support_offset"
}
}
}