Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-alugrid
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ag-ohlberger
dune-community
dune-alugrid
Commits
1505290f
Commit
1505290f
authored
10 years ago
by
Martin Alkaemper
Browse files
Options
Downloads
Patches
Plain Diff
subIndexes test
parent
5ff559c0
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dune/alugrid/3d/entity_imp.cc
+11
-11
11 additions, 11 deletions
dune/alugrid/3d/entity_imp.cc
dune/alugrid/test/test-entities.cc
+10
-5
10 additions, 5 deletions
dune/alugrid/test/test-entities.cc
with
21 additions
and
16 deletions
dune/alugrid/3d/entity_imp.cc
+
11
−
11
View file @
1505290f
...
...
@@ -195,12 +195,12 @@ namespace Dune {
//********* begin method subIndex ********************
// partial specialisation of subIndex
template
<
int
dim
,
class
IMPLElemType
,
ALU3dGridElementType
type
,
int
codim
>
template
<
int
dim
,
class
IMPLElemType
,
ALU3dGridElementType
type
,
class
Comm
,
int
codim
>
struct
IndexWrapper
{};
// specialisation for vertices
template
<
int
dim
,
class
IMPLElemType
,
ALU3dGridElementType
type
>
struct
IndexWrapper
<
dim
,
IMPLElemType
,
type
,
3
>
template
<
int
dim
,
class
IMPLElemType
,
ALU3dGridElementType
type
,
class
Comm
>
struct
IndexWrapper
<
dim
,
IMPLElemType
,
type
,
Comm
,
3
>
{
typedef
ElementTopologyMapping
<
type
>
ElemTopo
;
...
...
@@ -211,20 +211,20 @@ namespace Dune {
};
// specialisation for faces
template
<
int
dim
,
class
IMPLElemType
,
ALU3dGridElementType
type
>
struct
IndexWrapper
<
dim
,
IMPLElemType
,
type
,
1
>
template
<
int
dim
,
class
IMPLElemType
,
ALU3dGridElementType
type
,
class
Comm
>
struct
IndexWrapper
<
dim
,
IMPLElemType
,
type
,
Comm
,
1
>
{
static
int
subIndex
(
const
IMPLElemType
&
elem
,
int
i
)
{
// is specialised for each element type and uses
// the dune2aluFace mapping and also specialised for dim 2
return
(
getFace
(
elem
,
i
))
->
getIndex
();
return
(
ALU3dGridFaceGetter
<
Comm
>::
getFace
(
elem
,
i
))
->
getIndex
();
}
};
// specialisation for edges
template
<
int
dim
,
class
IMPLElemType
,
ALU3dGridElementType
type
>
struct
IndexWrapper
<
dim
,
IMPLElemType
,
type
,
2
>
template
<
int
dim
,
class
IMPLElemType
,
ALU3dGridElementType
type
,
class
Comm
>
struct
IndexWrapper
<
dim
,
IMPLElemType
,
type
,
Comm
,
2
>
{
typedef
ElementTopologyMapping
<
type
>
ElemTopo
;
...
...
@@ -256,8 +256,8 @@ namespace Dune {
};
// specialisation for elements
template
<
int
dim
,
class
IMPLElemType
,
ALU3dGridElementType
type
>
struct
IndexWrapper
<
dim
,
IMPLElemType
,
type
,
0
>
template
<
int
dim
,
class
IMPLElemType
,
ALU3dGridElementType
type
,
class
Comm
>
struct
IndexWrapper
<
dim
,
IMPLElemType
,
type
,
Comm
,
0
>
{
static
int
subIndex
(
const
IMPLElemType
&
elem
,
int
i
)
{
// just return the elements index
...
...
@@ -271,7 +271,7 @@ namespace Dune {
{
alugrid_assert
(
item_
!=
0
);
typedef
typename
ImplTraits
::
IMPLElementType
IMPLElType
;
return
IndexWrapper
<
GridImp
::
dimension
,
IMPLElType
,
GridImp
::
elementType
,
cc
>::
subIndex
(
*
item_
,
i
);
return
IndexWrapper
<
GridImp
::
dimension
,
IMPLElType
,
GridImp
::
elementType
,
typename
GridImp
::
MPICommunicatorType
,
cc
>::
subIndex
(
*
item_
,
i
);
}
template
<
int
dim
,
class
GridImp
>
...
...
This diff is collapsed.
Click to expand it.
dune/alugrid/test/test-entities.cc
+
10
−
5
View file @
1505290f
...
...
@@ -128,24 +128,29 @@ void checkEntity( HElemType* item )
entity
.
setElement
(
elem
);
checkGeometry
(
entity
.
geometry
()
);
printGeometry
(
entity
.
geometry
()
);
//
printGeometry( entity.geometry() );
/*
const int faces = entity.subEntities( 1 );
for( int i=0; i<faces; ++i )
{
std
::
cout
<<
"Face: "
<<
i
<<
std
::
endl
;
std::cout << "
Sub
Face: " << i << std::endl;
checkGeometry( entity.template subEntity<1>( i )->geometry() );
printGeometry( entity.template subEntity<1>( i )->geometry() );
std::cout << "face index: " << entity.template getSubIndex<1>( i ) << std::endl;
//std::cout << "face index: " << entity.subIndex( i, 1) << std::endl;
}
*/
const
int
vertices
=
entity
.
subEntities
(
2
);
for
(
int
i
=
0
;
i
<
vertices
;
++
i
)
{
std
::
cout
<<
"Vertex: "
<<
i
<<
std
::
endl
;
std
::
cout
<<
"
Sub
Vertex: "
<<
i
<<
std
::
endl
;
checkGeometry
(
entity
.
template
subEntity
<
2
>(
i
)
->
geometry
()
);
printGeometry
(
entity
.
template
subEntity
<
2
>(
i
)
->
geometry
()
);
std
::
cout
<<
"vertex index: "
<<
entity
.
template
getSubIndex
<
2
>(
i
)
<<
std
::
endl
;
//std::cout << "vertex index: " << entity.subIndex( i, 2) << std::endl;
}
}
template
<
class
Gitter
>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment