-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparameters_stokes.prm
More file actions
50 lines (41 loc) · 1.46 KB
/
parameters_stokes.prm
File metadata and controls
50 lines (41 loc) · 1.46 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
# Listing of Parameters
# ---------------------
#################################################################################
# Discretization
set dim = 2
set degree = 1
set refinements = 6
set quad_degree = 11
set initial_grid_2D = 2, 2
set initial_grid_3D = 1, 1, 1
#################################################################################
# Boundary condition enforcement
# (D for Dirichlet and N for Neumann)
# Faces: {bottom, right, top, left, out of plane, inside plane}
# Example 2D: N, D, N, D represents bottom and top Neumann and other
# 2 sides Dirichlet
subsection External Boundary Conditions
set essential_dirichlet = yes
set boundary_2D = N, D, N, D
set boundary_3D = N, D, D, D, D, D
end
#################################################################################
# Mortar Enforcement
subsection Mortar
set mortar = yes
set continuous_mortar = no
set mortar_degree = 1
end
#################################################################################
# Iterative Method for solver ('CG' or 'GMRES')
subsection Solver
set iterative_method = GMRES
set max_iter = 100
set tol = 1e-9
end
#################################################################################
# Compute and print the matrix for interface operator
# (currently only works for m x 1 # grid setup)
subsection Print Interface Matrix
set print_interface_matrix = no
end