2018-06-04 09:50:44 +02:00
|
|
|
|
%%
|
2018-06-16 22:57:54 +02:00
|
|
|
|
clear; close all; clc;
|
2018-04-11 13:44:50 +02:00
|
|
|
|
|
2018-06-21 11:42:46 +02:00
|
|
|
|
%% Initialize simulation configuration
|
|
|
|
|
opts_sim = struct(...
|
2018-07-03 15:28:29 +02:00
|
|
|
|
'Tsim', 10 ...
|
2018-06-21 11:42:46 +02:00
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
initializeSimConf(opts_sim);
|
|
|
|
|
|
2018-06-16 22:57:54 +02:00
|
|
|
|
%% Initialize Inputs
|
|
|
|
|
opts_inputs = struct(...
|
2018-07-03 15:28:29 +02:00
|
|
|
|
'ground_motion', false, ...
|
2018-07-11 15:44:16 +02:00
|
|
|
|
'rz', false ...
|
2018-06-16 22:57:54 +02:00
|
|
|
|
);
|
2018-06-06 19:16:04 +02:00
|
|
|
|
|
2018-06-16 22:57:54 +02:00
|
|
|
|
initializeInputs(opts_inputs);
|
2018-06-06 19:16:04 +02:00
|
|
|
|
|
2018-06-16 22:57:54 +02:00
|
|
|
|
%% Initialize SolidWorks Data
|
|
|
|
|
initializeSmiData();
|
2018-06-06 18:39:38 +02:00
|
|
|
|
|
2018-06-16 22:57:54 +02:00
|
|
|
|
%% Initialize Ground
|
|
|
|
|
initializeGround();
|
2018-06-06 18:39:38 +02:00
|
|
|
|
|
2018-06-16 22:57:54 +02:00
|
|
|
|
%% Initialize Granite
|
|
|
|
|
initializeGranite();
|
2018-04-24 15:48:17 +02:00
|
|
|
|
|
2018-06-16 22:57:54 +02:00
|
|
|
|
%% Initialize Translation stage
|
|
|
|
|
initializeTy();
|
2018-06-06 18:39:38 +02:00
|
|
|
|
|
2018-06-16 22:57:54 +02:00
|
|
|
|
%% Initialize Tilt Stage
|
|
|
|
|
initializeRy();
|
2018-04-11 13:44:50 +02:00
|
|
|
|
|
2018-06-16 22:57:54 +02:00
|
|
|
|
%% Initialize Spindle
|
|
|
|
|
initializeRz();
|
2018-06-06 18:39:38 +02:00
|
|
|
|
|
2018-06-16 22:57:54 +02:00
|
|
|
|
%% Initialize Hexapod Sym<EFBFBD>trie
|
|
|
|
|
initializeMicroHexapod();
|
2018-04-11 13:44:50 +02:00
|
|
|
|
|
2018-06-16 22:57:54 +02:00
|
|
|
|
%% Initialize Center of Gravity compensation
|
|
|
|
|
initializeAxisc();
|
2018-06-06 18:39:38 +02:00
|
|
|
|
|
2018-06-16 22:57:54 +02:00
|
|
|
|
%% Initialize NASS
|
2018-06-21 11:42:46 +02:00
|
|
|
|
opts_nano_hexapod = struct('actuator', 'lorentz');
|
|
|
|
|
|
|
|
|
|
initializeNanoHexapod(opts_nano_hexapod);
|
2018-06-06 18:39:38 +02:00
|
|
|
|
|
2018-07-11 15:44:16 +02:00
|
|
|
|
%% Initialize the Mirror
|
|
|
|
|
initializeMirror();
|
|
|
|
|
|
2018-06-16 22:57:54 +02:00
|
|
|
|
%% Initialize Sample
|
|
|
|
|
opts_sample = struct('mass', 20);
|
2018-06-06 18:39:38 +02:00
|
|
|
|
|
2018-06-16 22:57:54 +02:00
|
|
|
|
initializeSample(opts_sample);
|