From beb9cf6ead812f75a4a893915b4bc044b11043fd Mon Sep 17 00:00:00 2001 From: jguenole Date: Fri, 14 Sep 2018 18:17:57 +0200 Subject: [PATCH] Correct default value for tmax --- doc/src/min_modify.txt | 2 +- src/min.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/src/min_modify.txt b/doc/src/min_modify.txt index 331cf84781..2f13686606 100644 --- a/doc/src/min_modify.txt +++ b/doc/src/min_modify.txt @@ -143,7 +143,7 @@ down the box relaxation but improve the stability of the procedure. [Default:] The option defaults are dmax = 0.1, line = quadratic, -integrator = eulerimplicit, tmax = 2.0, tmin = 0.02, +integrator = eulerimplicit, tmax = 10.0, tmin = 0.02, delaystep = 20, dtgrow = 1.1, dtshrink = 0.5, alpha0 = 0.25, alphashrink = 0.99, relaxbox = no, relaxbox_mod = 1e6 and relaxbox_rate = 0.33, ptol = 0.1 vdfmax = 2000, halfstepback = yes and initialdelay = yes. diff --git a/src/min.cpp b/src/min.cpp index 07078f9ba4..a4cf176ab2 100644 --- a/src/min.cpp +++ b/src/min.cpp @@ -60,7 +60,7 @@ Min::Min(LAMMPS *lmp) : Pointers(lmp) dtshrink = 0.5; alpha0 = 0.25; alphashrink = 0.99; - tmax = 2.0; + tmax = 10.0; tmin = 0.02; integrator = 0; halfstepback_flag = 1;