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
53f7c46d
Commit
53f7c46d
authored
6 years ago
by
Dennis Gläser
Browse files
Options
Downloads
Patches
Plain Diff
[mpfa-o][iv] minor cleanup
parent
29154561
No related branches found
No related tags found
2 merge requests
!1337
WIP Fix/dirichlet caching v2
,
!1298
Restructure mpfa flux caches
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/discretization/cellcentered/mpfa/omethod/interactionvolume.hh
+9
-19
9 additions, 19 deletions
...retization/cellcentered/mpfa/omethod/interactionvolume.hh
with
9 additions
and
19 deletions
dumux/discretization/cellcentered/mpfa/omethod/interactionvolume.hh
+
9
−
19
View file @
53f7c46d
...
@@ -160,16 +160,11 @@ public:
...
@@ -160,16 +160,11 @@ public:
const
auto
numGlobalScvfs
=
indexSet
.
nodalIndexSet
().
numScvfs
();
const
auto
numGlobalScvfs
=
indexSet
.
nodalIndexSet
().
numScvfs
();
// reserve memory for local entities
// reserve memory for local entities
elements_
.
clear
();
elements_
.
clear
();
elements_
.
reserve
(
numLocalScvs
);
scvs_
.
clear
();
scvs_
.
clear
();
scvs_
.
reserve
(
numLocalScvs
);
scvfs_
.
clear
();
scvfs_
.
clear
();
scvfs_
.
reserve
(
numFaces_
);
localFaceData_
.
clear
();
localFaceData_
.
clear
();
localFaceData_
.
reserve
(
numGlobalScvfs
);
dirichletData_
.
clear
();
dirichletData_
.
clear
();
dirichletData_
.
reserve
(
numFaces_
);
elements_
.
reserve
(
numLocalScvs
);
scvs_
.
reserve
(
numLocalScvs
);
scvfs_
.
reserve
(
numFaces_
);
dirichletData_
.
reserve
(
numFaces_
);
localFaceData_
.
reserve
(
numGlobalScvfs
);
// set up stuff related to sub-control volumes
// set up stuff related to sub-control volumes
for
(
LocalIndexType
scvIdxLocal
=
0
;
scvIdxLocal
<
numLocalScvs
;
scvIdxLocal
++
)
for
(
LocalIndexType
scvIdxLocal
=
0
;
scvIdxLocal
<
numLocalScvs
;
scvIdxLocal
++
)
...
@@ -193,19 +188,13 @@ public:
...
@@ -193,19 +188,13 @@ public:
// the neighboring scvs in local indices (order: 0 - inside scv, 1..n - outside scvs)
// the neighboring scvs in local indices (order: 0 - inside scv, 1..n - outside scvs)
const
auto
&
neighborScvIndicesLocal
=
indexSet
.
neighboringLocalScvIndices
(
faceIdxLocal
);
const
auto
&
neighborScvIndicesLocal
=
indexSet
.
neighboringLocalScvIndices
(
faceIdxLocal
);
// create local face data object for this face
localFaceData_
.
emplace_back
(
faceIdxLocal
,
neighborScvIndicesLocal
[
0
],
scvf
.
index
());
// we will need as many omegas as scvs around the face
const
auto
numNeighborScvs
=
neighborScvIndicesLocal
.
size
();
const
auto
numNeighborScvs
=
neighborScvIndicesLocal
.
size
();
localFaceData_
.
emplace_back
(
faceIdxLocal
,
neighborScvIndicesLocal
[
0
],
scvf
.
index
());
// create iv-local scvf object
// create iv-local scvf object
if
(
scvf
.
boundary
())
if
(
scvf
.
boundary
())
{
{
const
auto
bcTypes
=
problem
.
boundaryTypes
(
elements_
[
neighborScvIndicesLocal
[
0
]],
scvf
);
if
(
problem
.
boundaryTypes
(
elements_
[
neighborScvIndicesLocal
[
0
]],
scvf
).
hasOnlyDirichlet
())
if
(
bcTypes
.
hasOnlyDirichlet
())
{
{
scvfs_
.
emplace_back
(
scvf
,
neighborScvIndicesLocal
,
numKnowns_
++
,
/*isDirichlet*/
true
);
scvfs_
.
emplace_back
(
scvf
,
neighborScvIndicesLocal
,
numKnowns_
++
,
/*isDirichlet*/
true
);
dirichletData_
.
emplace_back
(
scvf
.
outsideScvIdx
());
dirichletData_
.
emplace_back
(
scvf
.
outsideScvIdx
());
...
@@ -285,7 +274,8 @@ public:
...
@@ -285,7 +274,8 @@ public:
//! returns the number of interaction volumes living around a vertex
//! returns the number of interaction volumes living around a vertex
template
<
class
NI
>
template
<
class
NI
>
static
constexpr
std
::
size_t
numIVAtVertex
(
const
NI
&
nodalIndexSet
)
{
return
1
;
}
static
constexpr
std
::
size_t
numIVAtVertex
(
const
NI
&
nodalIndexSet
)
{
return
1
;
}
//! adds the iv index sets living around a vertex to a given container
//! adds the iv index sets living around a vertex to a given container
//! and stores the the corresponding index in a map for each scvf
//! and stores the the corresponding index in a map for each scvf
...
...
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