- Default format is now XML binary (base64) instead of legacy format. The old -xml option is redundant and ignored. The new -legacy option can be used to force legacy output instead. - Polyhedral decomposition is now off by default (old -poly is ignored). The option -poly-decomp forces decomposition of polyhedrals into primitive shapes. - reduced memory footprint by reading and converting fields successively. - Creation of symlinks to processor files is no longer required or desired. The old -noLinks option is ignored. - Ignore -useTimeName option. Always number according to timeIndex.
133 lines
3.3 KiB
C++
133 lines
3.3 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2018 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 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/>.
|
|
|
|
InNamespace
|
|
Foam
|
|
|
|
Description
|
|
Read finite-area fields from disk
|
|
and write with vtk::surfaceMeshWriter
|
|
|
|
SourceFiles
|
|
writeAreaFields.H
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef writeAreaFields_H
|
|
#define writeAreaFields_H
|
|
|
|
#include "readFields.H"
|
|
#include "foamVtkSurfaceMeshWriter.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
template<class GeoField>
|
|
bool writeAreaField
|
|
(
|
|
vtk::surfaceMeshWriter& writer,
|
|
const tmp<GeoField>& tfield
|
|
)
|
|
{
|
|
if (tfield.valid())
|
|
{
|
|
writer.write(tfield());
|
|
tfield.clear();
|
|
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
|
|
template<class GeoField>
|
|
label writeAreaFields
|
|
(
|
|
vtk::surfaceMeshWriter& writer,
|
|
const typename GeoField::Mesh& mesh,
|
|
const IOobjectList& objects,
|
|
const bool syncPar
|
|
)
|
|
{
|
|
label count = 0;
|
|
|
|
for (const word& fieldName : objects.sortedNames<GeoField>())
|
|
{
|
|
if
|
|
(
|
|
writeAreaField<GeoField>
|
|
(
|
|
writer,
|
|
getField<GeoField>(mesh, objects, fieldName, syncPar)
|
|
)
|
|
)
|
|
{
|
|
++count;
|
|
}
|
|
}
|
|
|
|
return count;
|
|
}
|
|
|
|
|
|
label writeAllAreaFields
|
|
(
|
|
vtk::surfaceMeshWriter& writer,
|
|
const faMesh& mesh,
|
|
const IOobjectList& objects,
|
|
const bool syncPar
|
|
)
|
|
{
|
|
#undef foamToVtk_WRITE_FIELD
|
|
#define foamToVtk_WRITE_FIELD(FieldType) \
|
|
writeAreaFields<FieldType> \
|
|
( \
|
|
writer, \
|
|
mesh, \
|
|
objects, \
|
|
syncPar \
|
|
)
|
|
|
|
label count = 0;
|
|
count += foamToVtk_WRITE_FIELD(areaScalarField);
|
|
count += foamToVtk_WRITE_FIELD(areaVectorField);
|
|
count += foamToVtk_WRITE_FIELD(areaSphericalTensorField);
|
|
count += foamToVtk_WRITE_FIELD(areaSymmTensorField);
|
|
count += foamToVtk_WRITE_FIELD(areaTensorField);
|
|
|
|
#undef foamToVtk_WRITE_FIELD
|
|
return count;
|
|
}
|
|
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|