EmonLib icon indicating copy to clipboard operation
EmonLib copied to clipboard

Real power

Open ghost opened this issue 9 years ago • 7 comments

I am using Arduino mega, acs current sensor, step down transformer with bias (Only positive voltage cycle.) RMS value of current and voltage is accurate, apparent power also correct. Real power and thus power factor are inaccurate. There may be a circuit error but deviation is too large. Please help. Does the code have to be changed for acs current sensor ?

ghost avatar Jan 07 '16 16:01 ghost

Can you provide a website link to the exact sensor you are using?

richard-scott avatar Jan 07 '16 18:01 richard-scott

http://www.sunrom.com/p/current-sensor-20a-acs712

ghost avatar Jan 13 '16 13:01 ghost

How are you connecting this to the AC supply you are measuring?

richard-scott avatar Jan 18 '16 14:01 richard-scott

Using supply of ac mains. Supply-acs current sensor-choke-bulb-supply

Step down transformer parallel to load (choke + Bulb)

ghost avatar Jan 19 '16 13:01 ghost

Hii! My objective is to read P, S, FP, Vrms and Irms. My currente calibration is 54.5 using a 33 burden resistor, SCT-013-000. I am using a 230/9 Vrms transformer, R1=120K e R2=10K, so the voltage calibration i use is 234.26 but the voltage values is stay less than 3V, why? Help me please!

CODE: { Serial.begin(9600);

emon1.voltage(2, 234.26, 1.7); // Voltage: input pin, calibration, phase_shift emon1.current(1, 54.5); // Current: input pin, calibration (2000/33). }

void loop() { emon1.calcVI(20,2000); // Calculate all. No.of half wavelengths (crossings), time-out emon1.serialprint(); // Print out all variables (realpower, apparent power, Vrms, Irms, power factor)

float realPower = emon1.realPower; //extract Real Power into variable float apparentPower = emon1.apparentPower; //extract Apparent Power into variable float powerFActor = emon1.powerFactor; //extract Power Factor into Variable float supplyVoltage = emon1.Vrms; //extract Vrms into Variable float Irms = emon1.Irms; //extract Irms into Variable delay(1000); }

Aldair170496 avatar Oct 30 '19 19:10 Aldair170496

Hi! I fix the problem, was in the hardware not in the software. But when the sensor or the voltage transformer are disconnected it should be all zero (0), how to fix that. Any help would be helpfull.

Aldair170496 avatar Oct 31 '19 16:10 Aldair170496

Hello @Aldair170496, What kind of values do you see? can you give more detail?

TrystanLea avatar Jan 30 '20 11:01 TrystanLea