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
68b0e499
Commit
68b0e499
authored
3 years ago
by
Ned Coltman
Browse files
Options
Downloads
Patches
Plain Diff
[rans][problem] add function descriptions
parent
c7760238
No related branches found
No related tags found
1 merge request
!2726
Replace the IsOnWall function requirement with a boundary type
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/freeflow/rans/problem.hh
+8
-0
8 additions, 0 deletions
dumux/freeflow/rans/problem.hh
with
8 additions
and
0 deletions
dumux/freeflow/rans/problem.hh
+
8
−
0
View file @
68b0e499
...
...
@@ -358,6 +358,11 @@ private:
return
std
::
all_of
(
wallFaceAxis
.
begin
(),
wallFaceAxis
.
end
(),
[
firstDir
=
wallFaceAxis
[
0
]](
auto
dir
){
return
(
dir
==
firstDir
);}
)
;
}
/*!
* \brief Use the boundary search algorithm to find the shortest distance to a wall for each element
*
* Also store the wall element's index, and its direction in the case of flat wall bounded problems
*/
void
findWallDistances_
()
{
WallDistance
wallInformation
(
this
->
gridGeometry
(),
WallDistance
<
GridGeometry
>::
atElementCenters
,
...
...
@@ -398,6 +403,9 @@ private:
}
}
/*!
* \brief Store all direct neighbor indicies for each element
*/
void
findNeighborIndices_
()
{
// search for neighbor Idxs
...
...
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