ENH: lagrangian/intermeditate. Compatibility changes after merge.

This commit is contained in:
graham
2010-03-01 10:05:04 +00:00
parent ad77ffc868
commit 4084c6b3de
3 changed files with 8 additions and 5 deletions

View File

@ -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_
);
}

View File

@ -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);
};

View File

@ -112,7 +112,7 @@ License
makeInjectionModelThermoType \
( \
ReactingMultiphaseLookupTableInjection, \
KinematicCloud, \
InteractingKinematicCloud, \
ParcelType, \
ThermoType \
);