HyPar  1.0
Finite-Difference Hyperbolic-Parabolic PDE Solver on Cartesian Grids
burgers.h
Go to the documentation of this file.
1 /*
2  Burgers Equation
3 
4 Reference:
5 + Hundsdorfer & Verwer, "Numerical Solution of Time Dependent Advection-
6  Diffusion-Reaction Euqations", Springer-Verlag Berlin Heidelberg, 2010
7 
8  du d [0.5 u^2]
9  -- + ------------ = 0
10  dt dx_i
11 
12 */
13 
14 #define _BURGERS_ "burgers"
15 
16 typedef struct burgers_parameters {
17 
18 } Burgers;
19 
20 int BurgersInitialize (void*,void*);
21 int BurgersCleanup (void*);
int BurgersCleanup(void *)
int BurgersInitialize(void *, void *)