HyPar  1.0
Finite-Difference Hyperbolic-Parabolic PDE Solver on Cartesian Grids
BurgersCleanup.c File Reference

Contains the function to clean up the Burgers physics module. More...

#include <stdlib.h>
#include <physicalmodels/burgers.h>

Go to the source code of this file.

Functions

int BurgersCleanup (void *s)
 

Detailed Description

Contains the function to clean up the Burgers physics module.

Author
John Loffeld

Definition in file BurgersCleanup.c.

Function Documentation

◆ BurgersCleanup()

int BurgersCleanup ( void *  s)

Function to clean up all physics-related allocations for the Burgers equations

Parameters
sSolver object of type HyPar

Definition at line 10 of file BurgersCleanup.c.

11 {
12  Burgers *physics = (Burgers*) s;
13 
14  return(0);
15 }