diff --git a/src/foam/meshes/polyMesh/polyPatches/polyPatch/polyPatch.H b/src/foam/meshes/polyMesh/polyPatches/polyPatch/polyPatch.H index 81217ba10..bef61e41f 100644 --- a/src/foam/meshes/polyMesh/polyPatches/polyPatch/polyPatch.H +++ b/src/foam/meshes/polyMesh/polyPatches/polyPatch/polyPatch.H @@ -355,9 +355,8 @@ public: ); - // Destructor - - virtual ~polyPatch(); + //- Destructor + virtual ~polyPatch(); // Member Functions diff --git a/src/foam/meshes/polyMesh/zones/cellZone/cellZone.H b/src/foam/meshes/polyMesh/zones/cellZone/cellZone.H index 6a23cd1a1..4c3407b6c 100644 --- a/src/foam/meshes/polyMesh/zones/cellZone/cellZone.H +++ b/src/foam/meshes/polyMesh/zones/cellZone/cellZone.H @@ -207,8 +207,7 @@ public: //- Destructor - - virtual ~cellZone(); + virtual ~cellZone(); // Member Functions diff --git a/src/foam/meshes/polyMesh/zones/faceZone/faceZone.H b/src/foam/meshes/polyMesh/zones/faceZone/faceZone.H index ae146b47e..1da0fe0a5 100644 --- a/src/foam/meshes/polyMesh/zones/faceZone/faceZone.H +++ b/src/foam/meshes/polyMesh/zones/faceZone/faceZone.H @@ -243,8 +243,7 @@ public: //- Destructor - - virtual ~faceZone(); + virtual ~faceZone(); // Member Functions diff --git a/src/foam/meshes/polyMesh/zones/pointZone/pointZone.H b/src/foam/meshes/polyMesh/zones/pointZone/pointZone.H index b5da9d866..e35f1e7cf 100644 --- a/src/foam/meshes/polyMesh/zones/pointZone/pointZone.H +++ b/src/foam/meshes/polyMesh/zones/pointZone/pointZone.H @@ -209,8 +209,7 @@ public: //- Destructor - - virtual ~pointZone(); + virtual ~pointZone(); // Member Functions diff --git a/src/postProcessing/functionObjects/field/fieldMinMax/fieldMinMax.H b/src/postProcessing/functionObjects/field/fieldMinMax/fieldMinMax.H index a7b11b91b..9fc92671e 100644 --- a/src/postProcessing/functionObjects/field/fieldMinMax/fieldMinMax.H +++ b/src/postProcessing/functionObjects/field/fieldMinMax/fieldMinMax.H @@ -139,9 +139,8 @@ public: ); - // Destructor - - virtual ~fieldMinMax(); + //- Destructor + virtual ~fieldMinMax(); // Member Functions diff --git a/src/sampling/probes/probes.H b/src/sampling/probes/probes.H index 6f598b470..eda0acf89 100644 --- a/src/sampling/probes/probes.H +++ b/src/sampling/probes/probes.H @@ -174,9 +174,8 @@ public: ); - // Destructor - - virtual ~probes(); + //- Destructor + virtual ~probes(); // Member Functions diff --git a/src/thermophysicalModels/basic/mixtures/basicMixture/basicMixture.H b/src/thermophysicalModels/basic/mixtures/basicMixture/basicMixture.H index e746fb8de..1710731a0 100644 --- a/src/thermophysicalModels/basic/mixtures/basicMixture/basicMixture.H +++ b/src/thermophysicalModels/basic/mixtures/basicMixture/basicMixture.H @@ -65,9 +65,8 @@ public: basicMixture(const dictionary&, const fvMesh&, const objectRegistry&); - // Destructor - - virtual ~basicMixture(); + //- Destructor + virtual ~basicMixture(); }; diff --git a/src/thermophysicalModels/basic/mixtures/pureMixture/pureMixture.H b/src/thermophysicalModels/basic/mixtures/pureMixture/pureMixture.H index 752635afb..f68caf0be 100644 --- a/src/thermophysicalModels/basic/mixtures/pureMixture/pureMixture.H +++ b/src/thermophysicalModels/basic/mixtures/pureMixture/pureMixture.H @@ -75,9 +75,8 @@ public: pureMixture(const dictionary&, const fvMesh&, const objectRegistry&); - // Destructor - - ~pureMixture(); + //- Destructor + ~pureMixture(); // Member functions diff --git a/src/thermophysicalModels/basic/psiThermo/basicPsiThermo/basicPsiThermo.H b/src/thermophysicalModels/basic/psiThermo/basicPsiThermo/basicPsiThermo.H index 4f7428e19..2ab489b4a 100644 --- a/src/thermophysicalModels/basic/psiThermo/basicPsiThermo/basicPsiThermo.H +++ b/src/thermophysicalModels/basic/psiThermo/basicPsiThermo/basicPsiThermo.H @@ -95,6 +95,7 @@ public: return New(mesh, mesh); } + //- Destructor virtual ~basicPsiThermo(); diff --git a/src/thermophysicalModels/reactionThermo/combustionThermo/hsCombustionThermo/hsCombustionThermo.H b/src/thermophysicalModels/reactionThermo/combustionThermo/hsCombustionThermo/hsCombustionThermo.H index 520a65756..e116c2a41 100644 --- a/src/thermophysicalModels/reactionThermo/combustionThermo/hsCombustionThermo/hsCombustionThermo.H +++ b/src/thermophysicalModels/reactionThermo/combustionThermo/hsCombustionThermo/hsCombustionThermo.H @@ -88,7 +88,11 @@ public: // Selectors //- Standard selection based on fvMesh - static autoPtr New(const fvMesh&, const objectRegistry&); + static autoPtr New + ( + const fvMesh&, + const objectRegistry& + ); static autoPtr New(const fvMesh& mesh) { diff --git a/src/thermophysicalModels/reactionThermo/mixtures/reactingMixture/reactingMixture.H b/src/thermophysicalModels/reactionThermo/mixtures/reactingMixture/reactingMixture.H index 256a3129e..c6ffd66d9 100644 --- a/src/thermophysicalModels/reactionThermo/mixtures/reactingMixture/reactingMixture.H +++ b/src/thermophysicalModels/reactionThermo/mixtures/reactingMixture/reactingMixture.H @@ -72,13 +72,17 @@ public: // Constructors //- Construct from dictionary and mesh - reactingMixture(const dictionary&, const fvMesh&, const objectRegistry&); + reactingMixture + ( + const dictionary&, + const fvMesh&, + const objectRegistry& + ); - // Destructor - - virtual ~reactingMixture() - {} + //- Destructor + virtual ~reactingMixture() + {} // Member functions diff --git a/src/thermophysicalModels/specie/reaction/reactionRate/ArrheniusReactionRate/ArrheniusReactionRate.H b/src/thermophysicalModels/specie/reaction/reactionRate/ArrheniusReactionRate/ArrheniusReactionRate.H index 3d6d61a7a..73b7c707d 100644 --- a/src/thermophysicalModels/specie/reaction/reactionRate/ArrheniusReactionRate/ArrheniusReactionRate.H +++ b/src/thermophysicalModels/specie/reaction/reactionRate/ArrheniusReactionRate/ArrheniusReactionRate.H @@ -44,7 +44,7 @@ namespace Foam { /*---------------------------------------------------------------------------*\ - Class ArrheniusReactionRate Declaration + Class ArrheniusReactionRate Declaration \*---------------------------------------------------------------------------*/ class ArrheniusReactionRate diff --git a/src/thermophysicalModels/specie/reaction/reactionsTemplates/ReversibleReaction/ReversibleReaction.H b/src/thermophysicalModels/specie/reaction/reactionsTemplates/ReversibleReaction/ReversibleReaction.H index 2afac7a3c..012770116 100644 --- a/src/thermophysicalModels/specie/reaction/reactionsTemplates/ReversibleReaction/ReversibleReaction.H +++ b/src/thermophysicalModels/specie/reaction/reactionsTemplates/ReversibleReaction/ReversibleReaction.H @@ -137,7 +137,7 @@ public: const scalarField& c ) const; - //- Reverse rate constant from the given formard rate constant + //- Reverse rate constant from the given forward rate constant virtual scalar kr ( const scalar kfwd,