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
Euler1DCleanup.c
Go to the documentation of this file.
1
6
#include <stdlib.h>
7
#include <
physicalmodels/euler1d.h
>
8
10
int
Euler1DCleanup
(
11
void
*s
12
)
13
{
14
Euler1D
*param = (
Euler1D
*) s;
15
free(param->
grav_field
);
16
free(param->
fast_jac
);
17
free(param->
solution
);
18
return
(0);
19
}
Euler1D
Structure containing variables and parameters specific to the 1D Euler equations. This structure cont...
Definition:
euler1d.h:273
Euler1D::fast_jac
double * fast_jac
Definition:
euler1d.h:289
euler1d.h
1D Euler Equations (inviscid, compressible flows)
Euler1D::solution
double * solution
Definition:
euler1d.h:290
Euler1DCleanup
int Euler1DCleanup(void *s)
Definition:
Euler1DCleanup.c:10
Euler1D::grav_field
double * grav_field
Definition:
euler1d.h:288