Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix warning issue Method machines with BASF Metal filament. #19921

Merged
merged 1 commit into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -142,7 +142,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 },
wawanbreton marked this conversation as resolved.
Show resolved Hide resolved
"bridge_fan_speed_2": { "value": "(cool_fan_speed_max + cool_fan_speed_min) / 2" },
wawanbreton marked this conversation as resolved.
Show resolved Hide resolved
"bridge_skin_density": { "value": 100 },
wawanbreton marked this conversation as resolved.
Show resolved Hide resolved
Expand Down Expand Up @@ -576,7 +580,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
Loading