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

조회 수: 1 (최근 30일)
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)

추가 답변 (0개)

카테고리

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

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by