Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dumux
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
dumux-repositories
dumux
Commits
1e6713be
Commit
1e6713be
authored
7 years ago
by
Kilian Weishaupt
Browse files
Options
Downloads
Patches
Plain Diff
[common] Introduce trivial intersection mapper
parent
c0230eda
No related branches found
No related tags found
Loading
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/common/intersectionmapper.hh
+30
-0
30 additions, 0 deletions
dumux/common/intersectionmapper.hh
with
30 additions
and
0 deletions
dumux/common/intersectionmapper.hh
+
30
−
0
View file @
1e6713be
...
@@ -33,6 +33,36 @@
...
@@ -33,6 +33,36 @@
namespace
Dumux
namespace
Dumux
{
{
template
<
class
TypeTag
>
class
ConformingGridIntersectionMapper
{
using
GridView
=
typename
GET_PROP_TYPE
(
TypeTag
,
GridView
);
using
Element
=
typename
GridView
::
template
Codim
<
0
>
::
Entity
;
using
IndexType
=
unsigned
int
;
static
constexpr
int
codimIntersection
=
1
;
public:
ConformingGridIntersectionMapper
(
const
GridView
&
gridView
)
:
gridView_
(
gridView
)
{
}
void
update
()
{}
//! The total number of intersections
std
::
size_t
numIntersections
()
const
{
return
gridView_
.
size
(
1
);
}
IndexType
globalIntersectionIndex
(
const
Element
&
element
,
const
IndexType
localFaceIdx
)
const
{
return
gridView_
.
indexSet
().
subIndex
(
element
,
localFaceIdx
,
codimIntersection
);
}
private
:
const
GridView
gridView_
;
};
/*!
/*!
* \brief defines an intersection mapper for mapping of global DOFs assigned
* \brief defines an intersection mapper for mapping of global DOFs assigned
* to faces which also works for adaptive grids.
* to faces which also works for adaptive grids.
...
...
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