aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/eit_with_vcsel.py12
1 files changed, 9 insertions, 3 deletions
diff --git a/examples/eit_with_vcsel.py b/examples/eit_with_vcsel.py
index 775f2e6..852de31 100644
--- a/examples/eit_with_vcsel.py
+++ b/examples/eit_with_vcsel.py
@@ -28,9 +28,15 @@ dwellTime=0.1
Np=100
print('Setting magnetic field coils currents')
-ps.setChanIout(1, 0.0)
-ps.setChanIout(2, 0.070173)
-ps.setChanIout(3, 0.01057)
+"""
+Rough magnetic field calibration of the 3 axes coils
+- Ch1: 70mA -> 650 kHz shift for delta m = 2
+- Ch2: 70mA -> 700 kHz shift for delta m = 2
+- Ch2: 70mA -> 659 kHz shift for delta m = 2
+"""
+ps.setChanIout_mA(1, 70)
+ps.setChanIout_mA(2, 0)
+ps.setChanIout_mA(3, 0)
print('Done setting magnetic field coils currents')
def eitSweep(central_frequency, frequency_span, Np, Nsweeps=1):