diff --git a/src/libslic3r/GCode/PressureEqualizer.cpp b/src/libslic3r/GCode/PressureEqualizer.cpp index 3216f3afcf..67e23c914e 100644 --- a/src/libslic3r/GCode/PressureEqualizer.cpp +++ b/src/libslic3r/GCode/PressureEqualizer.cpp @@ -33,7 +33,7 @@ static constexpr int max_look_back_limit = 128; // its all one continous extruded line. Above this distance we assume extruder pressure hits 0 // This exists because often there's tiny travel moves between stuff like infill // lines where some extruder pressure will remain (so we should equalize between these small travels) -static constexpr long max_ignored_gap_between_extruding_segments = 10; +static constexpr long max_ignored_gap_between_extruding_segments = 3; PressureEqualizer::PressureEqualizer(const Slic3r::GCodeConfig &config) : m_use_relative_e_distances(config.use_relative_e_distances.value) { diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 0396886141..4a5f672657 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -2478,12 +2478,11 @@ def = this->add("filament_loading_speed", coFloats); "It defines the maximum rate by which the extruded volumetric flow in mm3/sec can change over time. " "Higher values mean higher extrusion rate changes are allowed, resulting in faster speed transitions.\n\n" "A value of 0 disables the feature. \n\n" - "For a high speed, high flow direct drive printer (like the Bambu lab or Voron) a sensible value is around " - "5x to 10x the maximum volumetric flow rate the hot end is capable off under ideal conditions. This allows " - "for just enough smoothing to assist pressure advance in areas where sudden flow changes happen. A value of " - "250-300 is a good starting point.\n\n" - "For slower printers without pressure advance, the value should be set much lower. A value of 10-15 is a " - "good starting point for direct drive extruders and 2-3 for Bowden style. \n\n" + "For a high speed, high flow direct drive printer (like the Bambu lab or Voron) a sensible value is around" + "300-400mm3/s2. This allows for just enough smoothing to assist pressure advance in " + "areas where sudden flow changes happen. \n\n" + "For slower printers without pressure advance, the value should be set much lower. A value of 10-15mm3/s2 is a " + "good starting point for direct drive extruders and 5-10mm3/s2 for Bowden style. \n\n" "This feature is known as Pressure Equalizer in Prusa slicer.\n\n" "Note: this parameter disables arc fitting."); def->sidetext = L("mm³/s²");