mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 15:13:56 -06:00
Merge pull request #12488 from Ultimaker/PP-108_Improved_support_settings
PP-108 improved support settings
This commit is contained in:
commit
a82b90fd96
222 changed files with 167 additions and 538 deletions
|
@ -213,6 +213,51 @@
|
|||
},
|
||||
"jerk_skirt_brim": {
|
||||
"minimum_value_warning": 20
|
||||
},
|
||||
"support_wall_count": {
|
||||
"value": "1 if support_structure == 'tree' else 0"
|
||||
},
|
||||
"zig_zaggify_support": {
|
||||
"value": true
|
||||
},
|
||||
"support_infill_rate": {
|
||||
"value": "80 if gradual_support_infill_steps != 0 else 15"
|
||||
},
|
||||
"gradual_support_infill_steps": {
|
||||
"value": "2 if support_interface_enable else 0"
|
||||
},
|
||||
"gradual_support_infill_step_height": {
|
||||
"value": "4*layer_height"
|
||||
},
|
||||
"support_interface_height": {
|
||||
"value": "2*layer_height"
|
||||
},
|
||||
"support_offset": {
|
||||
"value": "2*line_width if support_interface_enable else 0"
|
||||
},
|
||||
"support_xy_distance": {
|
||||
"value": "1"
|
||||
},
|
||||
"support_xy_distance_overhang": {
|
||||
"value": "wall_line_width_0"
|
||||
},
|
||||
"minimum_support_area": {
|
||||
"value": "(2 + support_offset)**2"
|
||||
},
|
||||
"support_interface_skip_height": {
|
||||
"value": "layer_height"
|
||||
},
|
||||
"support_interface_pattern": {
|
||||
"value": "'concentric'"
|
||||
},
|
||||
"support_interface_offset": {
|
||||
"value": "support_offset"
|
||||
},
|
||||
"support_use_towers": {
|
||||
"value": false
|
||||
},
|
||||
"support_z_distance": {
|
||||
"value": "0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -86,6 +86,9 @@
|
|||
},
|
||||
"machine_acceleration": {
|
||||
"default_value": 3000
|
||||
},
|
||||
"support_z_distance": {
|
||||
"value": "0.1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -139,11 +139,6 @@
|
|||
"speed_wall_0": { "value": "math.ceil(speed_wall * 20 / 30)" },
|
||||
"speed_wall_x": { "value": "speed_wall" },
|
||||
"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_retraction_amount": { "value": "8" },
|
||||
"top_bottom_thickness": { "value": "1" },
|
||||
|
|
|
@ -131,11 +131,6 @@
|
|||
"speed_wall_0": { "value": "math.ceil(speed_wall * 20 / 30)" },
|
||||
"speed_wall_x": { "value": "speed_wall" },
|
||||
"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_retraction_amount": { "value": "8" },
|
||||
"top_bottom_thickness": { "value": "1" },
|
||||
|
|
|
@ -133,11 +133,6 @@
|
|||
"speed_wall_0": { "value": "math.ceil(speed_wall * 20 / 30)" },
|
||||
"speed_wall_x": { "value": "speed_wall" },
|
||||
"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_retraction_amount": { "value": "8" },
|
||||
"top_bottom_thickness": { "value": "1" },
|
||||
|
|
|
@ -34,7 +34,5 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 25)
|
|||
speed_wall_x = =speed_print
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20
|
||||
support_pattern = lines
|
||||
support_z_distance = 0.26
|
||||
top_bottom_thickness = 1.5
|
||||
|
|
|
@ -34,7 +34,5 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 35)
|
|||
speed_wall_x = =math.ceil(speed_print * 30 / 35)
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20
|
||||
support_pattern = lines
|
||||
support_z_distance = 0.26
|
||||
top_bottom_thickness = 1.5
|
||||
|
|
|
@ -37,9 +37,5 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 25)
|
|||
speed_wall_x = =speed_print
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20
|
||||
support_line_distance = 2.85
|
||||
support_pattern = lines
|
||||
support_xy_distance = 0.6
|
||||
support_z_distance = 0.22
|
||||
top_bottom_thickness = 0.75
|
||||
|
|
|
@ -37,9 +37,5 @@ speed_wall_0 = =math.ceil(speed_print * 30 / 35)
|
|||
speed_wall_x = =speed_print
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20
|
||||
support_line_distance = 2.85
|
||||
support_pattern = lines
|
||||
support_xy_distance = 0.6
|
||||
support_z_distance = 0.22
|
||||
top_bottom_thickness = 0.75
|
||||
|
|
|
@ -34,7 +34,5 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 25)
|
|||
speed_wall_x = =speed_print
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20
|
||||
support_pattern = lines
|
||||
support_z_distance = 0.26
|
||||
top_bottom_thickness = 1.2
|
||||
|
|
|
@ -34,7 +34,5 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 30)
|
|||
speed_wall_x = =speed_print
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20
|
||||
support_pattern = lines
|
||||
support_z_distance = 0.26
|
||||
top_bottom_thickness = 1.2
|
||||
|
|
|
@ -35,9 +35,6 @@ speed_travel = 150
|
|||
speed_wall_0 = =math.ceil(speed_print * 20 / 40)
|
||||
speed_wall_x = =speed_print
|
||||
support_enable = True
|
||||
support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20
|
||||
support_pattern = lines
|
||||
support_xy_distance = 0.6
|
||||
support_z_distance = =layer_height * 2
|
||||
top_bottom_thickness = 1.2
|
||||
speed_infill = =math.ceil(speed_print * 40 / 40)
|
||||
|
|
|
@ -35,8 +35,5 @@ speed_travel = 150
|
|||
speed_wall_0 = =math.ceil(speed_print * 20 / 40)
|
||||
speed_wall_x = =speed_print
|
||||
support_enable = True
|
||||
support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20
|
||||
support_pattern = lines
|
||||
support_xy_distance = 0.6
|
||||
support_z_distance = =layer_height * 2
|
||||
top_bottom_thickness = 1.2
|
||||
|
|
|
@ -34,9 +34,6 @@ speed_travel = 150
|
|||
speed_wall = =math.ceil(speed_print * 40 / 45)
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =25 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 25
|
||||
support_pattern = lines
|
||||
support_xy_distance = 0.6
|
||||
support_z_distance = =layer_height * 2
|
||||
top_bottom_thickness = 0.75
|
||||
speed_wall_0 = =math.ceil(speed_print * 30 / 45)
|
||||
|
|
|
@ -33,8 +33,5 @@ speed_travel = 150
|
|||
speed_wall = =math.ceil(speed_print * 40 / 45)
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =25 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 25
|
||||
support_pattern = lines
|
||||
support_xy_distance = 0.6
|
||||
support_z_distance = =layer_height * 2
|
||||
top_bottom_thickness = 0.75
|
||||
|
|
|
@ -36,12 +36,7 @@ speed_travel = 150
|
|||
speed_wall_0 = =math.ceil(speed_print * 15 / 55)
|
||||
speed_wall_x = =math.ceil(speed_print * 40 / 55)
|
||||
support_angle = 45
|
||||
support_bottom_distance = 0.55
|
||||
support_enable = True
|
||||
support_infill_rate = =25 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 25
|
||||
support_pattern = lines
|
||||
support_top_distance = 0.55
|
||||
support_xy_distance = 0.7
|
||||
support_z_distance = =layer_height * 2
|
||||
support_z_distance = 0.55
|
||||
top_bottom_thickness = 1.2
|
||||
speed_infill = =math.ceil(speed_print * 55 / 55)
|
||||
|
|
|
@ -37,8 +37,5 @@ speed_wall_0 = =math.ceil(speed_print * 15 / 55)
|
|||
speed_wall_x = =math.ceil(speed_print * 40 / 55)
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =25 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 25
|
||||
support_pattern = lines
|
||||
support_xy_distance = 0.7
|
||||
support_z_distance = =layer_height * 2
|
||||
top_bottom_thickness = 1.2
|
||||
|
|
|
@ -35,11 +35,7 @@ speed_travel = 150
|
|||
speed_wall_0 = =math.ceil(speed_print * 15 / 55)
|
||||
speed_wall_x = =math.ceil(speed_print * 40 / 55)
|
||||
support_angle = 45
|
||||
support_bottom_distance = 0.65
|
||||
support_enable = True
|
||||
support_infill_rate = =25 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 25
|
||||
support_pattern = lines
|
||||
support_top_distance = 0.5
|
||||
support_xy_distance = 0.75
|
||||
support_z_distance = =layer_height * 2
|
||||
support_z_distance = 0.5
|
||||
support_bottom_distance = 0.65
|
||||
top_bottom_thickness = 1.2
|
||||
|
|
|
@ -37,9 +37,6 @@ speed_wall_x = =math.ceil(speed_print * 40 / 55)
|
|||
support_angle = 45
|
||||
support_bottom_distance = 0.65
|
||||
support_enable = True
|
||||
support_infill_rate = =25 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 25
|
||||
support_pattern = lines
|
||||
support_top_distance = 0.5
|
||||
support_xy_distance = 0.75
|
||||
support_z_distance = =layer_height * 2
|
||||
top_bottom_thickness = 1.2
|
||||
|
|
|
@ -31,8 +31,6 @@ raft_surface_line_width = 0.2
|
|||
speed_layer_0 = =round(speed_print * 30 / 30)
|
||||
speed_print = 30
|
||||
support_enable = True
|
||||
support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20
|
||||
support_pattern = lines
|
||||
support_z_distance = 0.19
|
||||
speed_topbottom = =math.ceil(speed_print * 15 / 30)
|
||||
speed_infill = =math.ceil(speed_print * 80 / 30)
|
||||
|
|
|
@ -31,6 +31,4 @@ raft_surface_line_width = 0.2
|
|||
speed_layer_0 = =round(speed_print * 30 / 30)
|
||||
speed_print = 30
|
||||
support_enable = True
|
||||
support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20
|
||||
support_pattern = lines
|
||||
support_z_distance = 0.19
|
||||
|
|
|
@ -32,8 +32,6 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 45)
|
|||
speed_wall_x = =math.ceil(speed_print * 30 / 45)
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20
|
||||
support_pattern = lines
|
||||
support_z_distance = 0.19
|
||||
speed_topbottom = =math.ceil(speed_print * 30 / 45)
|
||||
speed_infill = =math.ceil(speed_print * 45 / 45)
|
||||
|
|
|
@ -32,6 +32,4 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 45)
|
|||
speed_wall_x = =math.ceil(speed_print * 30 / 45)
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20
|
||||
support_pattern = lines
|
||||
support_z_distance = 0.19
|
||||
|
|
|
@ -36,9 +36,6 @@ speed_wall_0 = =math.ceil(speed_print * 30 / 45)
|
|||
speed_wall_x = =math.ceil(speed_print * 40 / 45)
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20
|
||||
support_line_distance = 3.5333
|
||||
support_pattern = lines
|
||||
support_z_distance = 0.21
|
||||
top_bottom_thickness = 0.75
|
||||
speed_infill = =math.ceil(speed_print * 45 / 45)
|
||||
|
|
|
@ -36,8 +36,5 @@ speed_wall_0 = =math.ceil(speed_print * 30 / 45)
|
|||
speed_wall_x = =math.ceil(speed_print * 40 / 45)
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20
|
||||
support_line_distance = 3.5333
|
||||
support_pattern = lines
|
||||
support_z_distance = 0.21
|
||||
top_bottom_thickness = 0.75
|
||||
|
|
|
@ -31,7 +31,5 @@ speed_layer_0 = =round(speed_print * 30 / 40)
|
|||
speed_print = 40
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20
|
||||
support_pattern = lines
|
||||
support_z_distance = 0.26
|
||||
top_bottom_thickness = 2.0
|
||||
|
|
|
@ -31,7 +31,5 @@ speed_layer_0 = =round(speed_print * 30 / 40)
|
|||
speed_print = 40
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20
|
||||
support_pattern = lines
|
||||
support_z_distance = 0.26
|
||||
top_bottom_thickness = 1.2
|
||||
|
|
|
@ -56,11 +56,8 @@ speed_travel_layer_0 = 50
|
|||
speed_wall = =math.ceil(speed_print * 25 / 25)
|
||||
speed_wall_0 = =math.ceil(speed_wall * 20 / 25)
|
||||
support_angle = 60
|
||||
support_bottom_distance = =support_z_distance / 2
|
||||
support_top_distance = =support_z_distance
|
||||
support_xy_distance = =wall_line_width_0 * 2.5
|
||||
support_xy_distance_overhang = =wall_line_width_0
|
||||
support_z_distance = =layer_height * 2
|
||||
support_bottom_distance = =support_z_distance / 2
|
||||
travel_avoid_distance = 3
|
||||
wall_0_inset = 0
|
||||
speed_wall_x = =math.ceil(speed_print * 25 / 25)
|
||||
|
|
|
@ -47,10 +47,7 @@ speed_travel_layer_0 = 50
|
|||
speed_wall = =math.ceil(speed_print * 25 / 25)
|
||||
speed_wall_0 = =math.ceil(speed_wall * 20 / 25)
|
||||
support_angle = 60
|
||||
support_bottom_distance = =support_z_distance / 2
|
||||
support_top_distance = =support_z_distance
|
||||
support_xy_distance = =wall_line_width_0 * 2.5
|
||||
support_xy_distance_overhang = =wall_line_width_0
|
||||
support_z_distance = =layer_height * 2
|
||||
support_bottom_distance = =support_z_distance / 2
|
||||
travel_avoid_distance = 3
|
||||
wall_0_inset = 0
|
||||
|
|
|
@ -46,11 +46,8 @@ speed_travel_layer_0 = 50
|
|||
speed_wall = =math.ceil(speed_print * 25 / 25)
|
||||
speed_wall_0 = =math.ceil(speed_wall * 20 / 25)
|
||||
support_angle = 60
|
||||
support_bottom_distance = =support_z_distance / 2
|
||||
support_top_distance = =support_z_distance
|
||||
support_xy_distance = =wall_line_width_0 * 2.5
|
||||
support_xy_distance_overhang = =wall_line_width_0
|
||||
support_z_distance = =layer_height * 2
|
||||
support_bottom_distance = =support_z_distance / 2
|
||||
top_bottom_thickness = 1.1
|
||||
travel_avoid_distance = 3
|
||||
wall_0_inset = 0
|
||||
|
|
|
@ -55,11 +55,8 @@ speed_travel_layer_0 = 50
|
|||
speed_wall = =math.ceil(speed_print * 25 / 25)
|
||||
speed_wall_0 = =math.ceil(speed_wall * 20 / 25)
|
||||
support_angle = 60
|
||||
support_bottom_distance = =support_z_distance / 2
|
||||
support_top_distance = =support_z_distance
|
||||
support_xy_distance = =wall_line_width_0 * 2.5
|
||||
support_xy_distance_overhang = =wall_line_width_0
|
||||
support_z_distance = =layer_height * 2
|
||||
support_bottom_distance = =support_z_distance / 2
|
||||
top_bottom_thickness = 1.1
|
||||
travel_avoid_distance = 3
|
||||
wall_0_inset = 0
|
||||
|
|
|
@ -46,11 +46,8 @@ speed_travel_layer_0 = 50
|
|||
speed_wall = =math.ceil(speed_print * 25 / 25)
|
||||
speed_wall_0 = =math.ceil(speed_wall * 20 / 25)
|
||||
support_angle = 60
|
||||
support_bottom_distance = =support_z_distance / 2
|
||||
support_top_distance = =support_z_distance
|
||||
support_xy_distance = =wall_line_width_0 * 2.5
|
||||
support_xy_distance_overhang = =wall_line_width_0
|
||||
support_z_distance = =layer_height * 2
|
||||
support_bottom_distance = =support_z_distance / 2
|
||||
top_bottom_thickness = 1.5
|
||||
travel_avoid_distance = 3
|
||||
wall_0_inset = 0
|
||||
|
|
|
@ -55,11 +55,8 @@ speed_travel_layer_0 = 50
|
|||
speed_wall = =math.ceil(speed_print * 25 / 25)
|
||||
speed_wall_0 = =math.ceil(speed_wall * 20 / 25)
|
||||
support_angle = 60
|
||||
support_bottom_distance = =support_z_distance / 2
|
||||
support_top_distance = =support_z_distance
|
||||
support_xy_distance = =wall_line_width_0 * 2.5
|
||||
support_xy_distance_overhang = =wall_line_width_0
|
||||
support_z_distance = =layer_height * 2
|
||||
support_bottom_distance = =support_z_distance / 2
|
||||
top_bottom_thickness = 1.5
|
||||
travel_avoid_distance = 3
|
||||
wall_0_inset = 0
|
||||
|
|
|
@ -36,8 +36,6 @@ speed_wall_0 = =math.ceil(speed_print * 15 / 40)
|
|||
speed_wall_x = =math.ceil(speed_print * 38 / 40)
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =25 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 25
|
||||
support_xy_distance = 0.6
|
||||
support_z_distance = =layer_height * 2
|
||||
top_bottom_thickness = 1.2
|
||||
speed_infill = =math.ceil(speed_print * 40 / 40)
|
||||
|
|
|
@ -34,7 +34,5 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 40)
|
|||
speed_wall_x = =math.ceil(speed_print * 35 / 40)
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =25 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 25
|
||||
support_xy_distance = 0.65
|
||||
support_z_distance = =layer_height * 2
|
||||
top_bottom_thickness = 1.2
|
||||
|
|
|
@ -37,8 +37,6 @@ speed_wall_0 = =math.ceil(speed_print * 15 / 45)
|
|||
speed_wall_x = =math.ceil(speed_print * 40 / 45)
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =25 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 25
|
||||
support_xy_distance = 0.7
|
||||
support_z_distance = =layer_height * 2
|
||||
top_bottom_thickness = 1.2
|
||||
speed_infill = =math.ceil(speed_print * 45 / 45)
|
||||
|
|
|
@ -35,7 +35,5 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 25)
|
|||
speed_wall_x = =speed_print
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =0 if support_enable and support_structure == 'tree' else 20
|
||||
support_pattern = lines
|
||||
support_z_distance = 0.26
|
||||
top_bottom_thickness = 1.5
|
||||
|
|
|
@ -35,7 +35,5 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 35)
|
|||
speed_wall_x = =math.ceil(speed_print * 30 / 35)
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =0 if support_enable and support_structure == 'tree' else 20
|
||||
support_pattern = lines
|
||||
support_z_distance = 0.26
|
||||
top_bottom_thickness = 1.5
|
||||
|
|
|
@ -37,9 +37,5 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 25)
|
|||
speed_wall_x = =speed_print
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =0 if support_enable and support_structure == 'tree' else 20
|
||||
support_line_distance = 2.85
|
||||
support_pattern = lines
|
||||
support_xy_distance = 0.6
|
||||
support_z_distance = 0.22
|
||||
top_bottom_thickness = 0.75
|
||||
|
|
|
@ -37,9 +37,5 @@ speed_wall_0 = =math.ceil(speed_print * 30 / 35)
|
|||
speed_wall_x = =speed_print
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =0 if support_enable and support_structure == 'tree' else 20
|
||||
support_line_distance = 2.85
|
||||
support_pattern = lines
|
||||
support_xy_distance = 0.6
|
||||
support_z_distance = 0.22
|
||||
top_bottom_thickness = 0.75
|
||||
|
|
|
@ -33,8 +33,6 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 25)
|
|||
speed_wall_x = =speed_print
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =0 if support_enable and support_structure == 'tree' else 20
|
||||
support_pattern = lines
|
||||
support_z_distance = 0.26
|
||||
top_bottom_thickness = 1.2
|
||||
retraction_combing_max_distance = 50
|
|
@ -33,8 +33,6 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 30)
|
|||
speed_wall_x = =speed_print
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =0 if support_enable and support_structure == 'tree' else 20
|
||||
support_pattern = lines
|
||||
support_z_distance = 0.26
|
||||
top_bottom_thickness = 1.2
|
||||
retraction_combing_max_distance = 50
|
||||
|
|
|
@ -34,9 +34,6 @@ speed_travel = 150
|
|||
speed_wall_0 = =math.ceil(speed_print * 20 / 40)
|
||||
speed_wall_x = =speed_print
|
||||
support_enable = True
|
||||
support_infill_rate = =0 if support_enable and support_structure == 'tree' else 20
|
||||
support_pattern = lines
|
||||
support_xy_distance = 0.6
|
||||
support_z_distance = =layer_height * 2
|
||||
top_bottom_thickness = 1.2
|
||||
speed_infill = =math.ceil(speed_print * 40 / 40)
|
||||
|
|
|
@ -34,8 +34,5 @@ speed_travel = 150
|
|||
speed_wall_0 = =math.ceil(speed_print * 20 / 40)
|
||||
speed_wall_x = =speed_print
|
||||
support_enable = True
|
||||
support_infill_rate = =0 if support_enable and support_structure == 'tree' else 20
|
||||
support_pattern = lines
|
||||
support_xy_distance = 0.6
|
||||
support_z_distance = =layer_height * 2
|
||||
top_bottom_thickness = 1.2
|
||||
|
|
|
@ -34,9 +34,6 @@ speed_travel = 150
|
|||
speed_wall = =math.ceil(speed_print * 40 / 45)
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =0 if support_enable and support_structure == 'tree' else 25
|
||||
support_pattern = lines
|
||||
support_xy_distance = 0.6
|
||||
support_z_distance = =layer_height * 2
|
||||
top_bottom_thickness = 0.75
|
||||
speed_wall_0 = =math.ceil(speed_print * 30 / 45)
|
||||
|
|
|
@ -33,8 +33,5 @@ speed_travel = 150
|
|||
speed_wall = =math.ceil(speed_print * 40 / 45)
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =0 if support_enable and support_structure == 'tree' else 25
|
||||
support_pattern = lines
|
||||
support_xy_distance = 0.6
|
||||
support_z_distance = =layer_height * 2
|
||||
top_bottom_thickness = 0.75
|
||||
|
|
|
@ -36,12 +36,7 @@ speed_travel = 150
|
|||
speed_wall_0 = =math.ceil(speed_print * 15 / 55)
|
||||
speed_wall_x = =math.ceil(speed_print * 40 / 55)
|
||||
support_angle = 45
|
||||
support_bottom_distance = 0.55
|
||||
support_enable = True
|
||||
support_infill_rate = =0 if support_enable and support_structure == 'tree' else 25
|
||||
support_pattern = lines
|
||||
support_top_distance = 0.55
|
||||
support_xy_distance = 0.7
|
||||
support_z_distance = =layer_height * 2
|
||||
support_z_distance = 0.55
|
||||
top_bottom_thickness = 1.2
|
||||
speed_infill = =math.ceil(speed_print * 55 / 55)
|
||||
|
|
|
@ -37,8 +37,5 @@ speed_wall_0 = =math.ceil(speed_print * 15 / 55)
|
|||
speed_wall_x = =math.ceil(speed_print * 40 / 55)
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =0 if support_enable and support_structure == 'tree' else 25
|
||||
support_pattern = lines
|
||||
support_xy_distance = 0.7
|
||||
support_z_distance = =layer_height * 2
|
||||
top_bottom_thickness = 1.2
|
||||
|
|
|
@ -34,11 +34,7 @@ speed_travel = 150
|
|||
speed_wall_0 = =math.ceil(speed_print * 15 / 55)
|
||||
speed_wall_x = =math.ceil(speed_print * 40 / 55)
|
||||
support_angle = 45
|
||||
support_bottom_distance = 0.65
|
||||
support_enable = True
|
||||
support_infill_rate = =0 if support_enable and support_structure == 'tree' else 25
|
||||
support_pattern = lines
|
||||
support_top_distance = 0.5
|
||||
support_xy_distance = 0.75
|
||||
support_z_distance = =layer_height * 2
|
||||
support_z_distance = 0.5
|
||||
support_bottom_distance = 0.65
|
||||
top_bottom_thickness = 1.2
|
||||
|
|
|
@ -36,9 +36,6 @@ speed_wall_x = =math.ceil(speed_print * 40 / 55)
|
|||
support_angle = 45
|
||||
support_bottom_distance = 0.65
|
||||
support_enable = True
|
||||
support_infill_rate = =0 if support_enable and support_structure == 'tree' else 25
|
||||
support_pattern = lines
|
||||
support_top_distance = 0.5
|
||||
support_xy_distance = 0.75
|
||||
support_z_distance = =layer_height * 2
|
||||
top_bottom_thickness = 1.2
|
||||
|
|
|
@ -30,7 +30,5 @@ raft_surface_line_width = 0.2
|
|||
speed_layer_0 = =round(speed_print * 30 / 30)
|
||||
speed_print = 30
|
||||
support_enable = True
|
||||
support_infill_rate = =0 if support_enable and support_structure == 'tree' else 20
|
||||
support_pattern = lines
|
||||
support_z_distance = 0.19
|
||||
speed_topbottom = =math.ceil(speed_print * 15 / 30)
|
|
@ -30,6 +30,4 @@ raft_surface_line_width = 0.2
|
|||
speed_layer_0 = =round(speed_print * 30 / 30)
|
||||
speed_print = 30
|
||||
support_enable = True
|
||||
support_infill_rate = =0 if support_enable and support_structure == 'tree' else 20
|
||||
support_pattern = lines
|
||||
support_z_distance = 0.19
|
||||
|
|
|
@ -31,8 +31,6 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 45)
|
|||
speed_wall_x = =math.ceil(speed_print * 30 / 45)
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =0 if support_enable and support_structure == 'tree' else 20
|
||||
support_pattern = lines
|
||||
support_z_distance = 0.19
|
||||
speed_topbottom = =math.ceil(speed_print * 30 / 45)
|
||||
speed_infill = =math.ceil(speed_print * 45 / 45)
|
||||
|
|
|
@ -31,6 +31,4 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 45)
|
|||
speed_wall_x = =math.ceil(speed_print * 30 / 45)
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =0 if support_enable and support_structure == 'tree' else 20
|
||||
support_pattern = lines
|
||||
support_z_distance = 0.19
|
||||
|
|
|
@ -35,9 +35,6 @@ speed_wall_0 = =math.ceil(speed_print * 30 / 45)
|
|||
speed_wall_x = =math.ceil(speed_print * 40 / 45)
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =0 if support_enable and support_structure == 'tree' else 20
|
||||
support_line_distance = 3.5333
|
||||
support_pattern = lines
|
||||
support_z_distance = 0.21
|
||||
top_bottom_thickness = 0.75
|
||||
speed_infill = =math.ceil(speed_print * 45 / 45)
|
||||
|
|
|
@ -35,8 +35,5 @@ speed_wall_0 = =math.ceil(speed_print * 30 / 45)
|
|||
speed_wall_x = =math.ceil(speed_print * 40 / 45)
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =0 if support_enable and support_structure == 'tree' else 20
|
||||
support_line_distance = 3.5333
|
||||
support_pattern = lines
|
||||
support_z_distance = 0.21
|
||||
top_bottom_thickness = 0.75
|
||||
|
|
|
@ -30,7 +30,5 @@ speed_layer_0 = =round(speed_print * 30 / 40)
|
|||
speed_print = 40
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =0 if support_structure == 'tree' else 20
|
||||
support_pattern = lines
|
||||
support_z_distance = 0.26
|
||||
top_bottom_thickness = 1.2
|
||||
|
|
|
@ -46,11 +46,8 @@ speed_travel_layer_0 = 50
|
|||
speed_wall = =math.ceil(speed_print * 25 / 25)
|
||||
speed_wall_0 = =math.ceil(speed_wall * 20 / 25)
|
||||
support_angle = 60
|
||||
support_bottom_distance = =support_z_distance / 2
|
||||
support_top_distance = =support_z_distance
|
||||
support_xy_distance = =wall_line_width_0 * 2.5
|
||||
support_xy_distance_overhang = =wall_line_width_0
|
||||
support_z_distance = =layer_height * 2
|
||||
support_bottom_distance = =support_z_distance / 2
|
||||
travel_avoid_distance = 3
|
||||
wall_0_inset = 0
|
||||
speed_wall_x = =math.ceil(speed_print * 25 / 25)
|
||||
|
|
|
@ -46,10 +46,7 @@ speed_travel_layer_0 = 50
|
|||
speed_wall = =math.ceil(speed_print * 25 / 25)
|
||||
speed_wall_0 = =math.ceil(speed_wall * 20 / 25)
|
||||
support_angle = 60
|
||||
support_bottom_distance = =support_z_distance / 2
|
||||
support_top_distance = =support_z_distance
|
||||
support_xy_distance = =wall_line_width_0 * 2.5
|
||||
support_xy_distance_overhang = =wall_line_width_0
|
||||
support_z_distance = =layer_height * 2
|
||||
support_bottom_distance = =support_z_distance / 2
|
||||
travel_avoid_distance = 3
|
||||
wall_0_inset = 0
|
||||
|
|
|
@ -45,11 +45,8 @@ speed_travel_layer_0 = 50
|
|||
speed_wall = =math.ceil(speed_print * 25 / 25)
|
||||
speed_wall_0 = =math.ceil(speed_wall * 20 / 25)
|
||||
support_angle = 60
|
||||
support_bottom_distance = =support_z_distance / 2
|
||||
support_top_distance = =support_z_distance
|
||||
support_xy_distance = =wall_line_width_0 * 2.5
|
||||
support_xy_distance_overhang = =wall_line_width_0
|
||||
support_z_distance = =layer_height * 2
|
||||
support_bottom_distance = =support_z_distance / 2
|
||||
top_bottom_thickness = 1.1
|
||||
travel_avoid_distance = 3
|
||||
wall_0_inset = 0
|
||||
|
|
|
@ -45,11 +45,8 @@ speed_travel_layer_0 = 50
|
|||
speed_wall = =math.ceil(speed_print * 25 / 25)
|
||||
speed_wall_0 = =math.ceil(speed_wall * 20 / 25)
|
||||
support_angle = 60
|
||||
support_bottom_distance = =support_z_distance / 2
|
||||
support_top_distance = =support_z_distance
|
||||
support_xy_distance = =wall_line_width_0 * 2.5
|
||||
support_xy_distance_overhang = =wall_line_width_0
|
||||
support_z_distance = =layer_height * 2
|
||||
support_bottom_distance = =support_z_distance / 2
|
||||
top_bottom_thickness = 1.1
|
||||
travel_avoid_distance = 3
|
||||
wall_0_inset = 0
|
||||
|
|
|
@ -57,8 +57,6 @@ speed_wall_0 = =math.ceil(speed_wall * 20 / 25)
|
|||
support_angle = 60
|
||||
support_bottom_distance = =support_z_distance / 2
|
||||
support_top_distance = =support_z_distance
|
||||
support_xy_distance = =wall_line_width_0 * 2.5
|
||||
support_xy_distance_overhang = =wall_line_width_0
|
||||
support_z_distance = =layer_height * 2
|
||||
top_bottom_thickness = 1.5
|
||||
travel_avoid_distance = 3
|
||||
|
|
|
@ -48,8 +48,6 @@ speed_wall_0 = =math.ceil(speed_wall * 20 / 25)
|
|||
support_angle = 60
|
||||
support_bottom_distance = =support_z_distance / 2
|
||||
support_top_distance = =support_z_distance
|
||||
support_xy_distance = =wall_line_width_0 * 2.5
|
||||
support_xy_distance_overhang = =wall_line_width_0
|
||||
support_z_distance = =layer_height * 2
|
||||
top_bottom_thickness = 1.5
|
||||
travel_avoid_distance = 3
|
||||
|
|
|
@ -36,8 +36,6 @@ speed_wall_0 = =math.ceil(speed_print * 15 / 40)
|
|||
speed_wall_x = =math.ceil(speed_print * 38 / 40)
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =0 if support_enable and support_structure == 'tree' else 25
|
||||
support_xy_distance = 0.6
|
||||
support_z_distance = =layer_height * 2
|
||||
top_bottom_thickness = 1.2
|
||||
speed_infill = =math.ceil(speed_print * 40 / 40)
|
||||
|
|
|
@ -34,7 +34,5 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 40)
|
|||
speed_wall_x = =math.ceil(speed_print * 35 / 40)
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =0 if support_enable and support_structure == 'tree' else 25
|
||||
support_xy_distance = 0.65
|
||||
support_z_distance = =layer_height * 2
|
||||
top_bottom_thickness = 1.2
|
||||
|
|
|
@ -37,8 +37,6 @@ speed_wall_0 = =math.ceil(speed_print * 15 / 45)
|
|||
speed_wall_x = =math.ceil(speed_print * 40 / 45)
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = =0 if support_structure == 'tree' else 25
|
||||
support_xy_distance = 0.7
|
||||
support_z_distance = =layer_height * 2
|
||||
top_bottom_thickness = 1.2
|
||||
speed_infill = =math.ceil(speed_print * 45 / 45)
|
||||
|
|
|
@ -40,9 +40,7 @@ speed_topbottom = =math.ceil(speed_print * 25 / 50)
|
|||
speed_travel = 250
|
||||
speed_wall = =math.ceil(speed_print * 40 / 50)
|
||||
speed_wall_0 = =math.ceil(speed_wall * 25 / 40)
|
||||
support_bottom_distance = =support_z_distance
|
||||
support_interface_density = 87.5
|
||||
support_interface_pattern = lines
|
||||
switch_extruder_prime_speed = 15
|
||||
switch_extruder_retraction_amount = 20
|
||||
switch_extruder_retraction_speeds = 35
|
||||
|
|
|
@ -29,11 +29,6 @@ top_bottom_thickness = 1
|
|||
support_brim_enable = True
|
||||
support_interface_enable = True
|
||||
support_interface_density = =min(extruderValues('material_surface_energy'))
|
||||
support_interface_pattern = ='lines' if support_interface_density < 100 else 'concentric'
|
||||
support_top_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height
|
||||
support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height
|
||||
support_angle = 45
|
||||
support_join_distance = 5
|
||||
support_offset = 2
|
||||
support_pattern = triangles
|
||||
support_infill_rate = =10 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 10
|
||||
|
|
|
@ -28,11 +28,6 @@ top_bottom_thickness = 1
|
|||
support_brim_enable = True
|
||||
support_interface_enable = True
|
||||
support_interface_density = =min(extruderValues('material_surface_energy'))
|
||||
support_interface_pattern = ='lines' if support_interface_density < 100 else 'concentric'
|
||||
support_top_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 1) * layer_height
|
||||
support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height
|
||||
support_angle = 45
|
||||
support_join_distance = 5
|
||||
support_offset = 2
|
||||
support_pattern = triangles
|
||||
support_infill_rate = =10 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 10
|
||||
|
|
|
@ -25,12 +25,7 @@ speed_layer_0 = =math.ceil(speed_print * 20 / 70)
|
|||
support_brim_enable = True
|
||||
support_interface_enable = True
|
||||
support_interface_density = =min(extruderValues('material_surface_energy'))
|
||||
support_interface_pattern = ='lines' if support_interface_density < 100 else 'concentric'
|
||||
support_top_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 1) * layer_height
|
||||
support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height
|
||||
support_angle = 45
|
||||
support_join_distance = 5
|
||||
support_offset = 2
|
||||
support_pattern = triangles
|
||||
support_infill_rate = =10 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 10
|
||||
top_bottom_thickness = 1
|
||||
|
|
|
@ -38,6 +38,5 @@ speed_topbottom = =math.ceil(speed_print * 40 / 50)
|
|||
speed_travel = 250
|
||||
speed_wall = =math.ceil(speed_print * 50 / 50)
|
||||
speed_wall_0 = =math.ceil(speed_wall * 40 / 50)
|
||||
support_bottom_distance = =support_z_distance
|
||||
support_z_distance = =layer_height
|
||||
wall_0_inset = 0
|
||||
|
|
|
@ -38,6 +38,5 @@ speed_topbottom = =math.ceil(speed_print * 35 / 45)
|
|||
speed_travel = 250
|
||||
speed_wall = =math.ceil(speed_print * 45 / 45)
|
||||
speed_wall_0 = =math.ceil(speed_wall * 35 / 45)
|
||||
support_bottom_distance = =support_z_distance
|
||||
support_z_distance = =layer_height
|
||||
wall_0_inset = 0
|
||||
|
|
|
@ -40,6 +40,5 @@ speed_topbottom = =math.ceil(speed_print * 30 / 35)
|
|||
speed_travel = 250
|
||||
speed_wall = =math.ceil(speed_print * 35 / 40)
|
||||
speed_wall_0 = =math.ceil(speed_wall * 30 / 35)
|
||||
support_bottom_distance = =support_z_distance
|
||||
support_z_distance = =layer_height
|
||||
wall_0_inset = 0
|
||||
|
|
|
@ -39,6 +39,5 @@ speed_topbottom = =math.ceil(speed_print * 30 / 35)
|
|||
speed_travel = 250
|
||||
speed_wall = =math.ceil(speed_print * 35 / 40)
|
||||
speed_wall_0 = =math.ceil(speed_wall * 30 / 35)
|
||||
support_bottom_distance = =support_z_distance
|
||||
support_z_distance = =layer_height
|
||||
wall_0_inset = 0
|
||||
|
|
|
@ -49,9 +49,7 @@ speed_topbottom = =math.ceil(speed_print * 25 / 50)
|
|||
speed_travel = 250
|
||||
speed_wall = =math.ceil(speed_print * 40 / 50)
|
||||
speed_wall_0 = =math.ceil(speed_wall * 25 / 40)
|
||||
support_bottom_distance = =support_z_distance
|
||||
support_interface_density = 87.5
|
||||
support_interface_pattern = lines
|
||||
switch_extruder_prime_speed = 15
|
||||
switch_extruder_retraction_amount = 20
|
||||
switch_extruder_retraction_speeds = 35
|
||||
|
|
|
@ -47,9 +47,7 @@ speed_topbottom = =math.ceil(speed_print * 25 / 50)
|
|||
speed_travel = 250
|
||||
speed_wall = =math.ceil(speed_print * 40 / 50)
|
||||
speed_wall_0 = =math.ceil(speed_wall * 25 / 40)
|
||||
support_bottom_distance = =support_z_distance
|
||||
support_interface_density = 87.5
|
||||
support_interface_pattern = lines
|
||||
switch_extruder_prime_speed = 15
|
||||
switch_extruder_retraction_amount = 20
|
||||
switch_extruder_retraction_speeds = 35
|
||||
|
|
|
@ -49,9 +49,7 @@ speed_topbottom = =math.ceil(speed_print * 25 / 50)
|
|||
speed_travel = 250
|
||||
speed_wall = =math.ceil(speed_print * 40 / 50)
|
||||
speed_wall_0 = =math.ceil(speed_wall * 25 / 40)
|
||||
support_bottom_distance = =support_z_distance
|
||||
support_interface_density = 87.5
|
||||
support_interface_pattern = lines
|
||||
switch_extruder_prime_speed = 15
|
||||
switch_extruder_retraction_amount = 20
|
||||
switch_extruder_retraction_speeds = 35
|
||||
|
|
|
@ -46,9 +46,7 @@ speed_topbottom = =math.ceil(speed_print * 25 / 50)
|
|||
speed_travel = 250
|
||||
speed_wall = =math.ceil(speed_print * 40 / 50)
|
||||
speed_wall_0 = =math.ceil(speed_wall * 25 / 40)
|
||||
support_bottom_distance = =support_z_distance
|
||||
support_interface_density = 87.5
|
||||
support_interface_pattern = lines
|
||||
switch_extruder_prime_speed = 15
|
||||
switch_extruder_retraction_amount = 20
|
||||
switch_extruder_retraction_speeds = 35
|
||||
|
|
|
@ -30,6 +30,5 @@ speed_slowdown_layers = 15
|
|||
speed_topbottom = =math.ceil(speed_print * 35 / 50)
|
||||
speed_wall = =math.ceil(speed_print * 40 / 50)
|
||||
speed_wall_0 = =math.ceil(speed_wall * 35 / 40)
|
||||
support_bottom_distance = =support_z_distance
|
||||
support_z_distance = =layer_height
|
||||
top_bottom_thickness = 1.2
|
||||
|
|
|
@ -32,6 +32,5 @@ speed_topbottom = =math.ceil(speed_print * 35 / 50)
|
|||
speed_wall = =math.ceil(speed_print * 40 / 50)
|
||||
speed_wall_0 = =math.ceil(speed_wall * 35 / 40)
|
||||
speed_infill = =math.ceil(speed_print * 40 / 50)
|
||||
support_bottom_distance = =support_z_distance
|
||||
support_z_distance = =layer_height
|
||||
top_bottom_thickness = 1.2
|
||||
|
|
|
@ -32,6 +32,5 @@ speed_slowdown_layers = 10
|
|||
speed_topbottom = =math.ceil(speed_print * 35 / 50)
|
||||
speed_wall = =math.ceil(speed_print * 40 / 50)
|
||||
speed_wall_0 = =math.ceil(speed_wall * 35 / 40)
|
||||
support_bottom_distance = =support_z_distance
|
||||
support_z_distance = =layer_height
|
||||
top_bottom_thickness = 1.2
|
||||
|
|
|
@ -26,7 +26,6 @@ raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2)
|
|||
raft_margin = 10
|
||||
raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2)
|
||||
support_angle = 70
|
||||
support_xy_distance = =wall_line_width_0 * 1.5
|
||||
switch_extruder_prime_speed = 30
|
||||
switch_extruder_retraction_amount = 30
|
||||
switch_extruder_retraction_speeds = 40
|
||||
|
|
|
@ -27,7 +27,6 @@ raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2)
|
|||
raft_margin = 10
|
||||
raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2)
|
||||
support_angle = 70
|
||||
support_xy_distance = =wall_line_width_0 * 1.5
|
||||
switch_extruder_prime_speed = 30
|
||||
switch_extruder_retraction_amount = 30
|
||||
switch_extruder_retraction_speeds = 40
|
||||
|
|
|
@ -31,6 +31,4 @@ speed_wall = =math.ceil(speed_print * 40 / 45)
|
|||
speed_wall_x = =speed_wall
|
||||
speed_wall_0 = =math.ceil(speed_wall * 35 / 40)
|
||||
support_angle = 70
|
||||
support_pattern = ='triangles'
|
||||
support_xy_distance = =wall_line_width_0 * 1.5
|
||||
top_bottom_thickness = =layer_height * 4
|
||||
|
|
|
@ -34,6 +34,4 @@ speed_wall_x = =speed_wall
|
|||
speed_wall_0 = =math.ceil(speed_wall * 35 / 40)
|
||||
speed_infill = =math.ceil(speed_print * 35 / 45)
|
||||
support_angle = 70
|
||||
support_pattern = ='triangles'
|
||||
support_xy_distance = =wall_line_width_0 * 1.5
|
||||
top_bottom_thickness = =layer_height * 4
|
||||
|
|
|
@ -32,6 +32,4 @@ speed_wall = =math.ceil(speed_print * 40 / 45)
|
|||
speed_wall_x = =speed_wall
|
||||
speed_wall_0 = =math.ceil(speed_wall * 35 / 40)
|
||||
support_angle = 70
|
||||
support_pattern = ='triangles'
|
||||
support_xy_distance = =wall_line_width_0 * 1.5
|
||||
top_bottom_thickness = =layer_height * 4
|
||||
|
|
|
@ -33,8 +33,6 @@ retraction_min_travel = 1.5
|
|||
retraction_prime_speed = 15
|
||||
speed_travel = 300
|
||||
speed_wall_x = =math.ceil(speed_wall * 30 / 30)
|
||||
support_bottom_distance = =support_z_distance
|
||||
support_offset = =line_width
|
||||
switch_extruder_prime_speed = 15
|
||||
switch_extruder_retraction_amount = 20
|
||||
switch_extruder_retraction_speeds = 45
|
||||
|
|
|
@ -34,8 +34,6 @@ retraction_prime_speed = 15
|
|||
speed_travel = 300
|
||||
speed_wall_x = =math.ceil(speed_wall * 30 / 30)
|
||||
speed_infill = =math.ceil(speed_wall * 30 / 30)
|
||||
support_bottom_distance = =support_z_distance
|
||||
support_offset = =line_width
|
||||
switch_extruder_prime_speed = 15
|
||||
switch_extruder_retraction_amount = 20
|
||||
switch_extruder_retraction_speeds = 45
|
||||
|
|
|
@ -33,8 +33,6 @@ retraction_min_travel = 1.5
|
|||
retraction_prime_speed = 15
|
||||
speed_travel = 300
|
||||
speed_wall_x = =math.ceil(speed_wall * 30 / 30)
|
||||
support_bottom_distance = =support_z_distance
|
||||
support_offset = =line_width
|
||||
switch_extruder_prime_speed = 15
|
||||
switch_extruder_retraction_amount = 20
|
||||
switch_extruder_retraction_speeds = 45
|
||||
|
|
|
@ -27,5 +27,4 @@ prime_tower_enable = False
|
|||
retract_at_layer_change = False
|
||||
speed_print = 45
|
||||
support_angle = 70
|
||||
support_xy_distance = =wall_line_width_0 * 1.5
|
||||
top_bottom_thickness = =layer_height * 6
|
||||
|
|
|
@ -32,5 +32,4 @@ speed_topbottom = =math.ceil(speed_print * 20 / 30)
|
|||
speed_wall = =math.ceil(speed_print * 25/ 30)
|
||||
speed_wall_0 = =math.ceil(speed_print * 20 / 30)
|
||||
support_angle = 70
|
||||
support_xy_distance = =wall_line_width_0 * 1.5
|
||||
top_bottom_thickness = =layer_height * 4
|
||||
|
|
|
@ -32,6 +32,4 @@ speed_topbottom = =math.ceil(speed_print * 20 / 35)
|
|||
speed_wall = =math.ceil(speed_print * 25/ 35)
|
||||
speed_wall_0 = =math.ceil(speed_print * 20 / 35)
|
||||
support_angle = 70
|
||||
support_pattern = ='triangles'
|
||||
support_xy_distance = =wall_line_width_0 * 1.5
|
||||
top_bottom_thickness = =layer_height * 4
|
||||
|
|
|
@ -42,8 +42,6 @@ speed_travel = 300
|
|||
speed_wall = =math.ceil(speed_print * 30 / 30)
|
||||
speed_wall_x = =math.ceil(speed_wall * 30 / 30)
|
||||
support_angle = 50
|
||||
support_bottom_distance = =support_z_distance
|
||||
support_offset = =line_width
|
||||
switch_extruder_prime_speed = 15
|
||||
switch_extruder_retraction_amount = 20
|
||||
switch_extruder_retraction_speeds = 45
|
||||
|
|
|
@ -44,8 +44,6 @@ speed_wall = =speed_print
|
|||
speed_wall_x = =speed_print
|
||||
speed_infill = =speed_print
|
||||
support_angle = 50
|
||||
support_bottom_distance = =support_z_distance
|
||||
support_offset = =line_width
|
||||
switch_extruder_prime_speed = 15
|
||||
switch_extruder_retraction_amount = 20
|
||||
switch_extruder_retraction_speeds = 45
|
||||
|
|
|
@ -42,8 +42,6 @@ speed_travel = 300
|
|||
speed_wall = =math.ceil(speed_print * 30 / 30)
|
||||
speed_wall_x = =math.ceil(speed_wall * 30 / 30)
|
||||
support_angle = 50
|
||||
support_bottom_distance = =support_z_distance
|
||||
support_offset = =line_width
|
||||
switch_extruder_prime_speed = 15
|
||||
switch_extruder_retraction_amount = 20
|
||||
switch_extruder_retraction_speeds = 45
|
||||
|
|
|
@ -19,3 +19,7 @@ prime_tower_enable = False
|
|||
retraction_count_max = 5
|
||||
skin_overlap = 20
|
||||
support_brim_enable = True
|
||||
support_interface_enable = True
|
||||
skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width))
|
||||
cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr))
|
||||
support_use_towers = True
|
||||
|
|
|
@ -19,4 +19,7 @@ prime_tower_enable = False
|
|||
retraction_count_max = 5
|
||||
skin_overlap = 15
|
||||
support_brim_enable = True
|
||||
support_infill_sparse_thickness = 0.3
|
||||
support_interface_enable = True
|
||||
skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width))
|
||||
cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr))
|
||||
support_use_towers = True
|
||||
|
|
|
@ -17,4 +17,7 @@ material_standby_temperature = 100
|
|||
prime_tower_enable = False
|
||||
retraction_count_max = 5
|
||||
support_brim_enable = True
|
||||
support_infill_sparse_thickness = 0.18
|
||||
support_interface_enable = True
|
||||
skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width))
|
||||
cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr))
|
||||
support_use_towers = True
|
||||
|
|
|
@ -17,3 +17,7 @@ material_standby_temperature = 100
|
|||
prime_tower_enable = False
|
||||
retraction_count_max = 5
|
||||
support_brim_enable = True
|
||||
support_interface_enable = True
|
||||
skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width))
|
||||
cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr))
|
||||
support_use_towers = True
|
||||
|
|
|
@ -17,3 +17,7 @@ material_print_temperature = =default_material_print_temperature + 5
|
|||
material_standby_temperature = 100
|
||||
retraction_count_max = 5
|
||||
support_brim_enable = True
|
||||
support_interface_enable = True
|
||||
skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width))
|
||||
cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr))
|
||||
support_use_towers = True
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue