mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev
This commit is contained in:
@ -141,10 +141,15 @@ public:
|
||||
)
|
||||
)
|
||||
{
|
||||
|
||||
if (!schemeData.eof())
|
||||
{
|
||||
IOWarningIn("linearUpwind(const fvMesh&, Istream&)", schemeData)
|
||||
<< "unexpected additional entries in stream." << nl
|
||||
IOWarningIn
|
||||
(
|
||||
"linearUpwind(const fvMesh&, "
|
||||
"const surfaceScalarField& faceFlux, Istream&)",
|
||||
schemeData
|
||||
) << "unexpected additional entries in stream." << nl
|
||||
<< " Only the name of the gradient scheme in the"
|
||||
" 'gradSchemes' dictionary should be specified."
|
||||
<< endl;
|
||||
|
||||
@ -111,11 +111,17 @@ public:
|
||||
)
|
||||
)
|
||||
{
|
||||
IOWarningIn("linearUpwindV(const fvMesh&, Istream&)", schemeData)
|
||||
<< "unexpected additional entries in stream." << nl
|
||||
<< " Only the name of the gradient scheme in the"
|
||||
" 'gradSchemes' dictionary should be specified."
|
||||
<< endl;
|
||||
if (!schemeData.eof())
|
||||
{
|
||||
IOWarningIn
|
||||
(
|
||||
"linearUpwindV(const fvMesh&, Istream&)",
|
||||
schemeData
|
||||
) << "unexpected additional entries in stream." << nl
|
||||
<< " Only the name of the gradient scheme in the"
|
||||
" 'gradSchemes' dictionary should be specified."
|
||||
<< endl;
|
||||
}
|
||||
}
|
||||
|
||||
//- Construct from faceFlux and Istream
|
||||
@ -137,11 +143,18 @@ public:
|
||||
)
|
||||
)
|
||||
{
|
||||
IOWarningIn("linearUpwindV(const fvMesh&, Istream&)", schemeData)
|
||||
<< "unexpected additional entries in stream." << nl
|
||||
<< " Only the name of the gradient scheme in the"
|
||||
" 'gradSchemes' dictionary should be specified."
|
||||
<< endl;
|
||||
if (!schemeData.eof())
|
||||
{
|
||||
IOWarningIn
|
||||
(
|
||||
"linearUpwindV(const fvMesh&, "
|
||||
"const surfaceScalarField& faceFlux, Istream&)",
|
||||
schemeData
|
||||
) << "unexpected additional entries in stream." << nl
|
||||
<< " Only the name of the gradient scheme in the"
|
||||
" 'gradSchemes' dictionary should be specified."
|
||||
<< endl;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user