Skip to content
Snippets Groups Projects
Commit c29354a9 authored by graham's avatar graham
Browse files

Altering slip force

parent 3d2d8f3f
Branches
Tags
No related merge requests found
......@@ -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();
......
......@@ -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;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment