27 lines
535 B
Python
27 lines
535 B
Python
#Parameters
|
|
|
|
ROUNDS = 1
|
|
E1 = 625
|
|
E2 = 635
|
|
TIME = 1
|
|
|
|
B1 = 0 # starting mag. field in Amps
|
|
B2 = 1 # final mag. field in Amps
|
|
BSTEP = 0.5 # step size mag. field in Amps
|
|
|
|
FIELD_PRECISION = 0.05 # in Amps
|
|
FIELD_CHANGE_SLEEP = 0.5 # put the Field settling time if needed
|
|
|
|
#run("B_scan.py")
|
|
|
|
|
|
#Parameters for the second script
|
|
B1 = 0 # starting mag. field in Amps
|
|
B2 = 0.5 # final mag. field in Amps
|
|
BSTEP = 0.5 # step size mag. field in Amps
|
|
ENERGIES = (707.35, 708, 710) #list of energies in eV
|
|
|
|
run("FixedE.py")
|
|
|
|
|