77 lines
2.3 KiB
Matlab
77 lines
2.3 KiB
Matlab
function [] = initializeMirror(args)
|
|
|
|
arguments
|
|
args.type char {mustBeMember(args.type,{'none', 'rigid', 'flexible'})} = 'rigid'
|
|
args.shape char {mustBeMember(args.shape,{'spherical', 'conical'})} = 'spherical'
|
|
args.angle (1,1) double {mustBeNumeric, mustBePositive} = 45 % [deg]
|
|
args.mass (1,1) double {mustBeNumeric, mustBePositive} = 10 % [kg]
|
|
args.freq (6,1) double {mustBeNumeric, mustBeNonnegative} = 200*ones(6,1) % [Hz]
|
|
end
|
|
|
|
mirror = struct();
|
|
|
|
switch args.type
|
|
case 'none'
|
|
mirror.type = 0;
|
|
case 'rigid'
|
|
mirror.type = 1;
|
|
case 'flexible'
|
|
mirror.type = 2;
|
|
end
|
|
|
|
mirror.mass = args.mass;
|
|
mirror.freq = args.freq;
|
|
|
|
mirror.K = zeros(6,1);
|
|
mirror.K(1:3) = mirror.mass * (2*pi*mirror.freq(1:3)).^2;
|
|
|
|
mirror.C = zeros(6,1);
|
|
mirror.C(1:3) = 0.2 * sqrt(mirror.K(1:3).*mirror.mass);
|
|
|
|
mirror.Deq = zeros(6,1);
|
|
|
|
mirror.h = 0.05; % Height of the mirror [m]
|
|
|
|
mirror.thickness = 0.02; % Thickness of the plate supporting the sample [m]
|
|
|
|
mirror.hole_rad = 0.125; % radius of the hole in the mirror [m]
|
|
|
|
mirror.support_rad = 0.1; % radius of the support plate [m]
|
|
|
|
% point of interest offset in z (above the top surfave) [m]
|
|
switch args.type
|
|
case 'none'
|
|
mirror.jacobian = 0.205;
|
|
case 'rigid'
|
|
mirror.jacobian = 0.205 - mirror.h;
|
|
case 'flexible'
|
|
mirror.jacobian = 0.205 - mirror.h;
|
|
end
|
|
|
|
mirror.rad = 0.180; % radius of the mirror (at the bottom surface) [m]
|
|
|
|
mirror.cone_length = mirror.rad*tand(args.angle)+mirror.h+mirror.jacobian; % Distance from Apex point of the cone to jacobian point
|
|
|
|
mirror.shape = [...
|
|
mirror.support_rad+5e-3 mirror.h-mirror.thickness
|
|
mirror.hole_rad mirror.h-mirror.thickness; ...
|
|
mirror.hole_rad 0; ...
|
|
mirror.rad 0 ...
|
|
];
|
|
|
|
if strcmp(args.shape, 'spherical')
|
|
mirror.sphere_radius = sqrt((mirror.jacobian+mirror.h)^2+mirror.rad^2); % Radius of the sphere [mm]
|
|
|
|
for z = linspace(0, mirror.h, 101)
|
|
mirror.shape = [mirror.shape; sqrt(mirror.sphere_radius^2-(z-mirror.jacobian-mirror.h)^2) z];
|
|
end
|
|
elseif strcmp(args.shape, 'conical')
|
|
mirror.shape = [mirror.shape; mirror.rad+mirror.h/tand(args.angle) mirror.h];
|
|
else
|
|
error('Shape should be either conical or spherical');
|
|
end
|
|
|
|
mirror.shape = [mirror.shape; mirror.support_rad+5e-3 mirror.h];
|
|
|
|
save('./mat/stages.mat', 'mirror', '-append');
|