Current measurement verification method using sct013

Unlike the link, I used mkr wifi 1010, sct-013-000. The rest of the configuration is the same.
The sketches used are as follows.


#include "EmonLib.h"
EnergyMonitor emon1;

double Total = 0;
int count = 0;
double TotalPower = 0;
unsigned long t1 = 0;

void setup() {
Serial.begin(9600);
emon1.current(1, 111.1);

for (int i = 0; i < 5; i++) {
double IrmsNock = emon1.calcIrms(1480);
if (IrmsNock < 0.2) {
Total += IrmsNock;
count++;
}
}

Total /= count;
Serial.print("Average IrmsNock: ");
Serial.println(Total);

t1 = millis();
}

void loop() {
unsigned long t2 = millis();
int nocktime = t2 - t1;
t1 = t2;

double Irms = emon1.calcIrms(1000) - Total;
Irms = (Irms < 0) ? 0 : Irms;

double power = Irms * 220.0;
TotalPower += power * nocktime / 3600.0;

Serial.print(nocktime);
Serial.print(" Current: ");
Serial.print(Irms, 4);
Serial.print(" (A) Power: ");
Serial.print(power, 4);
Serial.print(" (W) Accumulated Power: ");
Serial.print(TotalPower / 1000, 4);
Serial.println(" (W)");
}

Q1. My laptop charger has 65W of power, and when I run the code, it measures about 30W. How do I verify that this is correct?

Please read the advice in the topic. How to get the best out of this forum Since it is not the same part post an annotated schematic, I do not want to burn time guessing when I can help others. Hint use