how find ramp response

1.297 Ansichten (letzte 30 Tage)
manoj saini
manoj saini am 15 Feb. 2013
Bearbeitet: DGM am 31 Mär. 2024 um 16:11
what is method to find out ramp response of a transfer system.......... there is any command like step or impulse?
  1 Kommentar
Mercy Mercy
Mercy Mercy am 16 Jul. 2020
Find the time response for the system G(s)=1/s+19 for unit r amp input

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Teja Muppirala
Teja Muppirala am 15 Feb. 2013
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 Kommentare
Louis Lee
Louis Lee am 9 Okt. 2017
And then do some manual convolution
Akash Vyas
Akash Vyas am 15 Apr. 2022
Bearbeitet: Akash Vyas am 15 Apr. 2022
I don't think impulse(G*U) will work in matlab. I tried both these method but ans is different.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (6)

Azzi Abdelmalek
Azzi Abdelmalek am 15 Feb. 2013
Bearbeitet: Azzi Abdelmalek am 15 Feb. 2013
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
Mercy Mercy am 16 Jul. 2020
Find the time response for the system G(s)=1/s+19 for unit r amp input

zalikha zamri
zalikha zamri am 18 Dez. 2020
how to get a ramp response from s^2+3s/ s^2+7s+6
  1 Kommentar
Ibrahim Baza
Ibrahim Baza am 22 Jun. 2021
%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)

Melden Sie sich an, um zu kommentieren.


Md. Harisul Islam
Md. Harisul Islam am 5 Dez. 2021
Find the Laplace Transform of

Nadir Alsabaey
Nadir Alsabaey am 15 Jul. 2023
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.

Iqra
Iqra am 31 Mär. 2024 um 10:22
give matlab code for ramp response having num=[3] and den=[ 0.1 1]
  1 Kommentar
DGM
DGM am 31 Mär. 2024 um 16:10
Bearbeitet: DGM am 31 Mär. 2024 um 16:11
The answer has already been given twice. Scroll up and read.

Melden Sie sich an, um zu kommentieren.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by