#343 referenceelements.hh : inconsistent subentity indices for prism
Metadata
Property | Value |
---|---|
Reported by | Christoph Gersbacher (gersbach@mathematik.uni-freiburg.de) |
Reported at | Jan 21, 2008 11:31 |
Type | Bug Report |
Version | Git (pre2.4) [autotools] |
Operating System | Unspecified / All |
Last edited by | Andreas Dedner (A.S.Dedner@warwick.ac.uk) |
Last edited at | Sep 11, 2009 16:04 |
Closed by | Andreas Dedner (A.S.Dedner@warwick.ac.uk) |
Closed at | Sep 11, 2009 16:04 |
Closed in version | Unknown |
Resolution | Fixed |
Comment | Not a problem with GenericGeometries |
Description
The subentity indices for nodes are different on the upper and lower face of a prism. The code is
// referenceelements.hh, line 1294 // node indices on face 0 subentityindex[0][1][0][3]=0; subentityindex[0][1][1][3]=2; subentityindex[0][1][2][3]=1;
// node indices on face 4 for(int i=0;i<subsizes[4][1][3];++i) subentityindex[4][1][i][3]=i+3;
I think the second enumeration would accord to the picture of the prism reference element in the doxygen documentation. Can this be changed easily?