How to find transfer function to a second order ODE having a constant term?
Afficher commentaires plus anciens
8 commentaires
Aquatris
le 29 Fév 2024
What is the specific question? Do you want to know how to take a Laplace Transform?
Aquatris
le 29 Fév 2024
So this question in general is not related to Matlab but rather to using Laplace Transform to solve differential equations.
What have you tried so far? Do you know how to take Laplace transform?
Sam Chak
le 29 Fév 2024
First things first, make sure to bookmark the Help Center, and then search for the keyword 'Laplace Transform'. You will find an example under this article: Solve Differential Equations of RLC Circuit Using Laplace Transform.
It's always a good idea to start by searching in the Help Center before seeking technical assistance, unless the problem is highly specific and no relevant examples can be found in the documentation.
PONNADA
le 2 Mar 2024
Paul
le 2 Mar 2024
As far as I can tell, there is no transfer function of the said problem, so there also is not characteristic of that transfer function.
If you set c1 = 0, then the the system is LTI and you can fnd the transfer function of that system and the characteristic equation of that transfer function.
Are you sure that the problem statement is correct as written?
PONNADA
le 2 Mar 2024
Réponse acceptée
Plus de réponses (1)
Are you looking for something like this:
AnregeAmpl = 1; % mm
fmax = 20; % Hz
f=0.1:0.1:fmax; % Hz
w=2*pi*f; % 1/s
s=ones(size(f))*AnregeAmpl; % mm
c=200000; % N/m
m=20; % kg
d=100; % Ns/m
x=(c+d*j*w)./(c+d*j*w+j*w.*j.*w.*m);
plot(f,abs(x),f,abs(s));grid minor
Replace jw by S and you have your transfere function in S. But maybe your professor is not amused about this. ;=)
Catégories
En savoir plus sur Control System Toolbox dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!





