mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
123 lines
2.9 KiB
C
123 lines
2.9 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd |
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
| Copyright (C) 2013 OpenFOAM Foundation
|
|
-------------------------------------------------------------------------------
|
|
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 <http://www.gnu.org/licenses/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "meshStructure.H"
|
|
|
|
// * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * //
|
|
|
|
bool Foam::meshStructure::structured() const
|
|
{
|
|
return structured_;
|
|
}
|
|
|
|
|
|
const Foam::labelList& Foam::meshStructure::cellToPatchFaceAddressing() const
|
|
{
|
|
return cellToPatchFaceAddressing_;
|
|
}
|
|
|
|
|
|
Foam::labelList& Foam::meshStructure::cellToPatchFaceAddressing()
|
|
{
|
|
return cellToPatchFaceAddressing_;
|
|
}
|
|
|
|
|
|
const Foam::labelList& Foam::meshStructure::cellLayer() const
|
|
{
|
|
return cellLayer_;
|
|
}
|
|
|
|
|
|
Foam::labelList& Foam::meshStructure::cellLayer()
|
|
{
|
|
return cellLayer_;
|
|
}
|
|
|
|
|
|
const Foam::labelList& Foam::meshStructure::faceToPatchFaceAddressing() const
|
|
{
|
|
return faceToPatchFaceAddressing_;
|
|
}
|
|
|
|
|
|
Foam::labelList& Foam::meshStructure::faceToPatchFaceAddressing()
|
|
{
|
|
return faceToPatchFaceAddressing_;
|
|
}
|
|
|
|
|
|
const Foam::labelList& Foam::meshStructure::faceToPatchEdgeAddressing() const
|
|
{
|
|
return faceToPatchEdgeAddressing_;
|
|
}
|
|
|
|
|
|
Foam::labelList& Foam::meshStructure::faceToPatchEdgeAddressing()
|
|
{
|
|
return faceToPatchEdgeAddressing_;
|
|
}
|
|
|
|
|
|
const Foam::labelList& Foam::meshStructure::faceLayer() const
|
|
{
|
|
return faceLayer_;
|
|
}
|
|
|
|
|
|
Foam::labelList& Foam::meshStructure::faceLayer()
|
|
{
|
|
return faceLayer_;
|
|
}
|
|
|
|
|
|
const Foam::labelList& Foam::meshStructure::pointToPatchPointAddressing() const
|
|
{
|
|
return pointToPatchPointAddressing_;
|
|
}
|
|
|
|
|
|
Foam::labelList& Foam::meshStructure::pointToPatchPointAddressing()
|
|
{
|
|
return pointToPatchPointAddressing_;
|
|
}
|
|
|
|
|
|
const Foam::labelList& Foam::meshStructure::pointLayer() const
|
|
{
|
|
return pointLayer_;
|
|
}
|
|
|
|
|
|
Foam::labelList& Foam::meshStructure::pointLayer()
|
|
{
|
|
return pointLayer_;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|