From 71474266ac21aa00bc75b7c06c7f1487afb950c7 Mon Sep 17 00:00:00 2001
From: David <forenkram@gmx.de>
Date: Wed, 17 Jun 2020 10:38:43 +0200
Subject: [PATCH] fix doubling in output name

---
 .../TP-R-2-patch-realistic-same-intrinsic-perm.py  | 14 +++-----------
 1 file changed, 3 insertions(+), 11 deletions(-)

diff --git a/Two-phase-Richards/two-patch/TP-R-two-patch-test-case/TP-R-2-patch-realistic-same-intrinsic-perm.py b/Two-phase-Richards/two-patch/TP-R-two-patch-test-case/TP-R-2-patch-realistic-same-intrinsic-perm.py
index 3be3d6f..58ba5d9 100755
--- a/Two-phase-Richards/two-patch/TP-R-two-patch-test-case/TP-R-2-patch-realistic-same-intrinsic-perm.py
+++ b/Two-phase-Richards/two-patch/TP-R-two-patch-test-case/TP-R-2-patch-realistic-same-intrinsic-perm.py
@@ -120,17 +120,9 @@ else:
     }
 
 # OUTPUT FILE STRING  #########################################################
-if mesh_study:
-    output_string = "./output/{}-{}_timesteps{}_P{}".format(
-        datestr, use_case, number_of_timesteps, FEM_Lagrange_degree
-        )
-else:
-    for tol in resolutions.values():
-        solver_tol = tol
-    output_string = "./output/{}-{}_timesteps{}_P{}_solver_tol{}".format(
-        datestr, use_case, number_of_timesteps, FEM_Lagrange_degree, solver_tol
-        )
-
+output_string = "./output/{}-{}_timesteps{}_P{}".format(
+    datestr, use_case, number_of_timesteps, FEM_Lagrange_degree
+    )
 
 # DOMAIN AND INTERFACE  #######################################################
 # global simulation domain domain
-- 
GitLab