Digitize AC Voltage & Current Signals - Solutions for Split CT

In summary, the goal of this project is to measure power consumption in a home. They would use a raspberry and Arduino to collect the data and then transmit it to a remote display device. They would need to measure 4 signals and avoid using kits.
  • #1
dvscrobe
51
11
I am looking to digitize AC voltage and current signals that are measurements from my breaker panel. Any thoughts on what could be used to digitize the AC current? This current would be coming from split CT.
 
Engineering news on Phys.org
  • #2
Can you say more about your overall project? Is your goal to measure the power consumption of your home? If so, what-all kinds of power are you wanting to measure (Real, Reactive, etc.). Are you wanting to also measure harmonics and AC Line quality? To what accuracy?

Will you be monitoring the AC Mains input voltage plus individual breaker currents (how many?), or just one overall measurement of the input power for the whole panel?

What kind of computer resources do you have for monitoring this digitized data? What interfaces are available? (USB, Bluetooth, WiFi, etc.)

If you can say more about the number of V and I channels you need to digitize, and if you need to use synchronized sampling (for the various types of power measurements including power factor), and give us an idea of what computing resources you are going to use with this, that will be a big help.

Finally, do you plan to do the programming for this system, or would you prefer to use a canned HW/SW package that gives you a GUI and all of your data recorded for you?
 
  • Like
Likes dvscrobe and dlgoff
  • #3
berkeman said:
Can you say more about your overall project? Is your goal to measure the power consumption of your home? If so, what-all kinds of power are you wanting to measure (Real, Reactive, etc.). Are you wanting to also measure harmonics and AC Line quality? To what accuracy?

Will you be monitoring the AC Mains input voltage plus individual breaker currents (how many?), or just one overall measurement of the input power for the whole panel?

What kind of computer resources do you have for monitoring this digitized data? What interfaces are available? (USB, Bluetooth, WiFi, etc.)

If you can say more about the number of V and I channels you need to digitize, and if you need to use synchronized sampling (for the various types of power measurements including power factor), and give us an idea of what computing resources you are going to use with this, that will be a big help.

Finally, do you plan to do the programming for this system, or would you prefer to use a canned HW/SW package that gives you a GUI and all of your data recorded for you?
Hello Berkeman, I am looking for power consumption of entire home. Just the real power would be fine but having both real and reactive would be awesome. Don't care about harmonics or line quality. The accuracy should be to display to the nearest Watt and Var.

Computer resources? Well, I was hoping to use what I am hearing a lot about these days. A raspberry and Arduino. This is a capstone project idea I have proposed for my BSEET program. Getting the data to smartphone would be ideal but the criteria would simply be to transmit data wireless to any kind of remote display device.

The transducers I think would have to be an instrument PT for each 120V leg, a split CT on the return to ground to measure all phase to ground loads, and a split CT on one of the legs to measure all phase to phase loads. So, with that, I would need to digitize 4 signals. However, this will get me apparent power. Not sure how will I get real and reactive. I need something to measure phase angle and digitize that.

Not sure what synchronized sampling is. I have to avoid as much as possible kits because it is a capstone project. I have to do a lot of the work from scratch. My programming experience is limited to a Java course I took on Object Oriented Programming and a LabVIEW course on Graphical Programming. I am hoping the code to write is not that much.
 
Last edited by a moderator:
  • #4
Do you have three phase power in your home?

It sounds like you're making it more complicated than necessary. Can't you assume that the phases are balanced so that you need to measure only one?

Do you need instantaneous values or averages? If averages, over what period of time?

Do you really care about imaginary power?

You can calculate real and imaginary power from instantaneous V * I, no need to measure phase angles. But easier still to use watt meters and to sample less frequently.

What is your goal with this project? Do you want to improve efficiency? Do you want to track energy consumption down to each individual light bulb and cell phone charger? There are several ways to think of it. It would help if you tell us which.

You can buy whole house power monitoring systems for less than $150. Are you sure you want DIY?

Safety is paramount. The electrical/physical/environmental/abuse properties of the PT and CT installations need to be professionally designed. Do you have the qualifications to do that? Be aware that if you install stuff that violates applicable codes you might invalidate your home insurance.
 
  • Like
Likes berkeman and dvscrobe
  • #5
Have you researched the commercial products that do this?
 
  • Like
Likes berkeman and dvscrobe
  • #6
anorlunda said:
Do you have three phase power in your home?

It sounds like you're making it more complicated than necessary. Can't you assume that the phases are balanced so that you need to measure only one?

Do you need instantaneous values or averages? If averages, over what period of time?

Do you really care about imaginary power?

You can calculate real and imaginary power from instantaneous V * I, no need to measure phase angles. But easier still to use watt meters and to sample less frequently.

What is your goal with this project? Do you want to improve efficiency? Do you want to track energy consumption down to each individual light bulb and cell phone charger? There are several ways to think of it. It would help if you tell us which.

You can buy whole house power monitoring systems for less than $150. Are you sure you want DIY?

Safety is paramount. The electrical/physical/environmental/abuse properties of the PT and CT installations need to be professionally designed. Do you have the qualifications to do that? Be aware that if you install stuff that violates applicable codes you might invalidate your home insurance.
Hello Anorlunda, I am a resident, so singe phase, not three phase. I need to be able to sample the voltage and current. For sake of a grade, I would be comfortable with just displaying real power. Reactive would be nice to have. The goal is for me to see on a remote graphical device (wireless) that shows real time Watts usage.

Since I am sampling, this display would update after a certain time period. I am thinking every 5 seconds would be nice. This is a Capstone project, so this project has to benefit society in some way using technological means. Therefore, the application would be for a homeowner to help analyze efficiency of major appliances. Track down to each light bulb? No. I would want to see whole consumption. So, if I had several loads going on (60 Watt bulb, 800 Watt toaster, and 400 Watt refrigerator), my graphical display would show 1260 Watts for the individual moment sampling took place. I just threw in those numbers as an example.

Buy systems and kits? Well, I would love to, but then I wouldn't get much of grade. Again, it's a capstone project. I appreciate the safety concerns you mention and will definitely take the home insurance mention into consideration.
 
  • #7
russ_watters said:
Have you researched the commercial products that do this?
Russ, Currently in process of doing that.
 
  • Like
Likes berkeman
  • #8
dvscrobe said:
The transducers I think would have to be an instrument PT for each 120V leg, a split CT on the return to ground to measure all phase to ground loads, and a split CT on one of the legs to measure all phase to phase loads. So, with that, I would need to digitize 4 signals. However, this will get me apparent power. Not sure how will I get real and reactive. I need something to measure phase angle and digitize that.

Not sure what synchronized sampling is. I have to avoid as much as possible kits because it is a capstone project. I have to do a lot of the work from scratch. My programming experience is limited to a Java course I took on Object Oriented Programming and a LabVIEW course on Graphical Programming. I am hoping the code to write is not that much.
I'm not sure that this project is a good match for your background so far. It would be a challenging project even for me, and I have lots of experience with AC Mains, data acquisition, DSP programming to process the digitized sensor signals, and even powerline metrology. With you not having much programming experience and not understanding synchronous sampling, that would tend to indicate that this project is not a good match.

And as @anorlunda says, working closely with AC Mains in the breaker panels can cause safety problems and invalidate your homeowner/renter insurance. And worse it could get you or others hurt.

Have you had any other ideas for your capstone project? Something that preferably does not involve AC Mains circuitry and connections?

https://www.skyfilabs.com/blog/good-capstone-projects-for-eee-students
 
Last edited:
  • Like
Likes KalleMP, phinds and anorlunda
  • #9
dvscrobe said:
Hello Anorlunda, I am a resident, so singe phase, not three phase.
Mine is split-phase, so it has 2 hots and I have 2 CTs. You sure yours is single-live single phase? Who is the target audience/market?
 
  • #10
russ_watters said:
Mine is split-phase, so it has 2 hots and I have 2 CTs. You sure yours is single-live single phase? Who is the target audience/market?
Russ, sorry, I think we are saying same thing. I have 240V service with a center tap. Target audience would be typical homeowner.
 
  • Like
Likes russ_watters
  • #11
dvscrobe said:
The transducers I think would have to be an instrument PT for each 120V leg, a split CT on the return to ground to measure all phase to ground loads, and a split CT on one of the legs to measure all phase to phase loads.
I think a CT on each hot will measure any current you need. You will get a better grade if you can demonstrate why you don't need to know neutral current if you know the current phasor for each hot.
 
  • Like
Likes russ_watters
  • #12
Averagesupernova said:
I think a CT on each hot will measure any current you need. You will get a better grade if you can demonstrate why you don't need to know neutral current if you know the current phasor for each hot.
Averagesupernova, yes, thanks. Had to think about that a little. Since real and reactive powers can be added to find total real and reactive power, I could measure the phase-ground voltage on one leg and the CT current on same leg to measure the 120V loads there, then do the same concept for the other leg. Then, for the 240V loads, I could measure the the phase to phase voltage along with the current on one of the legs. All real powers would get added, then all reactive powers would get added. I understand that installing split core CT's on energized main conductors would require asking for a disconnect from the power company by pulling the meter.
 
  • #13
dvscrobe said:
I understand that installing split core CT's on energized main conductors would require asking for a disconnect from the power company by pulling the meter.
This is not correct. I'd tell you why, but at this point I don't want to encourage you to pursue this project.
 
  • Like
Likes russ_watters
  • #14
dvscrobe said:
I understand that installing split core CT's on energized main conductors would require asking for a disconnect from the power company by pulling the meter.
You're getting into an area that only licensed electricians can do. And they will do it only if it complies with the National Electrical Code.
dvscrobe said:
This is a Capstone project, so this project has to benefit society in some way using technological means.
You're not going to benefit society if people break the law, or start fires, or get injured, or have to spend more money on an electrician than a commercial power monitor costs. Please heed the advice that @berkeman gave you. This is not suitable for a student project.

You should also know that many people can access data from their smart power meters at often as once every 30 seconds. They do that digitally by accessing the power company's web site. That can provide the same benefits as your project, and of course is it completely safe and legal.
 
  • Like
Likes KalleMP, berkeman and phinds
  • #15
dvscrobe said:
Averagesupernova, yes, thanks. Had to think about that a little. Since real and reactive powers can be added to find total real and reactive power, I could measure the phase-ground voltage on one leg and the CT current on same leg to measure the 120V loads there, then do the same concept for the other leg. Then, for the 240V loads, I could measure the the phase to phase voltage along with the current on one of the legs. All real powers would get added, then all reactive powers would get added. I understand that installing split core CT's on energized main conductors would require asking for a disconnect from the power company by pulling the meter.
Ok. It's pretty clear you're in over your head here. I would think projects like this would have maybe one area that the person would be unclear with but based on what you've posted so far there are to many things you are not grasping. You would not do the CTs and PTs in the manner you describe. The hot-to-hot PT is redundant.
 
  • Like
Likes berkeman
  • #16
@dvscrobe -- We are happy to help you with your projects, but as you can see from the multiple replies above, this AC Mains project is not a good idea for your capstone project. This thread is now closed.

If you would like to discuss a different capstone project, please feel free to start a new thread. Please stay safe -- we want you to be a healthy EE grad! :smile:
 
  • Like
Likes hutchphd

1. How does split core technology work in digitizing AC voltage and current signals?

Split core technology uses a split core current transformer (CT) to measure the AC voltage and current signals. The split core design allows the CT to be easily installed around the wire or conductor without the need for disconnecting the circuit. This makes it ideal for retrofitting or adding to existing systems.

2. What are the benefits of using split core technology for digitizing AC voltage and current signals?

Split core technology offers several benefits, including easy installation, accurate measurement, and the ability to monitor different circuits simultaneously. It also eliminates the need for cutting or splicing wires, reducing the risk of electrical hazards and downtime.

3. Can split core technology be used for both high and low voltage applications?

Yes, split core technology can be used for both high and low voltage applications. However, it is important to choose the appropriate split core CT with the correct voltage and current ratings for the specific application.

4. How can split core technology improve the accuracy of AC voltage and current measurements?

Split core technology eliminates the need for disconnecting the circuit, which can introduce errors in the measurement. By directly measuring the current in the wire or conductor, split core CTs provide more accurate and reliable readings.

5. Are there any potential limitations or drawbacks to using split core technology for digitizing AC voltage and current signals?

One potential limitation of split core technology is that it may not be suitable for high-frequency or high-voltage applications. Additionally, the split core CT must be properly sized and installed to ensure accurate measurements, which may require some expertise.

Similar threads

  • Electrical Engineering
Replies
13
Views
1K
  • Electrical Engineering
Replies
15
Views
631
  • Electrical Engineering
Replies
8
Views
725
Replies
18
Views
2K
Replies
16
Views
1K
  • Electrical Engineering
Replies
33
Views
565
  • Electrical Engineering
Replies
13
Views
2K
Replies
6
Views
2K
Replies
9
Views
2K
  • Electrical Engineering
Replies
10
Views
2K
Back
Top