initial value problem integration
10 views (last 30 days)
Show older comments

How do I solve this using MATLAB with initial condition h(0)=6 to find the value of t
0 Comments
Answers (1)
Torsten
on 18 Nov 2022
Edited: Torsten
on 18 Nov 2022
You get an implicit equation in h that must be solved numerically for h for a given value of t:
syms h t
f = (-9.5883*h^5+110.5*h^4-340.17*h^3+124.7*h^2+2021.7*h)/sqrt(2*9.81*(h+1));
F = int(f,h,6,h);
G = -pi*0.25^2/4*t;
h50000 = vpasolve(F==subs(G,t,50000),h,6)
But finding t for a given value of h is simple:
t50000 = solve(subs(F,h,h50000)==G,t)
0 Comments
See Also
Categories
Find more on Calculus 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!