From 796a44927d656fa4ffefb2c23b81ae68f7413946 Mon Sep 17 00:00:00 2001
From: David <forenkram@gmx.de>
Date: Tue, 4 Aug 2020 18:20:12 +0200
Subject: [PATCH] reset layered soil with inner patch

---
 .../TP-R-layered_soil_with_inner_patch-realistic.py  | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/Two-phase-Richards/multi-patch/layered_soil_with_inner_patch/TP-R-layered_soil_with_inner_patch-realistic.py b/Two-phase-Richards/multi-patch/layered_soil_with_inner_patch/TP-R-layered_soil_with_inner_patch-realistic.py
index 6b336df..3abb016 100755
--- a/Two-phase-Richards/multi-patch/layered_soil_with_inner_patch/TP-R-layered_soil_with_inner_patch-realistic.py
+++ b/Two-phase-Richards/multi-patch/layered_soil_with_inner_patch/TP-R-layered_soil_with_inner_patch-realistic.py
@@ -30,13 +30,13 @@ date = datetime.datetime.now()
 datestr = date.strftime("%Y-%m-%d")
 
 # Name of the usecase that will be printed during simulation.
-use_case = "TP-R-layered-soil-with-inner-patch-realistic-same-intrinsic"
+use_case = "TP-R-layered-soil-with-inner-patch-realistic-same-intrinsic-fine-tol"
 # The name of this very file. Needed for creating log output.
 thisfile = "TP-R-layered_soil_with_inner_patch-realistic.py"
 
 # GENERAL SOLVER CONFIG  ######################################################
 # maximal iteration per timestep
-max_iter_num = 1000
+max_iter_num = 2000
 FEM_Lagrange_degree = 1
 
 # GRID AND MESH STUDY SPECIFICATIONS  #########################################
@@ -47,7 +47,7 @@ resolutions = {
                 # 4: 2e-6,  # h=0.5590
                 # 8: 2e-6,  # h=0.2814
                 # 16: 1e-6, # h=0.1412
-                32: 1e-6,
+                32: 5e-7,
                 # 64: 2e-6,
                 # 128: 2e-6
                 }
@@ -57,8 +57,8 @@ resolutions = {
 #  for each element t_0 in starttimes.
 starttimes = {0: 0.0}
 # starttimes = {0: 0.0, 1:0.3, 2:0.6, 3:0.9}
-timestep_size = 0.001
-number_of_timesteps = 1000
+timestep_size = 0.01
+number_of_timesteps = 500
 
 # LDD scheme parameters  ######################################################
 Lw1 = 0.01  # /timestep_size
@@ -114,7 +114,7 @@ analyse_condition = False
 # when number_of_timesteps is high, it might take a long time to write all
 # timesteps to disk. Therefore, you can choose to only write data of every
 # plot_timestep_every timestep to disk.
-plot_timestep_every = 3
+plot_timestep_every = 2
 # Decide how many timesteps you want analysed. Analysed means, that
 # subsequent errors of the L-iteration within the timestep are written out.
 number_of_timesteps_to_analyse = 5
-- 
GitLab