Stufin
Home Quick Cart Profile

220v AC Cooling Fan - 120mm120mm38mm

Buy Now on Stufin

Name

220V AC Cooling Fan - 120mm120mm38mm

Category

Cooling and Thermal Management

Functionality

The 220V AC Cooling Fan - 120mm120mm38mm is a high-quality, high-performance fan designed to provide efficient air circulation and cooling for various applications, including electronics, computers, and industrial equipment. Its primary function is to dissipate heat generated by components, ensuring optimal operating temperatures, and prolonging their lifespan.

Key Features

  • Voltage and Frequency: The fan operates on a standard 220V AC power supply, with a frequency of 50-60 Hz.
  • Dimensions: The fan measures 120mm in width, 120mm in length, and 38mm in height, making it suitable for compact spaces and enclosures.
  • Airflow and Speed: The fan is capable of delivering a high airflow rate of up to 35 CFM (cubic feet per minute), with a speed of 1500 RPM (revolutions per minute).
  • Noise Level: The fan operates at a relatively low noise level of 25 dBA, ensuring minimal disturbance and suitable for noise-sensitive applications.
  • Bearing Type: The fan features a Sleeve Bearing design, which provides smooth operation, low friction, and extended lifespan.
  • Connector Type: The fan comes with a standard 3-pin connector, compatible with most motherboards and fan controllers.
  • MTBF (Mean Time Between Failures): The fan has a rated MTBF of 30,000 hours, ensuring reliable operation and minimal downtime.
  • Certifications: The fan complies with international safety and quality standards, including UL, CE, and RoHS.
  • Environmental Operating Range: The fan is designed to operate in a wide range of temperatures (-10C to 40C) and humidity levels (up to 80% RH).
  • Materials: The fan's housing and blades are constructed from durable, high-quality materials, ensuring long-term reliability and resistance to corrosion.

Applications

The 220V AC Cooling Fan - 120mm120mm38mm is suitable for a variety of applications, including

Electronics and computer systems

Industrial control systems and equipment

Telecommunication devices and infrastructure

Medical devices and equipment

Audio and video equipment

Technical Specifications

| Specification | Value |

| --- | --- |

| Voltage | 220V AC |

| Frequency | 50-60 Hz |

| Dimensions | 120mm x 120mm x 38mm |

| Airflow | Up to 35 CFM |

| Speed | 1500 RPM |

| Noise Level | 25 dBA |

| Bearing Type | Sleeve Bearing |

| Connector Type | 3-pin |

| MTBF | 30,000 hours |

| Certifications | UL, CE, RoHS |

| Operating Temperature | -10C to 40C |

| Operating Humidity | Up to 80% RH |

| Materials | Durable, high-quality materials |

Warranty and Support

The 220V AC Cooling Fan - 120mm120mm38mm is backed by a comprehensive warranty and dedicated customer support team, ensuring prompt assistance and resolution for any technical issues or concerns.

