]> SALOME platform Git repositories - tools/solverlab.git/commitdiff
Salome HOME
Corrected enum value
authormichael <michael@localhost.localdomain>
Fri, 14 Jan 2022 09:45:00 +0000 (10:45 +0100)
committermichael <michael@localhost.localdomain>
Fri, 14 Jan 2022 09:45:00 +0000 (10:45 +0100)
CoreFlows/Models/src/StationaryDiffusionEquation.cxx

index f0d5eb1a91ddf94713599a0abe6b5aaf2ab32a5a..2a7f9c0f62b1f794f5e1894b042717cef56debdf 100755 (executable)
@@ -770,7 +770,7 @@ void StationaryDiffusionEquation::setLinearSolver(linearSolver kspType, precondi
                throw CdmathException("!!! Error : only 'GMRES', 'CG' or 'BCGS' algorithm is acceptable !!!");
        }
        // set preconditioner
-       if (pcType == NOPC)
+       if (pcType == NONE)
                _pctype = (char*)&PCNONE;
        else if (pcType ==LU)
                _pctype = (char*)&PCLU;
@@ -781,10 +781,10 @@ void StationaryDiffusionEquation::setLinearSolver(linearSolver kspType, precondi
        else if (pcType == ICC)
                _pctype = (char*)&PCICC;
        else {
-               cout << "!!! Error : only 'NOPC', 'LU', 'ILU', 'CHOLESKY' or 'ICC' preconditioners are acceptable !!!" << endl;
-               *_runLogFile << "!!! Error : only 'NOPC' or 'LU' or 'ILU' preconditioners are acceptable !!!" << endl;
+               cout << "!!! Error : only 'NONE', 'LU', 'ILU', 'CHOLESKY' or 'ICC' preconditioners are acceptable !!!" << endl;
+               *_runLogFile << "!!! Error : only 'NONE' or 'LU' or 'ILU' preconditioners are acceptable !!!" << endl;
                _runLogFile->close();
-               throw CdmathException("!!! Error : only 'NOPC' or 'LU' or 'ILU' preconditioners are acceptable !!!" );
+               throw CdmathException("!!! Error : only 'NONE' or 'LU' or 'ILU' preconditioners are acceptable !!!" );
        }
 }