coladv8_01.m

来自「国外经典书籍MULTIVARIABLE FEEDBACK CONTROL-多变量」· M 代码 · 共 35 行

M
35
字号
function xprime=cola_dv(t,X) % sample usage:   [t,x]=ode15s('cola_dv',[0 5000],0.5*ones(1,82));%% cola_dv - Subroutine for simulation with DV-configuration.%%%            Inputs are distillate (D) and boilup (VB). Disturbances%            are feedrate and feed composition. These are set by directly%            altering 'cola_dv.m'. Outputs are liquid composition and%            liquid hold up for stages 1 through NT, given in x. % Number of stages in the columnNT=41;% Inputs and disturbancesD=0.5;                               % DistillateVB=3.20629*1.01;                          % BoilupF=1.0 + 0.00;                        % FeedratezF=0.5;                              % Feed compositionqF=1.0;                              % Feed liquid fraction% P-Controllers for control of reboiler and condenser hold up.KcB=10;  KcD=0.10;         % controller gainsMDs=0.5; MBs=0.5;        % Nominal holdups - these are rather small  Ls=2.70629; Bs=0.5;      % Nominal flowsMB=X(NT+1);  MD=X(2*NT); % Actual reboiler and condenser holdupLT=Ls+(MD-MDs)*KcD;       % RefluxB=Bs+(MB-MBs)*KcB;       % Bottoms flow     % Store all inputs and disturbancesU(1)=LT; U(2)=VB; U(3)=D; U(4)=B; U(5)=F; U(6)=zF; U(7)=qF;xprime=colamod(t,X,U);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?