mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-10 07:15:03 -06:00
Update FDM printer definition to calculate PSP - CURA-4248
This commit is contained in:
parent
a444e5c883
commit
69d6ca986d
1 changed files with 2 additions and 2 deletions
|
@ -3469,7 +3469,7 @@
|
|||
"default_value": 0.1,
|
||||
"type": "float",
|
||||
"enabled": "support_enable",
|
||||
"value": "round(extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'material_adhesion_tendency') / 2 if (layer_height >= 0.2) 1) * layer_height",
|
||||
"value": "min(math.ceil(extruderValues('material_adhesion_tendency')) / (2 if (layer_height >= 0.2) else 1)) * layer_height",
|
||||
"limit_to_extruder": "support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr",
|
||||
"settable_per_mesh": true
|
||||
},
|
||||
|
@ -3481,7 +3481,7 @@
|
|||
"minimum_value": "0",
|
||||
"maximum_value_warning": "machine_nozzle_size",
|
||||
"default_value": 0.1,
|
||||
"value": "round(extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'material_adhesion_tendency') / 2) * layer_height",
|
||||
"value": "min(math.ceil(extruderValues('material_adhesion_tendency')) / 2) * layer_height",
|
||||
"limit_to_extruder": "support_bottom_extruder_nr if support_bottom_enable else support_infill_extruder_nr",
|
||||
"type": "float",
|
||||
"enabled": "support_enable and resolveOrValue('support_type') == 'everywhere'",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue