mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
195 lines
4.9 KiB
C
195 lines
4.9 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
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "rotatedBoxToCell.H"
|
|
#include "polyMesh.H"
|
|
#include "cellModeller.H"
|
|
|
|
#include "addToRunTimeSelectionTable.H"
|
|
|
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
defineTypeNameAndDebug(rotatedBoxToCell, 0);
|
|
|
|
addToRunTimeSelectionTable(topoSetSource, rotatedBoxToCell, word);
|
|
|
|
addToRunTimeSelectionTable(topoSetSource, rotatedBoxToCell, istream);
|
|
|
|
}
|
|
|
|
|
|
Foam::topoSetSource::addToUsageTable Foam::rotatedBoxToCell::usage_
|
|
(
|
|
rotatedBoxToCell::typeName,
|
|
"\n Usage: rotatedBoxToCell (originx originy originz)"
|
|
" (ix iy iz) (jx jy jz) (kx ky kz)\n\n"
|
|
" Select all cells with cellCentre within parallelopiped\n\n"
|
|
);
|
|
|
|
|
|
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
|
|
|
void Foam::rotatedBoxToCell::combine(topoSet& set, const bool add) const
|
|
{
|
|
// Define a cell for the box
|
|
pointField boxPoints(8);
|
|
boxPoints[0] = origin_;
|
|
boxPoints[1] = origin_ + i_;
|
|
boxPoints[2] = origin_ + i_ + j_;
|
|
boxPoints[3] = origin_ + j_;
|
|
boxPoints[4] = origin_ + k_;
|
|
boxPoints[5] = origin_ + k_ + i_;
|
|
boxPoints[6] = origin_ + k_ + i_ + j_;
|
|
boxPoints[7] = origin_ + k_ + j_;
|
|
|
|
labelList boxVerts(8);
|
|
forAll(boxVerts, i)
|
|
{
|
|
boxVerts[i] = i;
|
|
}
|
|
|
|
const cellModel& hex = *(cellModeller::lookup("hex"));
|
|
|
|
// Get outwards pointing faces.
|
|
faceList boxFaces(cellShape(hex, boxVerts).faces());
|
|
|
|
// Precalculate normals
|
|
vectorField boxFaceNormals(boxFaces.size());
|
|
forAll(boxFaces, i)
|
|
{
|
|
boxFaceNormals[i] = boxFaces[i].normal(boxPoints);
|
|
|
|
Pout<< "Face:" << i << " position:" << boxFaces[i].centre(boxPoints)
|
|
<< " normal:" << boxFaceNormals[i] << endl;
|
|
}
|
|
|
|
// Check whether cell centre is inside all faces of box.
|
|
|
|
const pointField& ctrs = mesh_.cellCentres();
|
|
|
|
forAll(ctrs, cellI)
|
|
{
|
|
bool inside = true;
|
|
|
|
forAll(boxFaces, i)
|
|
{
|
|
const face& f = boxFaces[i];
|
|
|
|
if (((ctrs[cellI] - boxPoints[f[0]]) & boxFaceNormals[i]) > 0)
|
|
{
|
|
inside = false;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (inside)
|
|
{
|
|
addOrDelete(set, cellI, add);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
// Construct from components
|
|
Foam::rotatedBoxToCell::rotatedBoxToCell
|
|
(
|
|
const polyMesh& mesh,
|
|
const vector& origin,
|
|
const vector& i,
|
|
const vector& j,
|
|
const vector& k
|
|
)
|
|
:
|
|
topoSetSource(mesh),
|
|
origin_(origin_),
|
|
i_(i),
|
|
j_(j),
|
|
k_(k)
|
|
{}
|
|
|
|
|
|
// Construct from dictionary
|
|
Foam::rotatedBoxToCell::rotatedBoxToCell
|
|
(
|
|
const polyMesh& mesh,
|
|
const dictionary& dict
|
|
)
|
|
:
|
|
topoSetSource(mesh),
|
|
origin_(dict.lookup("origin")),
|
|
i_(dict.lookup("i")),
|
|
j_(dict.lookup("j")),
|
|
k_(dict.lookup("k"))
|
|
{}
|
|
|
|
|
|
// Construct from Istream
|
|
Foam::rotatedBoxToCell::rotatedBoxToCell(const polyMesh& mesh, Istream& is)
|
|
:
|
|
topoSetSource(mesh),
|
|
origin_(is),
|
|
i_(is),
|
|
j_(is),
|
|
k_(is)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
|
|
|
Foam::rotatedBoxToCell::~rotatedBoxToCell()
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
void Foam::rotatedBoxToCell::applyToSet
|
|
(
|
|
const topoSetSource::setAction action,
|
|
topoSet& set
|
|
) const
|
|
{
|
|
if ((action == topoSetSource::NEW) || (action == topoSetSource::ADD))
|
|
{
|
|
Info<< " Adding cells with center within rotated box " << endl;
|
|
|
|
combine(set, true);
|
|
}
|
|
else if (action == topoSetSource::DELETE)
|
|
{
|
|
Info<< " Removing cells with center within rotated box " << endl;
|
|
|
|
combine(set, false);
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|