Transfer function with time delay, transcendental transfer function
显示 更早的评论
Question: How to define the transfer function

in Matlab?
where
s: is the laplace variable
z: is a spatial variable (also a constant here)
k1,k2,w: are constants
回答(3 个)
MA
2014-11-13
clear all
close all
clc;
k1=1;k2=1;w=.5;z=2;
s=tf('s');
H = (-(((s^2)+(k1+k2)*s)/(w*(s+k2)))*z);
bode(H)
grid on
milad karimshoushtari
2015-6-23
0 个投票
I found a solution for a similar problem, you can not define this transfer function in matlab or simulink. use the time domain equation with derivatives that resulted to this transfer function, then use finite deference method to approximate the derivative of spatial variable then you can write a recursive code in matlab or in s-func simulink to solve it, it is not easy! search for finite deference method to solve spatial dependent differential equations then you will figure out the rest.
类别
在 帮助中心 和 File Exchange 中查找有关 Simulink 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!