1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
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/>.
24 \*---------------------------------------------------------------------------*/
26 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
28 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
30 template<class ParticleType>
31 const Foam::polyMesh& Foam::InteractionLists<ParticleType>::mesh() const
37 template<class ParticleType>
38 const Foam::mapDistribute&
39 Foam::InteractionLists<ParticleType>::cellMap() const
45 template<class ParticleType>
46 const Foam::mapDistribute&
47 Foam::InteractionLists<ParticleType>::wallFaceMap() const
49 return wallFaceMapPtr_();
53 template<class ParticleType>
54 const Foam::labelListList& Foam::InteractionLists<ParticleType>::dil() const
60 template<class ParticleType>
61 const Foam::labelListList&
62 Foam::InteractionLists<ParticleType>::dwfil() const
68 template<class ParticleType>
69 const Foam::labelListList& Foam::InteractionLists<ParticleType>::ril() const
75 template<class ParticleType>
76 const Foam::labelListList&
77 Foam::InteractionLists<ParticleType>::rilInverse() const
83 template<class ParticleType>
84 const Foam::labelListList& Foam::InteractionLists<ParticleType>::rwfil() const
90 template<class ParticleType>
91 const Foam::labelListList&
92 Foam::InteractionLists<ParticleType>::rwfilInverse() const
98 template<class ParticleType>
99 const Foam::List<Foam::labelPair>&
100 Foam::InteractionLists<ParticleType>::cellIndexAndTransformToDistribute() const
102 return cellIndexAndTransformToDistribute_;
106 template<class ParticleType>
107 const Foam::List<Foam::labelPair>&
108 Foam::InteractionLists<ParticleType>::
109 wallFaceIndexAndTransformToDistribute() const
111 return wallFaceIndexAndTransformToDistribute_;
115 template<class ParticleType>
116 const Foam::List<Foam::referredWallFace>&
117 Foam::InteractionLists<ParticleType>::referredWallFaces() const
119 return referredWallFaces_;
123 template<class ParticleType>
124 const Foam::word& Foam::InteractionLists<ParticleType>::UName() const
130 template<class ParticleType>
131 const Foam::List<Foam::vector>&
132 Foam::InteractionLists<ParticleType>::referredWallData() const
134 return referredWallData_;
138 template<class ParticleType>
139 const Foam::List<Foam::IDLList<ParticleType> >&
140 Foam::InteractionLists<ParticleType>::referredParticles() const
142 return referredParticles_;
146 template<class ParticleType>
147 Foam::List<Foam::IDLList<ParticleType> >&
148 Foam::InteractionLists<ParticleType>::referredParticles()
150 return referredParticles_;
154 // ************************************************************************* //