work of 20180812

This commit is contained in:
2018-08-12 22:07:55 +02:00
parent b67a7622bf
commit c7d666aee9
10 changed files with 98 additions and 83 deletions
Binary file not shown.
+4 -3
View File
@@ -5,6 +5,7 @@ plt.style.use('bmh')
plt.rcParams['axes.facecolor'] = 'white'
plt.figure(figsize=(8, 3))
def gen_48v_theory():
xdata = np.linspace(43, 53, 100)
ydata = xdata / 241 * 8 * 1.1
@@ -15,9 +16,9 @@ def gen_48v_theory():
plt.xlabel('V$_{pin}$ / V')
plt.ylabel('V$_{48V in}$ / V')
plt.tight_layout()
plt.savefig('v48.pdf')
def gen_48i_theory():
xdata = np.linspace(0, 2000/48, 100)
ydata = xdata * 500e-6 * 8 * 1.1
@@ -28,9 +29,9 @@ def gen_48i_theory():
plt.xlabel('V$_{pin}$ / V')
plt.ylabel('I$_{48V in}$ / A')
plt.tight_layout()
plt.savefig('i48.pdf')
def gen_1v8_theory():
rpara = 75000
rseri = 2*4700
@@ -45,9 +46,9 @@ def gen_1v8_theory():
plt.xlabel("Potentiometer Setting")
plt.ylabel("V$_{1.8V out}$")
plt.tight_layout()
plt.savefig('v18.pdf')
if __name__ == "__main__":
gen_48v_theory()
gen_48i_theory()
Binary file not shown.
Binary file not shown.