필터 지우기
필터 지우기

How to find time constants from given 2+ order transfer function?

조회 수: 48 (최근 30일)
shrivardhan  suryawanshi
shrivardhan suryawanshi 2016년 10월 16일
편집: Gerard Nagle 2023년 4월 29일
I have a transfer function let us take for e.g k/(100*s^2+20*s+1).In this TF I want to access the denominator as k/(10*s+1)(10*s+1) in such a way that algorithm will return tau1=10,tau2=10.How to get it?

답변 (1개)

David Wilson
David Wilson 2020년 8월 26일
If you just want to display the transfer function in time-constant form, you can do the following:
s = tf('s');
k = 45; % anyhting
G = k/(100*s^2+20*s+1) % expanded polynomial form
[z,p,k] = zpkdata(G)
G1 = zpk(z,p,k,'DisplayFormat','timeconstant')
If you want access to the time constants, use damp.m
damp(G)
[w, zeta, p] = damp(G)
tau = 1./w
I',m assuming you have a stable TF. Check with isstable.
  댓글 수: 1
Gerard Nagle
Gerard Nagle 2023년 4월 29일
편집: Gerard Nagle 2023년 4월 29일
Was trying for hours to get a nice format and do this using my own code. Should have read the documentation closer. Thanks for the answer

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

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by