Lowering Jerk

This commit is contained in:
Ian Bassi 2025-04-01 18:34:51 -03:00
parent 69b645d5c8
commit 4376f8ba3c
2 changed files with 7 additions and 7 deletions

View file

@ -169,7 +169,7 @@ ZV Input Shaping introduces an anti-vibration signal into the stepper motion for
1. Acceleration high enough to trigger ringing (e.g., 2000 mm/s²).
2. Speed high enough to trigger ringing (e.g., 100 mm/s).
3. Jerk
1. If using a [Classic Jerk](https://marlinfw.org/docs/configuration/configuration.html#jerk-) use a high value (e.g., 20).
1. If using a [Classic Jerk](https://marlinfw.org/docs/configuration/configuration.html#jerk-) or [Klipper Square Corner Velocity](https://www.klipper3d.org/Kinematics.html?h=square+corner+velocity#look-ahead) use a high value (e.g., 20).
2. If using [Junction Deviation](https://marlinfw.org/docs/features/junction_deviation.html) this test will use 0.25 (high enough to most printers).
2. Use a high gloss filament to make the ringing more visible.
3. In printer settigs:

View file

@ -10167,8 +10167,8 @@ void Plater::calib_input_shaping_freq(const Calib_Params& params)
filament_config->set_key_value("filament_max_volumetric_speed", new ConfigOptionFloats { 200 });
filament_config->set_key_value("enable_pressure_advance", new ConfigOptionBools {false });
filament_config->set_key_value("pressure_advance", new ConfigOptionFloats { 0.0 });
print_config->set_key_value("default_jerk", new ConfigOptionFloat { 500.0 });// Set jerk to maximum.
print_config->set_key_value("outer_wall_jerk", new ConfigOptionFloat { 500.0 });
print_config->set_key_value("default_jerk", new ConfigOptionFloat { 20.0 });
print_config->set_key_value("outer_wall_jerk", new ConfigOptionFloat { 20.0 });
print_config->set_key_value("enable_overhang_speed", new ConfigOptionBool { false });
print_config->set_key_value("timelapse_type", new ConfigOptionEnum<TimelapseType>(tlTraditional));
print_config->set_key_value("wall_loops", new ConfigOptionInt(1));
@ -10208,8 +10208,8 @@ void Plater::calib_input_shaping_damp(const Calib_Params& params)
filament_config->set_key_value("filament_max_volumetric_speed", new ConfigOptionFloats { 200 });
filament_config->set_key_value("enable_pressure_advance", new ConfigOptionBools{false});
filament_config->set_key_value("pressure_advance", new ConfigOptionFloats{0.0});
print_config->set_key_value("default_jerk", new ConfigOptionFloat { 500.0 });// Set jerk to maximum.
print_config->set_key_value("outer_wall_jerk", new ConfigOptionFloat { 500.0 });
print_config->set_key_value("default_jerk", new ConfigOptionFloat { 20.0 });
print_config->set_key_value("outer_wall_jerk", new ConfigOptionFloat { 20.0 });
print_config->set_key_value("enable_overhang_speed", new ConfigOptionBool{false});
print_config->set_key_value("timelapse_type", new ConfigOptionEnum<TimelapseType>(tlTraditional));
print_config->set_key_value("wall_loops", new ConfigOptionInt(1));
@ -10249,8 +10249,8 @@ void Plater::calib_junction_deviation(const Calib_Params& params)
filament_config->set_key_value("filament_max_volumetric_speed", new ConfigOptionFloats{200});
filament_config->set_key_value("enable_pressure_advance", new ConfigOptionBools{false});
filament_config->set_key_value("pressure_advance", new ConfigOptionFloats{0.0});
print_config->set_key_value("default_jerk", new ConfigOptionFloat { 500.0 });// Set jerk to maximum.
print_config->set_key_value("outer_wall_jerk", new ConfigOptionFloat { 500.0 });
print_config->set_key_value("default_jerk", new ConfigOptionFloat { 20.0 });
print_config->set_key_value("outer_wall_jerk", new ConfigOptionFloat { 20.0 });
print_config->set_key_value("enable_overhang_speed", new ConfigOptionBool{false});
print_config->set_key_value("timelapse_type", new ConfigOptionEnum<TimelapseType>(tlTraditional));
print_config->set_key_value("wall_loops", new ConfigOptionInt(1));