công cụ tìm kiếm bảng dữ liệu linh kiện điện tử
  Vietnamese  ▼
ALLDATASHEET.VN

X  

  • ADE7759

  • AI
    The **ADE7759** is a high-accuracy electrical energy measurement IC designed for single-phase systems. It features a digital interface and specialized signal processing to measure active energy, peak current, and peak voltage. --- ### 1. Functional Block Overview The internal architecture of the ADE7759 is composed of several key electronic sections: | Section | Description | | :--- | :--- | | **ADCs** | Two 16-bit Sigma-Delta ($\Sigma\Delta$) Analog-to-Digital Converters for current and voltage channels. | | **DSP Engine** | A fixed-function Digital Signal Processor that calculates active power by multiplying current and voltage samples. | | **di/dt Interface** | A digital integrator that allows direct connection to **Rogowski coil** sensors. | | **Reference** | An internal low-drift 2.4V bandgap reference voltage. | | **Serial Interface** | An SPI-compatible interface for reading internal registers and calibration data. | --- ### 2. Key Technical Specifications The device is optimized for metering applications where precision is critical. * **Measurement Error:** Less than 0.1% over a dynamic range of 1000:1. * **Power Supply:** 5V single supply operation. * **Power Consumption:** Low power (typically 12mW). * **Package:** 20-lead SSOP. * **Communication:** SPI (Serial Peripheral Interface). --- ### 3. Connection and Input Channels The ADE7759 processes signals through two primary channels: #### Current Channel (V1) * Supports **Current Transformers (CT)** or **Rogowski Coils**. * Includes a programmable gain amplifier (PGA) to allow for different sensor sensitivities. * The digital integrator (which can be turned off) is specific to the ADE7759, distinguishing it from the ADE7756. #### Voltage Channel (V2) * Typically connected via a resistor divider network to step down line voltage (e.g., 220V/110V) to the ADC input range ($\pm 0.5V$). --- ### 4. Digital Features and Registers Unlike basic analog energy ICs, the ADE7759 stores data in internal registers that a microcontroller can access: ```cpp // Example: Conceptual logic for reading Active Energy via SPI uint32_t readEnergy() { SPI.transfer(0x02); // Command to read Active Energy Register uint8_t b1 = SPI.transfer(0x00); uint8_t b2 = SPI.transfer(0x00); uint8_t b3 = SPI.transfer(0x00); return (b1 << 16) | (b2 << 8) | b3; } ``` --- ### 5. Application Circuit Diagram (Simplified) To use the ADE7759, the hardware designer must implement the following: 1. **Antialiasing Filters:** Simple RC networks ($1k\Omega$ and $33nF$) on the $V1$ and $V2$ inputs to remove high-frequency noise. 2. **Crystal Oscillator:** A 3.579545 MHz crystal provides the master clock (CLKIN). 3. **Isolation:** For safety, if the IC is referenced to the "Live" wire, the SPI signals must be isolated using optocouplers or digital isolators.
    ✨ Follow-up Questions
    • What are the primary differences between the ADE7759 and the ADE7753?
    • How do you calibrate the ADE7759 for accurate active energy readings?
    • Can the ADE7759 be used for DC energy measurement?