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
e4ba9e28
Commit
e4ba9e28
authored
3 years ago
by
Kilian Weishaupt
Browse files
Options
Downloads
Patches
Plain Diff
[staggered][fvGeometry] Put static data into traits
parent
e61c2b87
No related branches found
No related tags found
1 merge request
!2901
Feature/improve staggered gridgeometry
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/discretization/facecentered/staggered/fvgridgeometry.hh
+29
-20
29 additions, 20 deletions
...x/discretization/facecentered/staggered/fvgridgeometry.hh
with
29 additions
and
20 deletions
dumux/discretization/facecentered/staggered/fvgridgeometry.hh
+
29
−
20
View file @
e4ba9e28
...
@@ -64,6 +64,19 @@ struct FaceCenteredStaggeredDefaultGridGeometryTraits : public DefaultMapperTrai
...
@@ -64,6 +64,19 @@ struct FaceCenteredStaggeredDefaultGridGeometryTraits : public DefaultMapperTrai
template
<
class
GridGeometry
,
bool
enableCache
>
template
<
class
GridGeometry
,
bool
enableCache
>
using
LocalView
=
FaceCenteredStaggeredFVElementGeometry
<
GridGeometry
,
enableCache
>
;
using
LocalView
=
FaceCenteredStaggeredFVElementGeometry
<
GridGeometry
,
enableCache
>
;
struct
StaticInfo
{
static
constexpr
auto
dim
=
GridView
::
Grid
::
dimension
;
static
constexpr
auto
numFacesPerElement
=
dim
*
2
;
static
constexpr
auto
numScvsPerElement
=
numFacesPerElement
;
static
constexpr
auto
numLateralScvfsPerScv
=
2
*
(
dim
-
1
);
static
constexpr
auto
numLateralScvfsPerElement
=
numFacesPerElement
*
numLateralScvfsPerScv
;
static
constexpr
auto
minNumScvfsPerElement
=
numLateralScvfsPerElement
// number of lateral faces
+
numFacesPerElement
;
// number of central frontal faces
static
constexpr
auto
maxNumScvfsPerElement
=
minNumScvfsPerElement
+
numFacesPerElement
;
// number of potential frontal faces on boundary
};
};
};
/*!
/*!
...
@@ -99,17 +112,12 @@ class FaceCenteredStaggeredFVGridGeometry<GV, true, Traits>
...
@@ -99,17 +112,12 @@ class FaceCenteredStaggeredFVGridGeometry<GV, true, Traits>
using
Scalar
=
typename
GV
::
ctype
;
using
Scalar
=
typename
GV
::
ctype
;
static
constexpr
auto
dim
=
GV
::
Grid
::
dimension
;
static
constexpr
auto
dim
=
Traits
::
StaticInfo
::
dim
;
static
constexpr
auto
numFacesPerElement
=
dim
*
2
;
static
constexpr
auto
numScvsPerElement
=
Traits
::
StaticInfo
::
numScvsPerElement
;
static
constexpr
auto
numScvsPerElement
=
numFacesPerElement
;
static
constexpr
auto
numLateralScvfsPerScv
=
Traits
::
StaticInfo
::
numLateralScvfsPerScv
;
static
constexpr
auto
numLateralScvfsPerScv
=
2
*
(
dim
-
1
);
static
constexpr
auto
numLateralScvfsPerElement
=
Traits
::
StaticInfo
::
numLateralScvfsPerElement
;
static
constexpr
auto
numLateralScvfsPerElement
=
numFacesPerElement
*
numLateralScvfsPerScv
;
static
constexpr
auto
minNumScvfsPerElement
=
Traits
::
StaticInfo
::
minNumScvfsPerElement
;
static
constexpr
auto
maxNumScvfsPerElement
=
Traits
::
StaticInfo
::
maxNumScvfsPerElement
;
static
constexpr
auto
maxNumScvfsPerElement
=
numLateralScvfsPerElement
// number of lateral faces
+
numFacesPerElement
// number of central frontal faces
+
numFacesPerElement
;
// number of potential frontal faces on boundary
// static_assert(maxNumScvfsPerElement == 16); // TODO remove
using
ScvfCornerStorage
=
typename
Traits
::
SubControlVolumeFace
::
Traits
::
CornerStorage
;
using
ScvfCornerStorage
=
typename
Traits
::
SubControlVolumeFace
::
Traits
::
CornerStorage
;
using
ScvCornerStorage
=
typename
Traits
::
SubControlVolume
::
Traits
::
CornerStorage
;
using
ScvCornerStorage
=
typename
Traits
::
SubControlVolume
::
Traits
::
CornerStorage
;
...
@@ -131,6 +139,8 @@ public:
...
@@ -131,6 +139,8 @@ public:
using
GridView
=
GV
;
using
GridView
=
GV
;
//! export the geometry helper type
//! export the geometry helper type
using
GeometryHelper
=
typename
Traits
::
GeometryHelper
;
using
GeometryHelper
=
typename
Traits
::
GeometryHelper
;
//! export static information
using
StaticInformation
=
typename
Traits
::
StaticInfo
;
//! export the type of extrusion
//! export the type of extrusion
using
Extrusion
=
Extrusion_t
<
Traits
>
;
using
Extrusion
=
Extrusion_t
<
Traits
>
;
...
@@ -555,15 +565,12 @@ class FaceCenteredStaggeredFVGridGeometry<GV, false, Traits>
...
@@ -555,15 +565,12 @@ class FaceCenteredStaggeredFVGridGeometry<GV, false, Traits>
using
IntersectionMapper
=
typename
Traits
::
IntersectionMapper
;
using
IntersectionMapper
=
typename
Traits
::
IntersectionMapper
;
using
ConnectivityMap
=
typename
Traits
::
template
ConnectivityMap
<
ThisType
>;
using
ConnectivityMap
=
typename
Traits
::
template
ConnectivityMap
<
ThisType
>;
static
constexpr
auto
dim
=
GV
::
Grid
::
dimension
;
static
constexpr
auto
dim
=
Traits
::
StaticInfo
::
dim
;
static
constexpr
auto
numFacesPerElement
=
dim
*
2
;
static
constexpr
auto
numScvsPerElement
=
Traits
::
StaticInfo
::
numScvsPerElement
;
static
constexpr
auto
numScvsPerElement
=
numFacesPerElement
;
static
constexpr
auto
numLateralScvfsPerScv
=
Traits
::
StaticInfo
::
numLateralScvfsPerScv
;
static
constexpr
auto
numLateralScvfsPerScv
=
2
*
(
dim
-
1
);
static
constexpr
auto
numLateralScvfsPerElement
=
Traits
::
StaticInfo
::
numLateralScvfsPerElement
;
static
constexpr
auto
numLateralScvfsPerElement
=
numFacesPerElement
*
numLateralScvfsPerScv
;
static
constexpr
auto
minNumScvfsPerElement
=
Traits
::
StaticInfo
::
minNumScvfsPerElement
;
static
constexpr
auto
maxNumScvfsPerElement
=
Traits
::
StaticInfo
::
maxNumScvfsPerElement
;
static
constexpr
auto
maxNumScvfsPerElement
=
numLateralScvfsPerElement
// number of lateral faces
+
numFacesPerElement
// number of central frontal faces
+
numFacesPerElement
;
// number of potential frontal faces on boundary
public:
public:
//! export the discretization method this geometry belongs to
//! export the discretization method this geometry belongs to
...
@@ -582,6 +589,8 @@ public:
...
@@ -582,6 +589,8 @@ public:
using
GridView
=
GV
;
using
GridView
=
GV
;
//! export the geometry helper type
//! export the geometry helper type
using
GeometryHelper
=
typename
Traits
::
GeometryHelper
;
using
GeometryHelper
=
typename
Traits
::
GeometryHelper
;
//! export static information
using
StaticInformation
=
typename
Traits
::
StaticInfo
;
//! export the type of extrusion
//! export the type of extrusion
using
Extrusion
=
Extrusion_t
<
Traits
>
;
using
Extrusion
=
Extrusion_t
<
Traits
>
;
...
...
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