FreeFOAM The Cross-Platform CFD Toolkit
checkPatchFieldTypes.H
Go to the documentation of this file.
1 if (!isA<zeroGradientFvPatchScalarField>(k_.boundaryField()[patchi]))
2 {
3  FatalErrorIn("wall-function evaluation")
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 
11 if (!isA<zeroGradientFvPatchScalarField>(epsilon_.boundaryField()[patchi]))
12 {
13  FatalErrorIn("wall-function evaluation")
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 }
20 
21 // ************************ vim: set sw=4 sts=4 et: ************************ //