avoid too low cool_min_temperature

By taking the max value it is not possible anymore that a (3rd party) profile has a too low cool_min_temperature causing it too not slice. PP-71
This commit is contained in:
Rijk van Manen 2023-02-09 12:50:44 +01:00
parent ebdfee0fef
commit f8edf89375

View File

@ -41,7 +41,7 @@
"cool_min_layer_time": { "value": 6 },
"cool_min_layer_time_fan_speed_max": { "value": "cool_min_layer_time + 5" },
"cool_min_speed": { "value": "round(speed_wall_0 * 3 / 4) if cool_lift_head else round(speed_wall_0 / 5)" },
"cool_min_temperature": { "value": "material_print_temperature - 15" },
"cool_min_temperature": { "value": "max([material_final_print_temperature, material_initial_print_temperature, material_print_temperature - 15])" },
"gradual_support_infill_step_height": { "value": "4 * layer_height" },
"gradual_support_infill_steps": { "value": "2 if support_interface_enable else 0" },
"infill_material_flow": { "value": "(1.95-infill_sparse_density / 100 if infill_sparse_density > 95 else 1) * material_flow" },