Skip to content
Snippets Groups Projects
Commit 68b0e499 authored by Ned Coltman's avatar Ned Coltman
Browse files

[rans][problem] add function descriptions

parent c7760238
No related branches found
No related tags found
1 merge request!2726Replace the IsOnWall function requirement with a boundary type
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment