133 lines
3.5 KiB
C
133 lines
3.5 KiB
C
|
/*---------------------------------------------------------------------------*\
|
||
|
========= |
|
||
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||
|
\\ / O peration |
|
||
|
\\ / A nd | Copyright held by original author
|
||
|
\\/ 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
|
||
|
|
||
|
Class
|
||
|
Foam::repatch
|
||
|
|
||
|
Description
|
||
|
A mesh which allows changes in the patch distribution of the
|
||
|
boundary faces. The change in patching is set using changePatchID. For a
|
||
|
boundary face, a new patch ID is given.
|
||
|
|
||
|
SourceFiles
|
||
|
repatch.C
|
||
|
|
||
|
\*---------------------------------------------------------------------------*/
|
||
|
|
||
|
#ifndef repatch_H
|
||
|
#define repatch_H
|
||
|
|
||
|
#include "polyMesh.H"
|
||
|
#include "directTopoChange.H"
|
||
|
|
||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||
|
|
||
|
namespace Foam
|
||
|
{
|
||
|
|
||
|
/*---------------------------------------------------------------------------*\
|
||
|
Class repatch Declaration
|
||
|
\*---------------------------------------------------------------------------*/
|
||
|
|
||
|
class repatch
|
||
|
{
|
||
|
// Private data
|
||
|
|
||
|
//- The polyMesh to be repatched
|
||
|
polyMesh& mesh_;
|
||
|
|
||
|
//- Topological change to accumulated all mesh changes
|
||
|
autoPtr<directTopoChange> meshModPtr_;
|
||
|
|
||
|
|
||
|
// Private Member Functions
|
||
|
|
||
|
//- Demand driven access to directTopoChange
|
||
|
directTopoChange& meshMod();
|
||
|
|
||
|
//- Disallow default bitwise copy construct
|
||
|
repatch(const repatch&);
|
||
|
|
||
|
//- Disallow default bitwise assignment
|
||
|
void operator=(const repatch&);
|
||
|
|
||
|
|
||
|
public:
|
||
|
|
||
|
// Constructors
|
||
|
|
||
|
//- Construct for given mesh
|
||
|
explicit repatch(polyMesh& mesh);
|
||
|
|
||
|
|
||
|
// Destructor
|
||
|
|
||
|
~repatch()
|
||
|
{}
|
||
|
|
||
|
|
||
|
// Member Functions
|
||
|
|
||
|
//- Change patches.
|
||
|
void changePatches(const List<polyPatch*>& patches);
|
||
|
|
||
|
//- Change patch ID for a boundary face. Note: patchID should be in new
|
||
|
// numbering.
|
||
|
void changePatchID
|
||
|
(
|
||
|
const label faceID,
|
||
|
const label patchID
|
||
|
);
|
||
|
|
||
|
//- Set zone ID for a face
|
||
|
void setFaceZone
|
||
|
(
|
||
|
const label faceID,
|
||
|
const label zoneID,
|
||
|
const bool zoneFlip
|
||
|
);
|
||
|
|
||
|
//- Change anchor point (zero'th point of face) for a boundary face.
|
||
|
void changeAnchorPoint
|
||
|
(
|
||
|
const label faceID,
|
||
|
const label fp
|
||
|
);
|
||
|
|
||
|
|
||
|
//- Re-patch the mesh
|
||
|
void execute();
|
||
|
};
|
||
|
|
||
|
|
||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||
|
|
||
|
} // End namespace Foam
|
||
|
|
||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||
|
|
||
|
#endif
|
||
|
|
||
|
// ************************************************************************* //
|