numerical solution the given equation to determine the zero value of k

1 回表示 (過去 30 日間)
Yannick Tabot Njami
Yannick Tabot Njami 2019 年 8 月 20 日
編集済み: Yannick Tabot Njami 2019 年 8 月 21 日
Hello I need to fins the numerical solution of the given equation :
I want to find the value of k where the curve cross the x-axis.
attached is the equation .also pplease see my code.
%Numerical solution to determin the value of K
density =7.9 ;%g/cm^3
Ri =0.35;%cm
Ro =0.4;%cm
Mlaser =1.5;
M =64.4+Mlaser;
l=9;%cm
Mt= density*pi*((Ro)^2-(Ri)^2)*l;
solvk =@(k)1+cos(k*l)*cosh(k*l)+ (M/Mt)*k*l(cos(k*l)*sinh(k*l))-sin(k*l)*cosh(k*l);
k =fzero(solvk,l);
eqaution.png

採用された回答

Torsten
Torsten 2019 年 8 月 20 日
編集済み: Torsten 2019 年 8 月 20 日
solvk = @(k) 1+cos(k*l).*cosh(k*l) + (M/Mt).*k*l.*(cos(k*l).*sinh(k*l)-sin(k*l).*cosh(k*l));
val = fzero(solvk,0.1)
  1 件のコメント
Yannick Tabot Njami
Yannick Tabot Njami 2019 年 8 月 21 日
編集済み: Yannick Tabot Njami 2019 年 8 月 21 日
Thanks very much Torsten . I appreciate

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeEigenvalue Problems についてさらに検索

製品


リリース

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by