1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright (C) 2009-2010 OpenCFD Ltd.
7 -------------------------------------------------------------------------------
9 This file is part of OpenFOAM.
11 OpenFOAM is free software: you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by
13 the Free Software Foundation, either version 3 of the License, or
14 (at your option) any later version.
16 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 You should have received a copy of the GNU General Public License
22 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25 Foam::patchInteractionData
28 Helper class for the LocalInteraction patch interaction model
30 \*---------------------------------------------------------------------------*/
32 #ifndef patchInteractionData_H
33 #define patchInteractionData_H
37 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 /*---------------------------------------------------------------------------*\
42 Class patchInteractionData Declaration
43 \*---------------------------------------------------------------------------*/
45 // Forward declaration of classes
46 class patchInteractionData;
48 // Forward declaration of friend functions
52 patchInteractionData& pid
56 class patchInteractionData
60 //- Interaction type name
61 word interactionTypeName_;
66 //- Elasticity coefficient
69 //- Restitution coefficient
78 patchInteractionData();
85 //- Return const access to the interaction type name
86 const word& interactionTypeName() const;
88 //- Return const access to the patch name
89 const word& patchName() const;
91 //- Return const access to the elasticity coefficient
94 //- Return const access to the restitution coefficient
101 friend Istream& operator>>
104 patchInteractionData& pid
109 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
111 } // End namespace Foam
113 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
117 // ************************************************************************* //