-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathVFCommon_private.h
66 lines (59 loc) · 1.08 KB
/
VFCommon_private.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
VFCommon_private.h
This has to be the stupidest name in the world...
We'll have to deal with it until the project is completely reorganized
(c) 2010-2013 Blaise Bourdin [email protected]
*/
#if !defined( VF_Standalone_VFCommon_private_h)
#define VF_Standalone_VFCommon_private_h
static const char *VFMechSolverName[] = {
"FRACTURE",
"ELASTICITY",
"NOMECH",
"VFMechSolverName",
"",
0
};
static const char *VFUnilateralName[] = {
"NONE",
"NOCOMPRESSION",
"VFUnilateralName",
"",
0
};
static const char *VFFlowSolverName[] = {
"FLOWSOLVER_SNESSTANDARDFEM",
"FLOWSOLVER_TS",
"FLOWSOLVER_SNES",
"FLOWSOLVER_FEM",
"FLOWSOLVER_KSPMIXEDFEM",
"FLOWSOLVER_SNESMIXEDFEM",
"FLOWSOLVER_TSMIXEDFEM",
"FAKE",
"READFROMFILES",
"FLOWSOLVER_NONE",
"VFFlowSolverName",
"",
0
};
static const char *ResFlowMechCouplingName[] = {
"FIXEDSTRAIN",
"FIXEDSTRESS",
"ResFlowMechCouplingName",
"",
0
};
static const char *VFHeatSolverName[] = {
"HEATSOLVER_SNESFEM",
"VFHeatSolverName",
"",
0
};
static const char *VFFileFormatName[] = {
"bin",
"vtk",
"VFFileFormatName",
"",
0
};
#endif