diff --git a/src/lagrangian/intermediate/submodels/Kinematic/DispersionModel/DispersionModel/NewDispersionModel.C b/src/lagrangian/intermediate/submodels/Kinematic/DispersionModel/DispersionModel/NewDispersionModel.C index 35c748949b..9347146b01 100644 --- a/src/lagrangian/intermediate/submodels/Kinematic/DispersionModel/DispersionModel/NewDispersionModel.C +++ b/src/lagrangian/intermediate/submodels/Kinematic/DispersionModel/DispersionModel/NewDispersionModel.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "DispersionModel.H" diff --git a/src/lagrangian/intermediate/submodels/addOns/radiation/absorptionEmission/cloudAbsorptionEmission/cloudAbsorptionEmission.C b/src/lagrangian/intermediate/submodels/addOns/radiation/absorptionEmission/cloudAbsorptionEmission/cloudAbsorptionEmission.C index fae1d15e6b..e9cf99d723 100644 --- a/src/lagrangian/intermediate/submodels/addOns/radiation/absorptionEmission/cloudAbsorptionEmission/cloudAbsorptionEmission.C +++ b/src/lagrangian/intermediate/submodels/addOns/radiation/absorptionEmission/cloudAbsorptionEmission/cloudAbsorptionEmission.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "cloudAbsorptionEmission.H" diff --git a/src/lagrangian/intermediate/submodels/addOns/radiation/scatter/cloudScatter/cloudScatter.C b/src/lagrangian/intermediate/submodels/addOns/radiation/scatter/cloudScatter/cloudScatter.C index 6fc8c65acf..533adf4f05 100644 --- a/src/lagrangian/intermediate/submodels/addOns/radiation/scatter/cloudScatter/cloudScatter.C +++ b/src/lagrangian/intermediate/submodels/addOns/radiation/scatter/cloudScatter/cloudScatter.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "cloudScatter.H" diff --git a/src/meshTools/PointEdgeWave/PointEdgeWave.H b/src/meshTools/PointEdgeWave/PointEdgeWave.H index c7c79e96b3..ee684801a6 100644 --- a/src/meshTools/PointEdgeWave/PointEdgeWave.H +++ b/src/meshTools/PointEdgeWave/PointEdgeWave.H @@ -244,6 +244,7 @@ class PointEdgeWave //- Disallow default bitwise assignment void operator=(const PointEdgeWave&); + public: // Static Functions @@ -261,7 +262,6 @@ public: } - // Constructors //- Construct from mesh, list of changed points with the Type diff --git a/src/meshTools/PointEdgeWave/PointEdgeWaveName.C b/src/meshTools/PointEdgeWave/PointEdgeWaveName.C index 5a834dac45..8c6a37e11f 100644 --- a/src/meshTools/PointEdgeWave/PointEdgeWaveName.C +++ b/src/meshTools/PointEdgeWave/PointEdgeWaveName.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "PointEdgeWave.H" diff --git a/src/meshTools/PointEdgeWave/pointEdgePoint.C b/src/meshTools/PointEdgeWave/pointEdgePoint.C index e994774059..ad0fc3869c 100644 --- a/src/meshTools/PointEdgeWave/pointEdgePoint.C +++ b/src/meshTools/PointEdgeWave/pointEdgePoint.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "pointEdgePoint.H" @@ -32,8 +30,6 @@ Description Foam::point Foam::pointEdgePoint::greatPoint(GREAT, GREAT, GREAT); - - // * * * * * * * * * * * * * * * Friend Operators * * * * * * * * * * * * * // Foam::Ostream& Foam::operator<< @@ -45,9 +41,11 @@ Foam::Ostream& Foam::operator<< return os << wDist.origin() << wDist.distSqr(); } + Foam::Istream& Foam::operator>>(Foam::Istream& is, Foam::pointEdgePoint& wDist) { return is >> wDist.origin_ >> wDist.distSqr_; } + // ************************************************************************* // diff --git a/src/meshTools/PointEdgeWave/pointEdgePoint.H b/src/meshTools/PointEdgeWave/pointEdgePoint.H index 23a2eeb2c3..1e83edd1d9 100644 --- a/src/meshTools/PointEdgeWave/pointEdgePoint.H +++ b/src/meshTools/PointEdgeWave/pointEdgePoint.H @@ -45,7 +45,6 @@ SourceFiles #include "tensor.H" #include "pTraits.H" - // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam @@ -69,6 +68,7 @@ class pointEdgePoint //- normal distance (squared) from point to origin scalar distSqr_; + // Private Member Functions //- Evaluate distance to point. Update distSqr, origin from whomever @@ -89,6 +89,7 @@ class pointEdgePoint const scalar tol ); + public: // Static data members @@ -96,6 +97,7 @@ public: //- initial point far away. static point greatPoint; + // Constructors //- Construct null diff --git a/src/meshTools/PointEdgeWave/pointEdgePointI.H b/src/meshTools/PointEdgeWave/pointEdgePointI.H index 0e46d2b1a5..72842946e2 100644 --- a/src/meshTools/PointEdgeWave/pointEdgePointI.H +++ b/src/meshTools/PointEdgeWave/pointEdgePointI.H @@ -46,7 +46,7 @@ inline bool Foam::pointEdgePoint::update origin_ = w2.origin(); return true; - } + } scalar diff = distSqr_ - dist2; @@ -71,7 +71,7 @@ inline bool Foam::pointEdgePoint::update } } - + // Update this with w2 (information on same point) inline bool Foam::pointEdgePoint::update ( @@ -86,7 +86,7 @@ inline bool Foam::pointEdgePoint::update origin_ = w2.origin(); return true; - } + } scalar diff = distSqr_ - w2.distSqr(); @@ -111,6 +111,7 @@ inline bool Foam::pointEdgePoint::update } } + // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // // Null constructor @@ -124,7 +125,7 @@ inline Foam::pointEdgePoint::pointEdgePoint() // Construct from origin, distance inline Foam::pointEdgePoint::pointEdgePoint ( - const point& origin, + const point& origin, const scalar distSqr ) : @@ -229,14 +230,14 @@ inline bool Foam::pointEdgePoint::updatePoint const scalar tol ) { - return + return update ( mesh.points()[pointI], edgeInfo, tol ); - } +} // Update this with new information on same point @@ -255,7 +256,7 @@ inline bool Foam::pointEdgePoint::updatePoint newPointInfo, tol ); -} +} // Update this with new information on same point. No extra information. @@ -266,7 +267,7 @@ inline bool Foam::pointEdgePoint::updatePoint ) { return update(newPointInfo, tol); -} +} // Update this with information from connected point @@ -292,7 +293,7 @@ inline bool Foam::pointEdgePoint::updateEdge pointInfo, tol ); -} +} // * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * // diff --git a/src/meshTools/cellClassification/cellClassification.C b/src/meshTools/cellClassification/cellClassification.C index f54876c9c5..518fd5ae4a 100644 --- a/src/meshTools/cellClassification/cellClassification.C +++ b/src/meshTools/cellClassification/cellClassification.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "cellClassification.H" diff --git a/src/meshTools/cellClassification/cellInfo.C b/src/meshTools/cellClassification/cellInfo.C index f7828fc292..92aff0b76d 100644 --- a/src/meshTools/cellClassification/cellInfo.C +++ b/src/meshTools/cellClassification/cellInfo.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "cellInfo.H" diff --git a/src/meshTools/cellDist/cellDistFuncs.C b/src/meshTools/cellDist/cellDistFuncs.C index 8bc65470bc..d1d3a5638c 100644 --- a/src/meshTools/cellDist/cellDistFuncs.C +++ b/src/meshTools/cellDist/cellDistFuncs.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "cellDistFuncs.H" diff --git a/src/meshTools/cellDist/wallPoint/wallPoint.C b/src/meshTools/cellDist/wallPoint/wallPoint.C index b25b64ba86..168a401f30 100644 --- a/src/meshTools/cellDist/wallPoint/wallPoint.C +++ b/src/meshTools/cellDist/wallPoint/wallPoint.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "wallPoint.H" diff --git a/src/meshTools/cellDist/wallPoint/wallPointData.C b/src/meshTools/cellDist/wallPoint/wallPointData.C index 3d4f343132..7143872d8b 100644 --- a/src/meshTools/cellDist/wallPoint/wallPointData.C +++ b/src/meshTools/cellDist/wallPoint/wallPointData.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "wallPointData.H" diff --git a/src/meshTools/cellFeatures/cellFeatures.C b/src/meshTools/cellFeatures/cellFeatures.C index 8d3170dca3..d023d66eb8 100644 --- a/src/meshTools/cellFeatures/cellFeatures.C +++ b/src/meshTools/cellFeatures/cellFeatures.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "cellFeatures.H" diff --git a/src/meshTools/cellQuality/cellQuality.C b/src/meshTools/cellQuality/cellQuality.C index 57e450dfe8..b1c47e8f10 100644 --- a/src/meshTools/cellQuality/cellQuality.C +++ b/src/meshTools/cellQuality/cellQuality.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - Class calculates cell quality measures. \*---------------------------------------------------------------------------*/ diff --git a/src/meshTools/coordinateSystems/coordinateSystem.C b/src/meshTools/coordinateSystems/coordinateSystem.C index 80232ffd8d..1c2dd701e8 100644 --- a/src/meshTools/coordinateSystems/coordinateSystem.C +++ b/src/meshTools/coordinateSystems/coordinateSystem.C @@ -111,10 +111,7 @@ Foam::coordinateSystem::coordinateSystem } -Foam::coordinateSystem::coordinateSystem -( - const dictionary& dict -) +Foam::coordinateSystem::coordinateSystem(const dictionary& dict) : name_(type()), note_(), @@ -322,16 +319,17 @@ void Foam::coordinateSystem::writeDict(Ostream& os, bool subDict) const os.writeKeyword("note") << note_ << token::END_STATEMENT << nl; } - os.writeKeyword("origin") << origin_ << token::END_STATEMENT << nl; - os.writeKeyword("e1") << e1() << token::END_STATEMENT << nl; - os.writeKeyword("e3") << e3() << token::END_STATEMENT << nl; + os.writeKeyword("origin") << origin_ << token::END_STATEMENT << nl; + os.writeKeyword("e1") << e1() << token::END_STATEMENT << nl; + os.writeKeyword("e3") << e3() << token::END_STATEMENT << nl; if (subDict) { - os << decrIndent << indent << token::END_BLOCK << endl; + os << decrIndent << indent << token::END_BLOCK << endl; } } + // * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * // void Foam::coordinateSystem::operator=(const dictionary& rhs) diff --git a/src/meshTools/coordinateSystems/coordinateSystem.H b/src/meshTools/coordinateSystems/coordinateSystem.H index 5bff54e523..cfdecfd398 100644 --- a/src/meshTools/coordinateSystems/coordinateSystem.H +++ b/src/meshTools/coordinateSystems/coordinateSystem.H @@ -166,6 +166,7 @@ class coordinateSystem //- Global-to-Local transformation tensor tensor Rtr_; + protected: // Protected Member Functions @@ -194,6 +195,7 @@ protected: bool translate ) const; + public: //- Runtime type information @@ -249,6 +251,7 @@ public: return autoPtr(new coordinateSystem(*this)); } + // Declare run-time constructor selection table declareRunTimeSelectionTable @@ -276,6 +279,7 @@ public: (name, origin, cr) ); + // Selectors //- Select constructed from dictionary @@ -297,160 +301,170 @@ public: //- Select constructed from Istream static autoPtr New(Istream& is); - // Destructor - virtual ~coordinateSystem(); + //- Destructor + virtual ~coordinateSystem(); // Member Functions - // Access + // Access - //- Return name - const word& name() const - { - return name_; - } + //- Return name + const word& name() const + { + return name_; + } - //- Return non-constant access to the optional note - string& note() - { - return note_; - } + //- Return non-constant access to the optional note + string& note() + { + return note_; + } - //- Return the optional note - const string& note() const - { - return note_; - } + //- Return the optional note + const string& note() const + { + return note_; + } - //- Return origin - const point& origin() const - { - return origin_; - } + //- Return origin + const point& origin() const + { + return origin_; + } - //- Return coordinate rotation - const coordinateRotation& rotation() const - { - return R_; - } + //- Return coordinate rotation + const coordinateRotation& rotation() const + { + return R_; + } - //- Return local-to-global transformation tensor - const tensor& R() const - { - return R_; - } + //- Return local-to-global transformation tensor + const tensor& R() const + { + return R_; + } - //- Return local Cartesian x-axis - const vector& e1() const - { - return Rtr_.x(); - } + //- Return local Cartesian x-axis + const vector& e1() const + { + return Rtr_.x(); + } - //- Return local Cartesian y-axis - const vector& e2() const - { - return Rtr_.y(); - } + //- Return local Cartesian y-axis + const vector& e2() const + { + return Rtr_.y(); + } - //- Return local Cartesian z-axis - const vector& e3() const - { - return Rtr_.z(); - } + //- Return local Cartesian z-axis + const vector& e3() const + { + return Rtr_.z(); + } - //- Return axis (e3: local Cartesian z-axis) - // @deprecated method e3 is preferred - const vector& axis() const - { - return Rtr_.z(); - } + //- Return axis (e3: local Cartesian z-axis) + // @deprecated method e3 is preferred + const vector& axis() const + { + return Rtr_.z(); + } - //- Return direction (e1: local Cartesian x-axis) - // @deprecated method e1 is preferred - const vector& direction() const - { - return Rtr_.x(); - } + //- Return direction (e1: local Cartesian x-axis) + // @deprecated method e1 is preferred + const vector& direction() const + { + return Rtr_.x(); + } - //- Return as dictionary of entries - // @param [in] ignoreType drop type (cartesian, cylindrical, etc) - // when generating the dictionary - virtual dictionary dict(bool ignoreType=false) const; + //- Return as dictionary of entries + // @param [in] ignoreType drop type (cartesian, cylindrical, etc) + // when generating the dictionary + virtual dictionary dict(bool ignoreType=false) const; - // Edit + // Edit - //- Rename - virtual void rename(const word& newName) - { - name_ = newName; - } + //- Rename + virtual void rename(const word& newName) + { + name_ = newName; + } - //- Edit access to origin - point& origin() - { - return origin_; - } + //- Edit access to origin + point& origin() + { + return origin_; + } - // Write - //- Write - virtual void write(Ostream&) const; + // Write - //- Write dictionary - virtual void writeDict(Ostream&, bool subDict=true) const; + //- Write + virtual void write(Ostream&) const; - // Transformations + //- Write dictionary + virtual void writeDict(Ostream&, bool subDict=true) const; - //- Convert from position in local coordinate system to global Cartesian position - point globalPosition(const point& local) const - { - return localToGlobal(local, true); - } - //- Convert from position in local coordinate system to global Cartesian position - tmp globalPosition(const pointField& local) const - { - return localToGlobal(local, true); - } + // Transformations - //- Convert from vector components in local coordinate system to global Cartesian vector - vector globalVector(const vector& local) const - { - return localToGlobal(local, false); - } + //- Convert from position in local coordinate system to global + // Cartesian position + point globalPosition(const point& local) const + { + return localToGlobal(local, true); + } - //- Convert from vector components in local coordinate system to global Cartesian vector - tmp globalVector(const vectorField& local) const - { - return localToGlobal(local, false); - } + //- Convert from position in local coordinate system to global + // Cartesian position + tmp globalPosition(const pointField& local) const + { + return localToGlobal(local, true); + } - //- Convert from global Cartesian position to position in local coordinate system - point localPosition(const point& global) const - { - return globalToLocal(global, true); - } + //- Convert from vector components in local coordinate system to + // global Cartesian vector + vector globalVector(const vector& local) const + { + return localToGlobal(local, false); + } - //- Convert from global Cartesian position to position in local coordinate system - tmp localPosition(const pointField& global) const - { - return globalToLocal(global, true); - } + //- Convert from vector components in local coordinate system to + // global Cartesian vector + tmp globalVector(const vectorField& local) const + { + return localToGlobal(local, false); + } - //- Convert from global Cartesian vector to components in local coordinate system - vector localVector(const vector& global) const - { - return globalToLocal(global, false); - } + //- Convert from global Cartesian position to position in local + // coordinate system + point localPosition(const point& global) const + { + return globalToLocal(global, true); + } - //- Convert from global Cartesian vector to components in local coordinate system - tmp localVector(const vectorField& global) const - { - return globalToLocal(global, false); - } + //- Convert from global Cartesian position to position in local + // coordinate system + tmp localPosition(const pointField& global) const + { + return globalToLocal(global, true); + } + + //- Convert from global Cartesian vector to components in local + // coordinate system + vector localVector(const vector& global) const + { + return globalToLocal(global, false); + } + + //- Convert from global Cartesian vector to components in local + // coordinate system + tmp localVector(const vectorField& global) const + { + return globalToLocal(global, false); + } // Member Operators @@ -467,6 +481,7 @@ public: const coordinateSystem& ); + // IOstream Operators friend Ostream& operator<<(Ostream&, const coordinateSystem&); diff --git a/src/meshTools/coordinateSystems/coordinateSystemNew.C b/src/meshTools/coordinateSystems/coordinateSystemNew.C index 0c0752eded..25039ce0e1 100644 --- a/src/meshTools/coordinateSystems/coordinateSystemNew.C +++ b/src/meshTools/coordinateSystems/coordinateSystemNew.C @@ -121,4 +121,5 @@ Foam::autoPtr Foam::coordinateSystem::New return New(name, dict); } + // ************************************************************************* // diff --git a/src/meshTools/coordinateSystems/coordinateSystems.H b/src/meshTools/coordinateSystems/coordinateSystems.H index f9fdc012e0..cc1554768e 100644 --- a/src/meshTools/coordinateSystems/coordinateSystems.H +++ b/src/meshTools/coordinateSystems/coordinateSystems.H @@ -64,6 +64,7 @@ class coordinateSystems //- Disallow default bitwise assignment void operator=(const coordinateSystems&); + public: //- Runtime type information @@ -88,11 +89,13 @@ public: const Xfer >& ); + // Selectors //- Return previously registered or read construct from "constant" static const coordinateSystems& New(const objectRegistry&); + // Member Functions //- Find and return index for a given keyword, returns -1 if not found diff --git a/src/meshTools/coordinateSystems/cylindricalCS.H b/src/meshTools/coordinateSystems/cylindricalCS.H index e41f263a7e..0aa8da5746 100644 --- a/src/meshTools/coordinateSystems/cylindricalCS.H +++ b/src/meshTools/coordinateSystems/cylindricalCS.H @@ -86,6 +86,7 @@ protected: bool translate ) const; + public: //- Runtime type information @@ -142,7 +143,6 @@ public: //- Non-const access to inDegrees bool& inDegrees(); - }; diff --git a/src/meshTools/coordinateSystems/parabolicCylindricalCS.C b/src/meshTools/coordinateSystems/parabolicCylindricalCS.C index f2e83108ac..f80b75a724 100644 --- a/src/meshTools/coordinateSystems/parabolicCylindricalCS.C +++ b/src/meshTools/coordinateSystems/parabolicCylindricalCS.C @@ -159,6 +159,7 @@ Foam::vector Foam::parabolicCylindricalCS::globalToLocal return vector::zero; } + Foam::tmp Foam::parabolicCylindricalCS::globalToLocal ( const vectorField& global, diff --git a/src/meshTools/coordinateSystems/parabolicCylindricalCS.H b/src/meshTools/coordinateSystems/parabolicCylindricalCS.H index d5fb5ccec3..5b389f070e 100644 --- a/src/meshTools/coordinateSystems/parabolicCylindricalCS.H +++ b/src/meshTools/coordinateSystems/parabolicCylindricalCS.H @@ -85,6 +85,7 @@ protected: bool translate ) const; + public: //- Runtime type information @@ -106,7 +107,6 @@ public: //- Construct from dictionary parabolicCylindricalCS(const word&, const dictionary&); - }; diff --git a/src/meshTools/coordinateSystems/sphericalCS.H b/src/meshTools/coordinateSystems/sphericalCS.H index 31d32bc9e4..d211ec798e 100644 --- a/src/meshTools/coordinateSystems/sphericalCS.H +++ b/src/meshTools/coordinateSystems/sphericalCS.H @@ -85,6 +85,7 @@ protected: bool translate ) const; + public: //- Runtime type information @@ -141,7 +142,6 @@ public: //- Non-const access to inDegrees bool& inDegrees(); - }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // diff --git a/src/meshTools/coordinateSystems/toroidalCS.C b/src/meshTools/coordinateSystems/toroidalCS.C index f098a0d18f..189e0e4979 100644 --- a/src/meshTools/coordinateSystems/toroidalCS.C +++ b/src/meshTools/coordinateSystems/toroidalCS.C @@ -158,8 +158,8 @@ void Foam::toroidalCS::writeDict(Ostream& os, bool subDict) const { if (subDict) { - os << indent << name() << nl - << indent << token::BEGIN_BLOCK << incrIndent << nl; + os << indent << name() << nl + << indent << token::BEGIN_BLOCK << incrIndent << nl; } coordinateSystem::writeDict(os, false); @@ -167,8 +167,9 @@ void Foam::toroidalCS::writeDict(Ostream& os, bool subDict) const if (subDict) { - os << decrIndent << indent << token::END_BLOCK << endl; + os << decrIndent << indent << token::END_BLOCK << endl; } } + // ************************************************************************* // diff --git a/src/meshTools/coordinateSystems/toroidalCS.H b/src/meshTools/coordinateSystems/toroidalCS.H index c04498dda8..7631bd6fee 100644 --- a/src/meshTools/coordinateSystems/toroidalCS.H +++ b/src/meshTools/coordinateSystems/toroidalCS.H @@ -46,7 +46,6 @@ SourceFiles namespace Foam { - /*---------------------------------------------------------------------------*\ Class toroidalCS Declaration \*---------------------------------------------------------------------------*/ @@ -86,6 +85,7 @@ class toroidalCS bool translate ) const; + public: //- Runtime type information @@ -103,7 +103,6 @@ public: const scalar radius ); - //- Construct from dictionary toroidalCS(const word& name, const dictionary&); diff --git a/src/meshTools/indexedOctree/indexedOctreeName.C b/src/meshTools/indexedOctree/indexedOctreeName.C index bc98c21926..e658d328af 100644 --- a/src/meshTools/indexedOctree/indexedOctreeName.C +++ b/src/meshTools/indexedOctree/indexedOctreeName.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "indexedOctree.H" diff --git a/src/meshTools/indexedOctree/treeDataPoint.C b/src/meshTools/indexedOctree/treeDataPoint.C index 5303156518..1115ff13f9 100644 --- a/src/meshTools/indexedOctree/treeDataPoint.C +++ b/src/meshTools/indexedOctree/treeDataPoint.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "treeDataPoint.H" diff --git a/src/meshTools/octree/octree.C b/src/meshTools/octree/octree.C index fa180fd9c1..fe841e93f1 100644 --- a/src/meshTools/octree/octree.C +++ b/src/meshTools/octree/octree.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "octree.H" diff --git a/src/meshTools/octree/octreeDataCell.C b/src/meshTools/octree/octreeDataCell.C index df9bd9ef12..2a3882f16e 100644 --- a/src/meshTools/octree/octreeDataCell.C +++ b/src/meshTools/octree/octreeDataCell.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "octreeDataCell.H" diff --git a/src/meshTools/octree/octreeDataPointTreeLeaf.C b/src/meshTools/octree/octreeDataPointTreeLeaf.C index 2e5cafc9b7..844bf498a8 100644 --- a/src/meshTools/octree/octreeDataPointTreeLeaf.C +++ b/src/meshTools/octree/octreeDataPointTreeLeaf.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ //#include "octreeDataPointTreeLeaf.H" diff --git a/src/meshTools/octree/octreeName.C b/src/meshTools/octree/octreeName.C index 59b9f85f30..e09b142766 100644 --- a/src/meshTools/octree/octreeName.C +++ b/src/meshTools/octree/octreeName.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "octree.H" diff --git a/src/meshTools/octree/pointIndexHitIOList.C b/src/meshTools/octree/pointIndexHitIOList.C index 79976abdcf..844f3b5eac 100644 --- a/src/meshTools/octree/pointIndexHitIOList.C +++ b/src/meshTools/octree/pointIndexHitIOList.C @@ -22,9 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - IOList of pointIndexHits - \*---------------------------------------------------------------------------*/ #include "pointIndexHitIOList.H" diff --git a/src/meshTools/octree/treeLeaf.C b/src/meshTools/octree/treeLeaf.C index 3cff3dfd60..555edaa2b0 100644 --- a/src/meshTools/octree/treeLeaf.C +++ b/src/meshTools/octree/treeLeaf.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "treeLeaf.H" diff --git a/src/meshTools/octree/treeLeafName.C b/src/meshTools/octree/treeLeafName.C index 414a2eb3a4..af0447bb23 100644 --- a/src/meshTools/octree/treeLeafName.C +++ b/src/meshTools/octree/treeLeafName.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "treeLeaf.H" diff --git a/src/meshTools/octree/treeNode.C b/src/meshTools/octree/treeNode.C index 3e503f13a0..e8e5ece609 100644 --- a/src/meshTools/octree/treeNode.C +++ b/src/meshTools/octree/treeNode.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "treeNode.H" diff --git a/src/meshTools/octree/treeNodeName.C b/src/meshTools/octree/treeNodeName.C index 002c8d3063..3bd8cb58a0 100644 --- a/src/meshTools/octree/treeNodeName.C +++ b/src/meshTools/octree/treeNodeName.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "treeNode.H" diff --git a/src/meshTools/sets/cellSources/boxToCell/boxToCell.C b/src/meshTools/sets/cellSources/boxToCell/boxToCell.C index c53a881e82..5b454c41d2 100644 --- a/src/meshTools/sets/cellSources/boxToCell/boxToCell.C +++ b/src/meshTools/sets/cellSources/boxToCell/boxToCell.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "boxToCell.H" diff --git a/src/meshTools/sets/cellSources/cellToCell/cellToCell.C b/src/meshTools/sets/cellSources/cellToCell/cellToCell.C index 760d3541bc..222d14965f 100644 --- a/src/meshTools/sets/cellSources/cellToCell/cellToCell.C +++ b/src/meshTools/sets/cellSources/cellToCell/cellToCell.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "cellToCell.H" diff --git a/src/meshTools/sets/cellSources/faceToCell/faceToCell.C b/src/meshTools/sets/cellSources/faceToCell/faceToCell.C index 270e58f300..233a4cfd96 100644 --- a/src/meshTools/sets/cellSources/faceToCell/faceToCell.C +++ b/src/meshTools/sets/cellSources/faceToCell/faceToCell.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "faceToCell.H" diff --git a/src/meshTools/sets/cellSources/fieldToCell/fieldToCell.C b/src/meshTools/sets/cellSources/fieldToCell/fieldToCell.C index 1111a9f62b..aad4d776dc 100644 --- a/src/meshTools/sets/cellSources/fieldToCell/fieldToCell.C +++ b/src/meshTools/sets/cellSources/fieldToCell/fieldToCell.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "fieldToCell.H" diff --git a/src/meshTools/sets/cellSources/nearestToCell/nearestToCell.C b/src/meshTools/sets/cellSources/nearestToCell/nearestToCell.C index 66e6734028..8ed5cc4684 100644 --- a/src/meshTools/sets/cellSources/nearestToCell/nearestToCell.C +++ b/src/meshTools/sets/cellSources/nearestToCell/nearestToCell.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "nearestToCell.H" diff --git a/src/meshTools/sets/cellSources/pointToCell/pointToCell.C b/src/meshTools/sets/cellSources/pointToCell/pointToCell.C index c05e527a33..323809ab5b 100644 --- a/src/meshTools/sets/cellSources/pointToCell/pointToCell.C +++ b/src/meshTools/sets/cellSources/pointToCell/pointToCell.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "pointToCell.H" diff --git a/src/meshTools/sets/cellSources/rotatedBoxToCell/rotatedBoxToCell.C b/src/meshTools/sets/cellSources/rotatedBoxToCell/rotatedBoxToCell.C index 4a63a4d213..0f0421ef81 100644 --- a/src/meshTools/sets/cellSources/rotatedBoxToCell/rotatedBoxToCell.C +++ b/src/meshTools/sets/cellSources/rotatedBoxToCell/rotatedBoxToCell.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "rotatedBoxToCell.H" diff --git a/src/meshTools/sets/cellSources/shapeToCell/shapeToCell.C b/src/meshTools/sets/cellSources/shapeToCell/shapeToCell.C index d5ca0772ae..c8f23570d4 100644 --- a/src/meshTools/sets/cellSources/shapeToCell/shapeToCell.C +++ b/src/meshTools/sets/cellSources/shapeToCell/shapeToCell.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "shapeToCell.H" diff --git a/src/meshTools/sets/cellSources/surfaceToCell/surfaceToCell.C b/src/meshTools/sets/cellSources/surfaceToCell/surfaceToCell.C index 97352fe606..eec8051b2f 100644 --- a/src/meshTools/sets/cellSources/surfaceToCell/surfaceToCell.C +++ b/src/meshTools/sets/cellSources/surfaceToCell/surfaceToCell.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "surfaceToCell.H" diff --git a/src/meshTools/sets/faceSources/boundaryToFace/boundaryToFace.C b/src/meshTools/sets/faceSources/boundaryToFace/boundaryToFace.C index aaf7ebee0c..185b3eca2e 100644 --- a/src/meshTools/sets/faceSources/boundaryToFace/boundaryToFace.C +++ b/src/meshTools/sets/faceSources/boundaryToFace/boundaryToFace.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "boundaryToFace.H" diff --git a/src/meshTools/sets/faceSources/boxToFace/boxToFace.C b/src/meshTools/sets/faceSources/boxToFace/boxToFace.C index ba30ce0266..e0683883ab 100644 --- a/src/meshTools/sets/faceSources/boxToFace/boxToFace.C +++ b/src/meshTools/sets/faceSources/boxToFace/boxToFace.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "boxToFace.H" diff --git a/src/meshTools/sets/faceSources/faceToFace/faceToFace.C b/src/meshTools/sets/faceSources/faceToFace/faceToFace.C index 7e031664ad..69ee32b780 100644 --- a/src/meshTools/sets/faceSources/faceToFace/faceToFace.C +++ b/src/meshTools/sets/faceSources/faceToFace/faceToFace.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "faceToFace.H" diff --git a/src/meshTools/sets/faceSources/labelToFace/labelToFace.C b/src/meshTools/sets/faceSources/labelToFace/labelToFace.C index d9d922bcf4..c2c378a513 100644 --- a/src/meshTools/sets/faceSources/labelToFace/labelToFace.C +++ b/src/meshTools/sets/faceSources/labelToFace/labelToFace.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "labelToFace.H" diff --git a/src/meshTools/sets/faceSources/normalToFace/normalToFace.C b/src/meshTools/sets/faceSources/normalToFace/normalToFace.C index f0c0925cd7..a310082f8a 100644 --- a/src/meshTools/sets/faceSources/normalToFace/normalToFace.C +++ b/src/meshTools/sets/faceSources/normalToFace/normalToFace.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "normalToFace.H" diff --git a/src/meshTools/sets/faceSources/patchToFace/patchToFace.C b/src/meshTools/sets/faceSources/patchToFace/patchToFace.C index 000db639a9..0d76a37e4b 100644 --- a/src/meshTools/sets/faceSources/patchToFace/patchToFace.C +++ b/src/meshTools/sets/faceSources/patchToFace/patchToFace.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "patchToFace.H" diff --git a/src/meshTools/sets/faceSources/pointToFace/pointToFace.C b/src/meshTools/sets/faceSources/pointToFace/pointToFace.C index 6b063bab29..80f7be2838 100644 --- a/src/meshTools/sets/faceSources/pointToFace/pointToFace.C +++ b/src/meshTools/sets/faceSources/pointToFace/pointToFace.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "pointToFace.H" diff --git a/src/meshTools/sets/pointSources/boxToPoint/boxToPoint.C b/src/meshTools/sets/pointSources/boxToPoint/boxToPoint.C index 7f68dcfafc..357bf44d29 100644 --- a/src/meshTools/sets/pointSources/boxToPoint/boxToPoint.C +++ b/src/meshTools/sets/pointSources/boxToPoint/boxToPoint.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "boxToPoint.H" diff --git a/src/meshTools/sets/pointSources/cellToPoint/cellToPoint.C b/src/meshTools/sets/pointSources/cellToPoint/cellToPoint.C index 4b83fcae80..1753f84848 100644 --- a/src/meshTools/sets/pointSources/cellToPoint/cellToPoint.C +++ b/src/meshTools/sets/pointSources/cellToPoint/cellToPoint.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "cellToPoint.H" diff --git a/src/meshTools/sets/pointSources/faceToPoint/faceToPoint.C b/src/meshTools/sets/pointSources/faceToPoint/faceToPoint.C index 1ae3fb1f66..242d3bd566 100644 --- a/src/meshTools/sets/pointSources/faceToPoint/faceToPoint.C +++ b/src/meshTools/sets/pointSources/faceToPoint/faceToPoint.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "faceToPoint.H" diff --git a/src/meshTools/sets/pointSources/labelToPoint/labelToPoint.C b/src/meshTools/sets/pointSources/labelToPoint/labelToPoint.C index a80ca084d6..48710a9de8 100644 --- a/src/meshTools/sets/pointSources/labelToPoint/labelToPoint.C +++ b/src/meshTools/sets/pointSources/labelToPoint/labelToPoint.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "labelToPoint.H" diff --git a/src/meshTools/sets/pointSources/pointToPoint/pointToPoint.C b/src/meshTools/sets/pointSources/pointToPoint/pointToPoint.C index 6ae1220845..bc28d066f4 100644 --- a/src/meshTools/sets/pointSources/pointToPoint/pointToPoint.C +++ b/src/meshTools/sets/pointSources/pointToPoint/pointToPoint.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "pointToPoint.H" diff --git a/src/meshTools/sets/pointSources/surfaceToPoint/surfaceToPoint.C b/src/meshTools/sets/pointSources/surfaceToPoint/surfaceToPoint.C index 25601a2134..8bb787f3af 100644 --- a/src/meshTools/sets/pointSources/surfaceToPoint/surfaceToPoint.C +++ b/src/meshTools/sets/pointSources/surfaceToPoint/surfaceToPoint.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "surfaceToPoint.H" diff --git a/src/meshTools/sets/topoSetSource/topoSetSource.C b/src/meshTools/sets/topoSetSource/topoSetSource.C index 63aff6fc83..7579ffffad 100644 --- a/src/meshTools/sets/topoSetSource/topoSetSource.C +++ b/src/meshTools/sets/topoSetSource/topoSetSource.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "topoSetSource.H" diff --git a/src/meshTools/surfaceSets/surfaceSets.C b/src/meshTools/surfaceSets/surfaceSets.C index eb82bd44ff..93a8cb1ce5 100644 --- a/src/meshTools/surfaceSets/surfaceSets.C +++ b/src/meshTools/surfaceSets/surfaceSets.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "surfaceSets.H" diff --git a/src/meshTools/triSurface/booleanOps/booleanSurface/booleanSurface.C b/src/meshTools/triSurface/booleanOps/booleanSurface/booleanSurface.C index 3e007c880e..fdccecf617 100644 --- a/src/meshTools/triSurface/booleanOps/booleanSurface/booleanSurface.C +++ b/src/meshTools/triSurface/booleanOps/booleanSurface/booleanSurface.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "booleanSurface.H" @@ -1098,7 +1096,4 @@ Foam::booleanSurface::booleanSurface } -// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // - - // ************************************************************************* // diff --git a/src/meshTools/triSurface/booleanOps/booleanSurface/booleanSurface.H b/src/meshTools/triSurface/booleanOps/booleanSurface/booleanSurface.H index f1ce39aa6e..8c28eb36a3 100644 --- a/src/meshTools/triSurface/booleanOps/booleanSurface/booleanSurface.H +++ b/src/meshTools/triSurface/booleanOps/booleanSurface/booleanSurface.H @@ -82,6 +82,7 @@ class booleanSurface INSIDE }; + // Private data //- From new to old face + surface: @@ -90,6 +91,7 @@ class booleanSurface // face2 (e.g. face2I = -faceMap[]-1) labelList faceMap_; + // Private Member Functions //- Check whether subset of faces (from markZones) reaches up to @@ -151,6 +153,7 @@ class booleanSurface labelList& side ); + public: ClassName("booleanSurface"); @@ -175,7 +178,7 @@ public: booleanSurface(); //- Construct from surfaces and face labels to keep. - // Walks from provided seed faces without crossing intersection line + // Walks from provided seed faces without crossing intersection line // to determine faces to keep. booleanSurface ( @@ -233,8 +236,6 @@ public: } return -faceMap_[faceI]-1; } - - }; diff --git a/src/meshTools/triSurface/booleanOps/intersectedSurface/edgeSurface.C b/src/meshTools/triSurface/booleanOps/intersectedSurface/edgeSurface.C index 8d73f64d51..5caa377e05 100644 --- a/src/meshTools/triSurface/booleanOps/intersectedSurface/edgeSurface.C +++ b/src/meshTools/triSurface/booleanOps/intersectedSurface/edgeSurface.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "edgeSurface.H" diff --git a/src/meshTools/triSurface/booleanOps/intersectedSurface/edgeSurface.H b/src/meshTools/triSurface/booleanOps/intersectedSurface/edgeSurface.H index 73fe36815b..c1e8fd0491 100644 --- a/src/meshTools/triSurface/booleanOps/intersectedSurface/edgeSurface.H +++ b/src/meshTools/triSurface/booleanOps/intersectedSurface/edgeSurface.H @@ -117,7 +117,6 @@ private: void calcPointEdges(); - public: ClassName("edgeSurface"); diff --git a/src/meshTools/triSurface/booleanOps/intersectedSurface/intersectedSurface.C b/src/meshTools/triSurface/booleanOps/intersectedSurface/intersectedSurface.C index 9450865081..be758c07fd 100644 --- a/src/meshTools/triSurface/booleanOps/intersectedSurface/intersectedSurface.C +++ b/src/meshTools/triSurface/booleanOps/intersectedSurface/intersectedSurface.C @@ -205,7 +205,6 @@ void Foam::intersectedSurface::printVisit } - // Check if the two vertices that f0 and f1 share are in the same order on // both faces. bool Foam::intersectedSurface::sameEdgeOrder diff --git a/src/meshTools/triSurface/booleanOps/surfaceIntersection/edgeIntersections.C b/src/meshTools/triSurface/booleanOps/surfaceIntersection/edgeIntersections.C index f3ee58ed0b..7ff2327196 100644 --- a/src/meshTools/triSurface/booleanOps/surfaceIntersection/edgeIntersections.C +++ b/src/meshTools/triSurface/booleanOps/surfaceIntersection/edgeIntersections.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "edgeIntersections.H" @@ -46,7 +44,7 @@ Description defineTypeNameAndDebug(Foam::edgeIntersections, 0); Foam::scalar Foam::edgeIntersections::alignedCos_ = - Foam::cos(89.0 * Foam::mathematicalConstant::pi/180.0); + Foam::cos(89.0*Foam::mathematicalConstant::pi/180.0); // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // @@ -721,13 +719,4 @@ Foam::label Foam::edgeIntersections::removeDegenerates } -// * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * // - - -// * * * * * * * * * * * * * * * Friend Functions * * * * * * * * * * * * * // - - -// * * * * * * * * * * * * * * * Friend Operators * * * * * * * * * * * * * // - - // ************************************************************************* // diff --git a/src/meshTools/triSurface/booleanOps/surfaceIntersection/edgeIntersections.H b/src/meshTools/triSurface/booleanOps/surfaceIntersection/edgeIntersections.H index e1ca17c441..45c54995cc 100644 --- a/src/meshTools/triSurface/booleanOps/surfaceIntersection/edgeIntersections.H +++ b/src/meshTools/triSurface/booleanOps/surfaceIntersection/edgeIntersections.H @@ -131,6 +131,7 @@ class edgeIntersections boolList& affectedEdges ) const; + public: ClassName("edgeIntersections"); diff --git a/src/meshTools/triSurface/booleanOps/surfaceIntersection/surfaceIntersection.C b/src/meshTools/triSurface/booleanOps/surfaceIntersection/surfaceIntersection.C index 38ee335d33..33940989b8 100644 --- a/src/meshTools/triSurface/booleanOps/surfaceIntersection/surfaceIntersection.C +++ b/src/meshTools/triSurface/booleanOps/surfaceIntersection/surfaceIntersection.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "surfaceIntersection.H" @@ -201,7 +199,6 @@ bool Foam::surfaceIntersection::excludeEdgeHit //} - void Foam::surfaceIntersection::storeIntersection ( const bool isFirstSurf, diff --git a/src/meshTools/triSurface/booleanOps/surfaceIntersection/surfaceIntersection.H b/src/meshTools/triSurface/booleanOps/surfaceIntersection/surfaceIntersection.H index 3f23e9e370..2b4304c694 100644 --- a/src/meshTools/triSurface/booleanOps/surfaceIntersection/surfaceIntersection.H +++ b/src/meshTools/triSurface/booleanOps/surfaceIntersection/surfaceIntersection.H @@ -76,7 +76,7 @@ class triSurface; class edgeIntersections; /*---------------------------------------------------------------------------*\ - Class surfaceIntersection Declaration + Class surfaceIntersection Declaration \*---------------------------------------------------------------------------*/ class surfaceIntersection @@ -171,7 +171,7 @@ class surfaceIntersection // const point& eStart, // const point& eEnd //); - + //- Debugging: Dump intersected edges to stream void writeIntersectedEdges @@ -233,6 +233,7 @@ class surfaceIntersection List >& surfEdgeCuts ); + public: ClassName("surfaceIntersection"); @@ -284,7 +285,6 @@ public: const labelListList& surf1EdgeCuts() const; const labelListList& surf2EdgeCuts() const; - }; diff --git a/src/meshTools/triSurface/booleanOps/surfaceIntersection/surfaceIntersectionFuncs.C b/src/meshTools/triSurface/booleanOps/surfaceIntersection/surfaceIntersectionFuncs.C index 711ede3cd2..b2a5eec086 100644 --- a/src/meshTools/triSurface/booleanOps/surfaceIntersection/surfaceIntersectionFuncs.C +++ b/src/meshTools/triSurface/booleanOps/surfaceIntersection/surfaceIntersectionFuncs.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "surfaceIntersection.H" @@ -37,9 +35,6 @@ Description #include "octree.H" #include "meshTools.H" -// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // - - // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // void Foam::surfaceIntersection::writeOBJ(const point& pt, Ostream& os) diff --git a/src/meshTools/triSurface/booleanOps/surfaceIntersection/surfaceIntersectionTemplates.C b/src/meshTools/triSurface/booleanOps/surfaceIntersection/surfaceIntersectionTemplates.C index aeec3a8daf..03aac83298 100644 --- a/src/meshTools/triSurface/booleanOps/surfaceIntersection/surfaceIntersectionTemplates.C +++ b/src/meshTools/triSurface/booleanOps/surfaceIntersection/surfaceIntersectionTemplates.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "surfaceIntersection.H" diff --git a/src/meshTools/triSurface/octreeData/octreeDataTriSurface.C b/src/meshTools/triSurface/octreeData/octreeDataTriSurface.C index ef1cbbae6e..a2d826cb4b 100644 --- a/src/meshTools/triSurface/octreeData/octreeDataTriSurface.C +++ b/src/meshTools/triSurface/octreeData/octreeDataTriSurface.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "octreeDataTriSurface.H" diff --git a/src/meshTools/triSurface/octreeData/octreeDataTriSurfaceTreeLeaf.C b/src/meshTools/triSurface/octreeData/octreeDataTriSurfaceTreeLeaf.C index e555cb2487..9582d6118d 100644 --- a/src/meshTools/triSurface/octreeData/octreeDataTriSurfaceTreeLeaf.C +++ b/src/meshTools/triSurface/octreeData/octreeDataTriSurfaceTreeLeaf.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "octreeDataTriSurfaceTreeLeaf.H" diff --git a/src/meshTools/triSurface/orientedSurface/orientedSurface.C b/src/meshTools/triSurface/orientedSurface/orientedSurface.C index f4c165d83f..34a2307447 100644 --- a/src/meshTools/triSurface/orientedSurface/orientedSurface.C +++ b/src/meshTools/triSurface/orientedSurface/orientedSurface.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "orientedSurface.H" diff --git a/src/meshTools/triSurface/surfaceFeatures/surfaceFeatures.C b/src/meshTools/triSurface/surfaceFeatures/surfaceFeatures.C index 0e08c13c27..af3be4840a 100644 --- a/src/meshTools/triSurface/surfaceFeatures/surfaceFeatures.C +++ b/src/meshTools/triSurface/surfaceFeatures/surfaceFeatures.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "surfaceFeatures.H" @@ -1097,8 +1095,8 @@ Foam::Map Foam::surfaceFeatures::nearestEdges // Step to next sample point using local distance. // Truncate to max 1/minSampleDist samples per feature edge. -// s += max(minSampleDist*eMag, sampleDist[e.start()]); -s += 0.01*eMag; + // s += max(minSampleDist*eMag, sampleDist[e.start()]); + s += 0.01*eMag; if (s >= (1-minSampleDist)*eMag) { diff --git a/src/meshTools/triSurface/surfaceLocation/surfaceLocation.C b/src/meshTools/triSurface/surfaceLocation/surfaceLocation.C index e3d6758cff..3df84cb551 100644 --- a/src/meshTools/triSurface/surfaceLocation/surfaceLocation.C +++ b/src/meshTools/triSurface/surfaceLocation/surfaceLocation.C @@ -27,15 +27,6 @@ License #include "surfaceLocation.H" #include "triSurface.H" -// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // - - -// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // - - -// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // - - // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // Foam::vector Foam::surfaceLocation::normal(const triSurface& s) const @@ -72,12 +63,6 @@ Foam::vector Foam::surfaceLocation::normal(const triSurface& s) const } -// * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * // - - -// * * * * * * * * * * * * * * * Friend Functions * * * * * * * * * * * * * // - - // * * * * * * * * * * * * * * * Friend Operators * * * * * * * * * * * * * // void Foam::surfaceLocation::write(Ostream& os, const triSurface& s) const diff --git a/src/meshTools/triSurface/triSurfaceTools/triSurfaceTools.C b/src/meshTools/triSurface/triSurfaceTools/triSurfaceTools.C index b89afdab63..b406fb0467 100644 --- a/src/meshTools/triSurface/triSurfaceTools/triSurfaceTools.C +++ b/src/meshTools/triSurface/triSurfaceTools/triSurfaceTools.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "triSurfaceTools.H" @@ -158,7 +156,7 @@ void Foam::triSurfaceTools::greenRefine } -// Refine all triangles marked for refinement. +// Refine all triangles marked for refinement. Foam::triSurface Foam::triSurfaceTools::doRefine ( const triSurface& surf, @@ -358,7 +356,7 @@ void Foam::triSurfaceTools::protectNeighbours forAll(myFaces, myFaceI) { label faceI = myFaces[myFaceI]; - + if ((faceStatus[faceI] == ANYEDGE) || (faceStatus[faceI] >= 0)) { faceStatus[faceI] = NOEDGE; @@ -392,10 +390,10 @@ Foam::labelHashSet Foam::triSurfaceTools::getCollapsedFaces { facesToBeCollapsed.insert(myFaces[myFaceI]); } - + // From faces using v1 check if they share an edge with faces // using v2. - // - share edge: are part of 'splay' tree and will collapse if edge + // - share edge: are part of 'splay' tree and will collapse if edge // collapses const labelList& v1Faces = surf.pointFaces()[v1]; @@ -795,7 +793,7 @@ bool Foam::triSurfaceTools::collapseCreatesFold // // // Now neighbours contains first layer of triangles outside of // // collapseFaces -// // There should be +// // There should be // // -two if edgeI is a boundary edge // // since the outside 'edge' of collapseFaces should // // form a triangle and the face connected to edgeI is not inserted. @@ -816,7 +814,7 @@ bool Foam::triSurfaceTools::collapseCreatesFold // for (label j = i+1; j < neighbourList.size(); i++) // { // const labelList& faceJEdges = surf.faceEdges()[neighbourList[j]]; -// +// // // Check if faceI and faceJ share an edge // forAll(faceIEdges, fI) // { @@ -1194,7 +1192,7 @@ Foam::surfaceLocation Foam::triSurfaceTools::visitFaces nearest.setHit(); nearest.triangle() = triI; break; - } + } else { // Which edge is cut. @@ -1913,7 +1911,7 @@ Foam::triSurface Foam::triSurfaceTools::greenRefine // Storage for new faces DynamicList newFaces(0); - + pointField newPoints(surf.localPoints()); newPoints.setSize(surf.nPoints() + surf.nEdges()); label newPointI = surf.nPoints(); @@ -2635,7 +2633,7 @@ Foam::triSurface Foam::triSurfaceTools::delaunay2D(const List& pts) // // ~~~~~~~~~~~~~~~ // // label vertI = 0; -// for +// for // ( // Vertex_iterator it = T.vertices_begin(); // it != T.vertices_end(); @@ -2849,7 +2847,7 @@ Foam::surfaceLocation Foam::triSurfaceTools::classify // Nearest point could be on point or edge. Retest. label index, elemType; - //bool inside = + //bool inside = triPointRef(s[triI].tri(s.points())).classify ( trianglePoint, @@ -2865,7 +2863,7 @@ Foam::surfaceLocation Foam::triSurfaceTools::classify nearest.setHit(); nearest.setIndex(triI); nearest.elementType() = triPointRef::NONE; - } + } else if (elemType == triPointRef::EDGE) { nearest.setMiss(); diff --git a/src/meshTools/twoDPointCorrector/twoDPointCorrector.C b/src/meshTools/twoDPointCorrector/twoDPointCorrector.C index c5c0e3d4da..f98585b5de 100644 --- a/src/meshTools/twoDPointCorrector/twoDPointCorrector.C +++ b/src/meshTools/twoDPointCorrector/twoDPointCorrector.C @@ -22,11 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - Class applies a two-dimensional correction to mesh motion point field. - The correction guarantees that the mesh does not get twisted during motion - and thus introduce a third dimension into a 2-D problem. - \*---------------------------------------------------------------------------*/ #include "twoDPointCorrector.H" diff --git a/src/thermophysicalModels/basic/rhoThermo/basicRhoThermo/newBasicRhoThermo.C b/src/thermophysicalModels/basic/rhoThermo/basicRhoThermo/newBasicRhoThermo.C index 46eeed365c..ad6d28ea23 100644 --- a/src/thermophysicalModels/basic/rhoThermo/basicRhoThermo/newBasicRhoThermo.C +++ b/src/thermophysicalModels/basic/rhoThermo/basicRhoThermo/newBasicRhoThermo.C @@ -22,9 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - Selection function for 'basic' density-based thermodynamics - \*---------------------------------------------------------------------------*/ #include "basicRhoThermo.H" diff --git a/src/thermophysicalModels/liquidMixture/liquidMixture/liquidMixtureIO.C b/src/thermophysicalModels/liquidMixture/liquidMixture/liquidMixtureIO.C index cd7c7ab616..9677a4bfc7 100644 --- a/src/thermophysicalModels/liquidMixture/liquidMixture/liquidMixtureIO.C +++ b/src/thermophysicalModels/liquidMixture/liquidMixture/liquidMixtureIO.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "liquidMixture.H" diff --git a/src/thermophysicalModels/liquids/CH4N2O/CH4N2O.C b/src/thermophysicalModels/liquids/CH4N2O/CH4N2O.C index d1b0ac2610..6ceae42bcd 100644 --- a/src/thermophysicalModels/liquids/CH4N2O/CH4N2O.C +++ b/src/thermophysicalModels/liquids/CH4N2O/CH4N2O.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - ------------------------------------------------------------------------------- */ diff --git a/src/thermophysicalModels/liquids/iC3H8O/iC3H8O.C b/src/thermophysicalModels/liquids/iC3H8O/iC3H8O.C index f398523460..1b327b07c4 100644 --- a/src/thermophysicalModels/liquids/iC3H8O/iC3H8O.C +++ b/src/thermophysicalModels/liquids/iC3H8O/iC3H8O.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "iC3H8O.H" diff --git a/src/thermophysicalModels/specie/equationOfState/perfectGas/perfectGas.C b/src/thermophysicalModels/specie/equationOfState/perfectGas/perfectGas.C index ab79adedd7..455d032634 100644 --- a/src/thermophysicalModels/specie/equationOfState/perfectGas/perfectGas.C +++ b/src/thermophysicalModels/specie/equationOfState/perfectGas/perfectGas.C @@ -22,9 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - Perfect gas equation of state. - \*---------------------------------------------------------------------------*/ #include "perfectGas.H" diff --git a/src/thermophysicalModels/specie/reaction/Reactions/IrreversibleReaction/IrreversibleReaction.C b/src/thermophysicalModels/specie/reaction/Reactions/IrreversibleReaction/IrreversibleReaction.C index 58e28a2bc1..7c896accb9 100644 --- a/src/thermophysicalModels/specie/reaction/Reactions/IrreversibleReaction/IrreversibleReaction.C +++ b/src/thermophysicalModels/specie/reaction/Reactions/IrreversibleReaction/IrreversibleReaction.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "IrreversibleReaction.H" diff --git a/src/thermophysicalModels/specie/reaction/Reactions/NonEquilibriumReversibleReaction/NonEquilibriumReversibleReaction.C b/src/thermophysicalModels/specie/reaction/Reactions/NonEquilibriumReversibleReaction/NonEquilibriumReversibleReaction.C index fc639515bb..6cc28a7c70 100644 --- a/src/thermophysicalModels/specie/reaction/Reactions/NonEquilibriumReversibleReaction/NonEquilibriumReversibleReaction.C +++ b/src/thermophysicalModels/specie/reaction/Reactions/NonEquilibriumReversibleReaction/NonEquilibriumReversibleReaction.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "NonEquilibriumReversibleReaction.H" diff --git a/src/thermophysicalModels/specie/reaction/Reactions/Reaction/Reaction.C b/src/thermophysicalModels/specie/reaction/Reactions/Reaction/Reaction.C index ad5c2e1185..30124a5819 100644 --- a/src/thermophysicalModels/specie/reaction/Reactions/Reaction/Reaction.C +++ b/src/thermophysicalModels/specie/reaction/Reactions/Reaction/Reaction.C @@ -22,10 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - Simple extension of ReactionThermo to handle Reaction kinetics in addition - to the equilibrium thermodynamics already handled. - \*---------------------------------------------------------------------------*/ #include "Reaction.H" @@ -207,7 +203,7 @@ Reaction::Reaction setLRhs(is); setThermo(thermoDatabase); } - + // * * * * * * * * * * * * * * * * Selectors * * * * * * * * * * * * * * * * // diff --git a/src/thermophysicalModels/specie/reaction/Reactions/ReversibleReaction/ReversibleReaction.C b/src/thermophysicalModels/specie/reaction/Reactions/ReversibleReaction/ReversibleReaction.C index 9bdfae4388..a11368caaf 100644 --- a/src/thermophysicalModels/specie/reaction/Reactions/ReversibleReaction/ReversibleReaction.C +++ b/src/thermophysicalModels/specie/reaction/Reactions/ReversibleReaction/ReversibleReaction.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "ReversibleReaction.H" diff --git a/src/thermophysicalModels/specie/reaction/reactions/makeChemkinReactions.C b/src/thermophysicalModels/specie/reaction/reactions/makeChemkinReactions.C index 3756f2e365..2a67e3143d 100644 --- a/src/thermophysicalModels/specie/reaction/reactions/makeChemkinReactions.C +++ b/src/thermophysicalModels/specie/reaction/reactions/makeChemkinReactions.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "reactionTypes.H" diff --git a/src/thermophysicalModels/specie/reaction/reactions/makeLangmuirHinshelwoodReactions.C b/src/thermophysicalModels/specie/reaction/reactions/makeLangmuirHinshelwoodReactions.C index 1789fe80fc..637581bb1f 100644 --- a/src/thermophysicalModels/specie/reaction/reactions/makeLangmuirHinshelwoodReactions.C +++ b/src/thermophysicalModels/specie/reaction/reactions/makeLangmuirHinshelwoodReactions.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "makeReactionThermo.H" diff --git a/src/thermophysicalModels/specie/reaction/reactions/makeReactionThermoReactions.C b/src/thermophysicalModels/specie/reaction/reactions/makeReactionThermoReactions.C index 1a054b1124..bc9fc47732 100644 --- a/src/thermophysicalModels/specie/reaction/reactions/makeReactionThermoReactions.C +++ b/src/thermophysicalModels/specie/reaction/reactions/makeReactionThermoReactions.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "reactionTypes.H" diff --git a/src/thermophysicalModels/specie/speciesTable/speciesTable.C b/src/thermophysicalModels/specie/speciesTable/speciesTable.C index acb4f0a72c..b2cb515e37 100644 --- a/src/thermophysicalModels/specie/speciesTable/speciesTable.C +++ b/src/thermophysicalModels/specie/speciesTable/speciesTable.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "speciesTable.H" diff --git a/src/thermophysicalModels/specie/transport/const/constTransport.C b/src/thermophysicalModels/specie/transport/const/constTransport.C index cebe3765b6..8735480807 100644 --- a/src/thermophysicalModels/specie/transport/const/constTransport.C +++ b/src/thermophysicalModels/specie/transport/const/constTransport.C @@ -22,10 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - Constant properties Transport package. Templated ito a given - thermodynamics package (needed for thermal conductivity). - \*---------------------------------------------------------------------------*/ #include "constTransport.H" diff --git a/src/thermophysicalModels/specie/transport/speciesTransport/speciesTransport.C b/src/thermophysicalModels/specie/transport/speciesTransport/speciesTransport.C index df5fb2754b..d4afb4df2e 100644 --- a/src/thermophysicalModels/specie/transport/speciesTransport/speciesTransport.C +++ b/src/thermophysicalModels/specie/transport/speciesTransport/speciesTransport.C @@ -22,14 +22,9 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - Basic species Transport type based on the use of a fitting function for nu. All other properties are derived from this primitive function. - The nu function must be provided by the derived type, - e.g. SutherlandTransport. - \*---------------------------------------------------------------------------*/ #include "speciesTransport.H" diff --git a/src/thermophysicalModels/specie/transport/speciesTransport/speciesTransport.H b/src/thermophysicalModels/specie/transport/speciesTransport/speciesTransport.H index 885e4bb2fd..44d6f34b43 100644 --- a/src/thermophysicalModels/specie/transport/speciesTransport/speciesTransport.H +++ b/src/thermophysicalModels/specie/transport/speciesTransport/speciesTransport.H @@ -38,7 +38,6 @@ SourceFiles speciesTransportI.H speciesTransport.C - \*---------------------------------------------------------------------------*/ #ifndef speciesTransport_H diff --git a/src/thermophysicalModels/thermophysicalFunctions/NSRDSfunctions/NSRDSfunc4/NSRDSfunc4.C b/src/thermophysicalModels/thermophysicalFunctions/NSRDSfunctions/NSRDSfunc4/NSRDSfunc4.C index f936042653..9bae498a49 100644 --- a/src/thermophysicalModels/thermophysicalFunctions/NSRDSfunctions/NSRDSfunc4/NSRDSfunc4.C +++ b/src/thermophysicalModels/thermophysicalFunctions/NSRDSfunctions/NSRDSfunc4/NSRDSfunc4.C @@ -22,8 +22,6 @@ License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -Description - \*---------------------------------------------------------------------------*/ #include "NSRDSfunc4.H"