The Lauritz Knudsen MNX 9 Magnetic Contactor is an electrically controlled switch designed for high-current applications. It operates by using an electromagnet to close or open its contacts, enabling or interrupting the flow of current in a power circuit. Unlike standard relays, magnetic contactors are specifically engineered to handle higher loads, making them ideal for industrial and commercial applications.
The following table outlines the key technical details of the MNX 9 Magnetic Contactor:
Parameter | Value |
---|---|
Manufacturer | Lauritz Knudsen |
Part ID | MNX 9 |
Rated Operational Voltage | 690V AC |
Rated Current | 9A |
Coil Voltage Options | 24V AC/DC, 110V AC, 230V AC |
Frequency | 50/60 Hz |
Number of Poles | 3 (Three-phase) |
Contact Configuration | Normally Open (NO) |
Mechanical Durability | 10 million operations |
Electrical Durability | 1 million operations (at full load) |
Operating Temperature | -25°C to +55°C |
Mounting Type | DIN Rail or Panel Mount |
Dimensions (H x W x D) | 77mm x 45mm x 85mm |
Weight | 0.4 kg |
The MNX 9 Magnetic Contactor has the following terminal layout:
Terminal | Description |
---|---|
L1, L2, L3 | Input terminals for the three-phase power supply |
T1, T2, T3 | Output terminals for the load (e.g., motor) |
A1, A2 | Coil terminals for energizing the contactor |
Auxiliary Contacts | Optional terminals for control circuits (if equipped) |
Power Supply Connection:
Load Connection:
Coil Connection:
Auxiliary Contacts (Optional):
Mounting:
Testing:
The MNX 9 can be controlled using an Arduino UNO by energizing its coil with a relay module. Below is an example code snippet:
// Example code to control the MNX 9 Magnetic Contactor using an Arduino UNO
// The Arduino controls a relay module, which energizes the contactor's coil.
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 contactor ON
digitalWrite(relayPin, HIGH); // Energize the relay
delay(5000); // Keep the contactor ON for 5 seconds
// Turn the contactor OFF
digitalWrite(relayPin, LOW); // De-energize the relay
delay(5000); // Keep the contactor OFF for 5 seconds
}
Note: Use a relay module that can handle the coil voltage and current of the MNX 9. Ensure proper isolation between the Arduino and the high-voltage circuit.
Contactor Does Not Close:
Excessive Heating:
Contacts Sticking:
Humming Noise:
Q: Can the MNX 9 be used for single-phase applications?
A: Yes, but only one pair of input and output terminals (e.g., L1 and T1) should be used.
Q: What is the maximum switching frequency?
A: The MNX 9 can handle up to 1200 operations per hour under normal conditions.
Q: Can I use the MNX 9 outdoors?
A: The MNX 9 is not weatherproof. Use it in a protected enclosure if installed outdoors.
Q: How do I know if the contactor is faulty?
A: If the coil is energized but the contacts do not close, or if the contacts are visibly damaged, the contactor may need replacement.