S-DW32-R
AI

The **S-DW32-R** typically refers to a **Magnetic Proximity Sensor** (often a Reed Switch type) commonly used in security systems, industrial automation, and door/window monitoring. It is designed to detect the presence or absence of a magnetic field.
Below is a breakdown of its electronic components and specifications.
### 1. Key Technical Specifications
| Feature | Specification |
| :--- | :--- |
| **Switch Type** | Reed Switch (Normally Closed/Normally Open) |
| **Contact Material** | Rhodium or Ruthenium (Plated for durability) |
| **Max Voltage** | ~100V DC/AC |
| **Max Current** | 0.5A |
| **Housing Material** | ABS Plastic (Fire retardant) |
| **Operating Distance** | 15mm - 25mm |
| **Connection Type** | Wired (Screw terminals or Lead wires) |
---
### 2. Internal Electronic Components
The device consists of two main physical parts that work together:
#### A. The Reed Switch (The Active Part)
The core component is a small glass envelope containing two thin metal "reeds."
* **The Contact Leads:** These are made of ferromagnetic material.
* **The Glass Seal:** Filled with an inert gas (like Nitrogen) to prevent oxidation of the contacts.
* **Operation:** When a magnetic field is brought close, the reeds become polarized and pull together, completing the circuit.
#### B. The Permanent Magnet (The Passive Part)
The second housing contains a high-quality permanent magnet (usually Neodymium or Ferrite). It requires no power and serves only to trigger the reed switch when in proximity.
#### C. Protective Circuitry (Optional/Internal)
In high-end versions of the S-DW32 series, you may find:
* **Series Resistors:** To limit current and prevent the reeds from "welding" together during a short circuit.
* **Tamper Switch:** A secondary circuit that triggers an alarm if the housing is opened or the wires are cut.
---
### 3. Wiring Configuration
Depending on the specific model variation, the wiring logic follows standard security protocols:
```cpp
// Logic Representation
If (Magnet == Close) {
Circuit = CLOSED; // Alarm loop is secure
} else {
Circuit = OPEN; // Alarm is triggered
}
```
---
### 4. Installation & Environment
* **Surface Mount:** Designed to be screwed onto frames (S for Surface).
* **Gap Distance:** It is critical to maintain a gap of less than 20mm for reliable electronic switching.
* **Weather Resistance:** The ABS housing protects the internal glass reed switch from moisture and dust (usually rated IP64 or higher).
- ⤷
What is the difference between NC and NO configurations for this sensor?
- ⤷ How do I test if the internal reed switch of the S-DW32-R is broken?
- ⤷ Can this sensor be used with a 24V PLC system?