Got rid of the nan check on the contact angle routine in common/pmmc.h

This commit is contained in:
James McClure
2014-08-19 15:30:57 -04:00
parent e6900ad02f
commit 5d7cc47e78

View File

@@ -3891,7 +3891,7 @@ inline double pmmc_CubeContactAngle(DoubleArray &CubeValues, DoubleArray &CurveV
integral += 0.5*length*(vA + vB);
}
if (isnan(integral)) integral = 0.0;
// if (isnan(integral)) integral = 0.0;
return integral;
}