[MOAB-dev] r3995 - MOAB/trunk/src
iulian at mcs.anl.gov
iulian at mcs.anl.gov
Thu Jun 3 17:24:35 CDT 2010
Author: iulian
Date: 2010-06-03 17:24:34 -0500 (Thu, 03 Jun 2010)
New Revision: 3995
Modified:
MOAB/trunk/src/MBCNArrays.hpp
Log:
the higher order element face connectivity is decided from face - edge
adjacency.
More tests and checks may be necessary, or, as Jason suggested, simplify
the maintenance by eliminating the need for CN::mConnectivityMap
Modified: MOAB/trunk/src/MBCNArrays.hpp
===================================================================
--- MOAB/trunk/src/MBCNArrays.hpp 2010-06-02 20:14:49 UTC (rev 3994)
+++ MOAB/trunk/src/MBCNArrays.hpp 2010-06-03 22:24:34 UTC (rev 3995)
@@ -397,13 +397,13 @@
{ // source dim 2
{ // target dim 0
{3, 3, 3, 3}, // 3 vertices for all faces
- {{0,1,3}, {1,2,3}, {0,2,3}, {0,1,2}} }, // end target dim 0
+ {{0,1,3}, {1,2,3}, {0,3,2}, {0,2,1}} }, // end target dim 0
{ // target dim 1
{3, 3, 3, 3}, // 3 edges for all faces
- {{0,4,3}, {1,5,4}, {2,3,5}, {0,2,1}} }, // end target dim 1
+ {{0,4,3}, {1,5,4}, {3,5,2}, {2,1,0}} }, // end target dim 1
{ // target dim 2
{3, 3, 3, 3}, // 3 faces for all faces
- {{3,1,2}, {3,2,0}, {0,1,3}, {0,2,1}} }, // end target dim 2
+ {{3,1,2}, {3,2,0}, {0,1,3}, {2,1,0}} }, // end target dim 2
{ // target dimension 3
{1, 1, 1, 1}, // 0 connected elements for all vertices
{{0}, {0}, {0}, {0}} } // end target dimension 3
More information about the moab-dev
mailing list