initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / applications / solvers / compressible / rhopSonicFoam / rhoEboundaryTypes.H
blob84e08b29ed4a2507da5ea5b70e3543dab77b6961
1 const volScalarField::GeometricBoundaryField& Tbf = T.boundaryField();
2 wordList rhoEboundaryTypes = Tbf.types();
4 forAll(rhoEboundaryTypes, patchi)
6     if (Tbf[patchi].fixesValue())
7     {
8         rhoEboundaryTypes[patchi] = fixedRhoEFvPatchScalarField::typeName;
9     }
10     else
11     {
12         rhoEboundaryTypes[patchi] = mixedRhoEFvPatchScalarField::typeName;
13     }