Updated coarse level solver AMG debug flags
This commit is contained in:
parent
5c33f47532
commit
c0003d35e6
2 changed files with 8 additions and 0 deletions
|
@ -231,6 +231,10 @@ void Foam::coarseBlockAMGLevel<Type>::solve
|
|||
label oldDebug = blockLduMatrix::debug();
|
||||
|
||||
if (blockLduMatrix::debug >= 4)
|
||||
{
|
||||
blockLduMatrix::debug = 2;
|
||||
}
|
||||
else if (blockLduMatrix::debug == 3)
|
||||
{
|
||||
blockLduMatrix::debug = 1;
|
||||
}
|
||||
|
|
|
@ -205,6 +205,10 @@ void Foam::coarseAmgLevel::solve
|
|||
label oldDebug = blockLduMatrix::debug();
|
||||
|
||||
if (blockLduMatrix::debug >= 4)
|
||||
{
|
||||
blockLduMatrix::debug = 2;
|
||||
}
|
||||
else if (blockLduMatrix::debug == 3)
|
||||
{
|
||||
blockLduMatrix::debug = 1;
|
||||
}
|
||||
|
|
Reference in a new issue