1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | foam-extend: Open Source CFD
4 \\ / O peration | Version: 3.2
5 \\ / A nd | Web: http://www.foam-extend.org
6 \\/ M anipulation | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
9 This file is part of foam-extend.
11 foam-extend is free software: you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by the
13 Free Software Foundation, either version 3 of the License, or (at your
14 option) any later version.
16 foam-extend is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 #include "StandardWallInteraction.H"
28 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
30 template <class CloudType>
31 Foam::StandardWallInteraction<CloudType>::StandardWallInteraction
33 const dictionary& dict,
37 PatchInteractionModel<CloudType>(dict, cloud, typeName),
40 this->wordToInteractionType(this->coeffDict().lookup("type"))
45 switch (interactionType_)
47 case PatchInteractionModel<CloudType>::itOther:
49 word interactionTypeName(this->coeffDict().lookup("type"));
53 "StandardWallInteraction<CloudType>::StandardWallInteraction"
58 ) << "Unknown interaction result type "
59 << interactionTypeName
60 << ". Valid selections are:" << this->interactionTypeNames_
61 << endl << exit(FatalError);
65 case PatchInteractionModel<CloudType>::itRebound:
67 e_ = this->coeffDict().lookupOrDefault("e", 1.0);
68 mu_ = this->coeffDict().lookupOrDefault("mu", 0.0);
79 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
81 template <class CloudType>
82 Foam::StandardWallInteraction<CloudType>::~StandardWallInteraction()
86 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
88 template<class CloudType>
89 bool Foam::StandardWallInteraction<CloudType>::active() const
95 template <class CloudType>
96 bool Foam::StandardWallInteraction<CloudType>::correct
106 switch (interactionType_)
108 case PatchInteractionModel<CloudType>::itEscape:
110 keepParticle = false;
114 case PatchInteractionModel<CloudType>::itStick:
120 case PatchInteractionModel<CloudType>::itRebound:
124 vector nw = pp.faceAreas()[pp.whichFace(faceId)];
128 vector Ut = U - Un*nw;
132 U -= (1.0 + e_)*Un*nw;
143 "bool StandardWallInteraction<CloudType>::correct"
150 ) << "Unknown interaction type "
151 << this->interactionTypeToWord(interactionType_)
152 << "(" << interactionType_ << ")" << endl
153 << abort(FatalError);
164 // ************************************************************************* //