mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Setting wallImpactDistance to 0 in InteractingKinematicParcel.
Adding initialisation of f in InteractingKinematicParcelIO.C. Cosmetic tweak in Particle.
This commit is contained in:
@ -320,8 +320,9 @@ Foam::scalar Foam::Particle<ParticleType>::trackToFace
|
|||||||
FatalErrorIn
|
FatalErrorIn
|
||||||
(
|
(
|
||||||
"Particle::trackToFace(const vector&, TrackData&)"
|
"Particle::trackToFace(const vector&, TrackData&)"
|
||||||
)<< "addressing failure" << nl
|
)
|
||||||
<< abort(FatalError);
|
<< "addressing failure" << nl
|
||||||
|
<< abort(FatalError);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -380,6 +381,7 @@ Foam::scalar Foam::Particle<ParticleType>::trackToFace
|
|||||||
p.hitPatch(patch, td);
|
p.hitPatch(patch, td);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -330,7 +330,12 @@ Foam::InteractingKinematicParcel<ParcelType>::wallImpactDistance
|
|||||||
const vector&
|
const vector&
|
||||||
) const
|
) const
|
||||||
{
|
{
|
||||||
return 0.5*d_;
|
// To make sure that the particles jump cyclic, wedge and
|
||||||
|
// processor patches in the correct location, this must be zero,
|
||||||
|
// or the calculation of lambda must be revised
|
||||||
|
|
||||||
|
return 0.0;
|
||||||
|
// return 0.5*d_;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -58,6 +58,7 @@ Foam::InteractingKinematicParcel<ParcelType>::InteractingKinematicParcel
|
|||||||
nParticle_(0.0),
|
nParticle_(0.0),
|
||||||
d_(0.0),
|
d_(0.0),
|
||||||
U_(vector::zero),
|
U_(vector::zero),
|
||||||
|
f_(vector::zero),
|
||||||
rho_(0.0),
|
rho_(0.0),
|
||||||
tTurb_(0.0),
|
tTurb_(0.0),
|
||||||
UTurb_(vector::zero),
|
UTurb_(vector::zero),
|
||||||
|
|||||||
Reference in New Issue
Block a user