-
Notifications
You must be signed in to change notification settings - Fork 0
/
307769_KPlumb.py
115 lines (82 loc) · 2.65 KB
/
307769_KPlumb.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
def NiRhO_E_map():
ext_vg = 20
total_time = 480
cyc=3
#E = np.arange(852.1,857.7,0.25)
E = np.arange(852.1,853.11,0.25)
sec_x_pt = 5
for i in E:
yield from sleep(10)
yield from rixs_one_energy_1(sec_x_pt,total_time,cyc,i,ext_vg)
E = np.arange(853.225,854.11,0.125)
sec_x_pt = 5
for i in E:
yield from sleep(10)
yield from rixs_one_energy_1(sec_x_pt,total_time,cyc,i,ext_vg)
E = np.arange(854.35,857.7,0.25)
sec_x_pt = 5
for i in E:
yield from sleep(10)
yield from rixs_one_energy_1(sec_x_pt,total_time,cyc,i,ext_vg)
def NiRhO_20210314_plan():
ext_vg = 12
total_time = 600
sec_x_pt = 5
#########################################
E = 853.8
cyc=3
yield from pol_H(-5.3)
yield from sleep(10)
yield from rixs_one_energy_1(sec_x_pt,total_time,cyc,E,ext_vg)
yield from pol_V(-5.5)
yield from sleep(10)
yield from rixs_one_energy_1(sec_x_pt,total_time,cyc,E,ext_vg)
#########################################
# E = 856.3
# cyc=5
# yield from pol_H(-5.3)
# yield from sleep(10)
# yield from rixs_one_energy_1(sec_x_pt,total_time,cyc,E,ext_vg)
# yield from pol_V(-5.5)
# yield from sleep(10)
# yield from rixs_one_energy_1(sec_x_pt,total_time,cyc,E,ext_vg)
# #########################################
# E = 853.8
# cyc=6
# yield from pol_H(-5.3)
# yield from sleep(10)
# yield from rixs_one_energy_1(sec_x_pt,total_time,cyc,E,ext_vg)
# yield from pol_V(-5.5)
# yield from sleep(10)
# yield from rixs_one_energy_1(sec_x_pt,total_time,cyc,E,ext_vg)
def NiRhO_20210315_plan():
ext_vg = 12
total_time = 600
sec_x_pt = 5
#########################################
E = 853.8
cyc=3
yield from pol_H(-5.3)
yield from sleep(10)
yield from rixs_one_energy_1(sec_x_pt,total_time,cyc,E,ext_vg)
yield from pol_V(-5.5)
yield from sleep(10)
yield from rixs_one_energy_1(sec_x_pt,total_time,cyc,E,ext_vg)
#########################################
E = 853.4
cyc=3
yield from pol_H(-5.3)
yield from sleep(10)
yield from rixs_one_energy_1(sec_x_pt,total_time,cyc,E,ext_vg)
yield from pol_V(-5.5)
yield from sleep(10)
yield from rixs_one_energy_1(sec_x_pt,total_time,cyc,E,ext_vg)
#########################################
E = 856.3
cyc=18
yield from pol_H(-5.3)
yield from sleep(10)
yield from rixs_one_energy_1(sec_x_pt,total_time,cyc,E,ext_vg)
yield from pol_V(-5.5)
yield from sleep(10)
yield from rixs_one_energy_1(sec_x_pt,total_time,cyc,E,ext_vg)