Newer
Older
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
# Number of grid levels
minLevel = 0
maxLevel = 0
# Initial load increment
loadIncrement = 1
# Max number of steps of the Newton solver
maxNewtonSteps = 10
# Number of multigrid iterations per time step
numIt = 100
# Number of presmoothing steps
nu1 = 3
# Number of postsmoothing steps
nu2 = 3
# Number of coarse grid corrections
mu = 1
# Number of base solver iterations
baseIt = 100
# Tolerance of the solver
tolerance = -1
# Tolerance of the base grid solver
baseTolerance = -1
############################
# Problem specifications
############################
# Number of elements of the rod grid
numRodElements = 40