STYLE: add End markers to some tutorials and finiteArea utils (issue #671)

This commit is contained in:
Mark Olesen
2017-12-19 14:59:24 +01:00
parent 8bf98e74da
commit d20b981fef
4 changed files with 12 additions and 8 deletions

View File

@ -76,7 +76,8 @@ int main(int argc, char *argv[])
<< endl;
return(0);
Info << "\nEnd" << endl;
return 0;
}

View File

@ -347,9 +347,9 @@ int main(int argc, char *argv[])
Info << "Write finite area mesh ... ";
areaMesh.write();
Info << "Done" << endl;
Info << "\nEnd" << endl;
return(0);
return 0;
}
// ************************************************************************* //

View File

@ -25,5 +25,6 @@ done
echo
echo "Use paraFoam -touch-all to create files for paraview post-processing"
echo
echo "End"
#------------------------------------------------------------------------------

View File

@ -16,4 +16,6 @@ runApplication createPatch -overwrite
# rm -f 0/polyMesh/{cellZones,faceZones,pointZones}
echo "End"
# -----------------------------------------------------------------------------