-
Notifications
You must be signed in to change notification settings - Fork 249
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
Pretty hot C2 #27
Comments
Noticed the same here... |
I am seeing temps getting closer to 130°C for C2... |
I just built the v2.4 board and noticed this myself. Did anyone have a fix for this? |
There are a number of issues with this design. One is that the input capacitance is woefully low. This results in high ripple currents into and out of the input capacitor. I wouldn't recommend trying to smooth this out with an inductor. The currents are relatively large and so the inductance you'll need will also be relatively large and likely result in large voltage spikes without adequate capacitance to absorb them. What this really needs is a lot more input capacitance - somewhere in the realm of 20-40x more. There's not really a way to retrofit that onto this board without a redesign of the layout. Curiously, I think a lot of us having been building the v3.0 hardware design over the last year and the most common firmwares for that didn't have the code in there to modify the timer/counter control registers on the atMEGA4809 and bump up the PWM frequency. As a result, we were using the default PWM frequency of 490Hz. At those frequencies, the power dissipation in the input capacitor is minimal and you could leave you finger on it for the entire reflow cycle. The input capacitors aren't really doing much for you at either frequency, so I'd suggest that your best option is to move to a better design. There is one by DerSpatz that's been around for a while. If you really want to stick with the v2.4 hardware, then I'd say your best workaround is to lower the PWM frequency by commenting out the TCCR2A and TCCR2B lines (148/9) in the setup() function and make sure your power supply can handle something like 15A of load current. |
When the plate heats up the 100uF capacitor C2 gets pretty hot.
NTC probe says something around 110°C...
This is pretty near the max temperature the cap is rated for.
I guess it's caused by reactive power die to the PWM. I measured with an oscilloscope and got drops of approx 1V @ 31.5 Khz.
Maybe this can be matched by a Coil?
The text was updated successfully, but these errors were encountered: