Identifying PWM Fans

My local radio shack doesn't carry the transistor BC549C. Is there another one than can be used in its place that radio shack might have?

A TIP120 will work. Or any logic level MOSFET. Ratshack will usually have tip120s.

I am guessing is probably what you are trying to achieve: http://ruggedcircuits.com/html/circuit_-7.html. If you use a darlington (ie tip120) instead of a mosfet you can lose the pulldown resistor.

Important note: you need a diode across any inductive load.... Google "flyback diode" for more information on why.

Note... the third lead on DC fans usually just delivers a pulse each time the fan rotates so you can tell its running. the pulse lead do not control the fan speed (you can use them to measure the fan speed and change V accordingly)

-d
 
I found this one at Radio Shack. The specs say it Max rate is 3A @ 40W. I would think at would be enough for a Fan that is 12vdc and most I have seen are less than 100mA.

http://www.radioshack.com/product/index.jsp?productId=2062610#tabsetBasic

That will work. Or the TIP120 as woganaga mentioned.

One Last thought. I wired my LDD-700 for dimming, the the LDD Vin- has the GRD from both the Arduino and the 48VDC power supply together. If I wire the fan like the schematic states above, then I will have the GRD for the Arduino, 48VDC PS and the 12VDC PS all connected. Is this OK?

Not only is it OK, it HAS to be that way!
 
There's something that I don't understand about the Schematic I posted above. Why is all that needed to connect a PWM Fan to an Arduino Board? Shouldn't I just be able to connect Fan+ to the 12DC PS+, the Fan- to both the PS- and the Arduino GRD, then just connect the Fan PWM wire to the Arduino PWM PIN?
 
If you find a fan with PWM control, you can probably do that. These will be 4-wire fans.

Basically, this is the hierarchy of PC fans:

1) Two wire fans have a positive and negative wire, and run at a constant rpm for a given voltage. There's no control or feedback. You can "control" these by either chopping the voltage (with a transistor driven by a PWM signal) or linearly controlling the DC voltage.

2) Three wire fans have a positive and negative wire, and a tach wire. They function EXACTLY the same as a two wire fan, but they have a feedback mechanism (the third wire). The third wire does not let you control the fan. Instead, it provides a pulse (two per RPM) to allow you to determine the speed the fan is running at. You can control these fans the same ways as mentioned above, with the caveat that PWM'ing the power source for a 3 wire fan will mean that the tach signal becomes useless, as the circuit that creates that signal (from a hall sensor on the fan) won't be powered when the PWM signal is low, so you'll "miss" pulses.

3) Four wire fans are just like three wire, but they also have a "PWM" wire. There is a controller inside the fan that interprets the signal on the PWM wire and controls the fan's speed. It's not always a 1:1 duty cycle ratio, often the fan's internal controller will apply some sort of logic depending on the fan's original intended use (i.e. it'll have a minimum cutoff point where it shuts off below a certain duty cycle, or it'll revert to a minimum RPM when the duty cycle drops below a certain point). 4-wire fans were created to allow a PWM signal to control the fan while still retaining the tach signal, and also to allow the fan to carry intelligence as described above. This can be a failsafe mechanism such that the fan will behave in a known state if the controller stops sending a PWM signal, for example. 4-wire fans can also be controlled by PWM'ing the power source, as described for 2-wire fans, with the same caveat that doing so will mean that the tach signal will be useless.

The lowest common denominator is that ALL of these fans can be controlled by PWM'ing the power source, or by directly controlling the input voltage. The real caveats are that PWM'ing the power source can be noisy, as most fans will exhibit "growl" at the PWM frequencies you're likely to be generating from something like an Arduino. The bad thing about the other option, controlling the voltage, is that many of these fans will have a point where they start to behave inconsistently - if you drop the voltage below a given point, they might just stop suddenly after a few minutes, or they might not start if your starting voltage is too low.

There's a whole niche of fan controller circuits out in industry, with all kinds of different features to solve the above problems. You can pretty easily recreate most of these features with a microcontroller, but to me, after a point, it all becomes moot. Most of the applications where highly featured fan control are important are very dynamic environments. Think about the PC on your desk. It's sitting there idling along, and then all of a sudden you tell it to play a big video file, or render some complex graphic, and the processor's thermal load increases tenfold, for a few minutes, then dies back down. The fan needs to needs to be able to adjust to that sort of incredibly dynamic load.

By contrast, most of the things on a fish tank that need cooling are incredibly predictable. LEDs, for instance, will follow the same pattern of warming up, churning out a predictable amount of heat for 8 or 10 hours, then cooling down. To me, this means that it's less important to have a dynamic thermal management approach, because you can design to the known load and then add a failsafe (thermal sensor on the heatsink, or some way to detect the fan has stopped) and be done with it.

Just food for thought...
 
Actually, all of that made since to me. Thanks

So ..... Since my LEDs are nothing like a computer where the cooling requirements can fluctuate from minute to minute, I should just wire the fans to come on at a set time and then turn off with the lights. The PWM control is really not needed.

Question: Will all DC Fans with 4 wires be a PWM Fan? If not, what else could the four wires be for?
 
