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
Merge requests
!3350
[test][stokes] Add stabilized Box-Box donea test
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
[test][stokes] Add stabilized Box-Box donea test
feature/ff-massonep-auxiilaryflux
into
master
Overview
0
Commits
5
Pipelines
6
Changes
8
Merged
Timo Koch
requested to merge
feature/ff-massonep-auxiilaryflux
into
master
2 years ago
Overview
0
Commits
5
Pipelines
6
Changes
8
Expand
0
0
Merge request reports
Compare
master
version 6
7a271677
2 years ago
version 5
a8dbef24
2 years ago
version 4
543ae89c
2 years ago
version 3
33add099
2 years ago
version 2
33add099
2 years ago
version 1
4c7b2f09
2 years ago
master (base)
and
latest version
latest version
fba26c6c
5 commits,
2 years ago
version 6
7a271677
5 commits,
2 years ago
version 5
a8dbef24
5 commits,
2 years ago
version 4
543ae89c
4 commits,
2 years ago
version 3
33add099
1 commit,
2 years ago
version 2
33add099
1 commit,
2 years ago
version 1
4c7b2f09
10 commits,
2 years ago
8 files
+
4256
−
21
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
Search (e.g. *.vue) (Ctrl+P)
dumux/discretization/box/fvgridgeometry.hh
+
20
−
6
Options
@@ -103,6 +103,8 @@ public:
using
DiscretizationMethod
=
DiscretizationMethods
::
Box
;
static
constexpr
DiscretizationMethod
discMethod
{};
//! export basic grid geometry type for the alternative constructor
using
BasicGridGeometry
=
BasicGridGeometry_t
<
GV
,
Traits
>
;
//! export the type of the fv element geometry (the local view type)
using
LocalView
=
typename
Traits
::
template
LocalView
<
ThisType
,
true
>;
//! export the type of sub control volume
@@ -118,14 +120,19 @@ public:
//! export the grid view type
using
GridView
=
GV
;
//! Constructor
BoxFVGridGeometry
(
const
GridView
gridView
)
:
ParentType
(
gridView
)
//! Constructor
with basic grid geometry used to share state with another grid geometry on the same grid view
BoxFVGridGeometry
(
std
::
shared_ptr
<
BasicGridGeometry
>
gg
)
:
ParentType
(
std
::
move
(
gg
)
)
,
cache_
(
*
this
)
{
update_
();
}
//! Constructor
BoxFVGridGeometry
(
const
GridView
&
gridView
)
:
BoxFVGridGeometry
(
std
::
make_shared
<
BasicGridGeometry
>
(
gridView
))
{}
//! the vertex mapper is the dofMapper
//! this is convenience to have better chance to have the same main files for box/tpfa/mpfa...
const
DofMapper
&
dofMapper
()
const
@@ -440,6 +447,8 @@ public:
using
DiscretizationMethod
=
DiscretizationMethods
::
Box
;
static
constexpr
DiscretizationMethod
discMethod
{};
//! export basic grid geometry type for the alternative constructor
using
BasicGridGeometry
=
BasicGridGeometry_t
<
GV
,
Traits
>
;
//! export the type of the fv element geometry (the local view type)
using
LocalView
=
typename
Traits
::
template
LocalView
<
ThisType
,
false
>;
//! export the type of sub control volume
@@ -455,14 +464,19 @@ public:
//! export the grid view type
using
GridView
=
GV
;
//! Constructor
BoxFVGridGeometry
(
const
GridView
gridView
)
:
ParentType
(
gridView
)
//! Constructor
with basic grid geometry used to share state with another grid geometry on the same grid view
BoxFVGridGeometry
(
std
::
shared_ptr
<
BasicGridGeometry
>
gg
)
:
ParentType
(
std
::
move
(
gg
)
)
,
cache_
(
*
this
)
{
update_
();
}
//! Constructor
BoxFVGridGeometry
(
const
GridView
&
gridView
)
:
BoxFVGridGeometry
(
std
::
make_shared
<
BasicGridGeometry
>
(
gridView
))
{}
//! the vertex mapper is the dofMapper
//! this is convenience to have better chance to have the same main files for box/tpfa/mpfa...
const
DofMapper
&
dofMapper
()
const
Loading