diff --git a/applications/utilities/mesh/conversion/fluentMeshToFoam/fluentMeshToFoam.L b/applications/utilities/mesh/conversion/fluentMeshToFoam/fluentMeshToFoam.L index 64a508e1a..688bea44a 100644 --- a/applications/utilities/mesh/conversion/fluentMeshToFoam/fluentMeshToFoam.L +++ b/applications/utilities/mesh/conversion/fluentMeshToFoam/fluentMeshToFoam.L @@ -252,11 +252,11 @@ endOfSection {space}")"{space} %} - /* ------------------------------------------------------------------------- *\ + /* ------------------------------------------------------------------------ *\ ------ Start Lexing ------ - \* ------------------------------------------------------------------------- */ + \* ------------------------------------------------------------------------ */ - /* ------ Reading control header ------ */ + /* ------ Reading control header ------ */ {comment} { yy_push_state(readComment); diff --git a/applications/utilities/mesh/generation/blockMesh/block.H b/applications/utilities/mesh/generation/blockMesh/block.H index b72ebb9d9..9a1025cf5 100644 --- a/applications/utilities/mesh/generation/blockMesh/block.H +++ b/applications/utilities/mesh/generation/blockMesh/block.H @@ -71,7 +71,7 @@ class block labelListListList boundaryPatches_; - // private member functions + // Private member functions label vtxLabel(label i, label j, label k); diff --git a/applications/utilities/mesh/manipulation/mergeOrSplitBaffles/mergeOrSplitBaffles.C b/applications/utilities/mesh/manipulation/mergeOrSplitBaffles/mergeOrSplitBaffles.C index f5cf42fb5..fae9f4d5a 100644 --- a/applications/utilities/mesh/manipulation/mergeOrSplitBaffles/mergeOrSplitBaffles.C +++ b/applications/utilities/mesh/manipulation/mergeOrSplitBaffles/mergeOrSplitBaffles.C @@ -239,9 +239,9 @@ int main(int argc, char *argv[]) // Collect all boundary faces labelList boundaryFaces(mesh.nFaces() - mesh.nInternalFaces()); - forAll(boundaryFaces, i) + forAll (boundaryFaces, i) { - boundaryFaces[i] = i+mesh.nInternalFaces(); + boundaryFaces[i] = i + mesh.nInternalFaces(); } diff --git a/applications/utilities/miscellaneous/findRoot/findRoot.C b/applications/utilities/miscellaneous/findRoot/findRoot.C index a6fe4d328..9f428dd0e 100644 --- a/applications/utilities/miscellaneous/findRoot/findRoot.C +++ b/applications/utilities/miscellaneous/findRoot/findRoot.C @@ -61,14 +61,14 @@ public: scalar operator()(const scalar& x) const { - return 0.5*Foam::pow(x,-1.5) - Foam::cos(x); + return 0.5*Foam::pow(x, -1.5) - Foam::cos(x); } }; int main(int argc, char *argv[]) { - testFunction tf; + testFunction tf; testFunctionDerivative df; Info<< setprecision(10) @@ -77,7 +77,7 @@ int main(int argc, char *argv[]) << "Ridders root " << RiddersRoot(tf, 1e-5).root(0, 10) << nl << "NewtonSecant root " - << NewtonSecantRoot + << NewtonSecantRoot ( tf, df, diff --git a/applications/utilities/parallelProcessing/reconstructPar/reconstructPar.C b/applications/utilities/parallelProcessing/reconstructPar/reconstructPar.C index f9452256f..1f4c772d8 100644 --- a/applications/utilities/parallelProcessing/reconstructPar/reconstructPar.C +++ b/applications/utilities/parallelProcessing/reconstructPar/reconstructPar.C @@ -171,7 +171,6 @@ int main(int argc, char *argv[]) // Get list of objects from processor0 database IOobjectList objects(procMeshes.meshes()[0], databases[0].timeName()); - // If there are any FV fields, reconstruct them if diff --git a/applications/utilities/postProcessing/velocityField/Co/Co.C b/applications/utilities/postProcessing/velocityField/Co/Co.C index 4deb30d2c..27b889dea 100644 --- a/applications/utilities/postProcessing/velocityField/Co/Co.C +++ b/applications/utilities/postProcessing/velocityField/Co/Co.C @@ -184,4 +184,5 @@ void Foam::calc(const argList& args, const Time& runTime, const fvMesh& mesh) Info<< "\nEnd\n" << endl; } + // ************************************************************************* // diff --git a/applications/utilities/surface/surfaceSmooth/surfaceSmooth.C b/applications/utilities/surface/surfaceSmooth/surfaceSmooth.C index 2db7c7a7e..49d834ca4 100644 --- a/applications/utilities/surface/surfaceSmooth/surfaceSmooth.C +++ b/applications/utilities/surface/surfaceSmooth/surfaceSmooth.C @@ -78,7 +78,7 @@ int main(int argc, char *argv[]) const labelListList& pointEdges = surf1.pointEdges(); - for(label iter = 0; iter < iters; iter++) + for (label iter = 0; iter < iters; iter++) { forAll(pointEdges, vertI) {