diff --git a/resources/definitions/deltacomb_base.def.json b/resources/definitions/deltacomb_base.def.json old mode 100755 new mode 100644 index e1f66ee8df..1c00c96586 --- a/resources/definitions/deltacomb_base.def.json +++ b/resources/definitions/deltacomb_base.def.json @@ -13,7 +13,7 @@ "has_variants": true, "variants_name": "Head", - "preferred_quality_type": "d", + "preferred_quality_type": "D020", "preferred_material": "generic_pla", "machine_extruder_trains": { @@ -29,7 +29,7 @@ "machine_heated_bed": { "default_value": true }, "machine_center_is_zero": { "default_value": true }, "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { "default_value": ";---------------------------------------\n;Deltacomb start script\n;---------------------------------------\nG21 ;metric values\nG90 ;absolute positioning\nM107 ;start with the fan off\nG28 ;Home all axes (max endstops)\nG92 E0 ;zero the extruded length\nG1 Z15.0 F9000 ;move to the platform down 15mm\nG1 F9000\n\n;Put printing message on LCD screen\nM117 Printing...\n;---------------------------------------"}, + "machine_start_gcode": { "default_value": ";---------------------------------------\n;Deltacomb start script\n;---------------------------------------\nG21 ;metric values\nG90 ;absolute positioning\nM107 ;start with the fan off\nG28 ;Home all axes (max endstops)\nG92 E0 ;zero the extruded length\nG1 Z15.0 F9000 ;move to the platform down 15mm\nG1 F9000\n\n;Put printing message on LCD screen\nM117 In stampa...\nM140 S{print_bed_temperature} ;set the target bed temperature\n;---------------------------------------"}, "machine_end_gcode": { "default_value": ";---------------------------------------\n;Deltacomb end script\n;---------------------------------------\nG91 ;relative positioning\nG1 F15000 X8.0 E-4.5 ;Wipe filament+material retraction\nG1 F15000 E4.0 Z1 ;Retraction compensation\nG28 ;Home all axes (max endstops)\nM84 ;steppers off\n" }, "machine_shape": { "default_value": "elliptic" }, @@ -60,25 +60,31 @@ "jerk_infill": { "value": "10" }, "jerk_travel": { "value": "10" }, - "retraction_hop_enabled": { "default_value": true }, - "retraction_hop": { "default_value": 0.5 }, - "retraction_amount" : { "default_value": 3.5 }, - "retraction_speed" : { "default_value": 70 }, - "retraction_combing" : { "default_value": "noskin" }, - "travel_avoid_distance": { "value": "1" }, + "retraction_hop_enabled": { "default_value": true }, + "retraction_hop": { "default_value": 1.0 }, + "retraction_amount" : { "default_value": 3.5 }, + "retraction_speed" : { "default_value": 40 }, + "retraction_combing" : { "default_value": "noskin" }, + "travel_avoid_distance": { "value": "1" }, + "retraction_hop_only_when_collides": { "value": "1" }, + + "switch_extruder_retraction_amount": { "default_value": 5, "value": "5" }, + "switch_extruder_retraction_speeds": { "default_value": 70 }, "top_bottom_thickness": { "default_value": 0.8 }, "roofing_layer_count": { "value": "1" }, "roofing_line_width": { "value": "line_width * 0.75" }, + "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, "infill_sparse_density": { "default_value": 30 }, "infill_pattern": { "value": "'cubic'" }, "infill_before_walls": { "default_value": false }, - "support_z_distance": { "value": "layer_height * 2" }, + "support_z_distance": { "value": "layer_height" }, "support_bottom_distance": { "value": "layer_height" }, - "support_use_towers" : { "default_value": false }, - "support_bottom_enable" : { "value": "0" }, + "support_use_towers": { "default_value": false }, + "support_bottom_enable": { "value": false }, + "support_wall_count": { "value": "1" }, "skirt_brim_speed": { "value": "speed_layer_0" }, "skirt_line_count": { "default_value": 3 }, @@ -86,7 +92,8 @@ "brim_width": { "value": "3" }, "prime_tower_size": { "value": "math.sqrt(extruders_enabled_count * prime_tower_min_volume / layer_height / math.pi) * 2"}, - "prime_tower_position_x": { "value": "prime_tower_size - max(extruderValue(adhesion_extruder_nr, 'brim_width') * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 if adhesion_type == 'brim' or (prime_tower_brim_enable and adhesion_type != 'raft') else (extruderValue(adhesion_extruder_nr, 'raft_margin') if adhesion_type == 'raft' else (extruderValue(adhesion_extruder_nr, 'skirt_gap') if adhesion_type == 'skirt' else 0)), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - sum(extruderValues('skirt_brim_line_width')) * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 - (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0)" }, + "prime_tower_brim_enable": { "value": false }, + "prime_tower_position_x": { "value": "prime_tower_size / 2" }, "prime_tower_position_y": { "value": "machine_depth / 2 - prime_tower_size - max(extruderValue(adhesion_extruder_nr, 'brim_width') * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 if adhesion_type == 'brim' or (prime_tower_brim_enable and adhesion_type != 'raft') else (extruderValue(adhesion_extruder_nr, 'raft_margin') if adhesion_type == 'raft' else (extruderValue(adhesion_extruder_nr, 'skirt_gap') if adhesion_type == 'skirt' else 0)), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - sum(extruderValues('skirt_brim_line_width')) * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 - (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0) - 1" } } } diff --git a/resources/definitions/deltacomb_dc20.def.json b/resources/definitions/deltacomb_dc20.def.json old mode 100755 new mode 100644 diff --git a/resources/definitions/deltacomb_dc20dual.def.json b/resources/definitions/deltacomb_dc20dual.def.json old mode 100755 new mode 100644 diff --git a/resources/definitions/deltacomb_dc20flux.def.json b/resources/definitions/deltacomb_dc20flux.def.json index fdd4f77942..fb55aee346 100644 --- a/resources/definitions/deltacomb_dc20flux.def.json +++ b/resources/definitions/deltacomb_dc20flux.def.json @@ -22,8 +22,12 @@ "machine_depth": { "default_value": 190 }, "machine_height": { "default_value": 250 }, "machine_extruder_count": { "default_value": 2, "maximum_value": "4" }, + "machine_end_gcode": { "default_value": ";---------------------------------------\n;Deltacomb end script\n;---------------------------------------\nG91 ;relative positioning\nG1 X8.0 E-10 F6000 ;wipe filament+material retraction\nG1 Z2 E9 ;Lift and start filament shaping\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG28 ;home all axes (max endstops)\nM84 ;steppers off" }, "switch_extruder_retraction_amount": { "value": "0" }, - "prime_tower_min_volume": { "value": "45" }, - "prime_tower_enable": { "value": "1" } + "prime_tower_min_volume": { "value": "50" }, + "prime_tower_enable": { "value": "1" }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_standby_temperature": { "value": "material_print_temperature" } } } diff --git a/resources/definitions/deltacomb_dc21.def.json b/resources/definitions/deltacomb_dc21.def.json old mode 100755 new mode 100644 diff --git a/resources/definitions/deltacomb_dc21dual.def.json b/resources/definitions/deltacomb_dc21dual.def.json old mode 100755 new mode 100644 diff --git a/resources/definitions/deltacomb_dc21flux.def.json b/resources/definitions/deltacomb_dc21flux.def.json index c6d20cb301..d004f2c6e0 100644 --- a/resources/definitions/deltacomb_dc21flux.def.json +++ b/resources/definitions/deltacomb_dc21flux.def.json @@ -17,13 +17,17 @@ }, "overrides": { - "machine_name": { "default_value": "Deltacomb DC-20 FLUX" }, + "machine_name": { "default_value": "Deltacomb DC-21 FLUX" }, "machine_width": { "default_value": 190 }, "machine_depth": { "default_value": 190 }, "machine_height": { "default_value": 400 }, "machine_extruder_count": { "default_value": 2, "maximum_value": "4" }, + "machine_end_gcode": { "default_value": ";---------------------------------------\n;Deltacomb end script\n;---------------------------------------\nG91 ;relative positioning\nG1 X8.0 E-10 F6000 ;wipe filament+material retraction\nG1 Z2 E9 ;Lift and start filament shaping\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG28 ;home all axes (max endstops)\nM84 ;steppers off" }, "switch_extruder_retraction_amount": { "value": "0" }, - "prime_tower_min_volume": { "value": "45" }, - "prime_tower_enable": { "value": "1" } + "prime_tower_min_volume": { "value": "50" }, + "prime_tower_enable": { "value": "1" }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_standby_temperature": { "value": "material_print_temperature" } } -} +} \ No newline at end of file diff --git a/resources/definitions/deltacomb_dc30.def.json b/resources/definitions/deltacomb_dc30.def.json old mode 100755 new mode 100644 diff --git a/resources/definitions/deltacomb_dc30dual.def.json b/resources/definitions/deltacomb_dc30dual.def.json old mode 100755 new mode 100644 diff --git a/resources/definitions/deltacomb_dc30flux.def.json b/resources/definitions/deltacomb_dc30flux.def.json index 3b2148d9b8..7788018a15 100644 --- a/resources/definitions/deltacomb_dc30flux.def.json +++ b/resources/definitions/deltacomb_dc30flux.def.json @@ -22,8 +22,12 @@ "machine_depth": { "default_value": 290 }, "machine_height": { "default_value": 300 }, "machine_extruder_count": { "default_value": 2, "maximum_value": "4" }, + "machine_end_gcode": { "default_value": ";---------------------------------------\n;Deltacomb end script\n;---------------------------------------\nG91 ;relative positioning\nG1 X8.0 E-10 F6000 ;wipe filament+material retraction\nG1 Z2 E9 ;Lift and start filament shaping\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG28 ;home all axes (max endstops)\nM84 ;steppers off" }, "switch_extruder_retraction_amount": { "value": "0" }, - "prime_tower_min_volume": { "value": "45" }, - "prime_tower_enable": { "value": "1" } + "prime_tower_min_volume": { "value": "50" }, + "prime_tower_enable": { "value": "1" }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_standby_temperature": { "value": "material_print_temperature" } } } diff --git a/resources/extruders/deltacomb_base_extruder_0.def.json b/resources/extruders/deltacomb_base_extruder_0.def.json old mode 100755 new mode 100644 diff --git a/resources/extruders/deltacomb_base_extruder_1.def.json b/resources/extruders/deltacomb_base_extruder_1.def.json old mode 100755 new mode 100644 diff --git a/resources/extruders/deltacomb_base_extruder_2.def.json b/resources/extruders/deltacomb_base_extruder_2.def.json old mode 100755 new mode 100644 diff --git a/resources/extruders/deltacomb_base_extruder_3.def.json b/resources/extruders/deltacomb_base_extruder_3.def.json old mode 100755 new mode 100644 diff --git a/resources/extruders/deltacomb_dc20dual_extruder_0.def.json b/resources/extruders/deltacomb_dc20dual_extruder_0.def.json old mode 100755 new mode 100644 diff --git a/resources/extruders/deltacomb_dc20dual_extruder_1.def.json b/resources/extruders/deltacomb_dc20dual_extruder_1.def.json old mode 100755 new mode 100644 index 1421a7d3db..75a79f9aaf --- a/resources/extruders/deltacomb_dc20dual_extruder_1.def.json +++ b/resources/extruders/deltacomb_dc20dual_extruder_1.def.json @@ -11,8 +11,8 @@ "extruder_nr": { "default_value": 1 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_offset_x": { "default_value": 19 }, - "machine_nozzle_offset_y": { "default_value": 0 }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.0 }, "machine_extruder_start_code": { "default_value": ";DC20 Dual Extruder 2\n;Put your custom code here"}, "machine_extruder_end_code": { "default_value": ";DC20 Dual Extruder 2\n;Put your custom code here"} } diff --git a/resources/extruders/deltacomb_dc20flux_extruder_0.def.json b/resources/extruders/deltacomb_dc20flux_extruder_0.def.json old mode 100755 new mode 100644 index 96617a9465..c74fad99e0 --- a/resources/extruders/deltacomb_dc20flux_extruder_0.def.json +++ b/resources/extruders/deltacomb_dc20flux_extruder_0.def.json @@ -7,14 +7,13 @@ "position": "0" }, - "overrides": { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 1.75 }, "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC20 Flux Extruder 1 Start\n;---------------------------------------\nG92 E0 ;zero the extruded length\nG91 ;use relative coordinates\nG1 E68 F10000 ; fast insert\nG92 E0 ;zero the extruded length\nG90 ;absolute positioning\n;---------------------------------------\n;---------------------------------------"}, - "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC20 Flux Extruder 1 End\n;---------------------------------------\nG91 ;use relative coordinates\nG0 E-15 F10000\nG1 Z2 ;lift head\nG4 P3000\nG0 E14.7 F10000\nG1 E-69.7 F10000\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"} + "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 1 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, + "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 1 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"} } -} +} \ No newline at end of file diff --git a/resources/extruders/deltacomb_dc20flux_extruder_1.def.json b/resources/extruders/deltacomb_dc20flux_extruder_1.def.json old mode 100755 new mode 100644 index 309f857fe0..278bd537fc --- a/resources/extruders/deltacomb_dc20flux_extruder_1.def.json +++ b/resources/extruders/deltacomb_dc20flux_extruder_1.def.json @@ -7,15 +7,14 @@ "position": "1" }, - "overrides": { "extruder_nr": { "default_value": 1 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 1.75 }, "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC20 Flux Extruder 2 Start\n;---------------------------------------\nG92 E0 ;zero the extruded length\nG91 ;use relative coordinates\nG1 E68 F10000 ; fast insert\nG92 E0 ;zero the extruded length\nG90 ;absolute positioning\n;---------------------------------------\n;---------------------------------------"}, - "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC20 Flux Extruder 2 End\n;---------------------------------------\nG91 ;use relative coordinates\nG0 E-15 F10000\nG1 Z2 ;lift head\nG4 P3000\nG0 E14.7 F10000\nG1 E-69.7 F10000\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, + "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 2 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, + "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 2 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, "prime_tower_flow": { "value": "200" } } -} +} \ No newline at end of file diff --git a/resources/extruders/deltacomb_dc20flux_extruder_2.def.json b/resources/extruders/deltacomb_dc20flux_extruder_2.def.json old mode 100755 new mode 100644 index 1283e3dbf5..d64a0d8b66 --- a/resources/extruders/deltacomb_dc20flux_extruder_2.def.json +++ b/resources/extruders/deltacomb_dc20flux_extruder_2.def.json @@ -7,15 +7,14 @@ "position": "2" }, - "overrides": { "extruder_nr": { "default_value": 2 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 1.75 }, "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC20 Flux Extruder 3 Start\n;---------------------------------------\nG92 E0 ;zero the extruded length\nG91 ;use relative coordinates\nG1 E68 F10000 ; fast insert\nG92 E0 ;zero the extruded length\nG90 ;absolute positioning\n;---------------------------------------\n;---------------------------------------"}, - "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC20 Flux Extruder 3 End\n;---------------------------------------\nG91 ;use relative coordinates\nG0 E-15 F10000\nG1 Z2 ;lift head\nG4 P3000\nG0 E14.7 F10000\nG1 E-69.7 F10000\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, + "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 3 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, + "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 3 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, "prime_tower_flow": { "value": "200" } } } diff --git a/resources/extruders/deltacomb_dc20flux_extruder_3.def.json b/resources/extruders/deltacomb_dc20flux_extruder_3.def.json old mode 100755 new mode 100644 index 1965f615f6..061de645df --- a/resources/extruders/deltacomb_dc20flux_extruder_3.def.json +++ b/resources/extruders/deltacomb_dc20flux_extruder_3.def.json @@ -7,15 +7,18 @@ "position": "3" }, - "overrides": { "extruder_nr": { "default_value": 3 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 1.75 }, "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC20 Flux Extruder 4 Start\n;---------------------------------------\nG92 E0 ;zero the extruded length\nG91 ;use relative coordinates\nG1 E68 F10000 ; fast insert\nG92 E0 ;zero the extruded length\nG90 ;absolute positioning\n;---------------------------------------\n;---------------------------------------"}, - "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC20 Flux Extruder 4 End\n;---------------------------------------\nG91 ;use relative coordinates\nG0 E-15 F10000\nG1 Z2 ;lift head\nG4 P3000\nG0 E14.7 F10000\nG1 E-69.7 F10000\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, + "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 4 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, + "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 4 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, "prime_tower_flow": { "value": "200" } } } + + + + diff --git a/resources/extruders/deltacomb_dc30dual_extruder_0.def.json b/resources/extruders/deltacomb_dc30dual_extruder_0.def.json old mode 100755 new mode 100644 diff --git a/resources/extruders/deltacomb_dc30dual_extruder_1.def.json b/resources/extruders/deltacomb_dc30dual_extruder_1.def.json old mode 100755 new mode 100644 index c1ce8dec33..7c762e7eea --- a/resources/extruders/deltacomb_dc30dual_extruder_1.def.json +++ b/resources/extruders/deltacomb_dc30dual_extruder_1.def.json @@ -11,8 +11,8 @@ "extruder_nr": { "default_value": 1 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_offset_x": { "default_value": 19 }, - "machine_nozzle_offset_y": { "default_value": 0 }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.0 }, "machine_extruder_start_code": { "default_value": ";DC30 Dual Extruder 2\n;Put your custom code here"}, "machine_extruder_end_code": { "default_value": ";DC30 Dual Extruder 2\n;Put your custom code here"} } diff --git a/resources/extruders/deltacomb_dc30flux_extruder_0.def.json b/resources/extruders/deltacomb_dc30flux_extruder_0.def.json old mode 100755 new mode 100644 index 1f401c3657..604affe3f2 --- a/resources/extruders/deltacomb_dc30flux_extruder_0.def.json +++ b/resources/extruders/deltacomb_dc30flux_extruder_0.def.json @@ -13,7 +13,7 @@ "material_diameter": { "default_value": 1.75 }, "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC30 Flux Extruder 1 Start\n;---------------------------------------\nG92 E0 ;zero the extruded length\nG91 ;use relative coordinates\nG1 E68 F10000 ; fast insert\nG92 E0 ;zero the extruded length\nG90 ;absolute positioning\n;---------------------------------------\n;---------------------------------------"}, - "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC30 Flux Extruder 1 End\n;---------------------------------------\nG91 ;use relative coordinates\nG0 E-15 F10000\nG1 Z2 ;lift head\nG4 P3000\nG0 E14.7 F10000\nG1 E-69.7 F10000\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"} + "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 1 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, + "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 1 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"} } } diff --git a/resources/extruders/deltacomb_dc30flux_extruder_1.def.json b/resources/extruders/deltacomb_dc30flux_extruder_1.def.json old mode 100755 new mode 100644 index 909d87feeb..e0b0e1711f --- a/resources/extruders/deltacomb_dc30flux_extruder_1.def.json +++ b/resources/extruders/deltacomb_dc30flux_extruder_1.def.json @@ -13,8 +13,8 @@ "material_diameter": { "default_value": 1.75 }, "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC30 Flux Extruder 2 Start\n;---------------------------------------\nG92 E0 ;zero the extruded length\nG91 ;use relative coordinates\nG1 E68 F10000 ; fast insert\nG92 E0 ;zero the extruded length\nG90 ;absolute positioning\n;---------------------------------------\n;---------------------------------------"}, - "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC30 Flux Extruder 2 End\n;---------------------------------------\nG91 ;use relative coordinates\nG0 E-15 F10000\nG1 Z2 ;lift head\nG4 P3000\nG0 E14.7 F10000\nG1 E-69.7 F10000\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, + "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 2 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, + "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 2 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, "prime_tower_flow": { "value": "200" } } } diff --git a/resources/extruders/deltacomb_dc30flux_extruder_2.def.json b/resources/extruders/deltacomb_dc30flux_extruder_2.def.json old mode 100755 new mode 100644 index f1df8ab154..048499988d --- a/resources/extruders/deltacomb_dc30flux_extruder_2.def.json +++ b/resources/extruders/deltacomb_dc30flux_extruder_2.def.json @@ -13,8 +13,8 @@ "material_diameter": { "default_value": 1.75 }, "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC30 Flux Extruder 3 Start\n;---------------------------------------\nG92 E0 ;zero the extruded length\nG91 ;use relative coordinates\nG1 E68 F10000 ; fast insert\nG92 E0 ;zero the extruded length\nG90 ;absolute positioning\n;---------------------------------------\n;---------------------------------------"}, - "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC30 Flux Extruder 3 End\n;---------------------------------------\nG91 ;use relative coordinates\nG0 E-15 F10000\nG1 Z2 ;lift head\nG4 P3000\nG0 E14.7 F10000\nG1 E-69.7 F10000\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, + "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 3 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, + "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 3 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, "prime_tower_flow": { "value": "200" } } } diff --git a/resources/extruders/deltacomb_dc30flux_extruder_3.def.json b/resources/extruders/deltacomb_dc30flux_extruder_3.def.json old mode 100755 new mode 100644 index dbc23f96b6..a18f2f1288 --- a/resources/extruders/deltacomb_dc30flux_extruder_3.def.json +++ b/resources/extruders/deltacomb_dc30flux_extruder_3.def.json @@ -13,8 +13,8 @@ "material_diameter": { "default_value": 1.75 }, "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC30 Flux Extruder 4 Start\n;---------------------------------------\nG92 E0 ;zero the extruded length\nG91 ;use relative coordinates\nG1 E68 F10000 ; fast insert\nG92 E0 ;zero the extruded length\nG90 ;absolute positioning\n;---------------------------------------\n;---------------------------------------"}, - "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC30 Flux Extruder 4 End\n;---------------------------------------\nG91 ;use relative coordinates\nG0 E-15 F10000\nG1 Z2 ;lift head\nG4 P3000\nG0 E14.7 F10000\nG1 E-69.7 F10000\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, + "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 4 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, + "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 4 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, "prime_tower_flow": { "value": "200" } } } diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg new file mode 100644 index 0000000000..857bd6b119 --- /dev/null +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg @@ -0,0 +1,22 @@ +[general] +version = 4 +name = Accurate +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D010 +intent_category = engineering +material = generic_abs +variant = DBE 0.40mm + +[values] +jerk_wall = 5 +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +wall_thickness = =line_width * 3 +top_bottom_thickness = =wall_thickness +xy_offset = =-layer_height * 0.2 +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg new file mode 100644 index 0000000000..e480aaa23a --- /dev/null +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg @@ -0,0 +1,22 @@ +[general] +version = 4 +name = Accurate +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D015 +intent_category = engineering +material = generic_abs +variant = DBE 0.40mm + +[values] +jerk_wall = 5 +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +wall_thickness = =line_width * 3 +top_bottom_thickness = =wall_thickness +xy_offset = =-layer_height * 0.2 +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg new file mode 100644 index 0000000000..75ae71ee42 --- /dev/null +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg @@ -0,0 +1,22 @@ +[general] +version = 4 +name = Accurate +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D020 +intent_category = engineering +material = generic_abs +variant = DBE 0.40mm + +[values] +jerk_wall = 5 +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +wall_thickness = =line_width * 3 +top_bottom_thickness = =wall_thickness +xy_offset = =-layer_height * 0.2 +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_PLA_quick_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_PLA_quick_D.inst.cfg new file mode 100644 index 0000000000..540fb373e4 --- /dev/null +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_PLA_quick_D.inst.cfg @@ -0,0 +1,33 @@ +[general] +version = 4 +name = Quick +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D020 +intent_category = quick +material = generic_abs +variant = DBE 0.40mm + +[values] +speed_infill = =speed_print +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 2 +fill_perimeter_gaps = nowhere +infill_sparse_density = 15 +infill_line_width = =line_width +jerk_print = 30 +jerk_infill = =jerk_print +jerk_topbottom = =jerk_print +jerk_wall = =jerk_print +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +line_width = =machine_nozzle_size +wall_line_width_x = =line_width \ No newline at end of file diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_PLA_quick_E.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_PLA_quick_E.inst.cfg new file mode 100644 index 0000000000..7d4b7db0ab --- /dev/null +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_PLA_quick_E.inst.cfg @@ -0,0 +1,33 @@ +[general] +version = 4 +name = Quick +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D030 +intent_category = quick +material = generic_abs +variant = DBE 0.40mm + +[values] +speed_infill = =speed_print +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 2 +fill_perimeter_gaps = nowhere +infill_sparse_density = 15 +infill_line_width = =line_width +jerk_print = 30 +jerk_infill = =jerk_print +jerk_topbottom = =jerk_print +jerk_wall = =jerk_print +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +line_width = =machine_nozzle_size +wall_line_width_x = =line_width \ No newline at end of file diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg new file mode 100644 index 0000000000..d9c55bb390 --- /dev/null +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg @@ -0,0 +1,22 @@ +[general] +version = 4 +name = Accurate +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D010 +intent_category = engineering +material = generic_abs +variant = FBE 0.40mm + +[values] +jerk_wall = 5 +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +wall_thickness = =line_width * 3 +top_bottom_thickness = =wall_thickness +xy_offset = =-layer_height * 0.2 +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg new file mode 100644 index 0000000000..9289b8447d --- /dev/null +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg @@ -0,0 +1,22 @@ +[general] +version = 4 +name = Accurate +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D015 +intent_category = engineering +material = generic_abs +variant = FBE 0.40mm + +[values] +jerk_wall = 5 +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +wall_thickness = =line_width * 3 +top_bottom_thickness = =wall_thickness +xy_offset = =-layer_height * 0.2 +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg new file mode 100644 index 0000000000..7ffb181465 --- /dev/null +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg @@ -0,0 +1,22 @@ +[general] +version = 4 +name = Accurate +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D020 +intent_category = engineering +material = generic_abs +variant = FBE 0.40mm + +[values] +jerk_wall = 5 +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +wall_thickness = =line_width * 3 +top_bottom_thickness = =wall_thickness +xy_offset = =-layer_height * 0.2 +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_PLA_quick_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_PLA_quick_D.inst.cfg new file mode 100644 index 0000000000..a0fa707740 --- /dev/null +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_PLA_quick_D.inst.cfg @@ -0,0 +1,33 @@ +[general] +version = 4 +name = Quick +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D020 +intent_category = quick +material = generic_abs +variant = FBE 0.40mm + +[values] +speed_infill = =speed_print +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 2 +fill_perimeter_gaps = nowhere +infill_sparse_density = 15 +infill_line_width = =line_width +jerk_print = 30 +jerk_infill = =jerk_print +jerk_topbottom = =jerk_print +jerk_wall = =jerk_print +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +line_width = =machine_nozzle_size +wall_line_width_x = =line_width \ No newline at end of file diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_PLA_quick_E.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_PLA_quick_E.inst.cfg new file mode 100644 index 0000000000..bc0efb790f --- /dev/null +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_PLA_quick_E.inst.cfg @@ -0,0 +1,33 @@ +[general] +version = 4 +name = Quick +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D030 +intent_category = quick +material = generic_abs +variant = FBE 0.40mm + +[values] +speed_infill = =speed_print +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 2 +fill_perimeter_gaps = nowhere +infill_sparse_density = 15 +infill_line_width = =line_width +jerk_print = 30 +jerk_infill = =jerk_print +jerk_topbottom = =jerk_print +jerk_wall = =jerk_print +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +line_width = =machine_nozzle_size +wall_line_width_x = =line_width \ No newline at end of file diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg new file mode 100644 index 0000000000..434d87f9a0 --- /dev/null +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg @@ -0,0 +1,22 @@ +[general] +version = 4 +name = Accurate +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D010 +intent_category = engineering +material = generic_petg +variant = DBE 0.40mm + +[values] +jerk_wall = 5 +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +wall_thickness = =line_width * 3 +top_bottom_thickness = =wall_thickness +xy_offset = =-layer_height * 0.2 +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg new file mode 100644 index 0000000000..12183cc6fb --- /dev/null +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg @@ -0,0 +1,22 @@ +[general] +version = 4 +name = Accurate +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D015 +intent_category = engineering +material = generic_petg +variant = DBE 0.40mm + +[values] +jerk_wall = 5 +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +wall_thickness = =line_width * 3 +top_bottom_thickness = =wall_thickness +xy_offset = =-layer_height * 0.2 +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg new file mode 100644 index 0000000000..be0fb6b61a --- /dev/null +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg @@ -0,0 +1,22 @@ +[general] +version = 4 +name = Accurate +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D020 +intent_category = engineering +material = generic_petg +variant = DBE 0.40mm + +[values] +jerk_wall = 5 +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +wall_thickness = =line_width * 3 +top_bottom_thickness = =wall_thickness +xy_offset = =-layer_height * 0.2 +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg new file mode 100644 index 0000000000..cf0d69f89e --- /dev/null +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg @@ -0,0 +1,33 @@ +[general] +version = 4 +name = Quick +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D020 +intent_category = quick +material = generic_petg +variant = DBE 0.40mm + +[values] +speed_infill = =speed_print +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 2 +fill_perimeter_gaps = nowhere +infill_sparse_density = 15 +infill_line_width = =line_width +jerk_print = 30 +jerk_infill = =jerk_print +jerk_topbottom = =jerk_print +jerk_wall = =jerk_print +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +line_width = =machine_nozzle_size +wall_line_width_x = =line_width \ No newline at end of file diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg new file mode 100644 index 0000000000..15fee129b9 --- /dev/null +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg @@ -0,0 +1,33 @@ +[general] +version = 4 +name = Quick +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D030 +intent_category = quick +material = generic_petg +variant = DBE 0.40mm + +[values] +speed_infill = =speed_print +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 2 +fill_perimeter_gaps = nowhere +infill_sparse_density = 15 +infill_line_width = =line_width +jerk_print = 30 +jerk_infill = =jerk_print +jerk_topbottom = =jerk_print +jerk_wall = =jerk_print +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +line_width = =machine_nozzle_size +wall_line_width_x = =line_width \ No newline at end of file diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg new file mode 100644 index 0000000000..1d38bc2ec7 --- /dev/null +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg @@ -0,0 +1,22 @@ +[general] +version = 4 +name = Accurate +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D010 +intent_category = engineering +material = generic_petg +variant = FBE 0.40mm + +[values] +jerk_wall = 5 +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +wall_thickness = =line_width * 3 +top_bottom_thickness = =wall_thickness +xy_offset = =-layer_height * 0.2 +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg new file mode 100644 index 0000000000..604f3b1a17 --- /dev/null +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg @@ -0,0 +1,22 @@ +[general] +version = 4 +name = Accurate +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D015 +intent_category = engineering +material = generic_petg +variant = FBE 0.40mm + +[values] +jerk_wall = 5 +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +wall_thickness = =line_width * 3 +top_bottom_thickness = =wall_thickness +xy_offset = =-layer_height * 0.2 +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg new file mode 100644 index 0000000000..bf4adf4ed0 --- /dev/null +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg @@ -0,0 +1,22 @@ +[general] +version = 4 +name = Accurate +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D020 +intent_category = engineering +material = generic_petg +variant = FBE 0.40mm + +[values] +jerk_wall = 5 +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +wall_thickness = =line_width * 3 +top_bottom_thickness = =wall_thickness +xy_offset = =-layer_height * 0.2 +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg new file mode 100644 index 0000000000..96078834da --- /dev/null +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg @@ -0,0 +1,33 @@ +[general] +version = 4 +name = Quick +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D020 +intent_category = quick +material = generic_petg +variant = FBE 0.40mm + +[values] +speed_infill = =speed_print +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 2 +fill_perimeter_gaps = nowhere +infill_sparse_density = 15 +infill_line_width = =line_width +jerk_print = 30 +jerk_infill = =jerk_print +jerk_topbottom = =jerk_print +jerk_wall = =jerk_print +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +line_width = =machine_nozzle_size +wall_line_width_x = =line_width \ No newline at end of file diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg new file mode 100644 index 0000000000..74c3e63d3f --- /dev/null +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg @@ -0,0 +1,33 @@ +[general] +version = 4 +name = Quick +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D030 +intent_category = quick +material = generic_petg +variant = FBE 0.40mm + +[values] +speed_infill = =speed_print +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 2 +fill_perimeter_gaps = nowhere +infill_sparse_density = 15 +infill_line_width = =line_width +jerk_print = 30 +jerk_infill = =jerk_print +jerk_topbottom = =jerk_print +jerk_wall = =jerk_print +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +line_width = =machine_nozzle_size +wall_line_width_x = =line_width \ No newline at end of file diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg new file mode 100644 index 0000000000..4ad1c79888 --- /dev/null +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg @@ -0,0 +1,22 @@ +[general] +version = 4 +name = Accurate +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D010 +intent_category = engineering +material = generic_pla +variant = DBE 0.40mm + +[values] +jerk_wall = 5 +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +wall_thickness = =line_width * 3 +top_bottom_thickness = =wall_thickness +xy_offset = =-layer_height * 0.2 +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg new file mode 100644 index 0000000000..380ac624f6 --- /dev/null +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg @@ -0,0 +1,22 @@ +[general] +version = 4 +name = Accurate +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D015 +intent_category = engineering +material = generic_pla +variant = DBE 0.40mm + +[values] +jerk_wall = 5 +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +wall_thickness = =line_width * 3 +top_bottom_thickness = =wall_thickness +xy_offset = =-layer_height * 0.2 +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg new file mode 100644 index 0000000000..c59938fa78 --- /dev/null +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg @@ -0,0 +1,22 @@ +[general] +version = 4 +name = Accurate +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D020 +intent_category = engineering +material = generic_pla +variant = DBE 0.40mm + +[values] +jerk_wall = 5 +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +wall_thickness = =line_width * 3 +top_bottom_thickness = =wall_thickness +xy_offset = =-layer_height * 0.2 +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg new file mode 100644 index 0000000000..2d61966a6c --- /dev/null +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg @@ -0,0 +1,33 @@ +[general] +version = 4 +name = Quick +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D020 +intent_category = quick +material = generic_pla +variant = DBE 0.40mm + +[values] +speed_infill = =speed_print +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 2 +fill_perimeter_gaps = nowhere +infill_sparse_density = 15 +infill_line_width = =line_width +jerk_print = 30 +jerk_infill = =jerk_print +jerk_topbottom = =jerk_print +jerk_wall = =jerk_print +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +line_width = =machine_nozzle_size +wall_line_width_x = =line_width \ No newline at end of file diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg new file mode 100644 index 0000000000..65943b864a --- /dev/null +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg @@ -0,0 +1,33 @@ +[general] +version = 4 +name = Quick +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D030 +intent_category = quick +material = generic_pla +variant = DBE 0.40mm + +[values] +speed_infill = =speed_print +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 2 +fill_perimeter_gaps = nowhere +infill_sparse_density = 15 +infill_line_width = =line_width +jerk_print = 30 +jerk_infill = =jerk_print +jerk_topbottom = =jerk_print +jerk_wall = =jerk_print +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +line_width = =machine_nozzle_size +wall_line_width_x = =line_width \ No newline at end of file diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg new file mode 100644 index 0000000000..8a743bd48c --- /dev/null +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg @@ -0,0 +1,22 @@ +[general] +version = 4 +name = Accurate +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D010 +intent_category = engineering +material = generic_pla +variant = FBE 0.40mm + +[values] +jerk_wall = 5 +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +wall_thickness = =line_width * 3 +top_bottom_thickness = =wall_thickness +xy_offset = =-layer_height * 0.2 +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg new file mode 100644 index 0000000000..4624cda075 --- /dev/null +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg @@ -0,0 +1,22 @@ +[general] +version = 4 +name = Accurate +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D015 +intent_category = engineering +material = generic_pla +variant = FBE 0.40mm + +[values] +jerk_wall = 5 +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +wall_thickness = =line_width * 3 +top_bottom_thickness = =wall_thickness +xy_offset = =-layer_height * 0.2 +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg new file mode 100644 index 0000000000..80e962e7d6 --- /dev/null +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg @@ -0,0 +1,22 @@ +[general] +version = 4 +name = Accurate +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D020 +intent_category = engineering +material = generic_pla +variant = FBE 0.40mm + +[values] +jerk_wall = 5 +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +wall_thickness = =line_width * 3 +top_bottom_thickness = =wall_thickness +xy_offset = =-layer_height * 0.2 +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg new file mode 100644 index 0000000000..232cee0ec3 --- /dev/null +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg @@ -0,0 +1,33 @@ +[general] +version = 4 +name = Quick +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D020 +intent_category = quick +material = generic_pla +variant = FBE 0.40mm + +[values] +speed_infill = =speed_print +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 2 +fill_perimeter_gaps = nowhere +infill_sparse_density = 15 +infill_line_width = =line_width +jerk_print = 30 +jerk_infill = =jerk_print +jerk_topbottom = =jerk_print +jerk_wall = =jerk_print +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +line_width = =machine_nozzle_size +wall_line_width_x = =line_width \ No newline at end of file diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg new file mode 100644 index 0000000000..77a09ff153 --- /dev/null +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg @@ -0,0 +1,33 @@ +[general] +version = 4 +name = Quick +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = intent +quality_type = D030 +intent_category = quick +material = generic_pla +variant = FBE 0.40mm + +[values] +speed_infill = =speed_print +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 2 +fill_perimeter_gaps = nowhere +infill_sparse_density = 15 +infill_line_width = =line_width +jerk_print = 30 +jerk_infill = =jerk_print +jerk_topbottom = =jerk_print +jerk_wall = =jerk_print +jerk_wall_0 = =jerk_wall +jerk_wall_x = =jerk_wall +jerk_layer_0 = 5 +line_width = =machine_nozzle_size +wall_line_width_x = =line_width \ No newline at end of file diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg old mode 100755 new mode 100644 index 087bb80ca5..27cc947585 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = a +quality_type = D005 material = generic_abs variant = DBE 0.25mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 0.5 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg old mode 100755 new mode 100644 index c80cc10585..89c8004647 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = b +quality_type = D010 material = generic_abs variant = DBE 0.25mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 0.5 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg old mode 100755 new mode 100644 index 6c9980688e..e546821d34 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = c +quality_type = D010 material = generic_abs variant = DBE 0.25mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 0.5 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg old mode 100755 new mode 100644 index 7426459df6..fb7cb2a577 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = a +quality_type = D005 material = generic_abs variant = DBE 0.40mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 1 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg old mode 100755 new mode 100644 index dedcb45937..a947f79fd2 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = b +quality_type = D010 material = generic_abs variant = DBE 0.40mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 1 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg old mode 100755 new mode 100644 index 1cab0b1394..80e786eb27 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = c +quality_type = D015 material = generic_abs variant = DBE 0.40mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 1 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg old mode 100755 new mode 100644 index 9d961a2020..5e5da99878 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = d +quality_type = D020 material = generic_abs variant = FBE 0.40mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 1 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg old mode 100755 new mode 100644 index a628377548..7901c5b367 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = e +quality_type = D030 material = generic_abs variant = DBE 0.40mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 1 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg old mode 100755 new mode 100644 index ebd2583f50..a7ed9fe50c --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = c +quality_type = D015 material = generic_abs variant = DBE 0.60mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 1 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg old mode 100755 new mode 100644 index d256fa46c7..13edfffdd5 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = d +quality_type = D020 material = generic_abs variant = FBE 0.60mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 1 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg old mode 100755 new mode 100644 index d5cd1266ba..c14b1d5bea --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = e +quality_type = D030 material = generic_abs variant = DBE 0.60mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 1 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg old mode 100755 new mode 100644 index 8f4bc16b5f..f01b36426a --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = f +quality_type = D045 material = generic_abs variant = DBE 0.60mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 1 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg old mode 100755 new mode 100644 index de6cfb88a6..9dbe3d76fa --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = a +quality_type = D005 material = generic_abs variant = FBE 0.25mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 0.5 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg old mode 100755 new mode 100644 index 484b5a46df..9c7f3e3138 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = b +quality_type = D010 material = generic_abs variant = FBE 0.25mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 0.5 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg old mode 100755 new mode 100644 index ed2e3ef5fd..c65e05ea66 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = c +quality_type = D015 material = generic_abs variant = FBE 0.25mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 0.5 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg old mode 100755 new mode 100644 index 60009a8305..cdbf49d134 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = a +quality_type = D005 material = generic_abs variant = FBE 0.40mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 1 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg old mode 100755 new mode 100644 index 0742a58c27..a7cfaa0d79 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = b +quality_type = D010 material = generic_abs variant = FBE 0.40mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 1 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg old mode 100755 new mode 100644 index 84a84f3294..333ffd7698 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = c +quality_type = D015 material = generic_abs variant = FBE 0.40mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 1 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg old mode 100755 new mode 100644 index 9d961a2020..5e5da99878 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = d +quality_type = D020 material = generic_abs variant = FBE 0.40mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 1 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg old mode 100755 new mode 100644 index 0611db92f9..73fe93b767 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = e +quality_type = D030 material = generic_abs variant = FBE 0.40mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 1 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg old mode 100755 new mode 100644 index 82fa6d824d..88c0b7e0c6 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = c +quality_type = D015 material = generic_abs variant = FBE 0.60mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 1 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg old mode 100755 new mode 100644 index d256fa46c7..13edfffdd5 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = d +quality_type = D020 material = generic_abs variant = FBE 0.60mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 1 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg old mode 100755 new mode 100644 index 7a28aadb23..efc9903ea3 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = e +quality_type = D030 material = generic_abs variant = FBE 0.60mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 1 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg old mode 100755 new mode 100644 index 7fccd59280..d6e6cb9acc --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = f +quality_type = D045 material = generic_abs variant = FBE 0.60mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 1 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg old mode 100755 new mode 100644 index e267c20de4..ffe0de9fb0 --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = d +quality_type = D020 material = generic_abs variant = V-FBE 0.80mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 1 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg old mode 100755 new mode 100644 index b2f4e19f96..589c92129f --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = e +quality_type = D030 material = generic_abs variant = V-DBE 0.80mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 1 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg old mode 100755 new mode 100644 index 32617279ac..d6690d9efb --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = f +quality_type = D045 material = generic_abs variant = V-DBE 0.80mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 1 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg old mode 100755 new mode 100644 index 84695a0726..ac346c372b --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = c +quality_type = D015 material = generic_abs variant = V-DBE 0.80mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 1 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg old mode 100755 new mode 100644 index e267c20de4..ffe0de9fb0 --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = d +quality_type = D020 material = generic_abs variant = V-FBE 0.80mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 1 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg old mode 100755 new mode 100644 index f437ebb490..069f4d7fde --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = e +quality_type = D030 material = generic_abs variant = V-FBE 0.80mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 1 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg old mode 100755 new mode 100644 index 27a51c4836..d0825a8a4c --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = f +quality_type = D045 material = generic_abs variant = V-FBE 0.80mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 1 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg old mode 100755 new mode 100644 index 788665b03c..acca7b5126 --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg @@ -6,12 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = g +quality_type = D060 material = generic_abs variant = V-FBE 0.80mm [values] -adhesion_type = raft +adhesion_type = brim cool_fan_full_at_height = 1 cool_fan_speed = 50 cool_fan_speed_max = 50 diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg index 38b03c2f07..0cc2a0e266 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg @@ -6,12 +6,11 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = a +quality_type = D005 material = generic_petg variant = DBE 0.40mm [values] -adhesion_type = skirt cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 @@ -28,3 +27,4 @@ retraction_speed = 40 coasting_enable = True coasting_volume = 0.256 retraction_combing_max_distance = 5 +support_z_distance = =layer_height * 2 \ No newline at end of file diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg index c9178c9a24..8a79f965e5 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg @@ -6,12 +6,11 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = b +quality_type = D010 material = generic_petg variant = DBE 0.40mm [values] -adhesion_type = skirt cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 @@ -28,3 +27,4 @@ retraction_speed = 40 coasting_enable = True coasting_volume = 0.256 retraction_combing_max_distance = 5 +support_z_distance = =layer_height * 2 diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg index 2c22f3190b..f806e915e4 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg @@ -6,12 +6,11 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = c +quality_type = D015 material = generic_petg variant = DBE 0.40mm [values] -adhesion_type = skirt cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 @@ -28,3 +27,4 @@ retraction_speed = 40 coasting_enable = True coasting_volume = 0.256 retraction_combing_max_distance = 5 +support_z_distance = =layer_height * 2 \ No newline at end of file diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg index 823df00100..05de605ed0 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg @@ -6,12 +6,11 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = d +quality_type = D020 material = generic_petg variant = DBE 0.40mm [values] -adhesion_type = skirt cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 @@ -27,4 +26,4 @@ initial_layer_line_width_factor = 120 retraction_speed = 40 coasting_enable = True coasting_volume = 0.256 -retraction_combing_max_distance = 5 +retraction_combing_max_distance = 5 \ No newline at end of file diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg index e4ef2787b5..c875151d6e 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg @@ -6,12 +6,11 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = e +quality_type = D030 material = generic_petg variant = DBE 0.40mm [values] -adhesion_type = skirt cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 @@ -27,4 +26,4 @@ initial_layer_line_width_factor = 120 retraction_speed = 40 coasting_enable = True coasting_volume = 0.256 -retraction_combing_max_distance = 5 +retraction_combing_max_distance = 5 \ No newline at end of file diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg index c697e52272..717f18209c 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg @@ -6,12 +6,11 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = c +quality_type = D015 material = generic_petg variant = DBE 0.60mm [values] -adhesion_type = skirt cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 @@ -28,3 +27,4 @@ retraction_speed = 40 coasting_enable = True coasting_volume = 0.256 retraction_combing_max_distance = 5 +support_z_distance = =layer_height * 2 \ No newline at end of file diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg index 7212a7b741..071eb3cbdc 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg @@ -6,12 +6,11 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = d +quality_type = D020 material = generic_petg variant = DBE 0.60mm [values] -adhesion_type = skirt cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 @@ -27,4 +26,4 @@ initial_layer_line_width_factor = 120 retraction_speed = 40 coasting_enable = True coasting_volume = 0.256 -retraction_combing_max_distance = 5 +retraction_combing_max_distance = 5 \ No newline at end of file diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg index 967c29b215..6992c651d1 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg @@ -6,12 +6,11 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = e +quality_type = D030 material = generic_petg variant = DBE 0.60mm [values] -adhesion_type = skirt cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 @@ -27,4 +26,4 @@ initial_layer_line_width_factor = 120 retraction_speed = 40 coasting_enable = True coasting_volume = 0.256 -retraction_combing_max_distance = 5 +retraction_combing_max_distance = 5 \ No newline at end of file diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg index dcc153b950..1bd5816ef7 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg @@ -6,12 +6,11 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = f +quality_type = D045 material = generic_petg variant = DBE 0.60mm [values] -adhesion_type = skirt cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 @@ -27,4 +26,4 @@ initial_layer_line_width_factor = 120 retraction_speed = 40 coasting_enable = True coasting_volume = 0.256 -retraction_combing_max_distance = 5 +retraction_combing_max_distance = 5 \ No newline at end of file diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg index 14a92499a8..46e3020186 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg @@ -6,12 +6,11 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = a +quality_type = D005 material = generic_petg variant = FBE 0.40mm [values] -adhesion_type = skirt cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 @@ -28,3 +27,4 @@ retraction_speed = 40 coasting_enable = True coasting_volume = 0.256 retraction_combing_max_distance = 5 +support_z_distance = =layer_height * 2 \ No newline at end of file diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg index a3f5d5f132..e1aa6945f7 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg @@ -6,12 +6,11 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = b +quality_type = D010 material = generic_petg variant = FBE 0.40mm [values] -adhesion_type = skirt cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 @@ -28,3 +27,4 @@ retraction_speed = 40 coasting_enable = True coasting_volume = 0.256 retraction_combing_max_distance = 5 +support_z_distance = =layer_height * 2 \ No newline at end of file diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg index c59490c64d..4e9dabf5e9 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg @@ -6,12 +6,11 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = c +quality_type = D015 material = generic_petg variant = FBE 0.40mm [values] -adhesion_type = skirt cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 @@ -28,3 +27,4 @@ retraction_speed = 40 coasting_enable = True coasting_volume = 0.256 retraction_combing_max_distance = 5 +support_z_distance = =layer_height * 2 diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg index d1b2a28cd9..fae32c174a 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg @@ -6,12 +6,11 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = d +quality_type = D020 material = generic_petg variant = FBE 0.40mm [values] -adhesion_type = skirt cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg index 6eed5112d1..680753a641 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg @@ -6,12 +6,11 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = e +quality_type = D030 material = generic_petg variant = FBE 0.40mm [values] -adhesion_type = skirt cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg index 7252acb534..3a84a831b8 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg @@ -6,12 +6,11 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = c +quality_type = D015 material = generic_petg variant = FBE 0.60mm [values] -adhesion_type = skirt cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 @@ -28,3 +27,4 @@ retraction_speed = 40 coasting_enable = True coasting_volume = 0.256 retraction_combing_max_distance = 5 +support_z_distance = =layer_height * 2 diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg index 98616359a1..e87fc2eb47 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg @@ -6,12 +6,11 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = d +quality_type = D020 material = generic_petg variant = FBE 0.60mm [values] -adhesion_type = skirt cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg index 1250b615fb..5a1bc2d4e1 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg @@ -6,12 +6,11 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = e +quality_type = D030 material = generic_petg variant = FBE 0.60mm [values] -adhesion_type = skirt cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg index 81819ea206..590d36e031 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg @@ -6,12 +6,11 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = f +quality_type = D045 material = generic_petg variant = FBE 0.60mm [values] -adhesion_type = skirt cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg old mode 100755 new mode 100644 index 5015fe0769..481f0b38d9 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg @@ -6,13 +6,14 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = a +quality_type = D005 material = generic_pla -variant = DBE 0.40mm +variant = DBE 0.25mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_fan_speed_min = 100 \ No newline at end of file +cool_fan_speed_min = 100 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg old mode 100755 new mode 100644 index 471f6cbf91..5ae792c50e --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg @@ -6,14 +6,15 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = b +quality_type = D010 material = generic_pla -variant = DBE 0.40mm +variant = DBE 0.25mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -speed_print = 55 \ No newline at end of file +speed_print = 55 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg old mode 100755 new mode 100644 index 4c35f61394..66bda9e0f9 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg @@ -6,14 +6,15 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = c +quality_type = D015 material = generic_pla -variant = DBE 0.40mm +variant = DBE 0.25mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -speed_print = 32 \ No newline at end of file +speed_print = 32 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg old mode 100755 new mode 100644 index 5015fe0769..206fb9ea00 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg @@ -6,13 +6,14 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = a +quality_type = D005 material = generic_pla variant = DBE 0.40mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_fan_speed_min = 100 \ No newline at end of file +cool_fan_speed_min = 100 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg old mode 100755 new mode 100644 index 40f8d89278..e2e260f5e6 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg @@ -6,13 +6,14 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = b +quality_type = D010 material = generic_pla variant = DBE 0.40mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_fan_speed_min = 100 \ No newline at end of file +cool_fan_speed_min = 100 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg old mode 100755 new mode 100644 index 2633726b01..ad2443f812 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg @@ -6,13 +6,14 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = c +quality_type = D015 material = generic_pla variant = DBE 0.40mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_fan_speed_min = 100 \ No newline at end of file +cool_fan_speed_min = 100 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg old mode 100755 new mode 100644 index 457f84f37f..6a33d774ea --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg @@ -6,13 +6,14 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = d +quality_type = D020 material = generic_pla variant = DBE 0.40mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_fan_speed_min = 100 \ No newline at end of file +cool_fan_speed_min = 100 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg old mode 100755 new mode 100644 index 7f78e16e0a..52c936b96f --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg @@ -6,13 +6,14 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = e +quality_type = D030 material = generic_pla variant = DBE 0.40mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_fan_speed_min = 100 \ No newline at end of file +cool_fan_speed_min = 100 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg old mode 100755 new mode 100644 index 99abeba209..ff3f7ead2c --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg @@ -6,13 +6,14 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = c +quality_type = D015 material = generic_pla variant = DBE 0.60mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_fan_speed_min = 100 \ No newline at end of file +cool_fan_speed_min = 100 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg old mode 100755 new mode 100644 index 65fd630285..48b95a696c --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg @@ -6,13 +6,14 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = d +quality_type = D020 material = generic_pla variant = DBE 0.60mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_fan_speed_min = 100 \ No newline at end of file +cool_fan_speed_min = 100 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg old mode 100755 new mode 100644 index d4bccf1206..fd4c0875ec --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg @@ -6,14 +6,15 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = e +quality_type = D030 material = generic_pla variant = DBE 0.60mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -speed_print = 65 \ No newline at end of file +speed_print = 65 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg old mode 100755 new mode 100644 index 0531b0b861..f76758a627 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg @@ -6,14 +6,15 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = f +quality_type = D045 material = generic_pla variant = DBE 0.60mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -speed_print = 45 \ No newline at end of file +speed_print = 45 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg old mode 100755 new mode 100644 index 3f5a1920e9..6a65a0563b --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg @@ -6,13 +6,14 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = a +quality_type = D005 material = generic_pla -variant = FBE 0.40mm +variant = FBE 0.25mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_fan_speed_min = 100 \ No newline at end of file +cool_fan_speed_min = 100 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg old mode 100755 new mode 100644 index 713ed18167..e418e31f9c --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg @@ -6,14 +6,15 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = b +quality_type = D010 material = generic_pla -variant = FBE 0.40mm +variant = FBE 0.25mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -speed_print = 55 \ No newline at end of file +speed_print = 55 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg old mode 100755 new mode 100644 index e7222c80fb..cc694a4eab --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg @@ -6,14 +6,15 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = c +quality_type = D015 material = generic_pla -variant = FBE 0.40mm +variant = FBE 0.25mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -speed_print = 32 \ No newline at end of file +speed_print = 32 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg old mode 100755 new mode 100644 index 3f5a1920e9..b6b3dfa89d --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg @@ -6,13 +6,14 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = a +quality_type = D005 material = generic_pla variant = FBE 0.40mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_fan_speed_min = 100 \ No newline at end of file +cool_fan_speed_min = 100 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg old mode 100755 new mode 100644 index eb7fa9ada5..4bcde06ef4 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg @@ -6,13 +6,14 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = b +quality_type = D010 material = generic_pla variant = FBE 0.40mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_fan_speed_min = 100 \ No newline at end of file +cool_fan_speed_min = 100 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg old mode 100755 new mode 100644 index 7986b6c5a2..c4fff04c30 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg @@ -6,13 +6,14 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = c +quality_type = D015 material = generic_pla variant = FBE 0.40mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_fan_speed_min = 100 \ No newline at end of file +cool_fan_speed_min = 100 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg old mode 100755 new mode 100644 index 68ac0c8251..3d6f83108e --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg @@ -6,13 +6,14 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = d +quality_type = D020 material = generic_pla variant = FBE 0.40mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_fan_speed_min = 100 \ No newline at end of file +cool_fan_speed_min = 100 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg old mode 100755 new mode 100644 index 562f5eaf96..8d17fd5d83 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg @@ -6,13 +6,14 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = e +quality_type = D030 material = generic_pla variant = FBE 0.40mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_fan_speed_min = 100 \ No newline at end of file +cool_fan_speed_min = 100 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg old mode 100755 new mode 100644 index d3661463d4..ca387efc7c --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg @@ -6,13 +6,14 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = c +quality_type = D015 material = generic_pla variant = FBE 0.60mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg old mode 100755 new mode 100644 index 357bce53b4..19e1ddad0d --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg @@ -6,13 +6,14 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = d +quality_type = D020 material = generic_pla variant = FBE 0.60mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg old mode 100755 new mode 100644 index c14aa1272d..0c4b00fda9 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg @@ -6,14 +6,15 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = e +quality_type = D030 material = generic_pla variant = FBE 0.60mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -speed_print = 65 \ No newline at end of file +speed_print = 65 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg old mode 100755 new mode 100644 index 0ca14a8773..6fe9cd5f3e --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg @@ -6,14 +6,15 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = f +quality_type = D045 material = generic_pla variant = FBE 0.60mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -speed_print = 45 \ No newline at end of file +speed_print = 45 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg old mode 100755 new mode 100644 index 56f95b4428..618d42e1ab --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg @@ -6,14 +6,15 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = d +quality_type = D020 material = generic_pla variant = V-DBE 0.80mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -speed_print = 150 \ No newline at end of file +speed_print = 150 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg old mode 100755 new mode 100644 index d7f084ffa9..7c1bc25ff0 --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg @@ -6,14 +6,15 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = e +quality_type = D030 material = generic_pla variant = V-DBE 0.80mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -speed_print = 110 \ No newline at end of file +speed_print = 110 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg old mode 100755 new mode 100644 index c2ded0f4cd..bc8846f5bd --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg @@ -6,14 +6,15 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = f +quality_type = D045 material = generic_pla variant = V-DBE 0.80mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -speed_print = 75 \ No newline at end of file +speed_print = 75 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg old mode 100755 new mode 100644 index b98657b7ee..6f81068cfe --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg @@ -6,14 +6,15 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = g +quality_type = D060 material = generic_pla variant = V-DBE 0.80mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -speed_print = 55 \ No newline at end of file +speed_print = 55 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg old mode 100755 new mode 100644 index 0871173ff6..b5d03425b7 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg @@ -6,14 +6,15 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = d +quality_type = D020 material = generic_pla variant = V-FBE 0.80mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -speed_print = 150 \ No newline at end of file +speed_print = 150 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg old mode 100755 new mode 100644 index b47d6d2dc7..b71be9c7e6 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg @@ -6,14 +6,15 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = e +quality_type = D030 material = generic_pla variant = V-FBE 0.60mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -speed_print = 110 \ No newline at end of file +speed_print = 110 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg old mode 100755 new mode 100644 index 13808dea80..7f3454557b --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg @@ -6,14 +6,15 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = f +quality_type = D045 material = generic_pla variant = V-FBE 0.80mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -speed_print = 75 \ No newline at end of file +speed_print = 75 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg old mode 100755 new mode 100644 index e82acdb324..8f39c0fc20 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg @@ -6,14 +6,15 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = g +quality_type = D060 material = generic_pla variant = V-FBE 0.80mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -speed_print = 55 \ No newline at end of file +speed_print = 55 +material_bed_temperature = 45 +default_material_print_temperature = 210 \ No newline at end of file diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg new file mode 100644 index 0000000000..8365fb3b4d --- /dev/null +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = A +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = quality +quality_type = D005 +material = generic_pva +variant = DBE 0.40mm + +[values] +brim_replaces_support = False +material_standby_temperature = 100 +prime_tower_enable = False +support_brim_enable = True +support_bottom_stair_step_height = 0 +support_bottom_stair_step_width = 0 +support_z_distance = =layer_height-layer_height +support_bottom_distance = =support_z_distance +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_offset = 3 +support_pattern = grid +support_interface_density = 100 \ No newline at end of file diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg new file mode 100644 index 0000000000..2914801cc2 --- /dev/null +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = B +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = quality +quality_type = D010 +material = generic_pva +variant = DBE 0.40mm + +[values] +brim_replaces_support = False +material_standby_temperature = 100 +prime_tower_enable = False +support_brim_enable = True +support_bottom_stair_step_height = 0 +support_bottom_stair_step_width = 0 +support_z_distance = =layer_height-layer_height +support_bottom_distance = =support_z_distance +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_offset = 3 +support_pattern = grid +support_interface_density = 100 \ No newline at end of file diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg new file mode 100644 index 0000000000..747827178b --- /dev/null +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = C +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = quality +quality_type = D015 +material = generic_pva +variant = DBE 0.40mm + +[values] +brim_replaces_support = False +material_standby_temperature = 100 +prime_tower_enable = False +support_brim_enable = True +support_bottom_stair_step_height = 0 +support_bottom_stair_step_width = 0 +support_z_distance = =layer_height-layer_height +support_bottom_distance = =support_z_distance +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_offset = 3 +support_pattern = grid +support_interface_density = 100 \ No newline at end of file diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg new file mode 100644 index 0000000000..e0ace67ed1 --- /dev/null +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = D +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = quality +quality_type = D020 +material = generic_pva +variant = DBE 0.40mm + +[values] +brim_replaces_support = False +material_standby_temperature = 100 +prime_tower_enable = False +support_brim_enable = True +support_bottom_stair_step_height = 0 +support_bottom_stair_step_width = 0 +support_z_distance = =layer_height-layer_height +support_bottom_distance = =support_z_distance +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_offset = 3 +support_pattern = grid +support_interface_density = 100 \ No newline at end of file diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg new file mode 100644 index 0000000000..b6c933f815 --- /dev/null +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = E +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = quality +quality_type = D030 +material = generic_pva +variant = DBE 0.40mm + +[values] +brim_replaces_support = False +material_standby_temperature = 100 +prime_tower_enable = False +support_brim_enable = True +support_bottom_stair_step_height = 0 +support_bottom_stair_step_width = 0 +support_z_distance = =layer_height-layer_height +support_bottom_distance = =support_z_distance +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_offset = 3 +support_pattern = grid +support_interface_density = 100 \ No newline at end of file diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg new file mode 100644 index 0000000000..856d5f1e76 --- /dev/null +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = C +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = quality +quality_type = D015 +material = generic_pva +variant = DBE 0.60mm + +[values] +brim_replaces_support = False +material_standby_temperature = 100 +prime_tower_enable = False +support_brim_enable = True +support_bottom_stair_step_height = 0 +support_bottom_stair_step_width = 0 +support_z_distance = =layer_height-layer_height +support_bottom_distance = =support_z_distance +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_offset = 3 +support_pattern = grid +support_interface_density = 100 \ No newline at end of file diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg new file mode 100644 index 0000000000..461132c453 --- /dev/null +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = D +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = quality +quality_type = D020 +material = generic_pva +variant = DBE 0.60mm + +[values] +brim_replaces_support = False +material_standby_temperature = 100 +prime_tower_enable = False +support_brim_enable = True +support_bottom_stair_step_height = 0 +support_bottom_stair_step_width = 0 +support_z_distance = =layer_height-layer_height +support_bottom_distance = =support_z_distance +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_offset = 3 +support_pattern = grid +support_interface_density = 100 \ No newline at end of file diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg new file mode 100644 index 0000000000..4737a71f75 --- /dev/null +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = E +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = quality +quality_type = D030 +material = generic_pva +variant = DBE 0.60mm + +[values] +brim_replaces_support = False +material_standby_temperature = 100 +prime_tower_enable = False +support_brim_enable = True +support_bottom_stair_step_height = 0 +support_bottom_stair_step_width = 0 +support_z_distance = =layer_height-layer_height +support_bottom_distance = =support_z_distance +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_offset = 3 +support_pattern = grid +support_interface_density = 100 \ No newline at end of file diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg new file mode 100644 index 0000000000..9bc6c0c8e5 --- /dev/null +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = F +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = quality +quality_type = D045 +material = generic_pva +variant = DBE 0.60mm + +[values] +brim_replaces_support = False +material_standby_temperature = 100 +prime_tower_enable = False +support_brim_enable = True +support_bottom_stair_step_height = 0 +support_bottom_stair_step_width = 0 +support_z_distance = =layer_height-layer_height +support_bottom_distance = =support_z_distance +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_offset = 3 +support_pattern = grid +support_interface_density = 100 \ No newline at end of file diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg new file mode 100644 index 0000000000..184dddd7bf --- /dev/null +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = A +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = quality +quality_type = D005 +material = generic_pva +variant = FBE 0.40mm + +[values] +brim_replaces_support = False +material_standby_temperature = 100 +prime_tower_enable = False +support_brim_enable = True +support_bottom_stair_step_height = 0 +support_bottom_stair_step_width = 0 +support_z_distance = =layer_height-layer_height +support_bottom_distance = =support_z_distance +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_offset = 3 +support_pattern = grid +support_interface_density = 100 \ No newline at end of file diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg new file mode 100644 index 0000000000..bc04c61c2f --- /dev/null +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = B +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = quality +quality_type = D010 +material = generic_pva +variant = FBE 0.40mm + +[values] +brim_replaces_support = False +material_standby_temperature = 100 +prime_tower_enable = False +support_brim_enable = True +support_bottom_stair_step_height = 0 +support_bottom_stair_step_width = 0 +support_z_distance = =layer_height-layer_height +support_bottom_distance = =support_z_distance +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_offset = 3 +support_pattern = grid +support_interface_density = 100 \ No newline at end of file diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg new file mode 100644 index 0000000000..30d80c2946 --- /dev/null +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg @@ -0,0 +1,27 @@ +[general] +version = 4 +name = C +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = quality +quality_type = D015 +material = generic_pva +variant = FBE 0.40mm + +[values] +brim_replaces_support = False +material_standby_temperature = 100 +prime_tower_enable = False +support_brim_enable = True +skin_overlap = 15 +support_bottom_stair_step_height = 0 +support_bottom_stair_step_width = 0 +support_z_distance = =layer_height-layer_height +support_bottom_distance = =support_z_distance +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_offset = 3 +support_pattern = grid +support_interface_density = 100 \ No newline at end of file diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg new file mode 100644 index 0000000000..f44b29db60 --- /dev/null +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = D +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = quality +quality_type = D020 +material = generic_pva +variant = FBE 0.40mm + +[values] +brim_replaces_support = False +material_standby_temperature = 100 +prime_tower_enable = False +support_brim_enable = True +support_bottom_stair_step_height = 0 +support_bottom_stair_step_width = 0 +support_z_distance = =layer_height-layer_height +support_bottom_distance = =support_z_distance +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_offset = 3 +support_pattern = grid +support_interface_density = 100 \ No newline at end of file diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg new file mode 100644 index 0000000000..14b9e80f3f --- /dev/null +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = E +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = quality +quality_type = D030 +material = generic_pva +variant = FBE 0.40mm + +[values] +brim_replaces_support = False +material_standby_temperature = 100 +prime_tower_enable = False +support_brim_enable = True +support_bottom_stair_step_height = 0 +support_bottom_stair_step_width = 0 +support_z_distance = =layer_height-layer_height +support_bottom_distance = =support_z_distance +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_offset = 3 +support_pattern = grid +support_interface_density = 100 \ No newline at end of file diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg new file mode 100644 index 0000000000..daa7d3f07a --- /dev/null +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg @@ -0,0 +1,27 @@ +[general] +version = 4 +name = C +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = quality +quality_type = D015 +material = generic_pva +variant = FBE 0.60mm + +[values] +brim_replaces_support = False +material_standby_temperature = 100 +prime_tower_enable = False +support_brim_enable = True +skin_overlap = 15 +support_bottom_stair_step_height = 0 +support_bottom_stair_step_width = 0 +support_z_distance = =layer_height-layer_height +support_bottom_distance = =support_z_distance +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_offset = 3 +support_pattern = grid +support_interface_density = 100 \ No newline at end of file diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg new file mode 100644 index 0000000000..37431d6da1 --- /dev/null +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = D +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = quality +quality_type = D020 +material = generic_pva +variant = FBE 0.60mm + +[values] +brim_replaces_support = False +material_standby_temperature = 100 +prime_tower_enable = False +support_brim_enable = True +support_bottom_stair_step_height = 0 +support_bottom_stair_step_width = 0 +support_z_distance = =layer_height-layer_height +support_bottom_distance = =support_z_distance +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_offset = 3 +support_pattern = grid +support_interface_density = 100 \ No newline at end of file diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg new file mode 100644 index 0000000000..10bf258565 --- /dev/null +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = E +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = quality +quality_type = D030 +material = generic_pva +variant = FBE 0.60mm + +[values] +brim_replaces_support = False +material_standby_temperature = 100 +prime_tower_enable = False +support_brim_enable = True +support_bottom_stair_step_height = 0 +support_bottom_stair_step_width = 0 +support_z_distance = =layer_height-layer_height +support_bottom_distance = =support_z_distance +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_offset = 3 +support_pattern = grid +support_interface_density = 100 \ No newline at end of file diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg new file mode 100644 index 0000000000..df2ee6980d --- /dev/null +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = F +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = quality +quality_type = D045 +material = generic_pva +variant = FBE 0.60mm + +[values] +brim_replaces_support = False +material_standby_temperature = 100 +prime_tower_enable = False +support_brim_enable = True +support_bottom_stair_step_height = 0 +support_bottom_stair_step_width = 0 +support_z_distance = =layer_height-layer_height +support_bottom_distance = =support_z_distance +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_offset = 3 +support_pattern = grid +support_interface_density = 100 \ No newline at end of file diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg new file mode 100644 index 0000000000..369e18d83d --- /dev/null +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = D +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = quality +quality_type = D020 +material = generic_pva +variant = V-DBE 0.80mm + +[values] +brim_replaces_support = False +material_standby_temperature = 100 +prime_tower_enable = False +support_brim_enable = True +support_bottom_stair_step_height = 0 +support_bottom_stair_step_width = 0 +support_z_distance = =layer_height-layer_height +support_bottom_distance = =support_z_distance +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_offset = 3 +support_pattern = grid +support_interface_density = 100 \ No newline at end of file diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg new file mode 100644 index 0000000000..9fafb4fa00 --- /dev/null +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = E +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = quality +quality_type = D030 +material = generic_pva +variant = V-DBE 0.80mm + +[values] +brim_replaces_support = False +material_standby_temperature = 100 +prime_tower_enable = False +support_brim_enable = True +support_bottom_stair_step_height = 0 +support_bottom_stair_step_width = 0 +support_z_distance = =layer_height-layer_height +support_bottom_distance = =support_z_distance +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_offset = 3 +support_pattern = grid +support_interface_density = 100 \ No newline at end of file diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg new file mode 100644 index 0000000000..1fca983e00 --- /dev/null +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = F +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = quality +quality_type = D045 +material = generic_pva +variant = V-DBE 0.80mm + +[values] +brim_replaces_support = False +material_standby_temperature = 100 +prime_tower_enable = False +support_brim_enable = True +support_bottom_stair_step_height = 0 +support_bottom_stair_step_width = 0 +support_z_distance = =layer_height-layer_height +support_bottom_distance = =support_z_distance +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_offset = 3 +support_pattern = grid +support_interface_density = 100 \ No newline at end of file diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg new file mode 100644 index 0000000000..88b5543b54 --- /dev/null +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = G +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = quality +quality_type = D060 +material = generic_pva +variant = V-DBE 0.80mm + +[values] +brim_replaces_support = False +material_standby_temperature = 100 +prime_tower_enable = False +support_brim_enable = True +support_bottom_stair_step_height = 0 +support_bottom_stair_step_width = 0 +support_z_distance = =layer_height-layer_height +support_bottom_distance = =support_z_distance +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_offset = 3 +support_pattern = grid +support_interface_density = 100 \ No newline at end of file diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg new file mode 100644 index 0000000000..8c0bb5e24a --- /dev/null +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = D +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = quality +quality_type = D020 +material = generic_pva +variant = V-FBE 0.80mm + +[values] +brim_replaces_support = False +material_standby_temperature = 100 +prime_tower_enable = False +support_brim_enable = True +support_bottom_stair_step_height = 0 +support_bottom_stair_step_width = 0 +support_z_distance = =layer_height-layer_height +support_bottom_distance = =support_z_distance +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_offset = 3 +support_pattern = grid +support_interface_density = 100 \ No newline at end of file diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg new file mode 100644 index 0000000000..f69d6c9b77 --- /dev/null +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = E +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = quality +quality_type = D030 +material = generic_pva +variant = V-FBE 0.60mm + +[values] +brim_replaces_support = False +material_standby_temperature = 100 +prime_tower_enable = False +support_brim_enable = True +support_bottom_stair_step_height = 0 +support_bottom_stair_step_width = 0 +support_z_distance = =layer_height-layer_height +support_bottom_distance = =support_z_distance +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_offset = 3 +support_pattern = grid +support_interface_density = 100 \ No newline at end of file diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg new file mode 100644 index 0000000000..f2411f5302 --- /dev/null +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = F +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = quality +quality_type = D045 +material = generic_pva +variant = V-FBE 0.80mm + +[values] +brim_replaces_support = False +material_standby_temperature = 100 +prime_tower_enable = False +support_brim_enable = True +support_bottom_stair_step_height = 0 +support_bottom_stair_step_width = 0 +support_z_distance = =layer_height-layer_height +support_bottom_distance = =support_z_distance +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_offset = 3 +support_pattern = grid +support_interface_density = 100 \ No newline at end of file diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg new file mode 100644 index 0000000000..ba56969557 --- /dev/null +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = G +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = quality +quality_type = D060 +material = generic_pva +variant = V-FBE 0.80mm + +[values] +brim_replaces_support = False +material_standby_temperature = 100 +prime_tower_enable = False +support_brim_enable = True +support_bottom_stair_step_height = 0 +support_bottom_stair_step_width = 0 +support_z_distance = =layer_height-layer_height +support_bottom_distance = =support_z_distance +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_offset = 3 +support_pattern = grid +support_interface_density = 100 \ No newline at end of file diff --git a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg new file mode 100644 index 0000000000..d97654dea4 --- /dev/null +++ b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = B +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = quality +quality_type = D010 +material = generic_tpu +variant = DBE 0.40mm + +[values] +cool_fan_full_at_height = =layer_height * 6 +cool_fan_speed = 100 +cool_fan_speed_max = 100 +cool_fan_speed_min = 70 +speed_print = 25 +speed_travel = 300 +acceleration_travel = 10000 +retraction_amount = 5 +retraction_hop_enabled = False +ironing_flow = 5 +jerk_ironing = 5 +speed_ironing = =speed_print +switch_extruder_retraction_amount = 10 \ No newline at end of file diff --git a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg new file mode 100644 index 0000000000..64f23c7d62 --- /dev/null +++ b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = C +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = quality +quality_type = D015 +material = generic_tpu +variant = DBE 0.40mm + +[values] +cool_fan_full_at_height = =layer_height * 6 +cool_fan_speed = 100 +cool_fan_speed_max = 100 +cool_fan_speed_min = 70 +speed_print = 25 +speed_travel = 300 +acceleration_travel = 10000 +retraction_amount = 5 +retraction_hop_enabled = False +ironing_flow = 5 +jerk_ironing = 5 +speed_ironing = =speed_print +switch_extruder_retraction_amount = 10 \ No newline at end of file diff --git a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg new file mode 100644 index 0000000000..08cd072f00 --- /dev/null +++ b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg @@ -0,0 +1,26 @@ +[general] +version = 4 +name = D +definition = deltacomb_base + +[metadata] +setting_version = 16 +type = quality +quality_type = D020 +material = generic_tpu +variant = DBE 0.40mm + +[values] +cool_fan_full_at_height = =layer_height * 6 +cool_fan_speed = 100 +cool_fan_speed_max = 100 +cool_fan_speed_min = 70 +speed_print = 25 +speed_travel = 300 +acceleration_travel = 10000 +retraction_amount = 5 +retraction_hop_enabled = False +ironing_flow = 5 +jerk_ironing = 5 +speed_ironing = =speed_print +switch_extruder_retraction_amount = 10 \ No newline at end of file diff --git a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg old mode 100755 new mode 100644 index 747495919d..cd2c882411 --- a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg @@ -6,12 +6,11 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = b +quality_type = D010 material = generic_tpu variant = FBE 0.40mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 6 cool_fan_speed = 100 cool_fan_speed_max = 100 @@ -23,4 +22,5 @@ retraction_amount = 5 retraction_hop_enabled = False ironing_flow = 5 jerk_ironing = 5 -speed_ironing = =speed_print \ No newline at end of file +speed_ironing = =speed_print +switch_extruder_retraction_amount = 10 \ No newline at end of file diff --git a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg old mode 100755 new mode 100644 index 0ab6bfb70f..2115028c60 --- a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg @@ -6,12 +6,11 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = c +quality_type = D015 material = generic_tpu variant = FBE 0.40mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 6 cool_fan_speed = 100 cool_fan_speed_max = 100 @@ -24,3 +23,4 @@ retraction_hop_enabled = False ironing_flow = 5 jerk_ironing = 5 speed_ironing = =speed_print +switch_extruder_retraction_amount = 10 \ No newline at end of file diff --git a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg old mode 100755 new mode 100644 index b4af34b48a..413026cf8b --- a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg @@ -6,12 +6,11 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = d +quality_type = D020 material = generic_tpu variant = FBE 0.40mm [values] -adhesion_type = skirt cool_fan_full_at_height = =layer_height * 6 cool_fan_speed = 100 cool_fan_speed_max = 100 @@ -24,3 +23,4 @@ retraction_hop_enabled = False ironing_flow = 5 jerk_ironing = 5 speed_ironing = =speed_print +switch_extruder_retraction_amount = 10 \ No newline at end of file diff --git a/resources/quality/deltacomb/deltacomb_global_A.inst.cfg b/resources/quality/deltacomb/deltacomb_global_A.inst.cfg old mode 100755 new mode 100644 index 3eb4966a70..403f6e8e1b --- a/resources/quality/deltacomb/deltacomb_global_A.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_A.inst.cfg @@ -6,11 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = a +quality_type = D005 weight = 1 global_quality = True [values] +adhesion_type = skirt layer_height = 0.05 layer_height_0 = 0.1 cool_fan_enabled = True @@ -20,3 +21,4 @@ cool_min_speed = 5 material_flow_layer_0 = =material_flow * 1.2 material_print_temperature_layer_0 = =default_material_print_temperature + 5 support_angle = 80 +prime_tower_brim_enable = False \ No newline at end of file diff --git a/resources/quality/deltacomb/deltacomb_global_B.inst.cfg b/resources/quality/deltacomb/deltacomb_global_B.inst.cfg old mode 100755 new mode 100644 index cbb6b72a66..865742f954 --- a/resources/quality/deltacomb/deltacomb_global_B.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_B.inst.cfg @@ -6,13 +6,13 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = b +quality_type = D010 weight = 0 global_quality = True [values] +adhesion_type = skirt layer_height = 0.1 -layer_height_0 = 0.1 cool_fan_enabled = True cool_min_layer_time = 10 cool_min_layer_time_fan_speed_max = 10 @@ -20,3 +20,4 @@ cool_min_speed = 5 material_flow_layer_0 = =material_flow * 1.2 material_print_temperature_layer_0 = =default_material_print_temperature + 5 support_angle = 65 +prime_tower_brim_enable = False \ No newline at end of file diff --git a/resources/quality/deltacomb/deltacomb_global_C.inst.cfg b/resources/quality/deltacomb/deltacomb_global_C.inst.cfg old mode 100755 new mode 100644 index 820521aa1c..28fe6c740a --- a/resources/quality/deltacomb/deltacomb_global_C.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_C.inst.cfg @@ -6,11 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = c +quality_type = D015 weight = -1 global_quality = True [values] +adhesion_type = skirt layer_height = 0.15 cool_fan_enabled = True cool_min_layer_time = 10 @@ -19,3 +20,4 @@ cool_min_speed = 5 material_flow_layer_0 = =material_flow * 1.2 material_print_temperature_layer_0 = =default_material_print_temperature + 5 support_angle = 55 +prime_tower_brim_enable = False \ No newline at end of file diff --git a/resources/quality/deltacomb/deltacomb_global_D.inst.cfg b/resources/quality/deltacomb/deltacomb_global_D.inst.cfg old mode 100755 new mode 100644 index 536d28426b..c1ea9b2efe --- a/resources/quality/deltacomb/deltacomb_global_D.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_D.inst.cfg @@ -6,11 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = d +quality_type = D020 weight = -2 global_quality = True [values] +adhesion_type = skirt layer_height = 0.2 cool_fan_enabled = True cool_min_layer_time = 10 @@ -18,3 +19,4 @@ cool_min_layer_time_fan_speed_max = 10 cool_min_speed = 5 material_flow_layer_0 = =material_flow * 1.2 material_print_temperature_layer_0 = =default_material_print_temperature + 5 +prime_tower_brim_enable = False \ No newline at end of file diff --git a/resources/quality/deltacomb/deltacomb_global_E.inst.cfg b/resources/quality/deltacomb/deltacomb_global_E.inst.cfg old mode 100755 new mode 100644 index 065e4c2193..53dfc48d82 --- a/resources/quality/deltacomb/deltacomb_global_E.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_E.inst.cfg @@ -6,11 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = e +quality_type = D030 weight = -3 global_quality = True [values] +adhesion_type = skirt layer_height = 0.3 cool_fan_enabled = True cool_min_layer_time = 10 @@ -18,3 +19,4 @@ cool_min_layer_time_fan_speed_max = 10 cool_min_speed = 5 material_flow_layer_0 = =material_flow * 1.2 material_print_temperature_layer_0 = =default_material_print_temperature + 5 +prime_tower_brim_enable = False \ No newline at end of file diff --git a/resources/quality/deltacomb/deltacomb_global_F.inst.cfg b/resources/quality/deltacomb/deltacomb_global_F.inst.cfg old mode 100755 new mode 100644 index 177d2e06bd..c5b837d750 --- a/resources/quality/deltacomb/deltacomb_global_F.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_F.inst.cfg @@ -6,11 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = f +quality_type = D045 weight = -4 global_quality = True [values] +adhesion_type = skirt layer_height = 0.45 cool_fan_enabled = True cool_min_layer_time = 10 @@ -18,3 +19,4 @@ cool_min_layer_time_fan_speed_max = 10 cool_min_speed = 5 material_flow_layer_0 = =material_flow * 1.2 material_print_temperature_layer_0 = =default_material_print_temperature + 5 +prime_tower_brim_enable = False \ No newline at end of file diff --git a/resources/quality/deltacomb/deltacomb_global_G.inst.cfg b/resources/quality/deltacomb/deltacomb_global_G.inst.cfg old mode 100755 new mode 100644 index 3d2237d7e9..ad92aa7532 --- a/resources/quality/deltacomb/deltacomb_global_G.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_G.inst.cfg @@ -6,11 +6,12 @@ definition = deltacomb_base [metadata] setting_version = 16 type = quality -quality_type = g +quality_type = D060 weight = -5 global_quality = True [values] +adhesion_type = skirt layer_height = 0.6 cool_fan_enabled = True cool_min_layer_time = 10 @@ -18,3 +19,4 @@ cool_min_layer_time_fan_speed_max = 10 cool_min_speed = 5 material_flow_layer_0 = =material_flow * 1.2 material_print_temperature_layer_0 = =default_material_print_temperature + 5 +prime_tower_brim_enable = False \ No newline at end of file diff --git a/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg old mode 100755 new mode 100644 diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg old mode 100755 new mode 100644 diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg old mode 100755 new mode 100644 diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg old mode 100755 new mode 100644 diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg old mode 100755 new mode 100644 diff --git a/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg old mode 100755 new mode 100644 diff --git a/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg old mode 100755 new mode 100644 diff --git a/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg old mode 100755 new mode 100644 diff --git a/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg old mode 100755 new mode 100644 diff --git a/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg old mode 100755 new mode 100644 diff --git a/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg old mode 100755 new mode 100644 diff --git a/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg old mode 100755 new mode 100644 diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg old mode 100755 new mode 100644 diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg old mode 100755 new mode 100644 diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg old mode 100755 new mode 100644 diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg old mode 100755 new mode 100644 diff --git a/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg old mode 100755 new mode 100644 diff --git a/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg old mode 100755 new mode 100644 diff --git a/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg old mode 100755 new mode 100644 diff --git a/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg old mode 100755 new mode 100644 diff --git a/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg old mode 100755 new mode 100644 diff --git a/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg old mode 100755 new mode 100644 diff --git a/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg old mode 100755 new mode 100644 diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg old mode 100755 new mode 100644 diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg old mode 100755 new mode 100644 diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg old mode 100755 new mode 100644 diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg old mode 100755 new mode 100644 diff --git a/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg old mode 100755 new mode 100644 diff --git a/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg old mode 100755 new mode 100644 diff --git a/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg old mode 100755 new mode 100644