Pin Configuration

  • 220v AC Cooling Fan - 120mm120mm38mm
  • Pinout Description:
  • The 220v AC Cooling Fan has a total of 3 pins, which are responsible for powering the fan and controlling its operation. Here's a detailed explanation of each pin:
  • Pin 1: Live (L) - Brown Wire
  • Function: Carries the live AC voltage (220V) from the power source to the fan.
  • Description: This pin is connected to the live wire of the 220V AC power supply.
  • Connection: Connect the brown wire to the live terminal of the power source (e.g., a wall outlet or a power adapter).
  • Pin 2: Neutral (N) - Blue Wire
  • Function: Carries the neutral AC voltage (220V) from the power source to the fan.
  • Description: This pin is connected to the neutral wire of the 220V AC power supply.
  • Connection: Connect the blue wire to the neutral terminal of the power source (e.g., a wall outlet or a power adapter).
  • Pin 3: Ground (G) - Yellow/Green Wire
  • Function: Provides a safety ground connection to prevent electrical shock.
  • Description: This pin is connected to the grounding system of the device or enclosure.
  • Connection: Connect the yellow/green wire to the grounding terminal of the device or enclosure.
  • Connection Structure:
  • To connect the pins of the 220v AC Cooling Fan, follow this structure:
  • 1. Live (L) - Brown Wire:
  • Connect the brown wire to the live terminal of the power source (e.g., a wall outlet or a power adapter).
  • 2. Neutral (N) - Blue Wire:
  • Connect the blue wire to the neutral terminal of the power source (e.g., a wall outlet or a power adapter).
  • 3. Ground (G) - Yellow/Green Wire:
  • Connect the yellow/green wire to the grounding terminal of the device or enclosure.
  • Important Safety Notes:
  • Always ensure the fan is installed in a well-ventilated area to prevent overheating.
  • Use a suitable power source with a rated voltage of 220V AC.
  • Connect the fan to a grounded power source to prevent electrical shock.
  • Avoid overloading the fan with excessive voltage or current.
  • Keep the fan away from flammable materials and avoid obstructing airflow.

Code Examples

Component Documentation: 220V AC Cooling Fan - 120mm120mm38mm
Overview
The 220V AC Cooling Fan is a high-performance fan designed for cooling electronic devices and systems. With its compact size of 120mm120mm38mm, it is an ideal solution for applications where space is limited. This fan operates on 220V AC power and has a robust design that ensures reliable operation in demanding environments.
Electrical Characteristics
Operating Voltage: 220V AC
 Power Consumption: 15W
 Current: 0.68A
 Frequency: 50/60Hz
 Speed: 2600 RPM
 Air Flow: 76 CFM
 Noise Level: 35 dBA
Connectors and Wiring
The fan has a standard 2-pin AC power connector. The wiring diagram is as follows:
Pin 1: Live Wire (Brown)
 Pin 2: Neutral Wire (Blue)
Code Examples
Here are some code examples demonstrating how to use the 220V AC Cooling Fan in various contexts:
Example 1: Basic On/Off Control using an Arduino Board
This example demonstrates how to control the fan using an Arduino board. The fan is connected to a relay module, which is controlled by the Arduino.
```cpp
const int relayPin = 2;  // Choose a digital pin on your Arduino board
void setup() {
  pinMode(relayPin, OUTPUT);
}
void loop() {
  digitalWrite(relayPin, HIGH);  // Turn the fan ON
  delay(5000);  // Wait for 5 seconds
  digitalWrite(relayPin, LOW);  // Turn the fan OFF
  delay(5000);  // Wait for 5 seconds
}
```
Example 2: Automatic Temperature Control using a Raspberry Pi and a Temperature Sensor
This example demonstrates how to use the fan in conjunction with a temperature sensor and a Raspberry Pi to create an automatic temperature control system. The fan is connected to a relay module, which is controlled by the Raspberry Pi.
```python
import RPi.GPIO as GPIO
import time
# Set up the GPIO pin for the relay
relay_pin = 17
GPIO.setmode(GPIO.BCM)
GPIO.setup(relay_pin, GPIO.OUT)
# Set up the temperature sensor
temp_sensor_pin = 18
GPIO.setup(temp_sensor_pin, GPIO.IN)
while True:
    # Read the temperature from the sensor
    temperature = read_temperature(temp_sensor_pin)
    
    if temperature > 30:  # If the temperature exceeds 30C
        GPIO.output(relay_pin, GPIO.HIGH)  # Turn the fan ON
    else:
        GPIO.output(relay_pin, GPIO.LOW)  # Turn the fan OFF
    
    time.sleep(1)  # Wait for 1 second
```
Remember to replace the `read_temperature()` function with the actual implementation for your temperature sensor.
Important Safety Notes
Ensure the fan is installed in a well-ventilated area to prevent overheating.
 Avoid touching the fan blades or electrical components while the fan is in operation.
 Follow proper safety guidelines when working with 220V AC power systems.