- in most cases a parallel-consistent order is required. Even when the order is not important, it will generally require fewer allocations to create a UPtrList of entries instead of a HashTable or even a wordList.
146 lines
4.0 KiB
C
146 lines
4.0 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | www.openfoam.com
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
Copyright (C) 2011-2016 OpenFOAM Foundation
|
|
Copyright (C) 2023 OpenCFD Ltd.
|
|
-------------------------------------------------------------------------------
|
|
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
|
|
foamDataToFluent
|
|
|
|
Group
|
|
grpPostProcessingUtilities
|
|
|
|
Description
|
|
Translate OpenFOAM data to Fluent format.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "fvCFD.H"
|
|
#include "writeFluentFields.H"
|
|
#include "OFstream.H"
|
|
#include "IOobjectList.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
argList::addNote
|
|
(
|
|
"Translate OpenFOAM data to Fluent format"
|
|
);
|
|
argList::noParallel();
|
|
timeSelector::addOptions(false); // constant(false), zero(false)
|
|
|
|
#include "setRootCase.H"
|
|
#include "createTime.H"
|
|
|
|
instantList timeDirs = timeSelector::select0(runTime, args);
|
|
|
|
#include "createNamedMesh.H"
|
|
|
|
// make a directory called proInterface in the case
|
|
mkDir(runTime.rootPath()/runTime.caseName()/"fluentInterface");
|
|
|
|
forAll(timeDirs, timeI)
|
|
{
|
|
runTime.setTime(timeDirs[timeI], timeI);
|
|
|
|
Info<< "Time = " << runTime.timeName() << endl;
|
|
|
|
if (mesh.readUpdate())
|
|
{
|
|
Info<< " Read new mesh" << endl;
|
|
}
|
|
|
|
// make a directory called proInterface in the case
|
|
mkDir(runTime.rootPath()/runTime.caseName()/"fluentInterface");
|
|
|
|
// open a file for the mesh
|
|
OFstream fluentDataFile
|
|
(
|
|
runTime.rootPath()/
|
|
runTime.caseName()/
|
|
"fluentInterface"/
|
|
runTime.caseName() + runTime.timeName() + ".dat"
|
|
);
|
|
|
|
fluentDataFile
|
|
<< "(0 \"FOAM to Fluent data File\")" << endl << endl;
|
|
|
|
// Writing number of faces
|
|
label nFaces = mesh.nFaces();
|
|
|
|
forAll(mesh.boundary(), patchi)
|
|
{
|
|
nFaces += mesh.boundary()[patchi].size();
|
|
}
|
|
|
|
fluentDataFile
|
|
<< "(33 (" << mesh.nCells() << " " << nFaces << " "
|
|
<< mesh.nPoints() << "))" << endl;
|
|
|
|
IOdictionary foamDataToFluentDict
|
|
(
|
|
IOobject
|
|
(
|
|
"foamDataToFluentDict",
|
|
runTime.system(),
|
|
mesh,
|
|
IOobjectOption::MUST_READ,
|
|
IOobjectOption::NO_WRITE,
|
|
IOobjectOption::NO_REGISTER
|
|
)
|
|
);
|
|
|
|
|
|
// Search for list of objects for this time
|
|
IOobjectList objects(mesh, runTime.timeName());
|
|
|
|
|
|
readFieldsAndWriteFluent<volScalarField>
|
|
(
|
|
foamDataToFluentDict,
|
|
objects,
|
|
mesh,
|
|
fluentDataFile
|
|
);
|
|
|
|
readFieldsAndWriteFluent<volVectorField>
|
|
(
|
|
foamDataToFluentDict,
|
|
objects,
|
|
mesh,
|
|
fluentDataFile
|
|
);
|
|
|
|
Info<< endl;
|
|
}
|
|
|
|
Info<< "End\n" << endl;
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|