i want to obtain the transfer function of the controller

i knows the generalised transfer function of a controller and the values of the each term. how should i be able to obtain the desired transer function?

 채택된 답변

Arkadiy Turevskiy
Arkadiy Turevskiy 2014년 5월 30일
If you know the transfer function, define it like this in MATLAB:
s=tf('s');
sys=(1*s^2+2*s+3)/(4*s^4+5*s^2+6*s+7)

댓글 수: 4

my transfr function is ((V_o r_c)/((1-D)(R_L+r_c)) (s+1/〖Cr〗_c ){s-(1 )/L[R_L (1-D)^2-r]})/((s^2+s (c[r(R_L+r_c )+〖(1-D)^2 R〗_L r_c ]+L)/(LC(R_L+r_c))+(r+〖(1-D)^2 R〗_L)/(LC(R_L+r_c))))
iwant to just give the value of the above character and find the overall transfer funtion
and if there are any constant term in it
Well, you can define all the variables numerically:
>>a=1;
>>k=2;
>>s=tf('s');
sys =
2
-----
s + 1
Continuous-time transfer function.
>> a=3;k=10;
>> sys=k/(s+a)
sys =
10
-----
s + 3
Continuous-time transfer function.

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

카테고리

도움말 센터File Exchange에서 System Identification Toolbox에 대해 자세히 알아보기

질문:

2014년 5월 29일

편집:

Rik
2022년 1월 14일

Community Treasure Hunt

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

Start Hunting!

Translated by