mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-25 15:44:04 -06:00
Remove direct flow equalization in favour of line-width based.
CURA-7279
This commit is contained in:
parent
dbaeaa8f74
commit
586198c628
2 changed files with 3 additions and 39 deletions
|
@ -12,7 +12,9 @@ _removed_settings = {
|
||||||
"travel_compensate_overlapping_walls_x_enabled",
|
"travel_compensate_overlapping_walls_x_enabled",
|
||||||
"fill_perimeter_gaps",
|
"fill_perimeter_gaps",
|
||||||
"wall_min_flow",
|
"wall_min_flow",
|
||||||
"wall_min_flow_retract"
|
"wall_min_flow_retract",
|
||||||
|
"speed_equalize_flow_enabled",
|
||||||
|
"speed_equalize_flow_min"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -3102,56 +3102,18 @@
|
||||||
"settable_per_mesh": false,
|
"settable_per_mesh": false,
|
||||||
"settable_per_extruder": 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":
|
"speed_equalize_flow_width_factor":
|
||||||
{
|
{
|
||||||
"label": "Flow Equalization 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.",
|
"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",
|
"type": "float",
|
||||||
"unit": "mm³/s",
|
"unit": "mm³/s",
|
||||||
"enabled": "speed_equalize_flow_enabled",
|
|
||||||
"default_value": 0.0,
|
"default_value": 0.0,
|
||||||
"minimum_value_warning": "0.0",
|
"minimum_value_warning": "0.0",
|
||||||
"maximum_value_warning": "3.0",
|
"maximum_value_warning": "3.0",
|
||||||
"settable_per_mesh": false,
|
"settable_per_mesh": false,
|
||||||
"settable_per_extruder": true
|
"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":
|
"acceleration_enabled":
|
||||||
{
|
{
|
||||||
"label": "Enable Acceleration Control",
|
"label": "Enable Acceleration Control",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue