mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
Merge branch 'main' into SearchAndReplace
This commit is contained in:
commit
d49b5c5378
54 changed files with 2048 additions and 52 deletions
|
@ -258,11 +258,87 @@ class MakerbotWriter(MeshWriter):
|
||||||
|
|
||||||
meta["preferences"] = dict()
|
meta["preferences"] = dict()
|
||||||
bounds = application.getBuildVolume().getBoundingBox()
|
bounds = application.getBuildVolume().getBoundingBox()
|
||||||
|
intent = CuraApplication.getInstance().getIntentManager().currentIntentCategory
|
||||||
meta["preferences"]["instance0"] = {
|
meta["preferences"]["instance0"] = {
|
||||||
"machineBounds": [bounds.right, bounds.front, bounds.left, bounds.back] if bounds is not None else None,
|
"machineBounds": [bounds.right, bounds.front, bounds.left, bounds.back] if bounds is not None else None,
|
||||||
"printMode": CuraApplication.getInstance().getIntentManager().currentIntentCategory,
|
"printMode": intent
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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": {}}}
|
meta["miracle_config"] = {"gaggles": {"instance0": {}}}
|
||||||
|
|
||||||
version_info = dict()
|
version_info = dict()
|
||||||
|
|
|
@ -33,12 +33,14 @@
|
||||||
{
|
{
|
||||||
"acceleration_enabled":
|
"acceleration_enabled":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"enabled": true,
|
||||||
"value": true
|
"value": true
|
||||||
},
|
},
|
||||||
"acceleration_infill":
|
"acceleration_infill":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"maximum_value": 3500,
|
||||||
|
"minimum_value": 200,
|
||||||
|
"minimum_value_warning": 750,
|
||||||
"value": "acceleration_print"
|
"value": "acceleration_print"
|
||||||
},
|
},
|
||||||
"acceleration_layer_0":
|
"acceleration_layer_0":
|
||||||
|
@ -48,12 +50,18 @@
|
||||||
},
|
},
|
||||||
"acceleration_prime_tower":
|
"acceleration_prime_tower":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"enabled": "acceleration_enabled and prime_tower_enable and extruders_enabled_count > 1",
|
||||||
|
"maximum_value": 3500,
|
||||||
|
"minimum_value": 200,
|
||||||
|
"minimum_value_warning": 750,
|
||||||
"value": "acceleration_print"
|
"value": "acceleration_print"
|
||||||
},
|
},
|
||||||
"acceleration_print":
|
"acceleration_print":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"enabled": "acceleration_enabled",
|
||||||
|
"maximum_value": 3500,
|
||||||
|
"minimum_value": 200,
|
||||||
|
"minimum_value_warning": 750,
|
||||||
"value": 800
|
"value": 800
|
||||||
},
|
},
|
||||||
"acceleration_print_layer_0":
|
"acceleration_print_layer_0":
|
||||||
|
@ -63,33 +71,49 @@
|
||||||
},
|
},
|
||||||
"acceleration_roofing":
|
"acceleration_roofing":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"maximum_value": 3500,
|
||||||
|
"minimum_value": 200,
|
||||||
|
"minimum_value_warning": 750,
|
||||||
"value": "acceleration_print"
|
"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":
|
"acceleration_support":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"maximum_value": 3500,
|
||||||
|
"minimum_value": 200,
|
||||||
|
"minimum_value_warning": 750,
|
||||||
"value": "acceleration_print"
|
"value": "acceleration_print"
|
||||||
},
|
},
|
||||||
"acceleration_support_bottom":
|
"acceleration_support_bottom":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"enabled": false,
|
||||||
"value": "acceleration_print"
|
"value": "acceleration_support_interface"
|
||||||
},
|
},
|
||||||
"acceleration_support_infill":
|
"acceleration_support_infill":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"maximum_value": 3500,
|
||||||
"value": "acceleration_print"
|
"minimum_value": 200,
|
||||||
|
"minimum_value_warning": 750,
|
||||||
|
"value": "acceleration_support"
|
||||||
},
|
},
|
||||||
"acceleration_support_interface":
|
"acceleration_support_interface":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"maximum_value": 3500,
|
||||||
"value": "acceleration_print"
|
"minimum_value": 200,
|
||||||
|
"minimum_value_warning": 750,
|
||||||
|
"value": "acceleration_support"
|
||||||
},
|
},
|
||||||
"acceleration_support_roof":
|
"acceleration_support_roof":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"enabled": false,
|
||||||
"value": "acceleration_print"
|
"value": "acceleration_support_interface"
|
||||||
},
|
},
|
||||||
"acceleration_topbottom":
|
"acceleration_topbottom":
|
||||||
{
|
{
|
||||||
|
@ -98,7 +122,10 @@
|
||||||
},
|
},
|
||||||
"acceleration_travel":
|
"acceleration_travel":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"enabled": "acceleration_enabled",
|
||||||
|
"maximum_value": 5000,
|
||||||
|
"minimum_value": 200,
|
||||||
|
"minimum_value_warning": 750,
|
||||||
"value": 5000
|
"value": 5000
|
||||||
},
|
},
|
||||||
"acceleration_travel_enabled":
|
"acceleration_travel_enabled":
|
||||||
|
@ -113,28 +140,37 @@
|
||||||
},
|
},
|
||||||
"acceleration_wall":
|
"acceleration_wall":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"enabled": "acceleration_enabled",
|
||||||
|
"maximum_value": 3500,
|
||||||
|
"minimum_value": 200,
|
||||||
|
"minimum_value_warning": 750,
|
||||||
"value": "acceleration_print"
|
"value": "acceleration_print"
|
||||||
},
|
},
|
||||||
"acceleration_wall_0":
|
"acceleration_wall_0":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"enabled": "acceleration_enabled",
|
||||||
"value": "acceleration_print"
|
"maximum_value": 3500,
|
||||||
|
"minimum_value": 200,
|
||||||
|
"minimum_value_warning": 750,
|
||||||
|
"value": "acceleration_wall"
|
||||||
},
|
},
|
||||||
"acceleration_wall_0_roofing":
|
"acceleration_wall_0_roofing":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"enabled": false,
|
||||||
"value": "acceleration_print"
|
"value": "acceleration_wall"
|
||||||
},
|
},
|
||||||
"acceleration_wall_x":
|
"acceleration_wall_x":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"enabled": "acceleration_enabled",
|
||||||
"value": "acceleration_print"
|
"maximum_value": 3500,
|
||||||
|
"minimum_value": 200,
|
||||||
|
"minimum_value_warning": 750,
|
||||||
|
"value": "acceleration_wall"
|
||||||
},
|
},
|
||||||
"acceleration_wall_x_roofing":
|
"acceleration_wall_x_roofing":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"enabled": false,
|
||||||
"value": "acceleration_print"
|
"value": "acceleration_wall"
|
||||||
},
|
},
|
||||||
"adhesion_extruder_nr":
|
"adhesion_extruder_nr":
|
||||||
{
|
{
|
||||||
|
@ -203,12 +239,15 @@
|
||||||
"inset_direction": { "value": "'inside_out'" },
|
"inset_direction": { "value": "'inside_out'" },
|
||||||
"jerk_enabled":
|
"jerk_enabled":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"enabled": true,
|
||||||
"value": true
|
"value": true
|
||||||
},
|
},
|
||||||
"jerk_infill":
|
"jerk_infill":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"enabled": "jerk_enabled",
|
||||||
|
"maximum_value": 35,
|
||||||
|
"minimum_value": 5,
|
||||||
|
"minimum_value_warning": 12,
|
||||||
"value": "jerk_print"
|
"value": "jerk_print"
|
||||||
},
|
},
|
||||||
"jerk_layer_0":
|
"jerk_layer_0":
|
||||||
|
@ -218,13 +257,19 @@
|
||||||
},
|
},
|
||||||
"jerk_prime_tower":
|
"jerk_prime_tower":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"enabled": "jerk_enabled and prime_tower_enable and extruders_enabled_count > 1",
|
||||||
|
"maximum_value": 35,
|
||||||
|
"minimum_value": 5,
|
||||||
|
"minimum_value_warning": 12,
|
||||||
"value": "jerk_print"
|
"value": "jerk_print"
|
||||||
},
|
},
|
||||||
"jerk_print":
|
"jerk_print":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"enabled": "jerk_enabled",
|
||||||
"value": 6.25
|
"maximum_value": 35,
|
||||||
|
"minimum_value": 5,
|
||||||
|
"minimum_value_warning": 12,
|
||||||
|
"value": 12.5
|
||||||
},
|
},
|
||||||
"jerk_print_layer_0":
|
"jerk_print_layer_0":
|
||||||
{
|
{
|
||||||
|
@ -233,33 +278,50 @@
|
||||||
},
|
},
|
||||||
"jerk_roofing":
|
"jerk_roofing":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"enabled": "jerk_enabled",
|
||||||
|
"maximum_value": 35,
|
||||||
|
"minimum_value": 5,
|
||||||
|
"minimum_value_warning": 12,
|
||||||
"value": "jerk_print"
|
"value": "jerk_print"
|
||||||
},
|
},
|
||||||
|
"jerk_skirt_brim":
|
||||||
|
{
|
||||||
|
"enabled": "jerk_enabled and (adhesion_type == 'brim' or adhesion_type == 'skirt')",
|
||||||
|
"value": 12.5
|
||||||
|
},
|
||||||
"jerk_support":
|
"jerk_support":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"enabled": "jerk_enabled and support_enable",
|
||||||
|
"maximum_value": 35,
|
||||||
|
"minimum_value": 5,
|
||||||
|
"minimum_value_warning": 12,
|
||||||
"value": "jerk_print"
|
"value": "jerk_print"
|
||||||
},
|
},
|
||||||
"jerk_support_bottom":
|
"jerk_support_bottom":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"enabled": false,
|
||||||
"value": "jerk_print"
|
"value": "jerk_support_interface"
|
||||||
},
|
},
|
||||||
"jerk_support_infill":
|
"jerk_support_infill":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"enabled": "jerk_enabled and support_enable",
|
||||||
"value": "jerk_print"
|
"maximum_value": 35,
|
||||||
|
"minimum_value": 5,
|
||||||
|
"minimum_value_warning": 12,
|
||||||
|
"value": "jerk_support"
|
||||||
},
|
},
|
||||||
"jerk_support_interface":
|
"jerk_support_interface":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"enabled": "jerk_enabled and support_enable",
|
||||||
"value": "jerk_print"
|
"maximum_value": 35,
|
||||||
|
"minimum_value": 5,
|
||||||
|
"minimum_value_warning": 12,
|
||||||
|
"value": "jerk_support"
|
||||||
},
|
},
|
||||||
"jerk_support_roof":
|
"jerk_support_roof":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"enabled": false,
|
||||||
"value": "jerk_print"
|
"value": "jerk_support_interface"
|
||||||
},
|
},
|
||||||
"jerk_topbottom":
|
"jerk_topbottom":
|
||||||
{
|
{
|
||||||
|
@ -268,8 +330,11 @@
|
||||||
},
|
},
|
||||||
"jerk_travel":
|
"jerk_travel":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"enabled": "jerk_enabled",
|
||||||
"value": "jerk_print"
|
"maximum_value": 35,
|
||||||
|
"minimum_value": 5,
|
||||||
|
"minimum_value_warning": 12,
|
||||||
|
"value": 12.5
|
||||||
},
|
},
|
||||||
"jerk_travel_enabled":
|
"jerk_travel_enabled":
|
||||||
{
|
{
|
||||||
|
@ -283,12 +348,18 @@
|
||||||
},
|
},
|
||||||
"jerk_wall":
|
"jerk_wall":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"enabled": "jerk_enabled",
|
||||||
|
"maximum_value": 35,
|
||||||
|
"minimum_value": 5,
|
||||||
|
"minimum_value_warning": 12,
|
||||||
"value": "jerk_print"
|
"value": "jerk_print"
|
||||||
},
|
},
|
||||||
"jerk_wall_0":
|
"jerk_wall_0":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"enabled": "jerk_enabled",
|
||||||
|
"maximum_value": 35,
|
||||||
|
"minimum_value": 5,
|
||||||
|
"minimum_value_warning": 12,
|
||||||
"value": "jerk_print"
|
"value": "jerk_print"
|
||||||
},
|
},
|
||||||
"jerk_wall_0_roofing":
|
"jerk_wall_0_roofing":
|
||||||
|
@ -298,7 +369,10 @@
|
||||||
},
|
},
|
||||||
"jerk_wall_x":
|
"jerk_wall_x":
|
||||||
{
|
{
|
||||||
"enabled": false,
|
"enabled": "jerk_enabled",
|
||||||
|
"maximum_value": 35,
|
||||||
|
"minimum_value": 5,
|
||||||
|
"minimum_value_warning": 12,
|
||||||
"value": "jerk_print"
|
"value": "jerk_print"
|
||||||
},
|
},
|
||||||
"jerk_wall_x_roofing":
|
"jerk_wall_x_roofing":
|
||||||
|
@ -517,16 +591,86 @@
|
||||||
"skirt_height": { "value": 3 },
|
"skirt_height": { "value": 3 },
|
||||||
"small_skin_width": { "value": 4 },
|
"small_skin_width": { "value": 4 },
|
||||||
"speed_equalize_flow_width_factor": { "value": 0 },
|
"speed_equalize_flow_width_factor": { "value": 0 },
|
||||||
"speed_prime_tower": { "value": "speed_topbottom" },
|
"speed_infill":
|
||||||
"speed_print": { "value": 50 },
|
{
|
||||||
"speed_roofing": { "value": "speed_wall_0" },
|
"maximum_value": 350,
|
||||||
"speed_support": { "value": "speed_wall" },
|
"maximum_value_warning": 325
|
||||||
"speed_support_interface": { "value": "speed_topbottom" },
|
},
|
||||||
"speed_topbottom": { "value": "speed_wall" },
|
"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_travel": { "value": 250 },
|
"speed_travel": { "value": 250 },
|
||||||
"speed_wall": { "value": "speed_print * 40/50" },
|
"speed_wall":
|
||||||
"speed_wall_0": { "value": "speed_wall * 30/40" },
|
{
|
||||||
"speed_wall_x": { "value": "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
|
||||||
|
},
|
||||||
"support_angle": { "value": 40 },
|
"support_angle": { "value": 40 },
|
||||||
"support_bottom_height": { "value": "2*support_infill_sparse_thickness" },
|
"support_bottom_height": { "value": "2*support_infill_sparse_thickness" },
|
||||||
"support_bottom_line_width":
|
"support_bottom_line_width":
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,32 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,38 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,32 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,38 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,32 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,38 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,42 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,42 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,32 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,38 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,42 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,42 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,32 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,38 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,32 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,38 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,42 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -0,0 +1,42 @@
|
||||||
|
[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 = 24
|
||||||
|
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
|
||||||
|
|
|
@ -13,7 +13,7 @@ weight = -1
|
||||||
|
|
||||||
[values]
|
[values]
|
||||||
brim_replaces_support = False
|
brim_replaces_support = False
|
||||||
build_volume_temperature = =50 if extruders_enabled_count > 1 else 35
|
build_volume_temperature = =40 if extruders_enabled_count > 1 else 35
|
||||||
default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60
|
default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60
|
||||||
gradual_flow_discretisation_step_size = 0.1
|
gradual_flow_discretisation_step_size = 0.1
|
||||||
gradual_flow_enabled = True
|
gradual_flow_enabled = True
|
||||||
|
|
|
@ -13,7 +13,7 @@ weight = 0
|
||||||
|
|
||||||
[values]
|
[values]
|
||||||
brim_replaces_support = False
|
brim_replaces_support = False
|
||||||
build_volume_temperature = =50 if extruders_enabled_count > 1 else 35
|
build_volume_temperature = =40 if extruders_enabled_count > 1 else 35
|
||||||
default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60
|
default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60
|
||||||
gradual_flow_discretisation_step_size = 0.1
|
gradual_flow_discretisation_step_size = 0.1
|
||||||
gradual_flow_enabled = True
|
gradual_flow_enabled = True
|
||||||
|
|
|
@ -13,7 +13,7 @@ weight = -2
|
||||||
|
|
||||||
[values]
|
[values]
|
||||||
brim_replaces_support = False
|
brim_replaces_support = False
|
||||||
build_volume_temperature = =50 if extruders_enabled_count > 1 else 35
|
build_volume_temperature = =40 if extruders_enabled_count > 1 else 35
|
||||||
default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60
|
default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60
|
||||||
gradual_flow_discretisation_step_size = 0.1
|
gradual_flow_discretisation_step_size = 0.1
|
||||||
gradual_flow_enabled = True
|
gradual_flow_enabled = True
|
||||||
|
|
|
@ -13,7 +13,7 @@ weight = -3
|
||||||
|
|
||||||
[values]
|
[values]
|
||||||
brim_replaces_support = False
|
brim_replaces_support = False
|
||||||
build_volume_temperature = =50 if extruders_enabled_count > 1 else 35
|
build_volume_temperature = =40 if extruders_enabled_count > 1 else 35
|
||||||
default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60
|
default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60
|
||||||
gradual_flow_discretisation_step_size = 0.1
|
gradual_flow_discretisation_step_size = 0.1
|
||||||
gradual_flow_enabled = True
|
gradual_flow_enabled = True
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue