www.gusucode.com > mpc_featured 案例源码 matlab代码程序 > mpc_featured/mpcnonlinear.m

    %% Control of a Multi-Input Multi-Output Nonlinear Plant
% This example shows how to design a model predictive controller for a
% multi-input multi-output nonlinear plant. The plant has 3 manipulated
% variables and 2 measured outputs.

% Copyright 1990-2014 The MathWorks, Inc.

%% Linearize Nonlinear Plant
% To run this example, Simulink(R) and Simulink Control Design(R) are
% required.
if ~mpcchecktoolboxinstalled('simulink')
    disp('Simulink(R) is required to run this example.')
    return
end
if ~mpcchecktoolboxinstalled('slcontrol')
    disp('Simulink Control Design(R) is required to run this example.')
    return
end
%%
% The nonlinear plant is implemented in Simulink(R) model "mpc_nonlinmodel"
% and linearized at the default operating condition using the "linearize"
% command from Simulink Control Design(R).
plant = linearize('mpc_nonlinmodel'); 
%%
% Assign names to I/O variables.
plant.InputName = {'Mass Flow';'Heat Flow';'Pressure'};  
plant.OutputName = {'Temperature';'Level'};
plant.InputUnit = {'kg/s' 'J/s' 'Pa'};
plant.OutputUnit = {'K' 'm'};

%% Design MPC Controller
% Create the controller object with sampling period, prediction and control
% horizons:
Ts = 0.2;                          
p = 5;
m = 2;
mpcobj = mpc(plant,Ts,p,m);
%%
% Specify MV constraints.
mpcobj.MV = struct('Min',{-3;-2;-2},'Max',{3;2;2},'RateMin',{-1000;-1000;-1000}); 
%%
% Define weights on manipulated and controlled variables.
mpcobj.Weights = struct('MV',[0 0 0],'MVRate',[.1 .1 .1],'OV',[1 1]);

%% Simulate Using Simulink(R)
% Run simulation.
mdl1 = 'mpc_nonlinear';
open_system(mdl1)    % Open Simulink Model
sim(mdl1);           % Start Simulation

%% Modify MPC Design to Track Ramp Signals
% In order to track a ramp, a triple integrator is defined as an output 
% disturbance model on both outputs.
outdistmodel = tf({1 0;0 1},{[1 0 0 0],1;1,[1 0 0 0]});
setoutdist(mpcobj,'model',outdistmodel);
%%
% Run simulation.
mdl2 = 'mpc_nonlinear_setoutdist';
open_system(mdl2)    % Open Simulink Model
sim(mdl2);           % Start Simulation

%% Simulate without Constraints
% When the constraints are not active, the MPC controller behaves like a
% linear controller.
mpcobj.MV = [];
%%
% Reset output disturbance model to default
setoutdist(mpcobj,'integrators');   
%%
% The input to the linear controller LTI is the vector [ym;r], where ym
% is the vector of measured outputs, and r is the vector of output
% references.
LTI = ss(mpcobj,'r');
%%
% Run simulation.
refs = [1;1];                         % output references are step signals
mdl3 = 'mpc_nonlinear_ss';
open_system(mdl3)       % Open Simulink(R) Model
sim(mdl3);              % Start Simulation

%% Compare Simulation Results
fprintf('Compare output trajectories: ||ympc-ylin|| = %g\n',norm(ympc-ylin));
disp('The MPC controller and the linear controller produce the same closed-loop trajectories.');

%%
bdclose(mdl1)         
bdclose(mdl2)         
bdclose(mdl3)