2010-05-12 13:27:55 +00:00
|
|
|
/*---------------------------------------------------------------------------*\
|
|
|
|
========= |
|
2013-12-11 16:09:41 +00:00
|
|
|
\\ / F ield | foam-extend: Open Source CFD
|
2016-06-20 15:00:40 +00:00
|
|
|
\\ / O peration | Version: 4.0
|
2015-05-17 13:32:07 +00:00
|
|
|
\\ / A nd | Web: http://www.foam-extend.org
|
|
|
|
\\/ M anipulation | For copyright notice see file Copyright
|
2010-05-12 13:27:55 +00:00
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
License
|
2013-12-11 16:09:41 +00:00
|
|
|
This file is part of foam-extend.
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2013-12-11 16:09:41 +00:00
|
|
|
foam-extend is free software: you can redistribute it and/or modify it
|
2010-05-12 13:27:55 +00:00
|
|
|
under the terms of the GNU General Public License as published by the
|
2013-12-11 16:09:41 +00:00
|
|
|
Free Software Foundation, either version 3 of the License, or (at your
|
2010-05-12 13:27:55 +00:00
|
|
|
option) any later version.
|
|
|
|
|
2013-12-11 16:09:41 +00:00
|
|
|
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.
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2013-12-11 16:09:41 +00:00
|
|
|
along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
Application
|
|
|
|
foamToEnsightParts
|
|
|
|
|
|
|
|
Description
|
2013-12-11 16:09:41 +00:00
|
|
|
Translates foam data to Ensight format.
|
2010-05-12 13:27:55 +00:00
|
|
|
An Ensight part is created for each cellZone and patch.
|
|
|
|
|
|
|
|
Usage
|
|
|
|
- foamToEnsightParts [OPTION] \n
|
2013-12-11 16:09:41 +00:00
|
|
|
Translates foam data to Ensight format
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
@param -ascii \n
|
|
|
|
Write Ensight data in ASCII format instead of "C Binary"
|
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
@param -noZero \n
|
|
|
|
Exclude the often incomplete initial conditions.
|
|
|
|
|
|
|
|
@param -index \<start\>\n
|
|
|
|
Ignore the time index contained in the time file and use a
|
|
|
|
simple indexing when creating the @c Ensight/data/######## files.
|
|
|
|
|
|
|
|
@param -noMesh \n
|
|
|
|
Suppress writing the geometry. Can be useful for converting partial
|
|
|
|
results for a static geometry.
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
Note
|
|
|
|
- no parallel data.
|
|
|
|
- writes to @a Ensight directory to avoid collisions with foamToEnsight.
|
|
|
|
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
#include "argList.H"
|
|
|
|
#include "timeSelector.H"
|
|
|
|
|
|
|
|
#include "volFields.H"
|
|
|
|
#include "OFstream.H"
|
|
|
|
#include "IOmanip.H"
|
|
|
|
#include "IOobjectList.H"
|
|
|
|
#include "scalarIOField.H"
|
|
|
|
#include "tensorIOField.H"
|
|
|
|
|
|
|
|
#include "ensightParts.H"
|
|
|
|
#include "ensightOutputFunctions.H"
|
|
|
|
|
|
|
|
using namespace Foam;
|
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
// Main program:
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2010-08-26 14:22:03 +00:00
|
|
|
// enable -constant
|
Vanilla backport
- in FOAM library
updated containers
backported PackedBoolList, hashedWordList, nullObject, wordRe,
backported functions to
backported int32 support
backported tableReaders
backported Function1, TimeFunction1
backported dynamicCode (for codedBCs, ...) -- needs to be mapped out
advanced error macros (FatalIOErrorInFunction, ...) -- needs to be mapped out
backported IOobject::MUST_READ_IF_MODIFIED and added IOobject::READ_IF_PRESENT_IF_MODIFIED (only in FO)
- in postProcessing
backported IO FOs (partialWrite, removeRegisteredObject, writeDictionary, writeRegisteredObject)
backported field FOs (fieldCoordinateSystemTransform, fieldValues, nearWallFields, processorField, readFields, regionSizeDistribution, streamLine, wallBoundedStreamLine)
backported fvTools FOs (calcFvcDiv, calcFvcGrad, calcMag)
backported jobControl FOs (abortCalculation)
backported utilities FOs (ourantNo, Lambda2, Peclet, Q, codedFunctionObject, pressureTools, residuals, scalarTransport, setTimeStep, timeActivatedFileUpdate, turbulenceFields, vorticity, wallShearStress)
2017-04-09 13:11:54 +00:00
|
|
|
// probably don't need -noZero though, since the fields are vetted
|
2010-08-26 14:22:03 +00:00
|
|
|
// afterwards anyhow
|
2010-05-12 13:27:55 +00:00
|
|
|
timeSelector::addOptions(true, false);
|
|
|
|
argList::noParallel();
|
|
|
|
argList::validOptions.insert("ascii", "");
|
2010-08-26 14:22:03 +00:00
|
|
|
argList::validOptions.insert("index", "start");
|
|
|
|
argList::validOptions.insert("noMesh", "");
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
// the volume field types that we handle
|
|
|
|
wordHashSet volFieldTypes;
|
|
|
|
volFieldTypes.insert(volScalarField::typeName);
|
|
|
|
volFieldTypes.insert(volVectorField::typeName);
|
|
|
|
volFieldTypes.insert(volSphericalTensorField::typeName);
|
|
|
|
volFieldTypes.insert(volSymmTensorField::typeName);
|
|
|
|
volFieldTypes.insert(volTensorField::typeName);
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
// the lagrangian field types that we handle
|
|
|
|
wordHashSet cloudFieldTypes;
|
|
|
|
cloudFieldTypes.insert(scalarIOField::typeName);
|
|
|
|
cloudFieldTypes.insert(vectorIOField::typeName);
|
|
|
|
cloudFieldTypes.insert(tensorIOField::typeName);
|
|
|
|
|
|
|
|
const char* geometryName = "geometry";
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
# include "setRootCase.H"
|
|
|
|
# include "createTime.H"
|
|
|
|
|
|
|
|
// get times list
|
|
|
|
instantList timeDirs = timeSelector::select0(runTime, args);
|
|
|
|
|
|
|
|
// default to binary output, unless otherwise specified
|
|
|
|
IOstream::streamFormat format = IOstream::BINARY;
|
2010-08-26 14:22:03 +00:00
|
|
|
if (args.optionFound("ascii"))
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
|
|
|
format = IOstream::ASCII;
|
|
|
|
}
|
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
// control for renumbering iterations
|
|
|
|
bool optIndex = false;
|
|
|
|
label indexingNumber = 0;
|
|
|
|
if (args.optionFound("index"))
|
|
|
|
{
|
|
|
|
optIndex = true;
|
|
|
|
indexingNumber = args.optionRead<label>("index");
|
|
|
|
}
|
|
|
|
|
|
|
|
// always write the geometry, unless the -noMesh option is specified
|
|
|
|
bool optNoMesh = args.optionFound("noMesh");
|
|
|
|
|
2010-05-12 13:27:55 +00:00
|
|
|
fileName ensightDir = args.rootPath()/args.globalCaseName()/"Ensight";
|
|
|
|
fileName dataDir = ensightDir/"data";
|
|
|
|
fileName caseFileName = "Ensight.case";
|
|
|
|
fileName dataMask = fileName("data")/ensightFile::mask();
|
|
|
|
|
|
|
|
// Ensight and Ensight/data directories must exist
|
2010-08-26 14:22:03 +00:00
|
|
|
// do not remove old data - we might wish to convert new results
|
|
|
|
// or a particular time interval
|
|
|
|
if (isDir(ensightDir))
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
2010-08-26 14:22:03 +00:00
|
|
|
Info<<"Warning: reusing existing directory" << nl
|
|
|
|
<< " " << ensightDir << endl;
|
2010-05-12 13:27:55 +00:00
|
|
|
}
|
|
|
|
mkDir(ensightDir);
|
|
|
|
mkDir(dataDir);
|
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
# include "createNamedMesh.H"
|
|
|
|
|
|
|
|
// Mesh instance (region0 gets filtered out)
|
|
|
|
fileName regionPrefix;
|
|
|
|
|
|
|
|
if (regionName != polyMesh::defaultRegion)
|
|
|
|
{
|
|
|
|
regionPrefix = regionName;
|
|
|
|
}
|
|
|
|
|
2010-05-12 13:27:55 +00:00
|
|
|
// Construct the list of ensight parts for the entire mesh
|
|
|
|
ensightParts partsList(mesh);
|
|
|
|
|
|
|
|
// write summary information
|
|
|
|
{
|
|
|
|
OFstream partsInfoFile(ensightDir/"partsInfo");
|
|
|
|
|
|
|
|
partsInfoFile
|
|
|
|
<< "// summary of ensight parts" << nl << nl;
|
|
|
|
partsList.writeSummary(partsInfoFile);
|
|
|
|
}
|
|
|
|
|
|
|
|
# include "checkHasMovingMesh.H"
|
2010-08-26 14:22:03 +00:00
|
|
|
# include "findFields.H"
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
if (hasMovingMesh && optNoMesh)
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
2010-08-26 14:22:03 +00:00
|
|
|
Info<< "mesh is moving: ignoring '-noMesh' option" << endl;
|
|
|
|
optNoMesh = false;
|
2010-05-12 13:27:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
// map times used
|
|
|
|
Map<scalar> timeIndices;
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
// Track the time indices used by the volume fields
|
|
|
|
DynamicList<label> fieldTimesUsed;
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
// Track the time indices used by each cloud
|
|
|
|
HashTable<DynamicList<label> > cloudTimesUsed;
|
|
|
|
|
|
|
|
// Create a new DynamicList for each cloud
|
|
|
|
forAllConstIter(HashTable<HashTable<word> >, cloudFields, cloudIter)
|
|
|
|
{
|
|
|
|
cloudTimesUsed.insert(cloudIter.key(), DynamicList<label>());
|
|
|
|
}
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
forAll(timeDirs, timeI)
|
|
|
|
{
|
|
|
|
runTime.setTime(timeDirs[timeI], timeI);
|
|
|
|
|
|
|
|
# include "getTimeIndex.H"
|
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
// remember the time index
|
|
|
|
fieldTimesUsed.append(timeIndex);
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
// the data/ITER subdirectory must exist
|
|
|
|
fileName subDir = ensightFile::subDir(timeIndex);
|
|
|
|
mkDir(dataDir/subDir);
|
|
|
|
|
|
|
|
// place a timestamp in the directory for future reference
|
|
|
|
{
|
|
|
|
OFstream timeStamp(dataDir/subDir/"time");
|
|
|
|
timeStamp
|
|
|
|
<< "# timestep time" << nl
|
|
|
|
<< subDir.c_str() << " " << runTime.timeName() << nl;
|
|
|
|
}
|
|
|
|
|
|
|
|
# include "moveMesh.H"
|
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
if (timeI == 0 || mesh.moving())
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
|
|
|
if (mesh.moving())
|
|
|
|
{
|
|
|
|
partsList.recalculate(mesh);
|
|
|
|
}
|
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
if (!optNoMesh)
|
|
|
|
{
|
|
|
|
fileName geomDir;
|
|
|
|
if (hasMovingMesh)
|
|
|
|
{
|
|
|
|
geomDir = dataDir/subDir;
|
|
|
|
}
|
|
|
|
|
|
|
|
ensightGeoFile geoFile(ensightDir/geomDir/geometryName, format);
|
|
|
|
partsList.writeGeometry(geoFile);
|
|
|
|
Info<< nl;
|
|
|
|
}
|
2010-05-12 13:27:55 +00:00
|
|
|
}
|
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
Info<< "write volume field (" << flush;
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
forAllConstIter(HashTable<word>, volumeFields, fieldIter)
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
2010-08-26 14:22:03 +00:00
|
|
|
const word& fieldName = fieldIter.key();
|
|
|
|
const word& fieldType = fieldIter();
|
|
|
|
|
|
|
|
IOobject fieldObject
|
|
|
|
(
|
|
|
|
fieldName,
|
|
|
|
mesh.time().timeName(),
|
|
|
|
mesh,
|
|
|
|
IOobject::MUST_READ,
|
|
|
|
IOobject::NO_WRITE
|
|
|
|
);
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
if (fieldType == volScalarField::typeName)
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
2010-08-26 14:22:03 +00:00
|
|
|
ensightVolField<scalar>
|
|
|
|
(
|
|
|
|
partsList,
|
|
|
|
fieldObject,
|
|
|
|
mesh,
|
|
|
|
dataDir,
|
|
|
|
subDir,
|
|
|
|
format
|
|
|
|
);
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
}
|
|
|
|
else if (fieldType == volVectorField::typeName)
|
|
|
|
{
|
|
|
|
ensightVolField<vector>
|
|
|
|
(
|
|
|
|
partsList,
|
|
|
|
fieldObject,
|
|
|
|
mesh,
|
|
|
|
dataDir,
|
|
|
|
subDir,
|
|
|
|
format
|
|
|
|
);
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
}
|
|
|
|
else if (fieldType == volSphericalTensorField::typeName)
|
|
|
|
{
|
|
|
|
ensightVolField<sphericalTensor>
|
|
|
|
(
|
|
|
|
partsList,
|
|
|
|
fieldObject,
|
|
|
|
mesh,
|
|
|
|
dataDir,
|
|
|
|
subDir,
|
|
|
|
format
|
|
|
|
);
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
}
|
|
|
|
else if (fieldType == volSymmTensorField::typeName)
|
|
|
|
{
|
|
|
|
ensightVolField<symmTensor>
|
|
|
|
(
|
|
|
|
partsList,
|
|
|
|
fieldObject,
|
|
|
|
mesh,
|
|
|
|
dataDir,
|
|
|
|
subDir,
|
|
|
|
format
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else if (fieldType == volTensorField::typeName)
|
|
|
|
{
|
|
|
|
ensightVolField<tensor>
|
2010-05-12 13:27:55 +00:00
|
|
|
(
|
2010-08-26 14:22:03 +00:00
|
|
|
partsList,
|
|
|
|
fieldObject,
|
2010-05-12 13:27:55 +00:00
|
|
|
mesh,
|
2010-08-26 14:22:03 +00:00
|
|
|
dataDir,
|
|
|
|
subDir,
|
|
|
|
format
|
2010-05-12 13:27:55 +00:00
|
|
|
);
|
2010-08-26 14:22:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Info<< " )" << endl;
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
// check for clouds
|
|
|
|
forAllConstIter(HashTable<HashTable<word> >, cloudFields, cloudIter)
|
|
|
|
{
|
|
|
|
const word& cloudName = cloudIter.key();
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
if
|
|
|
|
(
|
|
|
|
!isDir
|
|
|
|
(
|
|
|
|
runTime.timePath()/regionPrefix/
|
|
|
|
cloud::prefix/cloudName
|
|
|
|
)
|
|
|
|
)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
IOobjectList cloudObjs
|
|
|
|
(
|
|
|
|
mesh,
|
|
|
|
runTime.timeName(),
|
|
|
|
cloud::prefix/cloudName
|
|
|
|
);
|
|
|
|
|
|
|
|
// check that the positions field is present for this time
|
|
|
|
if (cloudObjs.lookup("positions"))
|
|
|
|
{
|
|
|
|
ensightParticlePositions
|
|
|
|
(
|
|
|
|
mesh,
|
|
|
|
dataDir,
|
|
|
|
subDir,
|
|
|
|
cloudName,
|
|
|
|
format
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
Info<< "write " << cloudName << " (" << flush;
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
forAllConstIter(HashTable<word>, cloudIter(), fieldIter)
|
|
|
|
{
|
|
|
|
const word& fieldName = fieldIter.key();
|
|
|
|
const word& fieldType = fieldIter();
|
|
|
|
|
|
|
|
IOobject *fieldObject = cloudObjs.lookup(fieldName);
|
|
|
|
|
|
|
|
if (!fieldObject)
|
|
|
|
{
|
|
|
|
Info<< "missing "
|
|
|
|
<< runTime.timeName()/cloud::prefix/cloudName
|
|
|
|
/ fieldName
|
|
|
|
<< endl;
|
|
|
|
continue;
|
2010-05-12 13:27:55 +00:00
|
|
|
}
|
2010-08-26 14:22:03 +00:00
|
|
|
|
|
|
|
if (fieldType == scalarIOField::typeName)
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
2010-08-26 14:22:03 +00:00
|
|
|
ensightLagrangianField<scalar>
|
2010-05-12 13:27:55 +00:00
|
|
|
(
|
2010-08-26 14:22:03 +00:00
|
|
|
*fieldObject,
|
2010-05-12 13:27:55 +00:00
|
|
|
dataDir,
|
|
|
|
subDir,
|
2010-08-26 14:22:03 +00:00
|
|
|
cloudName,
|
2010-05-12 13:27:55 +00:00
|
|
|
format
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
2010-08-26 14:22:03 +00:00
|
|
|
else if (fieldType == vectorIOField::typeName)
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
2010-08-26 14:22:03 +00:00
|
|
|
ensightLagrangianField<vector>
|
2010-05-12 13:27:55 +00:00
|
|
|
(
|
2010-08-26 14:22:03 +00:00
|
|
|
*fieldObject,
|
2010-05-12 13:27:55 +00:00
|
|
|
dataDir,
|
|
|
|
subDir,
|
2010-08-26 14:22:03 +00:00
|
|
|
cloudName,
|
2010-05-12 13:27:55 +00:00
|
|
|
format
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
2010-08-26 14:22:03 +00:00
|
|
|
else if (fieldType == tensorIOField::typeName)
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
2010-08-26 14:22:03 +00:00
|
|
|
ensightLagrangianField<tensor>
|
2010-05-12 13:27:55 +00:00
|
|
|
(
|
2010-08-26 14:22:03 +00:00
|
|
|
*fieldObject,
|
2010-05-12 13:27:55 +00:00
|
|
|
dataDir,
|
|
|
|
subDir,
|
2010-08-26 14:22:03 +00:00
|
|
|
cloudName,
|
2010-05-12 13:27:55 +00:00
|
|
|
format
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
Info<< " )" << endl;
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
// remember the time index
|
|
|
|
cloudTimesUsed[cloudName].append(timeIndex);
|
2010-05-12 13:27:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
# include "ensightOutputCase.H"
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
Info<< "\nEnd\n"<< endl;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ************************************************************************* //
|