AdH Kraken 0.0.0
Next generation Adaptive Hydraulics
Loading...
Searching...
No Matches
smat_grid.h
1#ifndef H_SMAT_GRID_
2#define H_SMAT_GRID_
3
4typedef struct {
5 int max_lev; /* the maximum number of refinement levels in the material */
6 double refine_tolerance; /* the refinement tolerances */
7 double unrefine_tolerance; /* the unrefinement tolerances */
9
10// Methods
11void smat_grid_alloc_init(SMAT_GRID **mat_grid);
12void smat_grid_free(SMAT_GRID *mat_grid);
13
14#endif
Definition: smat_grid.h:4