FreeFOAM The Cross-Platform CFD Toolkit
createPcorrTypes.H
Go to the documentation of this file.
2  (
3  p_rgh.boundaryField().size(),
4  zeroGradientFvPatchScalarField::typeName
5  );
6 
7  for (label i=0; i<p_rgh.boundaryField().size(); i++)
8  {
9  if (p_rgh.boundaryField()[i].fixesValue())
10  {
11  pcorrTypes[i] = fixedValueFvPatchScalarField::typeName;
12  }
13  }