Skip to content

Commit

Permalink
Fix warning issue Method machines with Metal filamant.
Browse files Browse the repository at this point in the history
  • Loading branch information
pkuiper-ultimaker committed Nov 18, 2024
1 parent 94b8728 commit 28203a3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
12 changes: 10 additions & 2 deletions resources/definitions/ultimaker_method_base.def.json
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,11 @@
"value": "min(extruderValues('extruder_nr'))"
},
"adhesion_type": { "value": "'raft'" },
"bottom_thickness": { "value": "top_bottom_thickness" },
"bottom_thickness":
{
"minimum_value_warning": 0.3,
"value": "top_bottom_thickness"
},
"bridge_enable_more_layers": { "value": true },
"bridge_fan_speed_2": { "value": "(cool_fan_speed_max + cool_fan_speed_min) / 2" },
"bridge_skin_density": { "value": 100 },
Expand Down Expand Up @@ -575,7 +579,11 @@
"minimum_value_warning": 0.3,
"value": "4*layer_height"
},
"top_thickness": { "value": "top_bottom_thickness * 1.5" },
"top_thickness":
{
"minimum_value_warning": 0.3,
"value": "top_bottom_thickness * 1.5"
},
"travel_avoid_distance": { "value": "3 if extruders_enabled_count > 1 else machine_nozzle_tip_outer_diameter / 2 * 1.5" },
"travel_avoid_other_parts": { "value": false },
"wall_0_inset": { "value": 0 },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ skin_overlap = 20.0
skirt_brim_minimal_length = 100.0
speed_print = 25
support_enable = False
top_bottom_thickness = =layer_height * 2
top_bottom_thickness = =math.floor(layer_height * 2000)/1000.0
top_thickness = =top_bottom_thickness
wall_0_material_flow_layer_0 = 110
wall_x_material_flow_layer_0 = 110
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ skin_overlap = 20.0
skirt_brim_minimal_length = 100.0
speed_print = 25
support_enable = False
top_bottom_thickness = =layer_height * 2
top_bottom_thickness = =math.floor(layer_height * 2000)/1000.0
top_thickness = =top_bottom_thickness
wall_0_material_flow_layer_0 = 110
wall_x_material_flow_layer_0 = 110
Expand Down

0 comments on commit 28203a3

Please sign in to comment.