AI

The **CSO2H** (often categorized under the **CSO** series of current sensors) is a high-precision, Hall-effect current transducer. It is primarily used for measuring AC, DC, and pulsed currents with galvanic isolation between the primary circuit (high power) and the secondary circuit (electronic control).
---
### 1. Internal Electronic Components
The device operates on the **Closed-Loop (Zero Flux)** principle. Below are the core internal components:
| Component | Function |
| :--- | :--- |
| **Magnetic Core** | Concentrates the magnetic field generated by the primary current. |
| **Hall Element** | A semiconductor sensor located in the air gap of the core that detects magnetic flux. |
| **Operational Amplifier** | Amplifies the small voltage signal from the Hall element to drive the compensation coil. |
| **Secondary (Compensation) Coil** | Winds around the core to create an opposing magnetic field that cancels the primary flux. |
| **Internal Resistor** | Used to stabilize the output current before it reaches the user-defined burden resistor. |
---
### 2. Key Technical Specifications
While specific values can vary slightly by manufacturer (e.g., LEM or ChiChuang), the typical electronic characteristics of the CSO2H series are:
* **Primary Nominal Current ($I_{pn}$):** Typically rated for high ranges (e.g., 200A to 2000A depending on the specific model suffix).
* **Conversion Ratio:** Common ratios are 1:2000 or 1:5000 (Primary current vs. Secondary output current).
* **Supply Voltage ($V_c$):** Usually requires a dual power supply, typically **±15V to ±24V DC**.
* **Accuracy:** High linearity, usually **<0.1%** at rated current.
* **Response Time:** Extremely fast, often **<1 μs**, making it suitable for high-speed switching protection.
---
### 3. Circuit Interface (Secondary Side)
To read the data from a CSO2H, the secondary side is typically wired as follows:
| Pin/Terminal | Connection Type | Description |
| :--- | :--- | :--- |
| **+V** | Positive Supply | Connected to +15V / +24V. |
| **-V** | Negative Supply | Connected to -15V / -24V. |
| **M / Out** | Measurement | Connected to a **Burden Resistor ($R_m$)** then to Ground. |
| **GND / 0V** | Common | The reference point for the power supply. |
---
### 4. Typical Applications
* **Variable Speed Drives:** Monitoring motor current for precise torque control.
* **UPS Systems:** Managing battery charging and inverter output.
* **Welding Power Supplies:** Ensuring stable DC output for high-quality welds.
* **Renewable Energy:** Used in solar inverters to monitor grid-tie current injection.
---
### 5. Implementation Example (Calculating Output)
If you have a CSO2H with a conversion ratio of **1:2000** measuring a **100A** primary current:
```python
# Simple Python calculation for Secondary Current
primary_current = 100 # Amps
turns_ratio = 2000
secondary_current = primary_current / turns_ratio
print(f"Secondary Output: {secondary_current * 1000} mA")
# Result: 50 mA
```
---
- ⤷What is the difference between Open-Loop and Closed-Loop Hall sensors?
- ⤷ How do I calculate the maximum burden resistor value for the CSO2H?
- ⤷ Can the CSO2H measure DC current bidirectional?