mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-08 22:35:03 -06:00
Merge branch '2.1' of https://github.com/Ultimaker/Cura
This commit is contained in:
commit
ef9be8a2d8
26 changed files with 107 additions and 193 deletions
|
@ -11,6 +11,13 @@
|
|||
"inherits": "ultimaker2.json",
|
||||
|
||||
"overrides": {
|
||||
"speed_infill": { "inherit_function": "speed_print" },
|
||||
"speed_wall_x": { "inherit_function": "speed_wall" },
|
||||
"layer_height_0": { "inherit_function": "round(machine_nozzle_size / 1.5, 2)" },
|
||||
"retraction_min_travel": { "inherit_function": "machine_nozzle_size * 2" },
|
||||
"line_width": { "inherit_function": "round(machine_nozzle_size * 0.875, 2)" },
|
||||
"speed_layer_0": { "default": "20" },
|
||||
"speed_support": { "inherit_function": "speed_wall_0" },
|
||||
"machine_height": { "default": 203 },
|
||||
"machine_show_variants": { "default": true },
|
||||
"gantry_height": { "default": 52 },
|
||||
|
|
|
@ -12,6 +12,9 @@
|
|||
"variant": "0.25 mm",
|
||||
|
||||
"overrides": {
|
||||
"speed_wall": { "inherit_function": "round(speed_print / 1.2, 1)" },
|
||||
"speed_wall_0": { "inherit_function": "1 if speed_wall < 5 else (speed_wall - 5)" },
|
||||
"speed_topbottom": { "inherit_function": "round(speed_print / 1.5, 1)" },
|
||||
"machine_nozzle_size": { "default": 0.25 },
|
||||
"machine_nozzle_tip_outer_diameter": { "default": 0.8 },
|
||||
"coasting_volume": { "default": 0.1 },
|
||||
|
|
|
@ -12,6 +12,9 @@
|
|||
"variant": "0.4 mm",
|
||||
|
||||
"overrides": {
|
||||
"speed_wall": { "inherit_function": "round(speed_print / 1.25, 1)" },
|
||||
"speed_wall_0": { "inherit_function": "1 if speed_wall < 10 else (speed_wall - 10)" },
|
||||
"speed_topbottom": { "inherit_function": "round(speed_print / 2.25, 1)" },
|
||||
"machine_nozzle_size": { "default": 0.40 },
|
||||
"machine_nozzle_tip_outer_diameter": { "default": 1.05 }
|
||||
}
|
||||
|
|
|
@ -12,6 +12,9 @@
|
|||
"variant": "0.6 mm",
|
||||
|
||||
"overrides": {
|
||||
"speed_wall": { "inherit_function": "round(speed_print / 1.333333, 1)" },
|
||||
"speed_wall_0": { "inherit_function": "1 if speed_wall < 10 else (speed_wall - 10)" },
|
||||
"speed_topbottom": { "inherit_function": "round(speed_print / 2, 1)" },
|
||||
"machine_nozzle_size": { "default": 0.60 },
|
||||
"machine_nozzle_tip_outer_diameter": { "default": 1.25 },
|
||||
"coasting_volume": { "default": 1.36 }
|
||||
|
|
|
@ -12,6 +12,9 @@
|
|||
"variant": "0.8 mm",
|
||||
|
||||
"overrides": {
|
||||
"speed_wall": { "inherit_function": "round(speed_print / 1.333333, 1)" },
|
||||
"speed_wall_0": { "inherit_function": "1 if speed_wall < 10 else (speed_wall - 10)" },
|
||||
"speed_topbottom": { "inherit_function": "round(speed_print / 2, 1)" },
|
||||
"machine_nozzle_size": { "default": 0.80 },
|
||||
"machine_nozzle_tip_outer_diameter": { "default": 1.35 },
|
||||
"coasting_volume": { "default": 3.22 }
|
||||
|
|
|
@ -4,7 +4,8 @@ type = material
|
|||
name = ABS
|
||||
|
||||
[settings]
|
||||
material_bed_temperature = 100
|
||||
material_flow = 107
|
||||
material_print_temperature = 250
|
||||
cool_fan_speed = 50
|
||||
material_bed_temperature = 80
|
||||
material_flow = 107
|
||||
retraction_amount = 6.5
|
||||
|
||||
|
|
|
@ -5,4 +5,5 @@ name = CPE
|
|||
|
||||
[settings]
|
||||
material_print_temperature = 250
|
||||
cool_fan_speed = 50
|
||||
material_bed_temperature = 70
|
||||
retraction_amount = 6.5
|
||||
|
|
|
@ -4,3 +4,5 @@ type = material
|
|||
name = PLA
|
||||
|
||||
[settings]
|
||||
material_bed_temperature = 60
|
||||
retraction_amount = 6.5
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[general]
|
||||
version = 1
|
||||
name = Normal Quality
|
||||
name = High Quality
|
||||
machine_type = ultimaker2plus
|
||||
machine_variant = 0.25 mm
|
||||
material = ABS
|
||||
|
@ -9,17 +9,12 @@ weight = -2
|
|||
[settings]
|
||||
layer_height = 0.06
|
||||
wall_thickness = 0.88
|
||||
line_width = 0.22
|
||||
top_bottom_thickness = 0.72
|
||||
infill_sparse_density = 22
|
||||
speed_print = 20
|
||||
layer_height_0 = 0.15
|
||||
speed_layer_0 = 20
|
||||
speed_infill = 30
|
||||
speed_topbottom = 20
|
||||
speed_wall_x = 25
|
||||
cool_min_layer_time = 2
|
||||
cool_min_speed = 10
|
||||
cool_lift_head = True
|
||||
speed_print = 30
|
||||
cool_min_layer_time = 3
|
||||
cool_fan_speed_min = 20
|
||||
cool_min_speed = 10
|
||||
cool_min_layer_time_fan_speed_max = 15
|
||||
|
||||
|
||||
|
|
|
@ -9,18 +9,13 @@ weight = -1
|
|||
[settings]
|
||||
layer_height = 0.15
|
||||
wall_thickness = 0.7
|
||||
line_width = 0.35
|
||||
top_bottom_thickness = 0.75
|
||||
infill_sparse_density = 18
|
||||
speed_print = 40
|
||||
layer_height_0 = 0.26
|
||||
speed_layer_0 = 30
|
||||
speed_print = 55
|
||||
speed_travel = 150
|
||||
speed_infill = 55
|
||||
speed_topbottom = 30
|
||||
speed_wall_0 = 30
|
||||
speed_layer_0 = 30
|
||||
cool_min_layer_time = 3
|
||||
cool_min_speed = 20
|
||||
cool_lift_head = True
|
||||
cool_fan_speed_min = 50
|
||||
cool_fan_speed_min = 20
|
||||
cool_min_speed = 10
|
||||
cool_min_layer_time_fan_speed_max = 15
|
||||
|
||||
|
|
|
@ -9,17 +9,11 @@ weight = -3
|
|||
[settings]
|
||||
layer_height = 0.06
|
||||
wall_thickness = 1.05
|
||||
line_width = 0.35
|
||||
top_bottom_thickness = 0.72
|
||||
infill_sparse_density = 22
|
||||
speed_print = 30
|
||||
layer_height_0 = 0.26
|
||||
speed_layer_0 = 20
|
||||
speed_infill = 45
|
||||
speed_topbottom = 20
|
||||
speed_wall_0 = 20
|
||||
speed_print = 45
|
||||
cool_min_layer_time = 3
|
||||
cool_min_speed = 10
|
||||
cool_fan_speed_min = 20
|
||||
cool_lift_head = True
|
||||
cool_min_speed = 10
|
||||
cool_min_layer_time_fan_speed_max = 15
|
||||
|
||||
|
|
|
@ -9,17 +9,10 @@ weight = -2
|
|||
[settings]
|
||||
layer_height = 0.1
|
||||
wall_thickness = 1.05
|
||||
line_width = 0.35
|
||||
top_bottom_thickness = 0.8
|
||||
infill_sparse_density = 20
|
||||
speed_print = 30
|
||||
layer_height_0 = 0.26
|
||||
speed_layer_0 = 20
|
||||
speed_infill = 45
|
||||
speed_topbottom = 20
|
||||
speed_wall_0 = 20
|
||||
speed_print = 45
|
||||
cool_min_layer_time = 3
|
||||
cool_fan_speed_min = 50
|
||||
cool_fan_speed_min = 20
|
||||
cool_min_speed = 10
|
||||
cool_lift_head = True
|
||||
|
||||
cool_min_layer_time_fan_speed_max = 15
|
||||
|
|
|
@ -9,18 +9,12 @@ weight = -2
|
|||
[settings]
|
||||
layer_height = 0.15
|
||||
wall_thickness = 1.59
|
||||
line_width = 0.53
|
||||
top_bottom_thickness = 1.2
|
||||
infill_sparse_density = 20
|
||||
speed_print = 25
|
||||
layer_height_0 = 0.39
|
||||
speed_layer_0 = 20
|
||||
speed_infill = 40
|
||||
speed_topbottom = 20
|
||||
speed_wall_0 = 20
|
||||
speed_wall_x = 30
|
||||
speed_print = 40
|
||||
cool_min_layer_time = 3
|
||||
cool_fan_speed_min = 50
|
||||
cool_min_speed = 20
|
||||
cool_lift_head = True
|
||||
cool_min_layer_time_fan_speed_max = 20
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[general]
|
||||
version = 1
|
||||
name = Normal Quality
|
||||
name = Fast Print
|
||||
machine_type = ultimaker2plus
|
||||
machine_variant = 0.8 mm
|
||||
material = ABS
|
||||
|
@ -9,17 +9,11 @@ weight = -2
|
|||
[settings]
|
||||
layer_height = 0.2
|
||||
wall_thickness = 2.1
|
||||
line_width = 0.7
|
||||
speed_print = 20
|
||||
top_bottom_thickness = 1.2
|
||||
infill_sparse_density = 20
|
||||
layer_height_0 = 0.5
|
||||
speed_layer_0 = 20
|
||||
speed_infill = 40
|
||||
speed_topbottom = 20
|
||||
speed_wall_x = 30
|
||||
speed_print = 40
|
||||
cool_min_layer_time = 3
|
||||
cool_fan_speed_min = 50
|
||||
cool_min_speed = 15
|
||||
cool_lift_head = True
|
||||
cool_min_layer_time_fan_speed_max = 25
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[general]
|
||||
version = 1
|
||||
name = Normal Quality
|
||||
name = High Quality
|
||||
machine_type = ultimaker2plus
|
||||
machine_variant = 0.25 mm
|
||||
material = CPE
|
||||
|
@ -9,18 +9,11 @@ weight = -2
|
|||
[settings]
|
||||
layer_height = 0.06
|
||||
wall_thickness = 0.88
|
||||
line_width = 0.22
|
||||
top_bottom_thickness = 0.72
|
||||
infill_sparse_density = 22
|
||||
speed_print = 20
|
||||
layer_height_0 = 0.15
|
||||
speed_layer_0 = 20
|
||||
speed_infill = 30
|
||||
speed_topbottom = 20
|
||||
speed_wall_x = 25
|
||||
speed_print = 30
|
||||
cool_min_layer_time = 2
|
||||
cool_min_speed = 10
|
||||
cool_fan_speed_min = 50
|
||||
cool_lift_head = True
|
||||
infill_overlap = 17
|
||||
cool_fan_speed_min = 20
|
||||
cool_min_speed = 15
|
||||
cool_min_layer_time_fan_speed_max = 15
|
||||
|
||||
|
|
|
@ -9,18 +9,14 @@ weight = -1
|
|||
[settings]
|
||||
layer_height = 0.15
|
||||
wall_thickness = 0.7
|
||||
line_width = 0.35
|
||||
top_bottom_thickness = 0.75
|
||||
infill_sparse_density = 18
|
||||
speed_print = 40
|
||||
layer_height_0 = 0.26
|
||||
speed_print = 45
|
||||
speed_travel = 150
|
||||
speed_layer_0 = 30
|
||||
speed_infill = 45
|
||||
speed_wall_0 = 30
|
||||
cool_min_layer_time = 3
|
||||
cool_fan_speed_min = 50
|
||||
cool_fan_speed_min = 80
|
||||
cool_min_speed = 10
|
||||
cool_lift_head = True
|
||||
infill_overlap = 17
|
||||
cool_min_layer_time_fan_speed_max = 15
|
||||
|
||||
|
||||
|
|
|
@ -9,19 +9,10 @@ weight = -3
|
|||
[settings]
|
||||
layer_height = 0.06
|
||||
wall_thickness = 1.05
|
||||
line_width = 0.35
|
||||
top_bottom_thickness = 0.72
|
||||
infill_sparse_density = 22
|
||||
speed_print = 20
|
||||
layer_height_0 = 0.26
|
||||
speed_layer_0 = 20
|
||||
speed_infill = 45
|
||||
speed_topbottom = 20
|
||||
speed_wall_x = 30
|
||||
cool_min_layer_time = 3
|
||||
cool_fan_speed_min = 50
|
||||
cool_min_speed = 10
|
||||
cool_lift_head = True
|
||||
infill_overlap = 15
|
||||
|
||||
|
||||
speed_print = 45
|
||||
cool_min_layer_time = 2
|
||||
cool_fan_speed_min = 80
|
||||
cool_min_speed = 15
|
||||
cool_min_layer_time_fan_speed_max = 15
|
||||
|
|
|
@ -7,19 +7,13 @@ material = CPE
|
|||
weight = -2
|
||||
|
||||
[settings]
|
||||
layer_height = 0.1
|
||||
wall_thickness = 1.05
|
||||
line_width = 0.35
|
||||
top_bottom_thickness = 0.8
|
||||
speed_print = 30
|
||||
layer_height_0 = 0.26
|
||||
speed_layer_0 = 20
|
||||
speed_infill = 45
|
||||
speed_topbottom = 20
|
||||
speed_wall_0 = 20
|
||||
speed_wall_x = 30
|
||||
infill_sparse_density = 20
|
||||
speed_print = 45
|
||||
cool_min_layer_time = 3
|
||||
cool_fan_speed_min = 50
|
||||
cool_fan_speed_min = 80
|
||||
cool_min_speed = 10
|
||||
cool_lift_head = True
|
||||
infill_overlap = 15
|
||||
cool_min_layer_time_fan_speed_max = 15
|
||||
|
||||
|
|
|
@ -9,18 +9,10 @@ weight = -2
|
|||
[settings]
|
||||
layer_height = 0.15
|
||||
wall_thickness = 1.59
|
||||
line_width = 0.53
|
||||
top_bottom_thickness = 1.2
|
||||
speed_print = 25
|
||||
layer_height_0 = 0.4
|
||||
speed_layer_0 = 20
|
||||
speed_infill = 40
|
||||
speed_topbottom = 20
|
||||
speed_wall_0 = 20
|
||||
speed_wall_x = 30
|
||||
cool_min_layer_time = 3
|
||||
cool_min_speed = 10
|
||||
cool_fan_speed_min = 50
|
||||
cool_lift_head = True
|
||||
infill_overlap = 17
|
||||
|
||||
infill_sparse_density = 20
|
||||
speed_print = 40
|
||||
cool_min_layer_time = 5
|
||||
cool_fan_speed_min = 80
|
||||
cool_min_speed = 8
|
||||
cool_min_layer_time_fan_speed_max = 20
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[general]
|
||||
version = 1
|
||||
name = Normal Quality
|
||||
name = Fast Print
|
||||
machine_type = ultimaker2plus
|
||||
machine_variant = 0.8 mm
|
||||
material = CPE
|
||||
|
@ -9,17 +9,10 @@ weight = -2
|
|||
[settings]
|
||||
layer_height = 0.2
|
||||
wall_thickness = 2.1
|
||||
line_width = 0.7
|
||||
top_bottom_thickness = 1.2
|
||||
speed_print = 20
|
||||
layer_height_0 = 0.5
|
||||
speed_layer_0 = 20
|
||||
speed_infill = 40
|
||||
speed_topbottom = 20
|
||||
speed_wall_x = 30
|
||||
infill_sparse_density = 20
|
||||
speed_print = 40
|
||||
cool_min_layer_time = 3
|
||||
cool_min_speed = 10
|
||||
cool_fan_speed_min = 50
|
||||
cool_lift_head = True
|
||||
infill_overlap = 17
|
||||
|
||||
cool_fan_speed_min = 80
|
||||
cool_min_speed = 8
|
||||
cool_min_layer_time_fan_speed_max = 25
|
||||
|
|
|
@ -1,22 +1,16 @@
|
|||
[general]
|
||||
version = 1
|
||||
name = Normal Quality
|
||||
name = High Quality
|
||||
machine_type = ultimaker2plus
|
||||
machine_variant = 0.25 mm
|
||||
material = PLA
|
||||
weight = -2
|
||||
|
||||
[settings]
|
||||
line_width = 0.22
|
||||
layer_height = 0.06
|
||||
layer_height_0 = 0.15
|
||||
wall_thickness = 0.88
|
||||
top_bottom_thickness = 0.72
|
||||
infill_sparse_density = 22
|
||||
retraction_amount = 6
|
||||
speed_print = 20
|
||||
speed_infill = 30
|
||||
speed_wall_x = 25
|
||||
speed_topbottom = 20
|
||||
speed_layer_0 = 25
|
||||
cool_min_layer_time_fan_speed_max = 15
|
||||
speed_print = 30
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
|
|
@ -7,17 +7,12 @@ material = PLA
|
|||
weight = -1
|
||||
|
||||
[settings]
|
||||
line_width = 0.35
|
||||
layer_height = 0.15
|
||||
layer_height_0 = 0.26
|
||||
wall_thickness = 0.7
|
||||
top_bottom_thickness = 0.6
|
||||
top_bottom_thickness = 0.75
|
||||
infill_sparse_density = 18
|
||||
retraction_amount = 5.5
|
||||
speed_print = 40
|
||||
speed_infill = 60
|
||||
speed_wall_x = 50
|
||||
speed_print = 60
|
||||
speed_travel = 150
|
||||
speed_topbottom = 30
|
||||
speed_layer_0 = 25
|
||||
cool_min_layer_time_fan_speed_max = 15
|
||||
speed_layer_0 = 30
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
|
|
@ -7,16 +7,10 @@ material = PLA
|
|||
weight = -3
|
||||
|
||||
[settings]
|
||||
line_width = 0.35
|
||||
layer_height = 0.06
|
||||
layer_height_0 = 0.26
|
||||
wall_thickness = 1.05
|
||||
top_bottom_thickness = 0.84
|
||||
top_bottom_thickness = 0.72
|
||||
infill_sparse_density = 22
|
||||
retraction_amount = 5.5
|
||||
speed_print = 30
|
||||
speed_infill = 50
|
||||
speed_wall_x = 40
|
||||
speed_topbottom = 20
|
||||
speed_layer_0 = 25
|
||||
cool_min_layer_time_fan_speed_max = 15
|
||||
speed_print = 50
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
|
|
@ -7,15 +7,10 @@ material = PLA
|
|||
weight = -2
|
||||
|
||||
[settings]
|
||||
line_width = 0.35
|
||||
layer_height_0 = 0.26
|
||||
layer_height = 0.1
|
||||
wall_thickness = 1.05
|
||||
top_bottom_thickness = 0.8
|
||||
infill_sparse_density = 20
|
||||
retraction_amount = 5.5
|
||||
speed_print = 30
|
||||
speed_infill = 50
|
||||
speed_wall_x = 40
|
||||
speed_topbottom = 20
|
||||
speed_layer_0 = 25
|
||||
cool_min_layer_time_fan_speed_max = 15
|
||||
speed_print = 50
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
|
|
@ -7,15 +7,10 @@ material = PLA
|
|||
weight = -2
|
||||
|
||||
[settings]
|
||||
line_width = 0.53
|
||||
layer_height = 0.15
|
||||
layer_height_0 = 0.4
|
||||
wall_thickness = 1.59
|
||||
top_bottom_thickness = 1.2
|
||||
retraction_amount = 6
|
||||
speed_print = 25
|
||||
speed_infill = 55
|
||||
speed_wall_x = 40
|
||||
speed_topbottom = 20
|
||||
speed_layer_0 = 25
|
||||
cool_min_layer_time_fan_speed_max = 20
|
||||
infill_sparse_density = 20
|
||||
speed_print = 55
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
|
|
@ -1,22 +1,16 @@
|
|||
[general]
|
||||
version = 1
|
||||
name = Normal Quality
|
||||
name = Fast Print
|
||||
machine_type = ultimaker2plus
|
||||
machine_variant = 0.8 mm
|
||||
material = PLA
|
||||
weight = -2
|
||||
|
||||
[settings]
|
||||
line_width = 0.7
|
||||
layer_height = 0.2
|
||||
layer_height_0 = 0.5
|
||||
wall_thickness = 2.1
|
||||
top_bottom_thickness = 1.6
|
||||
top_bottom_thickness = 1.2
|
||||
infill_sparse_density = 20
|
||||
retraction_amount = 6
|
||||
speed_print = 20
|
||||
speed_infill = 40
|
||||
speed_wall_x = 30
|
||||
speed_topbottom = 20
|
||||
speed_layer_0 = 25
|
||||
cool_min_layer_time_fan_speed_max = 25
|
||||
speed_print = 40
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue