The Noctua NF-A4x20 is a high-performance cooling fan designed for compact electronic systems. With a 40mm size, 5V power requirement, and PWM control, this fan offers precise speed adjustments up to 5000 RPM. It is engineered for efficient and quiet operation, making it ideal for applications where space is limited but effective cooling is essential.
Parameter | Value |
---|---|
Manufacturer | Noctua |
Part ID | NF-A4x20 |
Size | 40mm x 40mm x 20mm |
Voltage | 5V |
Current | 0.1A |
Power Consumption | 0.5W |
Speed | 5000 RPM (max) |
Airflow | 9.4 m³/h |
Noise Level | 14.9 dB(A) |
Bearing Type | SSO2 Bearing |
Connector Type | 4-pin PWM |
Pin Number | Pin Name | Description |
---|---|---|
1 | GND | Ground |
2 | +5V | Power Supply (5V) |
3 | RPM | Tachometer Output (Speed Feedback) |
4 | PWM | Pulse Width Modulation (Speed Control) |
To use the Noctua NF-A4x20 fan in a circuit, follow these steps:
Arduino UNO Noctua NF-A4x20
----------- ----------------
GND --------------> GND
5V --------------> +5V
D3 --------------> PWM
A0 --------------> RPM (optional)
// Noctua NF-A4x20 Fan Control with Arduino UNO
const int pwmPin = 3; // PWM control pin
const int rpmPin = A0; // RPM feedback pin (optional)
void setup() {
pinMode(pwmPin, OUTPUT);
pinMode(rpmPin, INPUT);
Serial.begin(9600);
}
void loop() {
// Set fan speed to 50% duty cycle
analogWrite(pwmPin, 128);
// Read RPM feedback (optional)
int rpmValue = analogRead(rpmPin);
Serial.print("RPM Value: ");
Serial.println(rpmValue);
delay(1000); // Wait for 1 second
}
Fan Not Spinning:
Fan Speed Not Adjustable:
Excessive Noise:
Q: Can I use the fan with a 3.3V power supply?
Q: What is the optimal PWM frequency for this fan?
Q: How can I monitor the fan speed?
Q: Can I use this fan in a 3D printer?
This documentation provides a comprehensive guide to using the Noctua NF-A4x20 5V PWM 5000RPM fan in various applications. Whether you are a beginner or an experienced user, this guide will help you effectively integrate this high-performance cooling fan into your projects.