C++ main module for emicrom Package  1.0
EMM_Types.h
Go to the documentation of this file.
1 #ifndef EMM_TYPES_H
2 #define EMM_TYPES_H
3 
4 #include "types.h"
5 
6 //int, real, complex type definitions
7 //=======================================
8 
9 //dimension of point 0,1,2,3
10 #define tDimension tUCInt
11 
12 
13 //[0,2^8[=[0,256[
14 //indicates the data on cell per face
15 //f$ N=sum_{i=0}^{i=5} N_f 2^f \f$ \f$ N_f=1 \f$ if the condition is true on face f
16 #define tCellFlag tUCInt
17 
18 //indicate if the limit condition is dirichlet (true=1) or neumann (false=0)
19 #define tLimitCondition tUCInt
20 
21 
22 #endif