how can calculate rise time, peak time,overshoot, setlling time

620 次查看(过去 30 天)
  2 个评论
Meenakshi RM
Meenakshi RM 2022-8-5
Hi Hind ali, May I know how you found the time domain specifications for the above plot? It would be much helpful for my work.
Thanks,
Meenakshi
Sam Chak
Sam Chak 2022-8-5
编辑:Sam Chak 2022-8-5
Would suggest you to post a new Question together with your linear system (preferably in Transfer Function).

请先登录,再进行评论。

采纳的回答

KL
KL 2015-5-21
You shall use stepinfo function.

更多回答(1 个)

Jay Patel
Jay Patel 2019-7-24
Hi,
Please use below matlab inbuild function on your dynamic system model function.
S = stepinfo(sys) % where sys is dynamic system model
you can also manually set the settling time and rising time thresold if you want. For example :
sys = tf([1 5 5],[1 1.65 5 6.5 2]); % Transfer function
S1 = stepinfo(sys,'SettlingTimeThreshold',0.005); % set SettlingTimeThreshold to 0.5%, or 0.005
st1 = S1.SettlingTime;
S2 = stepinfo(sys,'RiseTimeThreshold',[0.05 0.95]); %set RiseTimeThreshold to a vector containing those bounds
I hope this would help.
Jay

类别

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