Transfer function with time delay, transcendental transfer function

조회 수: 6 (최근 30일)
August
August 2014년 11월 11일
댓글: August 2015년 6월 24일
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
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
  댓글 수: 1
August
August 2014년 11월 13일
there is the "exp" missing like:
H = exp(-(((s^2)+(k1+k2)*s)/(w*(s+k2)))*z);
but then matlab answers:
??? Error using ==> tf.exp at 31 The input argument of the "lti/exp" command must be a transfer function of the form -M*s.

댓글을 달려면 로그인하십시오.


milad karimshoushtari
milad karimshoushtari 2015년 5월 4일
I have the same problem, did you find any answer?

milad karimshoushtari
milad karimshoushtari 2015년 6월 23일
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.
  댓글 수: 1
August
August 2015년 6월 24일
Thanks for your idea, do you have an example of your proposal or a link with example code?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by