I am confused regarding the concept of 'natural frequecny' in control systems. Is it only dependent on the denominator or is it also dependent on the numerator? For example, I have '8' in both numerator and denominator of my open loop transfer function but the values of numerator and denominator of the closed loop transfer function are not the same as I get 8 in the numerator but I get 16 in thedenominator.
I am very confused. What will be the natural frequency of my system? Will it be the square root of 8 or will it be thesquare root of 16?
My MATLAB code:
clc
clear
close all
num=[8]%numerator of open loop transfer function
den=[1 2 8]%denominator of open loop transfer function
sys_open_loop=tf(num,den)%open loop transfer function
sys_close_loop=feedback(sys_open_loop,1)%close loop transfer functio
step(sys_close_loop)%step response of close loop transfer function