Any of you geniuses out there know a simple way of making a heat controlled "fan controller" or a real fan controller for those PSU's that just have them running at full speed all the time? Is it as simple as just adding a little thermistor?
PSU fan controller
Collapse
X
-
Re: PSU fan controller
I made one with a TC648 IC.
http://www.microchip.com/wwwproducts...cName=en010720
There are a lot of other circuits you can use. I remember one on this forum that used a bunch of transistors. -
Re: PSU fan controller
It's usually not quite as simple as adding a little thermistor.
Usually, there's a voltage regulator or a current limiter which controls the speed using the resistance of the thermistor as if it was a potentiometer.
You can look for example at a datasheet for lm1117, which is a simple linear regulator that can output up to 0.8A which is enough for a fan:
Being a linear regulator, it means it needs a specific voltage above the output voltage to work properly, in this case of this voltage regulator the voltage is 1-1.2v.
So with this regulator, you could for example adjust the voltage of the fan between 5v and 11v, if you give it 12v at input.
If you scroll down to page 9, you can see a schematic for a simple adjustable regulator:
R1 is fixed, and recommended to be between 100 and 120 ohm, let's say you go with 100 ohm, so you're left with adjusting R2 to get 5-11v.
According to formula ...
R2 = (5v / 1.25v - 1 ) x 100 = 300 ohm (for 5v)
R2 = (11v / 1.25v - 1 ) x 100 = 780 ohm (for 11v)
So now you can pick a PTC (resistance goes up as temperature increases) so that when the psu is at 25-30c your ptc will give 300 ohm and when the temperature goes up to 60-80c your ptc will give 780-800 ohm or thereabouts.
Alternatively, you can also put a simple resistor in series with this ptc, for example in case you can only find a ptc that's 0 ohm when cold, 470 ohm when 90-100c then you could put a 330 ohm in series with this ptc.
Another example ... get a basic microcontroller and a mosfet/transistor and some capacitors. Use the ptc or ntc with another resistor to form a voltage divider and measure the voltage with the microcontroller. Based on that voltage, turn on and off the mosfet/transistor to adjust the power going to the fan.Comment
-
Re: PSU fan controller
There's a very simple one here (http://www.heatsink-guide.com/control.gif). The only trouble with it is, that it has an extremely 'aggressive' curve. 1-2*C lower than the target temperature, and the fan turns off. 1-2 higher, and it's at full speed.I love putting bad caps and flat batteries in fire and watching them explode!!
No wonder it doesn't work! You installed the jumper wires backwards
Main PC: Core i7 3770K 3.5GHz, Gigabyte GA-Z77M-D3H-MVP, 8GB Kingston HyperX DDR3 1600, 240GB Intel 335 Series SSD, 750GB WD HDD, Sony Optiarc DVD RW, Palit nVidia GTX660 Ti, CoolerMaster N200 Case, Delta DPS-600MB 600W PSU, Hauppauge TV Tuner, Windows 7 Home Premium
Office PC: HP ProLiant ML150 G3, 2x Xeon E5335 2GHz, 4GB DDR2 RAM, 120GB Intel 530 SSD, 2x 250GB HDD, 2x 450GB 15K SAS HDD in RAID 1, 1x 2TB HDD, nVidia 8400GS, Delta DPS-650BB 650W PSU, Windows 7 ProComment
-
Re: PSU fan controller
I have made adjustable "power supplies" but i never had a need to make one with a ptc or ntc.
For basic experiments and small projects, it's good enough.
In real world products, you won't see something like this because linear regulators are not particularly efficient (the difference between input voltage and output voltage turns to heat) and there's that voltage drop which means you don't get the fan running at 12v.
Basically and for example, if you run a 12v 200mA fan at low speed by setting the voltage to 6v, the fan will run slow but the linear regulator will dissipate (12v-6v) x 0.2A = 1.2 watts which means the regulator will be very warm/ hot and will heat the insides of the psu.
Most fan controlling stuff out there relies on limiting current instead of adjusting voltage for that reason, and because it also sidesteps the issue of heat (that happens with linear regulators). That's done by using a npn transistor (or something similar) in linear region or a mosfet...
You can see these methods on this page: http://www.talkingelectronics.com/pr...ET/MOSFET.htmlComment
-
Re: PSU fan controller
why not try something with pulse duration modulation?Things I've fixed: anything from semis to crappy Chinese $2 radios, and now an IoT Dildo....
"Dude, this is Wyoming, i hopped on and sent 'er. No fucking around." -- Me
Excuse me while i do something dangerous
You must have a sad, sad boring life if you hate on people harmlessly enjoying life with an animal costume.
Sometimes you need to break shit to fix it.... Thats why my lawnmower doesn't have a deadman switch or engine brake anymore
Follow the white rabbit.Comment
-
Re: PSU fan controller
i have one in my box at home, it has 2 input wires for constant 12V, a 2 pin thermal sensor, and 2 output wires for 12V fan.
you can get it from me, just cover few dollars of shipping
pulled from working FSP p/s but with bloated caps, and i used it for spare partsLast edited by domas; 11-15-2013, 03:31 AM.Comment
-
Re: PSU fan controller
A while ago, Th3_un1qu3 showed me a really simplified one (see attached picture).
The 10nF cap in parallel with the NTC is to give the fan a "kickstart", since it takes a higher voltage to start them, than to actually keep them spinning.
I'm guessing the "FAN" resistance is just its rated voltage divided by its rated current. Feel free to play around with the values in LTspice thoughKhron's Cave - Electronics - Audio - Teardowns - Mods - Repairs - Projects - Music - Rants - ShenanigansComment
-
Re: PSU fan controller
Not sure if it would pose a problem but the PTC's and NTC's usually have a terrible temp/resistance curve.
I could probably cobble one together sometime and see.
I would probably use a ramp generator circuit, and then compare the voltage from the PTC with the ramp, basically getting a PWM output.Last edited by ben7; 11-15-2013, 11:42 AM.Muh-soggy-kneeComment
-
Re: PSU fan controller
Getting some good ideas, will have to round up some parts!
In real world products, you won't see something like this because linear regulators are not particularly efficient
I found this fan controller from an old SF unit. interesting, although it has a button on the back to select "Auto, Slow, Fast" That's quite a row of BJT's.
Comment
-
Re: PSU fan controller
https://cdn.badcaps-static.com/pdfs/...26b16388c2.pdf
I guess it is doing some sort of PWM thing, and selecting different outputs of the 4017 depending on the button on the back. Is there any sort of signal generator/timer/oscillator on there?Muh-soggy-kneeComment
-
Re: PSU fan controller
Friend of mine is working on PWM regulator with Arduinos which will be able to regulate PSU fan with sensor attached to heatsink and fan connected to it…Less jewellery, more gold into electrotech industry!Half of the computer problems is caused by bad contacts
Exclusive caps, meters and more!Hardware Insights - power supply reviews and more!Comment
-
Re: PSU fan controller
Here's another fan controller that prevents the fan voltage from going below a minimum:Comment
-
Re: PSU fan controller
I think you'll find that's "cheaped out on", not "forgot"...Khron's Cave - Electronics - Audio - Teardowns - Mods - Repairs - Projects - Music - Rants - ShenanigansComment
-
Re: PSU fan controller
Found this one here:
"... The thermistor is connected in a voltage divider, so that as its resistance changes, the voltage at the input of the op-amp changes. The non-inverting input is connected to a potentiometer to set the reference voltage, which effectively sets the lower limit on the fan speed. The output voltage follows the difference in voltage at the two inputs. The output is connected to a small transistor which is darlington-connected to a power transistor that acts as a current amplifier, which drives the fans.
This circuit is a difference amplifier with negative feedback. As temperature increases, the difference in voltage between the op-amp's inputs increases. This causes the op-amp's output voltage to increase, causing the transistor output voltage to increase. This makes the fans spin faster, which hopefully results in the temperature decreasing. As the temperature goes down, the fans slow down. Use the potentiometer to set the low fan speed to suit your setup, I prefer 6-8V output at room temperature (i.e. when the computer is cold) ..."Comment
Related Topics
Collapse
-
by master3112I have an ASUS ROG Strix- G513IH-HN008, motherboard G513-6050A3249301- MB-A04 (A4)
When I received the device, the device has no function. After an investigation, I found that the PWM CONTROLLER RT6575B (U6100) is getting warm and there is a short circuit at the 3V3 output. This normally supplies 3V3 for the embedded controller IT5571E-128 (U301). When measuring and analyzing with a thermal imaging camera, I found that some components are damaged: SLG4E42553VTR (U8500), IT5571E-128 (U301), LAN RTL8111H (U450), LOGIC 74LVC1G08GW (U1900), RT6575B (U6100) All these components are on... -
by nmbbMachine: Autoclave.
Brand/Model: SANYO MLS-3780
Manual: (Sorry search option not working on this PDF)
Hello guys, this autoclave running with 2 thermistors already connected TH1 and TH3(on CN1,CN2 sockets). One for the water temperture and second one for chamber temperature. But there is another emtpy socket for optional third thermistor CN2 wich is for TH2 for object temperature. I wanna add the third thermistor TH2 to CN2 socket. But i can't figure what model/brand/value i need to use. In manual document, there is no info about TH1 and TH3 model number... -
by ja1870Hi all,
Just presuming it is a thermistor, and NTC, as when contacts are jumped (so zero resistance), the currently *not-moving* 12V case fan revs up to full speed.
By eye (FWIW) about 1.75mm x 2.5mm, and no writing noticed.
This is from an external 3.5" disk drive enclosure with a cooling fan, and the "thermal probe" - as it was called in the original installation manual - is held against the top-side of the HDD near the spindle.
Hoping to simply replace it with a close-enough component.
Thanks.
Edit: after some further random visual-type web-searches,... -
by ronnygraciasThe treadmill was working fine, one day the belt snapped and after checking the unit I also noticed that the display is now showing the Controller comm error. So I opened it up and the treadmill had two boards. One is a power supply board and the other is the motor controller. I noticed there was a mouse nest, so I took power supply board out, cleaned it up, replaced the big capacitor and that did nothing. Then I took apart the motor controller and cleaned that up, and when I plugged it in, it started right up. I thought I fixed it. But when the belt arrived, I installed it and tried to power...4 Photos
-
by sam_sam_samI recently bought a used tankless hot water heater and the controller board is completely dead no power up when power is applied the display board works however the main controller board does not work correctly at all the fuse is good
I bought a used replacement controller board that also had issues that I was able to fix and now the tankless water heater works correctly now
However I would like to know if I could figure what happened to this controller board if possible
Tomorrow I will take some better pictures of both side of both boards
The... - Loading...
- No more items.
Comment