- changed ensightOutput from a class solely comprising static methods to a namespace and added in sub-namespaces Detail and Serial. This makes it easier to "mix-in" functions at different levels. Refactored and combined some serial/parallel code where possible. The general ensightOutput namespace has now shifted to be in the fileFormats lib, while leaving volField outputs in the conversion lib and cloud outputs in the lagrangian-intermediate lib. The ensightCloud namespace is now simply folded into the new ensightOutput namespace. These changes clean up some code, reduce fragmentation and duplication and removes the previous libconversion dependency for sampling. - use int for ensight nTypes constexpr Note: issue #1176 is unaffected except for the change in file name: ensightOutputTemplates.C -> ensightOutputVolFieldTemplates.C
152 lines
3.9 KiB
C++
152 lines
3.9 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 volume fields from disk and write with ensightMesh
|
|
|
|
SourceFiles
|
|
writeVolFields.H
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef writeVolFields_H
|
|
#define writeVolFields_H
|
|
|
|
#include "readFields.H"
|
|
#include "fvMeshSubsetProxy.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
template<class Type>
|
|
bool writeVolField
|
|
(
|
|
ensightCase& ensCase,
|
|
const ensightMesh& ensMesh,
|
|
const fvMeshSubsetProxy& proxy,
|
|
const tmp<GeometricField<Type, fvPatchField, volMesh>>& tfield,
|
|
const bool nodeValues
|
|
)
|
|
{
|
|
if (!tfield.valid())
|
|
{
|
|
return false;
|
|
}
|
|
|
|
const auto& field = tfield();
|
|
|
|
autoPtr<ensightFile> os = ensCase.newData<Type>(field.name());
|
|
|
|
bool wrote = ensightOutput::writeVolField<Type>
|
|
(
|
|
field,
|
|
ensMesh,
|
|
os.ref(),
|
|
nodeValues
|
|
);
|
|
|
|
tfield.clear();
|
|
return wrote;
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
label writeVolFields
|
|
(
|
|
ensightCase& ensCase,
|
|
const ensightMesh& ensMesh,
|
|
const fvMeshSubsetProxy& proxy,
|
|
const IOobjectList& objects,
|
|
const bool nodeValues
|
|
)
|
|
{
|
|
typedef GeometricField<Type, fvPatchField, volMesh> GeoField;
|
|
|
|
label count = 0;
|
|
|
|
for (const word& fieldName : objects.sortedNames<GeoField>())
|
|
{
|
|
if
|
|
(
|
|
writeVolField<Type>
|
|
(
|
|
ensCase,
|
|
ensMesh,
|
|
proxy,
|
|
getField<GeoField>(objects.findObject(fieldName), proxy),
|
|
nodeValues
|
|
)
|
|
)
|
|
{
|
|
Info<< ' ' << fieldName;
|
|
++count;
|
|
}
|
|
}
|
|
|
|
return count;
|
|
}
|
|
|
|
|
|
label writeAllVolFields
|
|
(
|
|
ensightCase& ensCase,
|
|
const ensightMesh& ensMesh,
|
|
const fvMeshSubsetProxy& proxy,
|
|
const IOobjectList& objects,
|
|
const bool nodeValues
|
|
)
|
|
{
|
|
#undef foamToEnsight_WRITE_FIELD
|
|
#define foamToEnsight_WRITE_FIELD(PrimitiveType) \
|
|
writeVolFields<PrimitiveType> \
|
|
( \
|
|
ensCase, ensMesh, \
|
|
proxy, \
|
|
objects, \
|
|
nodeValues \
|
|
)
|
|
|
|
label count = 0;
|
|
count += foamToEnsight_WRITE_FIELD(scalar);
|
|
count += foamToEnsight_WRITE_FIELD(vector);
|
|
count += foamToEnsight_WRITE_FIELD(sphericalTensor);
|
|
count += foamToEnsight_WRITE_FIELD(symmTensor);
|
|
count += foamToEnsight_WRITE_FIELD(tensor);
|
|
|
|
#undef foamToEnsight_WRITE_FIELD
|
|
return count;
|
|
}
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|