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

29 lines
576 B
Matlab

%%
clear; close all; clc;
%% IFF: Integral Force Feedback Control
% Generate the IFF Control Laws
run iff_control.m
% Identification of the TF of damped system
run iff_identification.m
% Compare undamped and damped system
run iff_comp_tf.m
% Generate Control Laws with the damped system
run iff_fb_control.m
% Plot Loop Gains for the new control laws
run iff_fb_control_plots.m
% Simulation of the damped system
run iff_simulation.m
% Plot results of the simulations
run iff_results.m
%% DVF: Direct Velocity Feedback
% Generate the DVF Control Laws
run dvf_control.m