COMP: Multiple changes - first clean build after latest merge - UNTESTED

This commit is contained in:
Andrew Heather
2016-09-23 15:36:53 +01:00
parent 9fbd612672
commit b9940cbbb1
311 changed files with 4119 additions and 6540 deletions

View File

@ -107,7 +107,7 @@ Foam::tmp<Foam::pointScalarField> Foam::functionObjects::streamFunction::calc
bool finished = true;
// Find the boundary face with zero flux. set the stream function
// Find the boundary face with zero flux. Set the stream function
// to zero on that face
bool found = false;
@ -123,10 +123,7 @@ Foam::tmp<Foam::pointScalarField> Foam::functionObjects::streamFunction::calc
{
forAll(bouFaces, facei)
{
if
(
magSqr(phi.boundaryField()[patchi][facei]) < SMALL
)
if (magSqr(phi.boundaryField()[patchi][facei]) < SMALL)
{
const labelList& zeroPoints = bouFaces[facei];
@ -441,7 +438,7 @@ Foam::functionObjects::streamFunction::streamFunction
:
fieldExpression(name, runTime, dict, "phi")
{
setResultName("streamFunction", "phi");
setResultName(typeName, "phi");
label nD = mesh_.nGeometricD();