alternate CT type? #138
Replies: 1 comment 4 replies
-
Hi Steve, that's an interesting use case. There are three ways you can solve for this now without making any adjustments to the code:
Here's what a panel would look like - one query for each of the CT fields, and then an expression to combine the queries by name: The resulting graph will show all three by default, so you can just hide the two queries and only plot the expression.
I like the idea of creating a new |
Beta Was this translation helpful? Give feedback.
-
Here's a question about a monitoring use case where I don't want the readings considered as any of
type
"mains", "production", or "consumption". IMHO the Rpi Power Monitor has a lot of potential applications beyond the single residence with only load side PV interconnect case.I have two 200A service entrances (for a 320/400 service), with CTs on all four phase conductors. I'm very interested in the service neutral current (imbalance of the ungrounded conductors) as I'll soon be replacing the 400A service conductors. Per the NEC I have wide latitude in selecting the ampacity of the neutral conductor, but because I have two separate grounding electrode systems I want to minimize stray current ("ground loops"). I may have to use active isolation for RS485 for instance, which has both up-front and operational costs. A bigger neutral helps but bigger gets expensive so the optimal solution is highly dependent on the neutral currents I see in practice.
In theory I can determine the neutral current as the difference between the two hot phases at any point in time (and then add that to the difference for the two phases for the other service entrance). But it occurs to me that I have two spare CT connections on the Rpi Power Monitor board and the CTs in the smaller size I'll want are cheap.
So I want to add two CTs to monitor and report the neutral current directly (almost directly, as the two CTs need to be added), but do not want that included in any of the existing reporting of "mains", "production", or "consumption".
What's the most elegant way to accomplish that? My first thought was to just create a new
type
, but there's an error check for that in power_monitor.py. I'd prefer to hack that as little as possible.Beta Was this translation helpful? Give feedback.
All reactions