Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
dumux-repositories
dumux
Commits
e07f28a6
Commit
e07f28a6
authored
Feb 04, 2021
by
Dennis Gläser
Committed by
Timo Koch
Feb 26, 2021
Browse files
[mpfa][scvf] improve docu
parent
e57882f8
Changes
1
Hide whitespace changes
Inline
Side-by-side
dumux/discretization/cellcentered/mpfa/subcontrolvolumeface.hh
View file @
e07f28a6
...
...
@@ -155,7 +155,7 @@ public:
Scalar
area
()
const
{
return
area_
;
}
//! returns
bolean
if the sub control volume face is on the domain boundary
//! returns
true
if the sub control volume face is on the domain boundary
bool
boundary
()
const
{
return
boundary_
;
}
...
...
@@ -175,12 +175,12 @@ public:
GridIndexType
insideScvIdx
()
const
{
return
insideScvIdx_
;
}
//! The number of
outside
scvs
c
on
nection via
this scv face
//! The number of scvs on
the outside of
this scv face
std
::
size_t
numOutsideScvs
()
const
{
return
outsideScvIndices_
.
size
();
}
//!
i
ndex of the outside sub control volume or boundary scv index
//
! returns
undefined behaviour if i
ndex exceeds
numOutsideScvs
//!
I
ndex of the
i-th
outside sub control volume or boundary scv index
.
//
Results in
undefined behaviour if i
>=
numOutsideScvs
()
GridIndexType
outsideScvIdx
(
int
i
=
0
)
const
{
return
outsideScvIndices_
[
i
];
}
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment