kw to kwH from Meter -- value Reset

raul_vaze

Member
Join Date
Feb 2008
Location
mumbai
Posts
87
Dear All ,

We are reading from Energy meter over modbus the kW and KWH in plc . Now customer wants the KWH consumption / day and month , but the problem is that the kwH reading in meter reset to 0 when the value goes above 999999 which causes my calculation in plc goes wrong and i get negative consumption as my previous day stored value is much higher than the current reading ( in case the meter resets to zero ).

So is it possible to have the KWH derived from the KW reading coming from the meter
 
Dear All ,

We are reading from Energy meter over modbus the kW and KWH in plc . Now customer wants the KWH consumption / day and month , but the problem is that the kwH reading in meter reset to 0 when the value goes above 999999 which causes my calculation in plc goes wrong and i get negative consumption as my previous day stored value is much higher than the current reading ( in case the meter resets to zero ).

So is it possible to have the KWH derived from the KW reading coming from the meter

You just have to handle in your calculation in the PLC that the meter wraps around.
You still have all the info you need, so no KWh will be lost.

Code:
if new_reading < old_reading 
   then kWh=1000000-old_reading+new_reading
   else kWh=new_reading-old_reading
 

Similar Topics

Hi all, I am having trouble communicating with a Schneider kWh module that is fitted with an M-BUS module. I have successfully used the ADF...
Replies
5
Views
2,646
Dear All, I have a little problem in reading data from Power Meter to Vijeo Citect v6.0 I'm using Schneider PM810MG for Energy reading from...
Replies
0
Views
3,295
Hi. I have a Kwh meter with puls output. it give 1000 pulses for each Kwh. If I have the meter measuring 1 kw load, then it takes 1Hour to...
Replies
7
Views
20,177
Hello all, I want to make kWh record with PC. kWh meter is Merlin Gerin, with 1 impulse of 200ms every 10kWh. Is it possible to connect this pulse...
Replies
2
Views
2,082
I want to calculate the energy consumed from instantaneous power. Can this be done using the TOT block with timebase set to Hour?
Replies
2
Views
697
Back
Top Bottom