Time vs displacement plot of a Transfer function
이전 댓글 표시
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
Sam Chak
2024년 4월 26일
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
2024년 4월 26일
Hassan
2024년 4월 26일
Hassan
2024년 4월 26일
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Get Started with Signal Processing Toolbox에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!