how find ramp response
조회 수: 1,100 (최근 30일)
이전 댓글 표시
what is method to find out ramp response of a transfer system.......... there is any command like step or impulse?
댓글 수: 1
채택된 답변
Teja Muppirala
2013년 2월 15일
You could get the ramp response by dividing your transfer function by s, and then taking the step response.
For example:
s = tf('s');
G = 1/(s+1);
figure
subplot(311), impulse(G); % Impulse reponse
subplot(312), step(G); % Step Response
subplot(313), step(G / s); % Ramp response
댓글 수: 3
Akash Vyas
2022년 4월 15일
편집: Akash Vyas
2022년 4월 15일
I don't think impulse(G*U) will work in matlab. I tried both these method but ans is different.
추가 답변 (6개)
Azzi Abdelmalek
2013년 2월 15일
편집: Azzi Abdelmalek
2013년 2월 15일
You can use lsim function for any input
t=0:0.1:10
alpha=2
ramp=alpha*t % Your input signal
model=tf(1,[1 20 3]); % Your transfer function
[y,t]=lsim(model,ramp,t)
plot(t,y)
Mercy Mercy
2020년 7월 16일
Find the time response for the system G(s)=1/s+19 for unit r amp input
댓글 수: 0
zalikha zamri
2020년 12월 18일
how to get a ramp response from s^2+3s/ s^2+7s+6
댓글 수: 1
Ibrahim Baza
2021년 6월 22일
%just define the tf and use step function to change the tf from T=1*G to
%T=1/s * G
s=tf('s');
T=(s^2+3*s)/ (s^2+7*s+6);
step(T/s)
Nadir Alsabaey
2023년 7월 15일
Q --> Consider a system of the form shown in the figure in Problem 1. Let 𝐺(𝑠) = 𝐾 (𝑠+3) (𝑠+5) / 𝑠(𝑠+7) (𝑠+8)
1. a. What is the system type?
b. Consider 𝐾 = 1. On the same figure, plot the ramp input along with its response using lsim() command.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Dynamic System Models에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!