corrected error message

This commit is contained in:
mattijs
2008-08-08 11:07:18 +01:00
parent 701dd7bdb5
commit 02a26640a9
3 changed files with 6 additions and 6 deletions

View File

@ -214,8 +214,8 @@ LRR::LRR
FatalErrorIn FatalErrorIn
( (
"LRR::LRR" "LRR::LRR"
"(const volVectorField& U, const surfaceScalarField& phi," "( const volScalarField&, const volVectorField&"
"incompressibleTransportModel& lamTransportModel)" ", const surfaceScalarField&, incompressibleTransportModel&)"
) << "couplingFactor = " << couplingFactor_ ) << "couplingFactor = " << couplingFactor_
<< " is not in range 0 - 1" << nl << " is not in range 0 - 1" << nl
<< exit(FatalError); << exit(FatalError);

View File

@ -236,8 +236,8 @@ LaunderGibsonRSTM::LaunderGibsonRSTM
FatalErrorIn FatalErrorIn
( (
"LaunderGibsonRSTM::LaunderGibsonRSTM" "LaunderGibsonRSTM::LaunderGibsonRSTM"
"(const volVectorField& U, const surfaceScalarField& phi," "(const volScalarField&, const volVectorField&"
"incompressibleTransportModel& lamTransportModel)" ", const surfaceScalarField&, basicThermo&)"
) << "couplingFactor = " << couplingFactor_ ) << "couplingFactor = " << couplingFactor_
<< " is not in range 0 - 1" << nl << " is not in range 0 - 1" << nl
<< exit(FatalError); << exit(FatalError);

View File

@ -74,8 +74,8 @@ autoPtr<RASModel> RASModel::New
{ {
FatalErrorIn FatalErrorIn
( (
"RASModel::New(const volScalarField& rho, " "RASModel::New(const volScalarField&, "
"const volVectorField& U, const surfaceScalarField& phi, " "const volVectorField&, const surfaceScalarField&, "
"basicThermo&)" "basicThermo&)"
) << "Unknown RASModel type " << RASModelTypeName ) << "Unknown RASModel type " << RASModelTypeName
<< endl << endl << endl << endl