Can it be 2nd order non-linear diff. equation

teller
Messages
1
Reaction score
0
Hope I have posted this in the right section, this question is half differential equation and half finite difference method. The equation I have is a form of the Lucas Washburn equation, which is concerned with capillary rise:

\rho\left[\left(z+\lambda\right)z''_{tt}+(z'_{t})^{2}\right]+Vzz'_{t}+\rho g z=F

\lambda,\rho, F & V are constants,initial conditions are z(0)=0, and z'(0)=0
The Equation in another form:

z\ddot{z}+\dot{z}^{2}=az\dot{z}+bz+c

Am I correct in thinking that this differential equation has no analytical solution? In light of that I want to try and solve for z(t) numerically using a finite difference method but am unsure about how to reform this equation into a from I can use. Any thoughts or suggestions would be greatly appreciated.

Teller
 
Last edited:
Physics news on Phys.org
...

Maybe I'm misunderstanding you, but you could use any numerical integration technique - Euler's method, Runge Kutta, Leapfrog, etc. - on the "another form" after solving for the highest-order derivative in terms of the others.

z'' = az' + b + c/z - z'*z'/z

then

z_(n+1) = z_(n) + z'_(n)*delta_t
z'_(n+1) = z'_(n) + z''_(n)*delta_t
z''_(n+1) = az'_(n+1) + b + c/z_(n+1) - z'_(n+1)*z'_(n+1)/z_(n+1)

No?
 
Surprisingly, the system is integrable as long as we have a = 0. The solution is not suitable for perturbation theory, however, since it must be given implicitly in terms of non-elementary functions.

If a = 0 and c = 0, then the unknown function can be solved for in terms non-elementary functions.

If a = 0 and b = 0 the solution is:

\sqrt{c t^2+2 c c_2 t-\frac{e^{2 c_1}}{c}+c c_2^2}

I mention these special cases in case any of a,b,c are small perturbations, but it looks like in the general case the equation cannot be reduced to integration.
 
Thread 'Direction Fields and Isoclines'
I sketched the isoclines for $$ m=-1,0,1,2 $$. Since both $$ \frac{dy}{dx} $$ and $$ D_{y} \frac{dy}{dx} $$ are continuous on the square region R defined by $$ -4\leq x \leq 4, -4 \leq y \leq 4 $$ the existence and uniqueness theorem guarantees that if we pick a point in the interior that lies on an isocline there will be a unique differentiable function (solution) passing through that point. I understand that a solution exists but I unsure how to actually sketch it. For example, consider a...
Back
Top