M2RTS-R-21-R/N
AI

The **M2RTS-R-21-R/N** is a specific model within the series of industrial-grade **Solid State Relays (SSRs)** or related power control modules, often associated with brands like **Anly Electronics** or similar industrial automation manufacturers.
Below is a detailed breakdown of its electronic components and specifications.
---
### 1. Technical Specifications Table
| Feature | Specification |
| :--- | :--- |
| **Control Voltage (Input)** | Typically 90-250V AC or 4-32V DC (Model dependent) |
| **Load Voltage (Output)** | 24-280V AC (Standard Range) |
| **Rated Load Current** | 21 Amperes |
| **Switching Type** | Zero Cross Switching (to minimize EMI) |
| **Dielectric Strength** | Over 2,500V AC |
| **Isolation** | Photo-coupler (Optical Isolation) |
| **Housing Material** | Heat-resistant ABS / PBT |
---
### 2. Core Electronic Components
The internal architecture of the M2RTS-R-21-R/N consists of several critical stages:
#### A. Input Circuit (Control Side)
* **Optoisolator (Photo-Triac):** This is the most important internal component. It uses light to transfer the signal from the input to the output, ensuring there is no electrical connection between the low-voltage controller (like a PLC) and the high-voltage load.
* **Current Limiting Resistor:** Protects the internal LED of the optoisolator from overcurrent.
* **LED Indicator:** A visible light-emitting diode on the casing that indicates when the control signal is active.
#### B. Trigger Circuit
* **Zero-Crossing Detector:** This circuit ensures that the relay only switches "ON" when the AC sine wave reaches zero volts. This prevents massive inrush currents and reduces electromagnetic interference (EMI).
#### C. Output Power Stage
* **TRIAC or Dual Thyristors (SCRs):** These are the components that actually handle the 21A current. They act as electronic switches with no moving parts, allowing for millions of cycles without mechanical wear.
* **Snubber Circuit (RC Network):** Internal resistors and capacitors placed in parallel with the output to protect the device from voltage spikes ($dv/dt$) caused by inductive loads like motors or solenoids.
---
### 3. Part Number Decoding (Typical)
While nomenclature varies slightly by manufacturer, the code usually breaks down as follows:
1. **M2RTS:** Series identifier (Solid State Relay / Power Module).
2. **R:** Output type (typically Resistive or Relaying).
3. **21:** Rated current (21 Amperes).
4. **R/N:** Control input type. "R" often denotes AC input, while "N" can refer to the specific mounting or terminal style.
---
### 4. Application and Wiring
This device is primarily used in environments where silent switching and high-speed cycling are required:
* **PID Temperature Controllers:** Driving heater bands.
* **Motor Control:** Small AC motors.
* **Lighting Systems:** Stage lighting or industrial signaling.
```cpp
// Example: Microcontroller logic to trigger the SSR
void setup() {
pinMode(SSR_CONTROL_PIN, OUTPUT);
}
void loop() {
// Turn on the M2RTS relay
digitalWrite(SSR_CONTROL_PIN, HIGH);
delay(5000);
// Turn off
digitalWrite(SSR_CONTROL_PIN, LOW);
delay(5000);
}
```
- ⤷
What is the difference between Zero-Cross and Random-Fire switching in this model?
- ⤷ Does this relay require an external heatsink for 21A operation?
- ⤷ How do I troubleshoot a 'leakage current' issue with this SSR?