142 lines
4 KiB
C++
142 lines
4 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | foam-extend: Open Source CFD
|
|
\\ / O peration | Version: 4.1
|
|
\\ / A nd | Web: http://www.foam-extend.org
|
|
\\/ M anispulation |
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of foam-extend.
|
|
|
|
foam-extend 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.
|
|
|
|
foam-extend 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 foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
Application
|
|
rotateMesh
|
|
|
|
Description
|
|
Rotates the mesh and fields from the direcion n1 to the direction n2.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "argList.H"
|
|
#include "timeSelector.H"
|
|
#include "objectRegistry.H"
|
|
#include "foamTime.H"
|
|
#include "fvMesh.H"
|
|
#include "volFields.H"
|
|
#include "surfaceFields.H"
|
|
#include "transformGeometricField.H"
|
|
#include "IOobjectList.H"
|
|
|
|
using namespace Foam;
|
|
|
|
template<class GeometricField>
|
|
void RotateFields
|
|
(
|
|
const fvMesh& mesh,
|
|
const IOobjectList& objects,
|
|
const tensor& T
|
|
)
|
|
{
|
|
// Search list of objects for volScalarFields
|
|
IOobjectList fields(objects.lookupClass(GeometricField::typeName));
|
|
|
|
forAllIter(IOobjectList, fields, fieldIter)
|
|
{
|
|
Info<< " Rotating " << fieldIter()->name() << endl;
|
|
|
|
GeometricField theta(*fieldIter(), mesh);
|
|
transform(theta, dimensionedTensor(T), theta);
|
|
theta.write();
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
timeSelector::addOptions();
|
|
|
|
argList::validArgs.append("n1");
|
|
argList::validArgs.append("n2");
|
|
|
|
# include "setRootCase.H"
|
|
# include "createTime.H"
|
|
|
|
vector n1(IStringStream(args.additionalArgs()[0])());
|
|
n1 /= mag(n1);
|
|
|
|
vector n2(IStringStream(args.additionalArgs()[1])());
|
|
n2 /= mag(n2);
|
|
|
|
tensor T = rotationTensor(n1, n2);
|
|
|
|
{
|
|
pointIOField points
|
|
(
|
|
IOobject
|
|
(
|
|
"points",
|
|
runTime.findInstance(polyMesh::meshSubDir, "points"),
|
|
polyMesh::meshSubDir,
|
|
runTime,
|
|
IOobject::MUST_READ,
|
|
IOobject::NO_WRITE,
|
|
false
|
|
)
|
|
);
|
|
|
|
points = transform(T, points);
|
|
|
|
// Set the precision of the points data to 10
|
|
IOstream::defaultPrecision(10);
|
|
|
|
Info << "Writing points into directory " << points.path() << nl << endl;
|
|
points.write();
|
|
}
|
|
|
|
|
|
instantList timeDirs = timeSelector::select0(runTime, args);
|
|
|
|
# include "createMesh.H"
|
|
|
|
|
|
forAll(timeDirs, timeI)
|
|
{
|
|
runTime.setTime(timeDirs[timeI], timeI);
|
|
|
|
Info<< "Time = " << runTime.timeName() << endl;
|
|
|
|
// Search for list of objects for this time
|
|
IOobjectList objects(mesh, runTime.timeName());
|
|
|
|
RotateFields<volVectorField>(mesh, objects, T);
|
|
RotateFields<volSphericalTensorField>(mesh, objects, T);
|
|
RotateFields<volSymmTensorField>(mesh, objects, T);
|
|
RotateFields<volTensorField>(mesh, objects, T);
|
|
|
|
RotateFields<surfaceVectorField>(mesh, objects, T);
|
|
RotateFields<surfaceSphericalTensorField>(mesh, objects, T);
|
|
RotateFields<surfaceSymmTensorField>(mesh, objects, T);
|
|
RotateFields<surfaceTensorField>(mesh, objects, T);
|
|
}
|
|
|
|
Info<< "\nEnd.\n" << endl;
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|