forked from GEOS-DEV/GEOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelasticHollowCylinder_base.xml
185 lines (163 loc) · 4.42 KB
/
elasticHollowCylinder_base.xml
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<?xml version="1.0" ?>
<Problem>
<!-- SPHINX_Gravity -->
<Solvers
gravityVector="{ 0.0, 0.0, 0.0 }">
<!-- SPHINX_GravityEnd -->
<!-- SPHINX_SolidMechanicsSolver -->
<SolidMechanicsLagrangianSSLE
name="lagsolve"
timeIntegrationOption="QuasiStatic"
discretization="FE1"
targetRegions="{ Region1 }">
<!-- SPHINX_SolidMechanicsSolverEnd -->
<NonlinearSolverParameters
newtonTol="1.0e-6"
newtonMaxIter="8"/>
<LinearSolverParameters
directParallel="0"/>
</SolidMechanicsLagrangianSSLE>
</Solvers>
<!-- SPHINX_WellboreMesh -->
<Mesh>
<InternalWellbore
name="mesh1"
elementTypes="{ C3D8 }"
radius="{ 0.1, 0.11 }"
theta="{ 0, 360 }"
zCoords="{ 0, 1 }"
nr="{ 4 }"
nt="{ 16 }"
nz="{ 1 }"
trajectory="{ { 0.0, 0.0, 0.0 },
{ 0.0, 0.0, 1.0 } }"
cellBlockNames="{ cb1 }"/>
</Mesh>
<Geometry>
<Box
name="xConstraint"
xMin="{ -0.01, -1e9, -1e9 }"
xMax="{ 0.01, 1e9, 1e9 }"/>
<Box
name="yConstraint"
xMin="{ -1e9, -0.01, -1e9 }"
xMax="{ 1e9, 0.01, 1e9 }"/>
</Geometry>
<!-- SPHINX_WellboreMeshEnd -->
<Events
maxTime="5.0">
<!-- This event is applied every cycle, and overrides the
solver time-step request -->
<!-- SPHINX_Execution -->
<PeriodicEvent
name="solverApplications"
forceDt="1.0"
target="/Solvers/lagsolve"/>
<!-- SPHINX_ExecutionEnd -->
<!-- This event is applied every 5.0e-5s. The targetExactTimestep
flag allows this event to request a dt modification to match an
integer multiple of the timeFrequency. -->
<PeriodicEvent
name="outputs"
timeFrequency="1.0"
target="/Outputs/vtkOutput"/>
<PeriodicEvent
name="restarts"
timeFrequency="2.0"
targetExactTimestep="0"
target="/Outputs/restartOutput"/>
</Events>
<!-- SPHINX_FEDiscretization -->
<NumericalMethods>
<FiniteElements>
<FiniteElementSpace
name="FE1"
order="1"/>
</FiniteElements>
</NumericalMethods>
<!-- SPHINX_FEDiscretizationEnd -->
<Constitutive>
<!-- SPHINX_Material -->
<ElasticIsotropic
name="isotropicMaterial"
defaultDensity="2700"
defaultBulkModulus="175e9"
defaultShearModulus="80.8e9"/>
<!-- SPHINX_MaterialEnd -->
<ElasticTransverseIsotropic
name="transverseIsotropicMaterial"
defaultDensity="2700"
defaultPoissonRatioAxialTransverse="0.3"
defaultPoissonRatioTransverse="0.3"
defaultYoungModulusAxial="210.0e9"
defaultYoungModulusTransverse="210.0e9"
defaultShearModulusAxialTransverse="80.8e9"/>
<ElasticOrthotropic
name="orthotropicMaterial"
defaultDensity="2700"
defaultC11="283e9"
defaultC12="121e9"
defaultC13="121e9"
defaultC22="283e9"
defaultC23="121e9"
defaultC33="283e9"
defaultC44="80.8e9"
defaultC55="80.8e9"
defaultC66="80.8e9"/>
</Constitutive>
<!-- SPHINX_BoundaryConditions -->
<FieldSpecifications>
<FieldSpecification
name="xnegConstraint"
objectPath="nodeManager"
fieldName="totalDisplacement"
component="0"
scale="0.0"
setNames="{ xConstraint }"/>
<FieldSpecification
name="ynegConstraint"
objectPath="nodeManager"
fieldName="totalDisplacement"
component="1"
scale="0.0"
setNames="{ yConstraint }"/>
<FieldSpecification
name="zconstraint"
objectPath="nodeManager"
fieldName="totalDisplacement"
component="2"
scale="0.0"
setNames="{ zneg, zpos }"/>
<Traction
name="insituStress"
objectPath="faceManager"
tractionType="stress"
scale="1.0e6"
inputStress="{ -1, -1.5, -2, 0, 0, 0 }"
setNames="{ rpos }"/>
<Traction
name="innerPressure"
objectPath="faceManager"
tractionType="normal"
scale="-1.0e6"
functionName="timeFunction"
setNames="{ rneg }"/>
</FieldSpecifications>
<!-- SPHINX_BoundaryConditionsEnd -->
<!-- SPHINX_TableFunction -->
<Functions>
<TableFunction
name="timeFunction"
inputVarNames="{ time }"
coordinates="{ 0.0, 1.0, 10.0 }"
values="{ 0.0, 0.0, 10.0 }"/>
</Functions>
<!-- SPHINX_TableFunctionEnd -->
<Outputs>
<VTK
name="vtkOutput"
/>
<Restart
name="restartOutput"/>
</Outputs>
</Problem>