From 08f76162942d638c3db58c0016015c4e92783106 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 16 Aug 2024 14:40:37 +0200 Subject: [PATCH 1/6] Import gradual flow settings with classic ones CURA-12096 --- resources/definitions/fdmprinter.def.json | 58 +++++++++++++++++++++++ 1 file changed, 58 insertions(+) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index c0c90dc6d73..47964532936 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -765,6 +765,14 @@ "settable_per_mesh": false, "settable_per_extruder": false, "settable_per_meshgroup": false + }, + "reset_flow_duration": { + "enabled": "gradual_flow_enabled", + "value": 2.0, + "label": "Reset flow duration", + "description": "For any travel move longer than this value, the material flow is reset to the paths target flow", + "unit": "s", + "type": "float" } } }, @@ -3140,6 +3148,56 @@ "enabled": false, "settable_per_mesh": false, "settable_per_extruder": true + }, + "gradual_flow_enabled": { + "label": "Gradual flow enabled", + "description": "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops.", + "type": "bool", + "default_value": false, + "settable_per_mesh": false, + "settable_per_extruder": true + }, + "max_flow_acceleration": { + "enabled": "gradual_flow_enabled", + "label": "Gradual flow max acceleration", + "description": "Maximum acceleration for gradual flow changes", + "type": "float", + "unit": "mm\u00b3\/s\u00b2", + "default_value": 1, + "minimum_value_warning": 0.1, + "maximum_value_warning": 99999, + "minimum_value": 0.01, + "settable_per_mesh": false, + "settable_per_extruder": true, + "comments": "when enabled, each second the flow will at max be increased/decreased by this value" + }, + "layer_0_max_flow_acceleration": { + "enabled": "gradual_flow_enabled", + "value": "max_flow_acceleration", + "label": "Initial layer max flow acceleration", + "description": "Minimum speed for gradual flow changes for the first layer", + "type": "float", + "unit": "mm\u00b3\/s\u00b2", + "default_value": 1, + "minimum_value_warning": 0.1, + "maximum_value_warning": 99999, + "minimum_value": 0.01, + "settable_per_mesh": false, + "settable_per_extruder": true + }, + "gradual_flow_discretisation_step_size": { + "enabled": "gradual_flow_enabled", + "label": "Gradual flow discretisation step size", + "description": "Duration of each step in the gradual flow change", + "type": "float", + "unit": "s", + "default_value": 0.2, + "maximum_value_warning": 1.0, + "maximum_value": 5.0, + "minimum_value_warning": 0.1, + "minimum_value": 0.01, + "settable_per_mesh": false, + "settable_per_extruder": true } } }, From 5a4ce498d47e82de8b8437199926bb704424909b Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 16 Aug 2024 14:57:58 +0200 Subject: [PATCH 2/6] Remove gradual flow plugin dependency CURA-12096 --- conandata.yml | 14 -------------- conanfile.py | 14 +++----------- 2 files changed, 3 insertions(+), 25 deletions(-) diff --git a/conandata.yml b/conandata.yml index 06408131461..3a2f90bbe16 100644 --- a/conandata.yml +++ b/conandata.yml @@ -5,7 +5,6 @@ requirements: - "curaengine/(latest)@ultimaker/testing" - "cura_binary_data/(latest)@ultimaker/testing" - "fdm_materials/(latest)@ultimaker/testing" - - "curaengine_plugin_gradual_flow/0.1.0-beta.4" - "dulcificum/0.2.1" - "pysavitar/5.3.0" - "pynest2d/5.3.0" @@ -34,14 +33,6 @@ pyinstaller: package: "cura" src: "plugins" dst: "share/cura/plugins" - curaengine_gradual_flow_plugin: - package: "curaengine_plugin_gradual_flow" - src: "res/plugins/CuraEngineGradualFlow" - dst: "share/cura/plugins/CuraEngineGradualFlow" - curaengine_gradual_flow_plugin_bundled: - package: "curaengine_plugin_gradual_flow" - src: "res/bundled_packages" - dst: "share/cura/resources/bundled_packages" native_cad_plugin: package: "native_cad_plugin" src: "res/plugins/NativeCADplugin" @@ -105,11 +96,6 @@ pyinstaller: src: "bin" dst: "." binary: "CuraEngine" - curaengine_gradual_flow_plugin_service: - package: "curaengine_plugin_gradual_flow" - src: "bin" - dst: "." - binary: "curaengine_plugin_gradual_flow" hiddenimports: - "pySavitar" - "pyArcus" diff --git a/conanfile.py b/conanfile.py index 787c26785f8..f21f7b40b85 100644 --- a/conanfile.py +++ b/conanfile.py @@ -390,17 +390,11 @@ def generate(self): copy(self, "CuraEngine", curaengine.bindirs[0], self.source_folder, keep_path = False) # Copy the external plugins that we want to bundle with Cura - rmdir(self,str(self.source_path.joinpath("plugins", "CuraEngineGradualFlow"))) - curaengine_plugin_gradual_flow = self.dependencies["curaengine_plugin_gradual_flow"].cpp_info - copy(self, "*", curaengine_plugin_gradual_flow.resdirs[0], str(self.source_path.joinpath("plugins", "CuraEngineGradualFlow")), keep_path = True) - copy(self, "*", curaengine_plugin_gradual_flow.bindirs[0], self.source_folder, keep_path = False) - copy(self, "bundled_*.json", curaengine_plugin_gradual_flow.resdirs[1], str(self.source_path.joinpath("resources", "bundled_packages")), keep_path = False) - if self._enterprise: rmdir(self, str(self.source_path.joinpath("plugins", "NativeCADplugin"))) - curaengine_plugin_gradual_flow = self.dependencies["native_cad_plugin"].cpp_info - copy(self, "*", curaengine_plugin_gradual_flow.resdirs[0], str(self.source_path.joinpath("plugins", "NativeCADplugin")), keep_path = True) - copy(self, "bundled_*.json", curaengine_plugin_gradual_flow.resdirs[1], str(self.source_path.joinpath("resources", "bundled_packages")), keep_path = False) + native_cad_plugin = self.dependencies["native_cad_plugin"].cpp_info + copy(self, "*", native_cad_plugin.resdirs[0], str(self.source_path.joinpath("plugins", "NativeCADplugin")), keep_path = True) + copy(self, "bundled_*.json", native_cad_plugin.resdirs[1], str(self.source_path.joinpath("resources", "bundled_packages")), keep_path = False) # Copy resources of cura_binary_data cura_binary_data = self.dependencies["cura_binary_data"].cpp_info @@ -517,8 +511,6 @@ def package(self): copy(self, "requirement*.txt", src = self.source_folder, dst = os.path.join(self.package_folder, self.cpp.package.resdirs[-1])) copy(self, "*", src = os.path.join(self.source_folder, "packaging"), dst = os.path.join(self.package_folder, self.cpp.package.resdirs[2])) - # Remove the CuraEngineGradualFlow plugin from the package - rmdir(self, os.path.join(self.package_folder, self.cpp.package.resdirs[1], "CuraEngineGradualFlow")) rm(self, "bundled_*.json", os.path.join(self.package_folder, self.cpp.package.resdirs[0], "bundled_packages"), recursive = False) # Remove the fdm_materials from the package From b3d27076631c4f3355f1dbe8dcc5f3c7f829b2ab Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 16 Aug 2024 14:59:49 +0200 Subject: [PATCH 3/6] Rename gradual flow settings defined in profiles CURA-12096 --- .../ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg | 2 +- .../um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg | 2 +- .../um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg | 2 +- .../um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg | 2 +- .../um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg | 2 +- .../um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg | 2 +- .../um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg | 2 +- .../um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg | 2 +- .../um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg | 2 +- .../um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg | 2 +- .../um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg | 2 +- .../um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg | 2 +- .../um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg | 2 +- .../um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg | 2 +- .../um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg | 2 +- .../um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg | 2 +- .../um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg | 2 +- .../um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg | 2 +- .../um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg | 2 +- .../um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg | 2 +- .../um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg | 2 +- .../um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg | 2 +- .../ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg | 2 +- .../um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg | 2 +- .../um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg | 2 +- .../um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg | 2 +- .../um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg | 2 +- .../um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg | 2 +- .../ultimaker_factor4/um_f4_aa0.25_petg_0.1mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.25_pla_0.1mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.4_abs_0.2mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.4_bam_0.15mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.4_bam_0.1mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.4_bam_0.2mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.4_bam_0.3mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm.inst.cfg | 6 +++--- .../quality/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.4_petg_0.1mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.4_petg_0.2mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.4_petg_0.3mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.4_pla_0.1mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.4_pla_0.2mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.4_pla_0.3mm.inst.cfg | 6 +++--- .../quality/ultimaker_factor4/um_f4_aa0.4_pp_0.2mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.4_tpu_0.2mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.8_abs_0.2mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.8_cpe_0.2mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.8_petg_0.2mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.8_petg_0.4mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.8_pla_0.2mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.8_pla_0.4mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_aa0.8_tpu_0.2mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_bb0.4_pva_0.15mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_bb0.4_pva_0.1mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_bb0.4_pva_0.2mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_bb0.4_pva_0.3mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_bb0.8_pva_0.2mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_bb0.8_pva_0.3mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_bb0.8_pva_0.4mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_cc0.6_pla_0.2mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_cc0.6_pla_0.3mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm.inst.cfg | 6 +++--- .../ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm.inst.cfg | 6 +++--- .../quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg | 6 +++--- .../ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg | 6 +++--- .../quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg | 6 +++--- .../ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg | 6 +++--- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg | 6 +++--- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg | 6 +++--- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg | 6 +++--- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg | 6 +++--- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg | 6 +++--- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg | 6 +++--- .../ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg | 6 +++--- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg | 6 +++--- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg | 6 +++--- .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg | 6 +++--- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg | 6 +++--- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg | 6 +++--- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg | 6 +++--- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg | 6 +++--- .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg | 6 +++--- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg | 6 +++--- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg | 6 +++--- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg | 6 +++--- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg | 6 +++--- .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg | 6 +++--- .../quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg | 6 +++--- .../quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg | 6 +++--- .../quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg | 6 +++--- .../quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg | 6 +++--- .../quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg | 6 +++--- .../quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg | 6 +++--- .../quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg | 6 +++--- .../quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg | 6 +++--- .../quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg | 6 +++--- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg | 6 +++--- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg | 6 +++--- .../ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg | 6 +++--- .../quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg | 6 +++--- .../ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg | 6 +++--- .../quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg | 6 +++--- .../ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg | 6 +++--- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg | 6 +++--- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg | 6 +++--- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg | 6 +++--- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg | 6 +++--- .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg | 6 +++--- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg | 6 +++--- .../ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg | 6 +++--- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg | 6 +++--- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg | 6 +++--- .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg | 6 +++--- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg | 6 +++--- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg | 6 +++--- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg | 6 +++--- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg | 6 +++--- .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg | 6 +++--- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg | 6 +++--- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg | 6 +++--- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg | 6 +++--- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg | 6 +++--- .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg | 6 +++--- .../quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg | 6 +++--- .../quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg | 6 +++--- .../quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg | 6 +++--- .../quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg | 6 +++--- .../quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg | 6 +++--- .../quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg | 6 +++--- .../quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg | 6 +++--- .../quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg | 6 +++--- .../quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg | 6 +++--- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg | 6 +++--- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg | 6 +++--- .../ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg | 6 +++--- 230 files changed, 466 insertions(+), 466 deletions(-) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg index b29c0a95217..b564c7313b1 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg index 162e979a83f..f1b0afec9b8 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg index e3a7c7c27cf..11562ae1fbc 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg index de545bf35ea..e2431286fbb 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg index ccc826e8806..cb291e4d228 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg index d7a8e069986..8ff65ade01d 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg index 0efe56e0dcf..156f1dd1a01 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg index 27c578bb70b..8f970ac3160 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg index 1155247785a..380b625c98a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg index cfe96cd0f0d..d163b3e2ed3 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg index 205b8f4d518..a32d5b5ca34 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg index 19208319d86..5c1bd3ed285 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg index 09d2f2ba99a..735b36bb68e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg index a12c1ebfd37..d70042b46ef 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg index 286a6b0e072..bcf0b9b8229 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg index 6254e3b68f2..c3c18096773 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg index 9dafc8b1326..a8a196148bf 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg index 09673e60980..0b67c38f134 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg index 9e82f05e6c2..b3853962563 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg index 9454381e88d..f7706dd7b30 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg index 64110998e3a..2ff9e8f9105 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg index 77c867c2add..26971b07d43 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg index 239f5815cc4..0b47f98be04 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg index 14f9aa110c8..a165acd3fb8 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg index 08899429199..ae7a71ee421 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg index 2854968225c..33b2f9ff419 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg index 6371e933dc2..f04fb58285a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg index f43a8856193..f6495c4d783 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg index bb457acb89c..a62516cc0f7 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg index 2ea031a390d..2f2606c6925 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg index 7b66700a7d6..6902355015e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg index eec67d4aa5c..f09d2d31f42 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg index 24c1c424b83..66f11283356 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg index b1abec13648..9bbbf9ce00f 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg index 686ee6ccb22..56aed4eef59 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg index 61b67043135..e5686e5d39b 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg index c1db44dcc4b..66b710fc464 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg index 1d6c709517c..e3396291420 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg index 1e824ed44c1..66caea2738d 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg index 6552e6e66aa..924d47f199f 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg index 9ed04a21418..5fd296d93bc 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg index b961efe0eb9..a02ae0f0401 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg index 1f65b1be8a9..f0b0e296aab 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg index 40cbea238f7..c1450e6f110 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg index 339f02e070e..3f6de1cf17e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg index f1aa58b68ed..361d479df5b 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg index 1a94de81f89..a9081a6c0ab 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg index 7769b3ed665..edd834071a8 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg index 51e407aa524..405be88f85d 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg index 1e55929f44c..d5dbeba9fc6 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg index 531ffab0637..404c31f71e2 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg index 5d470eabcab..c86f485e43c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg index 010abc23542..ab5c443ae31 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg index 701b852b804..b427f2f52d1 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg index f8d86eb50a5..cdc79118ed5 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg index 365fea42ab5..90adf962690 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg index 4207e39a8c5..adec4d27a57 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg index e74ed67f23b..4e7b98a6666 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg index 74de88b39cf..7907a9b54ea 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg index 17a78ae0f42..40b13faf075 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg index 7f14d6b9bea..51f3d28cd02 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg index 20d5b34c303..3af0b045b09 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg index 663980f2e9c..b6dceac3ab7 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg index ae48539ca64..ddc8d4cc804 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg index db1684399e6..c8293680c5a 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg index c18fad115ee..050c24f4861 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg index e03d98bbd8e..aab72b95862 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg index d49ea90995e..10d2359596d 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg index 056ecd41770..154068e75bd 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg index ce82524afc9..1b9f5362d03 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg index ac93bc17d5d..a5ec24936cc 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg index a6d971eb51b..6a1e1341aca 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg index dadd4384afa..2e38d3edf01 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg index be73a3ad1b9..494b7564f7e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg index 367c5a8ab1b..cfd6c67cf89 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg index 9f15ad8ed6e..297f663a08b 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg index 7a789b86686..78c3a117b4e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg index 7b2b42ae0b5..f68cb81b206 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg index 33d52d7ec7e..9ef2567d5f3 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg index ce5666e06a1..c36bc2cfefd 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg index de02366f812..b95ba9a53e2 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg index 0aaf94199e3..97ade112747 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg index 15891975a30..bc8e48e4204 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg index bbf46cce48f..3b356743eaa 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg index 6ef21ed75f4..d417eed1370 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg index 44e10530642..d420bdc315a 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg index 0f4db503b24..c7c7d7b2a74 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg index bce51740471..c0d79948fb0 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg index eedc26a9475..645892c120c 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg index 3831ec4895e..0943b483cc0 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg index 20ae02a33e6..9a59c5a90cc 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg index 0eef7bf1eda..7bcea7b25a0 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg index ded0f97db31..28587cd917b 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg index 78813503468..4c0324761ea 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg index 458e5a301f6..ea1f8c442b5 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg index f6defe9a0c5..9f8b32dc279 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg index cf05092f62f..e6c8962ab94 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg index 83c84bf1624..63cee911e4f 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg index 5990c5cb2b7..d1aef1f7bba 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg index aa0e6b305f8..b250a12dc91 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg index 5584c5e00a6..5615252dbdb 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg index eba95b253b8..f75225b75ec 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg index 56887755724..774500d9b91 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg index efbe56dee75..8df66c064da 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg index afc9e10f576..81da60bfb70 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg index c32dce45b5e..b05d4c2aada 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg index 8f24be0b25e..82bec9cd264 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg index cc382d57f53..341dca024bf 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg index b2708141539..134bcb896f2 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg index 94930d23a6d..8cc4526dbac 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg index c844739f285..461f1128b3c 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg index 1e60bc88066..c919d1a5461 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg @@ -12,7 +12,7 @@ type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False +gradual_flow_enabled = False acceleration_wall_0 = 2000 gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm.inst.cfg index a43607553c1..654b19912ba 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.25 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 inset_direction = outside_in skin_material_flow = =material_flow * 0.965 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm.inst.cfg index 005afd9d7c8..ddc63dba425 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.25 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 inset_direction = outside_in skin_material_flow = =material_flow * 0.93 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm.inst.cfg index de686a73257..a36ead82046 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.25 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 inset_direction = outside_in skin_material_flow = =material_flow * 0.965 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm.inst.cfg index 19bbdea9337..cdd4ff40756 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 inset_direction = outside_in skin_material_flow = =material_flow * 0.93 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.15mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.15mm.inst.cfg index 44ae90f27d6..98d4073c247 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.15mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 brim_replaces_support = False build_volume_temperature = =50 if extruders_enabled_count > 1 else 35 default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.1mm.inst.cfg index 4d19af32982..9fbef3cc809 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.1mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 brim_replaces_support = False build_volume_temperature = =50 if extruders_enabled_count > 1 else 35 default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.2mm.inst.cfg index bb057c5cda2..94b2bba250f 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 brim_replaces_support = False build_volume_temperature = =50 if extruders_enabled_count > 1 else 35 default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.3mm.inst.cfg index 72037645933..11cb5c0af65 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.3mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 brim_replaces_support = False build_volume_temperature = =50 if extruders_enabled_count > 1 else 35 default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm.inst.cfg index a35f2d6e105..781bfb1bea9 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 inset_direction = outside_in skin_material_flow = =material_flow * 0.93 speed_print = 80 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm.inst.cfg index 8956b5287fb..15dc2711531 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 inset_direction = outside_in skin_material_flow = =material_flow * 0.965 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm.inst.cfg index f6ae48bf119..d26adc91084 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 inset_direction = outside_in skin_material_flow = =material_flow * 0.965 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm.inst.cfg index 3257605cd23..5d9cf3041fa 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 inset_direction = outside_in skin_material_flow = =material_flow * 0.965 speed_print = 80 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm.inst.cfg index b0794b514e6..912fe135555 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 inset_direction = outside_in material_print_temperature = =default_material_print_temperature - 10 skin_material_flow = =material_flow * 0.965 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm.inst.cfg index f11d73dbbde..c515323cb5a 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 inset_direction = outside_in skin_material_flow = =material_flow * 0.965 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm.inst.cfg index 988c06664e5..6e3d48d868d 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 inset_direction = outside_in skin_material_flow = =material_flow * 0.965 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm.inst.cfg index 1ca784384a9..21dc3936668 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 inset_direction = outside_in skin_material_flow = =material_flow * 0.93 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm.inst.cfg index 5a22723bfdc..0ed49fe031b 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 inset_direction = outside_in skin_material_flow = =material_flow * 0.93 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm.inst.cfg index 76b9af883db..efd521f6bb9 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 inset_direction = outside_in material_print_temperature = =default_material_print_temperature + 15 skin_material_flow = =material_flow * 0.93 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pp_0.2mm.inst.cfg index d4cb4e3f0ae..3b54454dfce 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pp_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 brim_width = 20 inset_direction = outside_in skin_material_flow = =material_flow * 0.965 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm.inst.cfg index 5606af1f31c..c9a48c4dfb3 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 inset_direction = outside_in skin_material_flow = =material_flow * 0.965 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm.inst.cfg index ffdc37f93f8..0351fe25b98 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 inset_direction = outside_in skin_material_flow = =material_flow * 0.965 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm.inst.cfg index d9007739769..92ba952865c 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 inset_direction = outside_in material_print_temperature = =default_material_print_temperature + 15 skin_material_flow = =material_flow * 0.965 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tpu_0.2mm.inst.cfg index f7a360beaa7..0a01955877a 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tpu_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 50 else 'cross_3d' infill_sparse_density = 10 inset_direction = outside_in diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_abs_0.2mm.inst.cfg index b5bb6abc8fc..a72036c7c61 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_abs_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 inset_direction = outside_in skin_material_flow = =material_flow * 0.93 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_cpe_0.2mm.inst.cfg index 9908a3bb851..d2f1166ac6f 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_cpe_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 inset_direction = outside_in skin_material_flow = =material_flow * 0.965 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm.inst.cfg index a6b9e84f6c8..cebb307e08c 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 inset_direction = outside_in skin_material_flow = =material_flow * 0.965 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm.inst.cfg index 57355ea4f14..83d4c9db822 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 inset_direction = outside_in skin_material_flow = =material_flow * 0.965 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm.inst.cfg index 134a7c2684f..810ec4b7e7b 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 inset_direction = outside_in skin_material_flow = =material_flow * 0.965 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm.inst.cfg index 536aed0d0d0..26eddbe4822 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 inset_direction = outside_in material_print_temperature = =default_material_print_temperature + 15 skin_material_flow = =material_flow * 0.93 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm.inst.cfg index a6e58a1a629..d4ef31be27e 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 inset_direction = outside_in material_print_temperature = =default_material_print_temperature + 15 skin_material_flow = =material_flow * 0.93 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm.inst.cfg index ed182ab57d9..3faaa016065 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 inset_direction = outside_in material_print_temperature = =default_material_print_temperature + 15 skin_material_flow = =material_flow * 0.965 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm.inst.cfg index 70a6f9925d8..5cb0d7506c2 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 inset_direction = outside_in material_print_temperature = =default_material_print_temperature + 15 skin_material_flow = =material_flow * 0.965 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.2mm.inst.cfg index 7db0c220f4b..d5bd1c08db9 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 50 else 'cross_3d' infill_sparse_density = 10 inset_direction = outside_in diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.15mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.15mm.inst.cfg index bae4a519f31..9705db21e12 100644 --- a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.15mm.inst.cfg @@ -12,9 +12,9 @@ variant = BB 0.4 weight = -1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_support_bottom = 100 acceleration_support_interface = 1500 brim_replaces_support = False diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.1mm.inst.cfg index 95b7c1856db..0dfae8bd2d6 100644 --- a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.1mm.inst.cfg @@ -12,9 +12,9 @@ variant = BB 0.4 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_support_bottom = 100 acceleration_support_interface = 1500 brim_replaces_support = False diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.2mm.inst.cfg index 8de45aa01b5..e29f829c46e 100644 --- a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = BB 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_support_bottom = 100 acceleration_support_interface = 1500 brim_replaces_support = False diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.3mm.inst.cfg index be24017486a..5221b2ba510 100644 --- a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.3mm.inst.cfg @@ -12,9 +12,9 @@ variant = BB 0.4 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_support_bottom = 100 acceleration_support_interface = 1500 brim_replaces_support = False diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.2mm.inst.cfg index 1e1ab101f45..a3aee5c4102 100644 --- a/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = BB 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_support_bottom = 100 acceleration_support_interface = 1500 brim_replaces_support = False diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.3mm.inst.cfg index 2ae11eb4418..c0b5405c16a 100644 --- a/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.3mm.inst.cfg @@ -12,9 +12,9 @@ variant = BB 0.8 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_support_bottom = 100 acceleration_support_interface = 1500 brim_replaces_support = False diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.4mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.4mm.inst.cfg index 448152ca8ee..55d35b554ed 100644 --- a/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.4mm.inst.cfg @@ -12,9 +12,9 @@ variant = BB 0.8 weight = -4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_support_bottom = 100 acceleration_support_interface = 1500 brim_replaces_support = False diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm.inst.cfg index 3f00103ddda..efb681510a2 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = CC 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.5 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.1 +gradual_flow_discretisation_step_size = 0.5 +gradual_flow_enabled = True +max_flow_acceleration = 0.1 cool_fan_speed_max = =cool_fan_speed infill_wall_line_count = 1 material_shrinkage_percentage = 100.15 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm.inst.cfg index b33a4c38e32..170edd3f4a4 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = CC 0.6 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.5 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.1 +gradual_flow_discretisation_step_size = 0.5 +gradual_flow_enabled = True +max_flow_acceleration = 0.1 cool_fan_speed_max = =cool_fan_speed infill_wall_line_count = 1 material_shrinkage_percentage = 100.15 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.2mm.inst.cfg index 8e4a1053587..6f4055fb066 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.2mm.inst.cfg @@ -13,9 +13,9 @@ variant = CC 0.6 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 inset_direction = outside_in skin_material_flow = =material_flow * 0.93 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.3mm.inst.cfg index a168b8f7d09..3adc4e0188d 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.3mm.inst.cfg @@ -13,9 +13,9 @@ variant = CC 0.6 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 inset_direction = outside_in skin_material_flow = =material_flow * 0.93 diff --git a/resources/quality/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm.inst.cfg index 8204135cc04..643d1dcc541 100644 --- a/resources/quality/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = HT 0.6 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +max_flow_acceleration = 1 adhesion_type = brim infill_wall_line_count = 1 retraction_combing_max_distance = 2 diff --git a/resources/quality/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm.inst.cfg index aa4022bc5d6..52f02abd2d2 100644 --- a/resources/quality/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = HT 0.6 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.5 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.1 +gradual_flow_discretisation_step_size = 0.5 +gradual_flow_enabled = True +max_flow_acceleration = 0.1 cool_fan_speed_max = =cool_fan_speed infill_wall_line_count = 1 material_shrinkage_percentage = 100.15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg index fefbf8b6155..2b3253ab707 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.25 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg index 94de34ad72f..587a43bf5de 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.25 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg index 4ed588e9e32..a7e98734017 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.25 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg index 7daf38b3125..b367cdec470 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.25 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg index 89614bec9cd..7f0eb2106e5 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = 1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg index 6716a2f5041..7562a8b1c7a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg index 10f0c211cfb..ad5ae195a05 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg index 829dd29d226..9e475d55bb9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg index c42fbd390e9..2058db8daa1 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg index 2ab5c2fbfb3..b05a5e3c828 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = 1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg index e21e8ffdca7..08a6d78f196 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg index 629f53baf9a..8b9c9257be8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg index c155871f26c..282808ba18c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg index 4c2671ff693..88221cbc143 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg index 163c3c400e7..6d6bcacaf10 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = 1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg index be380e6b23b..4558feffb91 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg index e53e2b3dbda..d6b5d9b76e0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg index 7b75e78fb51..0ddebebc576 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg index 0ea189daf8d..c016953b792 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg index 87c575b9787..e4b5c5a40f7 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = 1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg index bcfad903cf4..e4816099b92 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg index 244309d77e6..63da6728bee 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg index eb5bdba073f..89710d904a7 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg index efd4f4ecefe..501487c11e2 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg index acddb2300a5..095047399d6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg index e7d9686a980..79984f2638e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg index 5b1795f87e4..f64faffc504 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg index 913f3f96cbf..d3590303bd6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg index cab1ac9ae65..a9991bf1b78 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg index cf81658b7a7..388a4027342 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg index d5469d63781..317632d6514 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg index c5bb22fb174..e3fc7fb4bca 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg index 260fb5ba104..71b107c4826 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg index c0919d21927..0387dc09a07 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg index 3d3f3b9eed1..b4b72b02b9b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg index d0aad55cf39..6ba0cbc3c48 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg index d5486c1a55f..88ff2a6abf1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.25 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg index f2a9e39e7a6..b446e207f0c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.25 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg index 3fff3081c98..838d93dba89 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.25 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg index 8168ef5278d..be46b3bbb99 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.25 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg index 4241f393e96..9a302b7c0d9 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = 1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg index cf38fd6c7ef..aa48a2daa0d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg index 8d0b516c7e1..1d087c2ea43 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg index 7ddd9784c9d..3462394edb1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg index 1f13c148372..41214123409 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg index 1ae99404141..ff118d1b6d6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = 1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg index ff9b960365f..882e8b67bec 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg index aad464cb8a2..6b276bb4f31 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg index 26143019655..2d91de68895 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg index 731f07dd61b..57caf7c9aee 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg index d1df42d9291..f53049cd941 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = 1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg index 37c25af4f94..deac70962c3 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg index 4669dcb57f5..3429dc0e407 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg index 7207ff17fab..f2e990ba882 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg index 19b344a1b07..aba0ec0808e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg index 347a2f68982..434e4aa944f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = 1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg index 6973077df4a..53a6b2a038e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg index 86ed61ff0c0..b0fc69beb29 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg index f0f022a0fa9..8679b8852bd 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg index 82d20f7498b..84002bc56c1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.4 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg index 278ead15947..27235eb4eaa 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg index 0d5d710e7b3..f9dd9392dd9 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg index 8854b681d70..cb1b927e298 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg index dbff5632b72..edf9355c165 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg index c149805400c..a04dbadcb71 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg index 785f23c0087..843c73227ba 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg index 9b3dbc2cf2d..098b10d5b6d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg index ded73ff086f..cb88bb41434 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg index 9e435e175aa..10e6cb8b22c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg index 757c7ce6809..806a4b9d46c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg index a7018650923..f6513c58733 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg index e68093c7b2a..6932b8b7e52 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg @@ -12,9 +12,9 @@ variant = AA 0.8 weight = -4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True +max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 From 3949b1a595dac25d01d856be4c92f5b5ce913cce Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 16 Aug 2024 15:15:50 +0200 Subject: [PATCH 4/6] Move gradual flow translations into classic translations CURA-12096 --- resources/i18n/cs_CZ/fdmprinter.def.json.po | 60 +++++++------- .../cs_CZ/gradual_flow_settings.def.json.po | 54 ------------- resources/i18n/de_DE/fdmprinter.def.json.po | 40 ++++++++++ .../de_DE/gradual_flow_settings.def.json.po | 53 ------------ resources/i18n/es_ES/fdmprinter.def.json.po | 40 ++++++++++ .../es_ES/gradual_flow_settings.def.json.po | 53 ------------ resources/i18n/fdmprinter.def.json.pot | 40 ++++++++++ .../fi_FI/gradual_flow_settings.def.json.po | 54 ------------- resources/i18n/fr_FR/fdmprinter.def.json.po | 40 ++++++++++ .../fr_FR/gradual_flow_settings.def.json.po | 53 ------------ .../i18n/gradual_flow_settings.def.json.pot | 58 -------------- .../hu_HU/gradual_flow_settings.def.json.po | 54 ------------- resources/i18n/it_IT/fdmprinter.def.json.po | 40 ++++++++++ .../it_IT/gradual_flow_settings.def.json.po | 53 ------------ resources/i18n/ja_JP/fdmprinter.def.json.po | 40 ++++++++++ .../ja_JP/gradual_flow_settings.def.json.po | 53 ------------ resources/i18n/ko_KR/fdmprinter.def.json.po | 40 ++++++++++ .../ko_KR/gradual_flow_settings.def.json.po | 53 ------------ resources/i18n/nl_NL/fdmprinter.def.json.po | 40 ++++++++++ .../nl_NL/gradual_flow_settings.def.json.po | 53 ------------ .../pl_PL/gradual_flow_settings.def.json.po | 54 ------------- resources/i18n/pt_BR/fdmprinter.def.json.po | 80 +++++++++---------- .../pt_BR/gradual_flow_settings.def.json.po | 55 ------------- resources/i18n/pt_PT/fdmprinter.def.json.po | 40 ++++++++++ .../pt_PT/gradual_flow_settings.def.json.po | 53 ------------ resources/i18n/ru_RU/fdmprinter.def.json.po | 40 ++++++++++ .../ru_RU/gradual_flow_settings.def.json.po | 53 ------------ resources/i18n/tr_TR/fdmprinter.def.json.po | 40 ++++++++++ .../tr_TR/gradual_flow_settings.def.json.po | 53 ------------ resources/i18n/zh_CN/fdmprinter.def.json.po | 40 ++++++++++ .../zh_CN/gradual_flow_settings.def.json.po | 53 ------------ .../zh_TW/gradual_flow_settings.def.json.po | 54 ------------- 32 files changed, 550 insertions(+), 1036 deletions(-) delete mode 100644 resources/i18n/cs_CZ/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/de_DE/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/es_ES/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/fi_FI/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/fr_FR/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/gradual_flow_settings.def.json.pot delete mode 100644 resources/i18n/hu_HU/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/it_IT/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/ja_JP/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/ko_KR/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/nl_NL/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/pl_PL/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/pt_BR/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/pt_PT/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/ru_RU/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/tr_TR/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/zh_CN/gradual_flow_settings.def.json.po delete mode 100644 resources/i18n/zh_TW/gradual_flow_settings.def.json.po diff --git a/resources/i18n/cs_CZ/fdmprinter.def.json.po b/resources/i18n/cs_CZ/fdmprinter.def.json.po index eb23f73c282..c2a02d7e401 100644 --- a/resources/i18n/cs_CZ/fdmprinter.def.json.po +++ b/resources/i18n/cs_CZ/fdmprinter.def.json.po @@ -5893,53 +5893,53 @@ msgstr "cestování" #~ msgid "Brim Only on Outside" #~ msgstr "Límec pouze venku" -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "Doba trvání každého kroku v postupné změně průtoku" +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Doba trvání každého kroku v postupné změně průtoku" -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "Povolit postupné změny průtoku. Když je povoleno, průtok se postupně zvyšuje / snižuje na cílový průtok. Toto je užitečné pro tiskárny s Bowdenovou trubicí, kde se průtok okamžitě nezmění, když se spustí / zastaví extrudér." +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Povolit postupné změny průtoku. Když je povoleno, průtok se postupně zvyšuje / snižuje na cílový průtok. Toto je užitečné pro tiskárny s Bowdenovou trubicí, kde se průtok okamžitě nezmění, když se spustí / zastaví extrudér." -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "Pro jakýkoli pohyb delší než tato hodnota se materiálový průtok resetuje na cílový průtok dráhy" +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Pro jakýkoli pohyb delší než tato hodnota se materiálový průtok resetuje na cílový průtok dráhy" -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "Velikost kroku diskretizace postupné změny průtoku" +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Velikost kroku diskretizace postupné změny průtoku" -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "Postupné změny průtoku povoleny" +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Postupné změny průtoku povoleny" -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "Maximální zrychlení postupných změn průtoku" +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Maximální zrychlení postupných změn průtoku" -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "Maximální zrychlení průtoku pro první vrstvu" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Maximální zrychlení průtoku pro první vrstvu" #~ msgctxt "layer_0_z_overlap description" #~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." #~ msgstr "První a druhá vrstva modelu se překrývají ve směru Z, aby se kompenzovalo vlákno ztracené ve vzduchové mezeře. Všechny modely nad první vrstvou modelu budou o tuto částku posunuty dolů." -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "Maximální zrychlení pro postupné změny průtoku" +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximální zrychlení pro postupné změny průtoku" -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "Minimální rychlost pro postupné změny průtoku pro první vrstvu" +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimální rychlost pro postupné změny průtoku pro první vrstvu" #~ msgctxt "brim_outside_only description" #~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." #~ msgstr "Límec tiskněte pouze na vnější stranu modelu. Tím se snižuje množství límce, který je třeba následně odstranit, zatímco to tolik nesnižuje přilnavost k podložce." -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "Doba trvání resetování průtoku" +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Doba trvání resetování průtoku" #~ msgctxt "support_interface_skip_height label" #~ msgid "Support Interface Resolution" diff --git a/resources/i18n/cs_CZ/gradual_flow_settings.def.json.po b/resources/i18n/cs_CZ/gradual_flow_settings.def.json.po deleted file mode 100644 index 2529ed73e4f..00000000000 --- a/resources/i18n/cs_CZ/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,54 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: 2024-03-11 11:28+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" diff --git a/resources/i18n/de_DE/fdmprinter.def.json.po b/resources/i18n/de_DE/fdmprinter.def.json.po index 37b95d2d070..dc2fb4f21df 100644 --- a/resources/i18n/de_DE/fdmprinter.def.json.po +++ b/resources/i18n/de_DE/fdmprinter.def.json.po @@ -5860,3 +5860,43 @@ msgstr "Beim Drucken der ersten Schicht der Raft-Oberfläche verschieben Sie um msgctxt "z_seam_on_vertex label" msgid "Z Seam On Vertex" msgstr "Z-Naht auf Scheitelpunkt" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Dauer jedes Schritts bei der sukzessiven Durchflusssänderung" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Aktivieren Sie sukzessive Durchflussänderungen. Wenn diese Option aktiviert ist, wird der Durchfluss sukzessiv auf den angestrebten Durchfluss erhöht/verringert. Dies ist nützlich für Drucker mit einem Bowdenschlauch, bei denen der Durchfluss nicht sofort geändert wird, wenn der Extrudermotor startet/stoppt." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Für jede Verfahrbewegung, die länger als dieser Wert ist, wird der Materialfluss auf den Sollwegfluss zurückgesetzt." + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Umfang des Diskretisierungsvorgangs bei sukzessivem Durchfluss" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Sukzessiver Durchfluss aktiviert" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Maximale Beschleunigung bei sukzessivem Durchfluss" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Maximale Durchflussbeschleunigung bei der Anfangsschicht" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximale Beschleunigung für sukzessive Durchflussänderungen" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Mindestgeschwindigkeit für sukzessive Durchflussänderungen bei der Anfangsschicht" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Durchflussdauer zurücksetzen" diff --git a/resources/i18n/de_DE/gradual_flow_settings.def.json.po b/resources/i18n/de_DE/gradual_flow_settings.def.json.po deleted file mode 100644 index 3fac9556237..00000000000 --- a/resources/i18n/de_DE/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,53 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: de_DE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Dauer jedes Schritts bei der sukzessiven Durchflusssänderung" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Aktivieren Sie sukzessive Durchflussänderungen. Wenn diese Option aktiviert ist, wird der Durchfluss sukzessiv auf den angestrebten Durchfluss erhöht/verringert. Dies ist nützlich für Drucker mit einem Bowdenschlauch, bei denen der Durchfluss nicht sofort geändert wird, wenn der Extrudermotor startet/stoppt." - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Für jede Verfahrbewegung, die länger als dieser Wert ist, wird der Materialfluss auf den Sollwegfluss zurückgesetzt." - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Umfang des Diskretisierungsvorgangs bei sukzessivem Durchfluss" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Sukzessiver Durchfluss aktiviert" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Maximale Beschleunigung bei sukzessivem Durchfluss" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Maximale Durchflussbeschleunigung bei der Anfangsschicht" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximale Beschleunigung für sukzessive Durchflussänderungen" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Mindestgeschwindigkeit für sukzessive Durchflussänderungen bei der Anfangsschicht" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Durchflussdauer zurücksetzen" diff --git a/resources/i18n/es_ES/fdmprinter.def.json.po b/resources/i18n/es_ES/fdmprinter.def.json.po index db2d43b4d86..662e6c372c5 100644 --- a/resources/i18n/es_ES/fdmprinter.def.json.po +++ b/resources/i18n/es_ES/fdmprinter.def.json.po @@ -5860,3 +5860,43 @@ msgstr "Cuando se imprima la primera capa de la superficie del conjunto, convier msgctxt "z_seam_on_vertex label" msgid "Z Seam On Vertex" msgstr "Juntura Z en el vértice" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duración de cada intervalo en el cambio de flujo gradual" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Habilite cambios de flujo gradual. Al habilitarse, el flujo se incrementa/decrementa gradualmente hasta el flujo objetivo. Esto es útil para impresoras con tubo bowden en las que el flujo no cambia inmediatamente cuando el motor extrusor arranca o se detiene." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Para cualquier movimiento de desplazamiento superior a este valor, el flujo material se restablece al flujo objetivo de las trayectorias" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Tamaño del intervalo para discretización de flujo gradual" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Flujo gradual habilitado" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Flujo gradual de aceleración máxima" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Aceleración máxima de flujo de capa inicial" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Aceleración máxima para cambios graduales de flujo" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Velocidad mínima para cambios graduales de flujo en la primera capa" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Restablecer duración de flujo" diff --git a/resources/i18n/es_ES/gradual_flow_settings.def.json.po b/resources/i18n/es_ES/gradual_flow_settings.def.json.po deleted file mode 100644 index 3437e28849a..00000000000 --- a/resources/i18n/es_ES/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,53 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: es_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duración de cada intervalo en el cambio de flujo gradual" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Habilite cambios de flujo gradual. Al habilitarse, el flujo se incrementa/decrementa gradualmente hasta el flujo objetivo. Esto es útil para impresoras con tubo bowden en las que el flujo no cambia inmediatamente cuando el motor extrusor arranca o se detiene." - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Para cualquier movimiento de desplazamiento superior a este valor, el flujo material se restablece al flujo objetivo de las trayectorias" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Tamaño del intervalo para discretización de flujo gradual" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Flujo gradual habilitado" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Flujo gradual de aceleración máxima" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Aceleración máxima de flujo de capa inicial" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Aceleración máxima para cambios graduales de flujo" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Velocidad mínima para cambios graduales de flujo en la primera capa" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Restablecer duración de flujo" diff --git a/resources/i18n/fdmprinter.def.json.pot b/resources/i18n/fdmprinter.def.json.pot index 89729e177de..8a09cf9129c 100644 --- a/resources/i18n/fdmprinter.def.json.pot +++ b/resources/i18n/fdmprinter.def.json.pot @@ -5860,3 +5860,43 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "" +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" + diff --git a/resources/i18n/fi_FI/gradual_flow_settings.def.json.po b/resources/i18n/fi_FI/gradual_flow_settings.def.json.po deleted file mode 100644 index 2529ed73e4f..00000000000 --- a/resources/i18n/fi_FI/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,54 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: 2024-03-11 11:28+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" diff --git a/resources/i18n/fr_FR/fdmprinter.def.json.po b/resources/i18n/fr_FR/fdmprinter.def.json.po index 6ebc9cfecb9..7ae71602a38 100644 --- a/resources/i18n/fr_FR/fdmprinter.def.json.po +++ b/resources/i18n/fr_FR/fdmprinter.def.json.po @@ -5860,3 +5860,43 @@ msgstr "Lors de l'impression de la première couche de la surface du radeau, il msgctxt "z_seam_on_vertex label" msgid "Z Seam On Vertex" msgstr "Joint en Z sur le sommet" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Durée de chaque pas dans la variation progressive du débit" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Activer les variations de débit progressives. Lorsque cette option est activée, le débit est augmenté ou réduit progressivement jusqu'au débit souhaité. Cette option est utile pour les imprimantes avec un tube bowden où le débit n'est pas modifié immédiatement lorsque le moteur de l'extrudeur démarre ou s'arrête." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Pour tout déplacement supérieur à cette valeur, le débit de matière est réinitialisé au débit souhaité pour les trajectoires" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Taille de pas de la discrétisation du débit progressif" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Débit progressif activé" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Accélération progressive jusqu'au débit max" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Accélération maximale du débit lors de la première couche" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Accélération maximale pour les variations de débit progressives" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Vitesse minimale pour les variations de débit progressives pour la première couche" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Réinitialiser la durée du débit" diff --git a/resources/i18n/fr_FR/gradual_flow_settings.def.json.po b/resources/i18n/fr_FR/gradual_flow_settings.def.json.po deleted file mode 100644 index 6b1a40e614c..00000000000 --- a/resources/i18n/fr_FR/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,53 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: fr_FR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n>1;\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Durée de chaque pas dans la variation progressive du débit" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Activer les variations de débit progressives. Lorsque cette option est activée, le débit est augmenté ou réduit progressivement jusqu'au débit souhaité. Cette option est utile pour les imprimantes avec un tube bowden où le débit n'est pas modifié immédiatement lorsque le moteur de l'extrudeur démarre ou s'arrête." - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Pour tout déplacement supérieur à cette valeur, le débit de matière est réinitialisé au débit souhaité pour les trajectoires" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Taille de pas de la discrétisation du débit progressif" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Débit progressif activé" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Accélération progressive jusqu'au débit max" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Accélération maximale du débit lors de la première couche" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Accélération maximale pour les variations de débit progressives" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Vitesse minimale pour les variations de débit progressives pour la première couche" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Réinitialiser la durée du débit" diff --git a/resources/i18n/gradual_flow_settings.def.json.pot b/resources/i18n/gradual_flow_settings.def.json.pot deleted file mode 100644 index 7d9afba68fc..00000000000 --- a/resources/i18n/gradual_flow_settings.def.json.pot +++ /dev/null @@ -1,58 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - - - - - - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" - diff --git a/resources/i18n/hu_HU/gradual_flow_settings.def.json.po b/resources/i18n/hu_HU/gradual_flow_settings.def.json.po deleted file mode 100644 index 2529ed73e4f..00000000000 --- a/resources/i18n/hu_HU/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,54 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: 2024-03-11 11:28+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" diff --git a/resources/i18n/it_IT/fdmprinter.def.json.po b/resources/i18n/it_IT/fdmprinter.def.json.po index dab6b12a71e..2efce196dbc 100644 --- a/resources/i18n/it_IT/fdmprinter.def.json.po +++ b/resources/i18n/it_IT/fdmprinter.def.json.po @@ -5860,3 +5860,43 @@ msgstr "Quando si stampa il primo strato della superficie del raft, traslare con msgctxt "z_seam_on_vertex label" msgid "Z Seam On Vertex" msgstr "Cucitura Z sul vertice" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Durata di ogni gradino per la variazione graduale del flusso" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Abilitare le variazioni graduali del flusso. Quando abilitate, il flusso viene aumentato/diminuito gradualmente fino al flusso target. Ciò è utile per le stampanti dotate di tubo bowden dove il flusso non viene modificato immediatamente all'avvio/arresto del motore dell'estrusore." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Per ogni spostamento del percorso superiore a questo valore, il flusso del materiale viene reimpostato su quello target dei percorsi." + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Dimensione del gradino di discretizzazione del flusso graduale" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Flusso graduale abilitato" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Accelerazione massima del flusso graduale" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Accelerazione massima del flusso per lo strato iniziale" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Accelerazione massima per le variazioni graduali del flusso" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Velocità minima per le variazioni graduali del flusso per il primo strato." + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reimpostare la durata del flusso" diff --git a/resources/i18n/it_IT/gradual_flow_settings.def.json.po b/resources/i18n/it_IT/gradual_flow_settings.def.json.po deleted file mode 100644 index f3c4fca0881..00000000000 --- a/resources/i18n/it_IT/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,53 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: it_IT\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Durata di ogni gradino per la variazione graduale del flusso" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Abilitare le variazioni graduali del flusso. Quando abilitate, il flusso viene aumentato/diminuito gradualmente fino al flusso target. Ciò è utile per le stampanti dotate di tubo bowden dove il flusso non viene modificato immediatamente all'avvio/arresto del motore dell'estrusore." - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Per ogni spostamento del percorso superiore a questo valore, il flusso del materiale viene reimpostato su quello target dei percorsi." - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Dimensione del gradino di discretizzazione del flusso graduale" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Flusso graduale abilitato" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Accelerazione massima del flusso graduale" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Accelerazione massima del flusso per lo strato iniziale" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Accelerazione massima per le variazioni graduali del flusso" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Velocità minima per le variazioni graduali del flusso per il primo strato." - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Reimpostare la durata del flusso" diff --git a/resources/i18n/ja_JP/fdmprinter.def.json.po b/resources/i18n/ja_JP/fdmprinter.def.json.po index f0924c7ae86..9feb3284fea 100644 --- a/resources/i18n/ja_JP/fdmprinter.def.json.po +++ b/resources/i18n/ja_JP/fdmprinter.def.json.po @@ -5862,3 +5862,43 @@ msgstr "ラフトサーフェスの第1層をプリントする際に,このオ msgctxt "z_seam_on_vertex label" msgid "Z Seam On Vertex" msgstr "頂点のZシーム" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "段階的なフローの変化におけるステップごとの継続時間" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "段階的なフローの変化を有効にします。有効にすると,フローは目標フローまで段階的に増減します。これは,押し出しモーターの始動/停止時にフローがすぐに変化しないボーデンチューブを備えたプリンターに便利です。" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "この値より長い移動の場合,素材フローはパスの目標フローにリセットされます。" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "段階的なフローの離散化ステップのサイズ" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "段階的なフローが有効" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "段階的なフローの最大加速度" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "初期層の最大フロー加速度" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "フローを段階的に変化させるための最大加速度" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "第1層のフローを段階的に変化させるための最低速度" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "フローの継続時間をリセット" diff --git a/resources/i18n/ja_JP/gradual_flow_settings.def.json.po b/resources/i18n/ja_JP/gradual_flow_settings.def.json.po deleted file mode 100644 index d8548e38495..00000000000 --- a/resources/i18n/ja_JP/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,53 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: ja_JP\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "段階的なフローの変化におけるステップごとの継続時間" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "段階的なフローの変化を有効にします。有効にすると,フローは目標フローまで段階的に増減します。これは,押し出しモーターの始動/停止時にフローがすぐに変化しないボーデンチューブを備えたプリンターに便利です。" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "この値より長い移動の場合,素材フローはパスの目標フローにリセットされます。" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "段階的なフローの離散化ステップのサイズ" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "段階的なフローが有効" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "段階的なフローの最大加速度" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "初期層の最大フロー加速度" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "フローを段階的に変化させるための最大加速度" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "第1層のフローを段階的に変化させるための最低速度" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "フローの継続時間をリセット" diff --git a/resources/i18n/ko_KR/fdmprinter.def.json.po b/resources/i18n/ko_KR/fdmprinter.def.json.po index 371c8badafc..778ecf3663c 100644 --- a/resources/i18n/ko_KR/fdmprinter.def.json.po +++ b/resources/i18n/ko_KR/fdmprinter.def.json.po @@ -5860,3 +5860,43 @@ msgstr "래프트 서피스의 첫 번째 레이어를 인쇄 시, 해당 오프 msgctxt "z_seam_on_vertex label" msgid "Z Seam On Vertex" msgstr "버텍스 상의 Z 심" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "점진적 흐름 변경에서 각 단계의 지속 시간" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "점진적 흐름 변경을 활성화합니다. 활성화하면 흐름이 목표 흐름까지 점진적으로 증가/감소합니다. 이는 압출기 모터가 시작/정지될 때 흐름이 즉시 변경되지 않는 보우덴 튜브가 있는 프린터에 유용합니다." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "이 값보다 긴 이동에 대해서는 재료 흐름이 경로 목표 흐름으로 재설정됩니다" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "점진적 흐름 이산화 단계 크기" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "점진적 흐름 활성화됨" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "점진적 흐름 최대 가속" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "초기 레이어 최대 흐름 가속" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "점진적 흐름 변경에 대한 최대 가속" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "첫 번째 레이어의 점진적 흐름 변경에 대한 최소 속도" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "흐름 지속 시간 재설정" diff --git a/resources/i18n/ko_KR/gradual_flow_settings.def.json.po b/resources/i18n/ko_KR/gradual_flow_settings.def.json.po deleted file mode 100644 index 7b13d00199c..00000000000 --- a/resources/i18n/ko_KR/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,53 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: ko_KR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "점진적 흐름 변경에서 각 단계의 지속 시간" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "점진적 흐름 변경을 활성화합니다. 활성화하면 흐름이 목표 흐름까지 점진적으로 증가/감소합니다. 이는 압출기 모터가 시작/정지될 때 흐름이 즉시 변경되지 않는 보우덴 튜브가 있는 프린터에 유용합니다." - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "이 값보다 긴 이동에 대해서는 재료 흐름이 경로 목표 흐름으로 재설정됩니다" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "점진적 흐름 이산화 단계 크기" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "점진적 흐름 활성화됨" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "점진적 흐름 최대 가속" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "초기 레이어 최대 흐름 가속" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "점진적 흐름 변경에 대한 최대 가속" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "첫 번째 레이어의 점진적 흐름 변경에 대한 최소 속도" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "흐름 지속 시간 재설정" diff --git a/resources/i18n/nl_NL/fdmprinter.def.json.po b/resources/i18n/nl_NL/fdmprinter.def.json.po index 1ff63009b6e..ae67b0c9104 100644 --- a/resources/i18n/nl_NL/fdmprinter.def.json.po +++ b/resources/i18n/nl_NL/fdmprinter.def.json.po @@ -5860,3 +5860,43 @@ msgstr "Bij het printen van de eerste laag van het raftoppervlak: gebruik deze o msgctxt "z_seam_on_vertex label" msgid "Z Seam On Vertex" msgstr "Z-naad op vertex" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duur van elke stap in de geleidelijke stroomverandering" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Geleidelijke stroomwijzigingen inschakelen. Als deze optie is ingeschakeld, wordt de stroom geleidelijk verhoogd/verlaagd tot de doelstroom. Dit is handig voor printers met een bowdenbuis waarbij de stroom niet onmiddellijk verandert wanneer de extrudermotor start/stopt." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Voor elke af te leggen afstand die langer is dan deze waarde, wordt de materiaalstroom opnieuw ingesteld op de doelstroom van de paden." + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Stapgrootte geleidelijke stroomdiscretisatie" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Geleidelijke stroom ingeschakeld" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Maximale versnelling voor geleidelijke stroom" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Maximale stroomversnelling eerste laag" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximale versnelling voor geleidelijke stroomveranderingen" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimumsnelheid voor geleidelijke stroomveranderingen voor de eerste laag" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Stroomduur opnieuw instellen" diff --git a/resources/i18n/nl_NL/gradual_flow_settings.def.json.po b/resources/i18n/nl_NL/gradual_flow_settings.def.json.po deleted file mode 100644 index fcb179f9b3f..00000000000 --- a/resources/i18n/nl_NL/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,53 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: nl_NL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duur van elke stap in de geleidelijke stroomverandering" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Geleidelijke stroomwijzigingen inschakelen. Als deze optie is ingeschakeld, wordt de stroom geleidelijk verhoogd/verlaagd tot de doelstroom. Dit is handig voor printers met een bowdenbuis waarbij de stroom niet onmiddellijk verandert wanneer de extrudermotor start/stopt." - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Voor elke af te leggen afstand die langer is dan deze waarde, wordt de materiaalstroom opnieuw ingesteld op de doelstroom van de paden." - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Stapgrootte geleidelijke stroomdiscretisatie" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Geleidelijke stroom ingeschakeld" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Maximale versnelling voor geleidelijke stroom" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Maximale stroomversnelling eerste laag" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximale versnelling voor geleidelijke stroomveranderingen" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimumsnelheid voor geleidelijke stroomveranderingen voor de eerste laag" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Stroomduur opnieuw instellen" diff --git a/resources/i18n/pl_PL/gradual_flow_settings.def.json.po b/resources/i18n/pl_PL/gradual_flow_settings.def.json.po deleted file mode 100644 index 2529ed73e4f..00000000000 --- a/resources/i18n/pl_PL/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,54 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: 2024-03-11 11:28+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" diff --git a/resources/i18n/pt_BR/fdmprinter.def.json.po b/resources/i18n/pt_BR/fdmprinter.def.json.po index d668c8841ad..9a14afb3e8b 100644 --- a/resources/i18n/pt_BR/fdmprinter.def.json.po +++ b/resources/i18n/pt_BR/fdmprinter.def.json.po @@ -5906,54 +5906,14 @@ msgstr "percurso" #~ msgid "Brim Only on Outside" #~ msgstr "Brim Somente Para Fora" -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "Duração de cada passo na alteração de fluxo gradual" - -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "Habilita mudanças graduais de fluxo. Quando habilitado, o fluxo é gradualmente aumentado ou reduzido para o fluxo alvo. Útil para impressoras com tubo bowden onde o fluxo não é imediatamente alterado quando o motor do extrusor inicia ou para." - -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é resetado para o fluxo-alvo do percurso." - -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "Tamanho de passo da discretização de fluxo gradual" - -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "Fluxo gradual habilitado" - -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "Aceleração máxima do fluxo gradual" - -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "Aceleração máxima de fluxo da camada inicial" - #~ msgctxt "layer_0_z_overlap description" #~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." #~ msgstr "Faz a primeira e segunda camadas do modelo se sobreporem na direção Z para compensar pelo filamento perdido no vão aéreo. Todos os modelos acima da primeira camada de modelo serão deslocados para baixo por essa distância." -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "Aceleração máxima para alterações de fluxo gradual" - -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "Velocidade mínima para alterações graduais de fluxo na primeira camada" - #~ msgctxt "brim_outside_only description" #~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." #~ msgstr "Imprimir o Brim somente no lado de fora do modelo. Isto reduz a quantidade de brim a ser removida no final, e não reduz tanto a aderência à mesa." -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "Duração de reset do fluxo" - #~ msgctxt "support_interface_skip_height label" #~ msgid "Support Interface Resolution" #~ msgstr "Resolução da Interface de Suporte" @@ -5961,3 +5921,43 @@ msgstr "percurso" #~ msgctxt "support_interface_skip_height description" #~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." #~ msgstr "Quando verificar se há partes do modelo abaixo e acima do suporte, usar passos de dada altura. Valores baixos fatiarão mais lentamente, enquanto que valores altos farão com que suporte convencional seja impresso em lugares em que deveria haver interface de suporte." + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duração de cada passo na mudança gradual de fluxo" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Habilita mudanças graduais de fluxo. Quando habilitado, o fluxo é gradualmente aumentado ou diminuído ao fluxo-alvo. Isto é útil para impressoras com tubo bowden em que o fluxo não é imediatamente alterado quando o motor de extrusor para ou inicia." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Para cada movimento de percurso menor que este valor, o fluxo de material é resetado para o fluxo-alvo dos caminhos" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Tamanho de passo de discretização gradual de fluxo" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Fluxo gradual habilitado" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Aceleração máximo de fluxo gradual" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Aceleração máxima de fluxo da camada inicial" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Aceleração máxima para mudanças de fluxo gradual" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Velocidade mínima para mudanças de fluxo gradual da primeira camada" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Duração de reset de fluxo" diff --git a/resources/i18n/pt_BR/gradual_flow_settings.def.json.po b/resources/i18n/pt_BR/gradual_flow_settings.def.json.po deleted file mode 100644 index 24b118429c2..00000000000 --- a/resources/i18n/pt_BR/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,55 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: 2024-04-01 22:35+0200\n" -"Last-Translator: Cláudio Sampaio \n" -"Language-Team: none\n" -"Language: pt_BR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.4.2\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duração de cada passo na mudança gradual de fluxo" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Habilita mudanças graduais de fluxo. Quando habilitado, o fluxo é gradualmente aumentado ou diminuído ao fluxo-alvo. Isto é útil para impressoras com tubo bowden em que o fluxo não é imediatamente alterado quando o motor de extrusor para ou inicia." - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Para cada movimento de percurso menor que este valor, o fluxo de material é resetado para o fluxo-alvo dos caminhos" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Tamanho de passo de discretização gradual de fluxo" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Fluxo gradual habilitado" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Aceleração máximo de fluxo gradual" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Aceleração máxima de fluxo da camada inicial" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Aceleração máxima para mudanças de fluxo gradual" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Velocidade mínima para mudanças de fluxo gradual da primeira camada" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Duração de reset de fluxo" diff --git a/resources/i18n/pt_PT/fdmprinter.def.json.po b/resources/i18n/pt_PT/fdmprinter.def.json.po index c00e46ef235..e7c9077cfb5 100644 --- a/resources/i18n/pt_PT/fdmprinter.def.json.po +++ b/resources/i18n/pt_PT/fdmprinter.def.json.po @@ -5860,3 +5860,43 @@ msgstr "Ao imprimir a primeira camada da superfície da jangada, traduza por est msgctxt "z_seam_on_vertex label" msgid "Z Seam On Vertex" msgstr "Junta Z no vértice" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duração de cada etapa da mudança gradual de fluxo" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Ativar alterações graduais de fluxo. Quando ativado, o fluxo é gradualmente aumentado/diminuído para o fluxo alvo. Isto é útil para impressoras com um tubo bowden em que o fluxo não é imediatamente alterado quando o motor da extrusora arranca/para." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Para qualquer deslocação superior a este valor, o fluxo de material é reposto no fluxo teórico das vias" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Tamanho do passo de discretização do fluxo gradual" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Fluxo gradual ativado" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Aceleração máxima do fluxo gradual" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Aceleração do fluxo máximo da camada inicial" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Aceleração máxima para mudanças graduais de fluxo" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Velocidade mínima para mudanças graduais de fluxo para a primeira camada" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Redefinir a duração do fluxo" diff --git a/resources/i18n/pt_PT/gradual_flow_settings.def.json.po b/resources/i18n/pt_PT/gradual_flow_settings.def.json.po deleted file mode 100644 index 28faebc914c..00000000000 --- a/resources/i18n/pt_PT/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,53 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: pt_PT\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duração de cada etapa da mudança gradual de fluxo" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Ativar alterações graduais de fluxo. Quando ativado, o fluxo é gradualmente aumentado/diminuído para o fluxo alvo. Isto é útil para impressoras com um tubo bowden em que o fluxo não é imediatamente alterado quando o motor da extrusora arranca/para." - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Para qualquer deslocação superior a este valor, o fluxo de material é reposto no fluxo teórico das vias" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Tamanho do passo de discretização do fluxo gradual" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Fluxo gradual ativado" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Aceleração máxima do fluxo gradual" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Aceleração do fluxo máximo da camada inicial" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Aceleração máxima para mudanças graduais de fluxo" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Velocidade mínima para mudanças graduais de fluxo para a primeira camada" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Redefinir a duração do fluxo" diff --git a/resources/i18n/ru_RU/fdmprinter.def.json.po b/resources/i18n/ru_RU/fdmprinter.def.json.po index a0cc7af6d3c..fe630270c6e 100644 --- a/resources/i18n/ru_RU/fdmprinter.def.json.po +++ b/resources/i18n/ru_RU/fdmprinter.def.json.po @@ -5860,3 +5860,43 @@ msgstr "При печати первого слоя поверхности ра msgctxt "z_seam_on_vertex label" msgid "Z Seam On Vertex" msgstr "Z-шов на вершине" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Продолжительность каждого шага изменения плавного потока" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Включите изменения плавного потока. Если эта функция включена, поток постепенно увеличивается/уменьшается до целевого значения. Это полезно для принтеров с трубкой Боудена, где поток не меняется сразу при запуске/остановке двигателя экструдера." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Для любого перемещения, превышающего это значение, поток материала сбрасывается до целевого потока пути." + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Размер шага дискретизации плавного потока" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Плавный поток включен" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Максимальное ускорение плавного потока" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Максимальное ускорение потока начального слоя" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Максимальное ускорение для изменения плавного потока" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Минимальная скорость изменения плавного потока для первого слоя" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Сбросить продолжительность потока" diff --git a/resources/i18n/ru_RU/gradual_flow_settings.def.json.po b/resources/i18n/ru_RU/gradual_flow_settings.def.json.po deleted file mode 100644 index 6addfef87cc..00000000000 --- a/resources/i18n/ru_RU/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,53 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: ru_RU\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Продолжительность каждого шага изменения плавного потока" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Включите изменения плавного потока. Если эта функция включена, поток постепенно увеличивается/уменьшается до целевого значения. Это полезно для принтеров с трубкой Боудена, где поток не меняется сразу при запуске/остановке двигателя экструдера." - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Для любого перемещения, превышающего это значение, поток материала сбрасывается до целевого потока пути." - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Размер шага дискретизации плавного потока" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Плавный поток включен" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Максимальное ускорение плавного потока" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Максимальное ускорение потока начального слоя" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Максимальное ускорение для изменения плавного потока" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Минимальная скорость изменения плавного потока для первого слоя" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Сбросить продолжительность потока" diff --git a/resources/i18n/tr_TR/fdmprinter.def.json.po b/resources/i18n/tr_TR/fdmprinter.def.json.po index d58e7462955..7bf31aa6603 100644 --- a/resources/i18n/tr_TR/fdmprinter.def.json.po +++ b/resources/i18n/tr_TR/fdmprinter.def.json.po @@ -5860,3 +5860,43 @@ msgstr "Raft yüzeyinin ilk katmanını yazdırırken arayüz ve yüzey arasınd msgctxt "z_seam_on_vertex label" msgid "Z Seam On Vertex" msgstr "Tepe Noktasında Z Dikiş İzi" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Kademeli akış değişimindeki her adımın süresi" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Kademeli akış değişikliklerini etkinleştirin. Etkinleştirildiğinde akış, hedef akışa doğru kademeli olarak artırılır/azaltılır. Bu, akışın ekstrüder motoru çalıştığında/durduğunda hemen değişmediği bowden tüplü yazıcılar için kullanışlıdır." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Bu değerden daha uzun herhangi bir seyahat hareketi için malzeme akışı, hedef akış yollarına sıfırlanır" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Kademeli akış ayrıklaştırma adım boyutu" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Kademeli akış etkinleştirildi" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Kademeli akış maksimum ivme" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "İlk katman maksimum akış ivmesi" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Kademeli akış değişiklikleri için maksimum ivme" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "İlk katman için kademeli akış değişiklikleri için minimum hız" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Akış süresini sıfırla" diff --git a/resources/i18n/tr_TR/gradual_flow_settings.def.json.po b/resources/i18n/tr_TR/gradual_flow_settings.def.json.po deleted file mode 100644 index 8fd89fdcb96..00000000000 --- a/resources/i18n/tr_TR/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,53 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: tr_TR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Kademeli akış değişimindeki her adımın süresi" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Kademeli akış değişikliklerini etkinleştirin. Etkinleştirildiğinde akış, hedef akışa doğru kademeli olarak artırılır/azaltılır. Bu, akışın ekstrüder motoru çalıştığında/durduğunda hemen değişmediği bowden tüplü yazıcılar için kullanışlıdır." - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Bu değerden daha uzun herhangi bir seyahat hareketi için malzeme akışı, hedef akış yollarına sıfırlanır" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Kademeli akış ayrıklaştırma adım boyutu" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Kademeli akış etkinleştirildi" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Kademeli akış maksimum ivme" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "İlk katman maksimum akış ivmesi" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Kademeli akış değişiklikleri için maksimum ivme" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "İlk katman için kademeli akış değişiklikleri için minimum hız" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Akış süresini sıfırla" diff --git a/resources/i18n/zh_CN/fdmprinter.def.json.po b/resources/i18n/zh_CN/fdmprinter.def.json.po index c2887f13d4a..d1a7b9fe525 100644 --- a/resources/i18n/zh_CN/fdmprinter.def.json.po +++ b/resources/i18n/zh_CN/fdmprinter.def.json.po @@ -5860,3 +5860,43 @@ msgstr "打印第一层木筏表面时,通过这个偏移来自定义筏底和 msgctxt "z_seam_on_vertex label" msgid "Z Seam On Vertex" msgstr "顶点上的 Z 形接缝" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "渐变流量变化中每个步骤的持续时间" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "启用渐变流量变化。启用之后,流量将会逐渐增加/减少到目标流量。这对于带有波登管的打印机非常有用,因为当挤出机电机启动/停止时,流量并不会立即改变。" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "对于任何长于此值的移动,材料流量将被重置为路径的目标流量" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "渐变流量离散化步长" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "启用渐变流量" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "渐变流量最大加速度" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "初始层最大流量加速" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "渐变流量变化的最大加速度" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "第一层渐变流量变化的最小速度" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "重置流量持续时间" diff --git a/resources/i18n/zh_CN/gradual_flow_settings.def.json.po b/resources/i18n/zh_CN/gradual_flow_settings.def.json.po deleted file mode 100644 index 188deec65fc..00000000000 --- a/resources/i18n/zh_CN/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,53 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: zh_CN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "渐变流量变化中每个步骤的持续时间" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "启用渐变流量变化。启用之后,流量将会逐渐增加/减少到目标流量。这对于带有波登管的打印机非常有用,因为当挤出机电机启动/停止时,流量并不会立即改变。" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "对于任何长于此值的移动,材料流量将被重置为路径的目标流量" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "渐变流量离散化步长" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "启用渐变流量" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "渐变流量最大加速度" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "初始层最大流量加速" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "渐变流量变化的最大加速度" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "第一层渐变流量变化的最小速度" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "重置流量持续时间" diff --git a/resources/i18n/zh_TW/gradual_flow_settings.def.json.po b/resources/i18n/zh_TW/gradual_flow_settings.def.json.po deleted file mode 100644 index 2529ed73e4f..00000000000 --- a/resources/i18n/zh_TW/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,54 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: 2024-03-11 11:28+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" From f6da4d0776496842a66af4b9b2acd279b0d14f73 Mon Sep 17 00:00:00 2001 From: wawanbreton Date: Fri, 16 Aug 2024 13:17:18 +0000 Subject: [PATCH 5/6] Applied printer-linter format --- resources/definitions/fdmprinter.def.json | 19 ++++++++++++------- .../um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg | 2 +- ...3_aa0.4_um-abs_0.15mm_engineering.inst.cfg | 2 +- .../um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg | 2 +- ...s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg | 2 +- .../um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg | 2 +- ...s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg | 2 +- .../um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg | 2 +- .../um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg | 2 +- ...um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg | 2 +- ..._aa0.4_um-petg_0.15mm_engineering.inst.cfg | 2 +- ...um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg | 2 +- ...3_aa0.4_um-petg_0.1mm_engineering.inst.cfg | 2 +- .../um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg | 2 +- ...3_aa0.4_um-petg_0.2mm_engineering.inst.cfg | 2 +- .../um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg | 2 +- .../um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg | 2 +- .../um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg | 2 +- ...3_aa0.4_um-pla_0.15mm_engineering.inst.cfg | 2 +- .../um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg | 2 +- ...s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg | 2 +- .../um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg | 2 +- ...s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg | 2 +- .../um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg | 2 +- .../um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg | 2 +- .../um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg | 2 +- ..._aa0.4_um-tough-pla_0.06mm_visual.inst.cfg | 2 +- ...4_um-tough-pla_0.15mm_engineering.inst.cfg | 2 +- ..._aa0.4_um-tough-pla_0.15mm_visual.inst.cfg | 2 +- ....4_um-tough-pla_0.1mm_engineering.inst.cfg | 2 +- ...3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg | 2 +- ....4_um-tough-pla_0.2mm_engineering.inst.cfg | 2 +- ...s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg | 2 +- ...3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg | 2 +- ...s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg | 2 +- ...s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg | 2 +- .../um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg | 2 +- .../um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg | 2 +- .../um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg | 2 +- .../um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg | 2 +- ...3_aa0.8_um-petg_0.2mm_engineering.inst.cfg | 2 +- .../um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg | 2 +- .../um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg | 2 +- .../um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg | 2 +- .../um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg | 2 +- ...s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg | 2 +- .../um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg | 2 +- .../um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg | 2 +- .../um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg | 2 +- .../um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg | 2 +- ....8_um-tough-pla_0.2mm_engineering.inst.cfg | 2 +- ...s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg | 2 +- ...3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg | 2 +- ...s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg | 2 +- ...s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg | 2 +- .../um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg | 2 +- ...5_aa0.4_um-abs_0.15mm_engineering.inst.cfg | 2 +- .../um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg | 2 +- ...s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg | 2 +- .../um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg | 2 +- ...s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg | 2 +- .../um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg | 2 +- .../um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg | 2 +- ...um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg | 2 +- ..._aa0.4_um-petg_0.15mm_engineering.inst.cfg | 2 +- ...um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg | 2 +- ...5_aa0.4_um-petg_0.1mm_engineering.inst.cfg | 2 +- .../um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg | 2 +- ...5_aa0.4_um-petg_0.2mm_engineering.inst.cfg | 2 +- .../um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg | 2 +- .../um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg | 2 +- .../um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg | 2 +- ...5_aa0.4_um-pla_0.15mm_engineering.inst.cfg | 2 +- .../um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg | 2 +- ...s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg | 2 +- .../um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg | 2 +- ...s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg | 2 +- .../um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg | 2 +- .../um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg | 2 +- .../um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg | 2 +- ..._aa0.4_um-tough-pla_0.06mm_visual.inst.cfg | 2 +- ...4_um-tough-pla_0.15mm_engineering.inst.cfg | 2 +- ..._aa0.4_um-tough-pla_0.15mm_visual.inst.cfg | 2 +- ....4_um-tough-pla_0.1mm_engineering.inst.cfg | 2 +- ...5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg | 2 +- ....4_um-tough-pla_0.2mm_engineering.inst.cfg | 2 +- ...s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg | 2 +- ...5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg | 2 +- ...s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg | 2 +- ...s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg | 2 +- .../um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg | 2 +- .../um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg | 2 +- .../um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg | 2 +- .../um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg | 2 +- ...5_aa0.8_um-petg_0.2mm_engineering.inst.cfg | 2 +- .../um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg | 2 +- .../um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg | 2 +- .../um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg | 2 +- .../um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg | 2 +- ...s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg | 2 +- .../um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg | 2 +- .../um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg | 2 +- .../um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg | 2 +- .../um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg | 2 +- ....8_um-tough-pla_0.2mm_engineering.inst.cfg | 2 +- ...s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg | 2 +- ...5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg | 2 +- ...s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg | 2 +- ...s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg | 2 +- .../um_f4_aa0.25_petg_0.1mm.inst.cfg | 2 +- .../um_f4_aa0.25_pla_0.1mm.inst.cfg | 2 +- .../um_f4_aa0.25_tough-pla_0.1mm.inst.cfg | 2 +- .../um_f4_aa0.4_abs_0.2mm.inst.cfg | 2 +- .../um_f4_aa0.4_bam_0.15mm.inst.cfg | 6 +++--- .../um_f4_aa0.4_bam_0.1mm.inst.cfg | 6 +++--- .../um_f4_aa0.4_bam_0.2mm.inst.cfg | 6 +++--- .../um_f4_aa0.4_bam_0.3mm.inst.cfg | 6 +++--- .../um_f4_aa0.4_cpe-plus_0.2mm.inst.cfg | 2 +- .../um_f4_aa0.4_cpe_0.2mm.inst.cfg | 2 +- .../um_f4_aa0.4_nylon_0.2mm.inst.cfg | 2 +- .../um_f4_aa0.4_pc_0.2mm.inst.cfg | 2 +- .../um_f4_aa0.4_petg_0.1mm.inst.cfg | 2 +- .../um_f4_aa0.4_petg_0.2mm.inst.cfg | 2 +- .../um_f4_aa0.4_petg_0.3mm.inst.cfg | 2 +- .../um_f4_aa0.4_pla_0.1mm.inst.cfg | 2 +- .../um_f4_aa0.4_pla_0.2mm.inst.cfg | 2 +- .../um_f4_aa0.4_pla_0.3mm.inst.cfg | 2 +- .../um_f4_aa0.4_pp_0.2mm.inst.cfg | 4 ++-- .../um_f4_aa0.4_tough-pla_0.1mm.inst.cfg | 2 +- .../um_f4_aa0.4_tough-pla_0.2mm.inst.cfg | 2 +- .../um_f4_aa0.4_tough-pla_0.3mm.inst.cfg | 2 +- .../um_f4_aa0.4_tpu_0.2mm.inst.cfg | 2 +- .../um_f4_aa0.8_abs_0.2mm.inst.cfg | 2 +- .../um_f4_aa0.8_cpe_0.2mm.inst.cfg | 2 +- .../um_f4_aa0.8_nylon_0.2mm.inst.cfg | 2 +- .../um_f4_aa0.8_petg_0.2mm.inst.cfg | 2 +- .../um_f4_aa0.8_petg_0.4mm.inst.cfg | 2 +- .../um_f4_aa0.8_pla_0.2mm.inst.cfg | 2 +- .../um_f4_aa0.8_pla_0.4mm.inst.cfg | 2 +- .../um_f4_aa0.8_tough-pla_0.2mm.inst.cfg | 2 +- .../um_f4_aa0.8_tough-pla_0.4mm.inst.cfg | 2 +- .../um_f4_aa0.8_tpu_0.2mm.inst.cfg | 2 +- .../um_f4_bb0.4_pva_0.15mm.inst.cfg | 6 +++--- .../um_f4_bb0.4_pva_0.1mm.inst.cfg | 6 +++--- .../um_f4_bb0.4_pva_0.2mm.inst.cfg | 6 +++--- .../um_f4_bb0.4_pva_0.3mm.inst.cfg | 6 +++--- .../um_f4_bb0.8_pva_0.2mm.inst.cfg | 6 +++--- .../um_f4_bb0.8_pva_0.3mm.inst.cfg | 6 +++--- .../um_f4_bb0.8_pva_0.4mm.inst.cfg | 6 +++--- .../um_f4_cc0.4_petcf_0.2mm.inst.cfg | 4 ++-- .../um_f4_cc0.6_petcf_0.2mm.inst.cfg | 4 ++-- .../um_f4_cc0.6_pla_0.2mm.inst.cfg | 2 +- .../um_f4_cc0.6_pla_0.3mm.inst.cfg | 2 +- .../um_f4_ht0.6_cffpps_0.2mm.inst.cfg | 4 ++-- .../um_f4_ht0.6_petcf_0.2mm.inst.cfg | 4 ++-- .../um_s3_aa0.25_um-abs_0.1mm.inst.cfg | 6 +++--- .../um_s3_aa0.25_um-petg_0.1mm.inst.cfg | 6 +++--- .../um_s3_aa0.25_um-pla_0.1mm.inst.cfg | 6 +++--- .../um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg | 6 +++--- .../um_s3_aa0.4_um-abs_0.06mm.inst.cfg | 6 +++--- .../um_s3_aa0.4_um-abs_0.15mm.inst.cfg | 6 +++--- .../um_s3_aa0.4_um-abs_0.1mm.inst.cfg | 6 +++--- .../um_s3_aa0.4_um-abs_0.2mm.inst.cfg | 6 +++--- .../um_s3_aa0.4_um-abs_0.3mm.inst.cfg | 6 +++--- .../um_s3_aa0.4_um-petg_0.06mm.inst.cfg | 6 +++--- .../um_s3_aa0.4_um-petg_0.15mm.inst.cfg | 6 +++--- .../um_s3_aa0.4_um-petg_0.1mm.inst.cfg | 6 +++--- .../um_s3_aa0.4_um-petg_0.2mm.inst.cfg | 6 +++--- .../um_s3_aa0.4_um-petg_0.3mm.inst.cfg | 6 +++--- .../um_s3_aa0.4_um-pla_0.06mm.inst.cfg | 6 +++--- .../um_s3_aa0.4_um-pla_0.15mm.inst.cfg | 6 +++--- .../um_s3_aa0.4_um-pla_0.1mm.inst.cfg | 6 +++--- .../um_s3_aa0.4_um-pla_0.2mm.inst.cfg | 6 +++--- .../um_s3_aa0.4_um-pla_0.3mm.inst.cfg | 6 +++--- .../um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg | 6 +++--- .../um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg | 6 +++--- .../um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg | 6 +++--- .../um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg | 6 +++--- .../um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg | 6 +++--- .../um_s3_aa0.8_um-abs_0.2mm.inst.cfg | 6 +++--- .../um_s3_aa0.8_um-abs_0.3mm.inst.cfg | 6 +++--- .../um_s3_aa0.8_um-abs_0.4mm.inst.cfg | 6 +++--- .../um_s3_aa0.8_um-petg_0.2mm.inst.cfg | 6 +++--- .../um_s3_aa0.8_um-petg_0.3mm.inst.cfg | 6 +++--- .../um_s3_aa0.8_um-petg_0.4mm.inst.cfg | 6 +++--- .../um_s3_aa0.8_um-pla_0.2mm.inst.cfg | 6 +++--- .../um_s3_aa0.8_um-pla_0.3mm.inst.cfg | 6 +++--- .../um_s3_aa0.8_um-pla_0.4mm.inst.cfg | 6 +++--- .../um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg | 6 +++--- .../um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg | 6 +++--- .../um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg | 6 +++--- .../um_s5_aa0.25_um-abs_0.1mm.inst.cfg | 6 +++--- .../um_s5_aa0.25_um-petg_0.1mm.inst.cfg | 6 +++--- .../um_s5_aa0.25_um-pla_0.1mm.inst.cfg | 6 +++--- .../um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg | 6 +++--- .../um_s5_aa0.4_um-abs_0.06mm.inst.cfg | 6 +++--- .../um_s5_aa0.4_um-abs_0.15mm.inst.cfg | 6 +++--- .../um_s5_aa0.4_um-abs_0.1mm.inst.cfg | 6 +++--- .../um_s5_aa0.4_um-abs_0.2mm.inst.cfg | 6 +++--- .../um_s5_aa0.4_um-abs_0.3mm.inst.cfg | 6 +++--- .../um_s5_aa0.4_um-petg_0.06mm.inst.cfg | 6 +++--- .../um_s5_aa0.4_um-petg_0.15mm.inst.cfg | 6 +++--- .../um_s5_aa0.4_um-petg_0.1mm.inst.cfg | 6 +++--- .../um_s5_aa0.4_um-petg_0.2mm.inst.cfg | 6 +++--- .../um_s5_aa0.4_um-petg_0.3mm.inst.cfg | 6 +++--- .../um_s5_aa0.4_um-pla_0.06mm.inst.cfg | 6 +++--- .../um_s5_aa0.4_um-pla_0.15mm.inst.cfg | 6 +++--- .../um_s5_aa0.4_um-pla_0.1mm.inst.cfg | 6 +++--- .../um_s5_aa0.4_um-pla_0.2mm.inst.cfg | 6 +++--- .../um_s5_aa0.4_um-pla_0.3mm.inst.cfg | 6 +++--- .../um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg | 6 +++--- .../um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg | 6 +++--- .../um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg | 6 +++--- .../um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg | 6 +++--- .../um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg | 6 +++--- .../um_s5_aa0.8_um-abs_0.2mm.inst.cfg | 6 +++--- .../um_s5_aa0.8_um-abs_0.3mm.inst.cfg | 6 +++--- .../um_s5_aa0.8_um-abs_0.4mm.inst.cfg | 6 +++--- .../um_s5_aa0.8_um-petg_0.2mm.inst.cfg | 6 +++--- .../um_s5_aa0.8_um-petg_0.3mm.inst.cfg | 6 +++--- .../um_s5_aa0.8_um-petg_0.4mm.inst.cfg | 6 +++--- .../um_s5_aa0.8_um-pla_0.2mm.inst.cfg | 6 +++--- .../um_s5_aa0.8_um-pla_0.3mm.inst.cfg | 6 +++--- .../um_s5_aa0.8_um-pla_0.4mm.inst.cfg | 6 +++--- .../um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg | 6 +++--- .../um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg | 6 +++--- .../um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg | 6 +++--- 231 files changed, 413 insertions(+), 408 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 47964532936..79e40d56c46 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -766,7 +766,8 @@ "settable_per_extruder": false, "settable_per_meshgroup": false }, - "reset_flow_duration": { + "reset_flow_duration": + { "enabled": "gradual_flow_enabled", "value": 2.0, "label": "Reset flow duration", @@ -3149,7 +3150,8 @@ "settable_per_mesh": false, "settable_per_extruder": true }, - "gradual_flow_enabled": { + "gradual_flow_enabled": + { "label": "Gradual flow enabled", "description": "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops.", "type": "bool", @@ -3157,12 +3159,13 @@ "settable_per_mesh": false, "settable_per_extruder": true }, - "max_flow_acceleration": { + "max_flow_acceleration": + { "enabled": "gradual_flow_enabled", "label": "Gradual flow max acceleration", "description": "Maximum acceleration for gradual flow changes", "type": "float", - "unit": "mm\u00b3\/s\u00b2", + "unit": "mm\u00b3/s\u00b2", "default_value": 1, "minimum_value_warning": 0.1, "maximum_value_warning": 99999, @@ -3171,13 +3174,14 @@ "settable_per_extruder": true, "comments": "when enabled, each second the flow will at max be increased/decreased by this value" }, - "layer_0_max_flow_acceleration": { + "layer_0_max_flow_acceleration": + { "enabled": "gradual_flow_enabled", "value": "max_flow_acceleration", "label": "Initial layer max flow acceleration", "description": "Minimum speed for gradual flow changes for the first layer", "type": "float", - "unit": "mm\u00b3\/s\u00b2", + "unit": "mm\u00b3/s\u00b2", "default_value": 1, "minimum_value_warning": 0.1, "maximum_value_warning": 99999, @@ -3185,7 +3189,8 @@ "settable_per_mesh": false, "settable_per_extruder": true }, - "gradual_flow_discretisation_step_size": { + "gradual_flow_discretisation_step_size": + { "enabled": "gradual_flow_enabled", "label": "Gradual flow discretisation step size", "description": "Duration of each step in the gradual flow change", diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg index b564c7313b1..1e753b709fd 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg index f1b0afec9b8..8c7c905efc8 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg index 11562ae1fbc..1a0270a2d61 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg index e2431286fbb..e48adbd359d 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg index cb291e4d228..772f5f3b5f7 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg index 8ff65ade01d..feb3ed912c7 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg index 156f1dd1a01..93ed657adc0 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.4 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg index 8f970ac3160..8db25985f22 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg index 380b625c98a..9b411e95373 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.4 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg index d163b3e2ed3..cd3723ae126 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg index a32d5b5ca34..f56a12ccd5c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg index 5c1bd3ed285..d1bd9c3d199 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg index 735b36bb68e..b3122bb5588 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg index d70042b46ef..b4b831828e8 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg index bcf0b9b8229..9092ec07635 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg index c3c18096773..fa7ae3769d2 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.4 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg index a8a196148bf..8e081833b8c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg index 0b67c38f134..e947a85a495 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.4 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg index b3853962563..a52c5e9ab2d 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg index f7706dd7b30..e56f5b36545 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg index 2ff9e8f9105..1400f9be384 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg index 26971b07d43..e77d171c1fa 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg index 0b47f98be04..4d47697a81b 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg index a165acd3fb8..1f63abd0a05 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg index ae7a71ee421..0a7bf91f917 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.4 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg index 33b2f9ff419..054bbe216cb 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg index f04fb58285a..837caa63644 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.4 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg index f6495c4d783..59057404bad 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg index a62516cc0f7..07d71edeca8 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg index 2f2606c6925..831e3f91531 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg index 6902355015e..2287978d4b1 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg index f09d2d31f42..c73cc61b0a9 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg index 66f11283356..717ba0f4708 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg index 9bbbf9ce00f..1d9571d4380 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.4 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg index 56aed4eef59..32fbfb238dd 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg index e5686e5d39b..1c49a0c6a1b 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.4 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg index 66b710fc464..44970d92918 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.8 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg index e3396291420..399f738a59b 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.8 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg index 66caea2738d..ae2fe0a9149 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.8 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg index 924d47f199f..4e1f3067686 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.8 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg index 5fd296d93bc..2cb242399df 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.8 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg index a02ae0f0401..15b362e1fe6 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.8 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg index f0b0e296aab..d1a15b77a9a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.8 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg index c1450e6f110..73628b8b81c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.8 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg index 3f6de1cf17e..f8c47b7ebfd 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.8 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg index 361d479df5b..795ce127949 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.8 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg index a9081a6c0ab..06d1c6a428d 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.8 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg index edd834071a8..b0372a83238 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.8 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg index 405be88f85d..74dc24a6006 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.8 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg index d5dbeba9fc6..8c08d82b9a9 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.8 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg index 404c31f71e2..f7f666afe51 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.8 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg index c86f485e43c..c3f5932ea7c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.8 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg index ab5c443ae31..adf505c7281 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.8 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg index b427f2f52d1..8bbc9fc4c45 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.8 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg index cdc79118ed5..22c8e4c446c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.8 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg index 90adf962690..897d30978d1 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.8 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg index adec4d27a57..a9d30284295 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg index 4e7b98a6666..0d11537558f 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg index 7907a9b54ea..a42fa7db7e4 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg index 40b13faf075..487726e73d0 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg index 51f3d28cd02..be663c0a783 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg index 3af0b045b09..dd4a05a6225 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg index b6dceac3ab7..b1dec2d9b24 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.4 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg index ddc8d4cc804..a58d62fdca8 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg index c8293680c5a..aa304b9e231 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.4 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg index 050c24f4861..fe7a8eb0fa3 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg index aab72b95862..1f708d6b2ab 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg index 10d2359596d..996c9e853bb 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg index 154068e75bd..1008436a4a1 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg index 1b9f5362d03..7ca248bf438 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg index a5ec24936cc..15391221cc3 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg index 6a1e1341aca..50acde656a4 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.4 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg index 2e38d3edf01..16d7ecc5f6e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg index 494b7564f7e..100fcabd0d9 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.4 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg index cfd6c67cf89..52ee35cb85c 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg index 297f663a08b..a2d2a11274e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg index 78c3a117b4e..7378ebd4ae9 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg index f68cb81b206..4c267c3244d 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg index 9ef2567d5f3..34206cde023 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg index c36bc2cfefd..ccdc99233ef 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg index b95ba9a53e2..bc059f536ac 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.4 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg index 97ade112747..e0511a9319a 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg index bc8e48e4204..304f30ec9e7 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.4 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg index 3b356743eaa..e48171a12a7 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg index d417eed1370..b4dc0b021d6 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg index d420bdc315a..4dd1ad681b8 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg index c7c7d7b2a74..8bc52059511 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg index c0d79948fb0..c609823cae3 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg index 645892c120c..43ef55f44b3 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg index 0943b483cc0..1c74429109b 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.4 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg index 9a59c5a90cc..4a297b1c60a 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.4 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg index 7bcea7b25a0..7a50c54724b 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.4 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg index 28587cd917b..073a1be60ce 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.8 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg index 4c0324761ea..57bdd71b437 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.8 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg index ea1f8c442b5..53c272de4ba 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.8 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg index 9f8b32dc279..701ebfa4fed 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.8 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg index e6c8962ab94..2eb8cd19420 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.8 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg index 63cee911e4f..75d640e1773 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.8 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg index d1aef1f7bba..47f946a89d9 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.8 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg index b250a12dc91..a8b446cd3dc 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.8 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg index 5615252dbdb..801adab4aaa 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.8 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg index f75225b75ec..7922fbfb7c4 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.8 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg index 774500d9b91..5ae6042076e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.8 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg index 8df66c064da..f327ff9fb8f 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.8 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg index 81da60bfb70..95302a65781 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.8 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg index b05d4c2aada..26e9837df45 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.8 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg index 82bec9cd264..099a2659207 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.8 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg index 341dca024bf..c0966adb2a5 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg @@ -12,10 +12,10 @@ type = intent variant = AA 0.8 [values] -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg index 134bcb896f2..58b78defb4e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.8 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg index 8cc4526dbac..1ea845e0b9e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg @@ -12,11 +12,11 @@ type = intent variant = AA 0.8 [values] -max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg index 461f1128b3c..54ee602bdd7 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.8 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg index c919d1a5461..5324df80b5e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg @@ -12,8 +12,8 @@ type = intent variant = AA 0.8 [values] -gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm.inst.cfg index 654b19912ba..bbb9d0f6e11 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm.inst.cfg @@ -14,7 +14,7 @@ weight = 0 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm.inst.cfg index ddc63dba425..3709b1fb9c8 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm.inst.cfg @@ -14,7 +14,7 @@ weight = 0 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.93 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm.inst.cfg index a36ead82046..185d5b9f22b 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm.inst.cfg @@ -14,7 +14,7 @@ weight = 0 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm.inst.cfg index cdd4ff40756..307af32184e 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm.inst.cfg @@ -14,8 +14,8 @@ weight = -2 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.93 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.15mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.15mm.inst.cfg index 98d4073c247..bb10a276a2f 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.15mm.inst.cfg @@ -12,13 +12,13 @@ variant = AA 0.4 weight = -1 [values] -gradual_flow_discretisation_step_size = 0.1 -gradual_flow_enabled = True -max_flow_acceleration = 1 brim_replaces_support = False build_volume_temperature = =50 if extruders_enabled_count > 1 else 35 default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True machine_nozzle_heat_up_speed = 1.56 +max_flow_acceleration = 1 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 skin_material_flow = =material_flow * 0.965 support_angle = 45 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.1mm.inst.cfg index 9fbef3cc809..946e1d73a34 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.1mm.inst.cfg @@ -12,14 +12,14 @@ variant = AA 0.4 weight = 0 [values] -gradual_flow_discretisation_step_size = 0.1 -gradual_flow_enabled = True -max_flow_acceleration = 1 brim_replaces_support = False build_volume_temperature = =50 if extruders_enabled_count > 1 else 35 default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True machine_nozzle_heat_up_speed = 1.56 material_print_temperature = =default_material_print_temperature - 5 +max_flow_acceleration = 1 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 skin_material_flow = =material_flow * 0.965 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.2mm.inst.cfg index 94b2bba250f..fbc7ac702ca 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.2mm.inst.cfg @@ -12,13 +12,13 @@ variant = AA 0.4 weight = -2 [values] -gradual_flow_discretisation_step_size = 0.1 -gradual_flow_enabled = True -max_flow_acceleration = 1 brim_replaces_support = False build_volume_temperature = =50 if extruders_enabled_count > 1 else 35 default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True machine_nozzle_heat_up_speed = 1.56 +max_flow_acceleration = 1 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 skin_material_flow = =material_flow * 0.965 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.3mm.inst.cfg index 11cb5c0af65..338533ee03f 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.3mm.inst.cfg @@ -12,13 +12,13 @@ variant = AA 0.4 weight = -3 [values] -gradual_flow_discretisation_step_size = 0.1 -gradual_flow_enabled = True -max_flow_acceleration = 1 brim_replaces_support = False build_volume_temperature = =50 if extruders_enabled_count > 1 else 35 default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True machine_nozzle_heat_up_speed = 1.56 +max_flow_acceleration = 1 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 skin_material_flow = =material_flow * 0.965 speed_print = 50 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm.inst.cfg index 781bfb1bea9..d788d721115 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm.inst.cfg @@ -14,8 +14,8 @@ weight = -2 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.93 speed_print = 80 wall_thickness = =line_width * 3 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm.inst.cfg index 15dc2711531..f121a419f17 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm.inst.cfg @@ -14,8 +14,8 @@ weight = -2 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm.inst.cfg index d26adc91084..9bae566648c 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm.inst.cfg @@ -14,8 +14,8 @@ weight = -2 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm.inst.cfg index 5d9cf3041fa..5ce773528b9 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm.inst.cfg @@ -14,8 +14,8 @@ weight = -2 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 speed_print = 80 wall_thickness = =line_width * 3 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm.inst.cfg index 912fe135555..5dc170dd468 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm.inst.cfg @@ -14,9 +14,9 @@ weight = 0 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 inset_direction = outside_in material_print_temperature = =default_material_print_temperature - 10 +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm.inst.cfg index c515323cb5a..decc1b68461 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm.inst.cfg @@ -14,8 +14,8 @@ weight = -2 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm.inst.cfg index 6e3d48d868d..46d802a0c6c 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm.inst.cfg @@ -14,8 +14,8 @@ weight = -3 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm.inst.cfg index 21dc3936668..ab89cfa7b07 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm.inst.cfg @@ -14,8 +14,8 @@ weight = 0 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.93 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm.inst.cfg index 0ed49fe031b..85ef72980ec 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm.inst.cfg @@ -14,8 +14,8 @@ weight = -2 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.93 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm.inst.cfg index efd521f6bb9..84937370870 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm.inst.cfg @@ -14,9 +14,9 @@ weight = -3 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 inset_direction = outside_in material_print_temperature = =default_material_print_temperature + 15 +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.93 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pp_0.2mm.inst.cfg index 3b54454dfce..ddf058629a0 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pp_0.2mm.inst.cfg @@ -12,11 +12,11 @@ variant = AA 0.4 weight = -2 [values] +brim_width = 20 gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 -brim_width = 20 inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm.inst.cfg index c9a48c4dfb3..bbaa81e3809 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm.inst.cfg @@ -14,8 +14,8 @@ weight = 0 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm.inst.cfg index 0351fe25b98..e3f13bb208f 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm.inst.cfg @@ -14,8 +14,8 @@ weight = -2 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm.inst.cfg index 92ba952865c..59b7f0cc0db 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm.inst.cfg @@ -14,9 +14,9 @@ weight = -3 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 inset_direction = outside_in material_print_temperature = =default_material_print_temperature + 15 +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tpu_0.2mm.inst.cfg index 0a01955877a..a68fb26c1a4 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tpu_0.2mm.inst.cfg @@ -14,10 +14,10 @@ weight = -2 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 50 else 'cross_3d' infill_sparse_density = 10 inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.9 skin_material_flow_layer_0 = 90 speed_layer_0 = 20 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_abs_0.2mm.inst.cfg index a72036c7c61..fb1e1132709 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_abs_0.2mm.inst.cfg @@ -14,7 +14,7 @@ weight = -2 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.93 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_cpe_0.2mm.inst.cfg index d2f1166ac6f..4f9bf338601 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_cpe_0.2mm.inst.cfg @@ -14,7 +14,7 @@ weight = -2 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm.inst.cfg index cebb307e08c..c2c1c743792 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm.inst.cfg @@ -14,7 +14,7 @@ weight = -2 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm.inst.cfg index 83d4c9db822..411fe42d594 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm.inst.cfg @@ -14,7 +14,7 @@ weight = -2 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm.inst.cfg index 810ec4b7e7b..22b06849b29 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm.inst.cfg @@ -14,7 +14,7 @@ weight = -4 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm.inst.cfg index 26eddbe4822..885f39e5f15 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm.inst.cfg @@ -14,9 +14,9 @@ weight = -2 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 inset_direction = outside_in material_print_temperature = =default_material_print_temperature + 15 +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.93 speed_print = 50 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm.inst.cfg index d4ef31be27e..fb86282cf69 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm.inst.cfg @@ -14,9 +14,9 @@ weight = -4 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 inset_direction = outside_in material_print_temperature = =default_material_print_temperature + 15 +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.93 speed_print = 50 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm.inst.cfg index 3faaa016065..89ad814e07e 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm.inst.cfg @@ -14,9 +14,9 @@ weight = -2 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 inset_direction = outside_in material_print_temperature = =default_material_print_temperature + 15 +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 speed_print = 50 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm.inst.cfg index 5cb0d7506c2..381df3a6e98 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm.inst.cfg @@ -14,9 +14,9 @@ weight = -4 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 inset_direction = outside_in material_print_temperature = =default_material_print_temperature + 15 +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 speed_print = 50 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.2mm.inst.cfg index d5bd1c08db9..c3291f77a1d 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.2mm.inst.cfg @@ -14,10 +14,10 @@ weight = -2 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 50 else 'cross_3d' infill_sparse_density = 10 inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.9 skin_material_flow_layer_0 = 90 speed_layer_0 = 20 diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.15mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.15mm.inst.cfg index 9705db21e12..3294a3a1500 100644 --- a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.15mm.inst.cfg @@ -12,15 +12,15 @@ variant = BB 0.4 weight = -1 [values] -gradual_flow_discretisation_step_size = 0.1 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_support_bottom = 100 acceleration_support_interface = 1500 brim_replaces_support = False build_volume_temperature = =40 if extruders_enabled_count > 1 else 35 default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True initial_layer_line_width_factor = 150 +max_flow_acceleration = 1 minimum_support_area = 4 prime_tower_min_volume = 15 skin_material_flow = =material_flow * 0.93 diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.1mm.inst.cfg index 0dfae8bd2d6..0f10e4f507a 100644 --- a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.1mm.inst.cfg @@ -12,15 +12,15 @@ variant = BB 0.4 weight = 0 [values] -gradual_flow_discretisation_step_size = 0.1 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_support_bottom = 100 acceleration_support_interface = 1500 brim_replaces_support = False build_volume_temperature = =40 if extruders_enabled_count > 1 else 35 default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True initial_layer_line_width_factor = 150 +max_flow_acceleration = 1 minimum_support_area = 4 prime_tower_min_volume = 15 skin_material_flow = =material_flow * 0.93 diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.2mm.inst.cfg index e29f829c46e..ef920e6fd75 100644 --- a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.2mm.inst.cfg @@ -12,15 +12,15 @@ variant = BB 0.4 weight = -2 [values] -gradual_flow_discretisation_step_size = 0.1 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_support_bottom = 100 acceleration_support_interface = 1500 brim_replaces_support = False build_volume_temperature = =40 if extruders_enabled_count > 1 else 35 default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True initial_layer_line_width_factor = 150 +max_flow_acceleration = 1 minimum_support_area = 4 prime_tower_min_volume = 15 skin_material_flow = =material_flow * 0.93 diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.3mm.inst.cfg index 5221b2ba510..4165a27a58e 100644 --- a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.3mm.inst.cfg @@ -12,15 +12,15 @@ variant = BB 0.4 weight = -3 [values] -gradual_flow_discretisation_step_size = 0.1 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_support_bottom = 100 acceleration_support_interface = 1500 brim_replaces_support = False build_volume_temperature = =40 if extruders_enabled_count > 1 else 35 default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True initial_layer_line_width_factor = 150 +max_flow_acceleration = 1 minimum_support_area = 4 prime_tower_min_volume = 15 skin_material_flow = =material_flow * 0.93 diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.2mm.inst.cfg index a3aee5c4102..2963265eece 100644 --- a/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.2mm.inst.cfg @@ -12,15 +12,15 @@ variant = BB 0.8 weight = -2 [values] -gradual_flow_discretisation_step_size = 0.1 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_support_bottom = 100 acceleration_support_interface = 1500 brim_replaces_support = False build_volume_temperature = =40 if extruders_enabled_count > 1 else 35 default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True initial_layer_line_width_factor = 150 +max_flow_acceleration = 1 minimum_support_area = 4 prime_tower_min_volume = 15 skin_material_flow = =material_flow * 0.93 diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.3mm.inst.cfg index c0b5405c16a..0a1437fd300 100644 --- a/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.3mm.inst.cfg @@ -12,15 +12,15 @@ variant = BB 0.8 weight = -3 [values] -gradual_flow_discretisation_step_size = 0.1 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_support_bottom = 100 acceleration_support_interface = 1500 brim_replaces_support = False build_volume_temperature = =40 if extruders_enabled_count > 1 else 35 default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True initial_layer_line_width_factor = 150 +max_flow_acceleration = 1 minimum_support_area = 4 prime_tower_min_volume = 15 skin_material_flow = =material_flow * 0.93 diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.4mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.4mm.inst.cfg index 55d35b554ed..edd837f8fc2 100644 --- a/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.4mm.inst.cfg @@ -12,15 +12,15 @@ variant = BB 0.8 weight = -4 [values] -gradual_flow_discretisation_step_size = 0.1 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_support_bottom = 100 acceleration_support_interface = 1500 brim_replaces_support = False build_volume_temperature = =40 if extruders_enabled_count > 1 else 35 default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True initial_layer_line_width_factor = 150 +max_flow_acceleration = 1 minimum_support_area = 4 prime_tower_min_volume = 15 skin_material_flow = =material_flow * 0.93 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm.inst.cfg index efb681510a2..1b5ae5b4a14 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm.inst.cfg @@ -12,13 +12,13 @@ variant = CC 0.4 weight = -2 [values] +cool_fan_speed_max = =cool_fan_speed gradual_flow_discretisation_step_size = 0.5 gradual_flow_enabled = True -max_flow_acceleration = 0.1 -cool_fan_speed_max = =cool_fan_speed infill_wall_line_count = 1 material_shrinkage_percentage = 100.15 material_shrinkage_percentage_z = 100.15 +max_flow_acceleration = 0.1 skin_material_flow = =material_flow * 0.93 speed_print = 60 xy_offset = =machine_nozzle_size * -0.25 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm.inst.cfg index 170edd3f4a4..0b1fa30c04a 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm.inst.cfg @@ -12,13 +12,13 @@ variant = CC 0.6 weight = -2 [values] +cool_fan_speed_max = =cool_fan_speed gradual_flow_discretisation_step_size = 0.5 gradual_flow_enabled = True -max_flow_acceleration = 0.1 -cool_fan_speed_max = =cool_fan_speed infill_wall_line_count = 1 material_shrinkage_percentage = 100.15 material_shrinkage_percentage_z = 100.15 +max_flow_acceleration = 0.1 skin_material_flow = =material_flow * 0.93 speed_print = 60 xy_offset = =machine_nozzle_size * -0.25 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.2mm.inst.cfg index 6f4055fb066..89fd1dc5562 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.2mm.inst.cfg @@ -15,7 +15,7 @@ weight = -2 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.93 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.3mm.inst.cfg index 3adc4e0188d..eff621dcc35 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.3mm.inst.cfg @@ -15,7 +15,7 @@ weight = -3 [values] gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.93 diff --git a/resources/quality/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm.inst.cfg index 643d1dcc541..875b7a06a01 100644 --- a/resources/quality/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm.inst.cfg @@ -12,11 +12,11 @@ variant = HT 0.6 weight = -2 [values] +adhesion_type = brim gradual_flow_discretisation_step_size = 0.1 gradual_flow_enabled = True -max_flow_acceleration = 1 -adhesion_type = brim infill_wall_line_count = 1 +max_flow_acceleration = 1 retraction_combing_max_distance = 2 skin_material_flow = =material_flow * 0.93 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm.inst.cfg index 52f02abd2d2..90249026a4e 100644 --- a/resources/quality/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm.inst.cfg @@ -12,13 +12,13 @@ variant = HT 0.6 weight = -2 [values] +cool_fan_speed_max = =cool_fan_speed gradual_flow_discretisation_step_size = 0.5 gradual_flow_enabled = True -max_flow_acceleration = 0.1 -cool_fan_speed_max = =cool_fan_speed infill_wall_line_count = 1 material_shrinkage_percentage = 100.15 material_shrinkage_percentage_z = 100.15 +max_flow_acceleration = 0.1 skin_material_flow = =material_flow * 0.93 speed_print = 60 xy_offset = =machine_nozzle_size * -0.25 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg index 2b3253ab707..a84295c1693 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.25 weight = 0 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -29,6 +26,8 @@ bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_fan_speed_0 = 0 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ jerk_wall_0 = =max(30, speed_wall_0/2) machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.8 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg index 587a43bf5de..054bcf2b448 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.25 weight = 0 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -40,6 +39,7 @@ jerk_wall_0 = =max(30, speed_wall_0/2) machine_nozzle_cool_down_speed = 1.4 machine_nozzle_heat_up_speed = 1.7 material_extrusion_cool_down_speed = 0.7 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = False retraction_amount = 8 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg index a7e98734017..6cb160cbef5 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.25 weight = 0 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -40,6 +39,7 @@ jerk_wall_0 = =max(30, speed_wall_0/2) machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 +max_flow_acceleration = 2 optimize_wall_printing_order = False raft_airgap = 0.25 retraction_amount = 6.5 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg index b367cdec470..f1b85fc1956 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.25 weight = 0 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -40,6 +39,7 @@ jerk_wall_0 = =max(30, speed_wall_0/2) machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 +max_flow_acceleration = 2 optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.25 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg index 7f0eb2106e5..602fe454b2e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = 1 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.8 material_max_flowrate = 20 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg index 7562a8b1c7a..a349a726af0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = -1 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.8 material_max_flowrate = 20 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg index ad5ae195a05..9ca4211c14d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = 0 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.8 material_max_flowrate = 20 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg index 9e475d55bb9..36778c2c618 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = -2 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_material_flow = =1.05 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 @@ -43,6 +42,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.8 material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 5 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg index 2058db8daa1..55cf6e15674 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = -3 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -42,6 +41,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.8 material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 7 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg index b05a5e3c828..fc111b08c55 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = 1 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.4 machine_nozzle_heat_up_speed = 1.7 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 20 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = False retraction_amount = 8 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg index 08a6d78f196..3e9b93f899a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = -1 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.4 machine_nozzle_heat_up_speed = 1.7 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 20 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg index 8b9c9257be8..43e91a53bc4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = 0 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.4 machine_nozzle_heat_up_speed = 1.7 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 20 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = False retraction_amount = 8 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg index 282808ba18c..4d2ca6a1b11 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = -2 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_material_flow = =1.1 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 @@ -43,6 +42,7 @@ machine_nozzle_heat_up_speed = 1.7 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 5 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg index 88221cbc143..e8155d504fe 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = -3 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -42,6 +41,7 @@ machine_nozzle_heat_up_speed = 1.7 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 5 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg index 6d6bcacaf10..ae0b95e9a56 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = 1 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 12 +max_flow_acceleration = 2 optimize_wall_printing_order = False raft_airgap = 0.25 retraction_amount = 6.5 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg index 4558feffb91..f1fcd1845bd 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = -1 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 12 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False raft_airgap = 0.25 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg index d6b5d9b76e0..d562e3da55f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = 0 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 12 +max_flow_acceleration = 2 optimize_wall_printing_order = False raft_airgap = 0.25 retraction_amount = 6.5 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg index 0ddebebc576..e12b58fc5ea 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = -2 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_material_flow = =1.1 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 @@ -43,6 +42,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 12 material_print_temperature = =default_material_print_temperature + 5 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False raft_airgap = 0.25 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg index c016953b792..53c19ef9017 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = -3 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -42,6 +41,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 12 material_print_temperature = =default_material_print_temperature + 10 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False raft_airgap = 0.25 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg index e4b5c5a40f7..4fe9eb1058b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = 1 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 +max_flow_acceleration = 2 optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.25 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg index e4816099b92..7a8bb668c56 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = -1 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg index 63da6728bee..afc9e7f6299 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = 0 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 +max_flow_acceleration = 2 optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.25 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg index 89710d904a7..b14d3228d7f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = -2 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_material_flow = =1.1 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 @@ -42,6 +41,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg index 501487c11e2..2dc9b448cbc 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = -3 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -42,6 +41,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 material_print_temperature = =default_material_print_temperature + 5 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg index 095047399d6..f81a8e80360 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.8 weight = -2 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -30,6 +27,8 @@ bridge_sparse_infill_max_density = 50 bridge_wall_material_flow = 200 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -45,6 +44,7 @@ material_extrusion_cool_down_speed = 0.8 material_flow = 93 material_max_flowrate = 22 material_print_temperature = =default_material_print_temperature + 5 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg index 79984f2638e..c32d5a2ced6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.8 weight = -3 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -43,6 +42,7 @@ material_extrusion_cool_down_speed = 0.8 material_flow = 93 material_max_flowrate = 22 material_print_temperature = =default_material_print_temperature + 7 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = True raft_airgap = 0.15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg index f64faffc504..7b53c58c63b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.8 weight = -4 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -43,6 +42,7 @@ material_extrusion_cool_down_speed = 0.8 material_flow = 93 material_max_flowrate = 22 material_print_temperature = =default_material_print_temperature + 10 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = True raft_airgap = 0.15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg index d3590303bd6..6d29fb456bd 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.8 weight = -2 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -30,6 +27,8 @@ bridge_sparse_infill_max_density = 50 bridge_wall_material_flow = 200 bridge_wall_speed = 20 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -45,6 +44,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 23 material_print_temperature = =default_material_print_temperature - 5 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg index a9991bf1b78..846849481f1 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.8 weight = -3 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -30,6 +27,8 @@ bridge_sparse_infill_max_density = 50 bridge_wall_material_flow = 100 bridge_wall_speed = 20 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -45,6 +44,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 23 material_print_temperature = =default_material_print_temperature - 5 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = True retraction_amount = 3.5 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg index 388a4027342..fe03ad75e00 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.8 weight = -4 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -30,6 +27,8 @@ bridge_sparse_infill_max_density = 50 bridge_wall_material_flow = 100 bridge_wall_speed = 20 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -45,6 +44,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 23 material_print_temperature = =default_material_print_temperature - 5 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = True retraction_amount = 3.5 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg index 317632d6514..6008ccfd820 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.8 weight = -2 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -30,6 +27,8 @@ bridge_sparse_infill_max_density = 50 bridge_wall_material_flow = 200 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -45,6 +44,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 15 material_print_temperature = =default_material_print_temperature + 10 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False raft_airgap = 0.25 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg index e3fc7fb4bca..f41ed952ba4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.8 weight = -3 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -43,6 +42,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 15 material_print_temperature = =default_material_print_temperature + 10 +max_flow_acceleration = 2 optimize_wall_printing_order = False raft_airgap = 0.25 retraction_amount = 4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg index 71b107c4826..ab876bc8157 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.8 weight = -4 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -43,6 +42,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 15 material_print_temperature = =default_material_print_temperature + 15 +max_flow_acceleration = 2 optimize_wall_printing_order = False raft_airgap = 0.25 retraction_amount = 4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg index 0387dc09a07..86acb0e63e1 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.8 weight = -2 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -30,6 +27,8 @@ bridge_sparse_infill_max_density = 50 bridge_wall_material_flow = 200 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -45,6 +44,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 17 material_print_temperature = =default_material_print_temperature + 10 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg index b4b72b02b9b..f7fc9ae731a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.8 weight = -3 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -43,6 +42,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 17 material_print_temperature = =default_material_print_temperature + 15 +max_flow_acceleration = 2 optimize_wall_printing_order = False prime_tower_enable = True raft_airgap = 0.25 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg index 6ba0cbc3c48..cf55675d59a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.8 weight = -4 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -43,6 +42,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 17 material_print_temperature = =default_material_print_temperature + 15 +max_flow_acceleration = 2 optimize_wall_printing_order = False prime_tower_enable = True raft_airgap = 0.25 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg index 88ff2a6abf1..d968c3f056b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.25 weight = 0 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -29,6 +26,8 @@ bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_fan_speed_0 = 0 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ jerk_wall_0 = =max(30, speed_wall_0/2) machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.8 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg index b446e207f0c..78e41e520b0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.25 weight = 0 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -40,6 +39,7 @@ jerk_wall_0 = =max(30, speed_wall_0/2) machine_nozzle_cool_down_speed = 1.4 machine_nozzle_heat_up_speed = 1.7 material_extrusion_cool_down_speed = 0.7 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = False retraction_amount = 8 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg index 838d93dba89..34ceff41c44 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.25 weight = 0 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -40,6 +39,7 @@ jerk_wall_0 = =max(30, speed_wall_0/2) machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 +max_flow_acceleration = 2 optimize_wall_printing_order = False raft_airgap = 0.25 retraction_amount = 6.5 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg index be46b3bbb99..b9b5fb5a0f5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.25 weight = 0 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -40,6 +39,7 @@ jerk_wall_0 = =max(30, speed_wall_0/2) machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 +max_flow_acceleration = 2 optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.25 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg index 9a302b7c0d9..2654bd2d403 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = 1 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.8 material_max_flowrate = 20 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg index aa48a2daa0d..f4e10c38332 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = -1 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.8 material_max_flowrate = 20 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg index 1d087c2ea43..13d8b3c4ef1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = 0 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.8 material_max_flowrate = 20 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg index 3462394edb1..2f690ce044d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = -2 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_material_flow = =1.05 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 @@ -43,6 +42,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.8 material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 5 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg index 41214123409..fe4fb9cdd10 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = -3 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -42,6 +41,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.8 material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 7 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg index ff118d1b6d6..386745d6e9b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = 1 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.4 machine_nozzle_heat_up_speed = 1.7 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 20 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = False retraction_amount = 8 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg index 882e8b67bec..8fbbf3b6b82 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = -1 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.4 machine_nozzle_heat_up_speed = 1.7 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 20 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg index 6b276bb4f31..9333073ede5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = 0 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.4 machine_nozzle_heat_up_speed = 1.7 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 20 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = False retraction_amount = 8 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg index 2d91de68895..79bdcf5b20b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = -2 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_material_flow = =1.1 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 @@ -43,6 +42,7 @@ machine_nozzle_heat_up_speed = 1.7 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 5 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg index 57caf7c9aee..21079c5b3f9 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = -3 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -42,6 +41,7 @@ machine_nozzle_heat_up_speed = 1.7 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 5 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg index f53049cd941..93bb855a80b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = 1 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 12 +max_flow_acceleration = 2 optimize_wall_printing_order = False raft_airgap = 0.25 retraction_amount = 6.5 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg index deac70962c3..8100de75aa2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = -1 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 12 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False raft_airgap = 0.25 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg index 3429dc0e407..223e74c38d2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = 0 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 12 +max_flow_acceleration = 2 optimize_wall_printing_order = False raft_airgap = 0.25 retraction_amount = 6.5 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg index f2e990ba882..539732d456a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = -2 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_material_flow = =1.1 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 @@ -43,6 +42,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 12 material_print_temperature = =default_material_print_temperature + 5 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False raft_airgap = 0.25 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg index aba0ec0808e..f5f0a531a8c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = -3 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -42,6 +41,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 12 material_print_temperature = =default_material_print_temperature + 10 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False raft_airgap = 0.25 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg index 434e4aa944f..8878caf4c77 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = 1 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 +max_flow_acceleration = 2 optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.25 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg index 53a6b2a038e..702d91f3b9d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = -1 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg index b0fc69beb29..0d18de8d71f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = 0 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 +max_flow_acceleration = 2 optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.25 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg index 8679b8852bd..5078538dc6a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = -2 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_material_flow = =1.1 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 @@ -42,6 +41,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg index 84002bc56c1..7d96d6abb85 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.4 weight = -3 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -42,6 +41,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 material_print_temperature = =default_material_print_temperature + 5 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg index 27235eb4eaa..eba4ace3866 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.8 weight = -2 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -30,6 +27,8 @@ bridge_sparse_infill_max_density = 50 bridge_wall_material_flow = 200 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -45,6 +44,7 @@ material_extrusion_cool_down_speed = 0.8 material_flow = 93 material_max_flowrate = 22 material_print_temperature = =default_material_print_temperature + 5 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg index f9dd9392dd9..2838efbdd7b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.8 weight = -3 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -43,6 +42,7 @@ material_extrusion_cool_down_speed = 0.8 material_flow = 93 material_max_flowrate = 22 material_print_temperature = =default_material_print_temperature + 7 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = True raft_airgap = 0.15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg index cb1b927e298..e703fb64d11 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.8 weight = -4 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -43,6 +42,7 @@ material_extrusion_cool_down_speed = 0.8 material_flow = 93 material_max_flowrate = 22 material_print_temperature = =default_material_print_temperature + 10 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = True raft_airgap = 0.15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg index edf9355c165..5b6bd77b611 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.8 weight = -2 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -30,6 +27,8 @@ bridge_sparse_infill_max_density = 50 bridge_wall_material_flow = 200 bridge_wall_speed = 20 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -45,6 +44,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 23 material_print_temperature = =default_material_print_temperature - 5 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg index a04dbadcb71..c19e138144f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.8 weight = -3 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -30,6 +27,8 @@ bridge_sparse_infill_max_density = 50 bridge_wall_material_flow = 100 bridge_wall_speed = 20 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -45,6 +44,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 23 material_print_temperature = =default_material_print_temperature - 5 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = True retraction_amount = 3.5 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg index 843c73227ba..d5b889e61a4 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.8 weight = -4 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -30,6 +27,8 @@ bridge_sparse_infill_max_density = 50 bridge_wall_material_flow = 100 bridge_wall_speed = 20 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -45,6 +44,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 23 material_print_temperature = =default_material_print_temperature - 5 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = True retraction_amount = 3.5 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg index 098b10d5b6d..78d63336feb 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.8 weight = -2 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -30,6 +27,8 @@ bridge_sparse_infill_max_density = 50 bridge_wall_material_flow = 200 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -45,6 +44,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 15 material_print_temperature = =default_material_print_temperature + 10 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False raft_airgap = 0.25 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg index cb88bb41434..4c2089a98bf 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.8 weight = -3 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -43,6 +42,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 15 material_print_temperature = =default_material_print_temperature + 10 +max_flow_acceleration = 2 optimize_wall_printing_order = False raft_airgap = 0.25 retraction_amount = 4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg index 10e6cb8b22c..dc6bf3ebf6a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.8 weight = -4 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -43,6 +42,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 15 material_print_temperature = =default_material_print_temperature + 15 +max_flow_acceleration = 2 optimize_wall_printing_order = False raft_airgap = 0.25 retraction_amount = 4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg index 806a4b9d46c..766194ac041 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.8 weight = -2 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -30,6 +27,8 @@ bridge_sparse_infill_max_density = 50 bridge_wall_material_flow = 200 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -45,6 +44,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 17 material_print_temperature = =default_material_print_temperature + 10 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg index f6513c58733..00b743dec20 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.8 weight = -3 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -43,6 +42,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 17 material_print_temperature = =default_material_print_temperature + 15 +max_flow_acceleration = 2 optimize_wall_printing_order = False prime_tower_enable = True raft_airgap = 0.25 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg index 6932b8b7e52..676ec0d8afe 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg @@ -12,9 +12,6 @@ variant = AA 0.8 weight = -4 [values] -gradual_flow_discretisation_step_size = 0.2 -gradual_flow_enabled = True -max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -43,6 +42,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 17 material_print_temperature = =default_material_print_temperature + 15 +max_flow_acceleration = 2 optimize_wall_printing_order = False prime_tower_enable = True raft_airgap = 0.25 From 5a3ced550d9ed5b065f31c07b43e0090fb69e213 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 16 Aug 2024 16:05:53 +0200 Subject: [PATCH 6/6] Remove extra file cleaning in conanfile.py CURA-12096 This was apparently only useful for the gradual flow plugin. Advised by @jellespijker. --- conanfile.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/conanfile.py b/conanfile.py index f21f7b40b85..999cca3362c 100644 --- a/conanfile.py +++ b/conanfile.py @@ -511,8 +511,6 @@ def package(self): copy(self, "requirement*.txt", src = self.source_folder, dst = os.path.join(self.package_folder, self.cpp.package.resdirs[-1])) copy(self, "*", src = os.path.join(self.source_folder, "packaging"), dst = os.path.join(self.package_folder, self.cpp.package.resdirs[2])) - rm(self, "bundled_*.json", os.path.join(self.package_folder, self.cpp.package.resdirs[0], "bundled_packages"), recursive = False) - # Remove the fdm_materials from the package rmdir(self, os.path.join(self.package_folder, self.cpp.package.resdirs[0], "materials"))