/*---------------------------------------------------------------------------*\ ========= | \\ / 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 . 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 bool writeVolField ( ensightCase& ensCase, const ensightMesh& ensMesh, const fvMeshSubsetProxy& proxy, const tmp>& tfield, const bool nodeValues ) { if (!tfield.valid()) { return false; } const auto& field = tfield(); autoPtr os = ensCase.newData(field.name()); bool wrote = ensightOutput::writeVolField ( field, ensMesh, os.ref(), nodeValues ); tfield.clear(); return wrote; } template label writeVolFields ( ensightCase& ensCase, const ensightMesh& ensMesh, const fvMeshSubsetProxy& proxy, const IOobjectList& objects, const bool nodeValues ) { typedef GeometricField GeoField; label count = 0; for (const word& fieldName : objects.sortedNames()) { if ( writeVolField ( ensCase, ensMesh, proxy, getField(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 \ ( \ 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 // ************************************************************************* //