function [sys,x0,str,ts] = dmcsfun(t,x,u,flag,varargin)
%DMCSFUN S-Function for Dynamic Matrix Control.
%
%
persistent K
switch flag,
%%%%%%%%%%%%%%%%%%
% Initialization %
%%%%%%%%%%%%%%%%%%
case 0,
Ts=varargin{1}; % Sampling time
K.sr=varargin{2}; % Step Response Model
K.p=varargin{3}; % P, prediction horizon
K.m=varargin{4}; % M, moving horizon
K.v=[]; % History of control
K.la=varargin{5}; % input weight, i.e. J = ||r-y|| + p.la*||du||
if numel(varargin)>5
K.a=varargin{6}; % reference smooth factor
else
K.a=0;
end
K.y=[]; % Initialization DMC
K=dmc(K);
sizes = simsizes;
sizes.NumContStates = 0;
sizes.NumDiscStates = 0;
sizes.NumOutputs = 1;
sizes.NumInputs = 2; % measured output and setpoint
sizes.DirFeedthrough = 1;
sizes.NumSampleTimes = 1;
sys = simsizes(sizes);
str = [];
x0 = zeros(0,1);
ts = [Ts 0];
%%%%%%%%%%
% Update %
%%%%%%%%%%
case 2,
sys = x;
%%%%%%%%%%
% Output %
%%%%%%%%%%
case 3,
% if t>50
% u;
% end
K.y = u(1); % measurement
K.r = u(2); % setpoint
K = dmc(K);
sys = K.u;
%%%%%%%%%%%%%
% Terminate %
%%%%%%%%%%%%%
case 9,
sys = []; % do nothing
%%%%%%%%%%%%%%%%%%%%
% Unexpected flags %
%%%%%%%%%%%%%%%%%%%%
otherwise
error(['unhandled flag = ',num2str(flag)]);
end
function p=dmc(p)
% DMC Dynamic Matrix Control
% P=DMC(P) determines the dynamic matrix control (input change) based on
% the plant model (step response) and current measurement stored in the
% structure P.
% Input:
% P.sr - unit step response data
% P.u - current input, initially 0
% P.v - past input, initially empty
% P.G - dynamic matrix, set by the initial call
% P.F - matrix to calculate free response, set by the initial call
% P.k - DMC gain, set by the initial call
% P.r - reference (set point)
% P.a - reference smooth factor
% P.p - prediction horizon
% P.m - moving horizon
% P.y - current mrasurement
% P.la - performance criterion weight, i.e. J = ||r-y|| + p.la*||du||
% where du is the input change
% Output:
% P.u - new input for next step
% P.f - updated free response
% P.G - dynamic matrix, if it is the first step.
% P.k - DMC gain, if it is the first step
%
% See Also: mpc
% Version 1.0 created by Yi Cao at Cranfield University on 6th April 2008.
% Example:
%{
p.sr=filter([0 0 0.2713],[1 -0.8351],ones(50,1));
p.p=10;
p.m=5;
p.y=0;
p.v=[];
u=zeros(1,3);
N=120;
Y=zeros(N,1);
U=zeros(N,1);
R=zeros(N,1);
R([1:30 61:90])=1;
p.la=1;
for k=1:120
p.a=0;
p.r=R(k:min(N,k+p.p));
if k>60
p.a=0.7;
end
p=dmc(p);
Y(k)=p.y;
U(k)=p.u;
u=[u(2:3) p.u];
p.y=0.8351*p.y+0.2713*u(1);
end
subplot(211)
plot(1:N,Y,'b-',1:N,R,'r--',[60 60],[-0.5 1.5],':','linewidth',2)
title('solid: output, dashed: reference')
text(35,1,'\alpha=0')
text(95,1,'\alpha=0.7')
axis([0 120 -0.5 1.5])
subplot(212)
[xx,yy]=stairs(1:N,U);
plot(xx,yy,'-',[60 60],[-0.5 1.5],':','linewidth',2)
axis([0 120 -0.5 1.5])
title('input')
xlabel('time, min')
%}
% Input and output check
error(nargchk(1,1,nargin));
error(nargoutchk(0,1,nargout));
% length of step response
N=numel(p.sr);
P=p.p;
% initial setup
if isempty(p.v)
% number of past inputs to keep
n=N-P;
% storage for past input
p.v=zeros(n,1);
% matrix to calculate free response from past input
x=p.sr(1:n);
p.F=hankel(p.sr(2:P+1),p.sr(P+1:N))-repmat(x(:)',P,1);
% dynamic matrix
p.G=toeplitz(p.sr(1:P),p.sr(1)*eye(1,p.m));
% calculate DMC gain
R=chol(p.G'*p.G+p.la*eye(p.m));
K=R\(R'\p.G');
% only the first input will be used
p.k=K(1,:);
p.u=0;
end
if isempty(p.y)
return
end
% free response
f=p.F*p.v+p.y;
% smooth reference
nr=numel(p.r);
if nr>=P
ref=p.r(1:P);
else
ref=[p.r(:);p.r(end)+zeros(P-nr,1)];
end
w=filter([0 (1-p.a)],[1 -p.a],ref,p.y);
% DMC input change
u=p.k*(w-f);
% past input change for next step
p.v=[u;p.v(1:end-1)];
% next input
p.u=p.u+u(1);
没有合适的资源?快使用搜索试试~ 我知道了~
基于Matlab和Simulink实现热交换器的PI与DMC控制仿真模型(源码+数据).rar
共26个文件
mat:6个
slx:4个
png:4个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
5星 · 超过95%的资源 5 下载量 201 浏览量
2023-06-05
12:29:19
上传
评论 1
收藏 277KB RAR 举报
温馨提示
1、资源内容:基于Matlab和Simulink实现热交换器的PI与DMC控制仿真模型(源码+数据).rar 2、适用人群:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业或毕业设计,作为“参考资料”使用。 3、解压说明:本资源需要电脑端使用WinRAR、7zip等解压工具进行解压,没有解压工具的自行百度下载即可。 4、免责声明:本资源作为“参考资料”而不是“定制需求”,代码只能作为参考,不能完全复制照搬。不一定能够满足所有人的需求,需要有一定的基础能够看懂代码,能够自行调试代码并解决报错,能够自行添加功能修改代码。由于作者大厂工作较忙,不提供答疑服务,如不存在资源缺失问题概不负责,谢谢理解。
资源推荐
资源详情
资源评论
收起资源包目录
基于Matlab和Simulink实现热交换器的PI与DMC控制仿真模型(源码+数据).rar (26个子文件)
基于Matlab和Simulink实现热交换器的PI与DMC控制仿真模型(源码+数据)
heatex_sim_pi.slx 26KB
heatex_dmc.jpg 39KB
heatex_sim_steptest.slxc 5KB
dmcsfun.m 4KB
heatex_sim.slx 26KB
heatex_sim_dmc.slxc 5KB
heatex_sim.slxc 5KB
heatex_sim_dmc.slx 26KB
slprj
sim
varcache
heatex_sim_steptest
checksumOfCache.mat 392B
varInfo.mat 664B
tmwinternal
simulink_cache.xml 312B
heatex_sim_dmc
checksumOfCache.mat 392B
varInfo.mat 2KB
tmwinternal
simulink_cache.xml 312B
heatex_sim
checksumOfCache.mat 392B
varInfo.mat 2KB
tmwinternal
simulink_cache.xml 312B
heatex_dmc.m 2KB
html
heatex_dmc_03.png 21KB
Thumbs.db 16KB
heatex_dmc.png 4KB
heatex_dmc.html 10KB
heatex_dmc_02.png 35KB
heatex_dmc_01.png 37KB
heatex_sim_steptest.slx 25KB
heatex_dmc.fig 20KB
共 26 条
- 1
资源评论
- 海上钢琴师4032024-11-19感谢大佬分享的资源,对我启发很大,给了我新的灵感。
- qq_408962202024-04-21超级好的资源,很值得参考学习,对我启发很大,支持!
- qq_395013422024-07-08感谢大佬分享的资源,对我启发很大,给了我新的灵感。
- null_code2023-12-18这个资源对我启发很大,受益匪浅,学到了很多,谢谢分享~
- m0_376921242024-08-20资源太好了,解决了我当下遇到的难题,抱紧大佬的大腿~
Matlab仿真实验室
- 粉丝: 3w+
- 资源: 2406
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功