Modified the description of pressure equalizer parameters and moved it to the separate section.

This commit is contained in:
Lukáš Hejl 2022-06-06 08:58:54 +02:00
parent 0463518dc3
commit a497769558
2 changed files with 7 additions and 4 deletions

View file

@ -1804,7 +1804,8 @@ void PrintConfigDef::init_fff_params()
def = this->add("max_volumetric_extrusion_rate_slope_positive", coFloat);
def->label = L("Max volumetric slope positive");
def->tooltip = L("This experimental setting is used to limit the speed of change in extrusion rate. "
def->tooltip = L("This experimental setting is used to limit the speed of change in extrusion rate"
"for a transition from lower speed to higher speed. "
"A value of 1.8 mm³/s² ensures, that a change from the extrusion rate "
"of 1.8 mm³/s (0.45mm extrusion width, 0.2mm extrusion height, feedrate 20 mm/s) "
"to 5.4 mm³/s (feedrate 60 mm/s) will take at least 2 seconds.");
@ -1815,10 +1816,11 @@ void PrintConfigDef::init_fff_params()
def = this->add("max_volumetric_extrusion_rate_slope_negative", coFloat);
def->label = L("Max volumetric slope negative");
def->tooltip = L("This experimental setting is used to limit the speed of change in extrusion rate. "
def->tooltip = L("This experimental setting is used to limit the speed of change in extrusion rate"
"for a transition from higher speed to lower speed. "
"A value of 1.8 mm³/s² ensures, that a change from the extrusion rate "
"of 1.8 mm³/s (0.45mm extrusion width, 0.2mm extrusion height, feedrate 20 mm/s) "
"to 5.4 mm³/s (feedrate 60 mm/s) will take at least 2 seconds.");
"of 1.8 mm³/s (0.45mm extrusion width, 0.2mm extrusion height, feedrate 60 mm/s) "
"to 5.4 mm³/s (feedrate 20 mm/s) will take at least 2 seconds.");
def->sidetext = L("mm³/s²");
def->min = 0;
def->mode = comExpert;

View file

@ -1612,6 +1612,7 @@ void TabPrint::build()
optgroup->append_single_option_line("max_print_speed", "max-volumetric-speed_127176");
optgroup->append_single_option_line("max_volumetric_speed", "max-volumetric-speed_127176");
optgroup = page->new_optgroup(L("Pressure equalizer (experimental)"));
optgroup->append_single_option_line("max_volumetric_extrusion_rate_slope_positive");
optgroup->append_single_option_line("max_volumetric_extrusion_rate_slope_negative");