-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexponential-softening-refined.json
95 lines (81 loc) · 1.34 KB
/
exponential-softening-refined.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
{
"stress_scheme_update":"USL",
"shape_function":"GIMP",
"time":5,
"time_step":1e-5,
"gravity":[0.0,0.0,-10],
"n_threads":2,
"n_phases":1,
"damping":
{
"type":"local",
"value":0.00
},
"results":
{
"print":50,
"fields":["id","displacement","material","active","pressure","external_force"]
},
"mesh":
{
"cells_dimension":[0.125,0.125,0.125],
"cells_number":[96,1,64],
"origin":[0,0,0],
"boundary_conditions":
{
"plane_X0":"fixed",
"plane_Y0":"sliding",
"plane_Z0":"fixed",
"plane_Xn":"free",
"plane_Yn":"sliding",
"plane_Zn":"sliding"
}
},
"material":
{
"elastic":
{
"type":"elastic",
"id":1,
"young":100e6,
"density":2700,
"poisson":0.25
},
"plastic":
{
"id":2,
"type":"mohr-coulomb",
"young":100e6,
"density":2700,
"poisson":0.25,
"friction":30.0,
"cohesion":6e6,
"tensile":3e6,
"softening":"exponential",
"softening.exponential.eta":50,
"softening.tensile.residual":1e-6,
"softening.tensile.active":true
}
},
"body":
{
"body_1":
{
"type":"cuboid",
"id":1,
"point_p1":[5.75,0,0],
"point_p2":[6.25,0.125,2],
"material_id":1,
"initial_velocity":[0,0,0]
},
"body_2":
{
"type":"cuboid",
"id":2,
"point_p1":[2,0,4],
"point_p2":[10,0.125,6],
"material_id":2,
"initial_velocity":[0,0,-5]
}
}
}