Fan clutch upgrade...

PROFG

Full Access Member
Joined
Aug 14, 2019
Posts
147
Reaction score
37
Location
SE CT
Continuing work on fan clutch setup for main purpose of fixing leaky IDI version. Hope to get usable one at pick&pull tomorrow and run on spare motor with ac motor and serp belt. Pulled/replaced 3 times the leaker on Teddy and still not working right. Need more silicone oil and better way to test (heat gun pointing to bimetallic sensor and NO FAN. Oh hell, that won't work, no torque load. I guess i could mount shroud and screen in front for safety.:eek:
 

Slicknik

Full Access Member
Joined
Apr 5, 2019
Posts
235
Reaction score
144
Location
Burbank, CA
@robert alston

Here is the discussion on electric fan clutches upgrade if this helps your super duty build
If your looking to go this route or traditional fan clutch I would stick with motorcraft or Hayden
 

tjsea

Full Access Member
Joined
Jan 8, 2007
Posts
656
Reaction score
381
Location
Lickdale, PA
@ifrythings I was just reading through this some more again. How has it been working for you? Have you done more tuning with the Arduino? Also on another note, I've never done much with the Arduino micro computers or any home built controller for that matter, how hard are they to set up and make work for this?

Sent from my SAMSUNG-SM-G890A using Tapatalk
 
Last edited:

ifrythings

Full Access Member
Joined
Dec 17, 2011
Posts
734
Reaction score
485
Location
BC
@ifrythings I was just reading through this some more again. How has it been working for you? Have you done more tuning with the Arduino? Also on another note, I've never done much with the Arduino micro computers or any home built controller for that matter, how hard are they to set up and make work for this?

The fan has been working good for me, I haven’t had a chance to tow anything with it yet but how it performed this summer with the AC on and some off roading was great. Not a whole lot you can “tune” with this as it’s just on/off control at some set point that can be whatever you want to be.

As for the Arduino, programming is fairly easy but depends on how quickly you can learn the basics of the programming language. To make a basic fan controller with a display wouldn’t be very difficult as there is a ton of examples out there that one could get and modify easily to work. After the basics are working you just keep adding on functions you want till your happy with what you have.

I have found that there’s a lot of good factory sensors out there (not the cheap gauge sensors but the efi sensors) one could use to make a very large multi gauge setup if they wanted and not have to spend $1000s on aftermarket gauges.
 

tjsea

Full Access Member
Joined
Jan 8, 2007
Posts
656
Reaction score
381
Location
Lickdale, PA
The fan has been working good for me, I haven’t had a chance to tow anything with it yet but how it performed this summer with the AC on and some off roading was great. Not a whole lot you can “tune” with this as it’s just on/off control at some set point that can be whatever you want

I'm assuming from this that you haven't been able to get the PWM control to work as you wanted for partial locking? Are the Arduinos able to do the PWM for the fan eventually? I'm really liking that you are able to turn the fan on with the AC. Also I like that the fan is able to be controlled based off of actual temp sensors and not just the spring in the front like the original idi fan clutches. I keep throwing this idea around a lot in my head. It seems like a win-win situation. One more question, is the Arduino able to control the clutch directly from the board or does the fan clutch pull too much juice and need to be run through a relay? Thanks for keeping us all updated, it seems like a great upgrade.


Sent from my SAMSUNG-SM-G890A using Tapatalk
 

ifrythings

Full Access Member
Joined
Dec 17, 2011
Posts
734
Reaction score
485
Location
BC
I'm assuming from this that you haven't been able to get the PWM control to work as you wanted for partial locking? Are the Arduinos able to do the PWM for the fan eventually? I'm really liking that you are able to turn the fan on with the AC. Also I like that the fan is able to be controlled based off of actual temp sensors and not just the spring in the front like the original idi fan clutches.

One more question, is the Arduino able to control the clutch directly from the board or does the fan clutch pull too much juice and need to be run through a relay?

The Arduino Nano( small version of the uno) has several pwm outputs, I am currently using pwm to control the fan, at 212f it outputs 50%, 220f it outputs 75% and 230f goes 100%. When the AC pressure gets over 260psi on the high side it turns the fan on 100% and the transmission temperature is set to 220f and 100% fan but being a manual trans I haven’t seen it get over 140-150f. I haven’t got the engine hot enough to see if the fan truly ramps up or not with those duty cycle settings, I also don’t know if the fan is linear like that or if full off to full on mite be 20-40% and anything less or more just doesn’t do anything.

The Arduino can not directly power the fan clutch, from some quick testing I did a while back, the fan drew around 2Amps, the Arduino can only do 25mA(0.025Amps) max per output. I used a mosfet transistor to buffer the Arduino and supply the higher current for the fan clutch. You cannot pwm a relay, if you try you will get one of several out comes, if the pwm is too low the relay won’t do anything, somewhere in the middle range and the relay will be switching on and off very fast wearing it out in very short order, and a too high pwm and the relay will just stay on.
Relays are good for simple on/off circuit control like having the high idle solenoid turn on below some temp and turn off over some temp.

If one looks around there is a ton of oem high quality sensors out there that can be had for a low cost or even grabbed from the junkyard and added to the Arduino.

A few sensors I’m using so far are:
Temperature sensor, liquid and air styles
Pressure sensors, oil, fuel, AC, boost...
EGT sensors, the newer PS trucks (6.4L, 6.7L) have egt probes that go up to 1800f and are the thermistor type so no special circuits, wires or plugs needed like with thermocouples.

One could get a newer (I think 6L and up) alternator and control it’s charging voltage also.

These are just some of the things you can do with a small microcontroller like the Arduino or PIC micros.
 
Top