Loading [MathJax]/extensions/tex2jax.js
HyPar
1.0
Finite-Difference Hyperbolic-Parabolic PDE Solver on Cartesian Grids
Main Page
Related Pages
+
Namespaces
Namespace List
+
Namespace Members
All
Functions
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
a
c
d
e
f
g
i
l
m
o
p
r
s
t
u
w
~
+
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Files
File List
+
Globals
+
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
v
w
+
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
v
w
Variables
Typedefs
Enumerations
Enumerator
+
Macros
_
a
c
d
g
i
m
n
r
s
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Pages
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
*);
Burgers
Definition:
burgers.h:16
BurgersCleanup
int BurgersCleanup(void *)
Definition:
BurgersCleanup.c:10
BurgersInitialize
int BurgersInitialize(void *, void *)
Definition:
BurgersInitialize.c:25