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
TimeGLMGEECleanup.c
Go to the documentation of this file.
1
6
#include <stdlib.h>
7
#include <string.h>
8
#include <
timeintegration.h
>
9
14
int
TimeGLMGEECleanup
(
void
*s )
15
{
16
GLMGEEParameters
*params = (
GLMGEEParameters
*) s;
17
if
(params->
A_yyt
) free(params->
A_yyt
);
18
if
(params->
B_yyt
) free(params->
B_yyt
);
19
if
(params->
C_yyt
) free(params->
C_yyt
);
20
if
(params->
D_yyt
) free(params->
D_yyt
);
21
if
(params->
c_yyt
) free(params->
c_yyt
);
22
if
(params->
A_yeps
) free(params->
A_yeps
);
23
if
(params->
B_yeps
) free(params->
B_yeps
);
24
if
(params->
C_yeps
) free(params->
C_yeps
);
25
if
(params->
D_yeps
) free(params->
D_yeps
);
26
if
(params->
c_yeps
) free(params->
c_yeps
);
27
return
(0);
28
}
GLMGEEParameters::C_yeps
double * C_yeps
Definition:
timeintegration_struct.h:276
GLMGEEParameters::C_yyt
double * C_yyt
Definition:
timeintegration_struct.h:271
timeintegration.h
Contains function declarations for time integration.
GLMGEEParameters::c_yyt
double * c_yyt
Definition:
timeintegration_struct.h:271
GLMGEEParameters::A_yyt
double * A_yyt
Definition:
timeintegration_struct.h:271
GLMGEEParameters::c_yeps
double * c_yeps
Definition:
timeintegration_struct.h:276
GLMGEEParameters::A_yeps
double * A_yeps
Definition:
timeintegration_struct.h:276
GLMGEEParameters::D_yyt
double * D_yyt
Definition:
timeintegration_struct.h:271
GLMGEEParameters::D_yeps
double * D_yeps
Definition:
timeintegration_struct.h:276
GLMGEEParameters
Structure containing the parameters for the General Linear Methods with Global Error Estimators (GLM-...
Definition:
timeintegration_struct.h:267
GLMGEEParameters::B_yeps
double * B_yeps
Definition:
timeintegration_struct.h:276
GLMGEEParameters::B_yyt
double * B_yyt
Definition:
timeintegration_struct.h:271
TimeGLMGEECleanup
int TimeGLMGEECleanup(void *s)
Definition:
TimeGLMGEECleanup.c:14