

The 60x60x20 Fan 24V is a compact axial fan designed for efficient cooling in electronic and industrial applications. With its 60mm x 60mm x 20mm dimensions and 24V operating voltage, this fan is ideal for dissipating heat in confined spaces, ensuring optimal performance and longevity of electronic components. Its lightweight and durable design make it a popular choice for use in power supplies, 3D printers, computer systems, and other heat-sensitive devices.








Below are the key technical details and pin configuration for the 60x60x20 Fan 24V:
| Parameter | Value | 
|---|---|
| Dimensions | 60mm x 60mm x 20mm | 
| Operating Voltage | 24V DC | 
| Current Consumption | ~0.1A to 0.2A (typical) | 
| Power Consumption | ~2.4W to 4.8W | 
| Airflow | ~20-30 CFM (varies by model) | 
| Noise Level | ~25-35 dBA | 
| Bearing Type | Sleeve or Ball Bearing | 
| Connector Type | 2-pin or 3-pin JST | 
| 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. Below is the pin description:
| Pin Number | Wire Color | Description | 
|---|---|---|
| 1 | Red | Positive (+24V) | 
| 2 | Black | Ground (GND) | 
| Pin Number | Wire Color | Description | 
|---|---|---|
| 1 | Red | Positive (+24V) | 
| 2 | Black | Ground (GND) | 
| 3 | Yellow | Tachometer (RPM Signal) | 
The 60x60x20 Fan 24V can be controlled using an Arduino UNO and a transistor for switching. Below is an example circuit and code to control the fan's speed using PWM (Pulse Width Modulation):
// Arduino code to control the speed of a 24V fan using PWM
// Ensure the fan is connected via a transistor for proper switching
const int fanPin = 9; // PWM pin connected to the transistor base
void setup() {
  pinMode(fanPin, OUTPUT); // Set the fan control pin as output
}
void loop() {
  // Example: Gradually increase and decrease fan speed
  for (int speed = 0; speed <= 255; speed++) {
    analogWrite(fanPin, speed); // Set fan speed (0-255)
    delay(10); // Small delay for smooth ramp-up
  }
  for (int speed = 255; speed >= 0; speed--) {
    analogWrite(fanPin, speed); // Decrease fan speed
    delay(10); // Small delay for smooth ramp-down
  }
}
Fan Not Spinning:
Excessive Noise:
Overheating Components:
Fan Spins Intermittently:
Can I use this fan with a 12V power supply? No, the fan is designed for 24V operation. Using a lower voltage will result in reduced performance or failure to spin.
How do I monitor the fan's RPM? If using a 3-pin fan, connect the yellow wire to a microcontroller's input pin and use a tachometer library or code to read the RPM signal.
What is the difference between sleeve and ball bearings? Sleeve bearings are quieter but have a shorter lifespan, while ball bearings are more durable and suitable for high-temperature environments.
Can I control the fan speed without an Arduino? Yes, you can use a PWM controller or a variable resistor to adjust the fan speed manually.