- use succincter method names that more closely resemble dictionary and HashTable method names. This improves method name consistency between classes and also requires less typing effort: args.found(optName) vs. args.optionFound(optName) args.readIfPresent(..) vs. args.optionReadIfPresent(..) ... args.opt<scalar>(optName) vs. args.optionRead<scalar>(optName) args.read<scalar>(index) vs. args.argRead<scalar>(index) - the older method names forms have been retained for code compatibility, but are now deprecated
150 lines
4.1 KiB
C
150 lines
4.1 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
|
|
\\/ 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 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/>.
|
|
|
|
Application
|
|
rotateMesh
|
|
|
|
Group
|
|
grpMeshManipulationUtilities
|
|
|
|
Description
|
|
Rotates the mesh and fields from the direction n1 to direction n2.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "argList.H"
|
|
#include "timeSelector.H"
|
|
#include "Time.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& rotT
|
|
)
|
|
{
|
|
// Objects of field type
|
|
IOobjectList fields(objects.lookupClass(GeometricField::typeName));
|
|
|
|
forAllIter(IOobjectList, fields, fieldIter)
|
|
{
|
|
Info<< " Rotating " << fieldIter()->name() << endl;
|
|
|
|
GeometricField fld(*fieldIter(), mesh);
|
|
transform(fld, dimensionedTensor(rotT), fld);
|
|
fld.write();
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
argList::addNote
|
|
(
|
|
"Rotate mesh points and vector/tensor fields\n"
|
|
"Rotation from the <n1> vector to the <n2> vector"
|
|
);
|
|
|
|
timeSelector::addOptions();
|
|
|
|
argList::addArgument("n1");
|
|
argList::addArgument("n2");
|
|
|
|
#include "setRootCase.H"
|
|
#include "createTime.H"
|
|
|
|
vector n1(args.read<vector>(1));
|
|
n1 /= mag(n1);
|
|
|
|
vector n2(args.read<vector>(2));
|
|
n2 /= mag(n2);
|
|
|
|
const tensor rotT(rotationTensor(n1, n2));
|
|
|
|
{
|
|
pointIOField points
|
|
(
|
|
IOobject
|
|
(
|
|
"points",
|
|
runTime.findInstance(polyMesh::meshSubDir, "points"),
|
|
polyMesh::meshSubDir,
|
|
runTime,
|
|
IOobject::MUST_READ,
|
|
IOobject::NO_WRITE,
|
|
false
|
|
)
|
|
);
|
|
|
|
points = transform(rotT, points);
|
|
|
|
// Set the precision of the points data to 10
|
|
IOstream::defaultPrecision(max(10u, IOstream::defaultPrecision()));
|
|
|
|
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, rotT);
|
|
RotateFields<volSphericalTensorField>(mesh, objects, rotT);
|
|
RotateFields<volSymmTensorField>(mesh, objects, rotT);
|
|
RotateFields<volTensorField>(mesh, objects, rotT);
|
|
|
|
RotateFields<surfaceVectorField>(mesh, objects, rotT);
|
|
RotateFields<surfaceSphericalTensorField>(mesh, objects, rotT);
|
|
RotateFields<surfaceSymmTensorField>(mesh, objects, rotT);
|
|
RotateFields<surfaceTensorField>(mesh, objects, rotT);
|
|
}
|
|
|
|
Info<< "End\n" << endl;
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|