nass-simscape/init_simulation.m

26 lines
731 B
Mathematica
Raw Normal View History

%% Script that is run just before
% the simulation is started
% Load all the data used for the simulation
load('./mat/sim_conf.mat', 'sim_conf');
2018-06-16 22:57:54 +02:00
%% Load SolidWorks Data
% load('./mat/smiData.mat', 'smiData');
2018-06-16 22:57:54 +02:00
%% Load data of each stage
load('./mat/ground.mat', 'ground');
load('./mat/granite.mat', 'granite');
load('./mat/ty.mat', 'ty');
load('./mat/ry.mat', 'ry');
load('./mat/rz.mat', 'rz');
load('./mat/micro_hexapod.mat', 'micro_hexapod');
load('./mat/axisc.mat', 'axisc');
load('./mat/nano_hexapod.mat', 'nano_hexapod');
load('./mat/mirror.mat', 'mirror');
2018-06-16 22:57:54 +02:00
load('./mat/sample.mat', 'sample');
%% Load Signals Applied to the system
load('./mat/inputs.mat', 'inputs');
%% Load Controller
load('./mat/controller.mat', 'K');