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
6b5bb497
Commit
6b5bb497
authored
Dec 14, 2018
by
Melanie Lipp
Browse files
Use a defined local variable more consequently.
parent
e8eb3b30
Changes
1
Hide whitespace changes
Inline
Side-by-side
dumux/discretization/staggered/freeflow/facevariables.hh
View file @
6b5bb497
...
...
@@ -110,11 +110,11 @@ public:
a
.
clear
();
// treat the velocities parallel to the self face
for
(
int
j
=
0
;
j
<
s
cvf
.
pair
Data
(
i
)
.
parallelDofs
.
size
();
j
++
)
for
(
int
j
=
0
;
j
<
s
ubFace
Data
.
parallelDofs
.
size
();
j
++
)
{
if
(
scvf
.
hasParallelNeighbor
(
i
,
j
))
{
a
.
push_back
(
faceSol
[
s
cvf
.
pair
Data
(
i
)
.
parallelDofs
[
j
]]);
a
.
push_back
(
faceSol
[
s
ubFace
Data
.
parallelDofs
[
j
]]);
}
}
velocityParallel_
[
i
]
=
a
;
...
...
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