From 21268fbd4229e84f3a645cd15d4017dd5472f97b Mon Sep 17 00:00:00 2001 From: Hesam Salehipour Date: Tue, 19 Sep 2023 18:09:26 -0400 Subject: [PATCH] added the description for the velocity attribute of the halfway bounceback --- src/boundary_conditions.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/boundary_conditions.py b/src/boundary_conditions.py index c33c556..73cf55d 100644 --- a/src/boundary_conditions.py +++ b/src/boundary_conditions.py @@ -467,6 +467,8 @@ class BounceBackHalfway(BoundaryCondition): Whether the boundary condition needs extra configuration before it can be applied. For this class, it is True. isSolid : bool Whether the boundary condition represents a solid boundary. For this class, it is True. + vel : array-like + The prescribed value of velocity vector for the boundary condition. No-slip BC is assumed if vel=None (default). """ def __init__(self, indices, gridInfo, precision_policy, vel=None): super().__init__(indices, gridInfo, precision_policy)