Altering slip force

This commit is contained in:
graham
2009-09-18 19:23:39 +01:00
parent 3d2d8f3fd8
commit c29354a94d
2 changed files with 2 additions and 6 deletions

View File

@ -193,8 +193,7 @@ void Foam::PairCollision<CloudType>::collide()
// Loop over all referred cells
forAll(ril, refCellI)
{
ReferredCell<typename CloudType::parcelType>& refCell =
ril[refCellI];
ReferredCell<typename CloudType::parcelType>& refCell = ril[refCellI];
const labelList& realCells = refCell.realCellsForInteraction();

View File

@ -224,10 +224,7 @@ void Foam::SpringSliderDashpot<CloudType>::evaluatePair
{
// Tangential force greater than sliding friction, particle slips
fT_AB =
-mu_*mag(fN_AB)
*tangentialOverlap_AB/mag(tangentialOverlap_AB)
- etaT*USlip_AB;
fT_AB = -mu_*mag(fN_AB)*USlip_AB/mag(USlip_AB);
tangentialOverlap_AB = vector::zero;
tangentialOverlap_BA = vector::zero;