forked from slaclab/exp-timing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
atm2las_fs45.py
226 lines (203 loc) · 8.46 KB
/
atm2las_fs45.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
#####################################################################
# Filename: atm2las_fs14.py
# Author: Chengcheng Xu ([email protected])
# Date: 04/28/2021
#####################################################################
import epics as epics
import numpy as np
import time as time
import datetime
pause_time = 0.025
DC_sw_PV = 'LAS:FS11:VIT:TT_DRIFT_ENABLE' # Put 0 for disable, put 1 for enable
DC_val_PV = 'LAS:FS11:VIT:matlab:04' # Drift correct value in ns
ATM_PV = 'XPP:TIMETOOL:TTALL' # ATM waveform PV
TTC_PV = 'XPP:LAS:MMN:16' # ATM mech delay stage
IPM_PV = 'XPP:SB2:BMMON:SUM' # intensity profile monitor PV
IPM_HI_PV = 'LAS:FS11:VIT:matlab:28.HIGH'
IPM_LO_PV = 'LAS:FS11:VIT:matlab:28.LOW'
TT_time_PV = 'LAS:FS11:VIT:matlab:22'
TT_amp_PV = 'LAS:FS11:VIT:matlab:23'
TT_amp_HI_PV = str(TT_amp_PV + '.HIGH')
TT_amp_LO_PV = str(TT_amp_PV + '.LOW')
TT_fwhm_PV = 'LAS:UNDS:FLOAT:18'
TT_fwhm_HI_PV = str(TT_fwhm_PV + '.HIGH')
TT_fwhm_LO_PV = str(TT_fwhm_PV + '.LOW')
LAS_TT_PV = 'LAS:FS11:VIT:FS_TGT_TIME' # EGU in ns
HXR_CAST_PS_PV_W = 'LAS:UND:MMS:02' # EGU in ps
HXR_CAST_PS_PV_R = 'LAS:UND:MMS:02.RBV'
SXR_CAST_PS_PV_W = 'LAS:UND:MMS:01' # EGU in ps
SXR_CAST_PS_PV_R = 'LAS:UND:MMS:01.RBV'
ATM_OFFSET_PV = 'LAS:UNDS:FLOAT:13' # Notepad PV for ATM setpoint PV in ps
ATM_FB_EN_PV = 'LAS:UNDS:FLOAT:19' # Enable ATM feedback
LXT_thre_PV = 'LAS:UNDS:FLOAT:20' # Threshold for lxt to move
P_term_PV = 'LAS:UNDS:FLOAT:12'
I_term_PV = 'LAS:UNDS:FLOAT:13'
# ATM Feedback variables
atm_avg_n = 60
atm_val_ary = np.array([0])
ATM_wf_val = epics.caget(ATM_PV)
ATM_pos = ATM_wf_val[0]
ATM_val = ATM_wf_val[1]
ATM_amp = ATM_wf_val[2]
ATM_nxt_amp = ATM_wf_val[3]
ATM_ref_amp = ATM_wf_val[4]
ATM_fwhm = ATM_wf_val[5]
atm_err = 0
atm_ary_mean = 0
atm_ary_mean_fs = 0
atm_pm_step = 0
atm_prev = ATM_val
atm_t_cntr = 1
las_tt_pre = epics.caget(LAS_TT_PV)
atm_offset_pre = epics.caget(ATM_OFFSET_PV)
i_val = 0
t_old = time.time()
# PCAV/CAST feed forward variables
atm_stat = True
tt_good_cntr = 0
tt_bad_cntr = 0
cast_ff_en = 0
cast_ff_cntr = 0
DC_val = 0
time_err_th = 50 # pcav err threshold in fs
cast_old = epics.caget(HXR_CAST_PS_PV_R)
motr_step_cntr = 0 # counter for how many time the phase "motor" has moved in unit of time_err_th
cntr = 0
# enabled the drift feedback
epics.caput(DC_sw_PV, 1)
print('Controller running')
while True:
# Did the LXT move?
lxt_thre = epics.caget(LXT_thre_PV)
las_tt = epics.caget(LAS_TT_PV)
if np.absolute(las_tt-las_tt_pre) > lxt_thre:
time.sleep(2)
# Getting ATM & IPM reading determine if the ATM reading is good
atm_wf_tmp = epics.caget(ATM_PV)
atm_pos = atm_wf_tmp[0]
atm_val = atm_wf_tmp[1] # in ps
atm_amp = atm_wf_tmp[2]
atm_nxt_amp = atm_wf_tmp[3]
atm_ref_amp = atm_wf_tmp[4]
atm_fwhm = atm_wf_tmp[5]
IPM_val = epics.caget(IPM_PV)
atm_offset = epics.caget(ATM_OFFSET_PV) # get setpoint in ps
atm_fb_en = epics.caget(ATM_FB_EN_PV) # Using feedback?
p_term = epics.caget(P_term_PV)
i_term = epics.caget(I_term_PV)
# Get limit threshold from EDM
ipm_hi_val = epics.caget(IPM_HI_PV)
ipm_lo_val = epics.caget(IPM_LO_PV)
tt_amp_hi_val = epics.caget(TT_amp_HI_PV)
tt_amp_lo_val = epics.caget(TT_amp_LO_PV)
tt_fwhm_hi_val = epics.caget(TT_fwhm_HI_PV)
tt_fwhm_lo_val = epics.caget(TT_fwhm_LO_PV)
cast_val = epics.caget(HXR_CAST_PS_PV_R)
cast_dif = cast_old - cast_val
cast_dif_ns = np.true_divide(cast_dif, 1000)
if atm_offset != atm_offset_pre:
atm_offset_diff = np.true_divide((atm_offset - atm_offset_pre), 1000)
DC_val = epics.caget(DC_val_PV)
DC_val = DC_val + atm_offset_diff
epics.caput(DC_val_PV, DC_val)
# Condition for good atm reading
# if (atm_amp > tt_amhilo_val)and(IPM_val > ipm_lo_val)and(atm_fwhm < ttfwhm_hi)and(atm_fwhm > ttfwhm_lo):
if (atm_amp > tt_amp_lo_val)and(atm_fwhm < tt_fwhm_hi_val)and(atm_fwhm > tt_fwhm_lo_val):
tt_good_cntr += 1
tt_good = True
epics.caput(TT_time_PV, atm_val)
epics.caput(TT_amp_PV, atm_amp)
epics.caput(TT_fwhm_PV, atm_fwhm)
else:
tt_bad_cntr += 1
tt_good = False
# Determine if use ATM or PCAV as drift compensation
if (tt_good_cntr > 200) and (cntr%(10/pause_time) == 0) :
atm_stat = True
tt_good_cntr = 0
tt_bad_cntr = 0
elif (tt_bad_cntr > 200) and (cntr%(10/pause_time) == 0) :
atm_stat = False
tt_good_cntr = 0
tt_bad_cntr = 0
elif (cntr%(25/pause_time) == 0) :
atm_t_cntr = 1
tt_good_cntr = 0
tt_bad_cntr = 0
if atm_stat:
# Filling the running avg array
if tt_good:
if cntr == 0 and tt_good:
atm_val_ary = atm_val
elif (atm_val_ary.size >= atm_avg_n) and tt_good:
atm_val_ary = np.delete(atm_val_ary, 0)
atm_val_ary = np.append(atm_val_ary,atm_val)
else:
if tt_good:
atm_val_ary = np.append(atm_val_ary,atm_val)
# average and convert to fs, ns, also add in the offset
atm_ary_mean = np.mean(atm_val_ary) - atm_offset
atm_ary_mean_fs = np.around(np.multiply(atm_ary_mean, 1000), 3)
atm_ary_mean_ns = np.true_divide(atm_ary_mean, 1000)
atm_err = atm_ary_mean
atm_err_ns = np.true_divide(atm_err, -1000)
if (cntr%(2/pause_time) == 0):
# epics.caput(TT_amp_PV, atm_amp) # Update EDM panel
print('#################################')
print('ATM array error: ' + str(atm_err) + 'ps')
print('ATM array mean: ' + str(atm_ary_mean_fs) + 'fs')
print('ATM time: ' + str(atm_val))
print('ATM amp: ' + str(atm_amp) + ' HIGH:' + str(tt_amp_hi_val) + ' LOW:' + str(tt_amp_lo_val))
print('ATM fwhm: ' + str(atm_fwhm) + ' HIGH:' + str(tt_fwhm_hi_val) + ' LOW:' + str(tt_fwhm_lo_val))
print('IPM val: ' + str(IPM_val) + ' HIGH:' + str(ipm_hi_val) + ' LOW:' + str(ipm_lo_val))
print('tt_good_cntr: ' + str(tt_good_cntr))
print('tt_bad_cntr: ' + str(tt_bad_cntr))
print('ATM feedback used status: ' + str(atm_fb_en))
print('ATM offset: ' + str(atm_offset) + 'ps')
print('+++++++++++++++++++++++++++++++++++++')
print(atm_val_ary)
if (atm_val_ary.size == atm_avg_n) and (np.absolute(atm_ary_mean_fs)>time_err_th) and (atm_fb_en != 0):
t_now = time.time()
dt = t_now - t_old
print('Move to compensate')
# DC_val = (p_term * atm_err_ns) + (i_term * (i_val + (np.multiply(atm_err_ns, dt))))
DC_val = epics.caget(DC_val_PV)
DC_val = DC_val + atm_err_ns
epics.caput(DC_val_PV, DC_val)
print('ATM err ns average: ' + str(atm_err_ns))
print("move DC PV to: " + str(DC_val))
print('Clearning ATM array')
atm_val_ary = np.array([0])
t_old = t_now
else:
DC_val = epics.caget(DC_val_PV)
DC_val = DC_val + cast_dif_ns
epics.caput(DC_val_PV, DC_val)
if (cntr%(2/pause_time) == 0):
print('Using PCAV feedback')
print(np.multiply(cast_dif,1000))
print('tt_good_cntr: ' + str(tt_good_cntr))
print('tt_bad_cntr: ' + str(tt_bad_cntr))
if (cntr%(60/pause_time) == 0):
print('//////////////////////////////////////////////////////////////////')
print('Counter val: ' + str(cntr))
ts = time.strftime('%Y-%m-%d-%H:%M:%S', time.localtime())
print(ts)
# if atm_stat:
# print('###############################')
# print('Good ATM reading')
# print('tt_good_cntr val: ' + str(tt_good_cntr))
# print('tt_bad_cntr val: ' + str(tt_bad_cntr))
# # print('atm_t_cntr: ' + str(atm_t_cntr))
# print('###############################')
# else:
# print('##############################')
# print('Bad ATM readings')
# print('tt_good_cntr val: ' + str(tt_good_cntr))
# print('tt_bad_cntr val: ' + str(tt_bad_cntr))
# # print('atm_t_cntr: ' + str(atm_t_cntr))
atm_offset_pre = atm_offset
cast_old = cast_val
las_tt_pre = las_tt
cntr += 1
time.sleep(pause_time)