NUMERICAL approach to NONLINEAR PDE

Romik
Messages
13
Reaction score
0
Hi guys,

I need to simulate wave propagation for a nonlinear dispersive wave PDE and since I can't find proper resources for handling nonlinear PDEs numerically, I would appreciate any help and clues.

the PDE is in the form of
utt-(au+bu2+cu3+duxx)xx=0

Romik

Ps:
BC: Clamped at both ends
IC: u(x,0)=f, ut(x,0)=g
 
Last edited:
Physics news on Phys.org
Romik said:
Hi guys,

I need to simulate wave propagation for a nonlinear dispersive wave PDE and since I can't find proper resources for handling nonlinear PDEs numerically, I would appreciate any help and clues.

the PDE is in the form of
utt-(au+bu2+cu3+duxx)xx=0

Romik
What are the initial and boundary conditions?
 
  • Like
Likes 1 person
I assume that clamped at both ends means zero displacement and zero slope, correct? You need to solve the equation numerically. You can use central differences wr to time and x. You can look up finite difference approximations to the derivatives in Abramowitz and Stegun. Also, the following link presents some good numerical schemes you can use:
http://pauli.uni-muenster.de/tp/fileadmin/lehre/NumMethoden/WS1011/script1011Wave.pdf

Skip the first part where they talk about analytic methods.
 
Thanks Chester for your reply.

yes, that means zero displacement at both ends.

finite difference (FD) is the first approach that came in mind and I searched over internet to find similar PDEs with FD, and all I found was linear wave PDE (same as your link), or nonlinear first order hyperbolic PDEs.
My question is more about nonlinear and dispersive terms in this PDE which I don't know how to treat them with this approach, or even if the FD method is the best option for this problem.
or among FD approaches which one is better for this type of problem? Central? forward? backward? Upwind? Lax-Wendroff? Crank-Nicolson?

Thanks
 
Romik said:
Thanks Chester for your reply.

yes, that means zero displacement at both ends.

finite difference (FD) is the first approach that came in mind and I searched over internet to find similar PDEs with FD, and all I found was linear wave PDE (same as your link), or nonlinear first order hyperbolic PDEs.
My question is more about nonlinear and dispersive terms in this PDE which I don't know how to treat them with this approach, or even if the FD method is the best option for this problem.
or among FD approaches which one is better for this type of problem? Central? forward? backward? Upwind? Lax-Wendroff? Crank-Nicolson?

Thanks
This can't take more than a couple of hours to program using explicit finite differences, with central differences in time and space. For time, use the same explicit approach as linear, with (ut+Δt-2ut+ut-Δt)/(Δt)2 for the time derivative. If that doesn't stay stable, I would go directly to fully implicit at t + Δt. But I think that if you use explicit, you can control stability with a small enough time step and get what you want in a manageable amount of computation time.

Chet

Chet
 
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