initial value problem integration
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen

How do I solve this using MATLAB with initial condition h(0)=6 to find the value of t
0 Kommentare
Antworten (1)
Torsten
am 18 Nov. 2022
Bearbeitet: Torsten
am 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 Kommentare
Siehe auch
Kategorien
Mehr zu Calculus finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!