/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | foam-extend: Open Source CFD \\ / O peration | Version: 3.2 \\ / A nd | Web: http://www.foam-extend.org \\/ M anipulation | For copyright notice see file Copyright ------------------------------------------------------------------------------- License This file is part of foam-extend. foam-extend 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. 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. You should have received a copy of the GNU General Public License along with foam-extend. If not, see . Description \*---------------------------------------------------------------------------*/ #include "vtkPV3Foam.H" // Foam includes #include "IOobjectList.H" #include "vtkPV3FoamReader.h" // VTK includes #include "vtkDataArraySelection.h" #include "vtkPolyData.h" #include "vtkUnstructuredGrid.h" // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // #include "vtkPV3FoamVolFields.H" #include "vtkPV3FoamPointFields.H" #include "vtkPV3FoamLagrangianFields.H" void Foam::vtkPV3Foam::pruneObjectList ( IOobjectList& objects, const wordHashSet& selected ) { // hash all the selected field names if (!selected.size()) { objects.clear(); } // only keep selected fields forAllIter(IOobjectList, objects, iter) { if (!selected.found(iter()->name())) { objects.erase(iter); } } } void Foam::vtkPV3Foam::convertVolFields ( vtkMultiBlockDataSet* output ) { const fvMesh& mesh = *meshPtr_; wordHashSet selectedFields = getSelected ( reader_->GetVolFieldSelection() ); if (!selectedFields.size()) { return; } // Get objects (fields) for this time - only keep selected fields // the region name is already in the mesh db IOobjectList objects(mesh, dbPtr_().timeName()); pruneObjectList(objects, selectedFields); if (!objects.size()) { return; } if (debug) { Info<< " Foam::vtkPV3Foam::convertVolFields" << nl << "converting Foam volume fields" << endl; forAllConstIter(IOobjectList, objects, iter) { Info<< " " << iter()->name() << " == " << iter()->objectPath() << nl; } printMemory(); } PtrList > ppInterpList(mesh.boundaryMesh().size()); forAll(ppInterpList, i) { ppInterpList.set ( i, new PrimitivePatchInterpolation ( mesh.boundaryMesh()[i] ) ); } convertVolFields ( mesh, ppInterpList, objects, output ); convertVolFields ( mesh, ppInterpList, objects, output ); convertVolFields ( mesh, ppInterpList, objects, output ); convertVolFields ( mesh, ppInterpList, objects, output ); convertVolFields ( mesh, ppInterpList, objects, output ); if (debug) { Info<< " Foam::vtkPV3Foam::convertVolFields" << endl; printMemory(); } } void Foam::vtkPV3Foam::convertPointFields ( vtkMultiBlockDataSet* output ) { const fvMesh& mesh = *meshPtr_; wordHashSet selectedFields = getSelected ( reader_->GetPointFieldSelection() ); if (!selectedFields.size()) { return; } // Get objects (fields) for this time - only keep selected fields // the region name is already in the mesh db IOobjectList objects(mesh, dbPtr_().timeName()); pruneObjectList(objects, selectedFields); if (!objects.size()) { return; } if (debug) { Info<< " Foam::vtkPV3Foam::convertPointFields" << nl << "converting Foam volume fields" << endl; forAllConstIter(IOobjectList, objects, iter) { Info<< " " << iter()->name() << " == " << iter()->objectPath() << nl; } printMemory(); } // Construct interpolation on the raw mesh // HJ, bug fix? Point mesh handled by objectRegistry // HJ, 11/Nov/2010 const pointMesh& pMesh = pointMesh::New(mesh); // pointMesh pMesh(mesh); convertPointFields ( mesh, pMesh, objects, output ); convertPointFields ( mesh, pMesh, objects, output ); convertPointFields ( mesh, pMesh, objects, output ); convertPointFields ( mesh, pMesh, objects, output ); convertPointFields ( mesh, pMesh, objects, output ); if (debug) { Info<< " Foam::vtkPV3Foam::convertPointFields" << endl; printMemory(); } } void Foam::vtkPV3Foam::convertLagrangianFields ( vtkMultiBlockDataSet* output ) { partInfo& selector = partInfoLagrangian_; const fvMesh& mesh = *meshPtr_; wordHashSet selectedFields = getSelected ( reader_->GetLagrangianFieldSelection() ); if (!selectedFields.size()) { return; } if (debug) { Info<< " Foam::vtkPV3Foam::convertLagrangianFields" << endl; printMemory(); } for (int partId = selector.start(); partId < selector.end(); ++partId) { const word cloudName = getPartName(partId); const label datasetNo = partDataset_[partId]; if (!partStatus_[partId] || datasetNo < 0) { continue; } // Get the Lagrangian fields for this time and this cloud // but only keep selected fields // the region name is already in the mesh db IOobjectList objects ( mesh, dbPtr_().timeName(), cloud::prefix/cloudName ); pruneObjectList(objects, selectedFields); if (!objects.size()) { continue; } if (debug) { Info<< "converting Foam lagrangian fields" << nl; forAllConstIter(IOobjectList, objects, iter) { Info<< " " << iter()->name() << " == " << iter()->objectPath() << nl; } } convertLagrangianFields