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
|
@ -25,11 +25,11 @@ infill_overlap = 0
|
|||
infill_pattern = triangles
|
||||
infill_wipe_dist = 0
|
||||
jerk_enabled = True
|
||||
jerk_prime_tower = =math.ceil(jerk_print * 2 / 25)
|
||||
jerk_prime_tower = =max(math.ceil(jerk_print * 2 / 25), 20)
|
||||
jerk_print = 25
|
||||
jerk_support = =math.ceil(jerk_print * 15 / 25)
|
||||
jerk_support_interface = =math.ceil(jerk_support * 10 / 15)
|
||||
jerk_support_bottom = =math.ceil(jerk_support_interface * 1 / 10)
|
||||
jerk_support = =max(math.ceil(jerk_print * 15 / 25), 20)
|
||||
jerk_support_interface = =max(math.ceil(jerk_support * 10 / 15), 20)
|
||||
jerk_support_bottom = =max(math.ceil(jerk_support_interface * 1 / 10), 20)
|
||||
layer_height = 0.2
|
||||
machine_min_cool_heat_time_window = 15
|
||||
machine_nozzle_heat_up_speed = 1.5
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue