Skip to content

Commit

Permalink
Allow tangential displacements at all boundaries. Also actually use t…
Browse files Browse the repository at this point in the history
…he iterative solve
  • Loading branch information
lindsayad authored and cticenhour committed Jan 16, 2019
1 parent 56fa083 commit d0caba5
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ time_unit_exponent=-5
endtime=${fparse 500e-5 / 10^time_unit_exponent}
period=${fparse 5e-5 / 10^time_unit_exponent}
timestep=${fparse period / 20}
dtmax=${fparse period / 10}
surfacetemp=${fparse 300 / 10^temperature_unit_exponent}
bottomtemp=${fparse 300 / 10^temperature_unit_exponent}
width=${fparse 8e-4 / 10^length_unit_exponent}
Expand Down Expand Up @@ -188,13 +187,13 @@ pooldepth=${width}
[./x_no_disp]
type = DirichletBC
variable = disp_x
boundary = 'bottom left right'
boundary = 'left right'
value = 0
[../]
[./y_no_disp]
type = DirichletBC
variable = disp_y
boundary = 'bottom left right'
boundary = 'bottom'
value = 0
[../]

Expand Down Expand Up @@ -349,11 +348,10 @@ pooldepth=${width}

line_search = 'none'
nl_max_its = 12
l_tol = 1e-3
dtmax = ${dtmax}
l_tol = 1e-2
[./TimeStepper]
type = IterationAdaptiveDT
optimal_iterations = 6
optimal_iterations = 8
dt = ${timestep}
linear_iteration_ratio = 1e6
growth_factor = 1.1
Expand Down

0 comments on commit d0caba5

Please sign in to comment.