diff --git a/One_Unit_Test.py b/One_Unit_Test.py index ebd2afa..a7934a9 100644 --- a/One_Unit_Test.py +++ b/One_Unit_Test.py @@ -14,8 +14,8 @@ Test4 = 0 # Constants: g.Coil_const = np.array([38.6, 38.45, 37.9])*1e-9 # Coil constants [x,y,z] in T/A g.ambientField = np.array([80])*1e-6 # ambient magnetic field in measurement area, to be cancelled out -g.resistances = np.array([3.9, 1, 1]) # resistance of [x,y,z] circuits -g.maxWatts = np.array([8, 0, 0]) # max. allowed power for [x,y,z] circuits +g.resistances = np.array([3.9, 3.9, 1]) # resistance of [x,y,z] circuits +g.maxWatts = np.array([8, 8, 0]) # max. allowed power for [x,y,z] circuits # COM-Ports for power supply units: xyPort = "COM7" diff --git a/cage_func.py b/cage_func.py index 3ccbb51..0f1f9c9 100644 --- a/cage_func.py +++ b/cage_func.py @@ -1,5 +1,3 @@ -# import time - from pyps2000b import PS2000B import globals as g diff --git a/main.py b/main.py index b63a8b8..a2d375f 100644 --- a/main.py +++ b/main.py @@ -1,5 +1,3 @@ -# import platform -# import time import numpy as np import globals as g import cage_func as func