From 2bcbae122b141147e472bdbbad219c3571f71d0b Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Tue, 16 Oct 2018 12:44:24 +0200 Subject: Implement moving wall / velocity Dirichlet boundary condition Usable as both the inflow condition of the channel example and the top wall of a lid driven cavity. --- src/boundary_conditions.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/boundary_conditions.h') diff --git a/src/boundary_conditions.h b/src/boundary_conditions.h index 6b7de19..5f528e1 100644 --- a/src/boundary_conditions.h +++ b/src/boundary_conditions.h @@ -5,4 +5,6 @@ void computeWallCell(DataCellBuffer& pop, Vector cell, Vector normal); +void computeMovingWallCell(DataCellBuffer& pop, Vector cell, Vector normal, Vector u); + void computeZouHeVelocityWallCell(DataCellBuffer& pop, Vector cell, Vector normal, double vX); -- cgit v1.2.3