Merge branch release-4-6
[alexxy/gromacs.git] / src / gromacs / pulling / pull_rotation.c
index 0590801eb51b7354dee4e31221e175d22cdbdb12..6f2d45accb1065b66c80d35367c29c0cc9685182 100644 (file)
@@ -65,6 +65,7 @@
 #include "gromacs/utility/qsort_threadsafe.h"
 #include "gromacs/pulling/pull_rotation.h"
 #include "gromacs/mdlib/groupcoord.h"
+#include "gromacs/math/utilities.h"
 
 static char *RotStr = {"Enforced rotation:"};
 
@@ -1972,7 +1973,7 @@ static real do_flex2_lowlevel(
              * However, since the atom is located directly on the pivot, this
              * slab's contribution to the force on that atom will be zero
              * anyway. Therefore, we directly move on to the next slab.       */
-            if (0 == norm(tmpvec2) )
+            if (gmx_numzero(norm(tmpvec2))) /* 0 == norm(xj - xcn) */
             {
                 continue;
             }
@@ -2200,22 +2201,22 @@ static real do_flex_lowlevel(
 
             rvec_sub(yj0, ycn, yj0_ycn); /* yj0_ycn = yj0 - ycn */
 
-            /* Rotate: */
-            mvmul(erg->rotmat, yj0_ycn, tmpvec2); /* tmpvec2= Omega.(yj0-ycn) */
-
-            /* Subtract the slab center from xj */
-            rvec_sub(xj, xcn, xj_xcn);           /* xj_xcn = xj - xcn         */
-
-            /* In rare cases, when an atom position coincides with a slab center
-             * (xj_xcn == 0) we cannot compute the vector product for qjn.
+            /* In rare cases, when an atom position coincides with a reference slab
+             * center (yj0_ycn == 0) we cannot compute the normal vector qjn.
              * However, since the atom is located directly on the pivot, this
              * slab's contribution to the force on that atom will be zero
              * anyway. Therefore, we directly move on to the next slab.       */
-            if (0 == norm(xj_xcn) )
+            if (gmx_numzero(norm(yj0_ycn))) /* 0 == norm(yj0 - ycn) */
             {
                 continue;
             }
 
+            /* Rotate: */
+            mvmul(erg->rotmat, yj0_ycn, tmpvec2); /* tmpvec2= Omega.(yj0-ycn) */
+
+            /* Subtract the slab center from xj */
+            rvec_sub(xj, xcn, xj_xcn);           /* xj_xcn = xj - xcn         */
+
             /* Calculate qjn */
             cprod(rotg->vec, tmpvec2, tmpvec); /* tmpvec= v x Omega.(yj0-ycn) */