Library - Zmpt101b Proteus

To use the ZMPT101B AC Voltage Sensor in Proteus, you typically need to import a custom library since it is not a standard built-in component. 1. Download and Install the ZMPT101B Library

Key Features: Small size, lightweight, and easy PCB mounting. Operating Voltage: Requires a DC supply of 5V to 30V. zmpt101b proteus library

For the prudent engineer, the path forward is hybrid: To use the ZMPT101B AC Voltage Sensor in

Here's what you need to know:

  • L1 = 10 H, L2 = 0.00019 H (turns ratio ~ sqrt(10/0.00019) ≈ 230:1), K = 0.999
  • Rpri = 5 Ω, Rsec = 1 Ω

Alternative Approach:

void loop() sum = 0; // Sample 1000 points for accurate RMS for (int i = 0; i < 1000; i++) float sample = analogRead(sensorPin) * (5.0 / 1023.0); float vMains = (sample - offset) / sensitivity; sum += sq(vMains); delayMicroseconds(100); // Simulate 10kHz sampling L1 = 10 H, L2 = 0

No posts to display

12 COMMENTS

LEAVE A REPLY

Please enter your comment!
Please enter your name here