HyPar
1.0
Finite-Difference Hyperbolic-Parabolic PDE Solver on Cartesian Grids
ShallowWater1DCleanup.c
Go to the documentation of this file.
1
6
#include <stdlib.h>
7
#include <
physicalmodels/shallowwater1d.h
>
8
10
int
ShallowWater1DCleanup
(
11
void
*s
12
)
13
{
14
ShallowWater1D
*param = (
ShallowWater1D
*) s;
15
free(param->
b
);
16
return
(0);
17
}
ShallowWater1D
Structure containing variables and parameters specific to the 1D Shallow Water equations. This structure contains the physical parameters, variables, and function pointers specific to the 1D ShallowWater equations.
Definition:
shallowwater1d.h:137
ShallowWater1DCleanup
int ShallowWater1DCleanup(void *s)
Definition:
ShallowWater1DCleanup.c:10
shallowwater1d.h
1D Shallow Water Equations
ShallowWater1D::b
double * b
Definition:
shallowwater1d.h:141