CURA-5342 replace speed setting constants in profiles to formulas; also adds necessary settings for um2p if the setting is also defined in ultimaker2

This commit is contained in:
Jack Ha 2018-06-11 13:45:52 +02:00
parent 310a99fba7
commit 359506874a
200 changed files with 404 additions and 377 deletions

View file

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