diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index e4c2d2cbd1..f35b53a84d 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -258,87 +258,11 @@ class MakerbotWriter(MeshWriter): meta["preferences"] = dict() bounds = application.getBuildVolume().getBoundingBox() - intent = CuraApplication.getInstance().getIntentManager().currentIntentCategory meta["preferences"]["instance0"] = { "machineBounds": [bounds.right, bounds.front, bounds.left, bounds.back] if bounds is not None else None, - "printMode": intent + "printMode": CuraApplication.getInstance().getIntentManager().currentIntentCategory, } - if file_format == "application/x-makerbot": - accel_overrides = meta["accel_overrides"] = {} - if intent in ['highspeed', 'highspeedsolid']: - accel_overrides['do_input_shaping'] = True - accel_overrides['do_corner_rounding'] = True - bead_mode_overrides = accel_overrides["bead_mode"] = {} - - accel_enabled = global_stack.getProperty('acceleration_enabled', 'value') - - if accel_enabled: - global_accel_setting = global_stack.getProperty('acceleration_print', 'value') - accel_overrides["rate_mm_per_s_sq"] = { - "x": global_accel_setting, - "y": global_accel_setting - } - - if global_stack.getProperty('acceleration_travel_enabled', 'value'): - travel_accel_setting = global_stack.getProperty('acceleration_travel', 'value') - bead_mode_overrides['Travel Move'] = { - "rate_mm_per_s_sq": { - "x": travel_accel_setting, - "y": travel_accel_setting - } - } - - jerk_enabled = global_stack.getProperty('jerk_enabled', 'value') - if jerk_enabled: - global_jerk_setting = global_stack.getProperty('jerk_print', 'value') - accel_overrides["max_speed_change_mm_per_s"] = { - "x": global_jerk_setting, - "y": global_jerk_setting - } - - if global_stack.getProperty('jerk_travel_enabled', 'value'): - travel_jerk_setting = global_stack.getProperty('jerk_travel', 'value') - if 'Travel Move' not in bead_mode_overrides: - bead_mode_overrides['Travel Move' ] = {} - bead_mode_overrides['Travel Move'].update({ - "max_speed_change_mm_per_s": { - "x": travel_jerk_setting, - "y": travel_jerk_setting - } - }) - - - # Get bead mode settings per extruder - available_bead_modes = { - "infill": "FILL", - "prime_tower": "PRIME_TOWER", - "roofing": "TOP_SURFACE", - "support_infill": "SUPPORT", - "support_interface": "SUPPORT_INTERFACE", - "wall_0": "WALL_OUTER", - "wall_x": "WALL_INNER", - "skirt_brim": "SKIRT" - } - for idx, extruder in enumerate(extruders): - for bead_mode_setting, bead_mode_tag in available_bead_modes.items(): - ext_specific_tag = "%s_%s" % (bead_mode_tag, idx) - if accel_enabled or jerk_enabled: - bead_mode_overrides[ext_specific_tag] = {} - - if accel_enabled: - accel_val = extruder.getProperty('acceleration_%s' % bead_mode_setting, 'value') - bead_mode_overrides[ext_specific_tag]["rate_mm_per_s_sq"] = { - "x": accel_val, - "y": accel_val - } - if jerk_enabled: - jerk_val = extruder.getProperty('jerk_%s' % bead_mode_setting, 'value') - bead_mode_overrides[ext_specific_tag][ "max_speed_change_mm_per_s"] = { - "x": jerk_val, - "y": jerk_val - } - meta["miracle_config"] = {"gaggles": {"instance0": {}}} version_info = dict() diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json index c7dfac8aef..14d3a08818 100644 --- a/resources/definitions/ultimaker_method_base.def.json +++ b/resources/definitions/ultimaker_method_base.def.json @@ -33,14 +33,12 @@ { "acceleration_enabled": { - "enabled": true, + "enabled": false, "value": true }, "acceleration_infill": { - "maximum_value": 3500, - "minimum_value": 200, - "minimum_value_warning": 750, + "enabled": false, "value": "acceleration_print" }, "acceleration_layer_0": @@ -50,18 +48,12 @@ }, "acceleration_prime_tower": { - "enabled": "acceleration_enabled and prime_tower_enable and extruders_enabled_count > 1", - "maximum_value": 3500, - "minimum_value": 200, - "minimum_value_warning": 750, + "enabled": false, "value": "acceleration_print" }, "acceleration_print": { - "enabled": "acceleration_enabled", - "maximum_value": 3500, - "minimum_value": 200, - "minimum_value_warning": 750, + "enabled": false, "value": 800 }, "acceleration_print_layer_0": @@ -71,49 +63,33 @@ }, "acceleration_roofing": { - "maximum_value": 3500, - "minimum_value": 200, - "minimum_value_warning": 750, + "enabled": false, "value": "acceleration_print" }, - "acceleration_skirt_brim": - { - "enabled": "acceleration_enabled and (adhesion_type == 'skirt' or adhesion_type == 'brim')", - "maximum_value": 3500, - "minimum_value": 200, - "minimum_value_warning": 750, - "value": 800 - }, "acceleration_support": { - "maximum_value": 3500, - "minimum_value": 200, - "minimum_value_warning": 750, + "enabled": false, "value": "acceleration_print" }, "acceleration_support_bottom": { "enabled": false, - "value": "acceleration_support_interface" + "value": "acceleration_print" }, "acceleration_support_infill": { - "maximum_value": 3500, - "minimum_value": 200, - "minimum_value_warning": 750, - "value": "acceleration_support" + "enabled": false, + "value": "acceleration_print" }, "acceleration_support_interface": { - "maximum_value": 3500, - "minimum_value": 200, - "minimum_value_warning": 750, - "value": "acceleration_support" + "enabled": false, + "value": "acceleration_print" }, "acceleration_support_roof": { "enabled": false, - "value": "acceleration_support_interface" + "value": "acceleration_print" }, "acceleration_topbottom": { @@ -122,10 +98,7 @@ }, "acceleration_travel": { - "enabled": "acceleration_enabled", - "maximum_value": 5000, - "minimum_value": 200, - "minimum_value_warning": 750, + "enabled": false, "value": 5000 }, "acceleration_travel_enabled": @@ -140,37 +113,28 @@ }, "acceleration_wall": { - "enabled": "acceleration_enabled", - "maximum_value": 3500, - "minimum_value": 200, - "minimum_value_warning": 750, + "enabled": false, "value": "acceleration_print" }, "acceleration_wall_0": { - "enabled": "acceleration_enabled", - "maximum_value": 3500, - "minimum_value": 200, - "minimum_value_warning": 750, - "value": "acceleration_wall" + "enabled": false, + "value": "acceleration_print" }, "acceleration_wall_0_roofing": { "enabled": false, - "value": "acceleration_wall" + "value": "acceleration_print" }, "acceleration_wall_x": { - "enabled": "acceleration_enabled", - "maximum_value": 3500, - "minimum_value": 200, - "minimum_value_warning": 750, - "value": "acceleration_wall" + "enabled": false, + "value": "acceleration_print" }, "acceleration_wall_x_roofing": { "enabled": false, - "value": "acceleration_wall" + "value": "acceleration_print" }, "adhesion_extruder_nr": { @@ -239,15 +203,12 @@ "inset_direction": { "value": "'inside_out'" }, "jerk_enabled": { - "enabled": true, + "enabled": false, "value": true }, "jerk_infill": { - "enabled": "jerk_enabled", - "maximum_value": 35, - "minimum_value": 5, - "minimum_value_warning": 12, + "enabled": false, "value": "jerk_print" }, "jerk_layer_0": @@ -257,19 +218,13 @@ }, "jerk_prime_tower": { - "enabled": "jerk_enabled and prime_tower_enable and extruders_enabled_count > 1", - "maximum_value": 35, - "minimum_value": 5, - "minimum_value_warning": 12, + "enabled": false, "value": "jerk_print" }, "jerk_print": { - "enabled": "jerk_enabled", - "maximum_value": 35, - "minimum_value": 5, - "minimum_value_warning": 12, - "value": 12.5 + "enabled": false, + "value": 6.25 }, "jerk_print_layer_0": { @@ -278,50 +233,33 @@ }, "jerk_roofing": { - "enabled": "jerk_enabled", - "maximum_value": 35, - "minimum_value": 5, - "minimum_value_warning": 12, + "enabled": false, "value": "jerk_print" }, - "jerk_skirt_brim": - { - "enabled": "jerk_enabled and (adhesion_type == 'brim' or adhesion_type == 'skirt')", - "value": 12.5 - }, "jerk_support": { - "enabled": "jerk_enabled and support_enable", - "maximum_value": 35, - "minimum_value": 5, - "minimum_value_warning": 12, + "enabled": false, "value": "jerk_print" }, "jerk_support_bottom": { "enabled": false, - "value": "jerk_support_interface" + "value": "jerk_print" }, "jerk_support_infill": { - "enabled": "jerk_enabled and support_enable", - "maximum_value": 35, - "minimum_value": 5, - "minimum_value_warning": 12, - "value": "jerk_support" + "enabled": false, + "value": "jerk_print" }, "jerk_support_interface": { - "enabled": "jerk_enabled and support_enable", - "maximum_value": 35, - "minimum_value": 5, - "minimum_value_warning": 12, - "value": "jerk_support" + "enabled": false, + "value": "jerk_print" }, "jerk_support_roof": { "enabled": false, - "value": "jerk_support_interface" + "value": "jerk_print" }, "jerk_topbottom": { @@ -330,11 +268,8 @@ }, "jerk_travel": { - "enabled": "jerk_enabled", - "maximum_value": 35, - "minimum_value": 5, - "minimum_value_warning": 12, - "value": 12.5 + "enabled": false, + "value": "jerk_print" }, "jerk_travel_enabled": { @@ -348,18 +283,12 @@ }, "jerk_wall": { - "enabled": "jerk_enabled", - "maximum_value": 35, - "minimum_value": 5, - "minimum_value_warning": 12, + "enabled": false, "value": "jerk_print" }, "jerk_wall_0": { - "enabled": "jerk_enabled", - "maximum_value": 35, - "minimum_value": 5, - "minimum_value_warning": 12, + "enabled": false, "value": "jerk_print" }, "jerk_wall_0_roofing": @@ -369,10 +298,7 @@ }, "jerk_wall_x": { - "enabled": "jerk_enabled", - "maximum_value": 35, - "minimum_value": 5, - "minimum_value_warning": 12, + "enabled": false, "value": "jerk_print" }, "jerk_wall_x_roofing": @@ -391,7 +317,7 @@ "machine_heated_bed": { "default_value": false }, "machine_heated_build_volume": { "default_value": true }, "machine_height": { "default_value": 196.749 }, - "machine_min_cool_heat_time_window": { "value": 15 }, + "machine_min_cool_heat_time_window": { "value": 0 }, "machine_name": { "default_value": "UltiMaker Method" }, "machine_nozzle_cool_down_speed": { "value": 0.8 }, "machine_nozzle_heat_up_speed": { "value": 3.5 }, @@ -591,86 +517,16 @@ "skirt_height": { "value": 3 }, "small_skin_width": { "value": 4 }, "speed_equalize_flow_width_factor": { "value": 0 }, - "speed_infill": - { - "maximum_value": 350, - "maximum_value_warning": 325 - }, - "speed_prime_tower": - { - "maximum_value": 250, - "maximum_value_warning": 200, - "value": "speed_topbottom" - }, - "speed_print": - { - "maximum_value": 350, - "maximum_value_warning": 325, - "value": 50 - }, - "speed_roofing": - { - "maximum_value": 300, - "maximum_value_warning": 275, - "value": "speed_wall_0" - }, - "speed_support": - { - "maximum_value": 350, - "maximum_value_warning": 325, - "value": "speed_wall" - }, - "speed_support_infill": - { - "maximum_value": 350, - "maximum_value_warning": 325 - }, - "speed_support_interface": - { - "maximum_value": 260, - "maximum_value_warning": 255, - "value": "speed_topbottom" - }, - "speed_support_roof": - { - "maximum_value": 260, - "maximum_value_warning": 255 - }, - "speed_topbottom": - { - "maximum_value": 260, - "maximum_value_warning": 255, - "value": "speed_wall" - }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_print": { "value": 50 }, + "speed_roofing": { "value": "speed_wall_0" }, + "speed_support": { "value": "speed_wall" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_topbottom": { "value": "speed_wall" }, "speed_travel": { "value": 250 }, - "speed_wall": - { - "maximum_value": 260, - "maximum_value_warning": 255, - "value": "speed_print * 40/50" - }, - "speed_wall_0": - { - "maximum_value": 260, - "maximum_value_warning": 255, - "value": "speed_wall * 30/40" - }, - "speed_wall_0_roofing": - { - "maximum_value": 260, - "maximum_value_warning": 255 - }, - "speed_wall_x": - { - "maximum_value": 260, - "maximum_value_warning": 255, - "value": "speed_wall" - }, - "speed_wall_x_roofing": - { - "maximum_value": 260, - "maximum_value_warning": 255 - }, + "speed_wall": { "value": "speed_print * 40/50" }, + "speed_wall_0": { "value": "speed_wall * 30/40" }, + "speed_wall_x": { "value": "speed_wall" }, "support_angle": { "value": 40 }, "support_bottom_height": { "value": "2*support_infill_sparse_thickness" }, "support_bottom_line_width": diff --git a/resources/intent/ultimaker_method/um_method_1a_um-pla-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_method/um_method_1a_um-pla-175_0.2mm_highspeed.inst.cfg deleted file mode 100644 index d94d81975a..0000000000 --- a/resources/intent/ultimaker_method/um_method_1a_um-pla-175_0.2mm_highspeed.inst.cfg +++ /dev/null @@ -1,34 +0,0 @@ -[general] -definition = ultimaker_method -name = High Speed -version = 4 - -[metadata] -intent_category = highspeed -is_experimental = True -material = ultimaker_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1A - -[values] -acceleration_print = 3500 -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_pattern = zigzag -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 - diff --git a/resources/intent/ultimaker_method/um_method_1a_um-pla-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_method/um_method_1a_um-pla-175_0.2mm_highspeedsolid.inst.cfg deleted file mode 100644 index 4d07d03ceb..0000000000 --- a/resources/intent/ultimaker_method/um_method_1a_um-pla-175_0.2mm_highspeedsolid.inst.cfg +++ /dev/null @@ -1,41 +0,0 @@ -[general] -definition = ultimaker_method -name = High Speed Solid -version = 4 - -[metadata] -intent_category = highspeedsolid -is_experimental = True -material = ultimaker_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1A - -[values] -acceleration_print = 3500 -bottom_thickness = =top_bottom_thickness -bridge_wall_speed = 300 -build_volume_temperature = 47 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_angles = [45,135] -infill_material_flow = 97 -infill_pattern = zigzag -infill_sparse_density = 99 -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 -top_bottom_thickness = =layer_height * 2 -top_thickness = =top_bottom_thickness - diff --git a/resources/intent/ultimaker_method/um_method_1a_um-tough-pla-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_method/um_method_1a_um-tough-pla-175_0.2mm_highspeed.inst.cfg deleted file mode 100644 index 0a99efa15f..0000000000 --- a/resources/intent/ultimaker_method/um_method_1a_um-tough-pla-175_0.2mm_highspeed.inst.cfg +++ /dev/null @@ -1,34 +0,0 @@ -[general] -definition = ultimaker_method -name = High Speed -version = 4 - -[metadata] -intent_category = highspeed -is_experimental = True -material = ultimaker_tough_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1A - -[values] -acceleration_print = 3500 -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_pattern = zigzag -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 - diff --git a/resources/intent/ultimaker_method/um_method_1a_um-tough-pla-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_method/um_method_1a_um-tough-pla-175_0.2mm_highspeedsolid.inst.cfg deleted file mode 100644 index 91578dbbab..0000000000 --- a/resources/intent/ultimaker_method/um_method_1a_um-tough-pla-175_0.2mm_highspeedsolid.inst.cfg +++ /dev/null @@ -1,41 +0,0 @@ -[general] -definition = ultimaker_method -name = High Speed Solid -version = 4 - -[metadata] -intent_category = highspeedsolid -is_experimental = True -material = ultimaker_tough_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1A - -[values] -acceleration_print = 3500 -bottom_thickness = =top_bottom_thickness -bridge_wall_speed = 300 -build_volume_temperature = 47 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_angles = [45,135] -infill_material_flow = 97 -infill_pattern = zigzag -infill_sparse_density = 99 -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 -top_bottom_thickness = =layer_height * 2 -top_thickness = =top_bottom_thickness - diff --git a/resources/intent/ultimaker_method/um_method_1c_um-pla-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_method/um_method_1c_um-pla-175_0.2mm_highspeed.inst.cfg deleted file mode 100644 index 9027a2f4ab..0000000000 --- a/resources/intent/ultimaker_method/um_method_1c_um-pla-175_0.2mm_highspeed.inst.cfg +++ /dev/null @@ -1,34 +0,0 @@ -[general] -definition = ultimaker_method -name = High Speed -version = 4 - -[metadata] -intent_category = highspeed -is_experimental = True -material = ultimaker_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1C - -[values] -acceleration_print = 3500 -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_pattern = zigzag -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 - diff --git a/resources/intent/ultimaker_method/um_method_1c_um-pla-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_method/um_method_1c_um-pla-175_0.2mm_highspeedsolid.inst.cfg deleted file mode 100644 index ed738f50b0..0000000000 --- a/resources/intent/ultimaker_method/um_method_1c_um-pla-175_0.2mm_highspeedsolid.inst.cfg +++ /dev/null @@ -1,41 +0,0 @@ -[general] -definition = ultimaker_method -name = High Speed Solid -version = 4 - -[metadata] -intent_category = highspeedsolid -is_experimental = True -material = ultimaker_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1C - -[values] -acceleration_print = 3500 -bottom_thickness = =top_bottom_thickness -bridge_wall_speed = 300 -build_volume_temperature = 47 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_angles = [45,135] -infill_material_flow = 97 -infill_pattern = zigzag -infill_sparse_density = 99 -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 -top_bottom_thickness = =layer_height * 2 -top_thickness = =top_bottom_thickness - diff --git a/resources/intent/ultimaker_method/um_method_1c_um-tough-pla-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_method/um_method_1c_um-tough-pla-175_0.2mm_highspeed.inst.cfg deleted file mode 100644 index 3687fd1e2c..0000000000 --- a/resources/intent/ultimaker_method/um_method_1c_um-tough-pla-175_0.2mm_highspeed.inst.cfg +++ /dev/null @@ -1,34 +0,0 @@ -[general] -definition = ultimaker_method -name = High Speed -version = 4 - -[metadata] -intent_category = highspeed -is_experimental = True -material = ultimaker_tough_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1C - -[values] -acceleration_print = 3500 -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_pattern = zigzag -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 - diff --git a/resources/intent/ultimaker_method/um_method_1c_um-tough-pla-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_method/um_method_1c_um-tough-pla-175_0.2mm_highspeedsolid.inst.cfg deleted file mode 100644 index 03bcd00b03..0000000000 --- a/resources/intent/ultimaker_method/um_method_1c_um-tough-pla-175_0.2mm_highspeedsolid.inst.cfg +++ /dev/null @@ -1,41 +0,0 @@ -[general] -definition = ultimaker_method -name = High Speed Solid -version = 4 - -[metadata] -intent_category = highspeedsolid -is_experimental = True -material = ultimaker_tough_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1C - -[values] -acceleration_print = 3500 -bottom_thickness = =top_bottom_thickness -bridge_wall_speed = 300 -build_volume_temperature = 47 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_angles = [45,135] -infill_material_flow = 97 -infill_pattern = zigzag -infill_sparse_density = 99 -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 -top_bottom_thickness = =layer_height * 2 -top_thickness = =top_bottom_thickness - diff --git a/resources/intent/ultimaker_method/um_method_labs_um-pla-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_method/um_method_labs_um-pla-175_0.2mm_highspeed.inst.cfg deleted file mode 100644 index 25fe675396..0000000000 --- a/resources/intent/ultimaker_method/um_method_labs_um-pla-175_0.2mm_highspeed.inst.cfg +++ /dev/null @@ -1,34 +0,0 @@ -[general] -definition = ultimaker_method -name = High Speed -version = 4 - -[metadata] -intent_category = highspeed -is_experimental = True -material = ultimaker_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = LABS - -[values] -acceleration_print = 3500 -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_pattern = zigzag -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 - diff --git a/resources/intent/ultimaker_method/um_method_labs_um-pla-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_method/um_method_labs_um-pla-175_0.2mm_highspeedsolid.inst.cfg deleted file mode 100644 index 52831d4540..0000000000 --- a/resources/intent/ultimaker_method/um_method_labs_um-pla-175_0.2mm_highspeedsolid.inst.cfg +++ /dev/null @@ -1,41 +0,0 @@ -[general] -definition = ultimaker_method -name = High Speed Solid -version = 4 - -[metadata] -intent_category = highspeedsolid -is_experimental = True -material = ultimaker_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = LABS - -[values] -acceleration_print = 3500 -bottom_thickness = =top_bottom_thickness -bridge_wall_speed = 300 -build_volume_temperature = 47 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_angles = [45,135] -infill_material_flow = 97 -infill_pattern = zigzag -infill_sparse_density = 99 -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 -top_bottom_thickness = =layer_height * 2 -top_thickness = =top_bottom_thickness - diff --git a/resources/intent/ultimaker_method/um_method_labs_um-tough-pla-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_method/um_method_labs_um-tough-pla-175_0.2mm_highspeed.inst.cfg deleted file mode 100644 index 4e703a29f1..0000000000 --- a/resources/intent/ultimaker_method/um_method_labs_um-tough-pla-175_0.2mm_highspeed.inst.cfg +++ /dev/null @@ -1,34 +0,0 @@ -[general] -definition = ultimaker_method -name = High Speed -version = 4 - -[metadata] -intent_category = highspeed -is_experimental = True -material = ultimaker_tough_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = LABS - -[values] -acceleration_print = 3500 -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_pattern = zigzag -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 - diff --git a/resources/intent/ultimaker_method/um_method_labs_um-tough-pla-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_method/um_method_labs_um-tough-pla-175_0.2mm_highspeedsolid.inst.cfg deleted file mode 100644 index 989b134ee2..0000000000 --- a/resources/intent/ultimaker_method/um_method_labs_um-tough-pla-175_0.2mm_highspeedsolid.inst.cfg +++ /dev/null @@ -1,41 +0,0 @@ -[general] -definition = ultimaker_method -name = High Speed Solid -version = 4 - -[metadata] -intent_category = highspeedsolid -is_experimental = True -material = ultimaker_tough_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = LABS - -[values] -acceleration_print = 3500 -bottom_thickness = =top_bottom_thickness -bridge_wall_speed = 300 -build_volume_temperature = 47 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_angles = [45,135] -infill_material_flow = 97 -infill_pattern = zigzag -infill_sparse_density = 99 -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 -top_bottom_thickness = =layer_height * 2 -top_thickness = =top_bottom_thickness - diff --git a/resources/intent/ultimaker_methodx/um_methodx_1a_um-pla-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1a_um-pla-175_0.2mm_highspeed.inst.cfg deleted file mode 100644 index fd0a3af0cb..0000000000 --- a/resources/intent/ultimaker_methodx/um_methodx_1a_um-pla-175_0.2mm_highspeed.inst.cfg +++ /dev/null @@ -1,34 +0,0 @@ -[general] -definition = ultimaker_methodx -name = High Speed -version = 4 - -[metadata] -intent_category = highspeed -is_experimental = True -material = ultimaker_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1A - -[values] -acceleration_print = 3500 -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_pattern = zigzag -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 - diff --git a/resources/intent/ultimaker_methodx/um_methodx_1a_um-pla-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1a_um-pla-175_0.2mm_highspeedsolid.inst.cfg deleted file mode 100644 index d9fbea6879..0000000000 --- a/resources/intent/ultimaker_methodx/um_methodx_1a_um-pla-175_0.2mm_highspeedsolid.inst.cfg +++ /dev/null @@ -1,41 +0,0 @@ -[general] -definition = ultimaker_methodx -name = High Speed Solid -version = 4 - -[metadata] -intent_category = highspeedsolid -is_experimental = True -material = ultimaker_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1A - -[values] -acceleration_print = 3500 -bottom_thickness = =top_bottom_thickness -bridge_wall_speed = 300 -build_volume_temperature = 47 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_angles = [45,135] -infill_material_flow = 97 -infill_pattern = zigzag -infill_sparse_density = 99 -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 -top_bottom_thickness = =layer_height * 2 -top_thickness = =top_bottom_thickness - diff --git a/resources/intent/ultimaker_methodx/um_methodx_1a_um-tough-pla-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1a_um-tough-pla-175_0.2mm_highspeed.inst.cfg deleted file mode 100644 index 95c145c410..0000000000 --- a/resources/intent/ultimaker_methodx/um_methodx_1a_um-tough-pla-175_0.2mm_highspeed.inst.cfg +++ /dev/null @@ -1,34 +0,0 @@ -[general] -definition = ultimaker_methodx -name = High Speed -version = 4 - -[metadata] -intent_category = highspeed -is_experimental = True -material = ultimaker_tough_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1A - -[values] -acceleration_print = 3500 -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_pattern = zigzag -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 - diff --git a/resources/intent/ultimaker_methodx/um_methodx_1a_um-tough-pla-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1a_um-tough-pla-175_0.2mm_highspeedsolid.inst.cfg deleted file mode 100644 index 70553ab775..0000000000 --- a/resources/intent/ultimaker_methodx/um_methodx_1a_um-tough-pla-175_0.2mm_highspeedsolid.inst.cfg +++ /dev/null @@ -1,41 +0,0 @@ -[general] -definition = ultimaker_methodx -name = High Speed Solid -version = 4 - -[metadata] -intent_category = highspeedsolid -is_experimental = True -material = ultimaker_tough_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1A - -[values] -acceleration_print = 3500 -bottom_thickness = =top_bottom_thickness -bridge_wall_speed = 300 -build_volume_temperature = 47 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_angles = [45,135] -infill_material_flow = 97 -infill_pattern = zigzag -infill_sparse_density = 99 -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 -top_bottom_thickness = =layer_height * 2 -top_thickness = =top_bottom_thickness - diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_highspeed.inst.cfg deleted file mode 100644 index f5a00d9db1..0000000000 --- a/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_highspeed.inst.cfg +++ /dev/null @@ -1,32 +0,0 @@ -[general] -definition = ultimaker_methodx -name = High Speed -version = 4 - -[metadata] -intent_category = highspeed -is_experimental = True -material = ultimaker_absr_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1C - -[values] -acceleration_print = 3500 -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -cool_min_temperature = 245.0 -infill_pattern = zigzag -jerk_print = 35 -speed_layer_0 = 55 -speed_print = 300 -speed_support = 100 -speed_support_interface = 75 -speed_travel = 500 -speed_travel_layer_0 = 250 -speed_wall_0 = 40 -support_pattern = zigzag - diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_highspeedsolid.inst.cfg deleted file mode 100644 index 2e098b3a0b..0000000000 --- a/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_highspeedsolid.inst.cfg +++ /dev/null @@ -1,38 +0,0 @@ -[general] -definition = ultimaker_methodx -name = High Speed Solid -version = 4 - -[metadata] -intent_category = highspeedsolid -is_experimental = True -material = ultimaker_absr_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1C - -[values] -acceleration_print = 3500 -bottom_thickness = =top_bottom_thickness -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -cool_min_temperature = 245.0 -infill_angles = [45,135] -infill_material_flow = 97 -infill_pattern = zigzag -infill_sparse_density = 99 -jerk_print = 35 -speed_layer_0 = 55 -speed_print = 300 -speed_support = 100 -speed_support_interface = 75 -speed_travel = 500 -speed_travel_layer_0 = 250 -speed_wall_0 = 40 -support_pattern = zigzag -top_bottom_thickness = =layer_height * 2 -top_thickness = =top_bottom_thickness - diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-pla-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-pla-175_0.2mm_highspeed.inst.cfg deleted file mode 100644 index 36e67bf91f..0000000000 --- a/resources/intent/ultimaker_methodx/um_methodx_1c_um-pla-175_0.2mm_highspeed.inst.cfg +++ /dev/null @@ -1,34 +0,0 @@ -[general] -definition = ultimaker_methodx -name = High Speed -version = 4 - -[metadata] -intent_category = highspeed -is_experimental = True -material = ultimaker_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1C - -[values] -acceleration_print = 3500 -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_pattern = zigzag -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 - diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-pla-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-pla-175_0.2mm_highspeedsolid.inst.cfg deleted file mode 100644 index 9a8c84f118..0000000000 --- a/resources/intent/ultimaker_methodx/um_methodx_1c_um-pla-175_0.2mm_highspeedsolid.inst.cfg +++ /dev/null @@ -1,41 +0,0 @@ -[general] -definition = ultimaker_methodx -name = High Speed Solid -version = 4 - -[metadata] -intent_category = highspeedsolid -is_experimental = True -material = ultimaker_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1C - -[values] -acceleration_print = 3500 -bottom_thickness = =top_bottom_thickness -bridge_wall_speed = 300 -build_volume_temperature = 47 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_angles = [45,135] -infill_material_flow = 97 -infill_pattern = zigzag -infill_sparse_density = 99 -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 -top_bottom_thickness = =layer_height * 2 -top_thickness = =top_bottom_thickness - diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-tough-pla-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-tough-pla-175_0.2mm_highspeed.inst.cfg deleted file mode 100644 index c3e0d3c20e..0000000000 --- a/resources/intent/ultimaker_methodx/um_methodx_1c_um-tough-pla-175_0.2mm_highspeed.inst.cfg +++ /dev/null @@ -1,34 +0,0 @@ -[general] -definition = ultimaker_methodx -name = High Speed -version = 4 - -[metadata] -intent_category = highspeed -is_experimental = True -material = ultimaker_tough_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1C - -[values] -acceleration_print = 3500 -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_pattern = zigzag -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 - diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-tough-pla-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-tough-pla-175_0.2mm_highspeedsolid.inst.cfg deleted file mode 100644 index f9478920c8..0000000000 --- a/resources/intent/ultimaker_methodx/um_methodx_1c_um-tough-pla-175_0.2mm_highspeedsolid.inst.cfg +++ /dev/null @@ -1,41 +0,0 @@ -[general] -definition = ultimaker_methodx -name = High Speed Solid -version = 4 - -[metadata] -intent_category = highspeedsolid -is_experimental = True -material = ultimaker_tough_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1C - -[values] -acceleration_print = 3500 -bottom_thickness = =top_bottom_thickness -bridge_wall_speed = 300 -build_volume_temperature = 47 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_angles = [45,135] -infill_material_flow = 97 -infill_pattern = zigzag -infill_sparse_density = 99 -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 -top_bottom_thickness = =layer_height * 2 -top_thickness = =top_bottom_thickness - diff --git a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_highspeed.inst.cfg deleted file mode 100644 index 0db1a5b803..0000000000 --- a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_highspeed.inst.cfg +++ /dev/null @@ -1,32 +0,0 @@ -[general] -definition = ultimaker_methodx -name = High Speed -version = 4 - -[metadata] -intent_category = highspeed -is_experimental = True -material = ultimaker_absr_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1XA - -[values] -acceleration_print = 3500 -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -cool_min_temperature = 245.0 -infill_pattern = zigzag -jerk_print = 35 -speed_layer_0 = 55 -speed_print = 300 -speed_support = 100 -speed_support_interface = 75 -speed_travel = 500 -speed_travel_layer_0 = 250 -speed_wall_0 = 40 -support_pattern = zigzag - diff --git a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_highspeedsolid.inst.cfg deleted file mode 100644 index b6ff6e1ebd..0000000000 --- a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_highspeedsolid.inst.cfg +++ /dev/null @@ -1,38 +0,0 @@ -[general] -definition = ultimaker_methodx -name = High Speed Solid -version = 4 - -[metadata] -intent_category = highspeedsolid -is_experimental = True -material = ultimaker_absr_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1XA - -[values] -acceleration_print = 3500 -bottom_thickness = =top_bottom_thickness -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -cool_min_temperature = 245.0 -infill_angles = [45,135] -infill_material_flow = 97 -infill_pattern = zigzag -infill_sparse_density = 99 -jerk_print = 35 -speed_layer_0 = 55 -speed_print = 300 -speed_support = 100 -speed_support_interface = 75 -speed_travel = 500 -speed_travel_layer_0 = 250 -speed_wall_0 = 40 -support_pattern = zigzag -top_bottom_thickness = =layer_height * 2 -top_thickness = =top_bottom_thickness - diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_highspeed.inst.cfg deleted file mode 100644 index 4b42af13fa..0000000000 --- a/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_highspeed.inst.cfg +++ /dev/null @@ -1,32 +0,0 @@ -[general] -definition = ultimaker_methodx -name = High Speed -version = 4 - -[metadata] -intent_category = highspeed -is_experimental = True -material = ultimaker_absr_175 -quality_type = draft -setting_version = 25 -type = intent -variant = LABS - -[values] -acceleration_print = 3500 -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -cool_min_temperature = 245.0 -infill_pattern = zigzag -jerk_print = 35 -speed_layer_0 = 55 -speed_print = 300 -speed_support = 100 -speed_support_interface = 75 -speed_travel = 500 -speed_travel_layer_0 = 250 -speed_wall_0 = 40 -support_pattern = zigzag - diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_highspeedsolid.inst.cfg deleted file mode 100644 index 69a50a831b..0000000000 --- a/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_highspeedsolid.inst.cfg +++ /dev/null @@ -1,38 +0,0 @@ -[general] -definition = ultimaker_methodx -name = High Speed Solid -version = 4 - -[metadata] -intent_category = highspeedsolid -is_experimental = True -material = ultimaker_absr_175 -quality_type = draft -setting_version = 25 -type = intent -variant = LABS - -[values] -acceleration_print = 3500 -bottom_thickness = =top_bottom_thickness -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -cool_min_temperature = 245.0 -infill_angles = [45,135] -infill_material_flow = 97 -infill_pattern = zigzag -infill_sparse_density = 99 -jerk_print = 35 -speed_layer_0 = 55 -speed_print = 300 -speed_support = 100 -speed_support_interface = 75 -speed_travel = 500 -speed_travel_layer_0 = 250 -speed_wall_0 = 40 -support_pattern = zigzag -top_bottom_thickness = =layer_height * 2 -top_thickness = =top_bottom_thickness - diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-pla-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-pla-175_0.2mm_highspeed.inst.cfg deleted file mode 100644 index 1c0d1aea28..0000000000 --- a/resources/intent/ultimaker_methodx/um_methodx_labs_um-pla-175_0.2mm_highspeed.inst.cfg +++ /dev/null @@ -1,34 +0,0 @@ -[general] -definition = ultimaker_methodx -name = High Speed -version = 4 - -[metadata] -intent_category = highspeed -is_experimental = True -material = ultimaker_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = LABS - -[values] -acceleration_print = 3500 -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_pattern = zigzag -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 - diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-pla-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-pla-175_0.2mm_highspeedsolid.inst.cfg deleted file mode 100644 index fb0211d89e..0000000000 --- a/resources/intent/ultimaker_methodx/um_methodx_labs_um-pla-175_0.2mm_highspeedsolid.inst.cfg +++ /dev/null @@ -1,41 +0,0 @@ -[general] -definition = ultimaker_methodx -name = High Speed Solid -version = 4 - -[metadata] -intent_category = highspeedsolid -is_experimental = True -material = ultimaker_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = LABS - -[values] -acceleration_print = 3500 -bottom_thickness = =top_bottom_thickness -bridge_wall_speed = 300 -build_volume_temperature = 47 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_angles = [45,135] -infill_material_flow = 97 -infill_pattern = zigzag -infill_sparse_density = 99 -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 -top_bottom_thickness = =layer_height * 2 -top_thickness = =top_bottom_thickness - diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-tough-pla-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-tough-pla-175_0.2mm_highspeed.inst.cfg deleted file mode 100644 index c286add3fc..0000000000 --- a/resources/intent/ultimaker_methodx/um_methodx_labs_um-tough-pla-175_0.2mm_highspeed.inst.cfg +++ /dev/null @@ -1,34 +0,0 @@ -[general] -definition = ultimaker_methodx -name = High Speed -version = 4 - -[metadata] -intent_category = highspeed -is_experimental = True -material = ultimaker_tough_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = LABS - -[values] -acceleration_print = 3500 -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_pattern = zigzag -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 - diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-tough-pla-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-tough-pla-175_0.2mm_highspeedsolid.inst.cfg deleted file mode 100644 index a443e7fa29..0000000000 --- a/resources/intent/ultimaker_methodx/um_methodx_labs_um-tough-pla-175_0.2mm_highspeedsolid.inst.cfg +++ /dev/null @@ -1,41 +0,0 @@ -[general] -definition = ultimaker_methodx -name = High Speed Solid -version = 4 - -[metadata] -intent_category = highspeedsolid -is_experimental = True -material = ultimaker_tough_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = LABS - -[values] -acceleration_print = 3500 -bottom_thickness = =top_bottom_thickness -bridge_wall_speed = 300 -build_volume_temperature = 47 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_angles = [45,135] -infill_material_flow = 97 -infill_pattern = zigzag -infill_sparse_density = 99 -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 -top_bottom_thickness = =layer_height * 2 -top_thickness = =top_bottom_thickness - diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1a_um-pla-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1a_um-pla-175_0.2mm_highspeed.inst.cfg deleted file mode 100644 index ed8a845d8f..0000000000 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1a_um-pla-175_0.2mm_highspeed.inst.cfg +++ /dev/null @@ -1,34 +0,0 @@ -[general] -definition = ultimaker_methodxl -name = High Speed -version = 4 - -[metadata] -intent_category = highspeed -is_experimental = True -material = ultimaker_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1A - -[values] -acceleration_print = 3500 -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_pattern = zigzag -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 - diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1a_um-pla-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1a_um-pla-175_0.2mm_highspeedsolid.inst.cfg deleted file mode 100644 index b0f667ae13..0000000000 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1a_um-pla-175_0.2mm_highspeedsolid.inst.cfg +++ /dev/null @@ -1,42 +0,0 @@ -[general] -definition = ultimaker_methodxl -name = High Speed Solid -version = 4 - -[metadata] -intent_category = highspeedsolid -is_experimental = True -material = ultimaker_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1A - -[values] -acceleration_print = 3500 -bottom_thickness = =top_bottom_thickness -bridge_wall_speed = 300 -build_volume_temperature = 45 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_angles = [45,135] -infill_material_flow = 97 -infill_pattern = zigzag -infill_sparse_density = 99 -jerk_print = 35 -material_bed_temperature = 45 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 -top_bottom_thickness = =layer_height * 2 -top_thickness = =top_bottom_thickness - diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1a_um-tough-pla-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1a_um-tough-pla-175_0.2mm_highspeed.inst.cfg deleted file mode 100644 index 5057bf35e6..0000000000 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1a_um-tough-pla-175_0.2mm_highspeed.inst.cfg +++ /dev/null @@ -1,34 +0,0 @@ -[general] -definition = ultimaker_methodxl -name = High Speed -version = 4 - -[metadata] -intent_category = highspeed -is_experimental = True -material = ultimaker_tough_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1A - -[values] -acceleration_print = 3500 -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_pattern = zigzag -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 - diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1a_um-tough-pla-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1a_um-tough-pla-175_0.2mm_highspeedsolid.inst.cfg deleted file mode 100644 index 228d1b0297..0000000000 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1a_um-tough-pla-175_0.2mm_highspeedsolid.inst.cfg +++ /dev/null @@ -1,42 +0,0 @@ -[general] -definition = ultimaker_methodxl -name = High Speed Solid -version = 4 - -[metadata] -intent_category = highspeedsolid -is_experimental = True -material = ultimaker_tough_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1A - -[values] -acceleration_print = 3500 -bottom_thickness = =top_bottom_thickness -bridge_wall_speed = 300 -build_volume_temperature = 45 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_angles = [45,135] -infill_material_flow = 97 -infill_pattern = zigzag -infill_sparse_density = 99 -jerk_print = 35 -material_bed_temperature = 45 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 -top_bottom_thickness = =layer_height * 2 -top_thickness = =top_bottom_thickness - diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_highspeed.inst.cfg deleted file mode 100644 index 0328525090..0000000000 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_highspeed.inst.cfg +++ /dev/null @@ -1,32 +0,0 @@ -[general] -definition = ultimaker_methodxl -name = High Speed -version = 4 - -[metadata] -intent_category = highspeed -is_experimental = True -material = ultimaker_absr_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1C - -[values] -acceleration_print = 3500 -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -cool_min_temperature = 245.0 -infill_pattern = zigzag -jerk_print = 35 -speed_layer_0 = 55 -speed_print = 300 -speed_support = 100 -speed_support_interface = 75 -speed_travel = 500 -speed_travel_layer_0 = 250 -speed_wall_0 = 40 -support_pattern = zigzag - diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_highspeedsolid.inst.cfg deleted file mode 100644 index 0c2bb88cc7..0000000000 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_highspeedsolid.inst.cfg +++ /dev/null @@ -1,38 +0,0 @@ -[general] -definition = ultimaker_methodxl -name = High Speed Solid -version = 4 - -[metadata] -intent_category = highspeedsolid -is_experimental = True -material = ultimaker_absr_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1C - -[values] -acceleration_print = 3500 -bottom_thickness = =top_bottom_thickness -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -cool_min_temperature = 245.0 -infill_angles = [45,135] -infill_material_flow = 97 -infill_pattern = zigzag -infill_sparse_density = 99 -jerk_print = 35 -speed_layer_0 = 55 -speed_print = 300 -speed_support = 100 -speed_support_interface = 75 -speed_travel = 500 -speed_travel_layer_0 = 250 -speed_wall_0 = 40 -support_pattern = zigzag -top_bottom_thickness = =layer_height * 2 -top_thickness = =top_bottom_thickness - diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-pla-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-pla-175_0.2mm_highspeed.inst.cfg deleted file mode 100644 index c2f02ccc55..0000000000 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-pla-175_0.2mm_highspeed.inst.cfg +++ /dev/null @@ -1,34 +0,0 @@ -[general] -definition = ultimaker_methodxl -name = High Speed -version = 4 - -[metadata] -intent_category = highspeed -is_experimental = True -material = ultimaker_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1C - -[values] -acceleration_print = 3500 -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_pattern = zigzag -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 - diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-pla-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-pla-175_0.2mm_highspeedsolid.inst.cfg deleted file mode 100644 index 42a678616a..0000000000 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-pla-175_0.2mm_highspeedsolid.inst.cfg +++ /dev/null @@ -1,42 +0,0 @@ -[general] -definition = ultimaker_methodxl -name = High Speed Solid -version = 4 - -[metadata] -intent_category = highspeedsolid -is_experimental = True -material = ultimaker_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1C - -[values] -acceleration_print = 3500 -bottom_thickness = =top_bottom_thickness -bridge_wall_speed = 300 -build_volume_temperature = 45 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_angles = [45,135] -infill_material_flow = 97 -infill_pattern = zigzag -infill_sparse_density = 99 -jerk_print = 35 -material_bed_temperature = 45 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 -top_bottom_thickness = =layer_height * 2 -top_thickness = =top_bottom_thickness - diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-tough-pla-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-tough-pla-175_0.2mm_highspeed.inst.cfg deleted file mode 100644 index 1eea27049b..0000000000 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-tough-pla-175_0.2mm_highspeed.inst.cfg +++ /dev/null @@ -1,34 +0,0 @@ -[general] -definition = ultimaker_methodxl -name = High Speed -version = 4 - -[metadata] -intent_category = highspeed -is_experimental = True -material = ultimaker_tough_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1C - -[values] -acceleration_print = 3500 -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_pattern = zigzag -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 - diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-tough-pla-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-tough-pla-175_0.2mm_highspeedsolid.inst.cfg deleted file mode 100644 index b7637e1bf7..0000000000 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-tough-pla-175_0.2mm_highspeedsolid.inst.cfg +++ /dev/null @@ -1,42 +0,0 @@ -[general] -definition = ultimaker_methodxl -name = High Speed Solid -version = 4 - -[metadata] -intent_category = highspeedsolid -is_experimental = True -material = ultimaker_tough_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1C - -[values] -acceleration_print = 3500 -bottom_thickness = =top_bottom_thickness -bridge_wall_speed = 300 -build_volume_temperature = 45 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_angles = [45,135] -infill_material_flow = 97 -infill_pattern = zigzag -infill_sparse_density = 99 -jerk_print = 35 -material_bed_temperature = 45 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 -top_bottom_thickness = =layer_height * 2 -top_thickness = =top_bottom_thickness - diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_highspeed.inst.cfg deleted file mode 100644 index a82ddaa428..0000000000 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_highspeed.inst.cfg +++ /dev/null @@ -1,32 +0,0 @@ -[general] -definition = ultimaker_methodxl -name = High Speed -version = 4 - -[metadata] -intent_category = highspeed -is_experimental = True -material = ultimaker_absr_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1XA - -[values] -acceleration_print = 3500 -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -cool_min_temperature = 245.0 -infill_pattern = zigzag -jerk_print = 35 -speed_layer_0 = 55 -speed_print = 300 -speed_support = 100 -speed_support_interface = 75 -speed_travel = 500 -speed_travel_layer_0 = 250 -speed_wall_0 = 40 -support_pattern = zigzag - diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_highspeedsolid.inst.cfg deleted file mode 100644 index 9aebcb531b..0000000000 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_highspeedsolid.inst.cfg +++ /dev/null @@ -1,38 +0,0 @@ -[general] -definition = ultimaker_methodxl -name = High Speed Solid -version = 4 - -[metadata] -intent_category = highspeedsolid -is_experimental = True -material = ultimaker_absr_175 -quality_type = draft -setting_version = 25 -type = intent -variant = 1XA - -[values] -acceleration_print = 3500 -bottom_thickness = =top_bottom_thickness -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -cool_min_temperature = 245.0 -infill_angles = [45,135] -infill_material_flow = 97 -infill_pattern = zigzag -infill_sparse_density = 99 -jerk_print = 35 -speed_layer_0 = 55 -speed_print = 300 -speed_support = 100 -speed_support_interface = 75 -speed_travel = 500 -speed_travel_layer_0 = 250 -speed_wall_0 = 40 -support_pattern = zigzag -top_bottom_thickness = =layer_height * 2 -top_thickness = =top_bottom_thickness - diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_highspeed.inst.cfg deleted file mode 100644 index 11aa6d2878..0000000000 --- a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_highspeed.inst.cfg +++ /dev/null @@ -1,32 +0,0 @@ -[general] -definition = ultimaker_methodxl -name = High Speed -version = 4 - -[metadata] -intent_category = highspeed -is_experimental = True -material = ultimaker_absr_175 -quality_type = draft -setting_version = 25 -type = intent -variant = LABS - -[values] -acceleration_print = 3500 -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -cool_min_temperature = 245.0 -infill_pattern = zigzag -jerk_print = 35 -speed_layer_0 = 55 -speed_print = 300 -speed_support = 100 -speed_support_interface = 75 -speed_travel = 500 -speed_travel_layer_0 = 250 -speed_wall_0 = 40 -support_pattern = zigzag - diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_highspeedsolid.inst.cfg deleted file mode 100644 index ea8caef493..0000000000 --- a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_highspeedsolid.inst.cfg +++ /dev/null @@ -1,38 +0,0 @@ -[general] -definition = ultimaker_methodxl -name = High Speed Solid -version = 4 - -[metadata] -intent_category = highspeedsolid -is_experimental = True -material = ultimaker_absr_175 -quality_type = draft -setting_version = 25 -type = intent -variant = LABS - -[values] -acceleration_print = 3500 -bottom_thickness = =top_bottom_thickness -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -cool_min_temperature = 245.0 -infill_angles = [45,135] -infill_material_flow = 97 -infill_pattern = zigzag -infill_sparse_density = 99 -jerk_print = 35 -speed_layer_0 = 55 -speed_print = 300 -speed_support = 100 -speed_support_interface = 75 -speed_travel = 500 -speed_travel_layer_0 = 250 -speed_wall_0 = 40 -support_pattern = zigzag -top_bottom_thickness = =layer_height * 2 -top_thickness = =top_bottom_thickness - diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-pla-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-pla-175_0.2mm_highspeed.inst.cfg deleted file mode 100644 index 2b101b37a5..0000000000 --- a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-pla-175_0.2mm_highspeed.inst.cfg +++ /dev/null @@ -1,34 +0,0 @@ -[general] -definition = ultimaker_methodxl -name = High Speed -version = 4 - -[metadata] -intent_category = highspeed -is_experimental = True -material = ultimaker_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = LABS - -[values] -acceleration_print = 3500 -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_pattern = zigzag -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 - diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-pla-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-pla-175_0.2mm_highspeedsolid.inst.cfg deleted file mode 100644 index 1af18325ae..0000000000 --- a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-pla-175_0.2mm_highspeedsolid.inst.cfg +++ /dev/null @@ -1,42 +0,0 @@ -[general] -definition = ultimaker_methodxl -name = High Speed Solid -version = 4 - -[metadata] -intent_category = highspeedsolid -is_experimental = True -material = ultimaker_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = LABS - -[values] -acceleration_print = 3500 -bottom_thickness = =top_bottom_thickness -bridge_wall_speed = 300 -build_volume_temperature = 45 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_angles = [45,135] -infill_material_flow = 97 -infill_pattern = zigzag -infill_sparse_density = 99 -jerk_print = 35 -material_bed_temperature = 45 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 -top_bottom_thickness = =layer_height * 2 -top_thickness = =top_bottom_thickness - diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-tough-pla-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-tough-pla-175_0.2mm_highspeed.inst.cfg deleted file mode 100644 index d2480bf711..0000000000 --- a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-tough-pla-175_0.2mm_highspeed.inst.cfg +++ /dev/null @@ -1,34 +0,0 @@ -[general] -definition = ultimaker_methodxl -name = High Speed -version = 4 - -[metadata] -intent_category = highspeed -is_experimental = True -material = ultimaker_tough_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = LABS - -[values] -acceleration_print = 3500 -bridge_wall_speed = 300 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_pattern = zigzag -jerk_print = 35 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 - diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-tough-pla-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-tough-pla-175_0.2mm_highspeedsolid.inst.cfg deleted file mode 100644 index 77ba3130b1..0000000000 --- a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-tough-pla-175_0.2mm_highspeedsolid.inst.cfg +++ /dev/null @@ -1,42 +0,0 @@ -[general] -definition = ultimaker_methodxl -name = High Speed Solid -version = 4 - -[metadata] -intent_category = highspeedsolid -is_experimental = True -material = ultimaker_tough_pla_175 -quality_type = draft -setting_version = 25 -type = intent -variant = LABS - -[values] -acceleration_print = 3500 -bottom_thickness = =top_bottom_thickness -bridge_wall_speed = 300 -build_volume_temperature = 45 -cool_fan_enabled = True -cool_fan_speed = 100 -cool_min_layer_time = 3 -infill_angles = [45,135] -infill_material_flow = 97 -infill_pattern = zigzag -infill_sparse_density = 99 -jerk_print = 35 -material_bed_temperature = 45 -speed_infill = 240.0 -speed_layer_0 = 55 -speed_print = 300 -speed_travel = 500 -speed_travel_layer_0 = 350.0 -speed_wall_0 = 45 -support_interface_line_width = 0.42 -support_line_width = 0.47 -support_material_flow = 100 -support_pattern = zigzag -support_roof_line_width = 0.42 -top_bottom_thickness = =layer_height * 2 -top_thickness = =top_bottom_thickness - diff --git a/resources/quality/ultimaker_s8/um_s8_cc_plus_0.4_nylon-cf-slide_0.2mm.inst.cfg b/resources/quality/ultimaker_s8/um_s8_cc_plus_0.4_nylon-cf-slide_0.2mm.inst.cfg index 4ed174596a..1085302fc7 100644 --- a/resources/quality/ultimaker_s8/um_s8_cc_plus_0.4_nylon-cf-slide_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s8/um_s8_cc_plus_0.4_nylon-cf-slide_0.2mm.inst.cfg @@ -13,4 +13,5 @@ weight = -2 [values] cool_min_layer_time_fan_speed_max = 11 +retraction_prime_speed = 15