diff --git a/src/TabulatedDihedral.cu b/src/TabulatedDihedral.cu index 55604752d8ea26c20b04053ad444391a41c846a4..c182482df290a53cb9ff51d2842613efa514ef70 100644 --- a/src/TabulatedDihedral.cu +++ b/src/TabulatedDihedral.cu @@ -60,13 +60,14 @@ TabulatedDihedralPotential::TabulatedDihedralPotential(String fileName) : fileNa assert( size*deltaAngle >= 360 ); float tmp[size]; - for (int i = 0; i < size; ++i) { - // j=0 corresponsds to angle[i] in [-Pi,-Pi+delta) - float a = (angle[i] + 180.0f); + for (int j = 0; j < size; ++j) { + // reorganize data so that the angle goes from [-Pi,Pi+delta) + float a = -180.0f - angle[0] + j*deltaAngle; while (a < 0) a += 360.0f; - while (a >= 360) a -= 360.0f; - int j = floor( a / deltaAngle ); - if (j >= size) continue; + while (a >= size*deltaAngle) a -= 360.0f; + int i = round( a / deltaAngle ); + assert(i >= 0); + assert(i < size); tmp[j] = pot[i]; } for (int i = 0; i < size; ++i) pot[i] = tmp[i]; diff --git a/src/TabulatedMethods.cuh b/src/TabulatedMethods.cuh index 71c951498aaf676f8bf1467ec15c71a3ec610c94..cae844ca272571b8f1d3c966bfd0438eefafe406 100644 --- a/src/TabulatedMethods.cuh +++ b/src/TabulatedMethods.cuh @@ -117,6 +117,9 @@ __device__ inline void computeDihedral(const TabulatedDihedralPotential* __restr // home = home % size; int home1 = (home + 1) >= d->size ? (home+1-d->size) : home+1; + assert(home1 > 0); + assert(home1 < d->size); + //================================================ // Linear interpolation float U0 = d->pot[home]; // Potential @@ -126,15 +129,12 @@ __device__ inline void computeDihedral(const TabulatedDihedralPotential* __restr force = -dU * d->angle_step_inv; // avoid singularity when one angle is straight - force = (ab.length2()*bc.length2()*crossABC.rLength2() > 100.0f || (ab.length2()*bc.length2()*crossABC.rLength2())*crossBCD.rLength2() > 100.0f) ? 0.0f : force; - - // if (force >= 10000.0f) - // printf("pot[%d] = %f; pot[%d] = %f\n", home,U0, home1, U0+dU); - if ( force > 1000.0f ) - force = 1000.0f; - if ( force < -1000.0f ) - force = -1000.0f; - assert( force < 10000.0f ); + // force = (distbc*distbc*crossABC.rLength2() > 1000.0f || distbc*distbc*crossBCD.rLength2() > 1000.0f) ? 0.0f : force; + force = (ab.length2()*bc.length2()*crossABC.rLength2() > 100.0f || bc.length2()*cd.length2()*crossBCD.rLength2() > 100.0f) ? 0.0f : force; + + // if ( force > 1000.0f ) + // printf("%f %d %d (%.4f %.4f) %.2f %f\n",force,home,home1, d->pot[home], d->pot[home1], dU, d->angle_step_inv); + //assert( force < 10000.0f ) f1 *= force; f2 *= force;