diff options
author | Blaise Thompson <blaise@untzag.com> | 2020-01-29 16:15:54 -0600 |
---|---|---|
committer | Blaise Thompson <blaise@untzag.com> | 2020-01-29 16:15:54 -0600 |
commit | 821d54537fef8f7496de7c83d79c1c655ce3a07b (patch) | |
tree | c864c24fffd9edcc652f145dbb75aafeb96f8f63 /data/2018-11-14 | |
parent | 30c90e7349294ab25481bf4996bca3b7374fb16f (diff) |
daughter
Diffstat (limited to 'data/2018-11-14')
-rw-r--r-- | data/2018-11-14/load.png | bin | 97797 -> 0 bytes | |||
-rw-r--r-- | data/2018-11-14/load.txt | 25 | ||||
-rw-r--r-- | data/2018-11-14/workup.py | 25 |
3 files changed, 0 insertions, 50 deletions
diff --git a/data/2018-11-14/load.png b/data/2018-11-14/load.png Binary files differdeleted file mode 100644 index 9009409..0000000 --- a/data/2018-11-14/load.png +++ /dev/null diff --git a/data/2018-11-14/load.txt b/data/2018-11-14/load.txt deleted file mode 100644 index 41344c8..0000000 --- a/data/2018-11-14/load.txt +++ /dev/null @@ -1,25 +0,0 @@ -# load (ohms),R (mV),L (mV) -15,17.8,17.3 -22,24.7,23.9 -33,35.4,34.2 -47,46.2,44.8 -68,70,4.68.4 -100,99.8,97.2 -150,164.4,160.3 -220,224.8,219.4 -330,339.2,331.4 -470,465,455 -680,708,693 -1000,1230,1204 -1500,1522,1489 -2200,2267,2218 -3300,3258,3183 -4700,4770,4670 -6800,6460,6330 -10000,9950,9650 -15000,13440,13440 -22000,13470,13480 -33000,13510,13520 -47000,13540,13550 -68000,13560,13570 -100000,13580,13580 diff --git a/data/2018-11-14/workup.py b/data/2018-11-14/workup.py deleted file mode 100644 index 9103bdf..0000000 --- a/data/2018-11-14/workup.py +++ /dev/null @@ -1,25 +0,0 @@ -import pathlib -import numpy as np -import matplotlib.pyplot as plt - -__here__ = pathlib.Path(__file__).parent - -xi, r, l = np.genfromtxt('load.txt', delimiter=',').T - -plt.plot(xi, r) -plt.scatter(xi, r, label='right') -plt.plot(xi, l) -plt.scatter(xi, l, label='left') - -plt.xlabel('load resistance (ohms)') -plt.ylabel('applied voltage (mV)') -plt.grid() -plt.plot(xi, xi, c='k', alpha=0.5, lw=0.5) - -plt.ylim(0, 20000) -plt.xlim(0, 100000) - -plt.legend() - -plt.savefig('load.png', dpi=300, transparent=True) -plt.close() |