Loading...
Searching...
No Matches
checkPatchFieldTypes.H
Go to the documentation of this file.
1if (!isA<zeroGradientFvPatchScalarField>(k_.boundaryField()[patchi]))
2{
4 << k_.boundaryField()[patchi].type()
5 << " is the wrong k patchField type for wall-functions on patch "
6 << curPatch.name() << nl
7 << " should be zeroGradient"
8 << exit(FatalError);
9}
10
11if (!isA<zeroGradientFvPatchScalarField>(epsilon_.boundaryField()[patchi]))
12{
14 << epsilon_.boundaryField()[patchi].type()
15 << " is the wrong epsilon patchField type for wall-functions on patch "
16 << curPatch.name() << nl
17 << " should be zeroGradient"
18 << exit(FatalError);
19}
#define FatalErrorInFunction
Report an error message using Foam::FatalError.
Definition error.H:600
errorManipArg< error, int > exit(error &err, const int errNo=1)
Definition errorManip.H:125
constexpr char nl
The newline '\n' character (0x0a).
Definition Ostream.H:50