mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-07-31 09:02:03 +08:00
Merge branch 'master' of github.com:Ultimaker/Cura
This commit is contained in:
commit
fa93d47d5b
@ -262,12 +262,14 @@ class Toolbox(QObject, Extension):
|
||||
# list of old plugins
|
||||
old_plugin_ids = self._plugin_registry.getInstalledPlugins()
|
||||
installed_package_ids = self._package_manager.getAllInstalledPackageIDs()
|
||||
scheduled_to_remove_package_ids = self._package_manager.getToRemovePackageIDs()
|
||||
|
||||
self._old_plugin_ids = []
|
||||
self._old_plugin_metadata = []
|
||||
|
||||
for plugin_id in old_plugin_ids:
|
||||
if plugin_id not in installed_package_ids:
|
||||
# Neither the installed packages nor the packages that are scheduled to remove are old plugins
|
||||
if plugin_id not in installed_package_ids and plugin_id not in scheduled_to_remove_package_ids:
|
||||
Logger.log('i', 'Found a plugin that was installed with the old plugin browser: %s', plugin_id)
|
||||
|
||||
old_metadata = self._plugin_registry.getMetaData(plugin_id)
|
||||
|
@ -17,6 +17,6 @@ top_bottom_thickness = 0.8
|
||||
infill_sparse_density = 20
|
||||
speed_print = 80
|
||||
speed_layer_0 = =round(speed_print * 30 / 50)
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 80)
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
@ -17,6 +17,6 @@ top_bottom_thickness = 0.8
|
||||
infill_sparse_density = 20
|
||||
speed_print = 50
|
||||
speed_layer_0 = =round(speed_print * 30 / 50)
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 50)
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
@ -17,6 +17,6 @@ top_bottom_thickness = 0.8
|
||||
infill_sparse_density = 20
|
||||
speed_print = 50
|
||||
speed_layer_0 = =round(speed_print * 30 / 50)
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 50)
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
@ -17,6 +17,6 @@ top_bottom_thickness = 0.8
|
||||
infill_sparse_density = 20
|
||||
speed_print = 80
|
||||
speed_layer_0 = =round(speed_print * 30 / 50)
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 80)
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
@ -17,6 +17,6 @@ top_bottom_thickness = 0.8
|
||||
infill_sparse_density = 20
|
||||
speed_print = 50
|
||||
speed_layer_0 = =round(speed_print * 30 / 50)
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 50)
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
@ -17,6 +17,6 @@ top_bottom_thickness = 0.8
|
||||
infill_sparse_density = 20
|
||||
speed_print = 50
|
||||
speed_layer_0 = =round(speed_print * 30 / 50)
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 50)
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
@ -17,6 +17,6 @@ top_bottom_thickness = 0.8
|
||||
infill_sparse_density = 20
|
||||
speed_print = 80
|
||||
speed_layer_0 = =round(speed_print * 30 / 50)
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 80)
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
@ -17,6 +17,6 @@ top_bottom_thickness = 0.8
|
||||
infill_sparse_density = 20
|
||||
speed_print = 50
|
||||
speed_layer_0 = =round(speed_print * 30 / 50)
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 50)
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
@ -17,6 +17,6 @@ top_bottom_thickness = 0.8
|
||||
infill_sparse_density = 20
|
||||
speed_print = 50
|
||||
speed_layer_0 = =round(speed_print * 30 / 50)
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 50)
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
@ -41,13 +41,13 @@ retraction_speed = 40
|
||||
skirt_brim_speed = 40
|
||||
skirt_gap = 5
|
||||
skirt_line_count = 3
|
||||
speed_infill = 60
|
||||
speed_infill = =speed_print
|
||||
speed_print = 60
|
||||
speed_support = 60
|
||||
speed_topbottom = 30
|
||||
speed_topbottom = =math.ceil(speed_print * 30 / 60)
|
||||
speed_travel = 100
|
||||
speed_wall = 60
|
||||
speed_wall_x = 60
|
||||
speed_wall = =speed_print
|
||||
speed_wall_x = =speed_print
|
||||
support_angle = 60
|
||||
support_enable = True
|
||||
support_interface_enable = True
|
||||
|
@ -41,13 +41,13 @@ retraction_speed = 40
|
||||
skirt_brim_speed = 40
|
||||
skirt_gap = 5
|
||||
skirt_line_count = 3
|
||||
speed_infill = 50
|
||||
speed_infill = =speed_print
|
||||
speed_print = 50
|
||||
speed_support = 30
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 50)
|
||||
speed_travel = 50
|
||||
speed_wall = 50
|
||||
speed_wall_x = 50
|
||||
speed_wall = =speed_print
|
||||
speed_wall_x = =speed_print
|
||||
support_angle = 60
|
||||
support_enable = True
|
||||
support_interface_enable = True
|
||||
|
@ -41,13 +41,13 @@ retraction_speed = 40
|
||||
skirt_brim_speed = 40
|
||||
skirt_gap = 5
|
||||
skirt_line_count = 3
|
||||
speed_infill = 50
|
||||
speed_infill = =speed_print
|
||||
speed_print = 50
|
||||
speed_support = 30
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 50)
|
||||
speed_travel = 100
|
||||
speed_wall = 50
|
||||
speed_wall_x = 50
|
||||
speed_wall = =speed_print
|
||||
speed_wall_x = =speed_print
|
||||
support_angle = 60
|
||||
support_enable = True
|
||||
support_interface_enable = True
|
||||
|
@ -1,6 +1,6 @@
|
||||
[general]
|
||||
version = 4
|
||||
name = Coarse Quality
|
||||
name = Coarse
|
||||
definition = fdmprinter
|
||||
|
||||
[metadata]
|
||||
|
@ -43,11 +43,11 @@ skirt_brim_minimal_length = 75
|
||||
skirt_gap = 1.5
|
||||
skirt_line_count = 5
|
||||
speed_infill = =speed_print
|
||||
speed_layer_0 = 25
|
||||
speed_layer_0 = =math.ceil(speed_print * 25 / 50)
|
||||
speed_print = 50
|
||||
speed_topbottom = 40
|
||||
speed_topbottom = =math.ceil(speed_print * 40 / 50)
|
||||
speed_travel = 200
|
||||
speed_wall_0 = 40
|
||||
speed_wall_0 = =math.ceil(speed_print * 40 / 50)
|
||||
speed_wall_x = =speed_print
|
||||
support_angle = 70
|
||||
support_type = buildplate
|
||||
|
@ -43,11 +43,11 @@ skirt_brim_minimal_length = 75
|
||||
skirt_gap = 1.5
|
||||
skirt_line_count = 5
|
||||
speed_infill = =speed_print
|
||||
speed_layer_0 = 25
|
||||
speed_layer_0 = =math.ceil(speed_print * 25 / 50)
|
||||
speed_print = 50
|
||||
speed_topbottom = 40
|
||||
speed_topbottom = =math.ceil(speed_print * 40 / 50)
|
||||
speed_travel = 200
|
||||
speed_wall_0 = 40
|
||||
speed_wall_0 = =math.ceil(speed_print * 40 / 50)
|
||||
speed_wall_x = =speed_print
|
||||
support_angle = 70
|
||||
support_type = buildplate
|
||||
|
@ -43,11 +43,11 @@ skirt_brim_minimal_length = 75
|
||||
skirt_gap = 1.5
|
||||
skirt_line_count = 5
|
||||
speed_infill = =speed_print
|
||||
speed_layer_0 = 25
|
||||
speed_layer_0 = =math.ceil(speed_print * 25 / 50)
|
||||
speed_print = 50
|
||||
speed_topbottom = 40
|
||||
speed_topbottom = =math.ceil(speed_print * 40 / 50)
|
||||
speed_travel = 200
|
||||
speed_wall_0 = 40
|
||||
speed_wall_0 = =math.ceil(speed_print * 40 / 50)
|
||||
speed_wall_x = =speed_print
|
||||
support_angle = 70
|
||||
support_type = buildplate
|
||||
|
@ -1,6 +1,6 @@
|
||||
[general]
|
||||
version = 4
|
||||
name = Draft Quality
|
||||
name = Draft
|
||||
definition = fdmprinter
|
||||
|
||||
[metadata]
|
||||
|
@ -1,6 +1,6 @@
|
||||
[general]
|
||||
version = 4
|
||||
name = Extra Coarse Quality
|
||||
name = Extra Coarse
|
||||
definition = fdmprinter
|
||||
|
||||
[metadata]
|
||||
|
@ -43,11 +43,11 @@ skirt_brim_minimal_length = 75
|
||||
skirt_gap = 1.5
|
||||
skirt_line_count = 5
|
||||
speed_infill = =speed_print
|
||||
speed_layer_0 = 25
|
||||
speed_layer_0 = =math.ceil(speed_print * 25 / 30)
|
||||
speed_print = 30
|
||||
speed_topbottom = 40
|
||||
speed_topbottom = =math.ceil(speed_print * 40 / 30)
|
||||
speed_travel = 200
|
||||
speed_wall_0 = 40
|
||||
speed_wall_0 = =math.ceil(speed_print * 40 / 30)
|
||||
speed_wall_x = =speed_print
|
||||
support_angle = 70
|
||||
support_type = buildplate
|
||||
|
@ -43,11 +43,11 @@ skirt_brim_minimal_length = 75
|
||||
skirt_gap = 1.5
|
||||
skirt_line_count = 5
|
||||
speed_infill = =speed_print
|
||||
speed_layer_0 = 25
|
||||
speed_layer_0 = =math.ceil(speed_print * 25 / 30)
|
||||
speed_print = 30
|
||||
speed_topbottom = 40
|
||||
speed_topbottom = =math.ceil(speed_print * 40 / 30)
|
||||
speed_travel = 200
|
||||
speed_wall_0 = 40
|
||||
speed_wall_0 = =math.ceil(speed_print * 40 / 30)
|
||||
speed_wall_x = =speed_print
|
||||
support_angle = 70
|
||||
support_type = buildplate
|
||||
|
@ -43,11 +43,11 @@ skirt_brim_minimal_length = 75
|
||||
skirt_gap = 1.5
|
||||
skirt_line_count = 5
|
||||
speed_infill = =speed_print
|
||||
speed_layer_0 = 25
|
||||
speed_layer_0 = =math.ceil(speed_print * 25 / 30)
|
||||
speed_print = 30
|
||||
speed_topbottom = 40
|
||||
speed_topbottom = =math.ceil(speed_print * 40 / 30)
|
||||
speed_travel = 200
|
||||
speed_wall_0 = 40
|
||||
speed_wall_0 = =math.ceil(speed_print * 40 / 30)
|
||||
speed_wall_x = =speed_print
|
||||
support_angle = 70
|
||||
support_type = buildplate
|
||||
|
@ -1,6 +1,6 @@
|
||||
[general]
|
||||
version = 4
|
||||
name = Low Quality
|
||||
name = Normal
|
||||
definition = fdmprinter
|
||||
|
||||
[metadata]
|
||||
@ -14,8 +14,8 @@ global_quality = True
|
||||
infill_sparse_density = 10
|
||||
layer_height = 0.15
|
||||
cool_min_layer_time = 3
|
||||
speed_wall_0 = 40
|
||||
speed_wall_x = 80
|
||||
speed_infill = 100
|
||||
speed_wall_0 = =math.ceil(speed_print * 40 / 60)
|
||||
speed_wall_x = =math.ceil(speed_print * 80 / 60)
|
||||
speed_infill = =math.ceil(speed_print * 100 / 60)
|
||||
wall_thickness = 1
|
||||
speed_topbottom = 30
|
||||
speed_topbottom = =math.ceil(speed_print * 30 / 60)
|
||||
|
@ -12,5 +12,5 @@ global_quality = True
|
||||
|
||||
[values]
|
||||
layer_height = 0.06
|
||||
speed_topbottom = 15
|
||||
speed_infill = 80
|
||||
speed_topbottom = =math.ceil(speed_print * 15 / 60)
|
||||
speed_infill = =math.ceil(speed_print * 80 / 60)
|
||||
|
@ -43,13 +43,13 @@ skin_no_small_gaps_heuristic = False
|
||||
skirt_brim_minimal_length = 100
|
||||
skirt_brim_speed = 25
|
||||
skirt_line_count = 2
|
||||
speed_layer_0 = 14
|
||||
speed_layer_0 = =math.ceil(speed_print * 14 / 40)
|
||||
speed_print = 40
|
||||
speed_slowdown_layers = 1
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 40)
|
||||
speed_travel = 120
|
||||
speed_travel_layer_0 = 60
|
||||
speed_wall = 25
|
||||
speed_wall_x = 35
|
||||
speed_wall = =math.ceil(speed_print * 25 / 40)
|
||||
speed_wall_x = =math.ceil(speed_print * 35 / 40)
|
||||
top_thickness = =top_bottom_thickness
|
||||
wall_thickness = 0.8
|
||||
|
@ -43,13 +43,13 @@ skin_no_small_gaps_heuristic = False
|
||||
skirt_brim_minimal_length = 100
|
||||
skirt_brim_speed = 25
|
||||
skirt_line_count = 2
|
||||
speed_layer_0 = 14
|
||||
speed_layer_0 = =math.ceil(speed_print * 14 / 40)
|
||||
speed_print = 40
|
||||
speed_slowdown_layers = 1
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 40)
|
||||
speed_travel = 120
|
||||
speed_travel_layer_0 = 60
|
||||
speed_wall = 25
|
||||
speed_wall_x = 35
|
||||
speed_wall = =math.ceil(speed_print * 25 / 40)
|
||||
speed_wall_x = =math.ceil(speed_print * 35 / 40)
|
||||
top_thickness = =top_bottom_thickness
|
||||
wall_thickness = 0.8
|
||||
|
@ -43,13 +43,13 @@ skin_no_small_gaps_heuristic = False
|
||||
skirt_brim_minimal_length = 100
|
||||
skirt_brim_speed = 25
|
||||
skirt_line_count = 2
|
||||
speed_layer_0 = 14
|
||||
speed_layer_0 = =math.ceil(speed_print * 14 / 40)
|
||||
speed_print = 40
|
||||
speed_slowdown_layers = 1
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 40)
|
||||
speed_travel = 120
|
||||
speed_travel_layer_0 = 60
|
||||
speed_wall = 25
|
||||
speed_wall_x = 35
|
||||
speed_wall = =math.ceil(speed_print * 25 / 40)
|
||||
speed_wall_x = =math.ceil(speed_print * 35 / 40)
|
||||
top_thickness = =top_bottom_thickness
|
||||
wall_thickness = 0.8
|
||||
|
@ -43,13 +43,13 @@ skin_no_small_gaps_heuristic = False
|
||||
skirt_brim_minimal_length = 100
|
||||
skirt_brim_speed = 25
|
||||
skirt_line_count = 2
|
||||
speed_layer_0 = 14
|
||||
speed_layer_0 = =math.ceil(speed_print * 14 / 40)
|
||||
speed_print = 40
|
||||
speed_slowdown_layers = 1
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 40)
|
||||
speed_travel = 120
|
||||
speed_travel_layer_0 = 60
|
||||
speed_wall = 25
|
||||
speed_wall_x = 35
|
||||
speed_wall = =math.ceil(speed_print * 25 / 40)
|
||||
speed_wall_x = =math.ceil(speed_print * 35 / 40)
|
||||
top_thickness = =top_bottom_thickness
|
||||
wall_thickness = 0.8
|
||||
|
@ -41,13 +41,13 @@ skin_no_small_gaps_heuristic = False
|
||||
skirt_brim_minimal_length = 100
|
||||
skirt_brim_speed = 20
|
||||
skirt_line_count = 3
|
||||
speed_layer_0 = 20
|
||||
speed_layer_0 = =math.ceil(speed_print * 20 / 45)
|
||||
speed_print = 45
|
||||
speed_slowdown_layers = 1
|
||||
speed_topbottom = 25
|
||||
speed_topbottom = =math.ceil(speed_print * 25 / 45)
|
||||
speed_travel = 120
|
||||
speed_travel_layer_0 = 60
|
||||
speed_wall = 25
|
||||
speed_wall_x = 35
|
||||
speed_wall = =math.ceil(speed_print * 25 / 45)
|
||||
speed_wall_x = =math.ceil(speed_print * 35 / 45)
|
||||
top_thickness = 0.8
|
||||
wall_thickness = 0.8
|
||||
|
@ -41,13 +41,13 @@ skin_no_small_gaps_heuristic = False
|
||||
skirt_brim_minimal_length = 100
|
||||
skirt_brim_speed = 20
|
||||
skirt_line_count = 3
|
||||
speed_layer_0 = 20
|
||||
speed_layer_0 = =math.ceil(speed_print * 20 / 45)
|
||||
speed_print = 45
|
||||
speed_slowdown_layers = 1
|
||||
speed_topbottom = 25
|
||||
speed_topbottom = =math.ceil(speed_print * 25 / 45)
|
||||
speed_travel = 120
|
||||
speed_travel_layer_0 = 60
|
||||
speed_wall = 25
|
||||
speed_wall_x = 35
|
||||
speed_wall = =math.ceil(speed_print * 25 / 45)
|
||||
speed_wall_x = =math.ceil(speed_print * 35 / 45)
|
||||
top_thickness = 0.8
|
||||
wall_thickness = 0.8
|
||||
|
@ -42,13 +42,13 @@ skin_no_small_gaps_heuristic = False
|
||||
skirt_brim_minimal_length = 100
|
||||
skirt_brim_speed = 20
|
||||
skirt_line_count = 3
|
||||
speed_layer_0 = 20
|
||||
speed_layer_0 = =math.ceil(speed_print * 20 / 45)
|
||||
speed_print = 45
|
||||
speed_slowdown_layers = 1
|
||||
speed_topbottom = 25
|
||||
speed_topbottom = =math.ceil(speed_print * 25 / 45)
|
||||
speed_travel = 120
|
||||
speed_travel_layer_0 = 60
|
||||
speed_wall = 25
|
||||
speed_wall_x = 35
|
||||
speed_wall = =math.ceil(speed_print * 25 / 45)
|
||||
speed_wall_x = =math.ceil(speed_print * 35 / 45)
|
||||
top_thickness = 0.8
|
||||
wall_thickness = 0.8
|
||||
|
@ -42,13 +42,13 @@ skin_no_small_gaps_heuristic = False
|
||||
skirt_brim_minimal_length = 100
|
||||
skirt_brim_speed = 20
|
||||
skirt_line_count = 3
|
||||
speed_layer_0 = 20
|
||||
speed_layer_0 = =math.ceil(speed_print * 20 / 45)
|
||||
speed_print = 45
|
||||
speed_slowdown_layers = 1
|
||||
speed_topbottom = 25
|
||||
speed_topbottom = =math.ceil(speed_print * 25 / 45)
|
||||
speed_travel = 120
|
||||
speed_travel_layer_0 = 60
|
||||
speed_wall = 25
|
||||
speed_wall_x = 35
|
||||
speed_wall = =math.ceil(speed_print * 25 / 45)
|
||||
speed_wall_x = =math.ceil(speed_print * 35 / 45)
|
||||
top_thickness = 0.8
|
||||
wall_thickness = 0.8
|
||||
|
@ -41,13 +41,13 @@ skin_no_small_gaps_heuristic = False
|
||||
skirt_brim_minimal_length = 100
|
||||
skirt_brim_speed = 20
|
||||
skirt_line_count = 3
|
||||
speed_layer_0 = 20
|
||||
speed_layer_0 = =math.ceil(speed_print * 20 / 45)
|
||||
speed_print = 45
|
||||
speed_slowdown_layers = 1
|
||||
speed_topbottom = 25
|
||||
speed_topbottom = =math.ceil(speed_print * 25 / 45)
|
||||
speed_travel = 120
|
||||
speed_travel_layer_0 = 60
|
||||
speed_wall = 25
|
||||
speed_wall_x = 35
|
||||
speed_wall = =math.ceil(speed_print * 25 / 45)
|
||||
speed_wall_x = =math.ceil(speed_print * 35 / 45)
|
||||
top_thickness = 0.8
|
||||
wall_thickness = 0.8
|
||||
|
@ -41,13 +41,13 @@ skin_no_small_gaps_heuristic = False
|
||||
skirt_brim_minimal_length = 100
|
||||
skirt_brim_speed = 20
|
||||
skirt_line_count = 3
|
||||
speed_layer_0 = 20
|
||||
speed_layer_0 = =math.ceil(speed_print * 20 / 45)
|
||||
speed_print = 45
|
||||
speed_slowdown_layers = 1
|
||||
speed_topbottom = 25
|
||||
speed_topbottom = =math.ceil(speed_print * 25 / 45)
|
||||
speed_travel = 120
|
||||
speed_travel_layer_0 = 60
|
||||
speed_wall = 25
|
||||
speed_wall_x = 35
|
||||
speed_wall = =math.ceil(speed_print * 25 / 45)
|
||||
speed_wall_x = =math.ceil(speed_print * 35 / 45)
|
||||
top_thickness = 0.8
|
||||
wall_thickness = 0.8
|
||||
|
@ -43,13 +43,13 @@ skin_no_small_gaps_heuristic = False
|
||||
skirt_brim_minimal_length = 100
|
||||
skirt_brim_speed = 20
|
||||
skirt_line_count = 3
|
||||
speed_layer_0 = 20
|
||||
speed_layer_0 = =math.ceil(speed_print * 20 / 45)
|
||||
speed_print = 45
|
||||
speed_slowdown_layers = 1
|
||||
speed_topbottom = 25
|
||||
speed_topbottom = =math.ceil(speed_print * 25 / 45)
|
||||
speed_travel = 120
|
||||
speed_travel_layer_0 = 60
|
||||
speed_wall = 25
|
||||
speed_wall_x = 35
|
||||
speed_wall = =math.ceil(speed_print * 25 / 45)
|
||||
speed_wall_x = =math.ceil(speed_print * 35 / 45)
|
||||
top_thickness = 0.8
|
||||
wall_thickness = 0.8
|
||||
|
@ -43,13 +43,13 @@ skin_no_small_gaps_heuristic = False
|
||||
skirt_brim_minimal_length = 100
|
||||
skirt_brim_speed = 20
|
||||
skirt_line_count = 3
|
||||
speed_layer_0 = 20
|
||||
speed_layer_0 = =math.ceil(speed_print * 20 / 45)
|
||||
speed_print = 45
|
||||
speed_slowdown_layers = 1
|
||||
speed_topbottom = 25
|
||||
speed_topbottom = =math.ceil(speed_print * 25 / 45)
|
||||
speed_travel = 120
|
||||
speed_travel_layer_0 = 60
|
||||
speed_wall = 25
|
||||
speed_wall_x = 35
|
||||
speed_wall = =math.ceil(speed_print * 25 / 45)
|
||||
speed_wall_x = =math.ceil(speed_print * 35 / 45)
|
||||
top_thickness = 0.8
|
||||
wall_thickness = 0.8
|
||||
|
@ -15,11 +15,11 @@ layer_height = 0.35
|
||||
layer_height_0 = 0.3
|
||||
|
||||
speed_print = 70
|
||||
speed_infill = 60
|
||||
speed_layer_0 = 20
|
||||
speed_wall_0 = 30
|
||||
speed_wall_x = 50
|
||||
speed_topbottom = 30
|
||||
speed_infill = =math.ceil(speed_print * 60 / 70)
|
||||
speed_layer_0 = =math.ceil(speed_print * 20 / 70)
|
||||
speed_wall_0 = =math.ceil(speed_print * 30 / 70)
|
||||
speed_wall_x = =math.ceil(speed_print * 50 / 70)
|
||||
speed_topbottom = =math.ceil(speed_print * 30 / 70)
|
||||
speed_travel = 120
|
||||
|
||||
material_print_temperature = 246
|
||||
|
@ -15,11 +15,11 @@ layer_height = 0.06
|
||||
layer_height_0 = 0.3
|
||||
|
||||
speed_print = 40
|
||||
speed_infill = 50
|
||||
speed_layer_0 = 15
|
||||
speed_wall_0 = 20
|
||||
speed_wall_x = 40
|
||||
speed_topbottom = 20
|
||||
speed_infill = =math.ceil(speed_print * 50 / 40)
|
||||
speed_layer_0 = =math.ceil(speed_print * 15 / 40)
|
||||
speed_wall_0 = =math.ceil(speed_print * 20 / 40)
|
||||
speed_wall_x = =speed_print
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 40)
|
||||
speed_travel = 120
|
||||
|
||||
material_print_temperature = 246
|
||||
|
@ -15,11 +15,11 @@ layer_height = 0.1
|
||||
layer_height_0 = 0.3
|
||||
|
||||
speed_print = 50
|
||||
speed_infill = 60
|
||||
speed_layer_0 = 20
|
||||
speed_wall_0 = 25
|
||||
speed_wall_x = 45
|
||||
speed_topbottom = 30
|
||||
speed_infill = =math.ceil(speed_print * 60 / 50)
|
||||
speed_layer_0 = =math.ceil(speed_print * 20 / 50)
|
||||
speed_wall_0 = =math.ceil(speed_print * 25 / 50)
|
||||
speed_wall_x = =math.ceil(speed_print * 45 / 50)
|
||||
speed_topbottom = =math.ceil(speed_print * 30 / 50)
|
||||
speed_travel = 120
|
||||
|
||||
material_print_temperature = 246
|
||||
|
@ -15,11 +15,11 @@ layer_height = 0.2
|
||||
layer_height_0 = 0.3
|
||||
|
||||
speed_print = 70
|
||||
speed_infill = 60
|
||||
speed_layer_0 = 20
|
||||
speed_wall_0 = 30
|
||||
speed_wall_x = 50
|
||||
speed_topbottom = 30
|
||||
speed_infill = =math.ceil(speed_print * 60 / 70)
|
||||
speed_layer_0 = =math.ceil(speed_print * 20 / 70)
|
||||
speed_wall_0 = =math.ceil(speed_print * 30 / 70)
|
||||
speed_wall_x = =math.ceil(speed_print * 50 / 70)
|
||||
speed_topbottom = =math.ceil(speed_print * 30 / 70)
|
||||
speed_travel = 120
|
||||
|
||||
material_print_temperature = 246
|
||||
|
@ -15,11 +15,11 @@ layer_height = 0.15
|
||||
layer_height_0 = 0.3
|
||||
|
||||
speed_print = 60
|
||||
speed_infill = 50
|
||||
speed_layer_0 = 15
|
||||
speed_wall_0 = 20
|
||||
speed_wall_x = 40
|
||||
speed_topbottom = 20
|
||||
speed_infill = =math.ceil(speed_print * 50 / 60)
|
||||
speed_layer_0 = =math.ceil(speed_print * 15 / 60)
|
||||
speed_wall_0 = =math.ceil(speed_print * 20 / 60)
|
||||
speed_wall_x = =math.ceil(speed_print * 40 / 60)
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 60)
|
||||
speed_travel = 120
|
||||
|
||||
material_print_temperature = 246
|
||||
|
@ -15,11 +15,11 @@ layer_height = 0.06
|
||||
adhesion_type = skirt
|
||||
|
||||
speed_print = 40
|
||||
speed_infill = 50
|
||||
speed_layer_0 = 15
|
||||
speed_wall_0 = 20
|
||||
speed_wall_x = 40
|
||||
speed_topbottom = 20
|
||||
speed_infill = =math.ceil(speed_print * 50 / 40)
|
||||
speed_layer_0 = =math.ceil(speed_print * 15 / 40)
|
||||
speed_wall_0 = =math.ceil(speed_print * 20 / 40)
|
||||
speed_wall_x = =speed_print
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 40)
|
||||
speed_travel = 120
|
||||
|
||||
material_print_temperature = 214
|
||||
|
@ -15,11 +15,11 @@ layer_height = 0.1
|
||||
adhesion_type = skirt
|
||||
|
||||
speed_print = 50
|
||||
speed_infill = 60
|
||||
speed_layer_0 = 20
|
||||
speed_wall_0 = 25
|
||||
speed_wall_x = 45
|
||||
speed_topbottom = 30
|
||||
speed_infill = =math.ceil(speed_print * 60 / 50)
|
||||
speed_layer_0 = =math.ceil(speed_print * 20 / 50)
|
||||
speed_wall_0 = =math.ceil(speed_print * 25 / 50)
|
||||
speed_wall_x = =math.ceil(speed_print * 45 / 50)
|
||||
speed_topbottom = =math.ceil(speed_print * 30 / 50)
|
||||
speed_travel = 120
|
||||
|
||||
material_print_temperature = 214
|
||||
|
@ -15,11 +15,11 @@ layer_height = 0.15
|
||||
adhesion_type = skirt
|
||||
|
||||
speed_print = 60
|
||||
speed_infill = 50
|
||||
speed_layer_0 = 15
|
||||
speed_wall_0 = 20
|
||||
speed_wall_x = 40
|
||||
speed_topbottom = 20
|
||||
speed_infill = =math.ceil(speed_print * 50 / 60)
|
||||
speed_layer_0 = =math.ceil(speed_print * 15 / 60)
|
||||
speed_wall_0 = =math.ceil(speed_print * 20 / 60)
|
||||
speed_wall_x = =math.ceil(speed_print * 40 / 60)
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 60)
|
||||
speed_travel = 120
|
||||
|
||||
material_print_temperature = 214
|
||||
|
@ -18,6 +18,6 @@ top_bottom_thickness = 0.72
|
||||
infill_sparse_density = 22
|
||||
speed_print = 50
|
||||
speed_layer_0 = =round(speed_print * 30 / 50)
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 50)
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
@ -18,6 +18,6 @@ top_bottom_thickness = 0.72
|
||||
infill_sparse_density = 22
|
||||
speed_print = 50
|
||||
speed_layer_0 = =round(speed_print * 30 / 50)
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 50)
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
@ -18,6 +18,6 @@ top_bottom_thickness = 0.72
|
||||
infill_sparse_density = 22
|
||||
speed_print = 50
|
||||
speed_layer_0 = =round(speed_print * 30 / 50)
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 50)
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
@ -18,6 +18,6 @@ top_bottom_thickness = 0.72
|
||||
infill_sparse_density = 22
|
||||
speed_print = 50
|
||||
speed_layer_0 = =round(speed_print * 30 / 50)
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 50)
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
@ -18,6 +18,6 @@ top_bottom_thickness = 0.72
|
||||
infill_sparse_density = 22
|
||||
speed_print = 50
|
||||
speed_layer_0 = =round(speed_print * 30 / 50)
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 50)
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
@ -18,6 +18,6 @@ top_bottom_thickness = 0.72
|
||||
infill_sparse_density = 22
|
||||
speed_print = 50
|
||||
speed_layer_0 = =round(speed_print * 30 / 50)
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 50)
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
@ -18,6 +18,6 @@ top_bottom_thickness = 0.72
|
||||
infill_sparse_density = 22
|
||||
speed_print = 50
|
||||
speed_layer_0 = =round(speed_print * 30 / 50)
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 50)
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
@ -18,6 +18,6 @@ top_bottom_thickness = 0.72
|
||||
infill_sparse_density = 22
|
||||
speed_print = 50
|
||||
speed_layer_0 = =round(speed_print * 30 / 50)
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 50)
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
@ -18,6 +18,6 @@ top_bottom_thickness = 0.72
|
||||
infill_sparse_density = 22
|
||||
speed_print = 50
|
||||
speed_layer_0 = =round(speed_print * 30 / 50)
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 50)
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
@ -18,6 +18,6 @@ top_bottom_thickness = 0.72
|
||||
infill_sparse_density = 22
|
||||
speed_print = 50
|
||||
speed_layer_0 = =round(speed_print * 30 / 50)
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 50)
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
@ -18,6 +18,6 @@ top_bottom_thickness = 0.72
|
||||
infill_sparse_density = 22
|
||||
speed_print = 50
|
||||
speed_layer_0 = =round(speed_print * 30 / 50)
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 50)
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
@ -18,6 +18,6 @@ top_bottom_thickness = 0.72
|
||||
infill_sparse_density = 22
|
||||
speed_print = 50
|
||||
speed_layer_0 = =round(speed_print * 30 / 50)
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 50)
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
@ -18,6 +18,6 @@ top_bottom_thickness = 0.72
|
||||
infill_sparse_density = 22
|
||||
speed_print = 50
|
||||
speed_layer_0 = =round(speed_print * 30 / 50)
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 50)
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
@ -18,6 +18,6 @@ top_bottom_thickness = 0.72
|
||||
infill_sparse_density = 22
|
||||
speed_print = 50
|
||||
speed_layer_0 = =round(speed_print * 30 / 50)
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 50)
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
@ -18,6 +18,6 @@ top_bottom_thickness = 0.72
|
||||
infill_sparse_density = 22
|
||||
speed_print = 50
|
||||
speed_layer_0 = =round(speed_print * 30 / 50)
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 50)
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
@ -18,6 +18,6 @@ top_bottom_thickness = 0.72
|
||||
infill_sparse_density = 22
|
||||
speed_print = 50
|
||||
speed_layer_0 = =round(speed_print * 30 / 50)
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 50)
|
||||
cool_min_layer_time = 5
|
||||
cool_min_speed = 10
|
||||
|
@ -14,13 +14,13 @@ brim_width = 4.0
|
||||
infill_pattern = zigzag
|
||||
layer_height = 0.3
|
||||
material_diameter = 1.75
|
||||
speed_infill = 50
|
||||
speed_infill = =speed_print
|
||||
speed_print = 50
|
||||
speed_support = 30
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 50)
|
||||
speed_travel = 100
|
||||
speed_wall = 50
|
||||
speed_wall_x = 50
|
||||
speed_wall = =speed_print
|
||||
speed_wall_x = =speed_print
|
||||
support_angle = 60
|
||||
support_enable = True
|
||||
support_interface_enable = True
|
||||
|
@ -14,13 +14,13 @@ brim_width = 4.0
|
||||
infill_pattern = zigzag
|
||||
layer_height = 0.1
|
||||
material_diameter = 1.75
|
||||
speed_infill = 50
|
||||
speed_infill = =speed_print
|
||||
speed_print = 50
|
||||
speed_support = 30
|
||||
speed_topbottom = 15
|
||||
speed_topbottom = =math.ceil(speed_print * 15 / 50)
|
||||
speed_travel = 100
|
||||
speed_wall = 50
|
||||
speed_wall_x = 50
|
||||
speed_wall = =speed_print
|
||||
speed_wall_x = =speed_print
|
||||
support_angle = 60
|
||||
support_enable = True
|
||||
support_interface_enable = True
|
||||
|
@ -14,13 +14,13 @@ brim_width = 4.0
|
||||
infill_pattern = zigzag
|
||||
layer_height = 0.2
|
||||
material_diameter = 1.75
|
||||
speed_infill = 60
|
||||
speed_infill = =math.ceil(speed_print * 60 / 50)
|
||||
speed_print = 50
|
||||
speed_support = 30
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 50)
|
||||
speed_travel = 100
|
||||
speed_wall = 50
|
||||
speed_wall_x = 50
|
||||
speed_wall = =speed_print
|
||||
speed_wall_x = =speed_print
|
||||
support_angle = 60
|
||||
support_enable = True
|
||||
support_interface_enable = True
|
||||
|
@ -1,6 +1,6 @@
|
||||
[general]
|
||||
version = 4
|
||||
name = Draft Quality
|
||||
name = Draft
|
||||
definition = ultimaker2
|
||||
|
||||
[metadata]
|
||||
|
@ -1,6 +1,6 @@
|
||||
[general]
|
||||
version = 4
|
||||
name = Low Quality
|
||||
name = Low
|
||||
definition = ultimaker2
|
||||
|
||||
[metadata]
|
||||
@ -14,8 +14,8 @@ global_quality = True
|
||||
infill_sparse_density = 10
|
||||
layer_height = 0.15
|
||||
cool_min_layer_time = 3
|
||||
speed_wall_0 = 40
|
||||
speed_wall_x = 80
|
||||
speed_infill = 100
|
||||
speed_wall_0 = =math.ceil(speed_print * 40 / 60)
|
||||
speed_wall_x = =math.ceil(speed_print * 80 / 60)
|
||||
speed_infill = =math.ceil(speed_print * 100 / 60)
|
||||
wall_thickness = 1
|
||||
speed_topbottom = 30
|
||||
speed_topbottom = =math.ceil(speed_print * 30 / 60)
|
||||
|
@ -12,5 +12,5 @@ global_quality = True
|
||||
|
||||
[values]
|
||||
layer_height = 0.06
|
||||
speed_topbottom = 15
|
||||
speed_infill = 80
|
||||
speed_topbottom = =math.ceil(speed_print * 15 / 60)
|
||||
speed_infill = =math.ceil(speed_print * 80 / 60)
|
||||
|
@ -18,8 +18,8 @@ infill_sparse_density = 18
|
||||
layer_height = 0.15
|
||||
speed_layer_0 = =round(speed_print * 30 / 60)
|
||||
speed_print = 60
|
||||
speed_topbottom = 30
|
||||
speed_topbottom = =math.ceil(speed_print * 30 / 60)
|
||||
speed_travel = 150
|
||||
speed_wall = 50
|
||||
speed_wall = =math.ceil(speed_print * 50 / 60)
|
||||
top_bottom_thickness = 0.75
|
||||
wall_thickness = 0.7
|
||||
|
@ -18,6 +18,6 @@ infill_sparse_density = 22
|
||||
layer_height = 0.06
|
||||
speed_layer_0 = =round(speed_print * 30 / 50)
|
||||
speed_print = 50
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 50)
|
||||
top_bottom_thickness = 0.72
|
||||
wall_thickness = 1.05
|
||||
|
@ -18,6 +18,6 @@ infill_sparse_density = 20
|
||||
layer_height = 0.1
|
||||
speed_layer_0 = =round(speed_print * 30 / 50)
|
||||
speed_print = 50
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 50)
|
||||
top_bottom_thickness = 0.8
|
||||
wall_thickness = 1.05
|
||||
|
@ -18,8 +18,8 @@ infill_sparse_density = 20
|
||||
layer_height = 0.15
|
||||
speed_layer_0 = =round(speed_print * 30 / 55)
|
||||
speed_print = 55
|
||||
speed_topbottom = 20
|
||||
speed_wall = 40
|
||||
speed_wall_0 = 25
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 55)
|
||||
speed_wall = =math.ceil(speed_print * 40 / 55)
|
||||
speed_wall_0 = =math.ceil(speed_print * 25 / 55)
|
||||
top_bottom_thickness = 1.2
|
||||
wall_thickness = 1.59
|
||||
|
@ -18,6 +18,6 @@ infill_sparse_density = 20
|
||||
layer_height = 0.2
|
||||
speed_layer_0 = =round(speed_print * 30 / 40)
|
||||
speed_print = 40
|
||||
speed_wall_0 = 25
|
||||
speed_wall_0 = =math.ceil(speed_print * 25 / 40)
|
||||
top_bottom_thickness = 1.2
|
||||
wall_thickness = 2.1
|
||||
|
@ -20,8 +20,11 @@ infill_sparse_density = 18
|
||||
layer_height = 0.15
|
||||
speed_layer_0 = =round(speed_print * 30 / 55)
|
||||
speed_print = 55
|
||||
speed_topbottom = 30
|
||||
speed_topbottom = =math.ceil(speed_print * 30 / 55)
|
||||
speed_travel = 150
|
||||
speed_wall = 40
|
||||
speed_wall = =math.ceil(speed_print * 40 / 55)
|
||||
top_bottom_thickness = 0.75
|
||||
wall_thickness = 0.7
|
||||
speed_wall_0 = =math.ceil(speed_print * 40 / 55)
|
||||
speed_wall_x = =math.ceil(speed_print * 80 / 55)
|
||||
speed_infill = =math.ceil(speed_print * 100 / 55)
|
||||
|
@ -20,6 +20,8 @@ infill_sparse_density = 22
|
||||
layer_height = 0.06
|
||||
speed_layer_0 = =round(speed_print * 30 / 45)
|
||||
speed_print = 45
|
||||
speed_wall = 30
|
||||
speed_wall = =math.ceil(speed_print * 30 / 45)
|
||||
top_bottom_thickness = 0.72
|
||||
wall_thickness = 1.05
|
||||
speed_topbottom = =math.ceil(speed_print * 15 / 45)
|
||||
speed_infill = =math.ceil(speed_print * 80 / 45)
|
||||
|
@ -20,6 +20,6 @@ infill_sparse_density = 20
|
||||
layer_height = 0.1
|
||||
speed_layer_0 = =round(speed_print * 30 / 45)
|
||||
speed_print = 45
|
||||
speed_wall = 30
|
||||
speed_wall = =math.ceil(speed_print * 30 / 45)
|
||||
top_bottom_thickness = 0.8
|
||||
wall_thickness = 1.05
|
||||
|
@ -18,7 +18,7 @@ cool_min_layer_time_fan_speed_max = 20
|
||||
cool_min_speed = 20
|
||||
infill_sparse_density = 20
|
||||
layer_height = 0.15
|
||||
speed_infill = 55
|
||||
speed_infill = =math.ceil(speed_print * 55 / 40)
|
||||
speed_layer_0 = =round(speed_print * 30 / 40)
|
||||
speed_print = 40
|
||||
top_bottom_thickness = 1.2
|
||||
|
@ -21,6 +21,10 @@ layer_height = 0.15
|
||||
speed_layer_0 = =round(speed_print * 30 / 45)
|
||||
speed_print = 45
|
||||
speed_travel = 150
|
||||
speed_wall = 40
|
||||
speed_wall = =math.ceil(speed_print * 40 / 45)
|
||||
top_bottom_thickness = 0.75
|
||||
wall_thickness = 0.7
|
||||
speed_wall_0 = =math.ceil(speed_print * 40 / 45)
|
||||
speed_topbottom = =math.ceil(speed_print * 30 / 45)
|
||||
speed_wall_x = =math.ceil(speed_print * 80 / 45)
|
||||
speed_infill = =math.ceil(speed_print * 100 / 45)
|
||||
|
@ -20,6 +20,8 @@ infill_sparse_density = 22
|
||||
layer_height = 0.06
|
||||
speed_layer_0 = =round(speed_print * 30 / 45)
|
||||
speed_print = 45
|
||||
speed_wall = 30
|
||||
speed_wall = =math.ceil(speed_print * 30 / 45)
|
||||
top_bottom_thickness = 0.72
|
||||
wall_thickness = 1.05
|
||||
speed_topbottom = =math.ceil(speed_print * 15 / 45)
|
||||
speed_infill = =math.ceil(speed_print * 80 / 45)
|
||||
|
@ -20,6 +20,6 @@ infill_sparse_density = 20
|
||||
layer_height = 0.1
|
||||
speed_layer_0 = =round(speed_print * 30 / 45)
|
||||
speed_print = 45
|
||||
speed_wall = 30
|
||||
speed_wall = =math.ceil(speed_print * 30 / 45)
|
||||
top_bottom_thickness = 0.8
|
||||
wall_thickness = 1.05
|
||||
|
@ -29,11 +29,11 @@ raft_interface_line_spacing = 1
|
||||
raft_interface_line_width = 0.8
|
||||
raft_margin = 15
|
||||
raft_surface_line_width = 0.38
|
||||
speed_layer_0 = 15
|
||||
speed_layer_0 = =math.ceil(speed_print * 15 / 25)
|
||||
speed_print = 25
|
||||
speed_topbottom = 20
|
||||
speed_wall_0 = 20
|
||||
speed_wall_x = 25
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 25)
|
||||
speed_wall_0 = =math.ceil(speed_print * 20 / 25)
|
||||
speed_wall_x = =speed_print
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = 20
|
||||
|
@ -29,11 +29,11 @@ raft_interface_line_spacing = 1
|
||||
raft_interface_line_width = 0.8
|
||||
raft_margin = 15
|
||||
raft_surface_line_width = 0.38
|
||||
speed_layer_0 = 15
|
||||
speed_layer_0 = =math.ceil(speed_print * 15 / 35)
|
||||
speed_print = 35
|
||||
speed_topbottom = 20
|
||||
speed_wall_0 = 20
|
||||
speed_wall_x = 30
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 35)
|
||||
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
|
||||
|
@ -32,10 +32,10 @@ raft_surface_line_width = 0.57
|
||||
raft_surface_thickness = 0.2
|
||||
speed_layer_0 = =round(speed_print * 30 / 50)
|
||||
speed_print = 25
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 25)
|
||||
speed_travel = 150
|
||||
speed_wall_0 = 20
|
||||
speed_wall_x = 25
|
||||
speed_wall_0 = =math.ceil(speed_print * 20 / 25)
|
||||
speed_wall_x = =speed_print
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = 20
|
||||
|
@ -30,12 +30,12 @@ raft_interface_line_width = 1.2
|
||||
raft_margin = 15
|
||||
raft_surface_line_width = 0.57
|
||||
raft_surface_thickness = 0.2
|
||||
speed_layer_0 = 30
|
||||
speed_layer_0 = =math.ceil(speed_print * 30 / 35)
|
||||
speed_print = 35
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 35)
|
||||
speed_travel = 150
|
||||
speed_wall_0 = 30
|
||||
speed_wall_x = 35
|
||||
speed_wall_0 = =math.ceil(speed_print * 30 / 35)
|
||||
speed_wall_x = =speed_print
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = 20
|
||||
|
@ -30,9 +30,9 @@ raft_surface_line_width = 0.7
|
||||
raft_surface_thickness = 0.2
|
||||
speed_layer_0 = =round(speed_print * 30 / 25)
|
||||
speed_print = 25
|
||||
speed_topbottom = 20
|
||||
speed_wall_0 = 20
|
||||
speed_wall_x = 25
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 25)
|
||||
speed_wall_0 = =math.ceil(speed_print * 20 / 25)
|
||||
speed_wall_x = =speed_print
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = 20
|
||||
|
@ -30,9 +30,9 @@ raft_surface_line_width = 0.7
|
||||
raft_surface_thickness = 0.2
|
||||
speed_layer_0 = =round(speed_print * 30 / 30)
|
||||
speed_print = 30
|
||||
speed_topbottom = 20
|
||||
speed_wall_0 = 20
|
||||
speed_wall_x = 30
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 30)
|
||||
speed_wall_0 = =math.ceil(speed_print * 20 / 30)
|
||||
speed_wall_x = =speed_print
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = 20
|
||||
|
@ -28,13 +28,13 @@ raft_interface_line_width = 0.5
|
||||
raft_margin = 15
|
||||
raft_surface_line_width = 0.2
|
||||
retraction_hop_enabled = 0.2
|
||||
speed_layer_0 = 30
|
||||
speed_layer_0 = =math.ceil(speed_print * 30 / 40)
|
||||
speed_print = 40
|
||||
speed_support = 40
|
||||
speed_topbottom = 35
|
||||
speed_topbottom = =math.ceil(speed_print * 35 / 40)
|
||||
speed_travel = 150
|
||||
speed_wall_0 = 20
|
||||
speed_wall_x = 40
|
||||
speed_wall_0 = =math.ceil(speed_print * 20 / 40)
|
||||
speed_wall_x = =speed_print
|
||||
support_enable = True
|
||||
support_infill_rate = 20
|
||||
support_pattern = lines
|
||||
@ -42,3 +42,4 @@ support_xy_distance = 0.6
|
||||
support_z_distance = =layer_height * 2
|
||||
top_bottom_thickness = 1.2
|
||||
wall_thickness = 1
|
||||
speed_infill = =math.ceil(speed_print * 80 / 40)
|
||||
|
@ -28,13 +28,13 @@ raft_interface_line_width = 0.5
|
||||
raft_margin = 15
|
||||
raft_surface_line_width = 0.2
|
||||
retraction_hop_enabled = 0.2
|
||||
speed_layer_0 = 30
|
||||
speed_layer_0 = =math.ceil(speed_print * 30 / 40)
|
||||
speed_print = 40
|
||||
speed_support = 40
|
||||
speed_topbottom = 35
|
||||
speed_topbottom = =math.ceil(speed_print * 35 / 40)
|
||||
speed_travel = 150
|
||||
speed_wall_0 = 20
|
||||
speed_wall_x = 40
|
||||
speed_wall_0 = =math.ceil(speed_print * 20 / 40)
|
||||
speed_wall_x = =speed_print
|
||||
support_enable = True
|
||||
support_infill_rate = 20
|
||||
support_pattern = lines
|
||||
|
@ -28,11 +28,11 @@ raft_interface_line_width = 0.8
|
||||
raft_margin = 15
|
||||
raft_surface_line_width = 0.5
|
||||
raft_surface_thickness = 0.15
|
||||
speed_layer_0 = 30
|
||||
speed_layer_0 = =math.ceil(speed_print * 30 / 45)
|
||||
speed_print = 45
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 45)
|
||||
speed_travel = 150
|
||||
speed_wall = 40
|
||||
speed_wall = =math.ceil(speed_print * 40 / 45)
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = 25
|
||||
@ -41,3 +41,6 @@ support_xy_distance = 0.6
|
||||
support_z_distance = =layer_height * 2
|
||||
top_bottom_thickness = 0.75
|
||||
wall_thickness = 1.06
|
||||
speed_wall_0 = =math.ceil(speed_print * 40 / 45)
|
||||
speed_wall_x = =math.ceil(speed_print * 80 / 45)
|
||||
speed_infill = =math.ceil(speed_print * 100 / 45)
|
||||
|
@ -28,10 +28,10 @@ raft_interface_line_width = 0.8
|
||||
raft_margin = 15
|
||||
raft_surface_line_width = 0.5
|
||||
raft_surface_thickness = 0.15
|
||||
speed_layer_0 = 30
|
||||
speed_layer_0 = =math.ceil(speed_print * 30 / 45)
|
||||
speed_print = 45
|
||||
speed_travel = 150
|
||||
speed_wall = 40
|
||||
speed_wall = =math.ceil(speed_print * 40 / 45)
|
||||
support_angle = 45
|
||||
support_enable = True
|
||||
support_infill_rate = 25
|
||||
|
@ -29,13 +29,13 @@ raft_margin = 15
|
||||
raft_surface_line_width = 0.6
|
||||
raft_surface_thickness = 0.15
|
||||
retraction_hop_enabled = 0.2
|
||||
speed_layer_0 = 30
|
||||
speed_layer_0 = =math.ceil(speed_print * 30 / 55)
|
||||
speed_print = 55
|
||||
speed_support = 40
|
||||
speed_topbottom = 35
|
||||
speed_topbottom = =math.ceil(speed_print * 35 / 55)
|
||||
speed_travel = 150
|
||||
speed_wall_0 = 15
|
||||
speed_wall_x = 40
|
||||
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
|
||||
@ -46,3 +46,4 @@ support_xy_distance = 0.7
|
||||
support_z_distance = =layer_height * 2
|
||||
top_bottom_thickness = 1.2
|
||||
wall_thickness = 1.2
|
||||
speed_infill = =math.ceil(speed_print * 100 / 55)
|
||||
|
@ -29,13 +29,13 @@ raft_margin = 15
|
||||
raft_surface_line_width = 0.6
|
||||
raft_surface_thickness = 0.15
|
||||
retraction_hop_enabled = 0.2
|
||||
speed_layer_0 = 30
|
||||
speed_layer_0 = =math.ceil(speed_print * 30 / 55)
|
||||
speed_print = 55
|
||||
speed_support = 40
|
||||
speed_topbottom = 35
|
||||
speed_topbottom = =math.ceil(speed_print * 35 / 55)
|
||||
speed_travel = 150
|
||||
speed_wall_0 = 15
|
||||
speed_wall_x = 40
|
||||
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
|
||||
|
@ -28,13 +28,13 @@ raft_margin = 15
|
||||
raft_surface_line_width = 0.7
|
||||
raft_surface_thickness = 0.2
|
||||
retraction_hop_enabled = 0.2
|
||||
speed_layer_0 = 30
|
||||
speed_layer_0 = =math.ceil(speed_print * 30 / 55)
|
||||
speed_print = 55
|
||||
speed_support = 40
|
||||
speed_topbottom = 35
|
||||
speed_topbottom = =math.ceil(speed_print * 35 / 55)
|
||||
speed_travel = 150
|
||||
speed_wall_0 = 15
|
||||
speed_wall_x = 40
|
||||
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
|
||||
|
@ -31,10 +31,10 @@ retraction_hop_enabled = 0.2
|
||||
speed_layer_0 = =round(speed_print * 30 / 55)
|
||||
speed_print = 55
|
||||
speed_support = 40
|
||||
speed_topbottom = 35
|
||||
speed_topbottom = =math.ceil(speed_print * 35 / 55)
|
||||
speed_travel = 150
|
||||
speed_wall_0 = 15
|
||||
speed_wall_x = 40
|
||||
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
|
||||
|
@ -36,3 +36,5 @@ support_infill_rate = 20
|
||||
support_pattern = lines
|
||||
support_z_distance = 0.19
|
||||
wall_thickness = 0.88
|
||||
speed_topbottom = =math.ceil(speed_print * 15 / 30)
|
||||
speed_infill = =math.ceil(speed_print * 80 / 30)
|
||||
|
@ -29,11 +29,13 @@ raft_interface_line_width = 0.8
|
||||
raft_margin = 15
|
||||
speed_layer_0 = =round(speed_print * 30 / 45)
|
||||
speed_print = 45
|
||||
speed_wall_0 = 20
|
||||
speed_wall_x = 30
|
||||
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
|
||||
support_pattern = lines
|
||||
support_z_distance = 0.19
|
||||
wall_thickness = 1.2
|
||||
speed_topbottom = =math.ceil(speed_print * 30 / 45)
|
||||
speed_infill = =math.ceil(speed_print * 100 / 45)
|
||||
|
@ -29,8 +29,8 @@ raft_interface_line_width = 0.8
|
||||
raft_margin = 15
|
||||
speed_layer_0 = =round(speed_print * 30 / 45)
|
||||
speed_print = 45
|
||||
speed_wall_0 = 20
|
||||
speed_wall_x = 30
|
||||
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
|
||||
|
@ -29,12 +29,12 @@ raft_interface_line_width = 1.2
|
||||
raft_margin = 15
|
||||
raft_surface_line_width = 0.6
|
||||
raft_surface_thickness = 0.15
|
||||
speed_layer_0 = 30
|
||||
speed_layer_0 = =math.ceil(speed_print * 30 / 45)
|
||||
speed_print = 45
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 45)
|
||||
speed_travel = 150
|
||||
speed_wall_0 = 30
|
||||
speed_wall_x = 40
|
||||
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
|
||||
@ -43,3 +43,4 @@ support_pattern = lines
|
||||
support_z_distance = 0.21
|
||||
top_bottom_thickness = 0.75
|
||||
wall_thickness = 1.06
|
||||
speed_infill = =math.ceil(speed_print * 100 / 45)
|
||||
|
@ -29,12 +29,12 @@ raft_interface_line_width = 1.2
|
||||
raft_margin = 15
|
||||
raft_surface_line_width = 0.6
|
||||
raft_surface_thickness = 0.15
|
||||
speed_layer_0 = 30
|
||||
speed_layer_0 = =math.ceil(speed_print * 30 / 45)
|
||||
speed_print = 45
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 45)
|
||||
speed_travel = 150
|
||||
speed_wall_0 = 30
|
||||
speed_wall_x = 40
|
||||
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
|
||||
|
@ -50,7 +50,7 @@ retraction_hop_only_when_collides = True
|
||||
retraction_min_travel = 0.5
|
||||
retraction_prime_speed = 15
|
||||
skin_overlap = 10
|
||||
speed_layer_0 = 25
|
||||
speed_layer_0 = =speed_print
|
||||
speed_prime_tower = =speed_topbottom
|
||||
speed_print = 25
|
||||
speed_support_interface = =speed_topbottom
|
||||
@ -69,3 +69,5 @@ travel_avoid_distance = 3
|
||||
wall_0_inset = 0
|
||||
wall_line_width_x = =round(line_width * 0.38 / 0.38, 2)
|
||||
wall_thickness = 0.76
|
||||
speed_wall_x = =math.ceil(speed_print * 80 / 25)
|
||||
speed_infill = =math.ceil(speed_print * 100 / 25)
|
||||
|
@ -49,7 +49,7 @@ retraction_hop_only_when_collides = True
|
||||
retraction_min_travel = 0.5
|
||||
retraction_prime_speed = 15
|
||||
skin_overlap = 10
|
||||
speed_layer_0 = 25
|
||||
speed_layer_0 = =speed_print
|
||||
speed_prime_tower = =speed_topbottom
|
||||
speed_print = 25
|
||||
speed_support_interface = =speed_topbottom
|
||||
|
@ -50,7 +50,7 @@ retraction_hop_only_when_collides = True
|
||||
retraction_prime_speed = 15
|
||||
skin_overlap = 10
|
||||
skirt_brim_line_width = 0.6
|
||||
speed_layer_0 = 25
|
||||
speed_layer_0 = =speed_print
|
||||
speed_prime_tower = =speed_topbottom
|
||||
speed_print = 25
|
||||
speed_support_interface = =speed_topbottom
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user