Commit 829c68a1 authored by Olivier Kaufmann's avatar Olivier Kaufmann
Browse files

Tries to implement VMN sign within mb_2023 and mb_2024

Showing with 1 addition and 1 deletion
+1 -1
...@@ -470,7 +470,7 @@ class OhmPi(object): ...@@ -470,7 +470,7 @@ class OhmPi(object):
I = np.mean(self._hw.readings[x, 3]) I = np.mean(self._hw.readings[x, 3])
I_std = 100. * np.std(self._hw.readings[x, 3]) I_std = 100. * np.std(self._hw.readings[x, 3])
R = Vmn / I R = Vmn / I
R_std = 100. * np.std((self._hw.readings[x, 4] - self._hw.sp) / self._hw.readings[x, 3]) / R R_std = 100. * np.std(self._hw.readings[x, 2] * (self._hw.readings[x, 4] - self._hw.sp) / self._hw.readings[x, 3]) / R
d = { d = {
"time": datetime.now().isoformat(), "time": datetime.now().isoformat(),
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment