← Back to team overview

syfi team mailing list archive

Re: [HG syfi] Beginning of boundary integration.

 

I'm about to write something down for FFC/DOLFIN. My idea is that the
numbering scheme is the UFC numbering scheme + something else.

The UFC numbering is only concerned with the numbering of mesh
entitites with respect to a cell, based on the vertices of the cell.

My suggestion is that the numbering is based on a lexicographical
ordering of entities and that the vertices of the cell are ordered
lexicographically based on their global index.

Here's an example.

    Triangle with vertices v0 = 10, v1 = 15, v2 = 95

    Cell-edge:  e0 non-incident to v0
                e1 non-incident to v1
                e2 non-incident to v2

    (This is based on a lexicographical ordering of non-incident
     vertices as in the UFC manual.)

    Edge-vertex: e0 = (v1, v2)
                 e1 = (v0, v2) 
                 e2 = (v0, v1)

    (This is based on a lexicographical ordering of the entities
     within the entity (edge) in question.)

So there are two steps: First number all entities based on a
lexicographical ordering as in the UFC manual, then number everything
else based on the global index.

UFC is only concerned with the first step.

We also need to define something we can call "alignment", which is how
two cells meet at a common facet. For two triangles, the alignment is
0 or 1. For two tetrahedra, the alignment is 0, 1, 2, 3, 4 or 5.
This can also be based on a lexicographical ordering of matching
vertices.

The text in the UFC manual is written so that it can be copied to
other manuals (SyFi, DOLFIN, FFC) and extended.

The DOLFIN mesh library should be updated so that each DOLFIN mesh
follows this numbering convention.

/Anders


On Tue, Jan 23, 2007 at 10:43:23AM +0100, Kent-Andre Mardal wrote:
> 
> Should we decide on a numbering scheme for faces and edges in SyFi
> before doing this ? We could adopt the scheme used in Dolfin. 
> 
> 
> man, 22,.01.2007 kl. 21.35 +0100, skrev SyFi:
> > One or more new changesets pushed to the primary SyFi repository.
> > A short summary of the last three changesets is included below.
> > 
> > changeset:   317:90882b5c2304348be81493cd8d6b5733a44457cb
> > tag:         tip
> > user:        "Martin Sandve Alnæs <martinal@xxxxxxxxx>"
> > date:        Mon Jan 22 21:35:02 2007 +0100
> > files:       python/ufccodegen/form.py
> > description:
> > Beginning of boundary integration.
> > 
> > 
> > changeset:   316:28894334a718eb34ce104345a6c31d498d62ba09
> > parent:      315:ad03348a18c8a8d9d7e839202b256be9429ccee3
> > parent:      314:6121ecafe0787c619045ed313101047614a90217
> > user:        "Kent-Andre Mardal <kent-and@xxxxxxxxx>"
> > date:        Mon Jan 22 20:41:35 2007 +0100
> > files:       
> > description:
> > merge
> > 
> > 
> > changeset:   315:ad03348a18c8a8d9d7e839202b256be9429ccee3
> > parent:      311:eda4d4bf4f8c5d725407cd9dfd2bb6e24b905fe2
> > user:        "Kent-Andre Mardal <kent-and@xxxxxxxxx>"
> > date:        Mon Jan 22 20:41:05 2007 +0100
> > files:       syfi/Polygon.cpp syfi/ginac_tools.cpp
> > description:
> > fixed numbering in bernsteinv, polv, homogenous_polv,
> > 
> > 
> > ----------------------------------------------------------------------
> > For more details, visit http://www.fenics.org/hg/syfi
> > _______________________________________________
> > SyFi-dev mailing list
> > SyFi-dev@xxxxxxxxxx
> > http://fenics.org/mailman/listinfo/syfi-dev
> 
> _______________________________________________
> SyFi-dev mailing list
> SyFi-dev@xxxxxxxxxx
> http://fenics.org/mailman/listinfo/syfi-dev


Follow ups

References