mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: lduPrimitiveMesh: more printing
This commit is contained in:
@ -68,7 +68,8 @@ void Foam::lduPrimitiveMesh::checkUpperTriangular
|
||||
{
|
||||
if (l[faceI-1] > l[faceI])
|
||||
{
|
||||
FatalErrorIn
|
||||
//FatalErrorIn
|
||||
WarningIn
|
||||
(
|
||||
"checkUpperTriangular"
|
||||
"(const label, const labelUList&, const labelUList&)"
|
||||
@ -76,7 +77,8 @@ void Foam::lduPrimitiveMesh::checkUpperTriangular
|
||||
<< " Problem at face " << faceI
|
||||
<< " l:" << l[faceI] << " u:" << u[faceI]
|
||||
<< " previous l:" << l[faceI-1]
|
||||
<< abort(FatalError);
|
||||
//<< abort(FatalError);
|
||||
<< endl;
|
||||
}
|
||||
else if (l[faceI-1] == l[faceI])
|
||||
{
|
||||
@ -120,7 +122,7 @@ Foam::lduPrimitiveMesh::lduPrimitiveMesh
|
||||
const labelUList& l,
|
||||
const labelUList& u,
|
||||
const labelListList& pa,
|
||||
const lduInterfacePtrsList& interfaces,
|
||||
const lduInterfacePtrsList interfaces,
|
||||
const lduSchedule& ps,
|
||||
const label comm
|
||||
)
|
||||
@ -170,7 +172,7 @@ Foam::lduPrimitiveMesh::lduPrimitiveMesh
|
||||
labelList& l,
|
||||
labelList& u,
|
||||
labelListList& pa,
|
||||
lduInterfacePtrsList& interfaces,
|
||||
lduInterfacePtrsList interfaces,
|
||||
const lduSchedule& ps,
|
||||
const label comm,
|
||||
bool reUse
|
||||
|
||||
@ -114,7 +114,7 @@ public:
|
||||
const labelUList& l,
|
||||
const labelUList& u,
|
||||
const labelListList& pa,
|
||||
const lduInterfacePtrsList& interfaces,
|
||||
const lduInterfacePtrsList interfaces,
|
||||
const lduSchedule& ps,
|
||||
const label comm
|
||||
);
|
||||
@ -126,7 +126,7 @@ public:
|
||||
labelList& l,
|
||||
labelList& u,
|
||||
labelListList& pa,
|
||||
lduInterfacePtrsList& interfaces,
|
||||
lduInterfacePtrsList interfaces,
|
||||
const lduSchedule& ps,
|
||||
const label comm,
|
||||
bool reUse
|
||||
|
||||
Reference in New Issue
Block a user