In [ ]:
import numpy as np, matplotlib.pyplot as plt
%matplotlib inline

v_belt = np.linspace(0.1, 15, 1000)  # fps
t_i = 0.066 # s
c = 0.162  # ft
t_total = t_i + c / v_belt

plt.plot(v_belt, t_total)
plt.xlim(0, 15)
plt.ylim(0.06, 0.16)
plt.xlabel('Belt Speed (feet per second)')
plt.ylabel('Total Time (seconds)')
plt.title('Total Time vs. Belt Speed')
Out[ ]:
Text(0.5, 1.0, 'Total Time vs. Belt Speed')
No description has been provided for this image