2010-05-12 13:27:55 +00:00
|
|
|
/*---------------------------------------------------------------------------*\
|
|
|
|
========= |
|
|
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
|
|
\\ / O peration |
|
|
|
|
\\ / A nd | Copyright held by original author
|
|
|
|
\\/ 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 2 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, write to the Free Software Foundation,
|
|
|
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
|
|
|
InClass
|
|
|
|
vtkPV3Foam
|
|
|
|
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
#ifndef vtkPV3FoamUpdateInfoFields_H
|
|
|
|
#define vtkPV3FoamUpdateInfoFields_H
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
template<template<class> class patchType, class meshType>
|
2010-08-26 14:22:03 +00:00
|
|
|
void Foam::vtkPV3Foam::updateInfoFields
|
2010-05-12 13:27:55 +00:00
|
|
|
(
|
2010-08-26 14:22:03 +00:00
|
|
|
vtkDataArraySelection *select
|
2010-05-12 13:27:55 +00:00
|
|
|
)
|
|
|
|
{
|
|
|
|
if (debug)
|
|
|
|
{
|
2010-08-26 14:22:03 +00:00
|
|
|
Info<< "<beg> Foam::vtkPV3Foam::updateInfoFields <"
|
|
|
|
<< meshType::Mesh::typeName
|
|
|
|
<< "> [meshPtr=" << (meshPtr_ ? "set" : "NULL") << "]"
|
|
|
|
<< endl;
|
2010-05-12 13:27:55 +00:00
|
|
|
}
|
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
stringList enabledEntries;
|
2010-05-12 13:27:55 +00:00
|
|
|
// enable 'p' and 'U' on the first call
|
2010-08-26 14:22:03 +00:00
|
|
|
if (select->GetNumberOfArrays() == 0 && !meshPtr_)
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
2010-08-26 14:22:03 +00:00
|
|
|
enabledEntries.setSize(2);
|
|
|
|
enabledEntries[0] = "p";
|
|
|
|
enabledEntries[1] = "U";
|
2010-05-12 13:27:55 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-08-26 14:22:03 +00:00
|
|
|
// preserve the enabled selections
|
|
|
|
enabledEntries = getSelectedArrayEntries(select);
|
2010-05-12 13:27:55 +00:00
|
|
|
}
|
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
select->RemoveAllArrays();
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
// use the db directly since this might be called without a mesh,
|
|
|
|
// but the region must get added back in
|
|
|
|
word regionPrefix;
|
|
|
|
if (meshRegion_ != polyMesh::defaultRegion)
|
|
|
|
{
|
|
|
|
regionPrefix = meshRegion_;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Search for list of objects for this time and mesh region
|
|
|
|
IOobjectList objects(dbPtr_(), dbPtr_().timeName(), regionPrefix);
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
//- Add volume fields to GUI
|
|
|
|
addToSelection<GeometricField<scalar, patchType, meshType> >
|
|
|
|
(
|
2010-08-26 14:22:03 +00:00
|
|
|
select,
|
2010-05-12 13:27:55 +00:00
|
|
|
objects
|
|
|
|
);
|
|
|
|
addToSelection<GeometricField<vector, patchType, meshType> >
|
|
|
|
(
|
2010-08-26 14:22:03 +00:00
|
|
|
select,
|
2010-05-12 13:27:55 +00:00
|
|
|
objects
|
|
|
|
);
|
|
|
|
addToSelection<GeometricField<sphericalTensor, patchType, meshType> >
|
|
|
|
(
|
2010-08-26 14:22:03 +00:00
|
|
|
select,
|
2010-05-12 13:27:55 +00:00
|
|
|
objects
|
|
|
|
);
|
|
|
|
addToSelection<GeometricField<symmTensor, patchType, meshType> >
|
|
|
|
(
|
2010-08-26 14:22:03 +00:00
|
|
|
select,
|
2010-05-12 13:27:55 +00:00
|
|
|
objects
|
|
|
|
);
|
|
|
|
addToSelection<GeometricField<tensor, patchType, meshType> >
|
|
|
|
(
|
2010-08-26 14:22:03 +00:00
|
|
|
select,
|
2010-05-12 13:27:55 +00:00
|
|
|
objects
|
|
|
|
);
|
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
// restore the enabled selections
|
|
|
|
setSelectedArrayEntries(select, enabledEntries);
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
if (debug)
|
|
|
|
{
|
2010-08-26 14:22:03 +00:00
|
|
|
Info<< "<end> Foam::vtkPV3Foam::updateInfoFields" << endl;
|
2010-05-12 13:27:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|