Skip to content
Snippets Groups Projects
Commit 739e3b9b authored by David Seus's avatar David Seus
Browse files

correct setup of layered soil example

parent 7c63c4d7
No related branches found
No related tags found
No related merge requests found
...@@ -28,29 +28,29 @@ datestr = date.strftime("%Y-%m-%d") ...@@ -28,29 +28,29 @@ datestr = date.strftime("%Y-%m-%d")
sym.init_printing() sym.init_printing()
# solver_tol = 6E-7 # solver_tol = 6E-7
use_case = "TP-TP-layered-soil-pure-dd" use_case = "TP-TP-layered-soil-pure-dd"
max_iter_num = 1000 max_iter_num = 200
FEM_Lagrange_degree = 1 FEM_Lagrange_degree = 1
mesh_study = True mesh_study = True
resolutions = { resolutions = {
1: 1e-6, # h=2 1: 5e-4, # h=2
2: 1e-6, # h=1.1180 2: 5e-4, # h=1.1180
4: 1e-6, # h=0.5590 4: 3e-4, # h=0.5590
8: 1e-6, # h=0.2814 8: 1e-6, # h=0.2814
16: 1e-6, # h=0.1412 16: 1e-6, # h=0.1412
32: 1e-6, # h=0.0706 32: 1e-6, # h=0.0706
64: 1e-6, 64: 1e-6, # 0.03535
128: 1e-6, 128: 1e-6, # 0.01768
# 256: 1e-7 # 256: 1e-6 # 0.00884
} }
############ GRID ####################### ############ GRID #######################
# mesh_resolution = 20 # mesh_resolution = 20
timestep_size = 0.005 timestep_size = 0.005
number_of_timesteps = 100 number_of_timesteps = 140
plot_timestep_every = 2 plot_timestep_every = 1
# decide how many timesteps you want analysed. Analysed means, that we write out # decide how many timesteps you want analysed. Analysed means, that we write out
# subsequent errors of the L-iteration within the timestep. # subsequent errors of the L-iteration within the timestep.
number_of_timesteps_to_analyse = 0 number_of_timesteps_to_analyse = 6
starttimes = [0.0] starttimes = [0.0]
Lw = 0.025 #/timestep_size Lw = 0.025 #/timestep_size
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment