Testing power monitor with 1 CT on 1 wire of a dryer cord #146
-
I want to make sure I understand the data that I'm seeing coming from the Power Monitor. I have a 400A CT that I have clamped onto one of my dryer wires coming out of the 240v outlet it is connected to. After following the calibration steps from the docs, I am a bit confused about the config settings and the output I am seeing. In the calibration instructions from this link: https://david00.github.io/rpi-power-monitor/docs/v0.3.0/calibration, it mentions using a multi-meter for calibrating the output of the outlet that is being used for the 9V AC adapter. The outlet is a 120v as opposed to the 240v used for the dryer. But, we are placing these settings in the config section labeled [grid_voltage]. How does the outlet used for the 9V AC adapter correlate to the settings needed for the CT? Shouldn't the grid_voltage setting in the config be 240v instead of 120v for the adapter? And, why does the ac_transformer_output_voltage matter in the [grid_voltage] config if what I really need is an accurate current reading from one of the dryer wires coming out of the 240v outlet? Even so, when I change the config to accommodate my 240v needs, the current readings I see for the dryer are about 10 times higher than what my multi-meter reports for the dryer wire. If I modify the calibration setting of the CT to 0.10, the current reading looks correct. To ask my question another way, if I just want to test the Power Monitor on a simple dryer wire instead of the electrical panel, what is the correct way to do it? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hi @acabrera2012, great question! Your 240V circuit for the electric dryer is using a 2-pole breaker to take advantage of both 120V legs of your "split phase" electrical service. Essentially, your power is fed from a 240V circuit from the utility, but it's split into two, and you end up with three possible electrical connections within your home:
Since the majority of outlets in our homes are at 120V, you'll most often run into circuits that align to either option 1 or option 2 from the list above. Likewise, the 9V AC transformer - which the RPI power monitor uses to measure the voltage and phase - will be connecting to one of the two 120V options. The power monitor can account for measuring power from 240V circuits by using the The voltage configuration for the power monitor should be the ~120V measurement coming from the outlet where the Power Monitor's 9V AC transformer is connected. The So, in summary:
Unless you're using a sensor from my shop, it is a good idea to check that the raw sample data coming in from the sensor looks okay by generating a debug plot. See "plot" mode here, and make sure the power monitor isn't running the background before using the command line interface. There are 2 things you'll want to look for in the plot:
|
Beta Was this translation helpful? Give feedback.
Everything looks correct from what I can see. I think it must be that the CT you're using is spec'd differently than the ones from my shop. That's okay, as long as the output from the CT doesn't overload the input of the power monitor, and based on the raw data plot, it's not. (It looks like the CT1 data peaks around 850 or so which is perfectly fine. because the limit is 1023).
You'll just have to update the calibration value for the channel to get the measurements to align with a handheld AC clamp meter. If they're currently 10x what you are expecting, start with a calibration value of 0.10 for CT1. Keep in mind you don't have to guess about the calibration value - the docs show a way t…