-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsc_lsco.py
49 lines (37 loc) · 1.26 KB
/
sc_lsco.py
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
def LCO_night():
ext_vg = 10
total_time = 600
split_time = 5
E_peak = 931
# Detune -0.75 eV
detune=-0.75
num_cycles = 12
yield from rixs_one_energy(split_time,total_time,num_cycles,E_peak+detune,ext_vg, 'DE={}eV' .format(detune))
yield from sleep(1)
# Detune -0.5 eV
detune=-0.5
num_cycles = 12
yield from rixs_one_energy(split_time,total_time,num_cycles,E_peak+detune,ext_vg, 'DE={}eV' .format(detune))
yield from sleep(1)
# Detune -0.25 eV
detune=-0.25
num_cycles = 12
yield from rixs_one_energy(split_time,total_time,num_cycles,E_peak+detune,ext_vg, 'DE={}eV' .format(detune))
yield from sleep(1)
# Detune 0 eV
detune=0
num_cycles = 12
yield from rixs_one_energy(split_time,total_time,num_cycles,E_peak+detune,ext_vg, 'DE={}eV' .format(detune))
yield from sleep(1)
# Detune 0.25 eV
detune=0.25
num_cycles = 12
yield from rixs_one_energy(split_time,total_time,num_cycles,E_peak+detune,ext_vg, 'DE={}eV' .format(detune))
yield from sleep(1)
def One_High_Stats():
ext_vg = 7
total_time = 600
split_time = 5
num_cycles=12
target_Emax = 931.5
yield from rixs_one_energy(split_time,total_time,num_cycles,target_Emax,ext_vg, 'q = -0.3')