Time vs displacement plot of a Transfer function

조회 수: 5 (최근 30일)
Hassan
Hassan 2024년 4월 25일
편집: Hassan 2024년 4월 27일
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
Hassan
Hassan 2024년 4월 26일
Hi Sam,
Please check, its working now.
Sam Chak
Sam Chak 2024년 4월 26일
Your computed transfer function is different for the one displayed in your comment. Would you check the details?
Also, please specify the simulation time window and provide the sinusoidal input signal Vm.

댓글을 달려면 로그인하십시오.

채택된 답변

sai charan sampara
sai charan sampara 2024년 4월 26일
Hello Hassan,
The following code might help you:
%% parameters
R = 5e-6;
zeta= 0.2308;
iota= 1.3;
rhom= 997;
rhonu = 1.3*rhom;
BoK = 8.54E-01 ;
B1u = 6.03E-07 ;
B1K = 1.42E-06 ;
B2u = 6.65E-13;
B2k = 1.31E-13;
%% coefficients in numerator
n0 = 0;
n1 = 4/3*pi*(R^3)*zeta*iota*rhom;
%% coefficients in denominator
d0 = BoK;
d1 = B1u + B1K;
d2 = B2u + B2k + (4/3*pi*(R^3)*rhonu);
%% transfer function
num = [n1 n0];
den = [d2 d1 d0];
G = tf(num, den)
G = 1.566e-13 s ----------------------------------- 1.475e-12 s^2 + 2.023e-06 s + 0.854 Continuous-time transfer function.
This gives the expression for the transfer function "G". Once the transfer function is obtained you can use the following code to obtain the eigen frequencies:
eigen_values=eig(G);
eigen_freq=abs(imag(eigen_values))
eigen_freq = 2x1
1.0e+05 * 3.2958 3.2958
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
Once the eigen frequencies are obtained you can define the input signal as a sinusoid of the eigen frequency and pass it through the system using the "lsim" function in MATLAB. This gives the output signal and the required Amplitude vs Time plot.
You can learn more about the function "lsim" from this documentation:
  댓글 수: 2
Hassan
Hassan 2024년 4월 27일
편집: Hassan 2024년 4월 27일
Thankyou Sam. There is one more issue, that values like B1U and B2U are dependent on frequency itself. is there anyway i can share the details of my program in private and get your opinion. as i cannot share here, it is the part of my ongoing project.
For the values i shared earlier, I found B1U and B2U after many trials to find resonant frequency of this system. I give frequency sweep signal from 10^3 to 10^ 7, and started to narrow down until I find almost accurate frequency which gave max amplitude. Is there any other way to find it directly?
Hassan
Hassan 2024년 4월 27일
Moreover, If i apply force of U=asinw(wt). where w= eigen freq., you shown me earlier, it should vibrate at increasing amplitude or growing amplitude with the time. isnt

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Octave에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by