Mercurial > hg > ltpda
comparison m-toolbox/classes/@plist/ltp_parameters.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f0afece42f48 |
---|---|
1 % LTP/LPF Parameter plist | |
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
3 % | |
4 % To be completed | |
5 % | |
6 % CALL : | |
7 % s?? | |
8 % | |
9 % PARAMETERS : | |
10 % ?? | |
11 % | |
12 % VERSION : | |
13 % | |
14 % | |
15 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
16 function pl = ltp_parameters(varargin) | |
17 | |
18 if nargin == 1 | |
19 subsystemName = varargin{1}; | |
20 if ~ischar(subsystemName) | |
21 error('this function takes a char as an input') | |
22 end | |
23 % modelNames = {'FEEPS_properties' 'CAPACT1_properties' 'CAPACT2_properties' 'SC_properties' 'TM_properties' 'IFO_properties'},; | |
24 switch upper(subsystemName) | |
25 case 'FEEPS' | |
26 pl = FEEPS_properties; | |
27 case 'CAPACT1' | |
28 pl = CAPACT1_properties; | |
29 case 'CAPACT2' | |
30 pl = CAPACT2_properties; | |
31 case 'SC' | |
32 pl = SC_properties; | |
33 case 'TM' | |
34 pl = TM_properties; | |
35 case 'IFO' | |
36 pl = IFO_properties; | |
37 otherwise | |
38 models = { 'FEEPS' 'CAPACT1' 'CAPACT2' 'SC' 'TM' 'IFO'}; | |
39 error('Unknown model. Please use one of the following models. %s', utils.helper.val2str(models)) | |
40 end | |
41 else | |
42 pl = FEEPS_properties; | |
43 pl.combine(CAPACT1_properties); | |
44 pl.combine(CAPACT2_properties); | |
45 pl.combine(SC_properties); | |
46 pl.combine(TM_properties); | |
47 pl.combine(IFO_properties); | |
48 end | |
49 end | |
50 | |
51 function pl = FEEPS_properties() | |
52 | |
53 pl = plist(); | |
54 | |
55 % FEEP delay for action on X | |
56 p = param({'FEEPS_TAU_X','FEEP delay for action on X'}, ... | |
57 paramValue.DOUBLE_VALUE(0.066762)); | |
58 p.setProperty('units', 'sec'); | |
59 p.setProperty('min', -inf); | |
60 p.setProperty('max', inf); | |
61 p.setProperty('ref_frame', 'SS_MF'); | |
62 p.setProperty('subsystem', 'FEEPS'); | |
63 p.setProperty('reference', 'TBD'); | |
64 pl.append(p); | |
65 | |
66 % FEEP delay for action on Y | |
67 p = param({'FEEPS_TAU_Y','FEEP delay for action on Y'}, ... | |
68 paramValue.DOUBLE_VALUE(0.066762)); | |
69 p.setProperty('units', 'sec'); | |
70 p.setProperty('min', -inf); | |
71 p.setProperty('max', inf); | |
72 p.setProperty('ref_frame', 'SS_MF'); | |
73 p.setProperty('subsystem', 'FEEPS'); | |
74 p.setProperty('reference', 'TBD'); | |
75 pl.append(p); | |
76 | |
77 % FEEP delay for action on Z | |
78 p = param({'FEEPS_TAU_Z','FEEP delay for action on Z'}, ... | |
79 paramValue.DOUBLE_VALUE(0.066762)); | |
80 p.setProperty('units', 'sec'); | |
81 p.setProperty('min', -inf); | |
82 p.setProperty('max', inf); | |
83 p.setProperty('ref_frame', 'SS_MF'); | |
84 p.setProperty('subsystem', 'FEEPS'); | |
85 p.setProperty('reference', 'TBD'); | |
86 pl.append(p); | |
87 | |
88 % FEEP delay for action on theta | |
89 p = param({'FEEPS_TAU_THETA','FEEP delay for action on theta'}, ... | |
90 paramValue.DOUBLE_VALUE(0.066762)); | |
91 p.setProperty('units', 'sec'); | |
92 p.setProperty('min', -inf); | |
93 p.setProperty('max', inf); | |
94 p.setProperty('ref_frame', 'SS_MF'); | |
95 p.setProperty('subsystem', 'FEEPS'); | |
96 p.setProperty('reference', 'TBD'); | |
97 pl.append(p); | |
98 | |
99 % FEEP delay for action on eta | |
100 p = param({'FEEPS_TAU_ETA','FEEP delay for action on eta'}, ... | |
101 paramValue.DOUBLE_VALUE(0.066762)); | |
102 p.setProperty('units', 'sec'); | |
103 p.setProperty('min', -inf); | |
104 p.setProperty('max', inf); | |
105 p.setProperty('ref_frame', 'SS_MF'); | |
106 p.setProperty('subsystem', 'FEEPS'); | |
107 p.setProperty('reference', 'TBD'); | |
108 pl.append(p); | |
109 | |
110 % FEEP delay for action on phi | |
111 p = param({'FEEPS_TAU_PHI','FEEP delay for action on phi'}, ... | |
112 paramValue.DOUBLE_VALUE(0.066762)); | |
113 p.setProperty('units', 'sec'); | |
114 p.setProperty('min', -inf); | |
115 p.setProperty('max', inf); | |
116 p.setProperty('ref_frame', 'SS_MF'); | |
117 p.setProperty('subsystem', 'FEEPS'); | |
118 p.setProperty('reference', 'TBD'); | |
119 pl.append(p); | |
120 | |
121 % FEEP cross talk between X and X | |
122 p = param({'FEEPS_XX','FEEP cross talk between X and X'}, ... | |
123 paramValue.DOUBLE_VALUE(1)); | |
124 p.setProperty('units', 'unit'); | |
125 p.setProperty('min', -inf); | |
126 p.setProperty('max', inf); | |
127 p.setProperty('ref_frame', 'SS_MF'); | |
128 p.setProperty('subsystem', 'FEEPS'); | |
129 p.setProperty('reference', 'TBD'); | |
130 pl.append(p); | |
131 | |
132 % FEEP cross talk between X and Y | |
133 p = param({'FEEPS_XY','FEEP cross talk between X and Y'}, ... | |
134 paramValue.DOUBLE_VALUE(0)); | |
135 p.setProperty('units', 'unit'); | |
136 p.setProperty('min', -inf); | |
137 p.setProperty('max', inf); | |
138 p.setProperty('ref_frame', 'SS_MF'); | |
139 p.setProperty('subsystem', 'FEEPS'); | |
140 p.setProperty('reference', 'TBD'); | |
141 pl.append(p); | |
142 | |
143 % FEEP cross talk between X and Z | |
144 p = param({'FEEPS_XZ','FEEP cross talk between X and Z'}, ... | |
145 paramValue.DOUBLE_VALUE(0)); | |
146 p.setProperty('units', 'unit'); | |
147 p.setProperty('min', -inf); | |
148 p.setProperty('max', inf); | |
149 p.setProperty('ref_frame', 'SS_MF'); | |
150 p.setProperty('subsystem', 'FEEPS'); | |
151 p.setProperty('reference', 'TBD'); | |
152 pl.append(p); | |
153 | |
154 % FEEP cross talk between X and theta | |
155 p = param({'FEEPS_XTHETA','FEEP cross talk between X and theta'}, ... | |
156 paramValue.DOUBLE_VALUE(0)); | |
157 p.setProperty('units', 'rad m^(-1)'); | |
158 p.setProperty('min', -inf); | |
159 p.setProperty('max', inf); | |
160 p.setProperty('ref_frame', 'SS_MF'); | |
161 p.setProperty('subsystem', 'FEEPS'); | |
162 p.setProperty('reference', 'TBD'); | |
163 pl.append(p); | |
164 | |
165 % FEEP cross talk between X and eta | |
166 p = param({'FEEPS_XETA','FEEP cross talk between X and eta'}, ... | |
167 paramValue.DOUBLE_VALUE(0)); | |
168 p.setProperty('units', 'rad m^(-1)'); | |
169 p.setProperty('min', -inf); | |
170 p.setProperty('max', inf); | |
171 p.setProperty('ref_frame', 'SS_MF'); | |
172 p.setProperty('subsystem', 'FEEPS'); | |
173 p.setProperty('reference', 'TBD'); | |
174 pl.append(p); | |
175 | |
176 % FEEP cross talk between Y and phi | |
177 p = param({'FEEPS_XPHI','FEEP cross talk between Y and phi'}, ... | |
178 paramValue.DOUBLE_VALUE(0)); | |
179 p.setProperty('units', 'rad m^(-1)'); | |
180 p.setProperty('min', -inf); | |
181 p.setProperty('max', inf); | |
182 p.setProperty('ref_frame', 'SS_MF'); | |
183 p.setProperty('subsystem', 'FEEPS'); | |
184 p.setProperty('reference', 'TBD'); | |
185 pl.append(p); | |
186 | |
187 % FEEP cross talk between Y and X | |
188 p = param({'FEEPS_YX','FEEP cross talk between Y and X'}, ... | |
189 paramValue.DOUBLE_VALUE(0)); | |
190 p.setProperty('units', 'unit'); | |
191 p.setProperty('min', -inf); | |
192 p.setProperty('max', inf); | |
193 p.setProperty('ref_frame', 'SS_MF'); | |
194 p.setProperty('subsystem', 'FEEPS'); | |
195 p.setProperty('reference', 'TBD'); | |
196 pl.append(p); | |
197 | |
198 % FEEP cross talk between Y and Y | |
199 p = param({'FEEPS_YY','FEEP cross talk between Y and Y'}, ... | |
200 paramValue.DOUBLE_VALUE(1)); | |
201 p.setProperty('units', 'unit'); | |
202 p.setProperty('min', -inf); | |
203 p.setProperty('max', inf); | |
204 p.setProperty('ref_frame', 'SS_MF'); | |
205 p.setProperty('subsystem', 'FEEPS'); | |
206 p.setProperty('reference', 'TBD'); | |
207 pl.append(p); | |
208 | |
209 % FEEP cross talk between Y and Z | |
210 p = param({'FEEPS_YZ','FEEP cross talk between Y and Z'}, ... | |
211 paramValue.DOUBLE_VALUE(0)); | |
212 p.setProperty('units', 'unit'); | |
213 p.setProperty('min', -inf); | |
214 p.setProperty('max', inf); | |
215 p.setProperty('ref_frame', 'SS_MF'); | |
216 p.setProperty('subsystem', 'FEEPS'); | |
217 p.setProperty('reference', 'TBD'); | |
218 pl.append(p); | |
219 | |
220 % FEEP cross talk between Y and theta | |
221 p = param({'FEEPS_YTHETA','FEEP cross talk between Y and theta'}, ... | |
222 paramValue.DOUBLE_VALUE(0)); | |
223 p.setProperty('units', 'rad m^(-1)'); | |
224 p.setProperty('min', -inf); | |
225 p.setProperty('max', inf); | |
226 p.setProperty('ref_frame', 'SS_MF'); | |
227 p.setProperty('subsystem', 'FEEPS'); | |
228 p.setProperty('reference', 'TBD'); | |
229 pl.append(p); | |
230 | |
231 % FEEP cross talk between Y and eta | |
232 p = param({'FEEPS_YETA','FEEP cross talk between Y and eta'}, ... | |
233 paramValue.DOUBLE_VALUE(0)); | |
234 p.setProperty('units', 'rad m^(-1)'); | |
235 p.setProperty('min', -inf); | |
236 p.setProperty('max', inf); | |
237 p.setProperty('ref_frame', 'SS_MF'); | |
238 p.setProperty('subsystem', 'FEEPS'); | |
239 p.setProperty('reference', 'TBD'); | |
240 pl.append(p); | |
241 | |
242 % FEEP cross talk between Y and phi | |
243 p = param({'FEEPS_YPHI','FEEP cross talk between Y and phi'}, ... | |
244 paramValue.DOUBLE_VALUE(0)); | |
245 p.setProperty('units', 'rad m^(-1)'); | |
246 p.setProperty('min', -inf); | |
247 p.setProperty('max', inf); | |
248 p.setProperty('ref_frame', 'SS_MF'); | |
249 p.setProperty('subsystem', 'FEEPS'); | |
250 p.setProperty('reference', 'TBD'); | |
251 pl.append(p); | |
252 | |
253 % FEEP cross talk between Z and X | |
254 p = param({'FEEPS_ZX','FEEP cross talk between Z and X'}, ... | |
255 paramValue.DOUBLE_VALUE(0)); | |
256 p.setProperty('units', 'unit'); | |
257 p.setProperty('min', -inf); | |
258 p.setProperty('max', inf); | |
259 p.setProperty('ref_frame', 'SS_MF'); | |
260 p.setProperty('subsystem', 'FEEPS'); | |
261 p.setProperty('reference', 'TBD'); | |
262 pl.append(p); | |
263 | |
264 % FEEP cross talk between Z and Y | |
265 p = param({'FEEPS_ZY','FEEP cross talk between Z and Y'}, ... | |
266 paramValue.DOUBLE_VALUE(0)); | |
267 p.setProperty('units', 'unit'); | |
268 p.setProperty('min', -inf); | |
269 p.setProperty('max', inf); | |
270 p.setProperty('ref_frame', 'SS_MF'); | |
271 p.setProperty('subsystem', 'FEEPS'); | |
272 p.setProperty('reference', 'TBD'); | |
273 pl.append(p); | |
274 | |
275 % FEEP cross talk between Z and Z | |
276 p = param({'FEEPS_ZZ','FEEP cross talk between Z and Z'}, ... | |
277 paramValue.DOUBLE_VALUE(1)); | |
278 p.setProperty('units', 'unit'); | |
279 p.setProperty('min', -inf); | |
280 p.setProperty('max', inf); | |
281 p.setProperty('ref_frame', 'SS_MF'); | |
282 p.setProperty('subsystem', 'FEEPS'); | |
283 p.setProperty('reference', 'TBD'); | |
284 pl.append(p); | |
285 | |
286 % FEEP cross talk between Z and theta | |
287 p = param({'FEEPS_ZTHETA','FEEP cross talk between Z and theta'}, ... | |
288 paramValue.DOUBLE_VALUE(0)); | |
289 p.setProperty('units', 'rad m^(-1)'); | |
290 p.setProperty('min', -inf); | |
291 p.setProperty('max', inf); | |
292 p.setProperty('ref_frame', 'SS_MF'); | |
293 p.setProperty('subsystem', 'FEEPS'); | |
294 p.setProperty('reference', 'TBD'); | |
295 pl.append(p); | |
296 | |
297 % FEEP cross talk between Z and eta | |
298 p = param({'FEEPS_ZETA','FEEP cross talk between Z and eta'}, ... | |
299 paramValue.DOUBLE_VALUE(0)); | |
300 p.setProperty('units', 'rad m^(-1)'); | |
301 p.setProperty('min', -inf); | |
302 p.setProperty('max', inf); | |
303 p.setProperty('ref_frame', 'SS_MF'); | |
304 p.setProperty('subsystem', 'FEEPS'); | |
305 p.setProperty('reference', 'TBD'); | |
306 pl.append(p); | |
307 | |
308 % FEEP cross talk between Z and phi | |
309 p = param({'FEEPS_ZPHI','FEEP cross talk between Z and phi'}, ... | |
310 paramValue.DOUBLE_VALUE(0)); | |
311 p.setProperty('units', 'rad m^(-1)'); | |
312 p.setProperty('min', -inf); | |
313 p.setProperty('max', inf); | |
314 p.setProperty('ref_frame', 'SS_MF'); | |
315 p.setProperty('subsystem', 'FEEPS'); | |
316 p.setProperty('reference', 'TBD'); | |
317 pl.append(p); | |
318 | |
319 % FEEP cross talk between theta and X | |
320 p = param({'FEEPS_THETAX','FEEP cross talk between theta and X'}, ... | |
321 paramValue.DOUBLE_VALUE(0)); | |
322 p.setProperty('units', 'rad^(-1) m'); | |
323 p.setProperty('min', -inf); | |
324 p.setProperty('max', inf); | |
325 p.setProperty('ref_frame', 'SS_MF'); | |
326 p.setProperty('subsystem', 'FEEPS'); | |
327 p.setProperty('reference', 'TBD'); | |
328 pl.append(p); | |
329 | |
330 % FEEP cross talk between theta and Y | |
331 p = param({'FEEPS_THETAY','FEEP cross talk between theta and Y'}, ... | |
332 paramValue.DOUBLE_VALUE(0)); | |
333 p.setProperty('units', 'rad^(-1) m'); | |
334 p.setProperty('min', -inf); | |
335 p.setProperty('max', inf); | |
336 p.setProperty('ref_frame', 'SS_MF'); | |
337 p.setProperty('subsystem', 'FEEPS'); | |
338 p.setProperty('reference', 'TBD'); | |
339 pl.append(p); | |
340 | |
341 % FEEP cross talk between theta and Z | |
342 p = param({'FEEPS_THETAZ','FEEP cross talk between theta and Z'}, ... | |
343 paramValue.DOUBLE_VALUE(0)); | |
344 p.setProperty('units', 'rad^(-1) m'); | |
345 p.setProperty('min', -inf); | |
346 p.setProperty('max', inf); | |
347 p.setProperty('ref_frame', 'SS_MF'); | |
348 p.setProperty('subsystem', 'FEEPS'); | |
349 p.setProperty('reference', 'TBD'); | |
350 pl.append(p); | |
351 | |
352 % FEEP cross talk between theta and theta | |
353 p = param({'FEEPS_THETATHETA','FEEP cross talk between theta and theta'}, ... | |
354 paramValue.DOUBLE_VALUE(1)); | |
355 p.setProperty('units', 'unit'); | |
356 p.setProperty('min', -inf); | |
357 p.setProperty('max', inf); | |
358 p.setProperty('ref_frame', 'SS_MF'); | |
359 p.setProperty('subsystem', 'FEEPS'); | |
360 p.setProperty('reference', 'TBD'); | |
361 pl.append(p); | |
362 | |
363 % FEEP cross talk between theta and eta | |
364 p = param({'FEEPS_THETAETA','FEEP cross talk between theta and eta'}, ... | |
365 paramValue.DOUBLE_VALUE(0)); | |
366 p.setProperty('units', 'unit'); | |
367 p.setProperty('min', -inf); | |
368 p.setProperty('max', inf); | |
369 p.setProperty('ref_frame', 'SS_MF'); | |
370 p.setProperty('subsystem', 'FEEPS'); | |
371 p.setProperty('reference', 'TBD'); | |
372 pl.append(p); | |
373 | |
374 % FEEP cross talk between theta and phi | |
375 p = param({'FEEPS_THETAPHI','FEEP cross talk between theta and phi'}, ... | |
376 paramValue.DOUBLE_VALUE(0)); | |
377 p.setProperty('units', 'unit'); | |
378 p.setProperty('min', -inf); | |
379 p.setProperty('max', inf); | |
380 p.setProperty('ref_frame', 'SS_MF'); | |
381 p.setProperty('subsystem', 'FEEPS'); | |
382 p.setProperty('reference', 'TBD'); | |
383 pl.append(p); | |
384 | |
385 % FEEP cross talk between eta and X | |
386 p = param({'FEEPS_ETAX','FEEP cross talk between eta and X'}, ... | |
387 paramValue.DOUBLE_VALUE(0)); | |
388 p.setProperty('units', 'rad^(-1) m'); | |
389 p.setProperty('min', -inf); | |
390 p.setProperty('max', inf); | |
391 p.setProperty('ref_frame', 'SS_MF'); | |
392 p.setProperty('subsystem', 'FEEPS'); | |
393 p.setProperty('reference', 'TBD'); | |
394 pl.append(p); | |
395 | |
396 % FEEP cross talk between eta and Y | |
397 p = param({'FEEPS_ETAY','FEEP cross talk between eta and Y'}, ... | |
398 paramValue.DOUBLE_VALUE(0)); | |
399 p.setProperty('units', 'rad^(-1) m'); | |
400 p.setProperty('min', -inf); | |
401 p.setProperty('max', inf); | |
402 p.setProperty('ref_frame', 'SS_MF'); | |
403 p.setProperty('subsystem', 'FEEPS'); | |
404 p.setProperty('reference', 'TBD'); | |
405 pl.append(p); | |
406 | |
407 % FEEP cross talk between eta and Z | |
408 p = param({'FEEPS_ETAZ','FEEP cross talk between eta and Z'}, ... | |
409 paramValue.DOUBLE_VALUE(0)); | |
410 p.setProperty('units', 'rad^(-1) m'); | |
411 p.setProperty('min', -inf); | |
412 p.setProperty('max', inf); | |
413 p.setProperty('ref_frame', 'SS_MF'); | |
414 p.setProperty('subsystem', 'FEEPS'); | |
415 p.setProperty('reference', 'TBD'); | |
416 pl.append(p); | |
417 | |
418 % FEEP cross talk between eta and theta | |
419 p = param({'FEEPS_ETATHETA','FEEP cross talk between eta and theta'}, ... | |
420 paramValue.DOUBLE_VALUE(0)); | |
421 p.setProperty('units', 'unit'); | |
422 p.setProperty('min', -inf); | |
423 p.setProperty('max', inf); | |
424 p.setProperty('ref_frame', 'SS_MF'); | |
425 p.setProperty('subsystem', 'FEEPS'); | |
426 p.setProperty('reference', 'TBD'); | |
427 pl.append(p); | |
428 | |
429 % FEEP cross talk between eta and eta | |
430 p = param({'FEEPS_ETAETA','FEEP cross talk between eta and eta'}, ... | |
431 paramValue.DOUBLE_VALUE(1)); | |
432 p.setProperty('units', 'unit'); | |
433 p.setProperty('min', -inf); | |
434 p.setProperty('max', inf); | |
435 p.setProperty('ref_frame', 'SS_MF'); | |
436 p.setProperty('subsystem', 'FEEPS'); | |
437 p.setProperty('reference', 'TBD'); | |
438 pl.append(p); | |
439 | |
440 % FEEP cross talk between eta and phi | |
441 p = param({'FEEPS_ETAPHI','FEEP cross talk between eta and phi'}, ... | |
442 paramValue.DOUBLE_VALUE(0)); | |
443 p.setProperty('units', 'unit'); | |
444 p.setProperty('min', -inf); | |
445 p.setProperty('max', inf); | |
446 p.setProperty('ref_frame', 'SS_MF'); | |
447 p.setProperty('subsystem', 'FEEPS'); | |
448 p.setProperty('reference', 'TBD'); | |
449 pl.append(p); | |
450 | |
451 % FEEP cross talk between phi and X | |
452 p = param({'FEEPS_PHIX','FEEP cross talk between phi and X'}, ... | |
453 paramValue.DOUBLE_VALUE(0)); | |
454 p.setProperty('units', 'rad^(-1) m'); | |
455 p.setProperty('min', -inf); | |
456 p.setProperty('max', inf); | |
457 p.setProperty('ref_frame', 'SS_MF'); | |
458 p.setProperty('subsystem', 'FEEPS'); | |
459 p.setProperty('reference', 'TBD'); | |
460 pl.append(p); | |
461 | |
462 % FEEP cross talk between phi and Y | |
463 p = param({'FEEPS_PHIY','FEEP cross talk between phi and Y'}, ... | |
464 paramValue.DOUBLE_VALUE(0)); | |
465 p.setProperty('units', 'rad^(-1) m'); | |
466 p.setProperty('min', -inf); | |
467 p.setProperty('max', inf); | |
468 p.setProperty('ref_frame', 'SS_MF'); | |
469 p.setProperty('subsystem', 'FEEPS'); | |
470 p.setProperty('reference', 'TBD'); | |
471 pl.append(p); | |
472 | |
473 % FEEP cross talk between phi and Z | |
474 p = param({'FEEPS_PHIZ','FEEP cross talk between phi and Z'}, ... | |
475 paramValue.DOUBLE_VALUE(0)); | |
476 p.setProperty('units', 'rad^(-1) m'); | |
477 p.setProperty('min', -inf); | |
478 p.setProperty('max', inf); | |
479 p.setProperty('ref_frame', 'SS_MF'); | |
480 p.setProperty('subsystem', 'FEEPS'); | |
481 p.setProperty('reference', 'TBD'); | |
482 pl.append(p); | |
483 | |
484 % FEEP cross talk between phi and theta | |
485 p = param({'FEEPS_PHITHETA','FEEP cross talk between phi and theta'}, ... | |
486 paramValue.DOUBLE_VALUE(0)); | |
487 p.setProperty('units', 'unit'); | |
488 p.setProperty('min', -inf); | |
489 p.setProperty('max', inf); | |
490 p.setProperty('ref_frame', 'SS_MF'); | |
491 p.setProperty('subsystem', 'FEEPS'); | |
492 p.setProperty('reference', 'TBD'); | |
493 pl.append(p); | |
494 | |
495 % FEEP cross talk between phi and eta | |
496 p = param({'FEEPS_PHIETA','FEEP cross talk between phi and eta'}, ... | |
497 paramValue.DOUBLE_VALUE(0)); | |
498 p.setProperty('units', 'unit'); | |
499 p.setProperty('min', -inf); | |
500 p.setProperty('max', inf); | |
501 p.setProperty('ref_frame', 'SS_MF'); | |
502 p.setProperty('subsystem', 'FEEPS'); | |
503 p.setProperty('reference', 'TBD'); | |
504 pl.append(p); | |
505 | |
506 % FEEP cross talk between phi and phi | |
507 p = param({'FEEPS_PHIPHI','FEEP cross talk between phi and phi'}, ... | |
508 paramValue.DOUBLE_VALUE(1)); | |
509 p.setProperty('units', 'unit'); | |
510 p.setProperty('min', -inf); | |
511 p.setProperty('max', inf); | |
512 p.setProperty('ref_frame', 'SS_MF'); | |
513 p.setProperty('subsystem', 'FEEPS'); | |
514 p.setProperty('reference', 'TBD'); | |
515 pl.append(p); | |
516 | |
517 % X position of CoM of SC | |
518 p = param({'rB_M_X','X position of CoM of SC'}, ... | |
519 paramValue.DOUBLE_VALUE(5e-3)); | |
520 p.setProperty('units', 'm'); | |
521 p.setProperty('min', -inf); | |
522 p.setProperty('max', inf); | |
523 p.setProperty('ref_frame', 'SS_MF'); | |
524 p.setProperty('subsystem', 'unknown'); | |
525 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
526 pl.append(p); | |
527 | |
528 % Y position of CoM of SC | |
529 p = param({'rB_M_Y','Y position of CoM of SC'}, ... | |
530 paramValue.DOUBLE_VALUE(6e-3)); | |
531 p.setProperty('units', 'm'); | |
532 p.setProperty('min', -inf); | |
533 p.setProperty('max', inf); | |
534 p.setProperty('ref_frame', 'SS_MF'); | |
535 p.setProperty('subsystem', 'unknown'); | |
536 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
537 pl.append(p); | |
538 | |
539 % Z position of CoM of SC | |
540 p = param({'rB_M_Z','Z position of CoM of SC'}, ... | |
541 paramValue.DOUBLE_VALUE(470e-3)); | |
542 p.setProperty('units', 'm'); | |
543 p.setProperty('min', -inf); | |
544 p.setProperty('max', inf); | |
545 p.setProperty('ref_frame', 'SS_MF'); | |
546 p.setProperty('subsystem', 'unknown'); | |
547 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
548 pl.append(p); | |
549 | |
550 end | |
551 function pl = CAPACT1_properties() | |
552 | |
553 pl = plist(); | |
554 | |
555 % TM1 X to X Capacitive actuation cross-talk (worst case) ? | |
556 p = param({'CAPACT_TM1_XX','TM1 X to X Capacitive actuation cross-talk (worst case) ?'}, ... | |
557 paramValue.DOUBLE_VALUE(1)); | |
558 p.setProperty('units', 'unit'); | |
559 p.setProperty('min', -inf); | |
560 p.setProperty('max', inf); | |
561 p.setProperty('ref_frame', 'SS_MF'); | |
562 p.setProperty('subsystem', 'CAPACT1'); | |
563 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
564 pl.append(p); | |
565 | |
566 % TM1 X to Y Capacitive actuation cross-talk (worst case) ? | |
567 p = param({'CAPACT_TM1_XY','TM1 X to Y Capacitive actuation cross-talk (worst case) ?'}, ... | |
568 paramValue.DOUBLE_VALUE(0.0011)); | |
569 p.setProperty('units', 'unit'); | |
570 p.setProperty('min', -inf); | |
571 p.setProperty('max', inf); | |
572 p.setProperty('ref_frame', 'SS_MF'); | |
573 p.setProperty('subsystem', 'CAPACT1'); | |
574 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
575 pl.append(p); | |
576 | |
577 % TM1 X to Z Capacitive actuation cross-talk (worst case) ? | |
578 p = param({'CAPACT_TM1_XZ','TM1 X to Z Capacitive actuation cross-talk (worst case) ?'}, ... | |
579 paramValue.DOUBLE_VALUE(0.0011)); | |
580 p.setProperty('units', 'unit'); | |
581 p.setProperty('min', -inf); | |
582 p.setProperty('max', inf); | |
583 p.setProperty('ref_frame', 'SS_MF'); | |
584 p.setProperty('subsystem', 'CAPACT1'); | |
585 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
586 pl.append(p); | |
587 | |
588 % TM1 X to theta Capacitive actuation cross-talk (worst case) ? | |
589 p = param({'CAPACT_TM1_XTHETA','TM1 X to theta Capacitive actuation cross-talk (worst case) ?'}, ... | |
590 paramValue.DOUBLE_VALUE(0.21739)); | |
591 p.setProperty('units', 'rad m^(-1)'); | |
592 p.setProperty('min', -inf); | |
593 p.setProperty('max', inf); | |
594 p.setProperty('ref_frame', 'SS_MF'); | |
595 p.setProperty('subsystem', 'CAPACT1'); | |
596 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
597 pl.append(p); | |
598 | |
599 % TM1 X to eta Capacitive actuation cross-talk (worst case) ? | |
600 p = param({'CAPACT_TM1_XETA','TM1 X to eta Capacitive actuation cross-talk (worst case) ?'}, ... | |
601 paramValue.DOUBLE_VALUE(0.21739)); | |
602 p.setProperty('units', 'rad m^(-1)'); | |
603 p.setProperty('min', -inf); | |
604 p.setProperty('max', inf); | |
605 p.setProperty('ref_frame', 'SS_MF'); | |
606 p.setProperty('subsystem', 'CAPACT1'); | |
607 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
608 pl.append(p); | |
609 | |
610 % TM1 X to phi Capacitive actuation cross-talk (worst case) ? | |
611 p = param({'CAPACT_TM1_XPHI','TM1 X to phi Capacitive actuation cross-talk (worst case) ?'}, ... | |
612 paramValue.DOUBLE_VALUE(0.39131)); | |
613 p.setProperty('units', 'rad m^(-1)'); | |
614 p.setProperty('min', -inf); | |
615 p.setProperty('max', inf); | |
616 p.setProperty('ref_frame', 'SS_MF'); | |
617 p.setProperty('subsystem', 'CAPACT1'); | |
618 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
619 pl.append(p); | |
620 | |
621 % TM1 Y to X Capacitive actuation cross-talk (worst case) ? | |
622 p = param({'CAPACT_TM1_YX','TM1 Y to X Capacitive actuation cross-talk (worst case) ?'}, ... | |
623 paramValue.DOUBLE_VALUE(0.0011)); | |
624 p.setProperty('units', 'unit'); | |
625 p.setProperty('min', -inf); | |
626 p.setProperty('max', inf); | |
627 p.setProperty('ref_frame', 'SS_MF'); | |
628 p.setProperty('subsystem', 'CAPACT1'); | |
629 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
630 pl.append(p); | |
631 | |
632 % TM1 Y to Y Capacitive actuation cross-talk (worst case) ? | |
633 p = param({'CAPACT_TM1_YY','TM1 Y to Y Capacitive actuation cross-talk (worst case) ?'}, ... | |
634 paramValue.DOUBLE_VALUE(1)); | |
635 p.setProperty('units', 'unit'); | |
636 p.setProperty('min', -inf); | |
637 p.setProperty('max', inf); | |
638 p.setProperty('ref_frame', 'SS_MF'); | |
639 p.setProperty('subsystem', 'CAPACT1'); | |
640 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
641 pl.append(p); | |
642 | |
643 % TM1 Y to Z Capacitive actuation cross-talk (worst case) ? | |
644 p = param({'CAPACT_TM1_YZ','TM1 Y to Z Capacitive actuation cross-talk (worst case) ?'}, ... | |
645 paramValue.DOUBLE_VALUE(0.0011)); | |
646 p.setProperty('units', 'unit'); | |
647 p.setProperty('min', -inf); | |
648 p.setProperty('max', inf); | |
649 p.setProperty('ref_frame', 'SS_MF'); | |
650 p.setProperty('subsystem', 'CAPACT1'); | |
651 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
652 pl.append(p); | |
653 | |
654 % TM1 Y to theta Capacitive actuation cross-talk (worst case) ? | |
655 p = param({'CAPACT_TM1_YTHETA','TM1 Y to theta Capacitive actuation cross-talk (worst case) ?'}, ... | |
656 paramValue.DOUBLE_VALUE(0.39131)); | |
657 p.setProperty('units', 'rad m^(-1)'); | |
658 p.setProperty('min', -inf); | |
659 p.setProperty('max', inf); | |
660 p.setProperty('ref_frame', 'SS_MF'); | |
661 p.setProperty('subsystem', 'CAPACT1'); | |
662 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
663 pl.append(p); | |
664 | |
665 % TM1 Y to eta Capacitive actuation cross-talk (worst case) ? | |
666 p = param({'CAPACT_TM1_YETA','TM1 Y to eta Capacitive actuation cross-talk (worst case) ?'}, ... | |
667 paramValue.DOUBLE_VALUE(0.21739)); | |
668 p.setProperty('units', 'rad m^(-1)'); | |
669 p.setProperty('min', -inf); | |
670 p.setProperty('max', inf); | |
671 p.setProperty('ref_frame', 'SS_MF'); | |
672 p.setProperty('subsystem', 'CAPACT1'); | |
673 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
674 pl.append(p); | |
675 | |
676 % TM1 Y to phi Capacitive actuation cross-talk (worst case) ? | |
677 p = param({'CAPACT_TM1_YPHI','TM1 Y to phi Capacitive actuation cross-talk (worst case) ?'}, ... | |
678 paramValue.DOUBLE_VALUE(0.21739)); | |
679 p.setProperty('units', 'rad m^(-1)'); | |
680 p.setProperty('min', -inf); | |
681 p.setProperty('max', inf); | |
682 p.setProperty('ref_frame', 'SS_MF'); | |
683 p.setProperty('subsystem', 'CAPACT1'); | |
684 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
685 pl.append(p); | |
686 | |
687 % TM1 Z to X Capacitive actuation cross-talk (worst case) ? | |
688 p = param({'CAPACT_TM1_ZX','TM1 Z to X Capacitive actuation cross-talk (worst case) ?'}, ... | |
689 paramValue.DOUBLE_VALUE(0.0011)); | |
690 p.setProperty('units', 'unit'); | |
691 p.setProperty('min', -inf); | |
692 p.setProperty('max', inf); | |
693 p.setProperty('ref_frame', 'SS_MF'); | |
694 p.setProperty('subsystem', 'CAPACT1'); | |
695 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
696 pl.append(p); | |
697 | |
698 % TM1 Z to Y Capacitive actuation cross-talk (worst case) ? | |
699 p = param({'CAPACT_TM1_ZY','TM1 Z to Y Capacitive actuation cross-talk (worst case) ?'}, ... | |
700 paramValue.DOUBLE_VALUE(0.0011)); | |
701 p.setProperty('units', 'unit'); | |
702 p.setProperty('min', -inf); | |
703 p.setProperty('max', inf); | |
704 p.setProperty('ref_frame', 'SS_MF'); | |
705 p.setProperty('subsystem', 'CAPACT1'); | |
706 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
707 pl.append(p); | |
708 | |
709 % TM1 Z to Z Capacitive actuation cross-talk (worst case) ? | |
710 p = param({'CAPACT_TM1_ZZ','TM1 Z to Z Capacitive actuation cross-talk (worst case) ?'}, ... | |
711 paramValue.DOUBLE_VALUE(1)); | |
712 p.setProperty('units', 'unit'); | |
713 p.setProperty('min', -inf); | |
714 p.setProperty('max', inf); | |
715 p.setProperty('ref_frame', 'SS_MF'); | |
716 p.setProperty('subsystem', 'CAPACT1'); | |
717 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
718 pl.append(p); | |
719 | |
720 % TM1 Z to theta Capacitive actuation cross-talk (worst case) ? | |
721 p = param({'CAPACT_TM1_ZTHETA','TM1 Z to theta Capacitive actuation cross-talk (worst case) ?'}, ... | |
722 paramValue.DOUBLE_VALUE(0.21739)); | |
723 p.setProperty('units', 'rad m^(-1)'); | |
724 p.setProperty('min', -inf); | |
725 p.setProperty('max', inf); | |
726 p.setProperty('ref_frame', 'SS_MF'); | |
727 p.setProperty('subsystem', 'CAPACT1'); | |
728 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
729 pl.append(p); | |
730 | |
731 % TM1 Z to eta Capacitive actuation cross-talk (worst case) ? | |
732 p = param({'CAPACT_TM1_ZETA','TM1 Z to eta Capacitive actuation cross-talk (worst case) ?'}, ... | |
733 paramValue.DOUBLE_VALUE(0.39131)); | |
734 p.setProperty('units', 'rad m^(-1)'); | |
735 p.setProperty('min', -inf); | |
736 p.setProperty('max', inf); | |
737 p.setProperty('ref_frame', 'SS_MF'); | |
738 p.setProperty('subsystem', 'CAPACT1'); | |
739 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
740 pl.append(p); | |
741 | |
742 % TM1 Z to phi Capacitive actuation cross-talk (worst case) ? | |
743 p = param({'CAPACT_TM1_ZPHI','TM1 Z to phi Capacitive actuation cross-talk (worst case) ?'}, ... | |
744 paramValue.DOUBLE_VALUE(0.21739)); | |
745 p.setProperty('units', 'rad m^(-1)'); | |
746 p.setProperty('min', -inf); | |
747 p.setProperty('max', inf); | |
748 p.setProperty('ref_frame', 'SS_MF'); | |
749 p.setProperty('subsystem', 'CAPACT1'); | |
750 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
751 pl.append(p); | |
752 | |
753 % TM1 theta to X Capacitive actuation cross-talk (worst case) ? | |
754 p = param({'CAPACT_TM1_THETAX','TM1 theta to X Capacitive actuation cross-talk (worst case) ?'}, ... | |
755 paramValue.DOUBLE_VALUE(4e-05)); | |
756 p.setProperty('units', 'rad^(-1) m'); | |
757 p.setProperty('min', -inf); | |
758 p.setProperty('max', inf); | |
759 p.setProperty('ref_frame', 'SS_MF'); | |
760 p.setProperty('subsystem', 'CAPACT1'); | |
761 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
762 pl.append(p); | |
763 | |
764 % TM1 theta to Y Capacitive actuation cross-talk (worst case) ? | |
765 p = param({'CAPACT_TM1_THETAY','TM1 theta to Y Capacitive actuation cross-talk (worst case) ?'}, ... | |
766 paramValue.DOUBLE_VALUE(4e-05)); | |
767 p.setProperty('units', 'rad^(-1) m'); | |
768 p.setProperty('min', -inf); | |
769 p.setProperty('max', inf); | |
770 p.setProperty('ref_frame', 'SS_MF'); | |
771 p.setProperty('subsystem', 'CAPACT1'); | |
772 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
773 pl.append(p); | |
774 | |
775 % TM1 theta to Z Capacitive actuation cross-talk (worst case) ? | |
776 p = param({'CAPACT_TM1_THETAZ','TM1 theta to Z Capacitive actuation cross-talk (worst case) ?'}, ... | |
777 paramValue.DOUBLE_VALUE(4e-05)); | |
778 p.setProperty('units', 'rad^(-1) m'); | |
779 p.setProperty('min', -inf); | |
780 p.setProperty('max', inf); | |
781 p.setProperty('ref_frame', 'SS_MF'); | |
782 p.setProperty('subsystem', 'CAPACT1'); | |
783 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
784 pl.append(p); | |
785 | |
786 % TM1 theta to theta Capacitive actuation cross-talk (worst case) ? | |
787 p = param({'CAPACT_TM1_THETATHETA','TM1 theta to theta Capacitive actuation cross-talk (worst case) ?'}, ... | |
788 paramValue.DOUBLE_VALUE(1)); | |
789 p.setProperty('units', 'unit'); | |
790 p.setProperty('min', -inf); | |
791 p.setProperty('max', inf); | |
792 p.setProperty('ref_frame', 'SS_MF'); | |
793 p.setProperty('subsystem', 'CAPACT1'); | |
794 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
795 pl.append(p); | |
796 | |
797 % TM1 theta to eta Capacitive actuation cross-talk (worst case) ? | |
798 p = param({'CAPACT_TM1_THETAETA','TM1 theta to eta Capacitive actuation cross-talk (worst case) ?'}, ... | |
799 paramValue.DOUBLE_VALUE(0.005)); | |
800 p.setProperty('units', 'unit'); | |
801 p.setProperty('min', -inf); | |
802 p.setProperty('max', inf); | |
803 p.setProperty('ref_frame', 'SS_MF'); | |
804 p.setProperty('subsystem', 'CAPACT1'); | |
805 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
806 pl.append(p); | |
807 | |
808 % TM1 theta to phi Capacitive actuation cross-talk (worst case) ? | |
809 p = param({'CAPACT_TM1_THETAPHI','TM1 theta to phi Capacitive actuation cross-talk (worst case) ?'}, ... | |
810 paramValue.DOUBLE_VALUE(0.005)); | |
811 p.setProperty('units', 'unit'); | |
812 p.setProperty('min', -inf); | |
813 p.setProperty('max', inf); | |
814 p.setProperty('ref_frame', 'SS_MF'); | |
815 p.setProperty('subsystem', 'CAPACT1'); | |
816 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
817 pl.append(p); | |
818 | |
819 % TM1 eta to X Capacitive actuation cross-talk (worst case) ? | |
820 p = param({'CAPACT_TM1_ETAX','TM1 eta to X Capacitive actuation cross-talk (worst case) ?'}, ... | |
821 paramValue.DOUBLE_VALUE(4e-05)); | |
822 p.setProperty('units', 'rad^(-1) m'); | |
823 p.setProperty('min', -inf); | |
824 p.setProperty('max', inf); | |
825 p.setProperty('ref_frame', 'SS_MF'); | |
826 p.setProperty('subsystem', 'CAPACT1'); | |
827 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
828 pl.append(p); | |
829 | |
830 % TM1 eta to Y Capacitive actuation cross-talk (worst case) ? | |
831 p = param({'CAPACT_TM1_ETAY','TM1 eta to Y Capacitive actuation cross-talk (worst case) ?'}, ... | |
832 paramValue.DOUBLE_VALUE(4e-05)); | |
833 p.setProperty('units', 'rad^(-1) m'); | |
834 p.setProperty('min', -inf); | |
835 p.setProperty('max', inf); | |
836 p.setProperty('ref_frame', 'SS_MF'); | |
837 p.setProperty('subsystem', 'CAPACT1'); | |
838 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
839 pl.append(p); | |
840 | |
841 % TM1 eta to Z Capacitive actuation cross-talk (worst case) ? | |
842 p = param({'CAPACT_TM1_ETAZ','TM1 eta to Z Capacitive actuation cross-talk (worst case) ?'}, ... | |
843 paramValue.DOUBLE_VALUE(4e-05)); | |
844 p.setProperty('units', 'rad^(-1) m'); | |
845 p.setProperty('min', -inf); | |
846 p.setProperty('max', inf); | |
847 p.setProperty('ref_frame', 'SS_MF'); | |
848 p.setProperty('subsystem', 'CAPACT1'); | |
849 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
850 pl.append(p); | |
851 | |
852 % TM1 eta to theta Capacitive actuation cross-talk (worst case) ? | |
853 p = param({'CAPACT_TM1_ETATHETA','TM1 eta to theta Capacitive actuation cross-talk (worst case) ?'}, ... | |
854 paramValue.DOUBLE_VALUE(0.005)); | |
855 p.setProperty('units', 'unit'); | |
856 p.setProperty('min', -inf); | |
857 p.setProperty('max', inf); | |
858 p.setProperty('ref_frame', 'SS_MF'); | |
859 p.setProperty('subsystem', 'CAPACT1'); | |
860 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
861 pl.append(p); | |
862 | |
863 % TM1 eta to eta Capacitive actuation cross-talk (worst case) ? | |
864 p = param({'CAPACT_TM1_ETAETA','TM1 eta to eta Capacitive actuation cross-talk (worst case) ?'}, ... | |
865 paramValue.DOUBLE_VALUE(1)); | |
866 p.setProperty('units', 'unit'); | |
867 p.setProperty('min', -inf); | |
868 p.setProperty('max', inf); | |
869 p.setProperty('ref_frame', 'SS_MF'); | |
870 p.setProperty('subsystem', 'CAPACT1'); | |
871 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
872 pl.append(p); | |
873 | |
874 % TM1 eta to phi Capacitive actuation cross-talk (worst case) ? | |
875 p = param({'CAPACT_TM1_ETAPHI','TM1 eta to phi Capacitive actuation cross-talk (worst case) ?'}, ... | |
876 paramValue.DOUBLE_VALUE(0.005)); | |
877 p.setProperty('units', 'unit'); | |
878 p.setProperty('min', -inf); | |
879 p.setProperty('max', inf); | |
880 p.setProperty('ref_frame', 'SS_MF'); | |
881 p.setProperty('subsystem', 'CAPACT1'); | |
882 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
883 pl.append(p); | |
884 | |
885 % TM1 phi to X Capacitive actuation cross-talk (worst case) ? | |
886 p = param({'CAPACT_TM1_PHIX','TM1 phi to X Capacitive actuation cross-talk (worst case) ?'}, ... | |
887 paramValue.DOUBLE_VALUE(4e-05)); | |
888 p.setProperty('units', 'rad^(-1) m'); | |
889 p.setProperty('min', -inf); | |
890 p.setProperty('max', inf); | |
891 p.setProperty('ref_frame', 'SS_MF'); | |
892 p.setProperty('subsystem', 'CAPACT1'); | |
893 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
894 pl.append(p); | |
895 | |
896 % TM1 phi to Y Capacitive actuation cross-talk (worst case) ? | |
897 p = param({'CAPACT_TM1_PHIY','TM1 phi to Y Capacitive actuation cross-talk (worst case) ?'}, ... | |
898 paramValue.DOUBLE_VALUE(4e-05)); | |
899 p.setProperty('units', 'rad^(-1) m'); | |
900 p.setProperty('min', -inf); | |
901 p.setProperty('max', inf); | |
902 p.setProperty('ref_frame', 'SS_MF'); | |
903 p.setProperty('subsystem', 'CAPACT1'); | |
904 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
905 pl.append(p); | |
906 | |
907 % TM1 phi to Z Capacitive actuation cross-talk (worst case) ? | |
908 p = param({'CAPACT_TM1_PHIZ','TM1 phi to Z Capacitive actuation cross-talk (worst case) ?'}, ... | |
909 paramValue.DOUBLE_VALUE(4e-05)); | |
910 p.setProperty('units', 'rad^(-1) m'); | |
911 p.setProperty('min', -inf); | |
912 p.setProperty('max', inf); | |
913 p.setProperty('ref_frame', 'SS_MF'); | |
914 p.setProperty('subsystem', 'CAPACT1'); | |
915 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
916 pl.append(p); | |
917 | |
918 % TM1 phi to theta Capacitive actuation cross-talk (worst case) ? | |
919 p = param({'CAPACT_TM1_PHITHETA','TM1 phi to theta Capacitive actuation cross-talk (worst case) ?'}, ... | |
920 paramValue.DOUBLE_VALUE(0.005)); | |
921 p.setProperty('units', 'unit'); | |
922 p.setProperty('min', -inf); | |
923 p.setProperty('max', inf); | |
924 p.setProperty('ref_frame', 'SS_MF'); | |
925 p.setProperty('subsystem', 'CAPACT1'); | |
926 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
927 pl.append(p); | |
928 | |
929 % TM1 phi to eta Capacitive actuation cross-talk (worst case) ? | |
930 p = param({'CAPACT_TM1_PHIETA','TM1 phi to eta Capacitive actuation cross-talk (worst case) ?'}, ... | |
931 paramValue.DOUBLE_VALUE(0.005)); | |
932 p.setProperty('units', 'unit'); | |
933 p.setProperty('min', -inf); | |
934 p.setProperty('max', inf); | |
935 p.setProperty('ref_frame', 'SS_MF'); | |
936 p.setProperty('subsystem', 'CAPACT1'); | |
937 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
938 pl.append(p); | |
939 | |
940 % TM1 phi to phi Capacitive actuation cross-talk (worst case) ? | |
941 p = param({'CAPACT_TM1_PHIPHI','TM1 phi to phi Capacitive actuation cross-talk (worst case) ?'}, ... | |
942 paramValue.DOUBLE_VALUE(1)); | |
943 p.setProperty('units', 'unit'); | |
944 p.setProperty('min', -inf); | |
945 p.setProperty('max', inf); | |
946 p.setProperty('ref_frame', 'SS_MF'); | |
947 p.setProperty('subsystem', 'CAPACT1'); | |
948 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
949 pl.append(p); | |
950 | |
951 end | |
952 function pl = CAPACT2_properties() | |
953 | |
954 pl = plist(); | |
955 | |
956 % TM2 X to X Capacitive actuation cross-talk (worst case) ? | |
957 p = param({'CAPACT_TM2_XX','TM2 X to X Capacitive actuation cross-talk (worst case) ?'}, ... | |
958 paramValue.DOUBLE_VALUE(1)); | |
959 p.setProperty('units', 'unit'); | |
960 p.setProperty('min', -inf); | |
961 p.setProperty('max', inf); | |
962 p.setProperty('ref_frame', 'SS_MF'); | |
963 p.setProperty('subsystem', 'CAPACT2'); | |
964 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
965 pl.append(p); | |
966 | |
967 % TM2 X to Y Capacitive actuation cross-talk (worst case) ? | |
968 p = param({'CAPACT_TM2_XY','TM2 X to Y Capacitive actuation cross-talk (worst case) ?'}, ... | |
969 paramValue.DOUBLE_VALUE(0.0011)); | |
970 p.setProperty('units', 'unit'); | |
971 p.setProperty('min', -inf); | |
972 p.setProperty('max', inf); | |
973 p.setProperty('ref_frame', 'SS_MF'); | |
974 p.setProperty('subsystem', 'CAPACT2'); | |
975 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
976 pl.append(p); | |
977 | |
978 % TM2 X to Z Capacitive actuation cross-talk (worst case) ? | |
979 p = param({'CAPACT_TM2_XZ','TM2 X to Z Capacitive actuation cross-talk (worst case) ?'}, ... | |
980 paramValue.DOUBLE_VALUE(0.0011)); | |
981 p.setProperty('units', 'unit'); | |
982 p.setProperty('min', -inf); | |
983 p.setProperty('max', inf); | |
984 p.setProperty('ref_frame', 'SS_MF'); | |
985 p.setProperty('subsystem', 'CAPACT2'); | |
986 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
987 pl.append(p); | |
988 | |
989 % TM2 X to theta Capacitive actuation cross-talk (worst case) ? | |
990 p = param({'CAPACT_TM2_XTHETA','TM2 X to theta Capacitive actuation cross-talk (worst case) ?'}, ... | |
991 paramValue.DOUBLE_VALUE(0.21739)); | |
992 p.setProperty('units', 'rad m^(-1)'); | |
993 p.setProperty('min', -inf); | |
994 p.setProperty('max', inf); | |
995 p.setProperty('ref_frame', 'SS_MF'); | |
996 p.setProperty('subsystem', 'CAPACT2'); | |
997 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
998 pl.append(p); | |
999 | |
1000 % TM2 X to eta Capacitive actuation cross-talk (worst case) ? | |
1001 p = param({'CAPACT_TM2_XETA','TM2 X to eta Capacitive actuation cross-talk (worst case) ?'}, ... | |
1002 paramValue.DOUBLE_VALUE(0.21739)); | |
1003 p.setProperty('units', 'rad m^(-1)'); | |
1004 p.setProperty('min', -inf); | |
1005 p.setProperty('max', inf); | |
1006 p.setProperty('ref_frame', 'SS_MF'); | |
1007 p.setProperty('subsystem', 'CAPACT2'); | |
1008 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1009 pl.append(p); | |
1010 | |
1011 % TM2 X to phi Capacitive actuation cross-talk (worst case) ? | |
1012 p = param({'CAPACT_TM2_XPHI','TM2 X to phi Capacitive actuation cross-talk (worst case) ?'}, ... | |
1013 paramValue.DOUBLE_VALUE(0.39131)); | |
1014 p.setProperty('units', 'rad m^(-1)'); | |
1015 p.setProperty('min', -inf); | |
1016 p.setProperty('max', inf); | |
1017 p.setProperty('ref_frame', 'SS_MF'); | |
1018 p.setProperty('subsystem', 'CAPACT2'); | |
1019 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1020 pl.append(p); | |
1021 | |
1022 % TM2 Y to X Capacitive actuation cross-talk (worst case) ? | |
1023 p = param({'CAPACT_TM2_YX','TM2 Y to X Capacitive actuation cross-talk (worst case) ?'}, ... | |
1024 paramValue.DOUBLE_VALUE(0.0011)); | |
1025 p.setProperty('units', 'unit'); | |
1026 p.setProperty('min', -inf); | |
1027 p.setProperty('max', inf); | |
1028 p.setProperty('ref_frame', 'SS_MF'); | |
1029 p.setProperty('subsystem', 'CAPACT2'); | |
1030 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1031 pl.append(p); | |
1032 | |
1033 % TM2 Y to Y Capacitive actuation cross-talk (worst case) ? | |
1034 p = param({'CAPACT_TM2_YY','TM2 Y to Y Capacitive actuation cross-talk (worst case) ?'}, ... | |
1035 paramValue.DOUBLE_VALUE(1)); | |
1036 p.setProperty('units', 'unit'); | |
1037 p.setProperty('min', -inf); | |
1038 p.setProperty('max', inf); | |
1039 p.setProperty('ref_frame', 'SS_MF'); | |
1040 p.setProperty('subsystem', 'CAPACT2'); | |
1041 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1042 pl.append(p); | |
1043 | |
1044 % TM2 Y to Z Capacitive actuation cross-talk (worst case) ? | |
1045 p = param({'CAPACT_TM2_YZ','TM2 Y to Z Capacitive actuation cross-talk (worst case) ?'}, ... | |
1046 paramValue.DOUBLE_VALUE(0.0011)); | |
1047 p.setProperty('units', 'unit'); | |
1048 p.setProperty('min', -inf); | |
1049 p.setProperty('max', inf); | |
1050 p.setProperty('ref_frame', 'SS_MF'); | |
1051 p.setProperty('subsystem', 'CAPACT2'); | |
1052 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1053 pl.append(p); | |
1054 | |
1055 % TM2 Y to theta Capacitive actuation cross-talk (worst case) ? | |
1056 p = param({'CAPACT_TM2_YTHETA','TM2 Y to theta Capacitive actuation cross-talk (worst case) ?'}, ... | |
1057 paramValue.DOUBLE_VALUE(0.39131)); | |
1058 p.setProperty('units', 'rad m^(-1)'); | |
1059 p.setProperty('min', -inf); | |
1060 p.setProperty('max', inf); | |
1061 p.setProperty('ref_frame', 'SS_MF'); | |
1062 p.setProperty('subsystem', 'CAPACT2'); | |
1063 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1064 pl.append(p); | |
1065 | |
1066 % TM2 Y to eta Capacitive actuation cross-talk (worst case) ? | |
1067 p = param({'CAPACT_TM2_YETA','TM2 Y to eta Capacitive actuation cross-talk (worst case) ?'}, ... | |
1068 paramValue.DOUBLE_VALUE(0.21739)); | |
1069 p.setProperty('units', 'rad m^(-1)'); | |
1070 p.setProperty('min', -inf); | |
1071 p.setProperty('max', inf); | |
1072 p.setProperty('ref_frame', 'SS_MF'); | |
1073 p.setProperty('subsystem', 'CAPACT2'); | |
1074 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1075 pl.append(p); | |
1076 | |
1077 % TM2 Y to phi Capacitive actuation cross-talk (worst case) ? | |
1078 p = param({'CAPACT_TM2_YPHI','TM2 Y to phi Capacitive actuation cross-talk (worst case) ?'}, ... | |
1079 paramValue.DOUBLE_VALUE(0.21739)); | |
1080 p.setProperty('units', 'rad m^(-1)'); | |
1081 p.setProperty('min', -inf); | |
1082 p.setProperty('max', inf); | |
1083 p.setProperty('ref_frame', 'SS_MF'); | |
1084 p.setProperty('subsystem', 'CAPACT2'); | |
1085 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1086 pl.append(p); | |
1087 | |
1088 % TM2 Z to X Capacitive actuation cross-talk (worst case) ? | |
1089 p = param({'CAPACT_TM2_ZX','TM2 Z to X Capacitive actuation cross-talk (worst case) ?'}, ... | |
1090 paramValue.DOUBLE_VALUE(0.0011)); | |
1091 p.setProperty('units', 'unit'); | |
1092 p.setProperty('min', -inf); | |
1093 p.setProperty('max', inf); | |
1094 p.setProperty('ref_frame', 'SS_MF'); | |
1095 p.setProperty('subsystem', 'CAPACT2'); | |
1096 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1097 pl.append(p); | |
1098 | |
1099 % TM2 Z to Y Capacitive actuation cross-talk (worst case) ? | |
1100 p = param({'CAPACT_TM2_ZY','TM2 Z to Y Capacitive actuation cross-talk (worst case) ?'}, ... | |
1101 paramValue.DOUBLE_VALUE(0.0011)); | |
1102 p.setProperty('units', 'unit'); | |
1103 p.setProperty('min', -inf); | |
1104 p.setProperty('max', inf); | |
1105 p.setProperty('ref_frame', 'SS_MF'); | |
1106 p.setProperty('subsystem', 'CAPACT2'); | |
1107 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1108 pl.append(p); | |
1109 | |
1110 % TM2 Z to Z Capacitive actuation cross-talk (worst case) ? | |
1111 p = param({'CAPACT_TM2_ZZ','TM2 Z to Z Capacitive actuation cross-talk (worst case) ?'}, ... | |
1112 paramValue.DOUBLE_VALUE(1)); | |
1113 p.setProperty('units', 'unit'); | |
1114 p.setProperty('min', -inf); | |
1115 p.setProperty('max', inf); | |
1116 p.setProperty('ref_frame', 'SS_MF'); | |
1117 p.setProperty('subsystem', 'CAPACT2'); | |
1118 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1119 pl.append(p); | |
1120 | |
1121 % TM2 Z to theta Capacitive actuation cross-talk (worst case) ? | |
1122 p = param({'CAPACT_TM2_ZTHETA','TM2 Z to theta Capacitive actuation cross-talk (worst case) ?'}, ... | |
1123 paramValue.DOUBLE_VALUE(0.21739)); | |
1124 p.setProperty('units', 'rad m^(-1)'); | |
1125 p.setProperty('min', -inf); | |
1126 p.setProperty('max', inf); | |
1127 p.setProperty('ref_frame', 'SS_MF'); | |
1128 p.setProperty('subsystem', 'CAPACT2'); | |
1129 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1130 pl.append(p); | |
1131 | |
1132 % TM2 Z to eta Capacitive actuation cross-talk (worst case) ? | |
1133 p = param({'CAPACT_TM2_ZETA','TM2 Z to eta Capacitive actuation cross-talk (worst case) ?'}, ... | |
1134 paramValue.DOUBLE_VALUE(0.39131)); | |
1135 p.setProperty('units', 'rad m^(-1)'); | |
1136 p.setProperty('min', -inf); | |
1137 p.setProperty('max', inf); | |
1138 p.setProperty('ref_frame', 'SS_MF'); | |
1139 p.setProperty('subsystem', 'CAPACT2'); | |
1140 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1141 pl.append(p); | |
1142 | |
1143 % TM2 Z to phi Capacitive actuation cross-talk (worst case) ? | |
1144 p = param({'CAPACT_TM2_ZPHI','TM2 Z to phi Capacitive actuation cross-talk (worst case) ?'}, ... | |
1145 paramValue.DOUBLE_VALUE(0.21739)); | |
1146 p.setProperty('units', 'rad m^(-1)'); | |
1147 p.setProperty('min', -inf); | |
1148 p.setProperty('max', inf); | |
1149 p.setProperty('ref_frame', 'SS_MF'); | |
1150 p.setProperty('subsystem', 'CAPACT2'); | |
1151 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1152 pl.append(p); | |
1153 | |
1154 % TM2 theta to X Capacitive actuation cross-talk (worst case) ? | |
1155 p = param({'CAPACT_TM2_THETAX','TM2 theta to X Capacitive actuation cross-talk (worst case) ?'}, ... | |
1156 paramValue.DOUBLE_VALUE(4e-05)); | |
1157 p.setProperty('units', 'rad^(-1) m'); | |
1158 p.setProperty('min', -inf); | |
1159 p.setProperty('max', inf); | |
1160 p.setProperty('ref_frame', 'SS_MF'); | |
1161 p.setProperty('subsystem', 'CAPACT2'); | |
1162 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1163 pl.append(p); | |
1164 | |
1165 % TM2 theta to Y Capacitive actuation cross-talk (worst case) ? | |
1166 p = param({'CAPACT_TM2_THETAY','TM2 theta to Y Capacitive actuation cross-talk (worst case) ?'}, ... | |
1167 paramValue.DOUBLE_VALUE(4e-05)); | |
1168 p.setProperty('units', 'rad^(-1) m'); | |
1169 p.setProperty('min', -inf); | |
1170 p.setProperty('max', inf); | |
1171 p.setProperty('ref_frame', 'SS_MF'); | |
1172 p.setProperty('subsystem', 'CAPACT2'); | |
1173 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1174 pl.append(p); | |
1175 | |
1176 % TM2 theta to Z Capacitive actuation cross-talk (worst case) ? | |
1177 p = param({'CAPACT_TM2_THETAZ','TM2 theta to Z Capacitive actuation cross-talk (worst case) ?'}, ... | |
1178 paramValue.DOUBLE_VALUE(4e-05)); | |
1179 p.setProperty('units', 'rad^(-1) m'); | |
1180 p.setProperty('min', -inf); | |
1181 p.setProperty('max', inf); | |
1182 p.setProperty('ref_frame', 'SS_MF'); | |
1183 p.setProperty('subsystem', 'CAPACT2'); | |
1184 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1185 pl.append(p); | |
1186 | |
1187 % TM2 theta to theta Capacitive actuation cross-talk (worst case) ? | |
1188 p = param({'CAPACT_TM2_THETATHETA','TM2 theta to theta Capacitive actuation cross-talk (worst case) ?'}, ... | |
1189 paramValue.DOUBLE_VALUE(1)); | |
1190 p.setProperty('units', 'unit'); | |
1191 p.setProperty('min', -inf); | |
1192 p.setProperty('max', inf); | |
1193 p.setProperty('ref_frame', 'SS_MF'); | |
1194 p.setProperty('subsystem', 'CAPACT2'); | |
1195 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1196 pl.append(p); | |
1197 | |
1198 % TM2 theta to eta Capacitive actuation cross-talk (worst case) ? | |
1199 p = param({'CAPACT_TM2_THETAETA','TM2 theta to eta Capacitive actuation cross-talk (worst case) ?'}, ... | |
1200 paramValue.DOUBLE_VALUE(0.005)); | |
1201 p.setProperty('units', 'unit'); | |
1202 p.setProperty('min', -inf); | |
1203 p.setProperty('max', inf); | |
1204 p.setProperty('ref_frame', 'SS_MF'); | |
1205 p.setProperty('subsystem', 'CAPACT2'); | |
1206 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1207 pl.append(p); | |
1208 | |
1209 % TM2 theta to phi Capacitive actuation cross-talk (worst case) ? | |
1210 p = param({'CAPACT_TM2_THETAPHI','TM2 theta to phi Capacitive actuation cross-talk (worst case) ?'}, ... | |
1211 paramValue.DOUBLE_VALUE(0.005)); | |
1212 p.setProperty('units', 'unit'); | |
1213 p.setProperty('min', -inf); | |
1214 p.setProperty('max', inf); | |
1215 p.setProperty('ref_frame', 'SS_MF'); | |
1216 p.setProperty('subsystem', 'CAPACT2'); | |
1217 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1218 pl.append(p); | |
1219 | |
1220 % TM2 eta to X Capacitive actuation cross-talk (worst case) ? | |
1221 p = param({'CAPACT_TM2_ETAX','TM2 eta to X Capacitive actuation cross-talk (worst case) ?'}, ... | |
1222 paramValue.DOUBLE_VALUE(4e-05)); | |
1223 p.setProperty('units', 'rad^(-1) m'); | |
1224 p.setProperty('min', -inf); | |
1225 p.setProperty('max', inf); | |
1226 p.setProperty('ref_frame', 'SS_MF'); | |
1227 p.setProperty('subsystem', 'CAPACT2'); | |
1228 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1229 pl.append(p); | |
1230 | |
1231 % TM2 eta to Y Capacitive actuation cross-talk (worst case) ? | |
1232 p = param({'CAPACT_TM2_ETAY','TM2 eta to Y Capacitive actuation cross-talk (worst case) ?'}, ... | |
1233 paramValue.DOUBLE_VALUE(4e-05)); | |
1234 p.setProperty('units', 'rad^(-1) m'); | |
1235 p.setProperty('min', -inf); | |
1236 p.setProperty('max', inf); | |
1237 p.setProperty('ref_frame', 'SS_MF'); | |
1238 p.setProperty('subsystem', 'CAPACT2'); | |
1239 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1240 pl.append(p); | |
1241 | |
1242 % TM2 eta to Z Capacitive actuation cross-talk (worst case) ? | |
1243 p = param({'CAPACT_TM2_ETAZ','TM2 eta to Z Capacitive actuation cross-talk (worst case) ?'}, ... | |
1244 paramValue.DOUBLE_VALUE(4e-05)); | |
1245 p.setProperty('units', 'rad^(-1) m'); | |
1246 p.setProperty('min', -inf); | |
1247 p.setProperty('max', inf); | |
1248 p.setProperty('ref_frame', 'SS_MF'); | |
1249 p.setProperty('subsystem', 'CAPACT2'); | |
1250 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1251 pl.append(p); | |
1252 | |
1253 % TM2 eta to theta Capacitive actuation cross-talk (worst case) ? | |
1254 p = param({'CAPACT_TM2_ETATHETA','TM2 eta to theta Capacitive actuation cross-talk (worst case) ?'}, ... | |
1255 paramValue.DOUBLE_VALUE(0.005)); | |
1256 p.setProperty('units', 'unit'); | |
1257 p.setProperty('min', -inf); | |
1258 p.setProperty('max', inf); | |
1259 p.setProperty('ref_frame', 'SS_MF'); | |
1260 p.setProperty('subsystem', 'CAPACT2'); | |
1261 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1262 pl.append(p); | |
1263 | |
1264 % TM2 eta to eta Capacitive actuation cross-talk (worst case) ? | |
1265 p = param({'CAPACT_TM2_ETAETA','TM2 eta to eta Capacitive actuation cross-talk (worst case) ?'}, ... | |
1266 paramValue.DOUBLE_VALUE(1)); | |
1267 p.setProperty('units', 'unit'); | |
1268 p.setProperty('min', -inf); | |
1269 p.setProperty('max', inf); | |
1270 p.setProperty('ref_frame', 'SS_MF'); | |
1271 p.setProperty('subsystem', 'CAPACT2'); | |
1272 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1273 pl.append(p); | |
1274 | |
1275 % TM2 eta to phi Capacitive actuation cross-talk (worst case) ? | |
1276 p = param({'CAPACT_TM2_ETAPHI','TM2 eta to phi Capacitive actuation cross-talk (worst case) ?'}, ... | |
1277 paramValue.DOUBLE_VALUE(0.005)); | |
1278 p.setProperty('units', 'unit'); | |
1279 p.setProperty('min', -inf); | |
1280 p.setProperty('max', inf); | |
1281 p.setProperty('ref_frame', 'SS_MF'); | |
1282 p.setProperty('subsystem', 'CAPACT2'); | |
1283 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1284 pl.append(p); | |
1285 | |
1286 % TM2 phi to X Capacitive actuation cross-talk (worst case) ? | |
1287 p = param({'CAPACT_TM2_PHIX','TM2 phi to X Capacitive actuation cross-talk (worst case) ?'}, ... | |
1288 paramValue.DOUBLE_VALUE(4e-05)); | |
1289 p.setProperty('units', 'rad^(-1) m'); | |
1290 p.setProperty('min', -inf); | |
1291 p.setProperty('max', inf); | |
1292 p.setProperty('ref_frame', 'SS_MF'); | |
1293 p.setProperty('subsystem', 'CAPACT2'); | |
1294 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1295 pl.append(p); | |
1296 | |
1297 % TM2 phi to Y Capacitive actuation cross-talk (worst case) ? | |
1298 p = param({'CAPACT_TM2_PHIY','TM2 phi to Y Capacitive actuation cross-talk (worst case) ?'}, ... | |
1299 paramValue.DOUBLE_VALUE(4e-05)); | |
1300 p.setProperty('units', 'rad^(-1) m'); | |
1301 p.setProperty('min', -inf); | |
1302 p.setProperty('max', inf); | |
1303 p.setProperty('ref_frame', 'SS_MF'); | |
1304 p.setProperty('subsystem', 'CAPACT2'); | |
1305 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1306 pl.append(p); | |
1307 | |
1308 % TM2 phi to Z Capacitive actuation cross-talk (worst case) ? | |
1309 p = param({'CAPACT_TM2_PHIZ','TM2 phi to Z Capacitive actuation cross-talk (worst case) ?'}, ... | |
1310 paramValue.DOUBLE_VALUE(4e-05)); | |
1311 p.setProperty('units', 'rad^(-1) m'); | |
1312 p.setProperty('min', -inf); | |
1313 p.setProperty('max', inf); | |
1314 p.setProperty('ref_frame', 'SS_MF'); | |
1315 p.setProperty('subsystem', 'CAPACT2'); | |
1316 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1317 pl.append(p); | |
1318 | |
1319 % TM2 phi to theta Capacitive actuation cross-talk (worst case) ? | |
1320 p = param({'CAPACT_TM2_PHITHETA','TM2 phi to theta Capacitive actuation cross-talk (worst case) ?'}, ... | |
1321 paramValue.DOUBLE_VALUE(0.005)); | |
1322 p.setProperty('units', 'unit'); | |
1323 p.setProperty('min', -inf); | |
1324 p.setProperty('max', inf); | |
1325 p.setProperty('ref_frame', 'SS_MF'); | |
1326 p.setProperty('subsystem', 'CAPACT2'); | |
1327 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1328 pl.append(p); | |
1329 | |
1330 % TM2 phi to eta Capacitive actuation cross-talk (worst case) ? | |
1331 p = param({'CAPACT_TM2_PHIETA','TM2 phi to eta Capacitive actuation cross-talk (worst case) ?'}, ... | |
1332 paramValue.DOUBLE_VALUE(0.005)); | |
1333 p.setProperty('units', 'unit'); | |
1334 p.setProperty('min', -inf); | |
1335 p.setProperty('max', inf); | |
1336 p.setProperty('ref_frame', 'SS_MF'); | |
1337 p.setProperty('subsystem', 'CAPACT2'); | |
1338 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1339 pl.append(p); | |
1340 | |
1341 % TM2 phi to phi Capacitive actuation cross-talk (worst case) ? | |
1342 p = param({'CAPACT_TM2_PHIPHI','TM2 phi to phi Capacitive actuation cross-talk (worst case) ?'}, ... | |
1343 paramValue.DOUBLE_VALUE(1)); | |
1344 p.setProperty('units', 'unit'); | |
1345 p.setProperty('min', -inf); | |
1346 p.setProperty('max', inf); | |
1347 p.setProperty('ref_frame', 'SS_MF'); | |
1348 p.setProperty('subsystem', 'CAPACT2'); | |
1349 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1350 pl.append(p); | |
1351 | |
1352 end | |
1353 function pl = SC_properties() | |
1354 | |
1355 pl = plist(); | |
1356 | |
1357 % X of housing 1 | |
1358 p = param({'EOM_H1SC_X','X of housing 1'}, ... | |
1359 paramValue.DOUBLE_VALUE(0.183)); | |
1360 p.setProperty('units', 'm'); | |
1361 p.setProperty('min', -inf); | |
1362 p.setProperty('max', inf); | |
1363 p.setProperty('ref_frame', 'SS_MF'); | |
1364 p.setProperty('subsystem', 'SC'); | |
1365 p.setProperty('reference', 'TBD'); | |
1366 pl.append(p); | |
1367 | |
1368 % Y of housing 1 | |
1369 p = param({'EOM_H1SC_Y','Y of housing 1'}, ... | |
1370 paramValue.DOUBLE_VALUE(-0.006)); | |
1371 p.setProperty('units', 'm'); | |
1372 p.setProperty('min', -inf); | |
1373 p.setProperty('max', inf); | |
1374 p.setProperty('ref_frame', 'SS_MF'); | |
1375 p.setProperty('subsystem', 'SC'); | |
1376 p.setProperty('reference', 'TBD'); | |
1377 pl.append(p); | |
1378 | |
1379 % Z of housing 1 | |
1380 p = param({'EOM_H1SC_Z','Z of housing 1'}, ... | |
1381 paramValue.DOUBLE_VALUE(0.1393)); | |
1382 p.setProperty('units', 'm'); | |
1383 p.setProperty('min', -inf); | |
1384 p.setProperty('max', inf); | |
1385 p.setProperty('ref_frame', 'SS_MF'); | |
1386 p.setProperty('subsystem', 'SC'); | |
1387 p.setProperty('reference', 'TBD'); | |
1388 pl.append(p); | |
1389 | |
1390 % theta of housing 1 | |
1391 p = param({'EOM_H1SC_THETA','theta of housing 1'}, ... | |
1392 paramValue.DOUBLE_VALUE(0)); | |
1393 p.setProperty('units', 'rad'); | |
1394 p.setProperty('min', -inf); | |
1395 p.setProperty('max', inf); | |
1396 p.setProperty('ref_frame', 'SS_MF'); | |
1397 p.setProperty('subsystem', 'SC'); | |
1398 p.setProperty('reference', 'TBD'); | |
1399 pl.append(p); | |
1400 | |
1401 % eta of housing 1 | |
1402 p = param({'EOM_H1SC_ETA','eta of housing 1'}, ... | |
1403 paramValue.DOUBLE_VALUE(0)); | |
1404 p.setProperty('units', 'rad'); | |
1405 p.setProperty('min', -inf); | |
1406 p.setProperty('max', inf); | |
1407 p.setProperty('ref_frame', 'SS_MF'); | |
1408 p.setProperty('subsystem', 'SC'); | |
1409 p.setProperty('reference', 'TBD'); | |
1410 pl.append(p); | |
1411 | |
1412 % phi of housing 1 | |
1413 p = param({'EOM_H1SC_PHI','phi of housing 1'}, ... | |
1414 paramValue.DOUBLE_VALUE(0)); | |
1415 p.setProperty('units', 'rad'); | |
1416 p.setProperty('min', -inf); | |
1417 p.setProperty('max', inf); | |
1418 p.setProperty('ref_frame', 'SS_MF'); | |
1419 p.setProperty('subsystem', 'SC'); | |
1420 p.setProperty('reference', 'TBD'); | |
1421 pl.append(p); | |
1422 | |
1423 % X of housing 2 (wrong !! should be -0.183) | |
1424 p = param({'EOM_H2SC_X','X of housing 2 (wrong !! should be -0.183)'}, ... | |
1425 paramValue.DOUBLE_VALUE(-0.193)); | |
1426 p.setProperty('units', 'm'); | |
1427 p.setProperty('min', -inf); | |
1428 p.setProperty('max', inf); | |
1429 p.setProperty('ref_frame', 'SS_MF'); | |
1430 p.setProperty('subsystem', 'SC'); | |
1431 p.setProperty('reference', 'TBD'); | |
1432 pl.append(p); | |
1433 | |
1434 % Y of housing 2 | |
1435 p = param({'EOM_H2SC_Y','Y of housing 2'}, ... | |
1436 paramValue.DOUBLE_VALUE(-0.006)); | |
1437 p.setProperty('units', 'm'); | |
1438 p.setProperty('min', -inf); | |
1439 p.setProperty('max', inf); | |
1440 p.setProperty('ref_frame', 'SS_MF'); | |
1441 p.setProperty('subsystem', 'SC'); | |
1442 p.setProperty('reference', 'TBD'); | |
1443 pl.append(p); | |
1444 | |
1445 % Z of housing 2 | |
1446 p = param({'EOM_H2SC_Z','Z of housing 2'}, ... | |
1447 paramValue.DOUBLE_VALUE(0.1393)); | |
1448 p.setProperty('units', 'm'); | |
1449 p.setProperty('min', -inf); | |
1450 p.setProperty('max', inf); | |
1451 p.setProperty('ref_frame', 'SS_MF'); | |
1452 p.setProperty('subsystem', 'SC'); | |
1453 p.setProperty('reference', 'TBD'); | |
1454 pl.append(p); | |
1455 | |
1456 % theta of housing 2 | |
1457 p = param({'EOM_H2SC_THETA','theta of housing 2'}, ... | |
1458 paramValue.DOUBLE_VALUE(0)); | |
1459 p.setProperty('units', 'rad'); | |
1460 p.setProperty('min', -inf); | |
1461 p.setProperty('max', inf); | |
1462 p.setProperty('ref_frame', 'SS_MF'); | |
1463 p.setProperty('subsystem', 'SC'); | |
1464 p.setProperty('reference', 'TBD'); | |
1465 pl.append(p); | |
1466 | |
1467 % eta of housing 2 | |
1468 p = param({'EOM_H2SC_ETA','eta of housing 2'}, ... | |
1469 paramValue.DOUBLE_VALUE(0)); | |
1470 p.setProperty('units', 'rad'); | |
1471 p.setProperty('min', -inf); | |
1472 p.setProperty('max', inf); | |
1473 p.setProperty('ref_frame', 'SS_MF'); | |
1474 p.setProperty('subsystem', 'SC'); | |
1475 p.setProperty('reference', 'TBD'); | |
1476 pl.append(p); | |
1477 | |
1478 % phi of housing 2 | |
1479 p = param({'EOM_H2SC_PHI','phi of housing 2'}, ... | |
1480 paramValue.DOUBLE_VALUE(0)); | |
1481 p.setProperty('units', 'rad'); | |
1482 p.setProperty('min', -inf); | |
1483 p.setProperty('max', inf); | |
1484 p.setProperty('ref_frame', 'SS_MF'); | |
1485 p.setProperty('subsystem', 'SC'); | |
1486 p.setProperty('reference', 'TBD'); | |
1487 pl.append(p); | |
1488 | |
1489 % SC mass | |
1490 p = param({'EOM_SC_M','SC mass'}, ... | |
1491 paramValue.DOUBLE_VALUE(422.7)); | |
1492 p.setProperty('units', 'kg'); | |
1493 p.setProperty('min', -inf); | |
1494 p.setProperty('max', inf); | |
1495 p.setProperty('ref_frame', 'SS_MF'); | |
1496 p.setProperty('subsystem', 'SC'); | |
1497 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1498 pl.append(p); | |
1499 | |
1500 % SC Moment of inertia w.r.t. X | |
1501 p = param({'EOM_SC_IXX','SC Moment of inertia w.r.t. X'}, ... | |
1502 paramValue.DOUBLE_VALUE(202.5)); | |
1503 p.setProperty('units', 'kg m^(2)'); | |
1504 p.setProperty('min', -inf); | |
1505 p.setProperty('max', inf); | |
1506 p.setProperty('ref_frame', 'SS_MF'); | |
1507 p.setProperty('subsystem', 'SC'); | |
1508 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1509 pl.append(p); | |
1510 | |
1511 % SC Moment of inertia w.r.t. Y | |
1512 p = param({'EOM_SC_IYY','SC Moment of inertia w.r.t. Y'}, ... | |
1513 paramValue.DOUBLE_VALUE(209.7)); | |
1514 p.setProperty('units', 'kg m^(2)'); | |
1515 p.setProperty('min', -inf); | |
1516 p.setProperty('max', inf); | |
1517 p.setProperty('ref_frame', 'SS_MF'); | |
1518 p.setProperty('subsystem', 'SC'); | |
1519 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1520 pl.append(p); | |
1521 | |
1522 % SC Moment of inertia w.r.t. Z | |
1523 p = param({'EOM_SC_IZZ','SC Moment of inertia w.r.t. Z'}, ... | |
1524 paramValue.DOUBLE_VALUE(191.7)); | |
1525 p.setProperty('units', 'kg m^(2)'); | |
1526 p.setProperty('min', -inf); | |
1527 p.setProperty('max', inf); | |
1528 p.setProperty('ref_frame', 'SS_MF'); | |
1529 p.setProperty('subsystem', 'SC'); | |
1530 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1531 pl.append(p); | |
1532 | |
1533 % SC Moment of inertia w.r.t. XY | |
1534 p = param({'EOM_SC_IXY','SC Moment of inertia w.r.t. XY'}, ... | |
1535 paramValue.DOUBLE_VALUE(0)); | |
1536 p.setProperty('units', 'kg m^(2)'); | |
1537 p.setProperty('min', -inf); | |
1538 p.setProperty('max', inf); | |
1539 p.setProperty('ref_frame', 'SS_MF'); | |
1540 p.setProperty('subsystem', 'SC'); | |
1541 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1542 pl.append(p); | |
1543 | |
1544 % SC Moment of inertia w.r.t. XZ | |
1545 p = param({'EOM_SC_IXZ','SC Moment of inertia w.r.t. XZ'}, ... | |
1546 paramValue.DOUBLE_VALUE(0)); | |
1547 p.setProperty('units', 'kg m^(2)'); | |
1548 p.setProperty('min', -inf); | |
1549 p.setProperty('max', inf); | |
1550 p.setProperty('ref_frame', 'SS_MF'); | |
1551 p.setProperty('subsystem', 'SC'); | |
1552 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1553 pl.append(p); | |
1554 | |
1555 % SC Moment of inertia w.r.t. YZ | |
1556 p = param({'EOM_SC_IYZ','SC Moment of inertia w.r.t. YZ'}, ... | |
1557 paramValue.DOUBLE_VALUE(0)); | |
1558 p.setProperty('units', 'kg m^(2)'); | |
1559 p.setProperty('min', -inf); | |
1560 p.setProperty('max', inf); | |
1561 p.setProperty('ref_frame', 'SS_MF'); | |
1562 p.setProperty('subsystem', 'SC'); | |
1563 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1564 pl.append(p); | |
1565 | |
1566 end | |
1567 function plOut = TM_properties() | |
1568 | |
1569 persistent pl; | |
1570 | |
1571 if exist('pl', 'var')==0 || isempty(pl) | |
1572 pl = plist(); | |
1573 | |
1574 % X of TM1 | |
1575 p = param({'EOM_TM1H1_X','X of TM1'}, ... | |
1576 paramValue.DOUBLE_VALUE(0)); | |
1577 p.setProperty('units', 'm'); | |
1578 p.setProperty('min', -inf); | |
1579 p.setProperty('max', inf); | |
1580 p.setProperty('ref_frame', 'SS_MF'); | |
1581 p.setProperty('subsystem', 'TM'); | |
1582 p.setProperty('reference', 'TBD'); | |
1583 pl.append(p); | |
1584 | |
1585 % Y of TM1 | |
1586 p = param({'EOM_TM1H1_Y','Y of TM1'}, ... | |
1587 paramValue.DOUBLE_VALUE(0)); | |
1588 p.setProperty('units', 'm'); | |
1589 p.setProperty('min', -inf); | |
1590 p.setProperty('max', inf); | |
1591 p.setProperty('ref_frame', 'SS_MF'); | |
1592 p.setProperty('subsystem', 'TM'); | |
1593 p.setProperty('reference', 'TBD'); | |
1594 pl.append(p); | |
1595 | |
1596 % Z of TM1 | |
1597 p = param({'EOM_TM1H1_Z','Z of TM1'}, ... | |
1598 paramValue.DOUBLE_VALUE(0)); | |
1599 p.setProperty('units', 'm'); | |
1600 p.setProperty('min', -inf); | |
1601 p.setProperty('max', inf); | |
1602 p.setProperty('ref_frame', 'SS_MF'); | |
1603 p.setProperty('subsystem', 'TM'); | |
1604 p.setProperty('reference', 'TBD'); | |
1605 pl.append(p); | |
1606 | |
1607 % theta of TM1 | |
1608 p = param({'EOM_TM1H1_THETA','theta of TM1'}, ... | |
1609 paramValue.DOUBLE_VALUE(0)); | |
1610 p.setProperty('units', 'rad'); | |
1611 p.setProperty('min', -inf); | |
1612 p.setProperty('max', inf); | |
1613 p.setProperty('ref_frame', 'SS_MF'); | |
1614 p.setProperty('subsystem', 'TM'); | |
1615 p.setProperty('reference', 'TBD'); | |
1616 pl.append(p); | |
1617 | |
1618 % eta of TM1 | |
1619 p = param({'EOM_TM1H1_ETA','eta of TM1'}, ... | |
1620 paramValue.DOUBLE_VALUE(0)); | |
1621 p.setProperty('units', 'rad'); | |
1622 p.setProperty('min', -inf); | |
1623 p.setProperty('max', inf); | |
1624 p.setProperty('ref_frame', 'SS_MF'); | |
1625 p.setProperty('subsystem', 'TM'); | |
1626 p.setProperty('reference', 'TBD'); | |
1627 pl.append(p); | |
1628 | |
1629 % phi of TM1 | |
1630 p = param({'EOM_TM1H1_PHI','phi of TM1'}, ... | |
1631 paramValue.DOUBLE_VALUE(0)); | |
1632 p.setProperty('units', 'rad'); | |
1633 p.setProperty('min', -inf); | |
1634 p.setProperty('max', inf); | |
1635 p.setProperty('ref_frame', 'SS_MF'); | |
1636 p.setProperty('subsystem', 'TM'); | |
1637 p.setProperty('reference', 'TBD'); | |
1638 pl.append(p); | |
1639 | |
1640 % X of TM2 | |
1641 p = param({'EOM_TM2H2_X','X of TM2'}, ... | |
1642 paramValue.DOUBLE_VALUE(0)); | |
1643 p.setProperty('units', 'm'); | |
1644 p.setProperty('min', -inf); | |
1645 p.setProperty('max', inf); | |
1646 p.setProperty('ref_frame', 'SS_MF'); | |
1647 p.setProperty('subsystem', 'TM'); | |
1648 p.setProperty('reference', 'TBD'); | |
1649 pl.append(p); | |
1650 | |
1651 % Y of TM2 | |
1652 p = param({'EOM_TM2H2_Y','Y of TM2'}, ... | |
1653 paramValue.DOUBLE_VALUE(0)); | |
1654 p.setProperty('units', 'm'); | |
1655 p.setProperty('min', -inf); | |
1656 p.setProperty('max', inf); | |
1657 p.setProperty('ref_frame', 'SS_MF'); | |
1658 p.setProperty('subsystem', 'TM'); | |
1659 p.setProperty('reference', 'TBD'); | |
1660 pl.append(p); | |
1661 | |
1662 % Z of TM2 | |
1663 p = param({'EOM_TM2H2_Z','Z of TM2'}, ... | |
1664 paramValue.DOUBLE_VALUE(0)); | |
1665 p.setProperty('units', 'm'); | |
1666 p.setProperty('min', -inf); | |
1667 p.setProperty('max', inf); | |
1668 p.setProperty('ref_frame', 'SS_MF'); | |
1669 p.setProperty('subsystem', 'TM'); | |
1670 p.setProperty('reference', 'TBD'); | |
1671 pl.append(p); | |
1672 | |
1673 % theta of TM2 | |
1674 p = param({'EOM_TM2H2_THETA','theta of TM2'}, ... | |
1675 paramValue.DOUBLE_VALUE(0)); | |
1676 p.setProperty('units', 'rad'); | |
1677 p.setProperty('min', -inf); | |
1678 p.setProperty('max', inf); | |
1679 p.setProperty('ref_frame', 'SS_MF'); | |
1680 p.setProperty('subsystem', 'TM'); | |
1681 p.setProperty('reference', 'TBD'); | |
1682 pl.append(p); | |
1683 | |
1684 % eta of TM2 | |
1685 p = param({'EOM_TM2H2_ETA','eta of TM2'}, ... | |
1686 paramValue.DOUBLE_VALUE(0)); | |
1687 p.setProperty('units', 'rad'); | |
1688 p.setProperty('min', -inf); | |
1689 p.setProperty('max', inf); | |
1690 p.setProperty('ref_frame', 'SS_MF'); | |
1691 p.setProperty('subsystem', 'TM'); | |
1692 p.setProperty('reference', 'TBD'); | |
1693 pl.append(p); | |
1694 | |
1695 % phi of TM2 | |
1696 p = param({'EOM_TM2H2_PHI','phi of TM2'}, ... | |
1697 paramValue.DOUBLE_VALUE(0)); | |
1698 p.setProperty('units', 'rad'); | |
1699 p.setProperty('min', -inf); | |
1700 p.setProperty('max', inf); | |
1701 p.setProperty('ref_frame', 'SS_MF'); | |
1702 p.setProperty('subsystem', 'TM'); | |
1703 p.setProperty('reference', 'TBD'); | |
1704 pl.append(p); | |
1705 | |
1706 % TM1 mass | |
1707 p = param({'EOM_TM1_M','TM1 mass'}, ... | |
1708 paramValue.DOUBLE_VALUE(1.96)); | |
1709 p.setProperty('units', 'kg'); | |
1710 p.setProperty('min', -inf); | |
1711 p.setProperty('max', inf); | |
1712 p.setProperty('ref_frame', 'none'); | |
1713 p.setProperty('subsystem', 'TM'); | |
1714 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1715 pl.append(p); | |
1716 | |
1717 % TM1 Moment of inertia w.r.t. X | |
1718 p = param({'EOM_TM1_IXX','TM1 Moment of inertia w.r.t. X'}, ... | |
1719 paramValue.DOUBLE_VALUE(0.0006912)); | |
1720 p.setProperty('units', 'kg m^(2)'); | |
1721 p.setProperty('min', -inf); | |
1722 p.setProperty('max', inf); | |
1723 p.setProperty('ref_frame', 'H1'); | |
1724 p.setProperty('subsystem', 'TM'); | |
1725 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1726 pl.append(p); | |
1727 | |
1728 % TM1 Moment of inertia w.r.t. Y | |
1729 p = param({'EOM_TM1_IYY','TM1 Moment of inertia w.r.t. Y'}, ... | |
1730 paramValue.DOUBLE_VALUE(0.0006912)); | |
1731 p.setProperty('units', 'kg m^(2)'); | |
1732 p.setProperty('min', -inf); | |
1733 p.setProperty('max', inf); | |
1734 p.setProperty('ref_frame', 'H1'); | |
1735 p.setProperty('subsystem', 'TM'); | |
1736 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1737 pl.append(p); | |
1738 | |
1739 % TM1 Moment of inertia w.r.t. Z | |
1740 p = param({'EOM_TM1_IZZ','TM1 Moment of inertia w.r.t. Z'}, ... | |
1741 paramValue.DOUBLE_VALUE(0.0006912)); | |
1742 p.setProperty('units', 'kg m^(2)'); | |
1743 p.setProperty('min', -inf); | |
1744 p.setProperty('max', inf); | |
1745 p.setProperty('ref_frame', 'H1'); | |
1746 p.setProperty('subsystem', 'TM'); | |
1747 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1748 pl.append(p); | |
1749 | |
1750 % TM1 Moment of inertia w.r.t. XY | |
1751 p = param({'EOM_TM1_IXY','TM1 Moment of inertia w.r.t. XY'}, ... | |
1752 paramValue.DOUBLE_VALUE(0)); | |
1753 p.setProperty('units', 'kg m^(2)'); | |
1754 p.setProperty('min', -inf); | |
1755 p.setProperty('max', inf); | |
1756 p.setProperty('ref_frame', 'H1'); | |
1757 p.setProperty('subsystem', 'TM'); | |
1758 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1759 pl.append(p); | |
1760 | |
1761 % TM1 Moment of inertia w.r.t. XZ | |
1762 p = param({'EOM_TM1_IXZ','TM1 Moment of inertia w.r.t. XZ'}, ... | |
1763 paramValue.DOUBLE_VALUE(0)); | |
1764 p.setProperty('units', 'kg m^(2)'); | |
1765 p.setProperty('min', -inf); | |
1766 p.setProperty('max', inf); | |
1767 p.setProperty('ref_frame', 'H1'); | |
1768 p.setProperty('subsystem', 'TM'); | |
1769 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1770 pl.append(p); | |
1771 | |
1772 % TM1 Moment of inertia w.r.t. YZ | |
1773 p = param({'EOM_TM1_IYZ','TM1 Moment of inertia w.r.t. YZ'}, ... | |
1774 paramValue.DOUBLE_VALUE(0)); | |
1775 p.setProperty('units', 'kg m^(2)'); | |
1776 p.setProperty('min', -inf); | |
1777 p.setProperty('max', inf); | |
1778 p.setProperty('ref_frame', 'H1'); | |
1779 p.setProperty('subsystem', 'TM'); | |
1780 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1781 pl.append(p); | |
1782 | |
1783 % TM2 mass | |
1784 p = param({'EOM_TM2_M','TM2 mass'}, ... | |
1785 paramValue.DOUBLE_VALUE(1.96)); | |
1786 p.setProperty('units', 'kg'); | |
1787 p.setProperty('min', -inf); | |
1788 p.setProperty('max', inf); | |
1789 p.setProperty('ref_frame', 'none'); | |
1790 p.setProperty('subsystem', 'TM'); | |
1791 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1792 pl.append(p); | |
1793 | |
1794 % TM2 Moment of inertia w.r.t. X | |
1795 p = param({'EOM_TM2_IXX','TM2 Moment of inertia w.r.t. X'}, ... | |
1796 paramValue.DOUBLE_VALUE(0.0006912)); | |
1797 p.setProperty('units', 'kg m^(2)'); | |
1798 p.setProperty('min', -inf); | |
1799 p.setProperty('max', inf); | |
1800 p.setProperty('ref_frame', 'H2'); | |
1801 p.setProperty('subsystem', 'TM'); | |
1802 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1803 pl.append(p); | |
1804 | |
1805 % TM2 Moment of inertia w.r.t. Y | |
1806 p = param({'EOM_TM2_IYY','TM2 Moment of inertia w.r.t. Y'}, ... | |
1807 paramValue.DOUBLE_VALUE(0.0006912)); | |
1808 p.setProperty('units', 'kg m^(2)'); | |
1809 p.setProperty('min', -inf); | |
1810 p.setProperty('max', inf); | |
1811 p.setProperty('ref_frame', 'H2'); | |
1812 p.setProperty('subsystem', 'TM'); | |
1813 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1814 pl.append(p); | |
1815 | |
1816 % TM2 Moment of inertia w.r.t. Z | |
1817 p = param({'EOM_TM2_IZZ','TM2 Moment of inertia w.r.t. Z'}, ... | |
1818 paramValue.DOUBLE_VALUE(0.0006912)); | |
1819 p.setProperty('units', 'kg m^(2)'); | |
1820 p.setProperty('min', -inf); | |
1821 p.setProperty('max', inf); | |
1822 p.setProperty('ref_frame', 'H2'); | |
1823 p.setProperty('subsystem', 'TM'); | |
1824 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1825 pl.append(p); | |
1826 | |
1827 % TM2 Moment of inertia w.r.t. XY | |
1828 p = param({'EOM_TM2_IXY','TM2 Moment of inertia w.r.t. XY'}, ... | |
1829 paramValue.DOUBLE_VALUE(0)); | |
1830 p.setProperty('units', 'kg m^(2)'); | |
1831 p.setProperty('min', -inf); | |
1832 p.setProperty('max', inf); | |
1833 p.setProperty('ref_frame', 'H2'); | |
1834 p.setProperty('subsystem', 'TM'); | |
1835 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1836 pl.append(p); | |
1837 | |
1838 % TM2 Moment of inertia w.r.t. XZ | |
1839 p = param({'EOM_TM2_IXZ','TM2 Moment of inertia w.r.t. XZ'}, ... | |
1840 paramValue.DOUBLE_VALUE(0)); | |
1841 p.setProperty('units', 'kg m^(2)'); | |
1842 p.setProperty('min', -inf); | |
1843 p.setProperty('max', inf); | |
1844 p.setProperty('ref_frame', 'H2'); | |
1845 p.setProperty('subsystem', 'TM'); | |
1846 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1847 pl.append(p); | |
1848 | |
1849 % TM2 Moment of inertia w.r.t. YZ | |
1850 p = param({'EOM_TM2_IYZ','TM2 Moment of inertia w.r.t. YZ'}, ... | |
1851 paramValue.DOUBLE_VALUE(0)); | |
1852 p.setProperty('units', 'kg m^(2)'); | |
1853 p.setProperty('min', -inf); | |
1854 p.setProperty('max', inf); | |
1855 p.setProperty('ref_frame', 'H2'); | |
1856 p.setProperty('subsystem', 'TM'); | |
1857 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
1858 pl.append(p); | |
1859 | |
1860 % stiffness of TM1 along X(there should be 2 stiffnesses electrostatic + gravitation) | |
1861 p = param({'EOM_TM1_STIFF_XX','stiffness of TM1 along X(there should be 2 stiffnesses electrostatic + gravitation)'}, ... | |
1862 paramValue.DOUBLE_VALUE(1.935e-06)); | |
1863 p.setProperty('units', 's^(-2)'); | |
1864 p.setProperty('min', -inf); | |
1865 p.setProperty('max', inf); | |
1866 p.setProperty('ref_frame', 'SS_MF'); | |
1867 p.setProperty('subsystem', 'TM'); | |
1868 p.setProperty('reference', 'TBD'); | |
1869 pl.append(p); | |
1870 | |
1871 % stiffness of TM1 between X and Y | |
1872 p = param({'EOM_TM1_STIFF_XY','stiffness of TM1 between X and Y'}, ... | |
1873 paramValue.DOUBLE_VALUE(1.2716e-07)); | |
1874 p.setProperty('units', 's^(-2)'); | |
1875 p.setProperty('min', -inf); | |
1876 p.setProperty('max', inf); | |
1877 p.setProperty('ref_frame', 'SS_MF'); | |
1878 p.setProperty('subsystem', 'TM'); | |
1879 p.setProperty('reference', 'TBD'); | |
1880 pl.append(p); | |
1881 | |
1882 % stiffness of TM1 between X and Z | |
1883 p = param({'EOM_TM1_STIFF_XZ','stiffness of TM1 between X and Z'}, ... | |
1884 paramValue.DOUBLE_VALUE(1.2716e-07)); | |
1885 p.setProperty('units', 's^(-2)'); | |
1886 p.setProperty('min', -inf); | |
1887 p.setProperty('max', inf); | |
1888 p.setProperty('ref_frame', 'SS_MF'); | |
1889 p.setProperty('subsystem', 'TM'); | |
1890 p.setProperty('reference', 'TBD'); | |
1891 pl.append(p); | |
1892 | |
1893 % stiffness of TM1 between X and theta | |
1894 p = param({'EOM_TM1_STIFF_XTHETA','stiffness of TM1 between X and theta'}, ... | |
1895 paramValue.DOUBLE_VALUE(4.0031e-10)); | |
1896 p.setProperty('units', 's^(-2) m rad^(-1)'); | |
1897 p.setProperty('min', -inf); | |
1898 p.setProperty('max', inf); | |
1899 p.setProperty('ref_frame', 'SS_MF'); | |
1900 p.setProperty('subsystem', 'TM'); | |
1901 p.setProperty('reference', 'TBD'); | |
1902 pl.append(p); | |
1903 | |
1904 % stiffness of TM1 between X and eta | |
1905 p = param({'EOM_TM1_STIFF_XETA','stiffness of TM1 between X and eta'}, ... | |
1906 paramValue.DOUBLE_VALUE(3.4003e-09)); | |
1907 p.setProperty('units', 's^(-2) m rad^(-1)'); | |
1908 p.setProperty('min', -inf); | |
1909 p.setProperty('max', inf); | |
1910 p.setProperty('ref_frame', 'SS_MF'); | |
1911 p.setProperty('subsystem', 'TM'); | |
1912 p.setProperty('reference', 'TBD'); | |
1913 pl.append(p); | |
1914 | |
1915 % stiffness of TM1 between X and phi | |
1916 p = param({'EOM_TM1_STIFF_XPHI','stiffness of TM1 between X and phi'}, ... | |
1917 paramValue.DOUBLE_VALUE(2.4003e-09)); | |
1918 p.setProperty('units', 's^(-2) m rad^(-1)'); | |
1919 p.setProperty('min', -inf); | |
1920 p.setProperty('max', inf); | |
1921 p.setProperty('ref_frame', 'SS_MF'); | |
1922 p.setProperty('subsystem', 'TM'); | |
1923 p.setProperty('reference', 'TBD'); | |
1924 pl.append(p); | |
1925 | |
1926 % stiffness of TM1 between Y and X | |
1927 p = param({'EOM_TM1_STIFF_YX','stiffness of TM1 between Y and X'}, ... | |
1928 paramValue.DOUBLE_VALUE(1.2716e-07)); | |
1929 p.setProperty('units', 's^(-2)'); | |
1930 p.setProperty('min', -inf); | |
1931 p.setProperty('max', inf); | |
1932 p.setProperty('ref_frame', 'SS_MF'); | |
1933 p.setProperty('subsystem', 'TM'); | |
1934 p.setProperty('reference', 'TBD'); | |
1935 pl.append(p); | |
1936 | |
1937 % stiffness of TM1 along Y | |
1938 p = param({'EOM_TM1_STIFF_YY','stiffness of TM1 along Y'}, ... | |
1939 paramValue.DOUBLE_VALUE(2.8115e-06)); | |
1940 p.setProperty('units', 's^(-2)'); | |
1941 p.setProperty('min', -inf); | |
1942 p.setProperty('max', inf); | |
1943 p.setProperty('ref_frame', 'SS_MF'); | |
1944 p.setProperty('subsystem', 'TM'); | |
1945 p.setProperty('reference', 'TBD'); | |
1946 pl.append(p); | |
1947 | |
1948 % stiffness of TM1 between Y and Z | |
1949 p = param({'EOM_TM1_STIFF_YZ','stiffness of TM1 between Y and Z'}, ... | |
1950 paramValue.DOUBLE_VALUE(1.2716e-07)); | |
1951 p.setProperty('units', 's^(-2)'); | |
1952 p.setProperty('min', -inf); | |
1953 p.setProperty('max', inf); | |
1954 p.setProperty('ref_frame', 'SS_MF'); | |
1955 p.setProperty('subsystem', 'TM'); | |
1956 p.setProperty('reference', 'TBD'); | |
1957 pl.append(p); | |
1958 | |
1959 % stiffness of TM1 between Y and theta | |
1960 p = param({'EOM_TM1_STIFF_YTHETA','stiffness of TM1 between Y and theta'}, ... | |
1961 paramValue.DOUBLE_VALUE(3.4003e-09)); | |
1962 p.setProperty('units', 's^(-2) m rad^(-1))'); | |
1963 p.setProperty('min', -inf); | |
1964 p.setProperty('max', inf); | |
1965 p.setProperty('ref_frame', 'SS_MF'); | |
1966 p.setProperty('subsystem', 'TM'); | |
1967 p.setProperty('reference', 'TBD'); | |
1968 pl.append(p); | |
1969 | |
1970 % stiffness of TM1 between Y and eta | |
1971 p = param({'EOM_TM1_STIFF_YETA','stiffness of TM1 between Y and eta'}, ... | |
1972 paramValue.DOUBLE_VALUE(4.0031e-10)); | |
1973 p.setProperty('units', 's^(-2) m rad^(-1))'); | |
1974 p.setProperty('min', -inf); | |
1975 p.setProperty('max', inf); | |
1976 p.setProperty('ref_frame', 'SS_MF'); | |
1977 p.setProperty('subsystem', 'TM'); | |
1978 p.setProperty('reference', 'TBD'); | |
1979 pl.append(p); | |
1980 | |
1981 % stiffness of TM1 between Y and phi | |
1982 p = param({'EOM_TM1_STIFF_YPHI','stiffness of TM1 between Y and phi'}, ... | |
1983 paramValue.DOUBLE_VALUE(1.4003e-09)); | |
1984 p.setProperty('units', 's^(-2) m rad^(-1))'); | |
1985 p.setProperty('min', -inf); | |
1986 p.setProperty('max', inf); | |
1987 p.setProperty('ref_frame', 'SS_MF'); | |
1988 p.setProperty('subsystem', 'TM'); | |
1989 p.setProperty('reference', 'TBD'); | |
1990 pl.append(p); | |
1991 | |
1992 % stiffness of TM1 between Z and X | |
1993 p = param({'EOM_TM1_STIFF_ZX','stiffness of TM1 between Z and X'}, ... | |
1994 paramValue.DOUBLE_VALUE(1.2716e-07)); | |
1995 p.setProperty('units', 's^(-2)'); | |
1996 p.setProperty('min', -inf); | |
1997 p.setProperty('max', inf); | |
1998 p.setProperty('ref_frame', 'SS_MF'); | |
1999 p.setProperty('subsystem', 'TM'); | |
2000 p.setProperty('reference', 'TBD'); | |
2001 pl.append(p); | |
2002 | |
2003 % stiffness of TM1 between Z and Y | |
2004 p = param({'EOM_TM1_STIFF_ZY','stiffness of TM1 between Z and Y'}, ... | |
2005 paramValue.DOUBLE_VALUE(1.2716e-07)); | |
2006 p.setProperty('units', 's^(-2)'); | |
2007 p.setProperty('min', -inf); | |
2008 p.setProperty('max', inf); | |
2009 p.setProperty('ref_frame', 'SS_MF'); | |
2010 p.setProperty('subsystem', 'TM'); | |
2011 p.setProperty('reference', 'TBD'); | |
2012 pl.append(p); | |
2013 | |
2014 % stiffness of TM1 along Z | |
2015 p = param({'EOM_TM1_STIFF_ZZ','stiffness of TM1 along Z'}, ... | |
2016 paramValue.DOUBLE_VALUE(4.6759e-06)); | |
2017 p.setProperty('units', 's^(-2)'); | |
2018 p.setProperty('min', -inf); | |
2019 p.setProperty('max', inf); | |
2020 p.setProperty('ref_frame', 'SS_MF'); | |
2021 p.setProperty('subsystem', 'TM'); | |
2022 p.setProperty('reference', 'TBD'); | |
2023 pl.append(p); | |
2024 | |
2025 % stiffness of TM1 between Z and theta | |
2026 p = param({'EOM_TM1_STIFF_ZTHETA','stiffness of TM1 between Z and theta'}, ... | |
2027 paramValue.DOUBLE_VALUE(2.4003e-09)); | |
2028 p.setProperty('units', 's^(-2) m rad^(-1))'); | |
2029 p.setProperty('min', -inf); | |
2030 p.setProperty('max', inf); | |
2031 p.setProperty('ref_frame', 'SS_MF'); | |
2032 p.setProperty('subsystem', 'TM'); | |
2033 p.setProperty('reference', 'TBD'); | |
2034 pl.append(p); | |
2035 | |
2036 % stiffness of TM1 between Z and eta | |
2037 p = param({'EOM_TM1_STIFF_ZETA','stiffness of TM1 between Z and eta'}, ... | |
2038 paramValue.DOUBLE_VALUE(1.4003e-09)); | |
2039 p.setProperty('units', 's^(-2) m rad^(-1))'); | |
2040 p.setProperty('min', -inf); | |
2041 p.setProperty('max', inf); | |
2042 p.setProperty('ref_frame', 'SS_MF'); | |
2043 p.setProperty('subsystem', 'TM'); | |
2044 p.setProperty('reference', 'TBD'); | |
2045 pl.append(p); | |
2046 | |
2047 % stiffness of TM1 between Z and phi | |
2048 p = param({'EOM_TM1_STIFF_ZPHI','stiffness of TM1 between Z and phi'}, ... | |
2049 paramValue.DOUBLE_VALUE(4.0031e-10)); | |
2050 p.setProperty('units', 's^(-2) m rad^(-1))'); | |
2051 p.setProperty('min', -inf); | |
2052 p.setProperty('max', inf); | |
2053 p.setProperty('ref_frame', 'SS_MF'); | |
2054 p.setProperty('subsystem', 'TM'); | |
2055 p.setProperty('reference', 'TBD'); | |
2056 pl.append(p); | |
2057 | |
2058 % stiffness of TM1 between theta and X | |
2059 p = param({'EOM_TM1_STIFF_THETAX','stiffness of TM1 between theta and X'}, ... | |
2060 paramValue.DOUBLE_VALUE(2.4572e-06)); | |
2061 p.setProperty('units', 's^(-2) m^(-1) rad'); | |
2062 p.setProperty('min', -inf); | |
2063 p.setProperty('max', inf); | |
2064 p.setProperty('ref_frame', 'SS_MF'); | |
2065 p.setProperty('subsystem', 'TM'); | |
2066 p.setProperty('reference', 'TBD'); | |
2067 pl.append(p); | |
2068 | |
2069 % stiffness of TM1 between theta and Y | |
2070 p = param({'EOM_TM1_STIFF_THETAY','stiffness of TM1 between theta and Y'}, ... | |
2071 paramValue.DOUBLE_VALUE(1.0851e-05)); | |
2072 p.setProperty('units', 's^(-2) m^(-1) rad'); | |
2073 p.setProperty('min', -inf); | |
2074 p.setProperty('max', inf); | |
2075 p.setProperty('ref_frame', 'SS_MF'); | |
2076 p.setProperty('subsystem', 'TM'); | |
2077 p.setProperty('reference', 'TBD'); | |
2078 pl.append(p); | |
2079 | |
2080 % stiffness of TM1 between theta and Z | |
2081 p = param({'EOM_TM1_STIFF_THETAZ','stiffness of TM1 between theta and Z'}, ... | |
2082 paramValue.DOUBLE_VALUE(7.4482e-06)); | |
2083 p.setProperty('units', 's^(-2) m^(-1) rad'); | |
2084 p.setProperty('min', -inf); | |
2085 p.setProperty('max', inf); | |
2086 p.setProperty('ref_frame', 'SS_MF'); | |
2087 p.setProperty('subsystem', 'TM'); | |
2088 p.setProperty('reference', 'TBD'); | |
2089 pl.append(p); | |
2090 | |
2091 % stiffness of TM1 along theta | |
2092 p = param({'EOM_TM1_STIFF_THETATHETA','stiffness of TM1 along theta'}, ... | |
2093 paramValue.DOUBLE_VALUE(5.456e-06)); | |
2094 p.setProperty('units', 's^(-2)'); | |
2095 p.setProperty('min', -inf); | |
2096 p.setProperty('max', inf); | |
2097 p.setProperty('ref_frame', 'SS_MF'); | |
2098 p.setProperty('subsystem', 'TM'); | |
2099 p.setProperty('reference', 'TBD'); | |
2100 pl.append(p); | |
2101 | |
2102 % stiffness of TM1 between theta and eta | |
2103 p = param({'EOM_TM1_STIFF_THETAETA','stiffness of TM1 between theta and eta'}, ... | |
2104 paramValue.DOUBLE_VALUE(5.6515e-08)); | |
2105 p.setProperty('units', 's^(-2)'); | |
2106 p.setProperty('min', -inf); | |
2107 p.setProperty('max', inf); | |
2108 p.setProperty('ref_frame', 'SS_MF'); | |
2109 p.setProperty('subsystem', 'TM'); | |
2110 p.setProperty('reference', 'TBD'); | |
2111 pl.append(p); | |
2112 | |
2113 % stiffness of TM1 between theta and phi | |
2114 p = param({'EOM_TM1_STIFF_THETAPHI','stiffness of TM1 between theta and phi'}, ... | |
2115 paramValue.DOUBLE_VALUE(5.6515e-08)); | |
2116 p.setProperty('units', 's^(-2)'); | |
2117 p.setProperty('min', -inf); | |
2118 p.setProperty('max', inf); | |
2119 p.setProperty('ref_frame', 'SS_MF'); | |
2120 p.setProperty('subsystem', 'TM'); | |
2121 p.setProperty('reference', 'TBD'); | |
2122 pl.append(p); | |
2123 | |
2124 % stiffness of TM1 between eta and X | |
2125 p = param({'EOM_TM1_STIFF_ETAX','stiffness of TM1 between eta and X'}, ... | |
2126 paramValue.DOUBLE_VALUE(1.0851e-05)); | |
2127 p.setProperty('units', 's^(-2) m^(-1) rad'); | |
2128 p.setProperty('min', -inf); | |
2129 p.setProperty('max', inf); | |
2130 p.setProperty('ref_frame', 'SS_MF'); | |
2131 p.setProperty('subsystem', 'TM'); | |
2132 p.setProperty('reference', 'TBD'); | |
2133 pl.append(p); | |
2134 | |
2135 % stiffness of TM1 between eta and Y | |
2136 p = param({'EOM_TM1_STIFF_ETAY','stiffness of TM1 between eta and Y'}, ... | |
2137 paramValue.DOUBLE_VALUE(2.4572e-06)); | |
2138 p.setProperty('units', 's^(-2) m^(-1) rad'); | |
2139 p.setProperty('min', -inf); | |
2140 p.setProperty('max', inf); | |
2141 p.setProperty('ref_frame', 'SS_MF'); | |
2142 p.setProperty('subsystem', 'TM'); | |
2143 p.setProperty('reference', 'TBD'); | |
2144 pl.append(p); | |
2145 | |
2146 % stiffness of TM1 between eta and Z | |
2147 p = param({'EOM_TM1_STIFF_ETAZ','stiffness of TM1 between eta and Z'}, ... | |
2148 paramValue.DOUBLE_VALUE(5.4682e-06)); | |
2149 p.setProperty('units', 's^(-2) m^(-1) rad'); | |
2150 p.setProperty('min', -inf); | |
2151 p.setProperty('max', inf); | |
2152 p.setProperty('ref_frame', 'SS_MF'); | |
2153 p.setProperty('subsystem', 'TM'); | |
2154 p.setProperty('reference', 'TBD'); | |
2155 pl.append(p); | |
2156 | |
2157 % stiffness of TM1 between eta and theta | |
2158 p = param({'EOM_TM1_STIFF_ETATHETA','stiffness of TM1 between eta and theta'}, ... | |
2159 paramValue.DOUBLE_VALUE(5.6515e-08)); | |
2160 p.setProperty('units', 's^(-2)'); | |
2161 p.setProperty('min', -inf); | |
2162 p.setProperty('max', inf); | |
2163 p.setProperty('ref_frame', 'SS_MF'); | |
2164 p.setProperty('subsystem', 'TM'); | |
2165 p.setProperty('reference', 'TBD'); | |
2166 pl.append(p); | |
2167 | |
2168 % stiffness of TM1 along eta | |
2169 p = param({'EOM_TM1_STIFF_ETAETA','stiffness of TM1 along eta'}, ... | |
2170 paramValue.DOUBLE_VALUE(5.3478e-06)); | |
2171 p.setProperty('units', 's^(-2)'); | |
2172 p.setProperty('min', -inf); | |
2173 p.setProperty('max', inf); | |
2174 p.setProperty('ref_frame', 'SS_MF'); | |
2175 p.setProperty('subsystem', 'TM'); | |
2176 p.setProperty('reference', 'TBD'); | |
2177 pl.append(p); | |
2178 | |
2179 % stiffness of TM1 between eta and phi | |
2180 p = param({'EOM_TM1_STIFF_ETAPHI','stiffness of TM1 between eta and phi'}, ... | |
2181 paramValue.DOUBLE_VALUE(5.6515e-08)); | |
2182 p.setProperty('units', 's^(-2)'); | |
2183 p.setProperty('min', -inf); | |
2184 p.setProperty('max', inf); | |
2185 p.setProperty('ref_frame', 'SS_MF'); | |
2186 p.setProperty('subsystem', 'TM'); | |
2187 p.setProperty('reference', 'TBD'); | |
2188 pl.append(p); | |
2189 | |
2190 % stiffness of TM1 between phi and X | |
2191 p = param({'EOM_TM1_STIFF_PHIX','stiffness of TM1 between phi and X'}, ... | |
2192 paramValue.DOUBLE_VALUE(7.4642e-06)); | |
2193 p.setProperty('units', 's^(-2) m^(-1) rad'); | |
2194 p.setProperty('min', -inf); | |
2195 p.setProperty('max', inf); | |
2196 p.setProperty('ref_frame', 'SS_MF'); | |
2197 p.setProperty('subsystem', 'TM'); | |
2198 p.setProperty('reference', 'TBD'); | |
2199 pl.append(p); | |
2200 | |
2201 % stiffness of TM1 between phi and Y | |
2202 p = param({'EOM_TM1_STIFF_PHIY','stiffness of TM1 between phi and Y'}, ... | |
2203 paramValue.DOUBLE_VALUE(5.4062e-06)); | |
2204 p.setProperty('units', 's^(-2) m^(-1) rad'); | |
2205 p.setProperty('min', -inf); | |
2206 p.setProperty('max', inf); | |
2207 p.setProperty('ref_frame', 'SS_MF'); | |
2208 p.setProperty('subsystem', 'TM'); | |
2209 p.setProperty('reference', 'TBD'); | |
2210 pl.append(p); | |
2211 | |
2212 % stiffness of TM1 between phi and Z | |
2213 p = param({'EOM_TM1_STIFF_PHIZ','stiffness of TM1 between phi and Z'}, ... | |
2214 paramValue.DOUBLE_VALUE(2.4572e-06)); | |
2215 p.setProperty('units', 's^(-2) m^(-1) rad'); | |
2216 p.setProperty('min', -inf); | |
2217 p.setProperty('max', inf); | |
2218 p.setProperty('ref_frame', 'SS_MF'); | |
2219 p.setProperty('subsystem', 'TM'); | |
2220 p.setProperty('reference', 'TBD'); | |
2221 pl.append(p); | |
2222 | |
2223 % stiffness of TM1 between phi and theta | |
2224 p = param({'EOM_TM1_STIFF_PHITHETA','stiffness of TM1 between phi and theta'}, ... | |
2225 paramValue.DOUBLE_VALUE(5.6515e-08)); | |
2226 p.setProperty('units', 's^(-2)'); | |
2227 p.setProperty('min', -inf); | |
2228 p.setProperty('max', inf); | |
2229 p.setProperty('ref_frame', 'SS_MF'); | |
2230 p.setProperty('subsystem', 'TM'); | |
2231 p.setProperty('reference', 'TBD'); | |
2232 pl.append(p); | |
2233 | |
2234 % stiffness of TM1 between phi and eta | |
2235 p = param({'EOM_TM1_STIFF_PHIETA','stiffness of TM1 between phi and eta'}, ... | |
2236 paramValue.DOUBLE_VALUE(5.6515e-08)); | |
2237 p.setProperty('units', 's^(-2)'); | |
2238 p.setProperty('min', -inf); | |
2239 p.setProperty('max', inf); | |
2240 p.setProperty('ref_frame', 'SS_MF'); | |
2241 p.setProperty('subsystem', 'TM'); | |
2242 p.setProperty('reference', 'TBD'); | |
2243 pl.append(p); | |
2244 | |
2245 % stiffness of TM1 along phi | |
2246 p = param({'EOM_TM1_STIFF_PHIPHI','stiffness of TM1 along phi'}, ... | |
2247 paramValue.DOUBLE_VALUE(3.9735e-06)); | |
2248 p.setProperty('units', 's^(-2)'); | |
2249 p.setProperty('min', -inf); | |
2250 p.setProperty('max', inf); | |
2251 p.setProperty('ref_frame', 'SS_MF'); | |
2252 p.setProperty('subsystem', 'TM'); | |
2253 p.setProperty('reference', 'TBD'); | |
2254 pl.append(p); | |
2255 | |
2256 % stiffness of TM2 along X(there should be 2 | |
2257 p = param({'EOM_TM2_STIFF_XX','stiffness of TM2 along X(there should be 2'}, ... | |
2258 paramValue.DOUBLE_VALUE(2e-06)); | |
2259 p.setProperty('units', 's^(-2)'); | |
2260 p.setProperty('min', -inf); | |
2261 p.setProperty('max', inf); | |
2262 p.setProperty('ref_frame', 'SS_MF'); | |
2263 p.setProperty('subsystem', 'TM'); | |
2264 p.setProperty('reference', 'TBD'); | |
2265 pl.append(p); | |
2266 | |
2267 % stiffness of TM2 between X and Y | |
2268 p = param({'EOM_TM2_STIFF_XY','stiffness of TM2 between X and Y'}, ... | |
2269 paramValue.DOUBLE_VALUE(1.35e-07)); | |
2270 p.setProperty('units', 's^(-2)'); | |
2271 p.setProperty('min', -inf); | |
2272 p.setProperty('max', inf); | |
2273 p.setProperty('ref_frame', 'SS_MF'); | |
2274 p.setProperty('subsystem', 'TM'); | |
2275 p.setProperty('reference', 'TBD'); | |
2276 pl.append(p); | |
2277 | |
2278 % stiffness of TM2 between X and Z | |
2279 p = param({'EOM_TM2_STIFF_XZ','stiffness of TM2 between X and Z'}, ... | |
2280 paramValue.DOUBLE_VALUE(1.35e-07)); | |
2281 p.setProperty('units', 's^(-2)'); | |
2282 p.setProperty('min', -inf); | |
2283 p.setProperty('max', inf); | |
2284 p.setProperty('ref_frame', 'SS_MF'); | |
2285 p.setProperty('subsystem', 'TM'); | |
2286 p.setProperty('reference', 'TBD'); | |
2287 pl.append(p); | |
2288 | |
2289 % stiffness of TM2 between X and theta | |
2290 p = param({'EOM_TM2_STIFF_XTHETA','stiffness of TM2 between X and theta'}, ... | |
2291 paramValue.DOUBLE_VALUE(4.25e-10)); | |
2292 p.setProperty('units', 's^(-2) m rad^(-1))'); | |
2293 p.setProperty('min', -inf); | |
2294 p.setProperty('max', inf); | |
2295 p.setProperty('ref_frame', 'SS_MF'); | |
2296 p.setProperty('subsystem', 'TM'); | |
2297 p.setProperty('reference', 'TBD'); | |
2298 pl.append(p); | |
2299 | |
2300 % stiffness of TM2 between X and eta | |
2301 p = param({'EOM_TM2_STIFF_XETA','stiffness of TM2 between X and eta'}, ... | |
2302 paramValue.DOUBLE_VALUE(3.425e-09)); | |
2303 p.setProperty('units', 's^(-2) m rad^(-1))'); | |
2304 p.setProperty('min', -inf); | |
2305 p.setProperty('max', inf); | |
2306 p.setProperty('ref_frame', 'SS_MF'); | |
2307 p.setProperty('subsystem', 'TM'); | |
2308 p.setProperty('reference', 'TBD'); | |
2309 pl.append(p); | |
2310 | |
2311 % stiffness of TM2 between X and phi | |
2312 p = param({'EOM_TM2_STIFF_XPHI','stiffness of TM2 between X and phi'}, ... | |
2313 paramValue.DOUBLE_VALUE(2.425e-09)); | |
2314 p.setProperty('units', 's^(-2) m rad^(-1))'); | |
2315 p.setProperty('min', -inf); | |
2316 p.setProperty('max', inf); | |
2317 p.setProperty('ref_frame', 'SS_MF'); | |
2318 p.setProperty('subsystem', 'TM'); | |
2319 p.setProperty('reference', 'TBD'); | |
2320 pl.append(p); | |
2321 | |
2322 % stiffness of TM2 between Y and X | |
2323 p = param({'EOM_TM2_STIFF_YX','stiffness of TM2 between Y and X'}, ... | |
2324 paramValue.DOUBLE_VALUE(1.35e-07)); | |
2325 p.setProperty('units', 's^(-2)'); | |
2326 p.setProperty('min', -inf); | |
2327 p.setProperty('max', inf); | |
2328 p.setProperty('ref_frame', 'SS_MF'); | |
2329 p.setProperty('subsystem', 'TM'); | |
2330 p.setProperty('reference', 'TBD'); | |
2331 pl.append(p); | |
2332 | |
2333 % stiffness of TM2 along Y | |
2334 p = param({'EOM_TM2_STIFF_YY','stiffness of TM2 along Y'}, ... | |
2335 paramValue.DOUBLE_VALUE(2.867e-06)); | |
2336 p.setProperty('units', 's^(-2)'); | |
2337 p.setProperty('min', -inf); | |
2338 p.setProperty('max', inf); | |
2339 p.setProperty('ref_frame', 'SS_MF'); | |
2340 p.setProperty('subsystem', 'TM'); | |
2341 p.setProperty('reference', 'TBD'); | |
2342 pl.append(p); | |
2343 | |
2344 % stiffness of TM2 between Y and Z | |
2345 p = param({'EOM_TM2_STIFF_YZ','stiffness of TM2 between Y and Z'}, ... | |
2346 paramValue.DOUBLE_VALUE(1.35e-07)); | |
2347 p.setProperty('units', 's^(-2)'); | |
2348 p.setProperty('min', -inf); | |
2349 p.setProperty('max', inf); | |
2350 p.setProperty('ref_frame', 'SS_MF'); | |
2351 p.setProperty('subsystem', 'TM'); | |
2352 p.setProperty('reference', 'TBD'); | |
2353 pl.append(p); | |
2354 | |
2355 % stiffness of TM2 between Y and theta | |
2356 p = param({'EOM_TM2_STIFF_YTHETA','stiffness of TM2 between Y and theta'}, ... | |
2357 paramValue.DOUBLE_VALUE(3.425e-09)); | |
2358 p.setProperty('units', 's^(-2) m rad^(-1))'); | |
2359 p.setProperty('min', -inf); | |
2360 p.setProperty('max', inf); | |
2361 p.setProperty('ref_frame', 'SS_MF'); | |
2362 p.setProperty('subsystem', 'TM'); | |
2363 p.setProperty('reference', 'TBD'); | |
2364 pl.append(p); | |
2365 | |
2366 % stiffness of TM2 between Y and eta | |
2367 p = param({'EOM_TM2_STIFF_YETA','stiffness of TM2 between Y and eta'}, ... | |
2368 paramValue.DOUBLE_VALUE(4.25e-10)); | |
2369 p.setProperty('units', 's^(-2) m rad^(-1))'); | |
2370 p.setProperty('min', -inf); | |
2371 p.setProperty('max', inf); | |
2372 p.setProperty('ref_frame', 'SS_MF'); | |
2373 p.setProperty('subsystem', 'TM'); | |
2374 p.setProperty('reference', 'TBD'); | |
2375 pl.append(p); | |
2376 | |
2377 % stiffness of TM2 between Y and phi | |
2378 p = param({'EOM_TM2_STIFF_YPHI','stiffness of TM2 between Y and phi'}, ... | |
2379 paramValue.DOUBLE_VALUE(1.425e-09)); | |
2380 p.setProperty('units', 's^(-2) m rad^(-1))'); | |
2381 p.setProperty('min', -inf); | |
2382 p.setProperty('max', inf); | |
2383 p.setProperty('ref_frame', 'SS_MF'); | |
2384 p.setProperty('subsystem', 'TM'); | |
2385 p.setProperty('reference', 'TBD'); | |
2386 pl.append(p); | |
2387 | |
2388 % stiffness of TM2 between Z and X | |
2389 p = param({'EOM_TM2_STIFF_ZX','stiffness of TM2 between Z and X'}, ... | |
2390 paramValue.DOUBLE_VALUE(1.35e-07)); | |
2391 p.setProperty('units', 's^(-2)'); | |
2392 p.setProperty('min', -inf); | |
2393 p.setProperty('max', inf); | |
2394 p.setProperty('ref_frame', 'SS_MF'); | |
2395 p.setProperty('subsystem', 'TM'); | |
2396 p.setProperty('reference', 'TBD'); | |
2397 pl.append(p); | |
2398 | |
2399 % stiffness of TM2 between Z and Y | |
2400 p = param({'EOM_TM2_STIFF_ZY','stiffness of TM2 between Z and Y'}, ... | |
2401 paramValue.DOUBLE_VALUE(1.35e-07)); | |
2402 p.setProperty('units', 's^(-2)'); | |
2403 p.setProperty('min', -inf); | |
2404 p.setProperty('max', inf); | |
2405 p.setProperty('ref_frame', 'SS_MF'); | |
2406 p.setProperty('subsystem', 'TM'); | |
2407 p.setProperty('reference', 'TBD'); | |
2408 pl.append(p); | |
2409 | |
2410 % stiffness of TM2 along Z | |
2411 p = param({'EOM_TM2_STIFF_ZZ','stiffness of TM2 along Z'}, ... | |
2412 paramValue.DOUBLE_VALUE(4.816e-06)); | |
2413 p.setProperty('units', 's^(-2)'); | |
2414 p.setProperty('min', -inf); | |
2415 p.setProperty('max', inf); | |
2416 p.setProperty('ref_frame', 'SS_MF'); | |
2417 p.setProperty('subsystem', 'TM'); | |
2418 p.setProperty('reference', 'TBD'); | |
2419 pl.append(p); | |
2420 | |
2421 % stiffness of TM2 between Z and theta | |
2422 p = param({'EOM_TM2_STIFF_ZTHETA','stiffness of TM2 between Z and theta'}, ... | |
2423 paramValue.DOUBLE_VALUE(2.425e-09)); | |
2424 p.setProperty('units', 's^(-2) m rad^(-1))'); | |
2425 p.setProperty('min', -inf); | |
2426 p.setProperty('max', inf); | |
2427 p.setProperty('ref_frame', 'SS_MF'); | |
2428 p.setProperty('subsystem', 'TM'); | |
2429 p.setProperty('reference', 'TBD'); | |
2430 pl.append(p); | |
2431 | |
2432 % stiffness of TM2 between Z and eta | |
2433 p = param({'EOM_TM2_STIFF_ZETA','stiffness of TM2 between Z and eta'}, ... | |
2434 paramValue.DOUBLE_VALUE(1.425e-09)); | |
2435 p.setProperty('units', 's^(-2) m rad^(-1))'); | |
2436 p.setProperty('min', -inf); | |
2437 p.setProperty('max', inf); | |
2438 p.setProperty('ref_frame', 'SS_MF'); | |
2439 p.setProperty('subsystem', 'TM'); | |
2440 p.setProperty('reference', 'TBD'); | |
2441 pl.append(p); | |
2442 | |
2443 % stiffness of TM2 between Z and phi | |
2444 p = param({'EOM_TM2_STIFF_ZPHI','stiffness of TM2 between Z and phi'}, ... | |
2445 paramValue.DOUBLE_VALUE(4.25e-10)); | |
2446 p.setProperty('units', 's^(-2) m rad^(-1))'); | |
2447 p.setProperty('min', -inf); | |
2448 p.setProperty('max', inf); | |
2449 p.setProperty('ref_frame', 'SS_MF'); | |
2450 p.setProperty('subsystem', 'TM'); | |
2451 p.setProperty('reference', 'TBD'); | |
2452 pl.append(p); | |
2453 | |
2454 % stiffness of TM2 between theta and X | |
2455 p = param({'EOM_TM2_STIFF_THETAX','stiffness of TM2 between theta and X'}, ... | |
2456 paramValue.DOUBLE_VALUE(2.6087e-06)); | |
2457 p.setProperty('units', 's^(-2) m^(-1) rad'); | |
2458 p.setProperty('min', -inf); | |
2459 p.setProperty('max', inf); | |
2460 p.setProperty('ref_frame', 'SS_MF'); | |
2461 p.setProperty('subsystem', 'TM'); | |
2462 p.setProperty('reference', 'TBD'); | |
2463 pl.append(p); | |
2464 | |
2465 % stiffness of TM2 between theta and Y | |
2466 p = param({'EOM_TM2_STIFF_THETAY','stiffness of TM2 between theta and Y'}, ... | |
2467 paramValue.DOUBLE_VALUE(1.1003e-05)); | |
2468 p.setProperty('units', 's^(-2) m^(-1) rad'); | |
2469 p.setProperty('min', -inf); | |
2470 p.setProperty('max', inf); | |
2471 p.setProperty('ref_frame', 'SS_MF'); | |
2472 p.setProperty('subsystem', 'TM'); | |
2473 p.setProperty('reference', 'TBD'); | |
2474 pl.append(p); | |
2475 | |
2476 % stiffness of TM2 between theta and Z | |
2477 p = param({'EOM_TM2_STIFF_THETAZ','stiffness of TM2 between theta and Z'}, ... | |
2478 paramValue.DOUBLE_VALUE(7.5997e-06)); | |
2479 p.setProperty('units', 's^(-2) m^(-1) rad'); | |
2480 p.setProperty('min', -inf); | |
2481 p.setProperty('max', inf); | |
2482 p.setProperty('ref_frame', 'SS_MF'); | |
2483 p.setProperty('subsystem', 'TM'); | |
2484 p.setProperty('reference', 'TBD'); | |
2485 pl.append(p); | |
2486 | |
2487 % stiffness of TM2 along theta | |
2488 p = param({'EOM_TM2_STIFF_THETATHETA','stiffness of TM2 along theta'}, ... | |
2489 paramValue.DOUBLE_VALUE(5.634e-06)); | |
2490 p.setProperty('units', 's^(-2)'); | |
2491 p.setProperty('min', -inf); | |
2492 p.setProperty('max', inf); | |
2493 p.setProperty('ref_frame', 'SS_MF'); | |
2494 p.setProperty('subsystem', 'TM'); | |
2495 p.setProperty('reference', 'TBD'); | |
2496 pl.append(p); | |
2497 | |
2498 % stiffness of TM2 between theta and eta | |
2499 p = param({'EOM_TM2_STIFF_THETAETA','stiffness of TM2 between theta and eta'}, ... | |
2500 paramValue.DOUBLE_VALUE(6e-08)); | |
2501 p.setProperty('units', 's^(-2)'); | |
2502 p.setProperty('min', -inf); | |
2503 p.setProperty('max', inf); | |
2504 p.setProperty('ref_frame', 'SS_MF'); | |
2505 p.setProperty('subsystem', 'TM'); | |
2506 p.setProperty('reference', 'TBD'); | |
2507 pl.append(p); | |
2508 | |
2509 % stiffness of TM2 between theta and phi | |
2510 p = param({'EOM_TM2_STIFF_THETAPHI','stiffness of TM2 between theta and phi'}, ... | |
2511 paramValue.DOUBLE_VALUE(6e-08)); | |
2512 p.setProperty('units', 's^(-2)'); | |
2513 p.setProperty('min', -inf); | |
2514 p.setProperty('max', inf); | |
2515 p.setProperty('ref_frame', 'SS_MF'); | |
2516 p.setProperty('subsystem', 'TM'); | |
2517 p.setProperty('reference', 'TBD'); | |
2518 pl.append(p); | |
2519 | |
2520 % stiffness of TM2 between eta and X | |
2521 p = param({'EOM_TM2_STIFF_ETAX','stiffness of TM2 between eta and X'}, ... | |
2522 paramValue.DOUBLE_VALUE(1.1003e-05)); | |
2523 p.setProperty('units', 's^(-2) m^(-1) rad'); | |
2524 p.setProperty('min', -inf); | |
2525 p.setProperty('max', inf); | |
2526 p.setProperty('ref_frame', 'SS_MF'); | |
2527 p.setProperty('subsystem', 'TM'); | |
2528 p.setProperty('reference', 'TBD'); | |
2529 pl.append(p); | |
2530 | |
2531 % stiffness of TM2 between eta and Y | |
2532 p = param({'EOM_TM2_STIFF_ETAY','stiffness of TM2 between eta and Y'}, ... | |
2533 paramValue.DOUBLE_VALUE(2.6087e-06)); | |
2534 p.setProperty('units', 's^(-2) m^(-1) rad'); | |
2535 p.setProperty('min', -inf); | |
2536 p.setProperty('max', inf); | |
2537 p.setProperty('ref_frame', 'SS_MF'); | |
2538 p.setProperty('subsystem', 'TM'); | |
2539 p.setProperty('reference', 'TBD'); | |
2540 pl.append(p); | |
2541 | |
2542 % stiffness of TM2 between eta and Z | |
2543 p = param({'EOM_TM2_STIFF_ETAZ','stiffness of TM2 between eta and Z'}, ... | |
2544 paramValue.DOUBLE_VALUE(5.6197e-06)); | |
2545 p.setProperty('units', 's^(-2) m^(-1) rad'); | |
2546 p.setProperty('min', -inf); | |
2547 p.setProperty('max', inf); | |
2548 p.setProperty('ref_frame', 'SS_MF'); | |
2549 p.setProperty('subsystem', 'TM'); | |
2550 p.setProperty('reference', 'TBD'); | |
2551 pl.append(p); | |
2552 | |
2553 % stiffness of TM2 between eta and theta | |
2554 p = param({'EOM_TM2_STIFF_ETATHETA','stiffness of TM2 between eta and theta'}, ... | |
2555 paramValue.DOUBLE_VALUE(6e-08)); | |
2556 p.setProperty('units', 's^(-2)'); | |
2557 p.setProperty('min', -inf); | |
2558 p.setProperty('max', inf); | |
2559 p.setProperty('ref_frame', 'SS_MF'); | |
2560 p.setProperty('subsystem', 'TM'); | |
2561 p.setProperty('reference', 'TBD'); | |
2562 pl.append(p); | |
2563 | |
2564 % stiffness of TM2 along eta | |
2565 p = param({'EOM_TM2_STIFF_ETAETA','stiffness of TM2 along eta'}, ... | |
2566 paramValue.DOUBLE_VALUE(5.538e-06)); | |
2567 p.setProperty('units', 's^(-2)'); | |
2568 p.setProperty('min', -inf); | |
2569 p.setProperty('max', inf); | |
2570 p.setProperty('ref_frame', 'SS_MF'); | |
2571 p.setProperty('subsystem', 'TM'); | |
2572 p.setProperty('reference', 'TBD'); | |
2573 pl.append(p); | |
2574 | |
2575 % stiffness of TM2 between eta and phi | |
2576 p = param({'EOM_TM2_STIFF_ETAPHI','stiffness of TM2 between eta and phi'}, ... | |
2577 paramValue.DOUBLE_VALUE(6e-08)); | |
2578 p.setProperty('units', 's^(-2)'); | |
2579 p.setProperty('min', -inf); | |
2580 p.setProperty('max', inf); | |
2581 p.setProperty('ref_frame', 'SS_MF'); | |
2582 p.setProperty('subsystem', 'TM'); | |
2583 p.setProperty('reference', 'TBD'); | |
2584 pl.append(p); | |
2585 | |
2586 % stiffness of TM2 between phi and X | |
2587 p = param({'EOM_TM2_STIFF_PHIX','stiffness of TM2 between phi and X'}, ... | |
2588 paramValue.DOUBLE_VALUE(7.6157e-06)); | |
2589 p.setProperty('units', 's^(-2) m^(-1) rad'); | |
2590 p.setProperty('min', -inf); | |
2591 p.setProperty('max', inf); | |
2592 p.setProperty('ref_frame', 'SS_MF'); | |
2593 p.setProperty('subsystem', 'TM'); | |
2594 p.setProperty('reference', 'TBD'); | |
2595 pl.append(p); | |
2596 | |
2597 % stiffness of TM2 between phi and Y | |
2598 p = param({'EOM_TM2_STIFF_PHIY','stiffness of TM2 between phi and Y'}, ... | |
2599 paramValue.DOUBLE_VALUE(5.5577e-06)); | |
2600 p.setProperty('units', 's^(-2) m^(-1) rad'); | |
2601 p.setProperty('min', -inf); | |
2602 p.setProperty('max', inf); | |
2603 p.setProperty('ref_frame', 'SS_MF'); | |
2604 p.setProperty('subsystem', 'TM'); | |
2605 p.setProperty('reference', 'TBD'); | |
2606 pl.append(p); | |
2607 | |
2608 % stiffness of TM2 between phi and Z | |
2609 p = param({'EOM_TM2_STIFF_PHIZ','stiffness of TM2 between phi and Z'}, ... | |
2610 paramValue.DOUBLE_VALUE(2.6087e-06)); | |
2611 p.setProperty('units', 's^(-2) m^(-1) rad'); | |
2612 p.setProperty('min', -inf); | |
2613 p.setProperty('max', inf); | |
2614 p.setProperty('ref_frame', 'SS_MF'); | |
2615 p.setProperty('subsystem', 'TM'); | |
2616 p.setProperty('reference', 'TBD'); | |
2617 pl.append(p); | |
2618 | |
2619 % stiffness of TM2 between phi and theta | |
2620 p = param({'EOM_TM2_STIFF_PHITHETA','stiffness of TM2 between phi and theta'}, ... | |
2621 paramValue.DOUBLE_VALUE(6e-08)); | |
2622 p.setProperty('units', 's^(-2)'); | |
2623 p.setProperty('min', -inf); | |
2624 p.setProperty('max', inf); | |
2625 p.setProperty('ref_frame', 'SS_MF'); | |
2626 p.setProperty('subsystem', 'TM'); | |
2627 p.setProperty('reference', 'TBD'); | |
2628 pl.append(p); | |
2629 | |
2630 % stiffness of TM2 between phi and eta | |
2631 p = param({'EOM_TM2_STIFF_PHIETA','stiffness of TM2 between phi and eta'}, ... | |
2632 paramValue.DOUBLE_VALUE(6e-08)); | |
2633 p.setProperty('units', 's^(-2)'); | |
2634 p.setProperty('min', -inf); | |
2635 p.setProperty('max', inf); | |
2636 p.setProperty('ref_frame', 'SS_MF'); | |
2637 p.setProperty('subsystem', 'TM'); | |
2638 p.setProperty('reference', 'TBD'); | |
2639 pl.append(p); | |
2640 | |
2641 % stiffness of TM2 along phi | |
2642 p = param({'EOM_TM2_STIFF_PHIPHI','stiffness of TM2 along phi'}, ... | |
2643 paramValue.DOUBLE_VALUE(4.136e-06)); | |
2644 p.setProperty('units', 's^(-2)'); | |
2645 p.setProperty('min', -inf); | |
2646 p.setProperty('max', inf); | |
2647 p.setProperty('ref_frame', 'SS_MF'); | |
2648 p.setProperty('subsystem', 'TM'); | |
2649 p.setProperty('reference', 'TBD'); | |
2650 pl.append(p); | |
2651 | |
2652 % TM1 residual gas drag along X (defined in housing 1) | |
2653 p = param({'EOM_TM1_DRAG_XX','TM1 residual gas drag along X (defined in housing 1)'}, ... | |
2654 paramValue.DOUBLE_VALUE(0)); | |
2655 p.setProperty('units', 's^(-1)'); | |
2656 p.setProperty('min', -inf); | |
2657 p.setProperty('max', inf); | |
2658 p.setProperty('ref_frame', 'H1'); | |
2659 p.setProperty('subsystem', 'TM'); | |
2660 p.setProperty('reference', 'TBD'); | |
2661 pl.append(p); | |
2662 | |
2663 % TM1 residual gas drag along Y (defined in housing 1) | |
2664 p = param({'EOM_TM1_DRAG_YY','TM1 residual gas drag along Y (defined in housing 1)'}, ... | |
2665 paramValue.DOUBLE_VALUE(0)); | |
2666 p.setProperty('units', 's^(-1)'); | |
2667 p.setProperty('min', -inf); | |
2668 p.setProperty('max', inf); | |
2669 p.setProperty('ref_frame', 'H1'); | |
2670 p.setProperty('subsystem', 'TM'); | |
2671 p.setProperty('reference', 'TBD'); | |
2672 pl.append(p); | |
2673 | |
2674 % TM1 residual gas drag along Z (defined in housing 1) | |
2675 p = param({'EOM_TM1_DRAG_ZZ','TM1 residual gas drag along Z (defined in housing 1)'}, ... | |
2676 paramValue.DOUBLE_VALUE(0)); | |
2677 p.setProperty('units', 's^(-1)'); | |
2678 p.setProperty('min', -inf); | |
2679 p.setProperty('max', inf); | |
2680 p.setProperty('ref_frame', 'H1'); | |
2681 p.setProperty('subsystem', 'TM'); | |
2682 p.setProperty('reference', 'TBD'); | |
2683 pl.append(p); | |
2684 | |
2685 % TM1 residual gas drag along theta (defined in housing 1) | |
2686 p = param({'EOM_TM1_DRAG_THETATHETA','TM1 residual gas drag along theta (defined in housing 1)'}, ... | |
2687 paramValue.DOUBLE_VALUE(0)); | |
2688 p.setProperty('units', 's^(-1)'); | |
2689 p.setProperty('min', -inf); | |
2690 p.setProperty('max', inf); | |
2691 p.setProperty('ref_frame', 'H1'); | |
2692 p.setProperty('subsystem', 'TM'); | |
2693 p.setProperty('reference', 'TBD'); | |
2694 pl.append(p); | |
2695 | |
2696 % TM1 residual gas drag along eta (defined in housing 1) | |
2697 p = param({'EOM_TM1_DRAG_ETAETA','TM1 residual gas drag along eta (defined in housing 1)'}, ... | |
2698 paramValue.DOUBLE_VALUE(0)); | |
2699 p.setProperty('units', 's^(-1)'); | |
2700 p.setProperty('min', -inf); | |
2701 p.setProperty('max', inf); | |
2702 p.setProperty('ref_frame', 'H1'); | |
2703 p.setProperty('subsystem', 'TM'); | |
2704 p.setProperty('reference', 'TBD'); | |
2705 pl.append(p); | |
2706 | |
2707 % TM1 residual gas drag along phi (defined in housing 1) | |
2708 p = param({'EOM_TM1_DRAG_PHIPHI','TM1 residual gas drag along phi (defined in housing 1)'}, ... | |
2709 paramValue.DOUBLE_VALUE(0)); | |
2710 p.setProperty('units', 's^(-1)'); | |
2711 p.setProperty('min', -inf); | |
2712 p.setProperty('max', inf); | |
2713 p.setProperty('ref_frame', 'H1'); | |
2714 p.setProperty('subsystem', 'TM'); | |
2715 p.setProperty('reference', 'TBD'); | |
2716 pl.append(p); | |
2717 | |
2718 % TM2 residual gas drag along X (defined in housing 2) | |
2719 p = param({'EOM_TM2_DRAG_XX','TM2 residual gas drag along X (defined in housing 2)'}, ... | |
2720 paramValue.DOUBLE_VALUE(0)); | |
2721 p.setProperty('units', 's^(-1)'); | |
2722 p.setProperty('min', -inf); | |
2723 p.setProperty('max', inf); | |
2724 p.setProperty('ref_frame', 'H2'); | |
2725 p.setProperty('subsystem', 'TM'); | |
2726 p.setProperty('reference', 'TBD'); | |
2727 pl.append(p); | |
2728 | |
2729 % TM2 residual gas drag along Y (defined in housing 2) | |
2730 p = param({'EOM_TM2_DRAG_YY','TM2 residual gas drag along Y (defined in housing 2)'}, ... | |
2731 paramValue.DOUBLE_VALUE(0)); | |
2732 p.setProperty('units', 's^(-1)'); | |
2733 p.setProperty('min', -inf); | |
2734 p.setProperty('max', inf); | |
2735 p.setProperty('ref_frame', 'H2'); | |
2736 p.setProperty('subsystem', 'TM'); | |
2737 p.setProperty('reference', 'TBD'); | |
2738 pl.append(p); | |
2739 | |
2740 % TM2 residual gas drag along Z (defined in housing 2) | |
2741 p = param({'EOM_TM2_DRAG_ZZ','TM2 residual gas drag along Z (defined in housing 2)'}, ... | |
2742 paramValue.DOUBLE_VALUE(0)); | |
2743 p.setProperty('units', 's^(-1)'); | |
2744 p.setProperty('min', -inf); | |
2745 p.setProperty('max', inf); | |
2746 p.setProperty('ref_frame', 'H2'); | |
2747 p.setProperty('subsystem', 'TM'); | |
2748 p.setProperty('reference', 'TBD'); | |
2749 pl.append(p); | |
2750 | |
2751 % TM2 residual gas drag along theta (defined in housing 2) | |
2752 p = param({'EOM_TM2_DRAG_THETATHETA','TM2 residual gas drag along theta (defined in housing 2)'}, ... | |
2753 paramValue.DOUBLE_VALUE(0)); | |
2754 p.setProperty('units', 's^(-1)'); | |
2755 p.setProperty('min', -inf); | |
2756 p.setProperty('max', inf); | |
2757 p.setProperty('ref_frame', 'H2'); | |
2758 p.setProperty('subsystem', 'TM'); | |
2759 p.setProperty('reference', 'TBD'); | |
2760 pl.append(p); | |
2761 | |
2762 % TM2 residual gas drag along eta (defined in housing 2) | |
2763 p = param({'EOM_TM2_DRAG_ETAETA','TM2 residual gas drag along eta (defined in housing 2)'}, ... | |
2764 paramValue.DOUBLE_VALUE(0)); | |
2765 p.setProperty('units', 's^(-1)'); | |
2766 p.setProperty('min', -inf); | |
2767 p.setProperty('max', inf); | |
2768 p.setProperty('ref_frame', 'H2'); | |
2769 p.setProperty('subsystem', 'TM'); | |
2770 p.setProperty('reference', 'TBD'); | |
2771 pl.append(p); | |
2772 | |
2773 % TM2 residual gas drag along phi (defined in housing 2) | |
2774 p = param({'EOM_TM2_DRAG_PHIPHI','TM2 residual gas drag along phi (defined in housing 2)'}, ... | |
2775 paramValue.DOUBLE_VALUE(0)); | |
2776 p.setProperty('units', 's^(-1)'); | |
2777 p.setProperty('min', -inf); | |
2778 p.setProperty('max', inf); | |
2779 p.setProperty('ref_frame', 'H2'); | |
2780 p.setProperty('subsystem', 'TM'); | |
2781 p.setProperty('reference', 'TBD'); | |
2782 pl.append(p); | |
2783 | |
2784 % IS TM1 Cross talk between X and X | |
2785 p = param({'IS_TM1_XX','IS TM1 Cross talk between X and X'}, ... | |
2786 paramValue.DOUBLE_VALUE(1)); | |
2787 p.setProperty('units', 'unit'); | |
2788 p.setProperty('min', -inf); | |
2789 p.setProperty('max', inf); | |
2790 p.setProperty('ref_frame', 'SS_MF'); | |
2791 p.setProperty('subsystem', 'TM'); | |
2792 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
2793 pl.append(p); | |
2794 | |
2795 % IS TM1 Cross talk between X and Y | |
2796 p = param({'IS_TM1_XY','IS TM1 Cross talk between X and Y'}, ... | |
2797 paramValue.DOUBLE_VALUE(0.003)); | |
2798 p.setProperty('units', 'unit'); | |
2799 p.setProperty('min', -inf); | |
2800 p.setProperty('max', inf); | |
2801 p.setProperty('ref_frame', 'SS_MF'); | |
2802 p.setProperty('subsystem', 'TM'); | |
2803 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
2804 pl.append(p); | |
2805 | |
2806 % IS TM1 Cross talk between X and Z | |
2807 p = param({'IS_TM1_XZ','IS TM1 Cross talk between X and Z'}, ... | |
2808 paramValue.DOUBLE_VALUE(0.003)); | |
2809 p.setProperty('units', 'unit'); | |
2810 p.setProperty('min', -inf); | |
2811 p.setProperty('max', inf); | |
2812 p.setProperty('ref_frame', 'SS_MF'); | |
2813 p.setProperty('subsystem', 'TM'); | |
2814 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
2815 pl.append(p); | |
2816 | |
2817 % IS TM1 Cross talk between X and theta | |
2818 p = param({'IS_TM1_XTHETA','IS TM1 Cross talk between X and theta'}, ... | |
2819 paramValue.DOUBLE_VALUE(0.000598)); | |
2820 p.setProperty('units', 'rad m ^(-1)'); | |
2821 p.setProperty('min', -inf); | |
2822 p.setProperty('max', inf); | |
2823 p.setProperty('ref_frame', 'SS_MF'); | |
2824 p.setProperty('subsystem', 'TM'); | |
2825 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
2826 pl.append(p); | |
2827 | |
2828 % IS TM1 Cross talk between X and eta | |
2829 p = param({'IS_TM1_XETA','IS TM1 Cross talk between X and eta'}, ... | |
2830 paramValue.DOUBLE_VALUE(0.000598)); | |
2831 p.setProperty('units', 'rad m ^(-1)'); | |
2832 p.setProperty('min', -inf); | |
2833 p.setProperty('max', inf); | |
2834 p.setProperty('ref_frame', 'SS_MF'); | |
2835 p.setProperty('subsystem', 'TM'); | |
2836 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
2837 pl.append(p); | |
2838 | |
2839 % IS TM1 Cross talk between X and phi | |
2840 p = param({'IS_TM1_XPHI','IS TM1 Cross talk between X and phi'}, ... | |
2841 paramValue.DOUBLE_VALUE(0.000598)); | |
2842 p.setProperty('units', 'rad m ^(-1)'); | |
2843 p.setProperty('min', -inf); | |
2844 p.setProperty('max', inf); | |
2845 p.setProperty('ref_frame', 'SS_MF'); | |
2846 p.setProperty('subsystem', 'TM'); | |
2847 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
2848 pl.append(p); | |
2849 | |
2850 % IS TM1 Cross talk between Y and X | |
2851 p = param({'IS_TM1_YX','IS TM1 Cross talk between Y and X'}, ... | |
2852 paramValue.DOUBLE_VALUE(0.003)); | |
2853 p.setProperty('units', 'unit'); | |
2854 p.setProperty('min', -inf); | |
2855 p.setProperty('max', inf); | |
2856 p.setProperty('ref_frame', 'SS_MF'); | |
2857 p.setProperty('subsystem', 'TM'); | |
2858 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
2859 pl.append(p); | |
2860 | |
2861 % IS TM1 Cross talk between Y and Y | |
2862 p = param({'IS_TM1_YY','IS TM1 Cross talk between Y and Y'}, ... | |
2863 paramValue.DOUBLE_VALUE(1)); | |
2864 p.setProperty('units', 'unit'); | |
2865 p.setProperty('min', -inf); | |
2866 p.setProperty('max', inf); | |
2867 p.setProperty('ref_frame', 'SS_MF'); | |
2868 p.setProperty('subsystem', 'TM'); | |
2869 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
2870 pl.append(p); | |
2871 | |
2872 % IS TM1 Cross talk between Y and Y | |
2873 p = param({'IS_TM1_YZ','IS TM1 Cross talk between Y and Y'}, ... | |
2874 paramValue.DOUBLE_VALUE(0.003)); | |
2875 p.setProperty('units', 'unit'); | |
2876 p.setProperty('min', -inf); | |
2877 p.setProperty('max', inf); | |
2878 p.setProperty('ref_frame', 'SS_MF'); | |
2879 p.setProperty('subsystem', 'TM'); | |
2880 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
2881 pl.append(p); | |
2882 | |
2883 % IS TM1 Cross talk between Y and theta | |
2884 p = param({'IS_TM1_YTHETA','IS TM1 Cross talk between Y and theta'}, ... | |
2885 paramValue.DOUBLE_VALUE(0.000598)); | |
2886 p.setProperty('units', 'rad m ^(-1)'); | |
2887 p.setProperty('min', -inf); | |
2888 p.setProperty('max', inf); | |
2889 p.setProperty('ref_frame', 'SS_MF'); | |
2890 p.setProperty('subsystem', 'TM'); | |
2891 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
2892 pl.append(p); | |
2893 | |
2894 % IS TM1 Cross talk between Y and eta | |
2895 p = param({'IS_TM1_YETA','IS TM1 Cross talk between Y and eta'}, ... | |
2896 paramValue.DOUBLE_VALUE(0.000598)); | |
2897 p.setProperty('units', 'rad m ^(-1)'); | |
2898 p.setProperty('min', -inf); | |
2899 p.setProperty('max', inf); | |
2900 p.setProperty('ref_frame', 'SS_MF'); | |
2901 p.setProperty('subsystem', 'TM'); | |
2902 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
2903 pl.append(p); | |
2904 | |
2905 % IS TM1 Cross talk between Y and phi | |
2906 p = param({'IS_TM1_YPHI','IS TM1 Cross talk between Y and phi'}, ... | |
2907 paramValue.DOUBLE_VALUE(0.000598)); | |
2908 p.setProperty('units', 'rad m ^(-1)'); | |
2909 p.setProperty('min', -inf); | |
2910 p.setProperty('max', inf); | |
2911 p.setProperty('ref_frame', 'SS_MF'); | |
2912 p.setProperty('subsystem', 'TM'); | |
2913 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
2914 pl.append(p); | |
2915 | |
2916 % IS TM1 Cross talk between Z and X | |
2917 p = param({'IS_TM1_ZX','IS TM1 Cross talk between Z and X'}, ... | |
2918 paramValue.DOUBLE_VALUE(0.003)); | |
2919 p.setProperty('units', 'unit'); | |
2920 p.setProperty('min', -inf); | |
2921 p.setProperty('max', inf); | |
2922 p.setProperty('ref_frame', 'SS_MF'); | |
2923 p.setProperty('subsystem', 'TM'); | |
2924 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
2925 pl.append(p); | |
2926 | |
2927 % IS TM1 Cross talk between Z and Y | |
2928 p = param({'IS_TM1_ZY','IS TM1 Cross talk between Z and Y'}, ... | |
2929 paramValue.DOUBLE_VALUE(0.003)); | |
2930 p.setProperty('units', 'unit'); | |
2931 p.setProperty('min', -inf); | |
2932 p.setProperty('max', inf); | |
2933 p.setProperty('ref_frame', 'SS_MF'); | |
2934 p.setProperty('subsystem', 'TM'); | |
2935 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
2936 pl.append(p); | |
2937 | |
2938 % IS TM1 Cross talk between Z and Z | |
2939 p = param({'IS_TM1_ZZ','IS TM1 Cross talk between Z and Z'}, ... | |
2940 paramValue.DOUBLE_VALUE(1)); | |
2941 p.setProperty('units', 'unit'); | |
2942 p.setProperty('min', -inf); | |
2943 p.setProperty('max', inf); | |
2944 p.setProperty('ref_frame', 'SS_MF'); | |
2945 p.setProperty('subsystem', 'TM'); | |
2946 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
2947 pl.append(p); | |
2948 | |
2949 % IS TM1 Cross talk between Z and theta | |
2950 p = param({'IS_TM1_ZTHETA','IS TM1 Cross talk between Z and theta'}, ... | |
2951 paramValue.DOUBLE_VALUE(0.000598)); | |
2952 p.setProperty('units', 'rad m ^(-1)'); | |
2953 p.setProperty('min', -inf); | |
2954 p.setProperty('max', inf); | |
2955 p.setProperty('ref_frame', 'SS_MF'); | |
2956 p.setProperty('subsystem', 'TM'); | |
2957 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
2958 pl.append(p); | |
2959 | |
2960 % IS TM1 Cross talk between Z and eta | |
2961 p = param({'IS_TM1_ZETA','IS TM1 Cross talk between Z and eta'}, ... | |
2962 paramValue.DOUBLE_VALUE(0.000598)); | |
2963 p.setProperty('units', 'rad m ^(-1)'); | |
2964 p.setProperty('min', -inf); | |
2965 p.setProperty('max', inf); | |
2966 p.setProperty('ref_frame', 'SS_MF'); | |
2967 p.setProperty('subsystem', 'TM'); | |
2968 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
2969 pl.append(p); | |
2970 | |
2971 % IS TM1 Cross talk between Z and phi | |
2972 p = param({'IS_TM1_ZPHI','IS TM1 Cross talk between Z and phi'}, ... | |
2973 paramValue.DOUBLE_VALUE(0.000598)); | |
2974 p.setProperty('units', 'rad m ^(-1)'); | |
2975 p.setProperty('min', -inf); | |
2976 p.setProperty('max', inf); | |
2977 p.setProperty('ref_frame', 'SS_MF'); | |
2978 p.setProperty('subsystem', 'TM'); | |
2979 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
2980 pl.append(p); | |
2981 | |
2982 % IS TM1 Cross talk between theta and X | |
2983 p = param({'IS_TM1_THETAX','IS TM1 Cross talk between theta and X'}, ... | |
2984 paramValue.DOUBLE_VALUE(0.086957)); | |
2985 p.setProperty('units', 'rad^(-1) m'); | |
2986 p.setProperty('min', -inf); | |
2987 p.setProperty('max', inf); | |
2988 p.setProperty('ref_frame', 'SS_MF'); | |
2989 p.setProperty('subsystem', 'TM'); | |
2990 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
2991 pl.append(p); | |
2992 | |
2993 % IS TM1 Cross talk between theta and Y | |
2994 p = param({'IS_TM1_THETAY','IS TM1 Cross talk between theta and Y'}, ... | |
2995 paramValue.DOUBLE_VALUE(0.086957)); | |
2996 p.setProperty('units', 'rad^(-1) m'); | |
2997 p.setProperty('min', -inf); | |
2998 p.setProperty('max', inf); | |
2999 p.setProperty('ref_frame', 'SS_MF'); | |
3000 p.setProperty('subsystem', 'TM'); | |
3001 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3002 pl.append(p); | |
3003 | |
3004 % IS TM1 Cross talk between theta and Z | |
3005 p = param({'IS_TM1_THETAZ','IS TM1 Cross talk between theta and Z'}, ... | |
3006 paramValue.DOUBLE_VALUE(0.086957)); | |
3007 p.setProperty('units', 'rad^(-1) m'); | |
3008 p.setProperty('min', -inf); | |
3009 p.setProperty('max', inf); | |
3010 p.setProperty('ref_frame', 'SS_MF'); | |
3011 p.setProperty('subsystem', 'TM'); | |
3012 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3013 pl.append(p); | |
3014 | |
3015 % IS TM1 Cross talk between theta and theta | |
3016 p = param({'IS_TM1_THETATHETA','IS TM1 Cross talk between theta and theta'}, ... | |
3017 paramValue.DOUBLE_VALUE(1)); | |
3018 p.setProperty('units', 'unit'); | |
3019 p.setProperty('min', -inf); | |
3020 p.setProperty('max', inf); | |
3021 p.setProperty('ref_frame', 'SS_MF'); | |
3022 p.setProperty('subsystem', 'TM'); | |
3023 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3024 pl.append(p); | |
3025 | |
3026 % IS TM1 Cross talk between theta and eta | |
3027 p = param({'IS_TM1_THETAETA','IS TM1 Cross talk between theta and eta'}, ... | |
3028 paramValue.DOUBLE_VALUE(0.001)); | |
3029 p.setProperty('units', 'unit'); | |
3030 p.setProperty('min', -inf); | |
3031 p.setProperty('max', inf); | |
3032 p.setProperty('ref_frame', 'SS_MF'); | |
3033 p.setProperty('subsystem', 'TM'); | |
3034 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3035 pl.append(p); | |
3036 | |
3037 % IS TM1 Cross talk between theta and phi | |
3038 p = param({'IS_TM1_THETAPHI','IS TM1 Cross talk between theta and phi'}, ... | |
3039 paramValue.DOUBLE_VALUE(0.001)); | |
3040 p.setProperty('units', 'unit'); | |
3041 p.setProperty('min', -inf); | |
3042 p.setProperty('max', inf); | |
3043 p.setProperty('ref_frame', 'SS_MF'); | |
3044 p.setProperty('subsystem', 'TM'); | |
3045 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3046 pl.append(p); | |
3047 | |
3048 % IS TM1 Cross talk between eta and X | |
3049 p = param({'IS_TM1_ETAX','IS TM1 Cross talk between eta and X'}, ... | |
3050 paramValue.DOUBLE_VALUE(0.086957)); | |
3051 p.setProperty('units', 'rad^(-1) m'); | |
3052 p.setProperty('min', -inf); | |
3053 p.setProperty('max', inf); | |
3054 p.setProperty('ref_frame', 'SS_MF'); | |
3055 p.setProperty('subsystem', 'TM'); | |
3056 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3057 pl.append(p); | |
3058 | |
3059 % IS TM1 Cross talk between eta and Y | |
3060 p = param({'IS_TM1_ETAY','IS TM1 Cross talk between eta and Y'}, ... | |
3061 paramValue.DOUBLE_VALUE(0.086957)); | |
3062 p.setProperty('units', 'rad^(-1) m'); | |
3063 p.setProperty('min', -inf); | |
3064 p.setProperty('max', inf); | |
3065 p.setProperty('ref_frame', 'SS_MF'); | |
3066 p.setProperty('subsystem', 'TM'); | |
3067 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3068 pl.append(p); | |
3069 | |
3070 % IS TM1 Cross talk between eta and Z | |
3071 p = param({'IS_TM1_ETAZ','IS TM1 Cross talk between eta and Z'}, ... | |
3072 paramValue.DOUBLE_VALUE(0.086957)); | |
3073 p.setProperty('units', 'rad^(-1) m'); | |
3074 p.setProperty('min', -inf); | |
3075 p.setProperty('max', inf); | |
3076 p.setProperty('ref_frame', 'SS_MF'); | |
3077 p.setProperty('subsystem', 'TM'); | |
3078 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3079 pl.append(p); | |
3080 | |
3081 % IS TM1 Cross talk between eta and theta | |
3082 p = param({'IS_TM1_ETATHETA','IS TM1 Cross talk between eta and theta'}, ... | |
3083 paramValue.DOUBLE_VALUE(0.001)); | |
3084 p.setProperty('units', 'unit'); | |
3085 p.setProperty('min', -inf); | |
3086 p.setProperty('max', inf); | |
3087 p.setProperty('ref_frame', 'SS_MF'); | |
3088 p.setProperty('subsystem', 'TM'); | |
3089 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3090 pl.append(p); | |
3091 | |
3092 % IS TM1 Cross talk between eta and eta | |
3093 p = param({'IS_TM1_ETAETA','IS TM1 Cross talk between eta and eta'}, ... | |
3094 paramValue.DOUBLE_VALUE(1)); | |
3095 p.setProperty('units', 'unit'); | |
3096 p.setProperty('min', -inf); | |
3097 p.setProperty('max', inf); | |
3098 p.setProperty('ref_frame', 'SS_MF'); | |
3099 p.setProperty('subsystem', 'TM'); | |
3100 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3101 pl.append(p); | |
3102 | |
3103 % IS TM1 Cross talk between phi and phi | |
3104 p = param({'IS_TM1_ETAPHI','IS TM1 Cross talk between phi and phi'}, ... | |
3105 paramValue.DOUBLE_VALUE(0.001)); | |
3106 p.setProperty('units', 'unit'); | |
3107 p.setProperty('min', -inf); | |
3108 p.setProperty('max', inf); | |
3109 p.setProperty('ref_frame', 'SS_MF'); | |
3110 p.setProperty('subsystem', 'TM'); | |
3111 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3112 pl.append(p); | |
3113 | |
3114 % IS TM1 Cross talk between phi and X | |
3115 p = param({'IS_TM1_PHIX','IS TM1 Cross talk between phi and X'}, ... | |
3116 paramValue.DOUBLE_VALUE(0.086957)); | |
3117 p.setProperty('units', 'rad^(-1) m'); | |
3118 p.setProperty('min', -inf); | |
3119 p.setProperty('max', inf); | |
3120 p.setProperty('ref_frame', 'SS_MF'); | |
3121 p.setProperty('subsystem', 'TM'); | |
3122 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3123 pl.append(p); | |
3124 | |
3125 % IS TM1 Cross talk between phi and Y | |
3126 p = param({'IS_TM1_PHIY','IS TM1 Cross talk between phi and Y'}, ... | |
3127 paramValue.DOUBLE_VALUE(0.086957)); | |
3128 p.setProperty('units', 'rad^(-1) m'); | |
3129 p.setProperty('min', -inf); | |
3130 p.setProperty('max', inf); | |
3131 p.setProperty('ref_frame', 'SS_MF'); | |
3132 p.setProperty('subsystem', 'TM'); | |
3133 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3134 pl.append(p); | |
3135 | |
3136 % IS TM1 Cross talk between phi and Z | |
3137 p = param({'IS_TM1_PHIZ','IS TM1 Cross talk between phi and Z'}, ... | |
3138 paramValue.DOUBLE_VALUE(0.086957)); | |
3139 p.setProperty('units', 'rad^(-1) m'); | |
3140 p.setProperty('min', -inf); | |
3141 p.setProperty('max', inf); | |
3142 p.setProperty('ref_frame', 'SS_MF'); | |
3143 p.setProperty('subsystem', 'TM'); | |
3144 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3145 pl.append(p); | |
3146 | |
3147 % IS TM1 Cross talk between phi and theta | |
3148 p = param({'IS_TM1_PHITHETA','IS TM1 Cross talk between phi and theta'}, ... | |
3149 paramValue.DOUBLE_VALUE(0.001)); | |
3150 p.setProperty('units', 'unit'); | |
3151 p.setProperty('min', -inf); | |
3152 p.setProperty('max', inf); | |
3153 p.setProperty('ref_frame', 'SS_MF'); | |
3154 p.setProperty('subsystem', 'TM'); | |
3155 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3156 pl.append(p); | |
3157 | |
3158 % IS TM1 Cross talk between phi and eta | |
3159 p = param({'IS_TM1_PHIETA','IS TM1 Cross talk between phi and eta'}, ... | |
3160 paramValue.DOUBLE_VALUE(0.001)); | |
3161 p.setProperty('units', 'unit'); | |
3162 p.setProperty('min', -inf); | |
3163 p.setProperty('max', inf); | |
3164 p.setProperty('ref_frame', 'SS_MF'); | |
3165 p.setProperty('subsystem', 'TM'); | |
3166 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3167 pl.append(p); | |
3168 | |
3169 % IS TM1 Cross talk between phi and phi | |
3170 p = param({'IS_TM1_PHIPHI','IS TM1 Cross talk between phi and phi'}, ... | |
3171 paramValue.DOUBLE_VALUE(1)); | |
3172 p.setProperty('units', 'unit'); | |
3173 p.setProperty('min', -inf); | |
3174 p.setProperty('max', inf); | |
3175 p.setProperty('ref_frame', 'SS_MF'); | |
3176 p.setProperty('subsystem', 'TM'); | |
3177 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3178 pl.append(p); | |
3179 | |
3180 % IS TM2 Cross talk between X and X | |
3181 p = param({'IS_TM2_XX','IS TM2 Cross talk between X and X'}, ... | |
3182 paramValue.DOUBLE_VALUE(1)); | |
3183 p.setProperty('units', 'unit'); | |
3184 p.setProperty('min', -inf); | |
3185 p.setProperty('max', inf); | |
3186 p.setProperty('ref_frame', 'SS_MF'); | |
3187 p.setProperty('subsystem', 'TM'); | |
3188 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3189 pl.append(p); | |
3190 | |
3191 % IS TM2 Cross talk between X and Y | |
3192 p = param({'IS_TM2_XY','IS TM2 Cross talk between X and Y'}, ... | |
3193 paramValue.DOUBLE_VALUE(0.003)); | |
3194 p.setProperty('units', 'unit'); | |
3195 p.setProperty('min', -inf); | |
3196 p.setProperty('max', inf); | |
3197 p.setProperty('ref_frame', 'SS_MF'); | |
3198 p.setProperty('subsystem', 'TM'); | |
3199 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3200 pl.append(p); | |
3201 | |
3202 % IS TM2 Cross talk between X and Z | |
3203 p = param({'IS_TM2_XZ','IS TM2 Cross talk between X and Z'}, ... | |
3204 paramValue.DOUBLE_VALUE(0.003)); | |
3205 p.setProperty('units', 'unit'); | |
3206 p.setProperty('min', -inf); | |
3207 p.setProperty('max', inf); | |
3208 p.setProperty('ref_frame', 'SS_MF'); | |
3209 p.setProperty('subsystem', 'TM'); | |
3210 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3211 pl.append(p); | |
3212 | |
3213 % IS TM2 Cross talk between X and theta | |
3214 p = param({'IS_TM2_XTHETA','IS TM2 Cross talk between X and theta'}, ... | |
3215 paramValue.DOUBLE_VALUE(0.000598)); | |
3216 p.setProperty('units', 'rad m ^(-1)'); | |
3217 p.setProperty('min', -inf); | |
3218 p.setProperty('max', inf); | |
3219 p.setProperty('ref_frame', 'SS_MF'); | |
3220 p.setProperty('subsystem', 'TM'); | |
3221 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3222 pl.append(p); | |
3223 | |
3224 % IS TM2 Cross talk between X and eta | |
3225 p = param({'IS_TM2_XETA','IS TM2 Cross talk between X and eta'}, ... | |
3226 paramValue.DOUBLE_VALUE(0.000598)); | |
3227 p.setProperty('units', 'rad m ^(-1)'); | |
3228 p.setProperty('min', -inf); | |
3229 p.setProperty('max', inf); | |
3230 p.setProperty('ref_frame', 'SS_MF'); | |
3231 p.setProperty('subsystem', 'TM'); | |
3232 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3233 pl.append(p); | |
3234 | |
3235 % IS TM2 Cross talk between X and phi | |
3236 p = param({'IS_TM2_XPHI','IS TM2 Cross talk between X and phi'}, ... | |
3237 paramValue.DOUBLE_VALUE(0.000598)); | |
3238 p.setProperty('units', 'rad m ^(-1)'); | |
3239 p.setProperty('min', -inf); | |
3240 p.setProperty('max', inf); | |
3241 p.setProperty('ref_frame', 'SS_MF'); | |
3242 p.setProperty('subsystem', 'TM'); | |
3243 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3244 pl.append(p); | |
3245 | |
3246 % IS TM2 Cross talk between Y and X | |
3247 p = param({'IS_TM2_YX','IS TM2 Cross talk between Y and X'}, ... | |
3248 paramValue.DOUBLE_VALUE(0.003)); | |
3249 p.setProperty('units', 'unit'); | |
3250 p.setProperty('min', -inf); | |
3251 p.setProperty('max', inf); | |
3252 p.setProperty('ref_frame', 'SS_MF'); | |
3253 p.setProperty('subsystem', 'TM'); | |
3254 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3255 pl.append(p); | |
3256 | |
3257 % IS TM2 Cross talk between Y and Y | |
3258 p = param({'IS_TM2_YY','IS TM2 Cross talk between Y and Y'}, ... | |
3259 paramValue.DOUBLE_VALUE(1)); | |
3260 p.setProperty('units', 'unit'); | |
3261 p.setProperty('min', -inf); | |
3262 p.setProperty('max', inf); | |
3263 p.setProperty('ref_frame', 'SS_MF'); | |
3264 p.setProperty('subsystem', 'TM'); | |
3265 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3266 pl.append(p); | |
3267 | |
3268 % IS TM2 Cross talk between Y and Z | |
3269 p = param({'IS_TM2_YZ','IS TM2 Cross talk between Y and Z'}, ... | |
3270 paramValue.DOUBLE_VALUE(0.003)); | |
3271 p.setProperty('units', 'unit'); | |
3272 p.setProperty('min', -inf); | |
3273 p.setProperty('max', inf); | |
3274 p.setProperty('ref_frame', 'SS_MF'); | |
3275 p.setProperty('subsystem', 'TM'); | |
3276 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3277 pl.append(p); | |
3278 | |
3279 % IS TM2 Cross talk between Y and theta | |
3280 p = param({'IS_TM2_YTHETA','IS TM2 Cross talk between Y and theta'}, ... | |
3281 paramValue.DOUBLE_VALUE(0.000598)); | |
3282 p.setProperty('units', 'rad m ^(-1)'); | |
3283 p.setProperty('min', -inf); | |
3284 p.setProperty('max', inf); | |
3285 p.setProperty('ref_frame', 'SS_MF'); | |
3286 p.setProperty('subsystem', 'TM'); | |
3287 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3288 pl.append(p); | |
3289 | |
3290 % IS TM2 Cross talk between Y and eta | |
3291 p = param({'IS_TM2_YETA','IS TM2 Cross talk between Y and eta'}, ... | |
3292 paramValue.DOUBLE_VALUE(0.000598)); | |
3293 p.setProperty('units', 'rad m ^(-1)'); | |
3294 p.setProperty('min', -inf); | |
3295 p.setProperty('max', inf); | |
3296 p.setProperty('ref_frame', 'SS_MF'); | |
3297 p.setProperty('subsystem', 'TM'); | |
3298 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3299 pl.append(p); | |
3300 | |
3301 % IS TM2 Cross talk between Y and phi | |
3302 p = param({'IS_TM2_YPHI','IS TM2 Cross talk between Y and phi'}, ... | |
3303 paramValue.DOUBLE_VALUE(0.000598)); | |
3304 p.setProperty('units', 'rad m ^(-1)'); | |
3305 p.setProperty('min', -inf); | |
3306 p.setProperty('max', inf); | |
3307 p.setProperty('ref_frame', 'SS_MF'); | |
3308 p.setProperty('subsystem', 'TM'); | |
3309 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3310 pl.append(p); | |
3311 | |
3312 % IS TM2 Cross talk between Z and X | |
3313 p = param({'IS_TM2_ZX','IS TM2 Cross talk between Z and X'}, ... | |
3314 paramValue.DOUBLE_VALUE(0.003)); | |
3315 p.setProperty('units', 'unit'); | |
3316 p.setProperty('min', -inf); | |
3317 p.setProperty('max', inf); | |
3318 p.setProperty('ref_frame', 'SS_MF'); | |
3319 p.setProperty('subsystem', 'TM'); | |
3320 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3321 pl.append(p); | |
3322 | |
3323 % IS TM2 Cross talk between Z and Y | |
3324 p = param({'IS_TM2_ZY','IS TM2 Cross talk between Z and Y'}, ... | |
3325 paramValue.DOUBLE_VALUE(0.003)); | |
3326 p.setProperty('units', 'unit'); | |
3327 p.setProperty('min', -inf); | |
3328 p.setProperty('max', inf); | |
3329 p.setProperty('ref_frame', 'SS_MF'); | |
3330 p.setProperty('subsystem', 'TM'); | |
3331 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3332 pl.append(p); | |
3333 | |
3334 % IS TM2 Cross talk between Z and Z | |
3335 p = param({'IS_TM2_ZZ','IS TM2 Cross talk between Z and Z'}, ... | |
3336 paramValue.DOUBLE_VALUE(1)); | |
3337 p.setProperty('units', 'unit'); | |
3338 p.setProperty('min', -inf); | |
3339 p.setProperty('max', inf); | |
3340 p.setProperty('ref_frame', 'SS_MF'); | |
3341 p.setProperty('subsystem', 'TM'); | |
3342 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3343 pl.append(p); | |
3344 | |
3345 % IS TM2 Cross talk between Z and theta | |
3346 p = param({'IS_TM2_ZTHETA','IS TM2 Cross talk between Z and theta'}, ... | |
3347 paramValue.DOUBLE_VALUE(0.000598)); | |
3348 p.setProperty('units', 'rad m ^(-1)'); | |
3349 p.setProperty('min', -inf); | |
3350 p.setProperty('max', inf); | |
3351 p.setProperty('ref_frame', 'SS_MF'); | |
3352 p.setProperty('subsystem', 'TM'); | |
3353 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3354 pl.append(p); | |
3355 | |
3356 % IS TM2 Cross talk between Z and eta | |
3357 p = param({'IS_TM2_ZETA','IS TM2 Cross talk between Z and eta'}, ... | |
3358 paramValue.DOUBLE_VALUE(0.000598)); | |
3359 p.setProperty('units', 'rad m ^(-1)'); | |
3360 p.setProperty('min', -inf); | |
3361 p.setProperty('max', inf); | |
3362 p.setProperty('ref_frame', 'SS_MF'); | |
3363 p.setProperty('subsystem', 'TM'); | |
3364 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3365 pl.append(p); | |
3366 | |
3367 % IS TM2 Cross talk between Z and phi | |
3368 p = param({'IS_TM2_ZPHI','IS TM2 Cross talk between Z and phi'}, ... | |
3369 paramValue.DOUBLE_VALUE(0.000598)); | |
3370 p.setProperty('units', 'rad m ^(-1)'); | |
3371 p.setProperty('min', -inf); | |
3372 p.setProperty('max', inf); | |
3373 p.setProperty('ref_frame', 'SS_MF'); | |
3374 p.setProperty('subsystem', 'TM'); | |
3375 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3376 pl.append(p); | |
3377 | |
3378 % IS TM2 Cross talk between theta and X | |
3379 p = param({'IS_TM2_THETAX','IS TM2 Cross talk between theta and X'}, ... | |
3380 paramValue.DOUBLE_VALUE(0.086957)); | |
3381 p.setProperty('units', 'rad^(-1) m'); | |
3382 p.setProperty('min', -inf); | |
3383 p.setProperty('max', inf); | |
3384 p.setProperty('ref_frame', 'SS_MF'); | |
3385 p.setProperty('subsystem', 'TM'); | |
3386 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3387 pl.append(p); | |
3388 | |
3389 % IS TM2 Cross talk between theta and Y | |
3390 p = param({'IS_TM2_THETAY','IS TM2 Cross talk between theta and Y'}, ... | |
3391 paramValue.DOUBLE_VALUE(0.086957)); | |
3392 p.setProperty('units', 'rad^(-1) m'); | |
3393 p.setProperty('min', -inf); | |
3394 p.setProperty('max', inf); | |
3395 p.setProperty('ref_frame', 'SS_MF'); | |
3396 p.setProperty('subsystem', 'TM'); | |
3397 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3398 pl.append(p); | |
3399 | |
3400 % IS TM2 Cross talk between theta and Z | |
3401 p = param({'IS_TM2_THETAZ','IS TM2 Cross talk between theta and Z'}, ... | |
3402 paramValue.DOUBLE_VALUE(0.086957)); | |
3403 p.setProperty('units', 'rad^(-1) m'); | |
3404 p.setProperty('min', -inf); | |
3405 p.setProperty('max', inf); | |
3406 p.setProperty('ref_frame', 'SS_MF'); | |
3407 p.setProperty('subsystem', 'TM'); | |
3408 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3409 pl.append(p); | |
3410 | |
3411 % IS TM2 Cross talk between theta and theta | |
3412 p = param({'IS_TM2_THETATHETA','IS TM2 Cross talk between theta and theta'}, ... | |
3413 paramValue.DOUBLE_VALUE(1)); | |
3414 p.setProperty('units', 'unit'); | |
3415 p.setProperty('min', -inf); | |
3416 p.setProperty('max', inf); | |
3417 p.setProperty('ref_frame', 'SS_MF'); | |
3418 p.setProperty('subsystem', 'TM'); | |
3419 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3420 pl.append(p); | |
3421 | |
3422 % IS TM2 Cross talk between theta and eta | |
3423 p = param({'IS_TM2_THETAETA','IS TM2 Cross talk between theta and eta'}, ... | |
3424 paramValue.DOUBLE_VALUE(0.001)); | |
3425 p.setProperty('units', 'unit'); | |
3426 p.setProperty('min', -inf); | |
3427 p.setProperty('max', inf); | |
3428 p.setProperty('ref_frame', 'SS_MF'); | |
3429 p.setProperty('subsystem', 'TM'); | |
3430 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3431 pl.append(p); | |
3432 | |
3433 % IS TM2 Cross talk between theta and phi | |
3434 p = param({'IS_TM2_THETAPHI','IS TM2 Cross talk between theta and phi'}, ... | |
3435 paramValue.DOUBLE_VALUE(0.001)); | |
3436 p.setProperty('units', 'unit'); | |
3437 p.setProperty('min', -inf); | |
3438 p.setProperty('max', inf); | |
3439 p.setProperty('ref_frame', 'SS_MF'); | |
3440 p.setProperty('subsystem', 'TM'); | |
3441 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3442 pl.append(p); | |
3443 | |
3444 % IS TM2 Cross talk between eta and X | |
3445 p = param({'IS_TM2_ETAX','IS TM2 Cross talk between eta and X'}, ... | |
3446 paramValue.DOUBLE_VALUE(0.086957)); | |
3447 p.setProperty('units', 'rad^(-1) m'); | |
3448 p.setProperty('min', -inf); | |
3449 p.setProperty('max', inf); | |
3450 p.setProperty('ref_frame', 'SS_MF'); | |
3451 p.setProperty('subsystem', 'TM'); | |
3452 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3453 pl.append(p); | |
3454 | |
3455 % IS TM2 Cross talk between eta and Y | |
3456 p = param({'IS_TM2_ETAY','IS TM2 Cross talk between eta and Y'}, ... | |
3457 paramValue.DOUBLE_VALUE(0.086957)); | |
3458 p.setProperty('units', 'rad^(-1) m'); | |
3459 p.setProperty('min', -inf); | |
3460 p.setProperty('max', inf); | |
3461 p.setProperty('ref_frame', 'SS_MF'); | |
3462 p.setProperty('subsystem', 'TM'); | |
3463 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3464 pl.append(p); | |
3465 | |
3466 % IS TM2 Cross talk between eta and Z | |
3467 p = param({'IS_TM2_ETAZ','IS TM2 Cross talk between eta and Z'}, ... | |
3468 paramValue.DOUBLE_VALUE(0.086957)); | |
3469 p.setProperty('units', 'rad^(-1) m'); | |
3470 p.setProperty('min', -inf); | |
3471 p.setProperty('max', inf); | |
3472 p.setProperty('ref_frame', 'SS_MF'); | |
3473 p.setProperty('subsystem', 'TM'); | |
3474 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3475 pl.append(p); | |
3476 | |
3477 % IS TM2 Cross talk between eta and theta | |
3478 p = param({'IS_TM2_ETATHETA','IS TM2 Cross talk between eta and theta'}, ... | |
3479 paramValue.DOUBLE_VALUE(0.001)); | |
3480 p.setProperty('units', 'unit'); | |
3481 p.setProperty('min', -inf); | |
3482 p.setProperty('max', inf); | |
3483 p.setProperty('ref_frame', 'SS_MF'); | |
3484 p.setProperty('subsystem', 'TM'); | |
3485 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3486 pl.append(p); | |
3487 | |
3488 % IS TM2 Cross talk between eta and eta | |
3489 p = param({'IS_TM2_ETAETA','IS TM2 Cross talk between eta and eta'}, ... | |
3490 paramValue.DOUBLE_VALUE(1)); | |
3491 p.setProperty('units', 'unit'); | |
3492 p.setProperty('min', -inf); | |
3493 p.setProperty('max', inf); | |
3494 p.setProperty('ref_frame', 'SS_MF'); | |
3495 p.setProperty('subsystem', 'TM'); | |
3496 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3497 pl.append(p); | |
3498 | |
3499 % IS TM2 Cross talk between ETA and phi | |
3500 p = param({'IS_TM2_ETAPHI','IS TM2 Cross talk between eta and phi'}, ... | |
3501 paramValue.DOUBLE_VALUE(0.001)); | |
3502 p.setProperty('units', 'unit'); | |
3503 p.setProperty('min', -inf); | |
3504 p.setProperty('max', inf); | |
3505 p.setProperty('ref_frame', 'SS_MF'); | |
3506 p.setProperty('subsystem', 'TM'); | |
3507 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3508 pl.append(p); | |
3509 | |
3510 % IS TM2 Cross talk between phi and X | |
3511 p = param({'IS_TM2_PHIX','IS TM2 Cross talk between phi and X'}, ... | |
3512 paramValue.DOUBLE_VALUE(0.086957)); | |
3513 p.setProperty('units', 'rad^(-1) m'); | |
3514 p.setProperty('min', -inf); | |
3515 p.setProperty('max', inf); | |
3516 p.setProperty('ref_frame', 'SS_MF'); | |
3517 p.setProperty('subsystem', 'TM'); | |
3518 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3519 pl.append(p); | |
3520 | |
3521 % IS TM2 Cross talk between phi and Y | |
3522 p = param({'IS_TM2_PHIY','IS TM2 Cross talk between phi and Y'}, ... | |
3523 paramValue.DOUBLE_VALUE(0.086957)); | |
3524 p.setProperty('units', 'rad^(-1) m'); | |
3525 p.setProperty('min', -inf); | |
3526 p.setProperty('max', inf); | |
3527 p.setProperty('ref_frame', 'SS_MF'); | |
3528 p.setProperty('subsystem', 'TM'); | |
3529 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3530 pl.append(p); | |
3531 | |
3532 % IS TM2 Cross talk between phi and Z | |
3533 p = param({'IS_TM2_PHIZ','IS TM2 Cross talk between phi and Z'}, ... | |
3534 paramValue.DOUBLE_VALUE(0.086957)); | |
3535 p.setProperty('units', 'rad^(-1) m'); | |
3536 p.setProperty('min', -inf); | |
3537 p.setProperty('max', inf); | |
3538 p.setProperty('ref_frame', 'SS_MF'); | |
3539 p.setProperty('subsystem', 'TM'); | |
3540 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3541 pl.append(p); | |
3542 | |
3543 % IS TM2 Cross talk between phi and theta | |
3544 p = param({'IS_TM2_PHITHETA','IS TM2 Cross talk between phi and theta'}, ... | |
3545 paramValue.DOUBLE_VALUE(0.001)); | |
3546 p.setProperty('units', 'unit'); | |
3547 p.setProperty('min', -inf); | |
3548 p.setProperty('max', inf); | |
3549 p.setProperty('ref_frame', 'SS_MF'); | |
3550 p.setProperty('subsystem', 'TM'); | |
3551 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3552 pl.append(p); | |
3553 | |
3554 % IS TM2 Cross talk between phi and eta | |
3555 p = param({'IS_TM2_PHIETA','IS TM2 Cross talk between phi and eta'}, ... | |
3556 paramValue.DOUBLE_VALUE(0.001)); | |
3557 p.setProperty('units', 'unit'); | |
3558 p.setProperty('min', -inf); | |
3559 p.setProperty('max', inf); | |
3560 p.setProperty('ref_frame', 'SS_MF'); | |
3561 p.setProperty('subsystem', 'TM'); | |
3562 p.setProperty('reference', 'S2-ASD-ICD-2011_Iss14 DFACS External ICD'); | |
3563 pl.append(p); | |
3564 | |
3565 % IS TM2 Cross talk between phi and phi | |
3566 p = param({'IS_TM2_PHIPHI','IS TM2 Cross talk between phi and phi'}, ... | |
3567 paramValue.DOUBLE_VALUE(1)); | |
3568 p.setProperty('units', 'unit'); | |
3569 p.setProperty('min', -inf); | |
3570 p.setProperty('max', inf); | |
3571 p.setProperty('ref_frame', 'SS_MF'); | |
3572 p.setProperty('subsystem', 'TM'); | |
3573 p.setProperty('reference', 'TBD'); | |
3574 pl.append(p); | |
3575 | |
3576 end | |
3577 plOut = pl; | |
3578 | |
3579 end | |
3580 function pl = IFO_properties() | |
3581 | |
3582 pl = plist(); | |
3583 | |
3584 % IFO Cross talk between X1 and X1 | |
3585 p = param({'IFO_X1X1','IFO Cross talk between X1 and X1'}, ... | |
3586 paramValue.DOUBLE_VALUE(0)); | |
3587 p.setProperty('units', 'unit'); | |
3588 p.setProperty('min', -inf); | |
3589 p.setProperty('max', inf); | |
3590 p.setProperty('ref_frame', 'SS_MF'); | |
3591 p.setProperty('subsystem', 'IFO'); | |
3592 p.setProperty('reference', 'TBD'); | |
3593 pl.append(p); | |
3594 | |
3595 % IFO Cross talk between X1 and eta1 | |
3596 p = param({'IFO_X1ETA1','IFO Cross talk between X1 and eta1'}, ... | |
3597 paramValue.DOUBLE_VALUE(0)); | |
3598 p.setProperty('units', 'rad m ^(-1)'); | |
3599 p.setProperty('min', -inf); | |
3600 p.setProperty('max', inf); | |
3601 p.setProperty('ref_frame', 'SS_MF'); | |
3602 p.setProperty('subsystem', 'IFO'); | |
3603 p.setProperty('reference', 'TBD'); | |
3604 pl.append(p); | |
3605 | |
3606 % IFO Cross talk between X1 and phi1 | |
3607 p = param({'IFO_X1PHI1','IFO Cross talk between X1 and phi1'}, ... | |
3608 paramValue.DOUBLE_VALUE(0)); | |
3609 p.setProperty('units', 'rad m ^(-1)'); | |
3610 p.setProperty('min', -inf); | |
3611 p.setProperty('max', inf); | |
3612 p.setProperty('ref_frame', 'SS_MF'); | |
3613 p.setProperty('subsystem', 'IFO'); | |
3614 p.setProperty('reference', 'TBD'); | |
3615 pl.append(p); | |
3616 | |
3617 % IFO Cross talk between X1 and X12 | |
3618 p = param({'IFO_X1X12','IFO Cross talk between X1 and X12'}, ... | |
3619 paramValue.DOUBLE_VALUE(0)); | |
3620 p.setProperty('units', 'unit'); | |
3621 p.setProperty('min', -inf); | |
3622 p.setProperty('max', inf); | |
3623 p.setProperty('ref_frame', 'SS_MF'); | |
3624 p.setProperty('subsystem', 'IFO'); | |
3625 p.setProperty('reference', 'TBD'); | |
3626 pl.append(p); | |
3627 | |
3628 % IFO Cross talk between X1 and eta12 | |
3629 p = param({'IFO_X1ETA12','IFO Cross talk between X1 and eta12'}, ... | |
3630 paramValue.DOUBLE_VALUE(0)); | |
3631 p.setProperty('units', 'rad m ^(-1)'); | |
3632 p.setProperty('min', -inf); | |
3633 p.setProperty('max', inf); | |
3634 p.setProperty('ref_frame', 'SS_MF'); | |
3635 p.setProperty('subsystem', 'IFO'); | |
3636 p.setProperty('reference', 'TBD'); | |
3637 pl.append(p); | |
3638 | |
3639 % IFO Cross talk between eta1 and phi12 | |
3640 p = param({'IFO_X1PHI12','IFO Cross talk between eta1 and phi12'}, ... | |
3641 paramValue.DOUBLE_VALUE(0)); | |
3642 p.setProperty('units', 'unit'); | |
3643 p.setProperty('min', -inf); | |
3644 p.setProperty('max', inf); | |
3645 p.setProperty('ref_frame', 'SS_MF'); | |
3646 p.setProperty('subsystem', 'IFO'); | |
3647 p.setProperty('reference', 'TBD'); | |
3648 pl.append(p); | |
3649 | |
3650 % IFO Cross talk between eta1 and X1 | |
3651 p = param({'IFO_ETA1X1','IFO Cross talk between eta1 and X1'}, ... | |
3652 paramValue.DOUBLE_VALUE(0)); | |
3653 p.setProperty('units', 'rad^(-1) m'); | |
3654 p.setProperty('min', -inf); | |
3655 p.setProperty('max', inf); | |
3656 p.setProperty('ref_frame', 'SS_MF'); | |
3657 p.setProperty('subsystem', 'IFO'); | |
3658 p.setProperty('reference', 'TBD'); | |
3659 pl.append(p); | |
3660 | |
3661 % IFO Cross talk between eta1 and eta1 | |
3662 p = param({'IFO_ETA1ETA1','IFO Cross talk between eta1 and eta1'}, ... | |
3663 paramValue.DOUBLE_VALUE(0)); | |
3664 p.setProperty('units', 'unit'); | |
3665 p.setProperty('min', -inf); | |
3666 p.setProperty('max', inf); | |
3667 p.setProperty('ref_frame', 'SS_MF'); | |
3668 p.setProperty('subsystem', 'IFO'); | |
3669 p.setProperty('reference', 'TBD'); | |
3670 pl.append(p); | |
3671 | |
3672 % IFO Cross talk between eta1 and phi1 | |
3673 p = param({'IFO_ETA1PHI1','IFO Cross talk between eta1 and phi1'}, ... | |
3674 paramValue.DOUBLE_VALUE(0)); | |
3675 p.setProperty('units', 'unit'); | |
3676 p.setProperty('min', -inf); | |
3677 p.setProperty('max', inf); | |
3678 p.setProperty('ref_frame', 'SS_MF'); | |
3679 p.setProperty('subsystem', 'IFO'); | |
3680 p.setProperty('reference', 'TBD'); | |
3681 pl.append(p); | |
3682 | |
3683 % IFO Cross talk between eta1 and X12 | |
3684 p = param({'IFO_ETA1X12','IFO Cross talk between eta1 and X12'}, ... | |
3685 paramValue.DOUBLE_VALUE(0)); | |
3686 p.setProperty('units', 'rad^(-1) m'); | |
3687 p.setProperty('min', -inf); | |
3688 p.setProperty('max', inf); | |
3689 p.setProperty('ref_frame', 'SS_MF'); | |
3690 p.setProperty('subsystem', 'IFO'); | |
3691 p.setProperty('reference', 'TBD'); | |
3692 pl.append(p); | |
3693 | |
3694 % IFO Cross talk between eta1 and eta12 | |
3695 p = param({'IFO_ETA1ETA12','IFO Cross talk between eta1 and eta12'}, ... | |
3696 paramValue.DOUBLE_VALUE(0)); | |
3697 p.setProperty('units', 'unit'); | |
3698 p.setProperty('min', -inf); | |
3699 p.setProperty('max', inf); | |
3700 p.setProperty('ref_frame', 'SS_MF'); | |
3701 p.setProperty('subsystem', 'IFO'); | |
3702 p.setProperty('reference', 'TBD'); | |
3703 pl.append(p); | |
3704 | |
3705 % IFO Cross talk between eta1 and phi12 | |
3706 p = param({'IFO_ETA1PHI12','IFO Cross talk between eta1 and phi12'}, ... | |
3707 paramValue.DOUBLE_VALUE(0)); | |
3708 p.setProperty('units', 'unit'); | |
3709 p.setProperty('min', -inf); | |
3710 p.setProperty('max', inf); | |
3711 p.setProperty('ref_frame', 'SS_MF'); | |
3712 p.setProperty('subsystem', 'IFO'); | |
3713 p.setProperty('reference', 'TBD'); | |
3714 pl.append(p); | |
3715 | |
3716 % IFO Cross talk between phi1 and X1 | |
3717 p = param({'IFO_PHI1X1','IFO Cross talk between phi1 and X1'}, ... | |
3718 paramValue.DOUBLE_VALUE(0)); | |
3719 p.setProperty('units', 'rad^(-1) m'); | |
3720 p.setProperty('min', -inf); | |
3721 p.setProperty('max', inf); | |
3722 p.setProperty('ref_frame', 'SS_MF'); | |
3723 p.setProperty('subsystem', 'IFO'); | |
3724 p.setProperty('reference', 'TBD'); | |
3725 pl.append(p); | |
3726 | |
3727 % IFO Cross talk between phi1 and eta1 | |
3728 p = param({'IFO_PHI1ETA1','IFO Cross talk between phi1 and eta1'}, ... | |
3729 paramValue.DOUBLE_VALUE(0)); | |
3730 p.setProperty('units', 'unit'); | |
3731 p.setProperty('min', -inf); | |
3732 p.setProperty('max', inf); | |
3733 p.setProperty('ref_frame', 'SS_MF'); | |
3734 p.setProperty('subsystem', 'IFO'); | |
3735 p.setProperty('reference', 'TBD'); | |
3736 pl.append(p); | |
3737 | |
3738 % IFO Cross talk between phi1 and phi1 | |
3739 p = param({'IFO_PHI1PHI1','IFO Cross talk between phi1 and phi1'}, ... | |
3740 paramValue.DOUBLE_VALUE(0)); | |
3741 p.setProperty('units', 'unit'); | |
3742 p.setProperty('min', -inf); | |
3743 p.setProperty('max', inf); | |
3744 p.setProperty('ref_frame', 'SS_MF'); | |
3745 p.setProperty('subsystem', 'IFO'); | |
3746 p.setProperty('reference', 'TBD'); | |
3747 pl.append(p); | |
3748 | |
3749 % IFO Cross talk between phi1 and X12 | |
3750 p = param({'IFO_PHI1X12','IFO Cross talk between phi1 and X12'}, ... | |
3751 paramValue.DOUBLE_VALUE(0)); | |
3752 p.setProperty('units', 'rad^(-1) m'); | |
3753 p.setProperty('min', -inf); | |
3754 p.setProperty('max', inf); | |
3755 p.setProperty('ref_frame', 'SS_MF'); | |
3756 p.setProperty('subsystem', 'IFO'); | |
3757 p.setProperty('reference', 'TBD'); | |
3758 pl.append(p); | |
3759 | |
3760 % IFO Cross talk between phi1 and eta12 | |
3761 p = param({'IFO_PHI1ETA12','IFO Cross talk between phi1 and eta12'}, ... | |
3762 paramValue.DOUBLE_VALUE(0)); | |
3763 p.setProperty('units', 'unit'); | |
3764 p.setProperty('min', -inf); | |
3765 p.setProperty('max', inf); | |
3766 p.setProperty('ref_frame', 'SS_MF'); | |
3767 p.setProperty('subsystem', 'IFO'); | |
3768 p.setProperty('reference', 'TBD'); | |
3769 pl.append(p); | |
3770 | |
3771 % IFO Cross talk between phi1 and phi12 | |
3772 p = param({'IFO_PHI1PHI12','IFO Cross talk between phi1 and phi12'}, ... | |
3773 paramValue.DOUBLE_VALUE(0)); | |
3774 p.setProperty('units', 'unit'); | |
3775 p.setProperty('min', -inf); | |
3776 p.setProperty('max', inf); | |
3777 p.setProperty('ref_frame', 'SS_MF'); | |
3778 p.setProperty('subsystem', 'IFO'); | |
3779 p.setProperty('reference', 'TBD'); | |
3780 pl.append(p); | |
3781 | |
3782 % IFO Cross talk between X12 and X1 | |
3783 p = param({'IFO_X12X1','IFO Cross talk between X12 and X1'}, ... | |
3784 paramValue.DOUBLE_VALUE(0.0001)); | |
3785 p.setProperty('units', 'unit'); | |
3786 p.setProperty('min', -inf); | |
3787 p.setProperty('max', inf); | |
3788 p.setProperty('ref_frame', 'SS_MF'); | |
3789 p.setProperty('subsystem', 'IFO'); | |
3790 p.setProperty('reference', 'TBD'); | |
3791 pl.append(p); | |
3792 | |
3793 % IFO Cross talk between X12 and eta1 | |
3794 p = param({'IFO_X12ETA1','IFO Cross talk between X12 and eta1'}, ... | |
3795 paramValue.DOUBLE_VALUE(0)); | |
3796 p.setProperty('units', 'rad m ^(-1)'); | |
3797 p.setProperty('min', -inf); | |
3798 p.setProperty('max', inf); | |
3799 p.setProperty('ref_frame', 'SS_MF'); | |
3800 p.setProperty('subsystem', 'IFO'); | |
3801 p.setProperty('reference', 'TBD'); | |
3802 pl.append(p); | |
3803 | |
3804 % IFO Cross talk between X12 and phi1 | |
3805 p = param({'IFO_X12PHI1','IFO Cross talk between X12 and phi1'}, ... | |
3806 paramValue.DOUBLE_VALUE(0)); | |
3807 p.setProperty('units', 'rad m ^(-1)'); | |
3808 p.setProperty('min', -inf); | |
3809 p.setProperty('max', inf); | |
3810 p.setProperty('ref_frame', 'SS_MF'); | |
3811 p.setProperty('subsystem', 'IFO'); | |
3812 p.setProperty('reference', 'TBD'); | |
3813 pl.append(p); | |
3814 | |
3815 % IFO Cross talk between X12 and X12 | |
3816 p = param({'IFO_X12X12','IFO Cross talk between X12 and X12'}, ... | |
3817 paramValue.DOUBLE_VALUE(0)); | |
3818 p.setProperty('units', 'unit'); | |
3819 p.setProperty('min', -inf); | |
3820 p.setProperty('max', inf); | |
3821 p.setProperty('ref_frame', 'SS_MF'); | |
3822 p.setProperty('subsystem', 'IFO'); | |
3823 p.setProperty('reference', 'TBD'); | |
3824 pl.append(p); | |
3825 | |
3826 % IFO Cross talk between X12 and eta12 | |
3827 p = param({'IFO_X12ETA12','IFO Cross talk between X12 and eta12'}, ... | |
3828 paramValue.DOUBLE_VALUE(0)); | |
3829 p.setProperty('units', 'rad m ^(-1)'); | |
3830 p.setProperty('min', -inf); | |
3831 p.setProperty('max', inf); | |
3832 p.setProperty('ref_frame', 'SS_MF'); | |
3833 p.setProperty('subsystem', 'IFO'); | |
3834 p.setProperty('reference', 'TBD'); | |
3835 pl.append(p); | |
3836 | |
3837 % IFO Cross talk between X12 and phi12 | |
3838 p = param({'IFO_X12PHI12','IFO Cross talk between X12 and phi12'}, ... | |
3839 paramValue.DOUBLE_VALUE(0)); | |
3840 p.setProperty('units', 'rad m ^(-1)'); | |
3841 p.setProperty('min', -inf); | |
3842 p.setProperty('max', inf); | |
3843 p.setProperty('ref_frame', 'SS_MF'); | |
3844 p.setProperty('subsystem', 'IFO'); | |
3845 p.setProperty('reference', 'TBD'); | |
3846 pl.append(p); | |
3847 | |
3848 % IFO Cross talk between eta12 and X1 | |
3849 p = param({'IFO_ETA12X1','IFO Cross talk between eta12 and X1'}, ... | |
3850 paramValue.DOUBLE_VALUE(0)); | |
3851 p.setProperty('units', 'rad^(-1) m'); | |
3852 p.setProperty('min', -inf); | |
3853 p.setProperty('max', inf); | |
3854 p.setProperty('ref_frame', 'SS_MF'); | |
3855 p.setProperty('subsystem', 'IFO'); | |
3856 p.setProperty('reference', 'TBD'); | |
3857 pl.append(p); | |
3858 | |
3859 % IFO Cross talk between eta12 and eta1 | |
3860 p = param({'IFO_ETA12ETA1','IFO Cross talk between eta12 and eta1'}, ... | |
3861 paramValue.DOUBLE_VALUE(0)); | |
3862 p.setProperty('units', 'unit'); | |
3863 p.setProperty('min', -inf); | |
3864 p.setProperty('max', inf); | |
3865 p.setProperty('ref_frame', 'SS_MF'); | |
3866 p.setProperty('subsystem', 'IFO'); | |
3867 p.setProperty('reference', 'TBD'); | |
3868 pl.append(p); | |
3869 | |
3870 % IFO Cross talk between eta12 and phi1 | |
3871 p = param({'IFO_ETA12PHI1','IFO Cross talk between eta12 and phi1'}, ... | |
3872 paramValue.DOUBLE_VALUE(0)); | |
3873 p.setProperty('units', 'unit'); | |
3874 p.setProperty('min', -inf); | |
3875 p.setProperty('max', inf); | |
3876 p.setProperty('ref_frame', 'SS_MF'); | |
3877 p.setProperty('subsystem', 'IFO'); | |
3878 p.setProperty('reference', 'TBD'); | |
3879 pl.append(p); | |
3880 | |
3881 % IFO Cross talk between eta12 and X12 | |
3882 p = param({'IFO_ETA12X12','IFO Cross talk between eta12 and X12'}, ... | |
3883 paramValue.DOUBLE_VALUE(0)); | |
3884 p.setProperty('units', 'rad^(-1) m'); | |
3885 p.setProperty('min', -inf); | |
3886 p.setProperty('max', inf); | |
3887 p.setProperty('ref_frame', 'SS_MF'); | |
3888 p.setProperty('subsystem', 'IFO'); | |
3889 p.setProperty('reference', 'TBD'); | |
3890 pl.append(p); | |
3891 | |
3892 % IFO Cross talk between eta12 and eta12 | |
3893 p = param({'IFO_ETA12ETA12','IFO Cross talk between eta12 and eta12'}, ... | |
3894 paramValue.DOUBLE_VALUE(0)); | |
3895 p.setProperty('units', 'unit'); | |
3896 p.setProperty('min', -inf); | |
3897 p.setProperty('max', inf); | |
3898 p.setProperty('ref_frame', 'SS_MF'); | |
3899 p.setProperty('subsystem', 'IFO'); | |
3900 p.setProperty('reference', 'TBD'); | |
3901 pl.append(p); | |
3902 | |
3903 % IFO Cross talk between eta12 and phi12 | |
3904 p = param({'IFO_ETA12PHI12','IFO Cross talk between eta12 and phi12'}, ... | |
3905 paramValue.DOUBLE_VALUE(0)); | |
3906 p.setProperty('units', 'unit'); | |
3907 p.setProperty('min', -inf); | |
3908 p.setProperty('max', inf); | |
3909 p.setProperty('ref_frame', 'SS_MF'); | |
3910 p.setProperty('subsystem', 'IFO'); | |
3911 p.setProperty('reference', 'TBD'); | |
3912 pl.append(p); | |
3913 | |
3914 % IFO Cross talk between phi1 and X1 | |
3915 p = param({'IFO_PHI12X1','IFO Cross talk between phi1 and X1'}, ... | |
3916 paramValue.DOUBLE_VALUE(0)); | |
3917 p.setProperty('units', 'rad^(-1) m'); | |
3918 p.setProperty('min', -inf); | |
3919 p.setProperty('max', inf); | |
3920 p.setProperty('ref_frame', 'SS_MF'); | |
3921 p.setProperty('subsystem', 'IFO'); | |
3922 p.setProperty('reference', 'TBD'); | |
3923 pl.append(p); | |
3924 | |
3925 % IFO Cross talk between phi1 and eta1 | |
3926 p = param({'IFO_PHI12ETA1','IFO Cross talk between phi1 and eta1'}, ... | |
3927 paramValue.DOUBLE_VALUE(0)); | |
3928 p.setProperty('units', 'unit'); | |
3929 p.setProperty('min', -inf); | |
3930 p.setProperty('max', inf); | |
3931 p.setProperty('ref_frame', 'SS_MF'); | |
3932 p.setProperty('subsystem', 'IFO'); | |
3933 p.setProperty('reference', 'TBD'); | |
3934 pl.append(p); | |
3935 | |
3936 % IFO Cross talk between phi1 and phi1 | |
3937 p = param({'IFO_PHI12PHI1','IFO Cross talk between phi1 and phi1'}, ... | |
3938 paramValue.DOUBLE_VALUE(0)); | |
3939 p.setProperty('units', 'unit'); | |
3940 p.setProperty('min', -inf); | |
3941 p.setProperty('max', inf); | |
3942 p.setProperty('ref_frame', 'SS_MF'); | |
3943 p.setProperty('subsystem', 'IFO'); | |
3944 p.setProperty('reference', 'TBD'); | |
3945 pl.append(p); | |
3946 | |
3947 % IFO Cross talk between phi1 and X12 | |
3948 p = param({'IFO_PHI12X12','IFO Cross talk between phi1 and X12'}, ... | |
3949 paramValue.DOUBLE_VALUE(0)); | |
3950 p.setProperty('units', 'rad^(-1) m'); | |
3951 p.setProperty('min', -inf); | |
3952 p.setProperty('max', inf); | |
3953 p.setProperty('ref_frame', 'SS_MF'); | |
3954 p.setProperty('subsystem', 'IFO'); | |
3955 p.setProperty('reference', 'TBD'); | |
3956 pl.append(p); | |
3957 | |
3958 % IFO Cross talk between phi1 and eta12 | |
3959 p = param({'IFO_PHI12ETA12','IFO Cross talk between phi1 and eta12'}, ... | |
3960 paramValue.DOUBLE_VALUE(0)); | |
3961 p.setProperty('units', 'unit'); | |
3962 p.setProperty('min', -inf); | |
3963 p.setProperty('max', inf); | |
3964 p.setProperty('ref_frame', 'SS_MF'); | |
3965 p.setProperty('subsystem', 'IFO'); | |
3966 p.setProperty('reference', 'TBD'); | |
3967 pl.append(p); | |
3968 | |
3969 % IFO Cross talk between phi1 and phi12 | |
3970 p = param({'IFO_PHI12PHI12','IFO Cross talk between phi1 and phi12'}, ... | |
3971 paramValue.DOUBLE_VALUE(0)); | |
3972 p.setProperty('units', 'unit'); | |
3973 p.setProperty('min', -inf); | |
3974 p.setProperty('max', inf); | |
3975 p.setProperty('ref_frame', 'SS_MF'); | |
3976 p.setProperty('subsystem', 'IFO'); | |
3977 p.setProperty('reference', 'TBD'); | |
3978 pl.append(p); | |
3979 | |
3980 end | |
3981 |