I want to program (solve this equation for h) this problem in Matlab but I do not know the appropriate function to use.

1 view (last 30 days)
I want to program (solve this equation for h) this problem in Matlab but I do not know the appropriate function to use.
h = hss +((((m_Lp/par.rho_L)-(( par.Vp*par.Alpha_Lp_av)))*sin(par.theta))^0.5)*(((((2*pi*hss*(2*par.r_p-hss))^0.5)*1/3))+(1-((1/3)*(2*pi)^0.5))*(h*((2*par.r_p-hss)-h)))
my intent is to calculate for h (h is implicit. h has to be iterated) the other variables are defined:
vp =26.01 m_Lp = 24973 his =0.96 par.Alpha_Lp_av = par theta = pi/180 r_p =0.06 par.ho_L = 1000
Value of h is should be between 0-10

Accepted Answer

Torsten
Torsten on 19 Sep 2018
Edited: Torsten on 19 Sep 2018
h can be explicitly solved for:
par.Vp = 26.01;
m_Lp = 24973;
hss =0.96;
par.Alpha_Lp_av = pi/180;
par.theta = pi/180;
par.r_p =0.06;
par.rho_L = 1000;
c1 = hss;
c2 = ((m_Lp/par.rho_L- par.Vp*par.Alpha_Lp_av)*sin(par.theta))^0.5;
c3 = (2*pi*hss*(2*par.r_p-hss))^0.5*1/3;
c4 = 1-1/3*(2*pi)^0.5;
c5 = 2*par.r_p-hss;
p = -(c2*c4*c5-1)/(c2*c4);
q = -(c1+c2*c3)/(c2*c4);
h(1) = -p/2 + sqrt((p/2)^2-q)
h(2) = -p/2 - sqrt((p/2)^2-q)
Best wishes
Torsten.

More Answers (0)

Categories

Find more on Mathematics in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!