forked from idaholab/moose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chop_restart.i
419 lines (397 loc) · 7.44 KB
/
chop_restart.i
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
# ------------------------
# slope of the bottom boundary (in degrees)
bed_slope = 15
# change coordinate system to add a slope
gravity_x = ${fparse
cos((90 - bed_slope) / 180 * pi) * 9.81
}
gravity_z = ${fparse
cos(bed_slope / 180 * pi) * 9.81
}
# account for slope in BC on displacement
# bed_factor_x = ${fparse
# cos(bed_slope / 180 * pi)
# }
# bed_factor_z = ${fparse
# sin(bed_slope / 180 * pi)
# }
# ------------------------
[Mesh]
[channel]
type = FileMeshGenerator
file = chop_init_out.e
[]
[chop_area]
type = SubdomainBoundingBoxGenerator
input = channel
block_id = 2
bottom_left = '29500 -100 0'
top_right = '30000 2100 1000'
[]
[chop_event]
type = BlockDeletionGenerator
input = chop_area
block = 2
new_boundary = downstream
[]
[]
[Variables]
[disp_x]
order = FIRST
family = LAGRANGE
[]
[disp_y]
order = FIRST
family = LAGRANGE
[]
[disp_z]
order = FIRST
family = LAGRANGE
[]
[]
[AuxVariables]
[vel_x]
[]
[accel_x]
[]
[vel_y]
[]
[accel_y]
[]
[vel_z]
[]
[accel_z]
[]
[stress_xx]
order = CONSTANT
family = MONOMIAL
[]
[stress_xy]
order = CONSTANT
family = MONOMIAL
[]
[stress_xz]
order = CONSTANT
family = MONOMIAL
[]
[stress_yx]
order = CONSTANT
family = MONOMIAL
[]
[stress_yy]
order = CONSTANT
family = MONOMIAL
[]
[stress_yz]
order = CONSTANT
family = MONOMIAL
[]
[stress_zx]
order = CONSTANT
family = MONOMIAL
[]
[stress_zy]
order = CONSTANT
family = MONOMIAL
[]
[stress_zz]
order = CONSTANT
family = MONOMIAL
[]
[]
[Functions]
[weight]
type = ParsedFunction
value = '-8829*(1000-z)' # initial stress that should result from the weight force
[]
[upstream_dirichlet]
type = ParsedFunction
value = '0'
[]
[frontal_pressure]
type = ParsedFunction
value = '8829*(1000-z)'
[]
[solution_disp_x]
type = SolutionFunction
from_variable = disp_x
solution = init_solution
[]
[solution_disp_y]
type = SolutionFunction
from_variable = disp_y
solution = init_solution
[]
[solution_disp_z]
type = SolutionFunction
from_variable = disp_z
solution = init_solution
[]
[]
[Kernels]
[gravity_x]
type = Gravity
variable = disp_x
value= ${gravity_x}
[]
[gravity_y]
type = Gravity
variable = disp_y
value = 0.
[]
[gravity_z]
type = Gravity
variable = disp_z
value = -${gravity_z}
[]
[DynamicTensorMechanics]
stiffness_damping_coefficient = 0.02
mass_damping_coefficient = 0.02
displacements = 'disp_x disp_y disp_z'
[]
[inertia_x]
type = InertialForce
variable = disp_x
velocity = vel_x
acceleration = accel_x
beta = 0.25
gamma = 0.5
[]
[inertia_y]
type = InertialForce
variable = disp_y
velocity = vel_y
acceleration = accel_y
beta = 0.25
gamma = 0.5
[]
[inertia_z]
type = InertialForce
variable = disp_z
velocity = vel_z
acceleration = accel_z
beta = 0.25
gamma = 0.5
[]
[]
[AuxKernels]
[accel_x]
type = SolutionAux
variable = accel_x
from_variable = accel_x
solution = init_solution
[]
[vel_x]
type = SolutionAux
variable = vel_x
from_variable = vel_x
solution = init_solution
[]
[accel_y]
type = SolutionAux
variable = accel_y
from_variable = accel_y
solution = init_solution
[]
[vel_y]
type = SolutionAux
variable = vel_y
from_variable = vel_y
solution = init_solution
[]
[accel_z]
type = SolutionAux
variable = accel_z
from_variable = accel_z
solution = init_solution
[]
[vel_z]
type = SolutionAux
variable = vel_z
from_variable = vel_z
solution = init_solution
[]
[stress_xx]
type = SolutionAux
variable = stress_xx
from_variable = stress_xx
solution = init_solution
[]
[stress_xy]
type = SolutionAux
variable = stress_xy
from_variable = stress_xy
solution = init_solution
[]
[stress_xz]
type = SolutionAux
variable = stress_xz
from_variable = stress_xz
solution = init_solution
[]
[stress_yx]
type = SolutionAux
variable = stress_yx
from_variable = stress_yx
solution = init_solution
[]
[stress_yy]
type = SolutionAux
variable = stress_yy
from_variable = stress_yy
solution = init_solution
[]
[stress_yz]
type = SolutionAux
variable = stress_yz
from_variable = stress_yz
solution = init_solution
[]
[stress_zx]
type = SolutionAux
variable = stress_zx
from_variable = stress_zx
solution = init_solution
[]
[stress_zy]
type = SolutionAux
variable = stress_zy
from_variable = stress_zy
solution = init_solution
[]
[stress_zz]
type = SolutionAux
variable = stress_zz
from_variable = stress_zz
solution = init_solution
[]
[]
[Materials]
[ice_elasticity]
type = ComputeIsotropicElasticityTensor
youngs_modulus = 8.7e9 #Pa
poissons_ratio = 0.31
[]
[strain]
type = ComputeIncrementalSmallStrain
displacements = 'disp_x disp_y disp_z'
[]
[density]
type = GenericConstantMaterial
prop_names = density
prop_values = 900 #kg/m3
[]
[stress]
type = ComputeFiniteStrainElasticStress
[]
[von_mises]
type = RankTwoInvariant
invariant = 'VonMisesStress'
property_name = von_mises
rank_two_tensor = stress
outputs = exodus
[]
[]
[UserObjects]
[init_solution]
type = SolutionUserObject
mesh = chop_init_out.e
timestep = LATEST
[]
[]
[ICs]
[init_disp_x]
type = FunctionIC
variable = disp_x
function = solution_disp_x
[]
[init_disp_y]
type = FunctionIC
variable = disp_y
function = solution_disp_y
[]
[init_disp_z]
type = FunctionIC
variable = disp_z
function = solution_disp_z
[]
[]
[BCs]
[upstream_dirichlet]
type = DirichletBC
boundary = 'upstream'
variable = disp_x
value = 0.0
[]
[Pressure]
[downstream_pressure]
boundary = downstream
function = frontal_pressure
displacements = 'disp_x disp_y disp_z'
[]
[]
[anchor_bottom_x]
type = DirichletBC
variable = disp_x
boundary = 'bottom'
value = 0.0
[]
[anchor_botom_y]
type = DirichletBC
variable = disp_y
boundary = 'bottom'
value = 0.0
[]
[anchor_bottom_z]
type = DirichletBC
variable = disp_z
boundary = 'bottom'
value = 0.0
[]
[anchor_sides_x]
type = DirichletBC
variable = disp_x
boundary = 'left right'
value = 0.0
[]
[anchor_sides_y]
type = DirichletBC
variable = disp_y
boundary = 'left right'
value = 0.
[]
[anchor_sides_z]
type = DirichletBC
variable = disp_z
boundary = 'left right'
value = 0.0
[]
[]
[Preconditioning]
[andy]
type = SMP
full = true
[]
[]
[Executioner]
type = Transient
petsc_options = '-ksp_snes_ew'
petsc_options_iname = '-pc_type -pc_factor_mat_solver_package'
petsc_options_value = 'lu superlu_dist'
solve_type = 'NEWTON'
nl_rel_tol = 1e-7
nl_abs_tol = 1e-12
dt = 0.02
end_time = 50.
timestep_tolerance = 1e-6
automatic_scaling = true
[TimeIntegrator]
type = NewmarkBeta
beta = 0.25
gamma = 0.5
[]
[]
[Outputs]
exodus = true
perf_graph = true
[]