The NHP DIN-T Main Switch 2Pole 80A is a robust and reliable device designed to control the flow of electrical current in a circuit. It serves as a critical component in electrical systems, allowing users to safely open or close circuits as needed. This main switch is particularly suited for industrial, commercial, and residential applications where high current handling and safety are paramount.
The following table outlines the key technical details of the NHP DIN-T Main Switch 2Pole 80A:
Specification | Details |
---|---|
Manufacturer | NHP |
Part ID | DIN-T Main Switch 2Pole 80A |
Number of Poles | 2 |
Rated Current | 80A |
Rated Voltage | 415V AC |
Mounting Type | DIN Rail |
Operating Temperature | -25°C to +55°C |
IP Rating | IP20 |
Mechanical Endurance | 10,000 operations |
Electrical Endurance | 1,500 operations at full load |
Compliance Standards | IEC 60947-3, AS/NZS 3947.3 |
The NHP DIN-T Main Switch 2Pole 80A has the following terminal configuration:
Terminal | Description |
---|---|
L1 | Line input for the first pole |
L2 | Line input for the second pole |
T1 | Load output for the first pole |
T2 | Load output for the second pole |
Earth (E) | Optional grounding terminal for safety |
While the NHP DIN-T Main Switch 2Pole 80A is not directly compatible with Arduino due to its high current and voltage ratings, it can be used in conjunction with relays or contactors controlled by an Arduino. Below is an example of how to use an Arduino to control a relay that operates the main switch:
// Example code to control a relay for the main switch using Arduino
const int relayPin = 7; // Pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the relay is off initially
}
void loop() {
// Turn the relay on to close the main switch
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the switch on for 5 seconds
// Turn the relay off to open the main switch
digitalWrite(relayPin, LOW);
delay(5000); // Keep the switch off for 5 seconds
}
Note: Ensure the relay module is rated for the voltage and current of the main switch. Use proper isolation techniques to protect the Arduino from high voltages.
Switch Does Not Operate Smoothly:
Overheating of Terminals:
Switch Fails to Isolate Power:
Arcing During Operation:
By following this guide, users can safely and effectively utilize the NHP DIN-T Main Switch 2Pole 80A in their electrical systems.