Coil vs. Contact Side Wiring in a Multiplexer Bank
The fundamental advantage of an electromechanical multiplexer is galvanic isolation. The low-voltage control logic (the coil side) is physically separated from the high-voltage load routing (the contact side). Understanding how to wire both sides is critical for safety and signal integrity.
The Coil Side (Control Logic)
In modern smart panels, the coil side is typically driven by 12V or 24V DC from a PLC, an ESP32/Arduino via a shift register, or a dedicated multi-channel relay driver. Use 22 AWG or 20 AWG stranded wire for coil connections, and always crimp ferrule ends to prevent stray strands from bridging adjacent terminals on dense DIN-rail multiplexer blocks.
Critical DC Flyback Protection: When your controller de-energizes a DC relay coil, the collapsing magnetic field generates a high-voltage inductive spike (back-EMF). If you are multiplexing DC coils, you must install a flyback diode (such as a 1N4007) reverse-biased across the coil terminals, or use a multiplexer driver module with built-in TVS diodes and optocouplers. Failing to do this will instantly fry your microcontroller's GPIO pins or destroy the PLC's output transistors.
The Contact Side (Load Routing)
The contact side handles the actual load current. For 15A to 30A AC loads, use 12 AWG or 10 AWG THHN copper wire. Torque the terminal screws to the manufacturer's exact specification (e.g., 1.2 Nm for standard M3.5 screws on a Schneider Electric TeSys contactor). Undertorqued contacts create high resistance, leading to thermal runaway and melted terminal blocks under continuous load.
Sizing the Switches: Rating Tables and Load Paths
The most common mistake in switch multiplexing is reading the wrong column on the relay datasheet. Electromechanical switches are rated differently based on the physics of the load they are interrupting.
| Component Class | Coil Voltage | Resistive Rating (AC-1) | Motor/Inductive Rating (AC-3) | Breaking Capacity (kA) |
|---|---|---|---|---|
| Standard DIN Relay (e.g., Finder 55.34) | 24V DC / 120V AC | 7A @ 250V AC | 2A @ 250V AC | N/A (Relies on branch breaker) |
| Heavy Duty Contactor (e.g., TeSys D LC1D09) | 24V DC | 25A @ 440V AC | 9A @ 440V AC (AC-3) | 6 kA @ 440V AC |
| Definite Purpose Contactor (HVAC) | 24V AC | 40A FLA | 40A FLA / 240A LRA | 10 kA @ 240V AC |
Which Rating Column Governs This Load?
If your multiplexer channel switches a resistive load like a baseboard heater, the AC-1 (Resistive) column governs. However, if you are switching a compressor, well pump, or conveyor motor, the AC-3 (Motor) column governs. A contactor rated for 25A AC-1 might only be rated for 9A AC-3. Sizing a motor load based on the AC-1 column will result in welded contacts within a week due to the 6x-8x locked rotor amperage (LRA) inrush current.
| Load Type | Inrush Multiplier | Governing Rating Class | Multiplexer Selection Rule |
|---|---|---|---|
| Resistive (Heaters, Incandescent) | 1x to 1.5x | AC-1 | Size contact rating ≥ 125% of continuous load. |
| Inductive (Transformers, Solenoids) | 3x to 5x | AC-4 / AC-15 | Use contactors with high breaking capacity; add snubbers. |
| Motor (Pumps, Compressors, Fans) | 6x to 8x (LRA) | AC-3 | Size based on Full Load Amps (FLA) in the AC-3 column. |
| Tungsten / LED Drivers | 10x to 15x | AC-1 (Tungsten specific) | Use relays specifically rated for TV-5 or tungsten inrush. |
Note on Overcurrent Protection: Never confuse the contactor's breaking capacity (e.g., 6kA) with the branch circuit breaker's interrupting rating. The upstream breaker must have the appropriate thermal-magnetic trip curve (e.g., Type C or D for motor inrush) to protect the multiplexer contacts from welding during a short-circuit fault. Fuses and breakers are not interchangeable here; a standard Type B breaker will nuisance-trip on motor startup, while a fast-acting fuse might blow before the contactor can safely open.
Field Testing: Dead and Live Diagnostics
When a channel in your multiplexed matrix fails to route power, you must systematically isolate the fault to either the coil circuit, the mechanical armature, or the contact pads.
How to Test It Dead (De-energized)
- Verify Zero Energy: Use a non-contact voltage tester and a multimeter to confirm both the load side and coil side are dead.
- Coil Resistance Test: Set your multimeter to Ohms (Ω). Place probes across the coil terminals (usually A1 and A2). A healthy 24V DC coil typically reads between 50Ω and 300Ω. An infinite reading (OL) means the internal coil wire is broken; a reading of 0Ω means a dead short.
- Contact Continuity Test: Manually press the contactor's test button (or energize it temporarily via a bench supply if safe). Measure resistance across the Line and Load terminals. It must read < 0.1 ohms. Anything higher indicates carbon buildup or pitting.
How to Test It Live (Energized Under Load)
- Coil Voltage Drop: With the multiplexer commanded 'ON', measure AC or DC voltage directly across A1 and A2. It must be within 85% to 110% of the nominal coil voltage. If voltage is low, check for voltage drop in the long control wires from your PLC.
- Contact Voltage Drop (The Ultimate Test): With the load running, measure the AC voltage across the closed contacts (Line terminal to Load terminal). If you read a voltage drop greater than 0.2V to 0.5V while carrying 10A, the contacts are dissipating 2W to 5W as heat. This confirms the contacts are severely pitted and failing.
When to Repair vs. Replace
Electromechanical relays and contactors in the 10A-100A range are precision-calibrated, sealed or semi-sealed units. Never attempt to file, sand, or clean pitted contacts. Removing the silver-alloy plating exposes the base metal, which will oxidize rapidly and cause a thermal fire hazard. If your live voltage-drop test fails, or if you detect contact welding (the load stays on when the coil is de-energized), replace the entire contactor or relay module immediately.
FAQ: Electromechanical Switch Multiplexing
How do I prevent back-EMF when multiplexing DC relay coils from a microcontroller?
When an ESP32 or Arduino de-energizes a DC coil, the inductive kickback can exceed 100V, destroying the GPIO pin. You must wire a flyback diode (like a 1N4007) in reverse bias across the relay coil terminals (cathode to positive, anode to negative). Alternatively, use an opto-isolated relay multiplexer module (like those based on the PC817) which physically separates the microcontroller's low-voltage logic from the coil's inductive spike entirely.
Which rating column governs when multiplexing mixed resistive and inductive loads on one bus?
If a single multiplexed contactor switches a mixed load (e.g., a heater and a blower motor on the same circuit), the most stringent rating governs. You must use the AC-3 (Motor) rating for sizing the contactor, as the inductive inrush current will dictate the contact wear and arc-quenching requirements. Furthermore, consult NFPA 70 (NEC) Article 430 to ensure the branch circuit overcurrent protection is sized for the mixed load dynamics.
Why do my multiplexed contactors chatter or hum loudly when driven by a PLC?
Contactor chatter is almost always caused by insufficient coil voltage or incorrect coil type. If you are applying a multiplexed PWM signal or a rectified but unsmoothed DC signal to a standard DC coil, the armature will vibrate at the ripple frequency. Ensure your PLC output provides clean, steady DC. If using AC coils, ensure the control voltage is a pure sine wave; harmonic distortion from cheap inverters or triac-based solid-state multiplexers can cause severe 60Hz/120Hz humming and premature mechanical failure of the armature.
Can I use standard lighting relays for multiplexing HVAC motor loads in a smart panel?
No. Standard lighting relays (rated for AC-1 or basic tungsten loads) lack the arc chutes and heavy-duty silver-alloy contacts required to extinguish the high-energy arcs generated by motor inrush currents. For HVAC compressors and blower motors, you must use Definite Purpose Contactors (DPCs) or IEC-rated AC-3 contactors, such as those found in the Schneider Electric TeSys line. Using a lighting relay for a motor load will result in welded contacts and a potential fire hazard.






