mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-12-05 16:51:07 -07:00
Internal parameter and tool tip tweaking
This commit is contained in:
parent
cc5a350e9f
commit
fe6c979f66
2 changed files with 6 additions and 7 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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²");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue