colalv1v.m

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

M
37
字号
function xprime=cola_lv(t,X) % sample usage:   [t,x]=ode15s('cola_lv',[0 5000],0.5*ones(1,82));%% cola_lv - Subroutine for simulation with LV-configuration.%           It calls the model colamod, and %           includes control of condenser and reboiler level %           using two P-controllers with the LV-configuration. %%            Inputs are reflux (LT) and boilup (VB). Disturbances%            are feedrate and feed composition. These are set by directly%            altering 'cola_lv.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 disturbancesLT=2.70629*1.00;                          % RefluxVB=3.20629 + 2.70629*0.001;                          % 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=10;         % controller gainsMDs=0.5; MBs=0.5;        % Nominal holdups - these are rather small  Ds=0.5; Bs=0.5;          % Nominal flowsMB=X(NT+1);  MD=X(2*NT); % Actual reboiler and condenser holdupD=Ds+(MD-MDs)*KcD;       % Distillate flowB=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 + -
显示快捷键?