Switching on support gradual infill and support offset to 2*line width when support interface layer is enabled.

Relates to PP-108
This commit is contained in:
p.kuiper 2022-06-03 14:02:53 +02:00
parent 12ccb667b2
commit 6e7e0b5f77
4 changed files with 13 additions and 22 deletions

View File

@ -221,19 +221,22 @@
"value": true "value": true
}, },
"support_infill_rate": { "support_infill_rate": {
"value": "80 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 80" "value": "0 if support_enable and support_structure == 'tree' else (80 if support_interface_enable else 15)"
}, },
"support_offset": { "support_offset": {
"value": "2*line_width" "value": "2*line_width if support_interface_enable else 0"
}, },
"support_xy_distance": { "support_xy_distance": {
"value": "support_offset" "value": "support_offset"
}, },
"support_xy_distance_overhang": {
"value": "wall_line_width_0"
},
"support_join_distance": { "support_join_distance": {
"value": 0 "value": 0
}, },
"gradual_support_infill_steps": { "gradual_support_infill_steps": {
"value": 2 "value": "2 if support_interface_enable else 0"
}, },
"gradual_support_infill_step_height": { "gradual_support_infill_step_height": {
"value": "4*layer_height" "value": "4*layer_height"
@ -247,14 +250,17 @@
"support_interface_pattern": { "support_interface_pattern": {
"value": "'zigzag'" "value": "'zigzag'"
}, },
"support_interface_enable": { "minimum_interface_area": {
"value": true
},
"minimum_interface_area": {
"value": "minimum_support_area" "value": "minimum_support_area"
}, },
"support_interface_offset": { "support_interface_offset": {
"value": "support_offset" "value": "support_offset"
},
"support_use_towers": {
"value": false
},
"support_z_distance": {
"value": "0"
} }
} }
} }

View File

@ -139,11 +139,6 @@
"speed_wall_0": { "value": "math.ceil(speed_wall * 20 / 30)" }, "speed_wall_0": { "value": "math.ceil(speed_wall * 20 / 30)" },
"speed_wall_x": { "value": "speed_wall" }, "speed_wall_x": { "value": "speed_wall" },
"support_angle": { "value": "45" }, "support_angle": { "value": "45" },
"support_pattern": { "value": "'triangles'" },
"support_use_towers": { "value": "False" },
"support_xy_distance": { "value": "wall_line_width_0 * 2.5" },
"support_xy_distance_overhang": { "value": "wall_line_width_0" },
"support_z_distance": { "value": "0" },
"switch_extruder_prime_speed": { "value": "15" }, "switch_extruder_prime_speed": { "value": "15" },
"switch_extruder_retraction_amount": { "value": "8" }, "switch_extruder_retraction_amount": { "value": "8" },
"top_bottom_thickness": { "value": "1" }, "top_bottom_thickness": { "value": "1" },

View File

@ -131,11 +131,6 @@
"speed_wall_0": { "value": "math.ceil(speed_wall * 20 / 30)" }, "speed_wall_0": { "value": "math.ceil(speed_wall * 20 / 30)" },
"speed_wall_x": { "value": "speed_wall" }, "speed_wall_x": { "value": "speed_wall" },
"support_angle": { "value": "45" }, "support_angle": { "value": "45" },
"support_pattern": { "value": "'triangles'" },
"support_use_towers": { "value": "False" },
"support_xy_distance": { "value": "wall_line_width_0 * 2.5" },
"support_xy_distance_overhang": { "value": "wall_line_width_0" },
"support_z_distance": { "value": "0" },
"switch_extruder_prime_speed": { "value": "15" }, "switch_extruder_prime_speed": { "value": "15" },
"switch_extruder_retraction_amount": { "value": "8" }, "switch_extruder_retraction_amount": { "value": "8" },
"top_bottom_thickness": { "value": "1" }, "top_bottom_thickness": { "value": "1" },

View File

@ -133,11 +133,6 @@
"speed_wall_0": { "value": "math.ceil(speed_wall * 20 / 30)" }, "speed_wall_0": { "value": "math.ceil(speed_wall * 20 / 30)" },
"speed_wall_x": { "value": "speed_wall" }, "speed_wall_x": { "value": "speed_wall" },
"support_angle": { "value": "45" }, "support_angle": { "value": "45" },
"support_pattern": { "value": "'triangles'" },
"support_use_towers": { "value": "False" },
"support_xy_distance": { "value": "wall_line_width_0 * 2.5" },
"support_xy_distance_overhang": { "value": "wall_line_width_0" },
"support_z_distance": { "value": "0" },
"switch_extruder_prime_speed": { "value": "15" }, "switch_extruder_prime_speed": { "value": "15" },
"switch_extruder_retraction_amount": { "value": "8" }, "switch_extruder_retraction_amount": { "value": "8" },
"top_bottom_thickness": { "value": "1" }, "top_bottom_thickness": { "value": "1" },