Use logarithms to separate the frequency response into a sum of decibel terms, where w=0 to find the starting magnitude.

조회 수: 2 (최근 30일)
Is there a function to find the gain?
6
H(s)= ----------------------------------------
s^5 + 22 s^4 + 164 s^3 + 458 s^2 + 315 s
code:
h=tf(num,den4)
[gm pm wcp wcg]=margin(h)
km=10*(gm/20)
wm=wcp
kp=0.6*km
ki=(kp*wm)/pi
kd=(kp*ki)/(4*wm)
h1=tf([1,0],[1])
g=(kp+(kd*h1)+(ki/h1))*h
bode(g)

답변 (1개)

Rhea Chandy
Rhea Chandy 2021년 5월 7일
Hi, I understand you want to find the gain of your transfer function.
Consider using the Zero-pole-gain model , zpk, to convert your dynamic system models to zero-pole-gain form. You can access the gain data with zpkdata .

카테고리

Help CenterFile Exchange에서 Dynamic System Models에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by