2013-12-11 09:25:19 +00:00
|
|
|
/*---------------------------------------------------------------------------*\
|
|
|
|
========= |
|
2013-12-11 16:09:41 +00:00
|
|
|
\\ / F ield | foam-extend: Open Source CFD
|
2016-06-20 15:00:40 +00:00
|
|
|
\\ / O peration | Version: 4.0
|
2015-05-17 13:32:07 +00:00
|
|
|
\\ / A nd | Web: http://www.foam-extend.org
|
|
|
|
\\/ M anipulation | For copyright notice see file Copyright
|
2013-12-11 09:25:19 +00:00
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
License
|
2013-12-11 16:09:41 +00:00
|
|
|
This file is part of foam-extend.
|
2013-12-11 09:25:19 +00:00
|
|
|
|
2013-12-11 16:09:41 +00:00
|
|
|
foam-extend is free software: you can redistribute it and/or modify it
|
2013-12-11 09:25:19 +00:00
|
|
|
under the terms of the GNU General Public License as published by the
|
2013-12-11 16:09:41 +00:00
|
|
|
Free Software Foundation, either version 3 of the License, or (at your
|
2013-12-11 09:25:19 +00:00
|
|
|
option) any later version.
|
|
|
|
|
2013-12-11 16:09:41 +00:00
|
|
|
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.
|
2013-12-11 09:25:19 +00:00
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2013-12-11 16:09:41 +00:00
|
|
|
along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
2013-12-11 09:25:19 +00:00
|
|
|
|
|
|
|
Description
|
|
|
|
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
#include "vtkPV4Foam.H"
|
|
|
|
|
|
|
|
// Foam includes
|
|
|
|
#include "IOobjectList.H"
|
|
|
|
#include "vtkPV4FoamReader.h"
|
|
|
|
|
|
|
|
// VTK includes
|
|
|
|
#include "vtkDataArraySelection.h"
|
|
|
|
#include "vtkPolyData.h"
|
|
|
|
#include "vtkUnstructuredGrid.h"
|
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
#include "vtkPV4FoamVolFields.H"
|
|
|
|
#include "vtkPV4FoamPointFields.H"
|
|
|
|
#include "vtkPV4FoamLagrangianFields.H"
|
|
|
|
|
|
|
|
|
|
|
|
void Foam::vtkPV4Foam::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::vtkPV4Foam::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<< "<beg> Foam::vtkPV4Foam::convertVolFields" << nl
|
|
|
|
<< "converting Foam volume fields" << endl;
|
|
|
|
forAllConstIter(IOobjectList, objects, iter)
|
|
|
|
{
|
|
|
|
Info<< " " << iter()->name()
|
|
|
|
<< " == " << iter()->objectPath() << nl;
|
|
|
|
}
|
|
|
|
printMemory();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
PtrList<PrimitivePatchInterpolation<primitivePatch> >
|
|
|
|
ppInterpList(mesh.boundaryMesh().size());
|
|
|
|
|
|
|
|
forAll(ppInterpList, i)
|
|
|
|
{
|
|
|
|
ppInterpList.set
|
|
|
|
(
|
|
|
|
i,
|
|
|
|
new PrimitivePatchInterpolation<primitivePatch>
|
|
|
|
(
|
|
|
|
mesh.boundaryMesh()[i]
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
convertVolFields<scalar>
|
|
|
|
(
|
|
|
|
mesh, ppInterpList, objects, output
|
|
|
|
);
|
|
|
|
convertVolFields<vector>
|
|
|
|
(
|
|
|
|
mesh, ppInterpList, objects, output
|
|
|
|
);
|
|
|
|
convertVolFields<sphericalTensor>
|
|
|
|
(
|
|
|
|
mesh, ppInterpList, objects, output
|
|
|
|
);
|
|
|
|
convertVolFields<symmTensor>
|
|
|
|
(
|
|
|
|
mesh, ppInterpList, objects, output
|
|
|
|
);
|
|
|
|
convertVolFields<tensor>
|
|
|
|
(
|
|
|
|
mesh, ppInterpList, objects, output
|
|
|
|
);
|
|
|
|
|
|
|
|
if (debug)
|
|
|
|
{
|
|
|
|
Info<< "<end> Foam::vtkPV4Foam::convertVolFields" << endl;
|
|
|
|
printMemory();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Foam::vtkPV4Foam::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<< "<beg> Foam::vtkPV4Foam::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<scalar>
|
|
|
|
(
|
|
|
|
mesh, pMesh, objects, output
|
|
|
|
);
|
|
|
|
convertPointFields<vector>
|
|
|
|
(
|
|
|
|
mesh, pMesh, objects, output
|
|
|
|
);
|
|
|
|
convertPointFields<sphericalTensor>
|
|
|
|
(
|
|
|
|
mesh, pMesh, objects, output
|
|
|
|
);
|
|
|
|
convertPointFields<symmTensor>
|
|
|
|
(
|
|
|
|
mesh, pMesh, objects, output
|
|
|
|
);
|
|
|
|
convertPointFields<tensor>
|
|
|
|
(
|
|
|
|
mesh, pMesh, objects, output
|
|
|
|
);
|
|
|
|
|
|
|
|
if (debug)
|
|
|
|
{
|
|
|
|
Info<< "<end> Foam::vtkPV4Foam::convertPointFields" << endl;
|
|
|
|
printMemory();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Foam::vtkPV4Foam::convertLagrangianFields
|
|
|
|
(
|
|
|
|
vtkMultiBlockDataSet* output
|
|
|
|
)
|
|
|
|
{
|
|
|
|
partInfo& selector = partInfoLagrangian_;
|
|
|
|
const fvMesh& mesh = *meshPtr_;
|
|
|
|
|
|
|
|
wordHashSet selectedFields = getSelected
|
|
|
|
(
|
|
|
|
reader_->GetLagrangianFieldSelection()
|
|
|
|
);
|
|
|
|
|
|
|
|
if (!selectedFields.size())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (debug)
|
|
|
|
{
|
|
|
|
Info<< "<beg> Foam::vtkPV4Foam::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<label>
|
|
|
|
(
|
|
|
|
objects, output, datasetNo
|
|
|
|
);
|
|
|
|
convertLagrangianFields<scalar>
|
|
|
|
(
|
|
|
|
objects, output, datasetNo
|
|
|
|
);
|
|
|
|
convertLagrangianFields<vector>
|
|
|
|
(
|
|
|
|
objects, output, datasetNo
|
|
|
|
);
|
|
|
|
convertLagrangianFields<sphericalTensor>
|
|
|
|
(
|
|
|
|
objects, output, datasetNo
|
|
|
|
);
|
|
|
|
convertLagrangianFields<symmTensor>
|
|
|
|
(
|
|
|
|
objects, output, datasetNo
|
|
|
|
);
|
|
|
|
convertLagrangianFields<tensor>
|
|
|
|
(
|
|
|
|
objects, output, datasetNo
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (debug)
|
|
|
|
{
|
|
|
|
Info<< "<end> Foam::vtkPV4Foam::convertLagrangianFields" << endl;
|
|
|
|
printMemory();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ************************************************************************* //
|