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
fea3993e
Commit
fea3993e
authored
Jan 11, 2020
by
Kilian Weishaupt
Committed by
Ned Coltman
Jan 23, 2020
Browse files
[navierstokes][staggered][velocitygradients] Use new Beavers-Jospeh interface
parent
9fa29108
Changes
1
Hide whitespace changes
Inline
Side-by-side
dumux/freeflow/navierstokes/staggered/velocitygradients.hh
View file @
fea3993e
...
@@ -272,8 +272,11 @@ public:
...
@@ -272,8 +272,11 @@ public:
return
velocityGradIJ
(
problem
,
element
,
fvGeometry
,
scvf
,
faceVars
,
currentScvfBoundaryTypes
,
lateralFaceBoundaryTypes
,
localSubFaceIdx
);
return
velocityGradIJ
(
problem
,
element
,
fvGeometry
,
scvf
,
faceVars
,
currentScvfBoundaryTypes
,
lateralFaceBoundaryTypes
,
localSubFaceIdx
);
}();
}();
return
problem
.
beaversJosephVelocity
(
element
,
fvGeometry
.
scv
(
scvf
.
insideScvIdx
()),
return
problem
.
beaversJosephVelocity
(
element
,
scvf
,
innerLateralVelocity
,
fvGeometry
.
scv
(
scvf
.
insideScvIdx
()),
lateralScvf
,
scvf
,
/*on boundary*/
innerLateralVelocity
,
tangentialVelocityGradient
);
tangentialVelocityGradient
);
}
}
...
@@ -329,9 +332,11 @@ public:
...
@@ -329,9 +332,11 @@ public:
return
velocityGradJI
(
problem
,
element
,
fvGeometry
,
scvf
,
faceVars
,
currentScvfBoundaryTypes
,
lateralFaceBoundaryTypes
,
localSubFaceIdx
);
return
velocityGradJI
(
problem
,
element
,
fvGeometry
,
scvf
,
faceVars
,
currentScvfBoundaryTypes
,
lateralFaceBoundaryTypes
,
localSubFaceIdx
);
}();
}();
return
problem
.
beaversJosephVelocity
(
element
,
return
problem
.
beaversJosephVelocity
(
element
,
fvGeometry
.
scv
(
scvf
.
insideScvIdx
()),
fvGeometry
.
scv
(
scvf
.
insideScvIdx
()),
lateralScvf
,
innerParallelVelocity
,
scvf
,
lateralScvf
,
/*on boundary*/
innerParallelVelocity
,
tangentialVelocityGradient
);
tangentialVelocityGradient
);
}
}
...
...
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