The SCT013 30A/1V is a non-invasive current transformer designed for measuring alternating current (AC). It is widely used in energy monitoring systems to measure current without requiring direct electrical contact with the conductor. The device outputs a voltage signal proportional to the current flowing through the conductor, with a maximum output of 1 volt when the primary current reaches 30 amps.
Below are the key technical details of the SCT013 30A/1V current transformer:
Parameter | Value |
---|---|
Model | SCT013 30A/1V |
Maximum Primary Current | 30 A |
Output Voltage | 1 V (at 30 A primary current) |
Core Material | Ferrite |
Accuracy Class | ±1% |
Operating Frequency | 50 Hz - 1 kHz |
Internal Burden Resistor | Yes |
Cable Length | 1 meter |
Output Connector | 3.5 mm audio jack |
The SCT013 30A/1V has a simple interface with the following connections:
Pin/Connection | Description |
---|---|
Tip (3.5 mm Jack) | Positive voltage output proportional to the measured current |
Sleeve (3.5 mm Jack) | Ground reference for the output signal |
Connect the Transformer:
Add a Load Resistor (if needed):
Interface with a Microcontroller:
Calibrate the System:
Below is an example of how to use the SCT013 30A/1V with an Arduino UNO to measure AC current:
// Include necessary libraries
const int sensorPin = A0; // Analog pin connected to SCT013 output
const float calibrationFactor = 30.0; // Calibration factor for 30A/1V
void setup() {
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int sensorValue = analogRead(sensorPin); // Read analog value from SCT013
float voltage = (sensorValue / 1023.0) * 5.0; // Convert to voltage (5V ADC)
// Calculate current using calibration factor
float current = (voltage / 1.0) * calibrationFactor;
// Print the measured current to the Serial Monitor
Serial.print("Current: ");
Serial.print(current);
Serial.println(" A");
delay(1000); // Wait 1 second before next reading
}
No Output Signal:
Inaccurate Readings:
Noise in Output Signal:
Saturation or Clipping:
Q: Can the SCT013 measure DC current?
A: No, the SCT013 is designed for AC current measurement only. It cannot measure DC current.
Q: Do I need an external burden resistor?
A: No, the SCT013 30A/1V includes an internal burden resistor. However, verify this for your specific model.
Q: Can I use the SCT013 with a Raspberry Pi?
A: Yes, but since the Raspberry Pi lacks an analog input, you will need an external ADC (Analog-to-Digital Converter) to interface the SCT013 with the Raspberry Pi.
Q: What happens if I reverse the clamp orientation?
A: Reversing the clamp orientation will invert the polarity of the output signal. Ensure the arrow on the clamp points in the direction of current flow for correct readings.