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

Initial Layer Part Cooling Fan Speed #5384

Open
1 task done
JeanKevyn opened this issue May 17, 2024 · 2 comments
Open
1 task done

Initial Layer Part Cooling Fan Speed #5384

JeanKevyn opened this issue May 17, 2024 · 2 comments
Labels
enhancement New feature or request

Comments

@JeanKevyn
Copy link

Is there an existing issue for this feature request?

  • I have searched the existing issues

Is your feature request related to a problem?

I bought a Creality K1 9 months ago. Since the first few weeks with the printer, it has always had a constant clogging problem. Today, several months later, I finally understood the reason for these clogs. Basically, the Creality K1 clogs because the part cooling fan NEVER activates on the first layer, significantly heating the hot-end and preventing filament flow. I managed to solve the problem because dozens of people were experiencing the same issue and reported that simply setting the part cooling fan to 30% for the first layer solves the problem. Indeed, this strategy worked perfectly. However, the option to configure the part cooling fan speed on the first layer is not available. I tried working with the Max and Min Threshold parameters but did not achieve the desired results. Basically, all I need is for the first layer to have the part cooling fan at 30% speed, and ALL other layers to have the part cooling fan at 100%.

Is there a way to achieve this goal? It could even be a solution via G-Code. I just want to stop having this constant clogging headache.

Which printers will be beneficial to this feature?

Klipper

Describe the solution you'd like

I would just like the option to activate this specific fan at a specific speed on the first layer.

Describe alternatives you've considered

No response

Additional context

parameters

@JeanKevyn JeanKevyn added the enhancement New feature or request label May 17, 2024
@vgdh
Copy link
Contributor

vgdh commented May 17, 2024

I familiar with your problem, I use petg fan air duct and it get melt if no air flow provided all the time.
I use KLIPPER and if the part is big enough I have to enable fan manually in mainsail web panel.

What is interesting that some times it don't sets speed to zero for the first layer and leaves the same speed as it has been before the print started (probably it assumed it already should be zero).

I think the first layer fan speed will be very handy feature.

b3n3d1k7 pushed a commit to b3n3d1k7/OrcaSlicer that referenced this issue May 19, 2024
…cer (SoftFever#3737)

* DiffDialog: Implemented a transfer of options from one preset to another
Related to [Feature Request] SoftFever#5384 - Copy values in Profile comparaison dialog

Cherry-picked from prusa3d/PrusaSlicer@0b8d738

Co-authored-by: YuSanka <yusanka@gmail.com>

* Remove save button

* Sync with latest PS

* Use Orca button style

* Show tips about trasnfer disabled

---------

Co-authored-by: YuSanka <yusanka@gmail.com>
@buzzhuzz
Copy link
Contributor

There are actually special case just for your configuration:

if (close_fan_the_first_x_layers <= 0 && full_fan_speed_layer > 0) {
// When ramping up fan speed from close_fan_the_first_x_layers to full_fan_speed_layer, force close_fan_the_first_x_layers above zero,
// so there will be a zero fan speed at least at the 1st layer.
close_fan_the_first_x_layers = 1;
}

Which is literally forcing zero cooling for the first layer if gradual cooling ramp up is enabled.
You may try set "full fan speed at layer 0" to 0 manually for bigger prints only. Assuming small footprint objects will not cause nozzle overheat anyways.

Proper solution I see is to add something like "first layer cooling speed" which also will act as a starting point for cooling speed ramp up during "full fan speed at layer" layers.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants