-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsolver.defaults.json
125 lines (124 loc) · 2.27 KB
/
solver.defaults.json
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
R"====({
"approxSpace":null,
"discretization":null,
"nonlinearSolver":{
"newton":{
"convCheck":"standard",
"linSolver":"bicgstab",
"lineSearch":null
}
},
"linearSolver":{
"linear":{
"precond":"ilu",
"convCheck":"standard"
},
"cg":{
"precond":"ilu",
"convCheck":"standard"
},
"bicgstab":{
"precond":"ilu",
"convCheck":"standard"
},
"lu":{
"info":false,
"showProgress":true
},
"uglu":{
"info":false,
"showProgress":true
}
},
"preconditioner":{
"gmg":{
"adaptive":false,
"approxSpace":null,
"baseLevel":0,
"baseSolver":"lu",
"cycle":"V",
"discretization":null,
"gatheredBaseSolverIfAmbiguous":false,
"preSmooth":3,
"postSmooth":3,
"rap":false,
"rim":false,
"emulateFullRefined":false,
"smoother":"gs",
"transfer":"std",
"debug":false,
"mgStats":null
},
"ilu":{
"beta":0,
"damping":1,
"sort":false,
"sortEps":1e-50,
"inversionEps":1e-08,
"consistentInterfaces":false,
"overlap":false,
"ordering":null
},
"ilut":{
"threshold":1e-06,
"ordering":"NativeCuthillMcKee"
},
"gs":{
"consistentInterfaces":false,
"overlap":false
},
"sgs":{
"consistentInterfaces":false,
"overlap":false
},
"jac":{
"damping":0.66
},
"schur":{
"dirichletSolver":"lu",
"skeletonSolver":"lu"
}
},
"transfer":{
"std":{
"restrictionDamp":1,
"prolongationDamp":1,
"enableP1LagrangeOptimization":true,
"debug":false
}
},
"convCheck":{
"standard":{
"iterations":100,
"absolute":1e-12,
"reduction":1e-06,
"verbose":true
}
},
"lineSearch":{
"standard":{
"maxSteps":10,
"lambdaStart":1,
"lambdaReduce":0.5,
"checkAll":false,
"acceptBest":true
}
},
"mgStats":{
"standard":{
"filenamePrefix":"mgstats",
"exitOnError":false,
"writeErrVecs":false,
"writeErrDiffs":false,
"activeStages":null
}
},
"timeSolver":{
"fixed":{
"scheme":"ImplEuler",
"start":0,
"stop":1,
"dt":0.1
}
}
})===="