From 93eaae3916f251d5cae6c31beede42ce64ce5aa2 Mon Sep 17 00:00:00 2001 From: Anne van de Graaf Date: Wed, 22 Jan 2025 17:03:57 +0100 Subject: [PATCH] Removed two redundant default values for "reset_displacements" --- .../python_scripts/geomechanics_Pw_solver.py | 1 - .../python_scripts/geomechanics_U_Pw_solver.py | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/applications/GeoMechanicsApplication/python_scripts/geomechanics_Pw_solver.py b/applications/GeoMechanicsApplication/python_scripts/geomechanics_Pw_solver.py index f4983279daf..905b6ee0501 100644 --- a/applications/GeoMechanicsApplication/python_scripts/geomechanics_Pw_solver.py +++ b/applications/GeoMechanicsApplication/python_scripts/geomechanics_Pw_solver.py @@ -41,7 +41,6 @@ def GetDefaultParameters(cls): "compute_reactions": false, "move_mesh_flag": false, "nodal_smoothing": false, - "reset_displacements": false, "solution_type": "quasi_static", "scheme_type": "Newmark", "newmark_beta": 0.25, diff --git a/applications/GeoMechanicsApplication/python_scripts/geomechanics_U_Pw_solver.py b/applications/GeoMechanicsApplication/python_scripts/geomechanics_U_Pw_solver.py index 68f094a1f9e..9d719da9d3d 100644 --- a/applications/GeoMechanicsApplication/python_scripts/geomechanics_U_Pw_solver.py +++ b/applications/GeoMechanicsApplication/python_scripts/geomechanics_U_Pw_solver.py @@ -43,7 +43,6 @@ def GetDefaultParameters(cls): "compute_reactions": false, "move_mesh_flag": false, "nodal_smoothing": false, - "reset_displacements": false, "solution_type": "quasi_static", "scheme_type": "Newmark", "newmark_beta": 0.25, @@ -247,4 +246,4 @@ def _CheckConvergence(self): return self.solver.IsConverged() def _UpdateLoads(self): - self.solver.UpdateLoads() \ No newline at end of file + self.solver.UpdateLoads()