mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: add End markers to some tutorials and finiteArea utils (issue #671)
This commit is contained in:
@ -46,12 +46,12 @@ using namespace Foam;
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
# include "addRegionOption.H"
|
||||
#include "addRegionOption.H"
|
||||
|
||||
# include "setRootCase.H"
|
||||
# include "createTime.H"
|
||||
# include "createNamedMesh.H"
|
||||
# include "createFaMesh.H"
|
||||
#include "setRootCase.H"
|
||||
#include "createTime.H"
|
||||
#include "createNamedMesh.H"
|
||||
#include "createFaMesh.H"
|
||||
|
||||
Info<< "Time = " << runTime.timeName() << nl << endl;
|
||||
|
||||
@ -76,7 +76,8 @@ int main(int argc, char *argv[])
|
||||
<< endl;
|
||||
|
||||
|
||||
return(0);
|
||||
Info << "\nEnd" << endl;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
||||
|
||||
@ -25,5 +25,6 @@ done
|
||||
echo
|
||||
echo "Use paraFoam -touch-all to create files for paraview post-processing"
|
||||
echo
|
||||
echo "End"
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
@ -16,4 +16,6 @@ runApplication createPatch -overwrite
|
||||
|
||||
# rm -f 0/polyMesh/{cellZones,faceZones,pointZones}
|
||||
|
||||
echo "End"
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user