Time vs displacement plot of a Transfer function
Show older comments
I am trying to plot time vs displacement plot of a transfer function. It is a simple case of spherical body in a liquid hence excitation of a spherical body is being resisted by the (elastic and viscous properties of the liquid) Hence F excitation= F inertia + F (elastic) + F viscous.
The final transfer function is of the form below where Delta Q is the relative displacement between the body and the liquid where as Vm is the excitation velocity.
I have used this transfer function to find eigen frequency for this system. Now i wants to check if the system undergoes resonance at that eigen frequency. How to do it using matlab

7 Comments
Sam Chak
on 26 Apr 2024
Please type out the MATLAB code and provide the parameters.
%% parameters
R = ...;
zeta= ...;
iota= ...;
rhom= ...;
BoK = ...;
B1u = ...;
B1K = ...;
%% coefficients in numerator
n0 = 0;
n1 = 4/3*pi*(R^3)*zeta*iota*rhom;
%% coefficients in denominator
d0 = BoK;
d1 = B1u + B1K;
d2 = ...;
%% transfer function
num = [n1 n0];
den = [d2 d1 d0];
G = tf(num, den)
Hassan
on 26 Apr 2024
Hassan
on 26 Apr 2024
Hassan
on 26 Apr 2024
Accepted Answer
More Answers (0)
Categories
Find more on Get Started with Signal Processing Toolbox in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!