From ca553a112d039b63b67e644959e5847e852acd06 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Wed, 22 Feb 2017 16:26:44 +0100 Subject: [PATCH] Add UM3 profiles for CPE+, PC and TPU These have been optimised only to remove redundancies, i.e. settings that had the same value as in the higher-order profile. --- .../um3_aa0.4_CPEP_Draft_Print.inst.cfg | 21 +++++++++++++++++++ .../um3_aa0.4_CPEP_Fast_Print.inst.cfg | 21 +++++++++++++++++++ .../um3_aa0.4_CPEP_High_Quality.inst.cfg | 15 +++++++++++++ .../um3_aa0.4_CPEP_Normal_Quality.inst.cfg | 17 +++++++++++++++ .../um3_aa0.4_PC_Draft_Print.inst.cfg | 16 ++++++++++++++ .../um3_aa0.4_PC_Fast_Print.inst.cfg | 17 +++++++++++++++ .../um3_aa0.4_PC_High_Quality.inst.cfg | 15 +++++++++++++ .../um3_aa0.4_PC_Normal_Quality.inst.cfg | 15 +++++++++++++ .../um3_aa0.4_TPU_Draft_Print.inst.cfg | 14 +++++++++++++ .../um3_aa0.4_TPU_Fast_Print.inst.cfg | 15 +++++++++++++ .../um3_aa0.4_TPU_Normal_Quality.inst.cfg | 16 ++++++++++++++ 11 files changed, 182 insertions(+) create mode 100644 resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg create mode 100644 resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg create mode 100644 resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg create mode 100644 resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg create mode 100644 resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg create mode 100644 resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg create mode 100644 resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg create mode 100644 resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg create mode 100644 resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg create mode 100644 resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg create mode 100644 resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg new file mode 100644 index 0000000000..8d749e29ce --- /dev/null +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg @@ -0,0 +1,21 @@ +[general] +version = 2 +name = Draft Print +definition = ultimaker3 + +[metadata] +type = quality +quality_type = draft +material = generic_cpe_plus_ultimaker3_AA_0.4 +weight = -2 + +[values] +cool_fan_speed_max = 80 +layer_height = 0.2 +machine_nozzle_cool_down_speed = 0.9 +speed_print = 50 +speed_topbottom = =math.ceil(speed_print * 65 / 50) +speed_wall = =math.ceil(speed_print * 50 / 50) +speed_wall_0 = =math.ceil(speed_wall * 40 / 50) +wall_thickness = 1 + diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg new file mode 100644 index 0000000000..2536420c1d --- /dev/null +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg @@ -0,0 +1,21 @@ +[general] +version = 2 +name = Fast Print +definition = ultimaker3 + +[metadata] +type = quality +quality_type = fast +material = generic_cpe_plus_ultimaker3_AA_0.4 +weight = -1 + +[values] +cool_fan_speed_max = 80 +cool_min_speed = 6 +layer_height = 0.15 +machine_nozzle_cool_down_speed = 0.9 +speed_print = 45 +speed_topbottom = =math.ceil(speed_print * 55 / 45) +speed_wall = =math.ceil(speed_print * 45 / 45) +speed_wall_0 = =math.ceil(speed_wall * 35 / 45) + diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg new file mode 100644 index 0000000000..90c23b7d8f --- /dev/null +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 2 +name = High Quality +definition = ultimaker3 + +[metadata] +type = quality +quality_type = high +material = generic_cpe_plus_ultimaker3_AA_0.4 +weight = 1 + +[values] +machine_nozzle_heat_up_speed = 1.5 +material_print_temperature = =default_material_print_temperature + 2 + diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg new file mode 100644 index 0000000000..f12d1ca613 --- /dev/null +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 2 +name = Normal Quality +definition = ultimaker3 + +[metadata] +type = quality +quality_type = normal +material = generic_cpe_plus_ultimaker3_AA_0.4 +weight = 0 + +[values] +cool_min_speed = 7 +layer_height = 0.1 +machine_nozzle_heat_up_speed = 1.5 +material_print_temperature = =default_material_print_temperature + 5 + diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg new file mode 100644 index 0000000000..876941d82b --- /dev/null +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 2 +name = Draft Print +definition = ultimaker3 + +[metadata] +type = quality +quality_type = draft +material = generic_pc_ultimaker3_AA_0.4 +weight = -2 + +[values] +cool_fan_speed_max = 90 +cool_min_speed = 6 +layer_height = 0.2 + diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg new file mode 100644 index 0000000000..93babeba51 --- /dev/null +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 2 +name = Fast Print +definition = ultimaker3 + +[metadata] +type = quality +quality_type = fast +material = generic_pc_ultimaker3_AA_0.4 +weight = -1 + +[values] +cool_fan_speed_max = 85 +cool_min_speed = 7 +infill_overlap = =0 +layer_height = 0.15 + diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg new file mode 100644 index 0000000000..03f7b2ffd9 --- /dev/null +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 2 +name = High Quality +definition = ultimaker3 + +[metadata] +type = quality +quality_type = high +material = generic_pc_ultimaker3_AA_0.4 +weight = 1 + +[values] +cool_min_speed = 8 +material_print_temperature = =default_material_print_temperature - 10 + diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg new file mode 100644 index 0000000000..7fb9c74ca0 --- /dev/null +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 2 +name = Normal Quality +definition = ultimaker3 + +[metadata] +type = quality +quality_type = normal +material = generic_pc_ultimaker3_AA_0.4 +weight = 0 + +[values] +layer_height = 0.1 +material_print_temperature = =default_material_print_temperature + diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg new file mode 100644 index 0000000000..72bb42c7bd --- /dev/null +++ b/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg @@ -0,0 +1,14 @@ +[general] +version = 2 +name = Draft Print +definition = ultimaker3 + +[metadata] +type = quality +quality_type = draft +material = generic_tpu_ultimaker3_AA_0.4 +weight = -2 + +[values] +layer_height = 0.2 + diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg new file mode 100644 index 0000000000..6e0bbc362d --- /dev/null +++ b/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg @@ -0,0 +1,15 @@ +[general] +version = 2 +name = Fast Print +definition = ultimaker3 + +[metadata] +type = quality +quality_type = fast +material = generic_tpu_ultimaker3_AA_0.4 +weight = -1 + +[values] +layer_height = 0.15 +retraction_amount = 7 + diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg new file mode 100644 index 0000000000..66f6e91ec9 --- /dev/null +++ b/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 2 +name = Normal Quality +definition = ultimaker3 + +[metadata] +type = quality +quality_type = normal +material = generic_tpu_ultimaker3_AA_0.4 +weight = 0 + +[values] +material_initial_print_temperature = =material_print_temperature - 10 +material_print_temperature = =default_material_print_temperature +material_print_temperature_layer_0 = =default_material_print_temperature +