Nonlinear ODE: Analytical Solution?

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
4 replies · 2K views
Pepo
Messages
3
Reaction score
0
Nonlinear 1st order ODE

[tex]\frac{dH}{dt}[/tex]=B-A*(H-Z)[tex]^{3/2}[/tex]
where:
B,A and Z are known values

H=f(t); H is function of t




I've already solve this ODE numerically using a 4th order RK routine. But my question is, it is possible to get an analytical solution for H(t)?
 
Last edited:
Physics news on Phys.org
first let h = H-Z, then you get

h' = b-ah^(3/2)
 
mathematica finds it messy...
http://www.wolframalpha.com/input/?i=h'(t)+%3D+b-a*(h(t))^(3/2)
 
lanedance said:
first let h = H-Z, then you get

h' = b-ah^(3/2)

lanedance said:
mathematica finds it messy...
http://www.wolframalpha.com/input/?i=h'(t)+%3D+b-a*(h(t))^(3/2)

I have try it plugging it with h=H-Z in mathematica but the solution is a mess. I really don't know how to get an expression for H(t) from this. :-/