Skip to content
Snippets Groups Projects
Commit 0e43161b authored by Robert Klöfkorn's avatar Robert Klöfkorn
Browse files

subentity --> subEntity.

boundaryId instead of BoundaryEntity

[[Imported from SVN: r3226]]
parent b172d201
No related branches found
No related tags found
No related merge requests found
......@@ -248,7 +248,7 @@ namespace Dune {
for(int j=0; j<novx ; j++)
{
// get all local numbers located on the face
int vx = refElem.subentity(face, faceCodim , j , dim );
int vx = refElem.subEntity(face, faceCodim , j , dim );
// get global dof numbers of this vertices
int col = functionSpace_.mapToGlobal( en, vx);
// set solution on dirichlet bnd
......@@ -263,7 +263,7 @@ namespace Dune {
for(int j=0; j<novx ; j++)
{
// get all local numbers located on the face
int vx = refElem.subentity(face, faceCodim , j , dim );
int vx = refElem.subEntity(face, faceCodim , j , dim );
// get global dof numbers of this vertices
int col = functionSpace_.mapToGlobal( en, vx );
// set solution on dirichlet bnd
......@@ -361,7 +361,6 @@ namespace Dune {
typedef typename FunctionSpaceType::GridType GridType;
typedef typename GridType::template Codim<0>::Entity EntityType;
typedef typename EntityType::IntersectionIterator NeighIt;
typedef typename NeighIt::BoundaryEntity BoundaryEntityType;
for( ; it != endit; ++it )
{
......@@ -380,8 +379,7 @@ namespace Dune {
if( (t == simplex) || (t == triangle) || (t == tetrahedron ) )
{
const BoundaryEntityType & bEl = nit.boundaryEntity();
if( bEl.id() != 0 )
if( nit.boundaryId() != 0 )
{
static ReferenceSimplex< coordType, dim > refElem;
int novx = refElem.size( face, faceCodim , dim );
......@@ -389,7 +387,7 @@ namespace Dune {
for(int j=0; j<novx ; j++)
{
// get all local numbers located on the face
int vx = refElem.subentity(face, faceCodim , j , dim );
int vx = refElem.subEntity(face, faceCodim , j , dim );
// get global dof numbers of this vertices
int col = functionSpace_.mapToGlobal( en, vx);
// set solution on dirichlet bnd
......@@ -406,7 +404,7 @@ namespace Dune {
for(int j=0; j<novx ; j++)
{
// get all local numbers located on the face
int vx = refElem.subentity(face, faceCodim , j , dim );
int vx = refElem.subEntity(face, faceCodim , j , dim );
// get global dof numbers of this vertices
int col = functionSpace_.mapToGlobal( en, vx);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment