/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2017 OpenFOAM Foundation Copyright (C) 2018-2023 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. OpenFOAM is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. OpenFOAM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenFOAM. If not, see . Class Foam::StandardWallInteraction Group grpLagrangianIntermediatePatchInteractionSubModels Description Wall interaction model. Three choices: - rebound - optionally specify elasticity and restitution coefficients - stick - particles assigned zero velocity - escape - remove particle from the domain Example usage: \verbatim StandardWallInteractionCoeffs { type rebound; // stick, escape e 1; // optional - elasticity coeff mu 0; // optional - (1 - restitution coeff) } \endverbatim Note - \c mu=1 results in perfectly inelastic collisions. \*---------------------------------------------------------------------------*/ #ifndef StandardWallInteraction_H #define StandardWallInteraction_H #include "PatchInteractionModel.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { /*---------------------------------------------------------------------------*\ Class StandardWallInteraction Declaration \*---------------------------------------------------------------------------*/ template class StandardWallInteraction : public PatchInteractionModel { protected: // Protected data // Reference to mesh const fvMesh& mesh_; //- Interaction type typename PatchInteractionModel::interactionType interactionType_; //- Elasticity coefficient scalar e_; //- The unity minus the restitution coefficient scalar mu_; // Bookkeeping for particle fates //- Number of parcels escaped List> nEscape_; //- Mass of parcels escaped List> massEscape_; //- Number of parcels stuck to patches List> nStick_; //- Mass of parcels stuck to patches List> massStick_; //- Flag to output escaped/mass particles sorted by injectorID bool outputByInjectorId_; //- InjectorId to index map, when outputting escaped/stick/... // particles sorted by injectorID Map