Improved test to avoid /0
This commit is contained in:
parent
6380962068
commit
69ca5144e0
1 changed files with 8 additions and 4 deletions
|
|
@ -2,7 +2,7 @@
|
|||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2013-2014 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
|
|
@ -289,11 +289,15 @@ void Foam::MPPICCloud<CloudType>::info()
|
|||
forAll(this->mesh().cells(), cellI)
|
||||
{
|
||||
const label n = this->cellOccupancy()[cellI].size();
|
||||
const scalar nPack = n*alphaMax/alpha()[cellI];
|
||||
|
||||
if (n > 0 && nPack < nMin)
|
||||
if (n > 0)
|
||||
{
|
||||
nMin = nPack;
|
||||
const scalar nPack = n*alphaMax/alpha()[cellI];
|
||||
|
||||
if (nPack < nMin)
|
||||
{
|
||||
nMin = nPack;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue