/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2008-2010 OpenCFD Ltd.
\\/ M anipulation |
-------------------------------------------------------------------------------
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 .
\*---------------------------------------------------------------------------*/
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
template
const Foam::polyMesh& Foam::InteractionLists::mesh() const
{
return mesh_;
}
template
const Foam::mapDistribute&
Foam::InteractionLists::cellMap() const
{
return cellMapPtr_();
}
template
const Foam::mapDistribute&
Foam::InteractionLists::wallFaceMap() const
{
return wallFaceMapPtr_();
}
template
const Foam::globalIndexAndTransform&
Foam::InteractionLists::globalTransforms() const
{
return globalTransforms_;
}
template
const Foam::labelListList& Foam::InteractionLists::dil() const
{
return dil_;
}
template
const Foam::labelListList&
Foam::InteractionLists::dwfil() const
{
return dwfil_;
}
template
const Foam::labelListList& Foam::InteractionLists::ril() const
{
return ril_;
}
template
const Foam::labelListList&
Foam::InteractionLists::rilInverse() const
{
return rilInverse_;
}
template
const Foam::labelListList& Foam::InteractionLists::rwfil() const
{
return rwfil_;
}
template
const Foam::labelListList&
Foam::InteractionLists::rwfilInverse() const
{
return rwfilInverse_;
}
template
const Foam::List&
Foam::InteractionLists::cellIndexAndTransformToDistribute() const
{
return cellIndexAndTransformToDistribute_;
}
template
const Foam::List&
Foam::InteractionLists::
wallFaceIndexAndTransformToDistribute() const
{
return wallFaceIndexAndTransformToDistribute_;
}
template
const Foam::List&
Foam::InteractionLists::referredWallFaces() const
{
return referredWallFaces_;
}
template
const Foam::List&
Foam::InteractionLists::referredWallData() const
{
return referredWallData_;
}
template
const Foam::List >&
Foam::InteractionLists::referredParticles() const
{
return referredParticles_;
}
template
Foam::List >&
Foam::InteractionLists::referredParticles()
{
return referredParticles_;
}
// ************************************************************************* //