upadate to theory in thesis and removing old raspi stuff, now in pitstop

This commit is contained in:
2018-06-21 18:45:02 +02:00
parent fa9665b897
commit 31acd35b88
102 changed files with 193 additions and 20856 deletions
+20
View File
@@ -0,0 +1,20 @@
import matplotlib.pyplot as plt
import numpy as np
def gen_48v_theory():
xdata = np.linspace(43, 53, 100)
ydata = xdata / 241 * 8 * 1.1
plt.style.use('bmh')
plt.figure(figsize=(8, 6))
plt.plot(ydata, xdata)
plt.xlabel('V$_{pin}$')
plt.ylabel('V$_{48V in}$')
plt.savefig('v48.pdf')
if __name__ == "__main__":
gen_48v_theory()
Binary file not shown.