aboutsummaryrefslogtreecommitdiff
path: root/data/2018-11-14/workup.py
blob: 9103bdfffa8b28a43eb5fc9172de44167d040c39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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()