/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation \\/ 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 . \*---------------------------------------------------------------------------*/ #include "vtkWriteFieldOps.H" #include "interpolatePointToCell.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // template void Foam::vtkWriteOps::write ( std::ostream& os, const bool binary, const DimensionedField& df, const vtkMesh& vMesh ) { const fvMesh& mesh = vMesh.mesh(); const labelList& superCells = vMesh.topo().superCells(); label nValues = mesh.nCells() + superCells.size(); os << df.name() << ' ' << pTraits::nComponents << ' ' << nValues << " float" << std::endl; DynamicList fField(pTraits::nComponents*nValues); insert(df, fField); forAll(superCells, superCelli) { label origCelli = superCells[superCelli]; insert(df[origCelli], fField); } write(os, binary, fField); } template void Foam::vtkWriteOps::write ( std::ostream& os, const bool binary, const PointField& pvf, const vtkMesh& vMesh ) { const fvMesh& mesh = vMesh.mesh(); const vtkTopo& topo = vMesh.topo(); const labelList& addPointCellLabels = topo.addPointCellLabels(); const label nTotPoints = mesh.nPoints() + addPointCellLabels.size(); os << pvf.name() << ' ' << pTraits::nComponents << ' ' << nTotPoints << " float" << std::endl; DynamicList fField(pTraits::nComponents*nTotPoints); insert(pvf, fField); forAll(addPointCellLabels, api) { label origCelli = addPointCellLabels[api]; insert(interpolatePointToCell(pvf, origCelli), fField); } write(os, binary, fField); } template void Foam::vtkWriteOps::write ( std::ostream& os, const bool binary, const GeometricField& vvf, const PointField& pvf, const vtkMesh& vMesh ) { const fvMesh& mesh = vMesh.mesh(); const vtkTopo& topo = vMesh.topo(); const labelList& addPointCellLabels = topo.addPointCellLabels(); const label nTotPoints = mesh.nPoints() + addPointCellLabels.size(); os << vvf.name() << ' ' << pTraits::nComponents << ' ' << nTotPoints << " float" << std::endl; DynamicList fField(pTraits::nComponents*nTotPoints); insert(pvf, fField); forAll(addPointCellLabels, api) { label origCelli = addPointCellLabels[api]; insert(vvf[origCelli], fField); } write(os, binary, fField); } template class PatchField, class GeoMesh> void Foam::vtkWriteOps::write ( std::ostream& os, const bool binary, const PtrList>& flds, const vtkMesh& vMesh ) { forAll(flds, i) { write(os, binary, flds[i], vMesh); } } template void Foam::vtkWriteOps::write ( std::ostream& os, const bool binary, const volPointInterpolation& pInterp, const PtrList>& flds, const vtkMesh& vMesh ) { forAll(flds, i) { write(os, binary, flds[i], pInterp.interpolate(flds[i])(), vMesh); } } // ************************************************************************* //