Skip to content
Snippets Groups Projects
Commit a8fc3a9a authored by David's avatar David
Browse files

reduce timestep size by 4

parent 5ec2cc75
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,7 @@ use_case = "TP-R-layered-soil-with-inner-patch-all-params-one"
# name of this very file. Needed for log output.
thisfile = "TP-R-layered_soil_with_inner_patch-all-params-one.py"
max_iter_num = 300
max_iter_num = 150
FEM_Lagrange_degree = 1
mesh_study = False
resolutions = {
......@@ -40,16 +40,16 @@ resolutions = {
# 2: 2e-6, # h=1.1180
# 4: 2e-6, # h=0.5590
# 8: 2e-6, # h=0.2814
# 16: 2e-6, # h=0.1412
# 32: 2e-6,
# 16: 7e-6, # h=0.1412
# 32: 5e-6,
64: 2e-6,
# 128: 2e-6
}
# GRID #######################
# mesh_resolution = 20
timestep_size = 0.001
number_of_timesteps = 1000
timestep_size = 0.00025
number_of_timesteps = 4000
plot_timestep_every = 4
# decide how many timesteps you want analysed. Analysed means, that we write
# out subsequent errors of the L-iteration within the timestep.
......@@ -103,7 +103,7 @@ lambda56_nw = 4
include_gravity = False
debugflag = True
analyse_condition = True
analyse_condition = False
if mesh_study:
output_string = "./output/{}-{}_timesteps{}_P{}".format(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment