-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdeal-fsi.prm
52 lines (37 loc) · 1.02 KB
/
deal-fsi.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
# Listing of Parameters
# ---------------------
subsection Boundary conditions
# Gravity in negative y-direction
set gravity = 2
# Traction in negative y-direction
set traction = 0
end
subsection Output
# This indicates between how many time steps we print the solution.
set output_interval = 1
# This indicates whether the solution is saved in paraview format.
set output_paraview = true
end
subsection Physical constants
# Young's modulus
set E = 1.4e6
# Poisson ratio
set nu = 0.4
# Density
set rho = 1000.0
end
subsection Space discretization
# The polynomial degree for the displacement space.
set fe_degree = 1
# The number of global refines we do on the mesh.
set n_of_refines = 0
end
subsection Time step data
# Time step size
set dt = 2.5e-3
# Final time of the simulation
set final_time = 0.05
# The variable theta is used to indicate which time stepping scheme to use,
# i.e. backward Euler, forward Euler or Crank-Nicolson.
set theta = 1.0
end