Impedance Analyzer Program

Run this cell to initialize communication with the impedance analyzer and load all necessary modules.


In [17]:
%pylab inline
%run impedanceanalyzer.py
UI()


Populating the interactive namespace from numpy and matplotlib
Out[17]:

Plot the data


In [ ]:
figure()
semilogx(C,A, '.')
title('Display A vs. Frequency')
xlabel('Frequency (kHz)')
ylabel('Impedance (Ohm)')
figure()
semilogx(C,B, '.')
xlabel('Frequency (kHz)')
ylabel('Phase Angle (degrees)')