CArl
Code Arlequin / C++ implementation
ext_solver_libmesh_enums.h File Reference

Go to the source code of this file.

Enumerations

enum  WeightFunctionSystemType { NO_WEIGHT = 0, MACRO = 1, MICRO = 2 }
 Enumerate used to define which weight function must be used to assemble the system. More...
 
enum  boundary_id_cube {
  MIN_Z = 1, MIN_Y = 2, MAX_X = 3, MAX_Y = 4,
  MIN_X = 5, MAX_Z = 6
}
 Small enumerate defining a cube's boundary ID's. More...
 

Enumeration Type Documentation

Small enumerate defining a cube's boundary ID's.

Enumerator
MIN_Z 
MIN_Y 
MAX_X 
MAX_Y 
MIN_X 
MAX_Z 

Definition at line 21 of file ext_solver_libmesh_enums.h.

22 {
23  MIN_Z = 1,
24  MIN_Y = 2,
25  MAX_X = 3,
26  MAX_Y = 4,
27  MIN_X = 5,
28  MAX_Z = 6
29 };

Enumerate used to define which weight function must be used to assemble the system.

Enumerator
NO_WEIGHT 
MACRO 
MICRO 

Definition at line 14 of file ext_solver_libmesh_enums.h.

14  {
15  NO_WEIGHT = 0,
16  MACRO = 1,
17  MICRO = 2
18 };