

The 60x60x20 Fan 24V is a compact axial fan designed for efficient cooling in electronic and industrial applications. With dimensions of 60mm x 60mm x 20mm and a 24V operating voltage, this fan is ideal for dissipating heat and maintaining optimal operating temperatures in devices such as power supplies, 3D printers, computer systems, and other heat-sensitive equipment. Its small size and reliable performance make it a popular choice for thermal management in confined spaces.








The following table outlines the key technical specifications of the 60x60x20 Fan 24V:
| Parameter | Specification |
|---|---|
| Dimensions | 60mm x 60mm x 20mm |
| Operating Voltage | 24V DC |
| Current Consumption | ~0.1A (varies by model) |
| Power Consumption | ~2.4W |
| Airflow | ~20-25 CFM (Cubic Feet per Minute) |
| Noise Level | ~25-30 dBA |
| Bearing Type | Sleeve or Ball Bearing (varies) |
| Connector Type | 2-pin or 3-pin (depending on model) |
| Operating Temperature | -10°C to +70°C |
| Lifespan | ~30,000 to 50,000 hours |
The fan typically comes with a 2-pin or 3-pin connector. The pin configuration is as follows:
| Pin Number | Wire Color | Description |
|---|---|---|
| 1 | Red | Positive (+24V DC) |
| 2 | Black | Ground (GND) |
| Pin Number | Wire Color | Description |
|---|---|---|
| 1 | Red | Positive (+24V DC) |
| 2 | Black | Ground (GND) |
| 3 | Yellow | Tachometer Signal (optional) |
If you are using the 3-pin version of the fan and want to monitor its speed, you can connect the tachometer signal to an Arduino UNO. Below is an example code snippet:
// Example code to read the tachometer signal from a 60x60x20 Fan 24V
// Connect the fan's yellow wire to Arduino pin 2 (interrupt pin)
const int tachPin = 2; // Tachometer signal pin
volatile int fanRPM = 0; // Variable to store fan speed in RPM
volatile int pulseCount = 0; // Count of tachometer pulses
void setup() {
pinMode(tachPin, INPUT_PULLUP); // Set tachometer pin as input
attachInterrupt(digitalPinToInterrupt(tachPin), countPulses, FALLING);
Serial.begin(9600); // Initialize serial communication
}
void loop() {
delay(1000); // Wait for 1 second
noInterrupts(); // Disable interrupts to calculate RPM
fanRPM = (pulseCount * 60) / 2; // Calculate RPM (2 pulses per revolution)
pulseCount = 0; // Reset pulse count
interrupts(); // Re-enable interrupts
Serial.print("Fan Speed: ");
Serial.print(fanRPM);
Serial.println(" RPM");
}
void countPulses() {
pulseCount++; // Increment pulse count on each falling edge
}
Fan Not Spinning:
Excessive Noise:
Low Airflow:
Tachometer Signal Not Working:
Q1: Can I use this fan with a 12V power supply?
A1: No, the fan is designed for 24V DC operation. Using a lower voltage may result in reduced performance or failure to start.
Q2: How do I determine the airflow direction?
A2: The airflow direction is indicated by arrows on the fan housing. One arrow shows the airflow direction, and the other shows the blade rotation direction.
Q3: Can I control the fan speed?
A3: This fan does not have built-in PWM control. However, you can use an external PWM controller or a transistor circuit to modulate the voltage and control the speed.
Q4: What is the lifespan of this fan?
A4: The fan typically has a lifespan of 30,000 to 50,000 hours, depending on operating conditions and maintenance.