The Noctua PWM FAN is a high-performance cooling fan designed for use in computer systems and other electronic applications requiring efficient heat dissipation. Utilizing Pulse Width Modulation (PWM) technology, this fan allows precise speed control, enabling optimal cooling performance while maintaining low noise levels. Known for its durability and reliability, the Noctua PWM FAN is a popular choice among PC enthusiasts, system builders, and engineers.
The Noctua PWM FAN is available in various models, each with slightly different specifications. Below are the general technical details for a typical Noctua PWM FAN:
Parameter | Specification |
---|---|
Operating Voltage Range | 12V DC ± 10% |
Rated Current | 0.05A to 0.15A (varies by model) |
Power Consumption | 0.6W to 1.8W (varies by model) |
Fan Speed Range | 300 RPM to 2000 RPM (PWM controlled) |
Airflow | Up to 70 CFM (varies by model) |
Noise Level | 18 dBA to 25 dBA (varies by model) |
Connector Type | 4-pin PWM |
Bearing Type | SSO2 (Self-Stabilizing Oil Pressure) |
Lifespan | >150,000 hours (MTTF) |
The Noctua PWM FAN uses a standard 4-pin connector for power and control. The pinout is as follows:
Pin Number | Name | Description |
---|---|---|
1 | GND | Ground connection for the fan motor |
2 | +12V | Positive power supply for the fan motor |
3 | Sense | Tachometer output for monitoring fan speed (provides 2 pulses per revolution) |
4 | PWM | Pulse Width Modulation input for speed control (active high, 25 kHz frequency) |
Below is an example of how to control the Noctua PWM FAN using an Arduino UNO:
// Example: Controlling Noctua PWM FAN with Arduino UNO
// This code generates a PWM signal to control the fan speed.
const int pwmPin = 9; // PWM pin connected to the fan's PWM input
void setup() {
pinMode(pwmPin, OUTPUT); // Set the PWM pin as an output
}
void loop() {
// Set fan speed to 50% (128 out of 255)
analogWrite(pwmPin, 128);
delay(5000); // Run at 50% speed for 5 seconds
// Set fan speed to 100% (255 out of 255)
analogWrite(pwmPin, 255);
delay(5000); // Run at full speed for 5 seconds
// Set fan speed to 0% (0 out of 255)
analogWrite(pwmPin, 0);
delay(5000); // Stop the fan for 5 seconds
}
analogWrite()
function generates a PWM signal on the specified pin.Fan Does Not Spin
Fan Spins at Full Speed Constantly
Fan Speed Cannot Be Controlled
High Noise Levels
Can I use the Noctua PWM FAN with a 3-pin connector?
What is the recommended PWM frequency?
Can I use the fan with a lower voltage (e.g., 5V)?
How do I clean the fan?
By following this documentation, you can effectively integrate the Noctua PWM FAN into your projects for efficient and quiet cooling.