mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-10 15:25:09 -06:00
Updates Jerk settings to a minimum of 20mmps
For PP-1
This commit is contained in:
parent
92085d488c
commit
6a4f59c27a
31 changed files with 105 additions and 116 deletions
|
@ -19,9 +19,9 @@ top_skin_expand_distance = =line_width * 2
|
|||
infill_before_walls = True
|
||||
infill_line_width = =round(line_width * 0.7 / 0.8, 2)
|
||||
infill_pattern = tetrahedral
|
||||
jerk_prime_tower = =math.ceil(jerk_print * 25 / 25)
|
||||
jerk_support = =math.ceil(jerk_print * 25 / 25)
|
||||
jerk_wall_0 = =math.ceil(jerk_wall * 15 / 25)
|
||||
jerk_prime_tower = =max(math.ceil(jerk_print * 25 / 25), 20)
|
||||
jerk_support = =max(math.ceil(jerk_print * 25 / 25), 20)
|
||||
jerk_wall_0 = =max(math.ceil(jerk_wall * 15 / 25), 20)
|
||||
material_bed_temperature_layer_0 = =material_bed_temperature
|
||||
material_print_temperature = =default_material_print_temperature + 2
|
||||
material_print_temperature_layer_0 = =default_material_print_temperature + 2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue