update 20180814

This commit is contained in:
2018-08-14 21:03:14 +02:00
parent c91c0bb211
commit 28bb50d819
8 changed files with 57 additions and 34 deletions
Binary file not shown.
+14
View File
@@ -1,11 +1,24 @@
import matplotlib.pyplot as plt
import numpy as np
import wafer
plt.style.use('bmh')
plt.rcParams['axes.facecolor'] = 'white'
plt.figure(figsize=(8, 3))
def gen_reticle_empty():
plt.clf()
w = wafer.WaferRepr()
_, ax = plt.subplots()
w.placeim(ax, (0, 0))
ax.axis('off')
ax.set_aspect("equal")
plt.savefig('wafer.pdf')
def gen_48v_theory():
xdata = np.linspace(43, 53, 100)
ydata = xdata / 241 * 8 * 1.1
@@ -53,3 +66,4 @@ if __name__ == "__main__":
gen_48v_theory()
gen_48i_theory()
gen_1v8_theory()
gen_reticle_empty()
Binary file not shown.
Binary file not shown.
Binary file not shown.
+1
View File
@@ -0,0 +1 @@
../../../pitstop/wafer.py