From c441753ff92bdfce40d987effda8460694ad667f Mon Sep 17 00:00:00 2001 From: danielque Date: Thu, 21 Feb 2019 14:53:31 +0100 Subject: [PATCH] clean up whitespaces no tabs, no extra whitespaces! --- .../SyamlalThermCond/SyamlalThermCond.H | 29 +++++++++---------- .../ZehnerSchluenderThermCond.C | 2 +- .../ZehnerSchluenderThermCond.H | 27 +++++++++-------- .../thermCondModel/noTherm/noThermCond.C | 1 + .../thermCondModel/thermCondModel.H | 25 ++++++++-------- 5 files changed, 42 insertions(+), 42 deletions(-) diff --git a/src/lagrangian/cfdemParticle/subModels/thermCondModel/SyamlalThermCond/SyamlalThermCond.H b/src/lagrangian/cfdemParticle/subModels/thermCondModel/SyamlalThermCond/SyamlalThermCond.H index ae1c4c28..1d17d611 100644 --- a/src/lagrangian/cfdemParticle/subModels/thermCondModel/SyamlalThermCond/SyamlalThermCond.H +++ b/src/lagrangian/cfdemParticle/subModels/thermCondModel/SyamlalThermCond/SyamlalThermCond.H @@ -48,24 +48,24 @@ class SyamlalThermCond : public thermCondModel { - + private: - + dictionary propsDict_; - + word voidfractionFieldName_; - + const volScalarField& voidfraction_; - + word rhoFieldName_; - + const volScalarField& rho_; - + word wallQFactorName_; - + // ratio of half-cell-size and near-wall film mutable volScalarField wallQFactor_; - + bool hasWallQFactor_; public: @@ -89,12 +89,11 @@ public: // Member Functions - - tmp thermCond() const; - - tmp thermDiff() const; - - + + tmp thermCond() const; + + tmp thermDiff() const; + }; diff --git a/src/lagrangian/cfdemParticle/subModels/thermCondModel/ZehnerSchluenderThermCond/ZehnerSchluenderThermCond.C b/src/lagrangian/cfdemParticle/subModels/thermCondModel/ZehnerSchluenderThermCond/ZehnerSchluenderThermCond.C index 7e4ca613..54863f45 100644 --- a/src/lagrangian/cfdemParticle/subModels/thermCondModel/ZehnerSchluenderThermCond/ZehnerSchluenderThermCond.C +++ b/src/lagrangian/cfdemParticle/subModels/thermCondModel/ZehnerSchluenderThermCond/ZehnerSchluenderThermCond.C @@ -62,7 +62,7 @@ ZehnerSchluenderThermCond::ZehnerSchluenderThermCond ), sm.mesh(), dimensionedScalar("one", dimensionSet(1, 1, -3, -1,0,0,0), 1.0), - "zeroGradient" + "zeroGradient" ), voidfractionFieldName_(propsDict_.lookupOrDefault("voidfractionFieldName","voidfraction")), voidfraction_(sm.mesh().lookupObject (voidfractionFieldName_)), diff --git a/src/lagrangian/cfdemParticle/subModels/thermCondModel/ZehnerSchluenderThermCond/ZehnerSchluenderThermCond.H b/src/lagrangian/cfdemParticle/subModels/thermCondModel/ZehnerSchluenderThermCond/ZehnerSchluenderThermCond.H index b3cafd7c..d4a613f8 100644 --- a/src/lagrangian/cfdemParticle/subModels/thermCondModel/ZehnerSchluenderThermCond/ZehnerSchluenderThermCond.H +++ b/src/lagrangian/cfdemParticle/subModels/thermCondModel/ZehnerSchluenderThermCond/ZehnerSchluenderThermCond.H @@ -49,26 +49,26 @@ class ZehnerSchluenderThermCond : public thermCondModel { - + private: - + dictionary propsDict_; mutable volScalarField partKsField_; - + word voidfractionFieldName_; - + const volScalarField& voidfraction_; - + scalarList typeKs_; mutable double **partKs_; - + word wallQFactorName_; - + // ratio of half-cell-size and near-wall film mutable volScalarField wallQFactor_; - + bool hasWallQFactor_; void allocateMyArrays() const; @@ -96,12 +96,11 @@ public: // Member Functions - - tmp thermCond() const; - - tmp thermDiff() const; - - + + tmp thermCond() const; + + tmp thermDiff() const; + }; diff --git a/src/lagrangian/cfdemParticle/subModels/thermCondModel/noTherm/noThermCond.C b/src/lagrangian/cfdemParticle/subModels/thermCondModel/noTherm/noThermCond.C index 35921de7..d66ae21b 100644 --- a/src/lagrangian/cfdemParticle/subModels/thermCondModel/noTherm/noThermCond.C +++ b/src/lagrangian/cfdemParticle/subModels/thermCondModel/noTherm/noThermCond.C @@ -22,6 +22,7 @@ License #include "noThermCond.H" #include "addToRunTimeSelectionTable.H" + // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam diff --git a/src/lagrangian/cfdemParticle/subModels/thermCondModel/thermCondModel/thermCondModel.H b/src/lagrangian/cfdemParticle/subModels/thermCondModel/thermCondModel/thermCondModel.H index 85e744c9..d84f6c9e 100644 --- a/src/lagrangian/cfdemParticle/subModels/thermCondModel/thermCondModel/thermCondModel.H +++ b/src/lagrangian/cfdemParticle/subModels/thermCondModel/thermCondModel/thermCondModel.H @@ -33,6 +33,7 @@ SourceFiles #include "fvCFD.H" #include "cfdemCloud.H" + // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam @@ -51,13 +52,13 @@ protected: const dictionary& dict_; cfdemCloud& particleCloud_; - - IOdictionary transportProperties_; - - dimensionedScalar kf0_; - - dimensionedScalar Cp_; - + + IOdictionary transportProperties_; + + dimensionedScalar kf0_; + + dimensionedScalar Cp_; + public: @@ -104,11 +105,11 @@ public: // Member Functions - - virtual tmp thermCond() const = 0; - - virtual tmp thermDiff() const = 0; - + + virtual tmp thermCond() const = 0; + + virtual tmp thermDiff() const = 0; + };