📄 imcinit.m
字号:
% ------------------------------> IMCINIT.M <------------------------------
% ---------- Switches -----------
regty ='imc'; % Controller type (imc, pid, none)
refty ='siggener'; % Reference signal (siggener/<var. name>)
simul ='simulink'; % Control object spec. (simulink/matlab/nnet)
% ------ General Initializations -------
Ts = 0.20; % Sampling period (in seconds)
samples = 200; % Number of samples to be simulated
u_0 = 0; % Initial control input
y_0 = 0; % Initial output
ulim_min = -Inf; % Minimum control input
ulim_max = Inf; % Maximum control input
% -- System to be Controlled (SIMULINK) --
integrator= 'ode45'; % Name of dif. eq. solver (f. ex. ode45 or ode15s)
sim_model = 'spm1'; % Name of SIMULINK model
% --- System to be Controlled (MATLAB) --
mat_model = 'springm'; % Name of MATLAB model
model_out = 'smout'; % Output equation (function of the states)
x0 = [0;0]; % Initial states
% ----- Inverse Network Specification ------
% The file must contain the variables:
% NN, NetDefi, W1i, W2i
% (i.e. regressor structure, architecture definition, and weight matrices)
nninv = 'inverse3'; % File name
% ----- Forward Network Specification ------
% The file must contain: NN, NetDeff, W1f, W2f
nnforw = 'forward'; % File name
% ---------------- Filter ------------------
Am = [1 -0.7]; % Filter denominator
Bm = [0.3]; % Filter numerator
% ----------- Reference signal -------------
dc = 0; % DC-level
sq_amp = 1; % Amplitude of square signals (row vector)
sq_freq = 0.1; % Frequency of square signals (column vector)
sin_amp = [0]; % Amplitude of sine signals (row vector)
sin_freq= [0]'; % Frequency of sine signals (column vector)
Nvar = 0'; % Variance of white noise signal
% ----- Linear Controller Parameters -----
K=8; % PID parameters
Td=0.8; % PID
alf=0.1; % PID
Wi=0.2; % PID (1/Ti)
% ------ Specify data vectors to plot ------
% plot_a and plot_b must be cell structures containing the vector names in strings
plot_a = {'ref_data','y_data'};
plot_b = {'u_data'};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -