Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-xt
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
Container 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-xt
Commits
5f23da34
Commit
5f23da34
authored
7 years ago
by
Dr. Felix Tobias Schindler
Browse files
Options
Downloads
Patches
Plain Diff
[walker.apply-on] add CustomBoundaryIntersections filter
parent
a5c3dc89
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/xt/grid/walker/apply-on.hh
+41
-0
41 additions, 0 deletions
dune/xt/grid/walker/apply-on.hh
with
41 additions
and
0 deletions
dune/xt/grid/walker/apply-on.hh
+
41
−
0
View file @
5f23da34
...
@@ -343,6 +343,47 @@ private:
...
@@ -343,6 +343,47 @@ private:
};
// class BoundaryIntersections
};
// class BoundaryIntersections
template
<
class
GridLayerImp
>
class
CustomBoundaryIntersections
:
public
WhichIntersection
<
GridLayerImp
>
{
typedef
WhichIntersection
<
GridLayerImp
>
BaseType
;
public:
using
typename
BaseType
::
GridLayerType
;
using
typename
BaseType
::
IntersectionType
;
/**
* \attention Takes ownership of boundary_type, do not delete manually!
*/
explicit
CustomBoundaryIntersections
(
const
BoundaryInfo
<
IntersectionType
>&
boundary_info
,
BoundaryType
*
boundary_type
)
:
boundary_info_
(
boundary_info
)
,
boundary_type_
(
boundary_type
)
{
}
explicit
CustomBoundaryIntersections
(
const
BoundaryInfo
<
IntersectionType
>&
boundary_info
,
const
std
::
shared_ptr
<
BoundaryType
>&
boundary_type
)
:
boundary_info_
(
boundary_info
)
,
boundary_type_
(
boundary_type
)
{
}
WhichIntersection
<
GridLayerType
>*
copy
()
const
override
final
{
return
new
CustomBoundaryIntersections
<
GridLayerType
>
(
boundary_info_
,
boundary_type_
);
}
bool
apply_on
(
const
GridLayerType
&
/*grid_layer*/
,
const
IntersectionType
&
intersection
)
const
override
final
{
return
boundary_info_
.
type
(
intersection
)
==
*
boundary_type_
;
}
protected
:
const
BoundaryInfo
<
IntersectionType
>&
boundary_info_
;
const
std
::
shared_ptr
<
BoundaryType
>
boundary_type_
;
};
// class CustomBoundaryIntersections
template
<
class
GridLayerImp
>
template
<
class
GridLayerImp
>
class
DirichletIntersections
class
DirichletIntersections
:
public
internal
::
WhichIntersectionBase
<
GridLayerImp
,
DirichletIntersections
<
GridLayerImp
>
,
true
>
:
public
internal
::
WhichIntersectionBase
<
GridLayerImp
,
DirichletIntersections
<
GridLayerImp
>
,
true
>
...
...
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