1# Solve a transient instead of a steady problem?
2transient = true
3
4# The interval between our timesteps
5deltat = 0.25
6
7# And the number of timesteps to take.
8# Note: Use 25 timesteps to simulate approximately three periods of oscillation.
9n_timesteps = 5
10
11# Write out every nth timestep to file.
12write_interval = 1
13
14# Turn this off to see the NewtonSolver chatter
15solver_quiet = false
16
17# Nonlinear solver tolerance
18relative_step_tolerance = 1e-3
19
20relative_residual_tolerance = 1.e-3
21
22# File to open when doing an IGA run
23iga_filename = 'PressurizedCyl_Patch6_256Elem.bxt'
24