Skip to content
GitLab
Menu
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
9c1ecba3
Commit
9c1ecba3
authored
Mar 05, 2021
by
Timo Koch
Committed by
Dennis Gläser
Mar 05, 2021
Browse files
[box][cleanup] Underscore private function, use element member
parent
aa99e831
Changes
1
Hide whitespace changes
Inline
Side-by-side
dumux/discretization/box/fvelementgeometry.hh
View file @
9c1ecba3
...
...
@@ -271,7 +271,7 @@ public:
{
element_
=
element
;
eIdx_
=
gridGeometry
().
elementMapper
().
index
(
element
);
makeElementGeometries
(
element
);
makeElementGeometries
_
();
}
//! Returns true if bind/bindElement has already been called
...
...
@@ -292,12 +292,13 @@ public:
private:
void
makeElementGeometries
(
const
Element
&
element
)
void
makeElementGeometries
_
()
{
hasBoundaryScvf_
=
false
;
// get the element geometry
auto
elementGeometry
=
element
.
geometry
();
const
auto
&
element
=
*
element_
;
const
auto
elementGeometry
=
element
.
geometry
();
const
auto
refElement
=
referenceElement
(
elementGeometry
);
// get the sub control volume geometries of this element
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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