particle::initCellFacePt(): Added suggestions to resolve failure to find particle
Resolves bug report: http://www.openfoam.org/mantisbt/view.php?id=1461
This commit is contained in:
parent
7200eb272a
commit
be428aacd7
2 changed files with 16 additions and 4 deletions
|
|
@ -42,8 +42,14 @@ Description
|
|||
|
||||
coordinateSystem
|
||||
{
|
||||
e1 (0.70710678 0.70710678 0);
|
||||
e2 (0 0 1);
|
||||
type cartesian;
|
||||
origin (0 0 0);
|
||||
coordinateRotation
|
||||
{
|
||||
type axesRotation;
|
||||
e1 (0.70710678 0.70710678 0);
|
||||
e2 (0 0 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -756,8 +756,14 @@ inline void Foam::particle::initCellFacePt()
|
|||
// error.
|
||||
|
||||
FatalErrorIn("void Foam::particle::initCellFacePt()")
|
||||
<< "cell, tetFace and tetPt search failure at position "
|
||||
<< position_ << nl << "for requested cell " << oldCellI
|
||||
<< " cell, tetFace and tetPt search failure at "
|
||||
<< "position " << position_ << nl
|
||||
<< " for requested cell " << oldCellI << nl
|
||||
<< " If this is a restart or "
|
||||
"reconstruction/decomposition etc. it is likely that"
|
||||
" the write precision is not sufficient.\n"
|
||||
" Either increase 'writePrecision' or "
|
||||
"set 'writeFormat' to 'binary'"
|
||||
<< abort(FatalError);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue