[MOAB-dev] r5763 - MOAB/trunk/tools/mbcoupler

jain at mcs.anl.gov jain at mcs.anl.gov
Tue Oct 2 11:43:17 CDT 2012


Author: jain
Date: 2012-10-02 11:43:17 -0500 (Tue, 02 Oct 2012)
New Revision: 5763

Modified:
   MOAB/trunk/tools/mbcoupler/ElemUtil.cpp
Log:
Reduced Newton Raphson absolute tolerance back to 1e-10, sahex1 works with absolute tolerance 3.5e-10

Modified: MOAB/trunk/tools/mbcoupler/ElemUtil.cpp
===================================================================
--- MOAB/trunk/tools/mbcoupler/ElemUtil.cpp	2012-09-29 18:44:46 UTC (rev 5762)
+++ MOAB/trunk/tools/mbcoupler/ElemUtil.cpp	2012-10-02 16:43:17 UTC (rev 5763)
@@ -437,7 +437,7 @@
     // TODO: should differentiate between epsilons used for
     // Newton Raphson iteration, and epsilons used for curved boundary geometry errors
     // right now, fix the tolerance used for NR
-    tol = 1.0e-6;
+    tol = 1.0e-10;
     const double error_tol_sqr = tol*tol;
     double det;
     CartVect xi = x0;



More information about the moab-dev mailing list