removed prints in log
This commit is contained in:
parent
fad350b03f
commit
1bfefa94bb
1 changed files with 0 additions and 4 deletions
|
|
@ -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):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue