removed prints in log

This commit is contained in:
gertjan 2026-03-13 13:27:03 +01:00
parent fad350b03f
commit 1bfefa94bb

View file

@ -146,13 +146,9 @@ def extract_to_dataframe(line):
int(match.group("adc_imin"), 16), int(match.group("adc_imin"), 16),
int(match.group("adc_imax"), 16), int(match.group("adc_imax"), 16),
] ]
print("uncorr:\r")
print(row)
row[1] = row[1]/(2*3.14159*row[0]*0.00005 + 1) # compensate Va for pole at 20kHz row[1] = row[1]/(2*3.14159*row[0]*0.00005 + 1) # compensate Va for pole at 20kHz
row[5] = row[1]/row[3] * math.cos(0.01745*(row[2]-row[4])) row[5] = row[1]/row[3] * math.cos(0.01745*(row[2]-row[4]))
row[6] = row[1]/row[3] * math.sin(0.01745*(row[2]-row[4])) row[6] = row[1]/row[3] * math.sin(0.01745*(row[2]-row[4]))
print("corr:\r")
print(row)
data_rows.append(row) data_rows.append(row)
def process_line(line): def process_line(line):