2015-10-18 23:06:39 -07:00
|
|
|
import matplotlib.pyplot as plt
|
|
|
|
from matplotlib import ticker
|
|
|
|
|
2015-10-19 05:39:37 -07:00
|
|
|
# TODO: remove set_size_inches calls, move them inline as necessary
|
|
|
|
|
2015-10-18 23:06:39 -07:00
|
|
|
def response_setup(ax, ymin=-24, ymax=24, yL=ticker.AutoMinorLocator(3)):
|
|
|
|
ax.set_xlim(20, 20000)
|
|
|
|
ax.set_ylim(ymin, ymax)
|
|
|
|
ax.set_yticks(tuple(range(ymin, ymax + 1, 6)))
|
|
|
|
ax.yaxis.set_minor_locator(yL)
|
|
|
|
ax.grid(True, 'both')
|
|
|
|
ax.set_xlabel('frequency (Hz)')
|
|
|
|
ax.set_ylabel('magnitude (dB)')
|
|
|
|
|
2015-10-19 05:39:37 -07:00
|
|
|
def phase_response_setup(ax, div=12, yL=ticker.AutoMinorLocator(2)):
|
|
|
|
ax.set_xlim(20, 20000)
|
|
|
|
ax.set_ylim(-180, 180)
|
|
|
|
ax.set_yticks(tuple(range(-180, 180 + 1, int(360/div))))
|
|
|
|
ax.yaxis.set_minor_locator(yL)
|
|
|
|
ax.grid(True, 'both')
|
|
|
|
ax.set_xlabel('frequency (Hz)')
|
|
|
|
ax.set_ylabel('phase (degrees)')
|
|
|
|
|
2015-10-18 23:06:39 -07:00
|
|
|
def cleanplot():
|
|
|
|
fig, ax = plt.subplots()
|
|
|
|
fig.set_size_inches((16, 16))
|
|
|
|
ax.set_axis_off()
|
|
|
|
ax.set_position([0,0,1,1])
|
|
|
|
return fig, ax
|
|
|
|
|
|
|
|
def new_response(*args, **kwargs):
|
|
|
|
fig = plt.figure()
|
|
|
|
ax = fig.gca()
|
|
|
|
response_setup(ax, *args, **kwargs)
|
|
|
|
fig.set_size_inches(10, 6)
|
|
|
|
return fig, ax
|
2015-10-19 05:39:37 -07:00
|
|
|
|
|
|
|
def new_phase_response(*args, **kwargs):
|
|
|
|
fig = plt.figure()
|
|
|
|
ax = fig.gca()
|
|
|
|
phase_response_setup(ax, *args, **kwargs)
|
|
|
|
fig.set_size_inches(10, 6)
|
|
|
|
return fig, ax
|
|
|
|
|
|
|
|
def new_bode(magnitude_offset=0):
|
|
|
|
fig = plt.figure()
|
|
|
|
ax1 = fig.gca()
|
|
|
|
ax2 = ax1.twinx()
|
|
|
|
ymin = -24 + magnitude_offset
|
|
|
|
ymax = 24 + magnitude_offset
|
|
|
|
response_setup(ax1, ymin, ymax)
|
|
|
|
phase_response_setup(ax2)
|
|
|
|
# ax1 and ax2 should have identical grids;
|
|
|
|
# disable ax2's so it doesn't overlap ax1's plot lines.
|
|
|
|
ax2.grid(False, which='both')
|
|
|
|
fig.set_size_inches(10, 6)
|
|
|
|
return fig, ax1, ax2
|