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

3 visualizaciones (últimos 30 días)
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)

Respuestas (1)

Rhea Chandy
Rhea Chandy el 7 de Mayo de 2021
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 .

Community Treasure Hunt

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

Start Hunting!

Translated by