So ..... Since my LEDs are nothing like a computer where the cooling requirements can fluctuate from minute to minute, I should just wire the fans to come on at a set time and then turn off with the lights. The PWM control is really not needed.

Personally, that's the approach I would take. If the fans are too strong, get different fans or run them on a 9v wall wart instead of 12v. And especially if you're getting used fans from a junk shop, I'd over-design (i.e. if you think you need one fan, put two in). This way, if there's a fan failure, you have time to notice it before it becomes critical.

Or, if you can, design so you don't need fans. They're noisy, failure prone, and worst of all they tend to be dust magnets. It kind of defeats the purpose of having a fan to cool some electronics device if all the fan ends up doing is blow/suck dust onto said device until the dust is so thick it overheats.

Question: Will all DC Fans with 4 wires be a PWM Fan? If not, what else could the four wires be for?

I suppose there could be exceptions, but that will pretty much always be the case for fans meant for PCs or other computer equipment.
 
Identifying PWM Fans

Actually, all of that made since to me. Thanks

So ..... Since my LEDs are nothing like a computer where the cooling requirements can fluctuate from minute to minute, I should just wire the fans to come on at a set time and then turn off with the lights. The PWM control is really not needed.

Question: Will all DC Fans with 4 wires be a PWM Fan? If not, what else could the four wires be for?

Answer: It does appear a fan with 4 wires is PWM, should be red/black/blue/green. Check out the pdf I just found online for additional information which should help:
http://www.formfactors.org/developer\specs\4_Wire_PWM_Spec.pdf
 
I hope this works

50EACE3B-7B39-4598-A84C-CDAC109E391D-4880-0000071AD5776F24.jpg


CD369B4C-1A5E-4B48-A345-2C34A586469C-4880-0000071A99BB5EB3.jpg
 
So lets turn this from controlling PWM fans with an Arduino board to trying to control a pump.

Is there any such thing as a PWM Power Head that I could control with an Arduino 5V PWM Signal?

Could I use the little circuit I made above to control a power head?
 
So lets turn this from controlling PWM fans with an Arduino board to trying to control a pump.

Is there any such thing as a PWM Power Head that I could control with an Arduino 5V PWM Signal?

Could I use the little circuit I made above to control a power head?

There are tunze powerheads that run DC and are probably controllable this way. You could use a triac to control an ac powerhead (as a switch / not PWM)
 
Cheapest DC pump from Tunze is still over $230... Not sure if they are pwm controlled or analog controlled.

There is also the Jebao WP-40 which is a cheaper alternative for messing around, at $85 i wouldn't feel nearly as bad poking and prodding it than the equivalent (6105) Tunze pump at $340. This has been dissected and found to have an analog 5V control. Same method for using PWM on the fans would work for this, just at the lower source voltage.
 
The Fans are working great and with just a $5 I was able to make my two fans PWM controllable.

Now for a new problem ....


I found this thread about my problem.

I am using an Arduino Mega 2560 to control LDD-700s for my LEDs and a 8 channel relay board for my wavemaker and heater. Whenever one of the relays disengages, I get a blink on my fuge LEDs during the day, and my dlsplay LEDs during the night. I'm pretty sure I am having the problem described above.

What can I do to stop it? Will putting a diode across the coils stop it? And if so, what diode do I need and where do I hook it up at. I have this Relay Board.

Thanks everyone
Billy


Quote:
Originally Posted by Chris27 *
I think you hit the nail right on the head, when relays switch, they create a pulse (emi) down the line, and given that everything is ultimately tied to the same power source, that is most likely the cause to your problem.*

When we design things in the real world (non-hobby), we use shielded cables and /or build filters into the circuits to reduce or eliminate emi, as it can cause some serious issues when you're dealing with sensitive electronics, or precision devices. In your case, a light simply flashes, while it may end the bulb prematurely, it's really not a concern unless you want to further complicate your DIY setup.

Quote:
Originally Posted by der_wille_zur_macht *
If it's buggering your RKL I'd be really nervous, especially if the RKL has control over anything critical (heater? chiller? etc.). Instability with a refugium light might not bother you, but if it causes other issues you're not currently aware of your tank could be at risk.

Quote:
Originally Posted by R2E2 *
Try putting a protection diode across the relay coil.
 
Sorry to bring back old thread.

Anyone know if I could connect 5 of the 2-wire fans together? I'm running 1 fan using bc549c now but not sure how to wire multiples.
 
Red to red, black to black, and enough current from the supply to run them all and you are set.

Hmm. That's it? Lol, didn't thought of that, I'm keep thinking that I need to put transistor and resistor on each fan.
 
Was able to powered up 3 fans only and transistor (BC549C) got too hot.

Will the TIP120 do a better job?
 
the first page, post 21, has some info on tip120. There is also some other good info there also. What is the ratings of the fans and the tip120?
 
the first page, post 21, has some info on tip120. There is also some other good info there also. What is the ratings of the fans and the tip120?

I have no idea what's the rating of those fans (they're 12v, 92mm brushless fans that came with Makersled heatsink).
 
Tried the tip120, still only 3 fans running, at least the tip120 didn't burn up like the bc549.


NM, working now. All 6 fans running, the molex cable I used to bridge the fans together was bad.
 
Last edited:
Back
Top