BUG: lagrangian function objects - updated postMove() calls

This commit is contained in:
andy
2014-02-18 10:03:24 +00:00
committed by Andrew Heather
parent ae8782fe88
commit 3b64695d62
10 changed files with 12 additions and 8 deletions

View File

@ -113,7 +113,7 @@ void Foam::CloudFunctionObject<CloudType>::postEvolve()
template<class CloudType> template<class CloudType>
void Foam::CloudFunctionObject<CloudType>::postMove void Foam::CloudFunctionObject<CloudType>::postMove
( (
const typename CloudType::parcelType&, typename CloudType::parcelType&,
const label, const label,
const scalar, const scalar,
const point&, const point&,

View File

@ -144,7 +144,7 @@ public:
//- Post-move hook //- Post-move hook
virtual void postMove virtual void postMove
( (
const typename CloudType::parcelType& p, typename CloudType::parcelType& p,
const label cellI, const label cellI,
const scalar dt, const scalar dt,
const point& position0, const point& position0,

View File

@ -136,7 +136,7 @@ void Foam::CloudFunctionObjectList<CloudType>::postEvolve()
template<class CloudType> template<class CloudType>
void Foam::CloudFunctionObjectList<CloudType>::postMove void Foam::CloudFunctionObjectList<CloudType>::postMove
( (
const typename CloudType::parcelType& p, typename CloudType::parcelType& p,
const label cellI, const label cellI,
const scalar dt, const scalar dt,
const point& position0, const point& position0,

View File

@ -112,7 +112,7 @@ public:
//- Post-move hook //- Post-move hook
virtual void postMove virtual void postMove
( (
const typename CloudType::parcelType& p, typename CloudType::parcelType& p,
const label cellI, const label cellI,
const scalar dt, const scalar dt,
const point& position0, const point& position0,

View File

@ -650,7 +650,7 @@ Foam::ParticleCollector<CloudType>::~ParticleCollector()
template<class CloudType> template<class CloudType>
void Foam::ParticleCollector<CloudType>::postMove void Foam::ParticleCollector<CloudType>::postMove
( (
const parcelType& p, parcelType& p,
const label cellI, const label cellI,
const scalar dt, const scalar dt,
const point& position0, const point& position0,

View File

@ -286,7 +286,7 @@ public:
//- Post-move hook //- Post-move hook
virtual void postMove virtual void postMove
( (
const parcelType& p, parcelType& p,
const label cellI, const label cellI,
const scalar dt, const scalar dt,
const point& position0, const point& position0,

View File

@ -106,6 +106,7 @@ void Foam::ParticleTrap<CloudType>::postMove
parcelType& p, parcelType& p,
const label cellI, const label cellI,
const scalar, const scalar,
const point&,
bool& bool&
) )
{ {

View File

@ -132,6 +132,7 @@ public:
typename CloudType::parcelType& p, typename CloudType::parcelType& p,
const label cellI, const label cellI,
const scalar dt, const scalar dt,
const point& position0,
bool& keepParticle bool& keepParticle
); );
}; };

View File

@ -124,9 +124,10 @@ void Foam::VoidFraction<CloudType>::postEvolve()
template<class CloudType> template<class CloudType>
void Foam::VoidFraction<CloudType>::postMove void Foam::VoidFraction<CloudType>::postMove
( (
const parcelType& p, parcelType& p,
const label cellI, const label cellI,
const scalar dt, const scalar dt,
const point&,
bool& bool&
) )
{ {

View File

@ -118,9 +118,10 @@ public:
//- Post-move hook //- Post-move hook
virtual void postMove virtual void postMove
( (
const parcelType& p, parcelType& p,
const label cellI, const label cellI,
const scalar dt, const scalar dt,
const point& position0,
bool& keepParticle bool& keepParticle
); );
}; };