Remove direct flow equalization in favour of line-width based.

CURA-7279
This commit is contained in:
Remco Burema 2021-08-06 16:56:56 +02:00
parent dbaeaa8f74
commit 586198c628
No known key found for this signature in database
GPG key ID: 215C49431D43F98C
2 changed files with 3 additions and 39 deletions

View file

@ -12,7 +12,9 @@ _removed_settings = {
"travel_compensate_overlapping_walls_x_enabled",
"fill_perimeter_gaps",
"wall_min_flow",
"wall_min_flow_retract"
"wall_min_flow_retract",
"speed_equalize_flow_enabled",
"speed_equalize_flow_min"
}

View file

@ -3102,56 +3102,18 @@
"settable_per_mesh": false,
"settable_per_extruder": false
},
"speed_equalize_flow_enabled":
{
"label": "Equalize Filament Flow",
"description": "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines.",
"type": "bool",
"default_value": false,
"settable_per_mesh": false,
"settable_per_extruder": true
},
"speed_equalize_flow_width_factor":
{
"label": "Flow Equalization Width Factor",
"description": "Extrusion width based correction factor on the equalized flow. The target flow (in mm³/s) is reduced by the percentual difference in line width multiplied by this factor. A factor above zero means that thin lines are adjusted to be even faster than simple flow equalization would speed them up to. Conversely, wider lines are slowed down more. A positive value can help to compensate for the width depended back pressure the previous layer exterts on the line.",
"type": "float",
"unit": "mm³/s",
"enabled": "speed_equalize_flow_enabled",
"default_value": 0.0,
"minimum_value_warning": "0.0",
"maximum_value_warning": "3.0",
"settable_per_mesh": false,
"settable_per_extruder": true
},
"speed_equalize_flow_max":
{
"label": "Maximum Speed for Flow Equalization",
"description": "Maximum print speed when adjusting the print speed in order to equalize flow.",
"type": "float",
"unit": "mm/s",
"enabled": "speed_equalize_flow_enabled",
"default_value": 150,
"minimum_value": "0.1",
"maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
"maximum_value_warning": "150",
"settable_per_mesh": false,
"settable_per_extruder": true
},
"speed_equalize_flow_min":
{
"label": "Minimum Speed for Flow Equalization",
"description": "Minimum print speed when adjusting the print speed in order to equalize flow.",
"type": "float",
"unit": "mm/s",
"enabled": "speed_equalize_flow_enabled",
"default_value": 5,
"minimum_value": "0.1",
"maximum_value": "speed_equalize_flow_max",
"maximum_value_warning": "15",
"settable_per_mesh": false,
"settable_per_extruder": true
},
"acceleration_enabled":
{
"label": "Enable Acceleration Control",