-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathFem.axl
More file actions
167 lines (164 loc) · 6.94 KB
/
Fem.axl
File metadata and controls
167 lines (164 loc) · 6.94 KB
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<?xml version="1.0" ?>
<module name="Fem" version="1.0">
<description>FEM module descriptor</description>
<entry-points>
<entry-point method-name="compute" name="Compute" where="compute-loop" property="none" />
<entry-point method-name="startInit" name="StartInit" where="start-init" property="none" />
</entry-points>
<variables>
<variable field-name="dU" name="dU" data-type="real3" item-kind="node" dim="0">
<description>Change in displacement U variable</description>
</variable>
<variable field-name="U" name="U" data-type="real3" item-kind="node" dim="0">
<description>Displacement U vector for time step t-1</description>
</variable>
<variable field-name="V" name="V" data-type="real3" item-kind="node" dim="0">
<description>Velocity V vector for time step t-1</description>
</variable>
<variable field-name="A" name="A" data-type="real3" item-kind="node" dim="0">
<description>Acceleration V vector for time step t-1</description>
</variable>
<variable field-name="node_coord" name="NodeCoord" data-type="real3" item-kind="node" dim="0">
<description>Node coordinates from Arcane variable</description>
</variable>
</variables>
<options>
<simple name = "f" type = "string[]" default="NULL NULL NULL" optional="true">
<description>Body force vector (space separated list).</description>
</simple>
<simple name="E" type="real" default="0.0">
<description>Youngs Modulus of the material.</description>
</simple>
<simple name="nu" type="real" default="0.0">
<description>Poissons ratio of the material.</description>
</simple>
<simple name="lambda" type="real" default="0.0" optional="true">
<description>Lame parameter of the material.</description>
</simple>
<simple name="mu" type="real" default="0.0" optional="true">
<description>Lame parameter of the material.</description>
</simple>
<simple name="rho" type="real" default="0.0">
<description>Density of the material.</description>
</simple>
<simple name="tmax" type="real" default="0.0">
<description>Maximum time.</description>
</simple>
<simple name="dt" type="real" default="0.0">
<description>Time step.</description>
</simple>
<simple name="etam" type="real" default="0.0">
<description>Eta m for Generalized Alpha time scheme.</description>
</simple>
<simple name="etak" type="real" default="0.0">
<description>Eta k for Generalized Alpha time scheme.</description>
</simple>
<simple name="alpm" type="real" default="0.0">
<description>Alpha m for Generalized Alpha time scheme.</description>
</simple>
<simple name="alpf" type="real" default="0.0">
<description>Alpha f for Generalized Alpha time scheme.</description>
</simple>
<simple name="result-file" type="string" optional="true">
<description>File name of a file containing the values of the solution vector to check the results</description>
</simple>
<simple name="time-discretization" type="string" default="Newmark-beta" optional="true">
<description>Type of time discretization for the solver</description>
</simple>
<simple name = "enforce-Dirichlet-method" type = "string" default="Penalty" optional="true">
<description>
Method via which Dirichlet boundary condition is imposed
</description>
</simple>
<simple name = "penalty" type = "real" default="1.e30" optional="true">
<description>
Penalty value for enforcing Dirichlet condition
</description>
</simple>
<simple name="matrix-format" type="string" default="DOK" optional="true">
<description>Which matrix format to use DOK|BSR|AF-BSR.</description>
</simple>
<simple name="petsc-flags" type="string" default="" optional="true">
<description>Flags for PETSc from commandline.</description>
</simple>
<simple name="solve-linear-system" type="bool" default="true" optional="true">
<description>Boolean to enable linear system solving.</description>
</simple>
<simple name="assemble-linear-system" type="bool" default="true" optional="true">
<description>Boolean to enable linear system assembly.</description>
</simple>
<simple name="cross-validation" type="bool" default="true" optional="true">
<description>Boolean to enable cross validation.</description>
</simple>
<!-- - - - - - dirichlet-boundary-condition - - - - -->
<complex name = "dirichlet-boundary-condition"
type = "DirichletBoundaryCondition"
minOccurs = "0"
maxOccurs = "unbounded"
>
<description>
Dirichlet boundary condition
</description>
<extended name = "surface" type = "Arcane::FaceGroup">
<description>
FaceGroup on which to apply these boundary condition
</description>
</extended>
<simple name = "u" type = "string[]" default="NULL NULL NULL" optional="true">
<description>
Dirichlet conditions on the surface (space separated list).
</description>
</simple>
</complex>
<!-- - - - - - dirichlet-point-condition - - - - -->
<complex name = "dirichlet-point-condition"
type = "DirichletPointCondition"
minOccurs = "0"
maxOccurs = "unbounded"
>
<description>
Dirichlet point condition
</description>
<extended name = "node" type = "Arcane::NodeGroup">
<description>
NodeGroup on which to apply these point Dirichlet condition
</description>
</extended>
<simple name = "u" type = "string[]" default="NULL NULL NULL" optional="true">
<description>
Dirichlet conditions on the surface (space separated list).
</description>
</simple>
</complex>
<!-- - - - - - neumann-boundary-condition - - - - -->
<complex name = "traction-boundary-condition"
type = "TractionBoundaryCondition"
minOccurs = "0"
maxOccurs = "unbounded"
>
<description>
Traction boundary condition
</description>
<extended name = "surface" type = "Arcane::FaceGroup">
<description>
FaceGroup on which to apply these boundary condition
</description>
</extended>
<simple name = "traction-input-file" type = "string" optional="true">
<description>
File containing traction inputs (three columns: (T,t_x,t_y))
</description>
</simple>
<simple name = "t" type = "string[]" default="NULL NULL NULL" optional="true">
<description>
Traction vector (space separated list).
</description>
</simple>
</complex>
<!-- - - - - - linear-system - - - - -->
<service-instance name = "linear-system"
type = "Arcane::FemUtils::IDoFLinearSystemFactory"
default = "AlephLinearSystem"
/>
</options>
</module>