mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: lagrangian/intermeditate. Compatibility changes after merge.
This commit is contained in:
@ -329,7 +329,13 @@ bool Foam::InteractingKinematicParcel<ParcelType>::hitPatch
|
||||
ParcelType& p = static_cast<ParcelType&>(*this);
|
||||
td.cloud().postProcessing().postPatch(p, patchI);
|
||||
|
||||
return td.cloud().patchInteraction().correct(pp, this->face(), U_);
|
||||
return td.cloud().patchInteraction().correct
|
||||
(
|
||||
pp,
|
||||
this->face(),
|
||||
td.keepParticle,
|
||||
U_
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -26,7 +26,6 @@ License
|
||||
|
||||
#include "basicInteractingKinematicParcel.H"
|
||||
#include "InteractingKinematicCloud.H"
|
||||
#include "makeParcelIOList.H"
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
@ -38,8 +37,6 @@ namespace Foam
|
||||
(
|
||||
InteractingKinematicCloud<basicInteractingKinematicParcel>, 0
|
||||
);
|
||||
|
||||
makeParcelIOList(basicInteractingKinematicParcel);
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -112,7 +112,7 @@ License
|
||||
makeInjectionModelThermoType \
|
||||
( \
|
||||
ReactingMultiphaseLookupTableInjection, \
|
||||
KinematicCloud, \
|
||||
InteractingKinematicCloud, \
|
||||
ParcelType, \
|
||||
ThermoType \
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user