19 lines
403 B
Matlab
19 lines
403 B
Matlab
%%
|
|
s = tf('s');
|
|
Ts = 1e-4; % [s]
|
|
|
|
%% Pre-Filter
|
|
% Glpf = 1/(1 + s/2/pi/2e3);
|
|
Glpf = 1/(1 + s/2/pi/50); % Used to excite with constant velocity
|
|
Gz = c2d(Glpf, Ts, 'tustin');
|
|
|
|
%% IFF Controller
|
|
Kiff = -1/(s + 2*pi*2);
|
|
Kiff = c2d(Kiff, Ts, 'tustin');
|
|
|
|
%% Excitation Signal
|
|
Tsim = 180; % Excitation time + Measurement time [s]
|
|
|
|
t = 0:Ts:Tsim;
|
|
u_exc = timeseries(chirp(t, 0.1, Tsim, 1e3, 'logarithmic'), t);
|