mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: redistributePar: transfer particles correctly. Fixes #605.
This commit is contained in:
@ -0,0 +1,183 @@
|
||||
/*---------------------------------------------------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2017 OpenCFD Ltd.
|
||||
\\/ 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 <http://www.gnu.org/licenses/>.
|
||||
|
||||
Class
|
||||
Foam::passivePositionParticle
|
||||
|
||||
Description
|
||||
Passive particle, transferring in old format (i.e. position instead of
|
||||
coordinates). Used for e.g. redistributePar.
|
||||
|
||||
SourceFiles
|
||||
passivePositionParticle.H
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
#ifndef passivePositionParticle_H
|
||||
#define passivePositionParticle_H
|
||||
|
||||
#include "passiveParticle.H"
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
namespace Foam
|
||||
{
|
||||
|
||||
/*---------------------------------------------------------------------------*\
|
||||
Class passivePositionParticle Declaration
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
class passivePositionParticle
|
||||
:
|
||||
public passiveParticle
|
||||
{
|
||||
// Private member data
|
||||
|
||||
//- Cached position
|
||||
point position_;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
// Constructors
|
||||
|
||||
//- Construct from Istream in old format
|
||||
passivePositionParticle
|
||||
(
|
||||
const polyMesh& mesh,
|
||||
Istream& is,
|
||||
bool readFields,
|
||||
bool newFormat
|
||||
)
|
||||
:
|
||||
passiveParticle(mesh, is, readFields, newFormat),
|
||||
position_(position())
|
||||
{}
|
||||
|
||||
//- Construct as copy
|
||||
passivePositionParticle(const passivePositionParticle& p)
|
||||
:
|
||||
passiveParticle(p),
|
||||
position_(p.position_)
|
||||
{}
|
||||
|
||||
//- Construct and return a clone
|
||||
virtual autoPtr<particle> clone() const
|
||||
{
|
||||
return autoPtr<particle>(new passivePositionParticle(*this));
|
||||
}
|
||||
|
||||
|
||||
//- Factory class to read-construct particles used for
|
||||
// parallel transfer
|
||||
class iNew
|
||||
{
|
||||
const polyMesh& mesh_;
|
||||
|
||||
public:
|
||||
|
||||
iNew(const polyMesh& mesh)
|
||||
:
|
||||
mesh_(mesh)
|
||||
{}
|
||||
|
||||
autoPtr<passivePositionParticle> operator()(Istream& is) const
|
||||
{
|
||||
return autoPtr<passivePositionParticle>
|
||||
(
|
||||
// Read in old format
|
||||
new passivePositionParticle(mesh_, is, true, false)
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
// Friend Operators
|
||||
|
||||
friend Ostream& operator<<
|
||||
(
|
||||
Ostream& os,
|
||||
const passivePositionParticle& ppi
|
||||
)
|
||||
{
|
||||
// Copy data into old format structure. Exact opposite of
|
||||
// particleIO.C reading old format.
|
||||
struct oldParticle
|
||||
{
|
||||
vector position;
|
||||
label celli;
|
||||
label facei;
|
||||
scalar stepFraction;
|
||||
label tetFacei;
|
||||
label tetPti;
|
||||
label origProc;
|
||||
label origId;
|
||||
} p;
|
||||
|
||||
p.position = ppi.position_;
|
||||
p.celli = ppi.cell();
|
||||
p.facei = ppi.face();
|
||||
p.stepFraction = ppi.stepFraction();
|
||||
p.tetFacei = ppi.tetFace();
|
||||
p.tetPti = ppi.tetPt();
|
||||
p.origProc = ppi.origProc();
|
||||
p.origId = ppi.origId();
|
||||
|
||||
if (os.format() == IOstream::ASCII)
|
||||
{
|
||||
os << p.position
|
||||
<< token::SPACE << p.celli
|
||||
<< token::SPACE << p.facei
|
||||
<< token::SPACE << p.stepFraction
|
||||
<< token::SPACE << p.tetFacei
|
||||
<< token::SPACE << p.tetPti
|
||||
<< token::SPACE << p.origProc
|
||||
<< token::SPACE << p.origId;
|
||||
}
|
||||
else
|
||||
{
|
||||
const std::size_t sizeofFields
|
||||
(
|
||||
sizeof(oldParticle) - offsetof(oldParticle, position)
|
||||
);
|
||||
|
||||
os.write
|
||||
(
|
||||
reinterpret_cast<const char*>(&p.position),
|
||||
sizeofFields
|
||||
);
|
||||
}
|
||||
return os;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
} // End namespace Foam
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
#endif
|
||||
|
||||
// ************************************************************************* //
|
||||
Reference in New Issue
Block a user