what is method to find out ramp response of a transfer system.......... there is any command like step or impulse?

1 件のコメント

Mercy Mercy
Mercy Mercy 2020 年 7 月 16 日
Find the time response for the system G(s)=1/s+19 for unit r amp input

サインインしてコメントする。

 採用された回答

Teja Muppirala
Teja Muppirala 2013 年 2 月 15 日

14 投票

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 件のコメント

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 2 月 15 日
% or more general:
out=impulse(G*U) % G your transfer function
% U the Laplace transform of your input signal
Louis Lee
Louis Lee 2017 年 10 月 9 日
And then do some manual convolution
Akash Vyas
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
Azzi Abdelmalek 2013 年 2 月 15 日
編集済み: Azzi Abdelmalek 2013 年 2 月 15 日

13 投票

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)

1 件のコメント

Daniel
Daniel 2022 年 10 月 12 日
what is alpha

サインインしてコメントする。

Mercy Mercy
Mercy Mercy 2020 年 7 月 16 日

0 投票

Find the time response for the system G(s)=1/s+19 for unit r amp input
zalikha zamri
zalikha zamri 2020 年 12 月 18 日

0 投票

how to get a ramp response from s^2+3s/ s^2+7s+6

1 件のコメント

Ibrahim Baza
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)

サインインしてコメントする。

Md. Harisul Islam
Md. Harisul Islam 2021 年 12 月 5 日

0 投票

Find the Laplace Transform of
Nadir Alsabaey
Nadir Alsabaey 2023 年 7 月 15 日

0 投票

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 2024 年 3 月 31 日

0 投票

give matlab code for ramp response having num=[3] and den=[ 0.1 1]

1 件のコメント

DGM
DGM 2024 年 3 月 31 日
編集済み: DGM 2024 年 3 月 31 日
The answer has already been given twice. Scroll up and read.

サインインしてコメントする。

タグ

質問済み:

2013 年 2 月 15 日

編集済み:

DGM
2024 年 3 月 31 日

Community Treasure Hunt

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

Start Hunting!

Translated by