-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrun.json
96 lines (96 loc) · 2.07 KB
/
run.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
{
"geometry": [
{
"mesh": "slide.msh",
"is_obstacle": true,
"volume_selection": 3,
"surface_selection": 3
},
{
"mesh": "stanford-bunny.obj_.msh",
"transformation": {
"translation": [0.5, -0.13, -0.7],
"rotation": [0, 0, 0],
"rotation_mode": "xyz",
"scale": 4
},
"volume_selection": 1,
"surface_selection": 1
}
],
"space": {
"discr_order": 1,
"advanced": {
"quadrature_order": 5
}
},
"time": {
"tend": 1,
"dt": 0.05
},
"contact": {
"enabled": true,
"friction_coefficient": 0.5
},
"solver": {
"linear": {
"solver": ["Eigen::PardisoLDLT", "Eigen::AccelerateLDLT", "Eigen::SimplicialLDLT"]
},
"nonlinear": {
"line_search": {
"method": "Backtracking"
},
"grad_norm": 1e-6
},
"contact": {
"barrier_stiffness": 1e5
}
},
"initial_conditions": {
"velocity": [
{
"id": 1,
"value": [0, 0, 2]
}
]
},
"boundary_conditions": {
"rhs": [
0,
9.8,
0
],
"dirichlet_boundary": [
{
"id": 3,
"value": [
0,
0,
0
]
}
]
},
"materials": {
"type": "NeoHookean",
"E": 1e5,
"nu": 0.48,
"rho": 1000
},
"output": {
"paraview": {
"file_name": "sim.pvd",
"high_order_mesh": false,
"surface": true,
"volume": false,
"vismesh_rel_area": 1
},
"advanced": {
"save_time_sequence": true
},
"directory": "result",
"log": {
"level": "info"
}
}
}