📄 fod.m
字号:
% function fod = fod(k,tau,theta,n)%% Generates state-space realization of first-order with delay process% k - gain% tau - time constant% theta - delay% n - order used for Pade approximation of delay%% This is the chemical engineers favorite process...% S. Skogestad ; Mar. 1997 / corrected May 2007 (divide by 2n and not n)function fod = fod(k,tau,theta,n)if (nargin == 0) | (nargin > 5), disp('usage: fod = fod(k,tau,theta,n)') returnendpade=1;delay = nd2sys([-theta/(2*n) 1],[theta/(2*n) 1]);for i=1:n pade=mmult(pade,delay); endfod = mmult( nd2sys(k,[tau 1]), pade);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -