ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / src / lagrangian / basic / InteractionLists / InteractionListsI.H
blob6eaa438587c0a7a8fdb48f303276a5a53fb01605
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
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
19     for more details.
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
33     return mesh_;
37 template<class ParticleType>
38 const Foam::mapDistribute&
39 Foam::InteractionLists<ParticleType>::cellMap() const
41     return cellMapPtr_();
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
56     return dil_;
60 template<class ParticleType>
61 const Foam::labelListList&
62 Foam::InteractionLists<ParticleType>::dwfil() const
64     return dwfil_;
68 template<class ParticleType>
69 const Foam::labelListList& Foam::InteractionLists<ParticleType>::ril() const
71     return ril_;
75 template<class ParticleType>
76 const Foam::labelListList&
77 Foam::InteractionLists<ParticleType>::rilInverse() const
79     return rilInverse_;
83 template<class ParticleType>
84 const Foam::labelListList& Foam::InteractionLists<ParticleType>::rwfil() const
86     return rwfil_;
90 template<class ParticleType>
91 const Foam::labelListList&
92 Foam::InteractionLists<ParticleType>::rwfilInverse() const
94     return rwfilInverse_;
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
126     return UName_;
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 // ************************************************************************* //