mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- in most cases a parallel-consistent order is required. Even when the order is not important, it will generally require fewer allocations to create a UPtrList of entries instead of a HashTable or even a wordList.
105 lines
3.0 KiB
C
105 lines
3.0 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | www.openfoam.com
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
Copyright (C) 2011-2013 OpenFOAM Foundation
|
|
Copyright (C) 2019-2023 OpenCFD Ltd.
|
|
-------------------------------------------------------------------------------
|
|
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 <http://www.gnu.org/licenses/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "distributedTriSurfaceMesh.H"
|
|
#include "triSurfaceFields.H"
|
|
#include "mapDistribute.H"
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
//template<class Type>
|
|
//void Foam::distributedTriSurfaceMesh::getField
|
|
//(
|
|
// const word& fieldName,
|
|
// const List<pointIndexHit>& info,
|
|
// List<Type>& values
|
|
//) const
|
|
//{
|
|
// typedef DimensionedField<Type, triSurfaceGeoMesh> fieldType;
|
|
//
|
|
// // Get query data (= local index of triangle)
|
|
// // ~~~~~~~~~~~~~~
|
|
//
|
|
// labelList triangleIndex(info.size());
|
|
// autoPtr<mapDistribute> mapPtr
|
|
// (
|
|
// calcLocalQueries
|
|
// (
|
|
// info,
|
|
// triangleIndex
|
|
// )
|
|
// );
|
|
// const mapDistribute& map = mapPtr();
|
|
//
|
|
//
|
|
// // Do my tests
|
|
// // ~~~~~~~~~~~
|
|
//
|
|
// const auto& fld = lookupObject<fieldType>(fieldName);
|
|
//
|
|
// const triSurface& s = static_cast<const triSurface&>(*this);
|
|
//
|
|
// values.setSize(triangleIndex.size());
|
|
//
|
|
// forAll(triangleIndex, i)
|
|
// {
|
|
// label triI = triangleIndex[i];
|
|
// values[i] = fld[triI];
|
|
// }
|
|
//
|
|
//
|
|
// // Send back results
|
|
// // ~~~~~~~~~~~~~~~~~
|
|
//
|
|
// map.reverseDistribute(info.size(), values);
|
|
//}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::distributedTriSurfaceMesh::distributeFields
|
|
(
|
|
const mapDistribute& map
|
|
)
|
|
{
|
|
typedef DimensionedField<Type, triSurfaceGeoMesh> fieldType;
|
|
|
|
for (fieldType& field : objectRegistry::sorted<fieldType>())
|
|
{
|
|
const label oldSize = field.size();
|
|
|
|
map.distribute(field);
|
|
|
|
DebugInfo
|
|
<< "Mapped " << field.typeName << ' ' << field.name()
|
|
<< " from size " << oldSize << " to size " << field.size() << endl;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|