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

@ -46,12 +46,12 @@ using namespace Foam;
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {
# include "addRegionOption.H" #include "addRegionOption.H"
# include "setRootCase.H" #include "setRootCase.H"
# include "createTime.H" #include "createTime.H"
# include "createNamedMesh.H" #include "createNamedMesh.H"
# include "createFaMesh.H" #include "createFaMesh.H"
Info<< "Time = " << runTime.timeName() << nl << endl; Info<< "Time = " << runTime.timeName() << nl << endl;
@ -76,7 +76,8 @@ int main(int argc, char *argv[])
<< endl; << 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 ... "; Info << "Write finite area mesh ... ";
areaMesh.write(); areaMesh.write();
Info << "Done" << endl; Info << "\nEnd" << endl;
return(0); return 0;
} }
// ************************************************************************* // // ************************************************************************* //

View File

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

View File

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