Просмотр исходного кода

CURA-5342 formulafy speed settings so when changing the main speed, the sub speeds change accordingly

Jack Ha 6 лет назад
Родитель
Сommit
9432252de4

+ 1 - 1
resources/quality/abax_pri3/apri3_pla_fast.inst.cfg

@@ -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

+ 1 - 1
resources/quality/abax_pri3/apri3_pla_high.inst.cfg

@@ -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

+ 1 - 1
resources/quality/abax_pri3/apri3_pla_normal.inst.cfg

@@ -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

+ 1 - 1
resources/quality/abax_pri5/apri5_pla_fast.inst.cfg

@@ -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

+ 1 - 1
resources/quality/abax_pri5/apri5_pla_high.inst.cfg

@@ -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

+ 1 - 1
resources/quality/abax_pri5/apri5_pla_normal.inst.cfg

@@ -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

+ 1 - 1
resources/quality/abax_titan/atitan_pla_fast.inst.cfg

@@ -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

+ 1 - 1
resources/quality/abax_titan/atitan_pla_high.inst.cfg

@@ -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

+ 1 - 1
resources/quality/abax_titan/atitan_pla_normal.inst.cfg

@@ -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

+ 4 - 4
resources/quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg

@@ -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

Некоторые файлы не были показаны из-за большого количества измененных файлов