Skip to content
Snippets Groups Projects
Commit 54014ba6 authored by Anna Wellmann's avatar Anna Wellmann
Browse files

Explicitly add implicit bounce back bc

parent 053aca96
No related branches found
No related tags found
1 merge request!118Use factory for boundary conditions and clean up some kernels
......@@ -61,6 +61,9 @@ boundaryCondition BoundaryConditionFactory::getNoSlipBoundaryConditionPost(bool
// for descriptions of the boundary conditions refer to the header
switch (boundaryCondition) {
case NoSlipBC::NoSlipImplicitBounceBack:
return [] (LBMSimulationParameter *, QforBoundaryConditions *) {};
break;
case NoSlipBC::NoSlipBounceBack:
return BBDev27;
break;
......
......@@ -31,6 +31,8 @@ public:
//! \brief An enumeration for selecting a no-slip boundary condition
enum class NoSlipBC {
//! - NoSlipImplicitBounceBack = implicit bounce back by Esoteric Twist
NoSlipImplicitBounceBack,
//! - NoSlipBounceBack = bounce back no-slip boundary condition
NoSlipBounceBack,
//! - NoSlipIncompressible = interpolated no-slip boundary condition, based on subgrid distances
......
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