mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
COMP: Corrections for icc compiler. Fixes #1608
This commit is contained in:
@ -118,7 +118,7 @@ Foam::scalar Foam::wallBoundedParticle::trackToEdge
|
|||||||
{
|
{
|
||||||
label nbrCelli =
|
label nbrCelli =
|
||||||
(
|
(
|
||||||
cell() == mesh().faceOwner()[face()]
|
this->cell() == mesh().faceOwner()[face()]
|
||||||
? mesh().faceNeighbour()[face()]
|
? mesh().faceNeighbour()[face()]
|
||||||
: mesh().faceOwner()[face()]
|
: mesh().faceOwner()[face()]
|
||||||
);
|
);
|
||||||
@ -135,7 +135,7 @@ Foam::scalar Foam::wallBoundedParticle::trackToEdge
|
|||||||
// Change into nbrCell. No need to change tetFace, tetPt.
|
// Change into nbrCell. No need to change tetFace, tetPt.
|
||||||
//Pout<< " crossed from cell:" << celli_
|
//Pout<< " crossed from cell:" << celli_
|
||||||
// << " into " << nbrCelli << endl;
|
// << " into " << nbrCelli << endl;
|
||||||
cell() = nbrCelli;
|
this->cell() = nbrCelli;
|
||||||
patchInteraction(cloud, td, trackFraction);
|
patchInteraction(cloud, td, trackFraction);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|||||||
Reference in New Issue
Block a user