mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
291 lines
6.7 KiB
C
291 lines
6.7 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 1991-2009 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 2 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, write to the Free Software Foundation,
|
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
Description
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "enrichedPatch.H"
|
|
#include "demandDrivenData.H"
|
|
#include "OFstream.H"
|
|
#include "meshTools.H"
|
|
|
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
defineTypeNameAndDebug(enrichedPatch, 0);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
|
|
|
void Foam::enrichedPatch::calcMeshPoints() const
|
|
{
|
|
if (meshPointsPtr_)
|
|
{
|
|
FatalErrorIn("void enrichedPatch::calcMeshPoints() const")
|
|
<< "Mesh points already calculated."
|
|
<< abort(FatalError);
|
|
}
|
|
|
|
meshPointsPtr_ = new labelList(pointMap().toc());
|
|
labelList& mp = *meshPointsPtr_;
|
|
|
|
sort(mp);
|
|
}
|
|
|
|
|
|
void Foam::enrichedPatch::calcLocalFaces() const
|
|
{
|
|
if (localFacesPtr_)
|
|
{
|
|
FatalErrorIn("void enrichedPatch::calcLocalFaces() const")
|
|
<< "Local faces already calculated."
|
|
<< abort(FatalError);
|
|
}
|
|
|
|
// Invert mesh points and renumber faces using it
|
|
const labelList& mp = meshPoints();
|
|
|
|
Map<label> mpLookup(2*mp.size());
|
|
|
|
forAll (mp, mpI)
|
|
{
|
|
mpLookup.insert(mp[mpI], mpI);
|
|
}
|
|
|
|
const faceList& faces = enrichedFaces();
|
|
|
|
localFacesPtr_ = new faceList(faces.size());
|
|
faceList& lf = *localFacesPtr_;
|
|
|
|
forAll (faces, faceI)
|
|
{
|
|
const face& f = faces[faceI];
|
|
|
|
face& curlf = lf[faceI];
|
|
|
|
curlf.setSize(f.size());
|
|
|
|
forAll (f, pointI)
|
|
{
|
|
curlf[pointI] = mpLookup.find(f[pointI])();
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
void Foam::enrichedPatch::calcLocalPoints() const
|
|
{
|
|
if (localPointsPtr_)
|
|
{
|
|
FatalErrorIn("void enrichedPatch::calcLocalPoints() const")
|
|
<< "Local points already calculated."
|
|
<< abort(FatalError);
|
|
}
|
|
|
|
const labelList& mp = meshPoints();
|
|
|
|
localPointsPtr_ = new pointField(mp.size());
|
|
pointField& lp = *localPointsPtr_;
|
|
|
|
forAll (lp, i)
|
|
{
|
|
lp[i] = pointMap().find(mp[i])();
|
|
}
|
|
}
|
|
|
|
|
|
void Foam::enrichedPatch::clearOut()
|
|
{
|
|
deleteDemandDrivenData(enrichedFacesPtr_);
|
|
|
|
deleteDemandDrivenData(meshPointsPtr_);
|
|
deleteDemandDrivenData(localFacesPtr_);
|
|
deleteDemandDrivenData(localPointsPtr_);
|
|
deleteDemandDrivenData(pointPointsPtr_);
|
|
deleteDemandDrivenData(masterPointFacesPtr_);
|
|
|
|
clearCutFaces();
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
// Construct from components
|
|
Foam::enrichedPatch::enrichedPatch
|
|
(
|
|
const primitiveFacePatch& masterPatch,
|
|
const primitiveFacePatch& slavePatch,
|
|
const labelList& slavePointPointHits,
|
|
const labelList& slavePointEdgeHits,
|
|
const List<objectHit>& slavePointFaceHits
|
|
)
|
|
:
|
|
masterPatch_(masterPatch),
|
|
slavePatch_(slavePatch),
|
|
pointMap_
|
|
(
|
|
masterPatch_.meshPoints().size()
|
|
+ slavePatch_.meshPoints().size()
|
|
),
|
|
pointMapComplete_(false),
|
|
pointMergeMap_(2*slavePatch_.meshPoints().size()),
|
|
slavePointPointHits_(slavePointPointHits),
|
|
slavePointEdgeHits_(slavePointEdgeHits),
|
|
slavePointFaceHits_(slavePointFaceHits),
|
|
enrichedFacesPtr_(NULL),
|
|
meshPointsPtr_(NULL),
|
|
localFacesPtr_(NULL),
|
|
localPointsPtr_(NULL),
|
|
pointPointsPtr_(NULL),
|
|
masterPointFacesPtr_(NULL),
|
|
cutFacesPtr_(NULL),
|
|
cutFaceMasterPtr_(NULL),
|
|
cutFaceSlavePtr_(NULL)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
|
|
|
Foam::enrichedPatch::~enrichedPatch()
|
|
{
|
|
clearOut();
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
const Foam::labelList& Foam::enrichedPatch::meshPoints() const
|
|
{
|
|
if (!meshPointsPtr_)
|
|
{
|
|
calcMeshPoints();
|
|
}
|
|
|
|
return *meshPointsPtr_;
|
|
}
|
|
|
|
|
|
const Foam::faceList& Foam::enrichedPatch::localFaces() const
|
|
{
|
|
if (!localFacesPtr_)
|
|
{
|
|
calcLocalFaces();
|
|
}
|
|
|
|
return *localFacesPtr_;
|
|
}
|
|
|
|
|
|
const Foam::pointField& Foam::enrichedPatch::localPoints() const
|
|
{
|
|
if (!localPointsPtr_)
|
|
{
|
|
calcLocalPoints();
|
|
}
|
|
|
|
return *localPointsPtr_;
|
|
}
|
|
|
|
|
|
const Foam::labelListList& Foam::enrichedPatch::pointPoints() const
|
|
{
|
|
if (!pointPointsPtr_)
|
|
{
|
|
calcPointPoints();
|
|
}
|
|
|
|
return *pointPointsPtr_;
|
|
}
|
|
|
|
|
|
bool Foam::enrichedPatch::checkSupport() const
|
|
{
|
|
const faceList& faces = enrichedFaces();
|
|
|
|
bool error = false;
|
|
|
|
forAll (faces, faceI)
|
|
{
|
|
const face& curFace = faces[faceI];
|
|
|
|
forAll (curFace, pointI)
|
|
{
|
|
if (!pointMap().found(curFace[pointI]))
|
|
{
|
|
WarningIn("void enrichedPatch::checkSupport()")
|
|
<< "Point " << pointI << " of face " << faceI
|
|
<< " global point index: " << curFace[pointI]
|
|
<< " not supported in point map. This is not allowed."
|
|
<< endl;
|
|
|
|
error = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
return error;
|
|
}
|
|
|
|
|
|
void Foam::enrichedPatch::writeOBJ(const fileName& fName) const
|
|
{
|
|
OFstream str(fName);
|
|
|
|
const pointField& lp = localPoints();
|
|
|
|
forAll(lp, pointI)
|
|
{
|
|
meshTools::writeOBJ(str, lp[pointI]);
|
|
}
|
|
|
|
const faceList& faces = localFaces();
|
|
|
|
forAll(faces, faceI)
|
|
{
|
|
const face& f = faces[faceI];
|
|
|
|
str << 'f';
|
|
forAll(f, fp)
|
|
{
|
|
str << ' ' << f[fp]+1;
|
|
}
|
|
str << nl;
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * //
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Friend Functions * * * * * * * * * * * * * //
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Friend Operators * * * * * * * * * * * * * //
|
|
|
|
|
|
// ************************************************************************* //
|