From 859327b3ba47c6cf2d83d1e463146cfb3619dfc5 Mon Sep 17 00:00:00 2001 From: Alan Bjorklund Date: Tue, 28 Jan 2025 17:42:57 -0500 Subject: [PATCH] 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 --- resources/definitions/ultimaker_sketch_sprint.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/ultimaker_sketch_sprint.def.json b/resources/definitions/ultimaker_sketch_sprint.def.json index cde655e70f..4c5e68b983 100644 --- a/resources/definitions/ultimaker_sketch_sprint.def.json +++ b/resources/definitions/ultimaker_sketch_sprint.def.json @@ -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 },