-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
parameters.prm
81 lines (59 loc) · 2.23 KB
/
parameters.prm
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
# Listing of Parameters
# Dimensional quantities are in SI units
# --------------------------------------
subsection Time
# End time
set End time = 10
# Time step size
set Time step size = 0.005
# Write results every x timesteps
set Output interval = 10
# Output folder
set Output folder = dealii-output
end
subsection Discretization
# Polynomial degree of the FE system
set Polynomial degree = 3
end
subsection System properties
# Poisson's ratio
set Poisson's ratio = 0.4
# Shear modulus
set Shear modulus = 0.5e6
# Density
set rho = 1000
# Body forces x,y,z
set body forces = 0.0,0.0,0.0
end
subsection Solver
# Structural model to be used: linear or neo-Hookean
set Model = linear
# Linear solver: CG or Direct
set Solver type = Direct
# Max CG solver iterations (multiples of the system matrix size)
# In 2D, this value is best set at 2. In 3D, a value of 1 works fine.
set Max iteration multiplier = 1
# Relative drop criterion for CG solver residual (multiplied by residual norm, ignored if Model == linear or solver == direct)
# Hard-coded to absolute criterion of 1e-10 for the linear model.
set Residual = 1e-6
# Number of Newton-Raphson iterations allowed (ignored if Model == linear)
set Max iterations Newton-Raphson = 10
# Relative displacement error tolerance for non-linear iteration (ignored if Model == linear)
set Tolerance displacement = 1.0e-6
# Relative force residual tolerance for non-linear iteration (ignored if Model == linear)
set Tolerance force = 1.0e-9
end
subsection precice configuration
# Cases: FSI3 or PF for perpendicular flap
set Scenario = FSI3
# Name of the precice configuration file
set precice config-file = precice-config.xml
# Name of the participant in the precice-config.xml file
set Participant name = Solid
# Name of the coupling mesh in the precice-config.xml file
set Mesh name = Solid-Mesh
# Name of the read data in the precice-config.xml file
set Read data name = Stress
# Name of the write data in the precice-config.xml file
set Write data name = Displacement
end