The PZEM PZCT-02 Current Transformer is a device designed to measure alternating current (AC) by producing a reduced current proportional to the current in its primary winding. This allows for safe monitoring and measurement of high AC currents without directly interfacing with the high voltage lines.
Parameter | Value |
---|---|
Manufacturer | PZEM |
Part ID | PZCT-02 |
Rated Input Current | 0-100A AC |
Output Current | 0-50mA AC |
Accuracy Class | 0.5 |
Operating Voltage | 660V AC |
Frequency Range | 50-60Hz |
Operating Temperature | -25°C to +70°C |
Insulation Resistance | ≥100MΩ |
Dielectric Strength | 3kV AC/1min |
Pin Number | Pin Name | Description |
---|---|---|
1 | S1 | Secondary winding terminal 1 |
2 | S2 | Secondary winding terminal 2 |
To measure the current using an Arduino UNO, you can use the following setup and code:
const int sensorPin = A0; // Pin connected to the burden resistor
const float burdenResistor = 100.0; // Burden resistor value in ohms
const float calibrationFactor = 0.05; // Calibration factor for the CT
void setup() {
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int sensorValue = analogRead(sensorPin); // Read the analog input
float voltage = sensorValue * (5.0 / 1023.0); // Convert to voltage
float current = voltage / burdenResistor; // Calculate current
current = current / calibrationFactor; // Apply calibration factor
Serial.print("Current: ");
Serial.print(current);
Serial.println(" A");
delay(1000); // Wait for 1 second before next reading
}
By following this documentation, users can effectively utilize the PZEM PZCT-02 Current Transformer for accurate and safe AC current measurement in various applications.