/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2011-2016 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 . InNamespace Foam Description Gets the indices of (source)particles that have been appended to the target cloud and maps the lagrangian fields accordingly. \*---------------------------------------------------------------------------*/ #ifndef MapLagrangianFields_H #define MapLagrangianFields_H #include "cloud.H" #include "GeometricField.H" #include "meshToMesh.H" #include "IOobjectList.H" #include "CompactIOField.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { //- Gets the indices of (source)particles that have been appended to the // target cloud and maps the lagrangian fields accordingly. template void MapLagrangianFields ( const string& cloudName, const IOobjectList& objects, const polyMesh& meshTarget, const labelList& addParticles ) { { IOobjectList fields = objects.lookupClass(IOField::typeName); forAllIter(IOobjectList, fields, fieldIter) { const word& fieldName = fieldIter()->name(); Info<< " mapping lagrangian field " << fieldName << endl; // Read field (does not need mesh) IOField fieldSource(*fieldIter()); // Map IOField fieldTarget ( IOobject ( fieldName, meshTarget.time().timeName(), cloud::prefix/cloudName, meshTarget, IOobject::NO_READ, IOobject::NO_WRITE, false ), addParticles.size() ); forAll(addParticles, i) { fieldTarget[i] = fieldSource[addParticles[i]]; } // Write field fieldTarget.write(); } } { IOobjectList fieldFields = objects.lookupClass(IOField>::typeName); forAllIter(IOobjectList, fieldFields, fieldIter) { const word& fieldName = fieldIter()->name(); Info<< " mapping lagrangian fieldField " << fieldName << endl; // Read field (does not need mesh) // Note: some fieldFields are 0 size (e.g. collision records) if // not used IOField> fieldSource(*fieldIter()); // Map - use CompactIOField to automatically write in // compact form for binary format. CompactIOField, Type> fieldTarget ( IOobject ( fieldName, meshTarget.time().timeName(), cloud::prefix/cloudName, meshTarget, IOobject::NO_READ, IOobject::NO_WRITE, false ), min(fieldSource.size(), addParticles.size()) // handle 0 size ); if (fieldSource.size()) { forAll(addParticles, i) { fieldTarget[i] = fieldSource[addParticles[i]]; } } else if (cloud::debug) { Pout<< "Not mapping " << fieldName << " since source size " << fieldSource.size() << " different to" << " cloud size " << addParticles.size() << endl; } // Write field fieldTarget.write(); } } { IOobjectList fieldFields = objects.lookupClass(CompactIOField, Type>::typeName); forAllIter(IOobjectList, fieldFields, fieldIter) { const word& fieldName = fieldIter()->name(); Info<< " mapping lagrangian fieldField " << fieldName << endl; // Read field (does not need mesh) CompactIOField, Type> fieldSource(*fieldIter()); // Map CompactIOField, Type> fieldTarget ( IOobject ( fieldName, meshTarget.time().timeName(), cloud::prefix/cloudName, meshTarget, IOobject::NO_READ, IOobject::NO_WRITE, false ), min(fieldSource.size(), addParticles.size()) // handle 0 size ); if (fieldSource.size()) { forAll(addParticles, i) { fieldTarget[i] = fieldSource[addParticles[i]]; } } else if (cloud::debug) { Pout<< "Not mapping " << fieldName << " since source size " << fieldSource.size() << " different to" << " cloud size " << addParticles.size() << endl; } // Write field fieldTarget.write(); } } } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //