mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: lagrangian function objects - updated postMove() calls
This commit is contained in:
@ -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&,
|
||||||
|
|||||||
@ -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,
|
||||||
|
|||||||
@ -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,
|
||||||
|
|||||||
@ -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,
|
||||||
|
|||||||
@ -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,
|
||||||
|
|||||||
@ -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,
|
||||||
|
|||||||
@ -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&
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
|||||||
@ -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
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@ -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&
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
|||||||
@ -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
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user