how to obtain the parameters of the step response within matlab?

조회 수: 25 (최근 30일)
SimTec
SimTec 2018년 5월 24일
댓글: M 2018년 5월 31일
hello, I have step response in open loop of my model and I want to use Matlab to obtain the : T time constant L dead time A see figure

답변 (1개)

M
M 2018년 5월 24일
Look at the stepinfo command.
  댓글 수: 2
SimTec
SimTec 2018년 5월 24일
I tried that and not given meaningful result and it seems it is used only when there is some oscillation before settling.
M
M 2018년 5월 31일
it is used only when there is some oscillation before settling.
No, try:
sys=tf([1],[1 1]);
you can check that it is a first order system (no oscillations) with:
step(sys);
and you can retrieve the data you want with:
stepinfo(sys)
ans =
struct with fields:
RiseTime: 2.1970
SettlingTime: 3.9121
SettlingMin: 0.9045
SettlingMax: 1.0000
Overshoot: 0
Undershoot: 0
Peak: 1.0000
PeakTime: 10.5458
What other meaningful information would you want?

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

카테고리

Help CenterFile Exchange에서 Time and Frequency Domain Analysis에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by