From 2e25b8418422c66a520505ac88259ad4973d18ed Mon Sep 17 00:00:00 2001 From: Rijk van Manen Date: Thu, 10 Mar 2022 14:25:42 +0100 Subject: [PATCH 1/2] reduce flow for high infill density This was already merged into CURA4.13 but apparently lost in master. PP-86 --- resources/definitions/ultimaker.def.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/definitions/ultimaker.def.json b/resources/definitions/ultimaker.def.json index e8eae781d1..0d19c0f101 100644 --- a/resources/definitions/ultimaker.def.json +++ b/resources/definitions/ultimaker.def.json @@ -50,6 +50,9 @@ "infill_before_walls": { "value": "False" }, + "infill_material_flow": { + "value": "(1.95-infill_sparse_density / 100 if infill_sparse_density > 95 else 1) * material_flow" + }, "retraction_combing": { "value": "'no_outer_surfaces'" }, From 826b697329bfea97eb2ca8740bf45b8a6c6ca1e0 Mon Sep 17 00:00:00 2001 From: Rijk van Manen Date: Thu, 10 Mar 2022 14:27:42 +0100 Subject: [PATCH 2/2] reduce top bottom flow The top bottom is a 100% density part of the print. For these parts it is super important to not over extrude. At the same time we dont want an underextruded top layer, since that is looking ugly. That is why we enable a roofing layer and reduce the flow for the rest of the top/bottom. PP-93 --- resources/definitions/ultimaker.def.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/resources/definitions/ultimaker.def.json b/resources/definitions/ultimaker.def.json index 0d19c0f101..33660457c1 100644 --- a/resources/definitions/ultimaker.def.json +++ b/resources/definitions/ultimaker.def.json @@ -56,6 +56,15 @@ "retraction_combing": { "value": "'no_outer_surfaces'" }, + "roofing_layer_count": { + "value": "1" + }, + "roofing_material_flow": { + "value": "material_flow" + }, + "skin_material_flow": { + "value": "0.95 * material_flow" + }, "skin_monotonic" : { "value": true },