forked from nicolassmith/OpticklePDE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsweepSetup.m
More file actions
32 lines (24 loc) · 775 Bytes
/
sweepSetup.m
File metadata and controls
32 lines (24 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% This script prepares some variables for the sweep functions
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% create the model
setupPDE
% get the serial numbers of some optics
nBS = getDriveNum(opt, 'BS');
nIX = getDriveNum(opt, 'IX');
nIY = getDriveNum(opt, 'IY');
nEX = getDriveNum(opt, 'EX');
nEY = getDriveNum(opt, 'EY');
% serial #'s for laser noises
nAM = getDriveNum(opt,'AM');
nPM = getDriveNum(opt,'PM');
% probe names and numbers
% get some probe indexes
%RF
nREFL_I = getProbeNum(opt,'REFL_I');
nREFL_Q = getProbeNum(opt,'REFL_Q');
nAS_I = getProbeNum(opt,'AS_I');
nAS_Q = getProbeNum(opt,'AS_Q');
%DC
nASDC = getProbeNum(opt,'ASDC');
nREFLDC = getProbeNum(opt,'REFLDC');