nass-simscape/identification/id_main.m
Thomas Dehaeze f0e83d7c39 Huge Change
- Add may folders
- Add IFF and HAC-LAC scripts
2018-10-07 22:07:21 +02:00

33 lines
751 B
Matlab

%%
clear; close all; clc;
%% Identification of the micro-station
% Compute the transfer functions
run id_micro_station.m
% Plot de obtained transfer functions
run id_micro_station_plots.m
% Compare the measurements of Marc with the model
run id_micro_station_comp_meas.m
%% Identification of the nano-station
% Run the identification
run id_nano_station.m
% Plot the plant for feedback control
run id_G_cart_plots.m
% Plot the transfer function from disturbances to displacement
run id_G_d_plots.m
% Plot the transfer function for IFF control
run id_G_iff_plots.m
%% Identification of all the stages
% Compute the transfer functions of each stage from act. to sens.
run id_stages.m
% Plot de obtained transfer functions
run id_stages_plots.m