Labels added to the graphical output.
This commit is contained in:
parent
fdf31f0ce3
commit
2ceacc0a90
2 changed files with 8 additions and 6 deletions
|
@ -1,5 +1,5 @@
|
||||||
@echo off
|
@echo off
|
||||||
|
|
||||||
C:\Python27\python.exe meas.py -o 2m.csv -s 144000000 -e 146100000 -i 1 -p 5000 -d COM16 -m
|
C:\Python27\python.exe meas.py -o 2m.csv -s 144000000 -e 146100000 -i 1 -p 5000 -d COM16 -m -g
|
||||||
|
|
||||||
pause
|
pause
|
||||||
|
|
|
@ -528,8 +528,8 @@ if __name__ == "__main__":
|
||||||
min_vswr[0] = vswr
|
min_vswr[0] = vswr
|
||||||
min_vswr[1] = m[0] # the frequency
|
min_vswr[1] = m[0] # the frequency
|
||||||
|
|
||||||
# R = meas_data[0] * 5V / 1023 * I
|
# impedance
|
||||||
r = 50.0 * vswr # (m[1] * 5.0 / 1023.0) / i
|
r = 50.0 * vswr
|
||||||
meas_r.append(r)
|
meas_r.append(r)
|
||||||
|
|
||||||
# P = meas_data[0] * 5V ^ 2 / r
|
# P = meas_data[0] * 5V ^ 2 / r
|
||||||
|
@ -549,9 +549,11 @@ if __name__ == "__main__":
|
||||||
print "Output file " + args.output_file + " written."
|
print "Output file " + args.output_file + " written."
|
||||||
|
|
||||||
if args.show_graph == True:
|
if args.show_graph == True:
|
||||||
plt.plot(meas_freq, meas_ratio)
|
lv, = plt.plot(meas_freq, meas_ratio, label='VSWR')
|
||||||
plt.plot(meas_freq, meas_r)
|
lr, = plt.plot(meas_freq, meas_r, label='Impedance')
|
||||||
plt.plot(meas_freq, meas_p)
|
lw, = plt.plot(meas_freq, meas_p, label='Watt')
|
||||||
|
|
||||||
|
plt.legend(handles=[lv, lr, lw])
|
||||||
|
|
||||||
print "Please close the mathplot window to exit..."
|
print "Please close the mathplot window to exit..."
|
||||||
plt.show()
|
plt.show()
|
||||||
|
|
Loading…
Reference in a new issue