-
-
Notifications
You must be signed in to change notification settings - Fork 526
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
Turn fan on/up when printing supports #2326
Comments
Currently, you can activate it manually via feature_gcode field. |
awesome, thanks! i figured there was an easy way to add this via custom gcode scripts, but had no idea how (not super familiar with gcode yet). |
so this will not be added as a menu toggle? btw, noob question, where do i put the code? at start gcode section? |
In "between extrusion role change", well below |
would your posted code @supermerill work properly if i changed the first part to {if extrusion_role == "SupportMaterialInterface" and layer_z > 3 } work properly? From my experiences with other languages, i'd imagine it would, i just wanted to make sure before I threw it in and broke something lol. |
yes. |
awesome, thank you! |
below is the one i will use, but during testing, I've noticed a bug perhaps ? i am still on 2.3.57, so not sure if this has been fixed or not.
|
That's because you used layer_z and not layer_num, no? If you want to start at the 4th layer, use note: |
yes that did it. but looking into it again. is applying that value for the support area and the model area independently i would expect it to apply disable_fan_first_layers at the total layer number of 12, but it does it at 24 after adjusting support_material_contact_distance_top it behaves correctly. |
I forgot, |
Hi guys, i have copied the and i have similar issue with 1st 3 layers that are also cooled by the fan. My coding knowledge is limited, i did see that legend069 has the same issue, but i did not understand what should i copy to get rid of first 3 layers of cooling. |
@levleon13 |
you still have the first line that is the problem. just copy/paste what i have. below is what i have and it seems like it works fine.
@supermerill it looks like "fan_below_layer_time" is prioritised over "extrusion role change g-code" should this be correct? |
Yes, all of the things that depend on time is done as a post-process on the gcode, as you need the gcode to do the time simulation. |
thanks a lot ! |
now i get this on my mainsailos: Error on 'M106 S-2': S must have minimum of 0.0 |
i'll suggest looking at your fan cooling settings and remove any negative values ie "-1" |
none are at -1, and still same error. |
I'd love to see this feature too. It's only a matter of days before I slip with the razor blade while cleaning up where the support has stuck to the part. |
can you post your project file? I don't see how that can happens, as it's protected by a |
@legend069 the script gets confused if the extruder transitions from support material interface to support material (eg. on another object). It sets the fan speed low because the I restructured the conditionals so that the fan speed is reset only if the current role isn't support or support interface. (And also a material check so it doesn't mess with my PLA prints)
|
. now easier to add new control and do complicate stuff in the cooling buffer. . less overall number of lines of code for better results. . add 6 new fan control. . now if the disable_fan_first_layers is at 0 and full_fan_speed_layer at more than 1, the first layer has some fan speed. . updated fan speeds that cannot be increased even with low layer time (top solid, ironing, support, support interface) . updated fan speeds that cannot be reduced by full_fan_speed_layer (bridge, infill bridge, overhangs, support interface) . updated extrusion speed that can't be reduced (overhang, bridge) . updated extrusion speed that shouldn't be reduced if possible (external, ironing, infill bridge, thin wall, support interface) . better name for CoolingBuffer::process_layer variables #3735 #3608 #3568 #3415 #3408 #3380 #3367 #3361 #3271 #3152 #2872 #2696 #2419 #2326
. now easier to add new control and do complicate stuff in the cooling buffer. . less overall number of lines of code for better results. . add 6 new fan control. . now if the disable_fan_first_layers is at 0 and full_fan_speed_layer at more than 1, the first layer has some fan speed. . updated fan speeds that cannot be increased even with low layer time (top solid, ironing, support, support interface) . updated fan speeds that cannot be reduced by full_fan_speed_layer (bridge, infill bridge, overhangs, support interface) . updated extrusion speed that can't be reduced (overhang, bridge) . updated extrusion speed that shouldn't be reduced if possible (external, ironing, infill bridge, thin wall, support interface) . better name for CoolingBuffer::process_layer variables supermerill#3735 supermerill#3608 supermerill#3568 supermerill#3415 supermerill#3408 supermerill#3380 supermerill#3367 supermerill#3361 supermerill#3271 supermerill#3152 supermerill#2872 supermerill#2696 supermerill#2419 supermerill#2326
Is your feature request related to a problem? Please describe.
While printing PETG or ABS, supports tend to bond to the part as I generally don't print with the cooling fan on for better layer adhesion.
Describe the solution you'd like
The ability to have the fan turn on while printing supports (above the first couple layers) either at the top of the support, or the entire time supports are being printed. This would make layer adhesion on supports worse, making removing supports much easier.
Describe how it would work
Add an option for turning on part cooling fans while printing supports. The ability to configure fan speed would be nice, but not necessary for most I'd imagine, but would be appreciated for those that do need it.
Describe alternatives you've considered
Manually adding gcode to turn fan on when printing supports, then manually adding gcode to turn fan off when finished; or doing it by hand on the printer's menu during a print.
Additional context
PETG and ABS would print more nicely and have a better time with support removal if fans were on while printing supports.
The text was updated successfully, but these errors were encountered: