Values, macros and structures in Gerris
From Gerris
(Difference between revisions)
| Revision as of 08:44, 15 May 2012 Blagree (Talk | contribs) ← Previous diff |
Revision as of 10:52, 15 May 2012 Blagree (Talk | contribs) Next diff → |
||
| Line 1: | Line 1: | ||
| - | === Values defined in Gerris === | + | == Values defined in Gerris == |
| - | N_CELLS = FTT_CELLS = | + | N_CELLS = FTT_CELLS = <math>2^{dimension}</math> |
| + | |||
| + | FTT_NEIGHBORS_2D = (FTT_BOTTOM) + 1 | ||
| + | |||
| + | GFS_STATUS_UNDEFINED = 0 | ||
| + | |||
| + | GFS_STATUS_SOLID = 1 | ||
| + | |||
| + | GFS_STATUS_FLUID = 2 | ||
| + | |||
| + | == Gerris Macros == | ||
| + | |||
| + | |||
| + | == Gerris structures == | ||
| + | |||
| + | === CellCube === | ||
Revision as of 10:52, 15 May 2012
Contents |
Values defined in Gerris
N_CELLS = FTT_CELLS = <math>2^{dimension}</math>
FTT_NEIGHBORS_2D = (FTT_BOTTOM) + 1
GFS_STATUS_UNDEFINED = 0
GFS_STATUS_SOLID = 1
GFS_STATUS_FLUID = 2
Gerris Macros

