データシートサーチシステム
  Japanese  ▼
ALLDATASHEET.JP

X  

  • WCT-1CB-R

  • AI
    The **WCT-1CB-R** is an electronic component typically associated with **current monitoring and measurement applications**. It is a current transformer (CT) designed for PCB mounting, primarily used to sense alternating current (AC) in power management systems. ### 1. General Specifications Below are the typical technical parameters for the WCT series current transformers: | Feature | Specification (Typical) | | :--- | :--- | | **Component Type** | AC Current Transformer (CT) | | **Primary Current Range** | 0.1A to 20A (Model dependent) | | **Turns Ratio** | 1000:1 or 2000:1 | | **Operating Frequency** | 50Hz / 60Hz | | **Mounting Type** | Through-Hole (PCB Mount) | | **Dielectric Strength** | 2500V - 3000V AC (Isolation) | | **Enclosure** | PBT Fire retardant / Epoxy encapsulated | --- ### 2. Key Electronic Functions The WCT-1CB-R functions based on the principle of electromagnetic induction: * **Current Scaling:** It converts a high primary current (the wire passing through the center) into a smaller, manageable secondary current. * **Galvanic Isolation:** It provides a safety barrier between the high-voltage power lines and the low-voltage control circuitry (e.g., Microcontrollers). * **Measurement Precision:** High permeability magnetic cores are used to ensure linear output relative to the input current, minimizing phase shift. --- ### 3. Basic Circuit Application To read the output of a WCT-1CB-R with a microcontroller (like an Arduino or ESP32), a **Burden Resistor** must be used to convert the secondary current into a voltage. ```cpp // Example: Converting ADC reading to RMS Current float getACCurrent(int adcValue) { float voltage = (adcValue / 1024.0) * 5.0; // Assuming 5V system float secondaryCurrent = voltage / BURDEN_RESISTOR_VALUE; float primaryCurrent = secondaryCurrent * TURNS_RATIO; return primaryCurrent; } ``` --- ### 4. Common Use Cases * **Energy Meters:** Measuring household or industrial power consumption. * **Overload Protection:** Detecting high current spikes to trigger circuit breakers or relays. * **Home Automation:** Monitoring if an appliance (like a washing machine or motor) is currently running. * **Solar Inverters:** Monitoring AC output to ensure grid synchronization. ---
    ✨ Follow-up Questions
    • What is the recommended burden resistor value for the WCT-1CB-R?
    • Can this component measure DC current?
    • How do I calculate the turns ratio if it is not labeled?