Sketch infill line width update

Add logic that sets the infill width to 0.4
when the layer height is not equal to 0.2.

The infill width at 0.45mm was causing the
flow rate to be > 30 mm^3/s for 0.27 Balanced
prints.  This update corrects the flow rate issue.

PP-561
This commit is contained in:
Alan Bjorklund 2025-01-28 17:42:57 -05:00
parent a7c234862a
commit 859327b3ba

View File

@ -130,7 +130,7 @@
]
},
"infill_before_walls": { "value": false },
"infill_line_width": { "value": 0.45 },
"infill_line_width": { "value": "0.45 if layer_height == 0.2 else 0.4" },
"infill_overlap": { "value": 10 },
"infill_pattern": { "value": "'lines'" },
"infill_sparse_density": { "value": 15 },