Browse Source

Merge pull request #3762 from Ultimaker/Optimization

PP formula based temperature fixes S5
Diego Prado Gesto 6 years ago
parent
commit
4e4dc800a7

+ 1 - 1
resources/definitions/ultimaker_s5.def.json

@@ -37,7 +37,7 @@
     "overrides": {
         "machine_name": { "default_value": "Ultimaker S5" },
         "machine_width": { "default_value": 330 },
-        "machine_depth": { "default_value": 245 },
+        "machine_depth": { "default_value": 240 },
         "machine_height": { "default_value": 300 },
         "machine_heated_bed": { "default_value": true },
         "machine_nozzle_heat_up_speed": { "default_value": 1.4 },

+ 5 - 5
resources/quality/ultimaker_s5/um_s5_aa0.25_PP_Normal_Quality.inst.cfg

@@ -25,11 +25,11 @@ jerk_enabled = True
 jerk_print = 25
 line_width = =machine_nozzle_size * 0.92
 machine_min_cool_heat_time_window = 15
-material_bed_temperature_layer_0 = 90
-material_final_print_temperature = 195
-material_initial_print_temperature = 200
-material_print_temperature = 205
-material_print_temperature_layer_0 = 208
+material_bed_temperature_layer_0 = =material_bed_temperature + 5
+material_final_print_temperature = =material_print_temperature - 10
+material_initial_print_temperature = =material_print_temperature - 5
+material_print_temperature = =default_material_print_temperature - 15
+material_print_temperature_layer_0 = =material_print_temperature + 3
 multiple_mesh_overlap = 0
 prime_tower_enable = False
 prime_tower_size = 16

+ 3 - 2
resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_Draft_Print.inst.cfg

@@ -26,5 +26,6 @@ speed_wall = =math.ceil(speed_print * 45 / 60)
 speed_wall_0 = =math.ceil(speed_wall * 35 / 45)
 wall_thickness = 1
 
-infill_line_width = 0.4
-speed_infill = 50
+infill_line_width = =round(line_width * 0.4 / 0.35, 2)
+speed_infill = =math.ceil(speed_print * 50 / 60)
+

+ 3 - 2
resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_Fast_Print.inst.cfg

@@ -25,5 +25,6 @@ speed_topbottom = =math.ceil(speed_print * 30 / 60)
 speed_wall = =math.ceil(speed_print * 40 / 60)
 speed_wall_0 = =math.ceil(speed_wall * 30 / 40)
 
-infill_line_width = 0.4
-speed_infill = 45
+infill_line_width = =round(line_width * 0.4 / 0.35, 2)
+speed_infill = =math.ceil(speed_print * 45 / 60)
+

+ 3 - 2
resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_High_Quality.inst.cfg

@@ -24,5 +24,6 @@ speed_layer_0 = 20
 speed_topbottom = =math.ceil(speed_print * 30 / 50)
 speed_wall = =math.ceil(speed_print * 30 / 50)
 
-infill_line_width = 0.4
-speed_infill = 40
+infill_line_width = =round(line_width * 0.4 / 0.35, 2)
+speed_infill = =math.ceil(speed_print * 40 / 50)
+

+ 2 - 2
resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_Normal_Quality.inst.cfg

@@ -23,5 +23,5 @@ speed_layer_0 = 20
 speed_topbottom = =math.ceil(speed_print * 30 / 55)
 speed_wall = =math.ceil(speed_print * 30 / 55)
 
-infill_line_width = 0.4
-speed_infill = 40
+infill_line_width = =round(line_width * 0.4 / 0.35, 2)
+speed_infill = =math.ceil(speed_print * 40 / 55)

+ 1 - 2
resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_Draft_Print.inst.cfg

@@ -23,8 +23,7 @@ speed_wall = =math.ceil(speed_print * 45 / 60)
 speed_wall_0 = =math.ceil(speed_wall * 35 / 45)
 wall_thickness = 1
 
-jerk_travel = 50
 
 infill_pattern = zigzag
-speed_infill = 50
+speed_infill = =math.ceil(speed_print * 50 / 60)
 prime_tower_purge_volume = 1

+ 1 - 3
resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_Fast_Print.inst.cfg

@@ -22,8 +22,6 @@ speed_topbottom = =math.ceil(speed_print * 30 / 60)
 speed_wall = =math.ceil(speed_print * 40 / 60)
 speed_wall_0 = =math.ceil(speed_wall * 30 / 40)
 
-jerk_travel = 50
-
 infill_pattern = zigzag
-speed_infill = 50
+speed_infill = =math.ceil(speed_print * 50 / 60)
 prime_tower_purge_volume = 1

+ 1 - 3
resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_High_Quality.inst.cfg

@@ -23,8 +23,6 @@ speed_layer_0 = 20
 speed_topbottom = =math.ceil(speed_print * 30 / 50)
 speed_wall = =math.ceil(speed_print * 30 / 50)
 
-jerk_travel = 50
-
 infill_pattern = zigzag
-speed_infill = 40
+speed_infill = =math.ceil(speed_print * 40 / 50)
 prime_tower_purge_volume = 1

+ 1 - 3
resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_Normal_Quality.inst.cfg

@@ -21,8 +21,6 @@ speed_layer_0 = 20
 speed_topbottom = =math.ceil(speed_print * 30 / 55)
 speed_wall = =math.ceil(speed_print * 30 / 55)
 
-jerk_travel = 50
-
 infill_pattern = zigzag
-speed_infill = 45
+speed_infill = =math.ceil(speed_print * 45 / 55)
 prime_tower_purge_volume = 1

Some files were not shown because too many files changed in this diff