diff --git a/src/regionModels/thermoBaffleModels/thermoBaffle2D/thermoBaffle2D.H b/src/regionModels/thermoBaffleModels/thermoBaffle2D/thermoBaffle2D.H index f0c3181a90..a8949e89df 100644 --- a/src/regionModels/thermoBaffleModels/thermoBaffle2D/thermoBaffle2D.H +++ b/src/regionModels/thermoBaffleModels/thermoBaffle2D/thermoBaffle2D.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -132,11 +132,9 @@ public: const word& modelType, const fvMesh& mesh, const dictionary& dict - ); - //- Destructor virtual ~thermoBaffle2D(); @@ -182,6 +180,7 @@ public: //- Return sensible enthalpy/internal energy inline tmp he() const; + // Evolution //- Pre-evolve thermal baffle @@ -191,7 +190,6 @@ public: virtual void evolveRegion(); - // I-O //- Provide some feedback diff --git a/src/thermophysicalModels/solidThermo/heSolidThermo/heSolidThermo.H b/src/thermophysicalModels/solidThermo/heSolidThermo/heSolidThermo.H index 88a8d8aab6..3a154f7fee 100644 --- a/src/thermophysicalModels/solidThermo/heSolidThermo/heSolidThermo.H +++ b/src/thermophysicalModels/solidThermo/heSolidThermo/heSolidThermo.H @@ -45,7 +45,7 @@ namespace Foam { /*---------------------------------------------------------------------------*\ - Class heSolidThermo Declaration + Class heSolidThermo Declaration \*---------------------------------------------------------------------------*/ template @@ -62,6 +62,7 @@ class heSolidThermo //- Construct as copy (not implemented) heSolidThermo(const heSolidThermo&); + public: //- Runtime type information @@ -104,30 +105,17 @@ public: // Per patch calculation - //- Anisotropic thermal conductivity [W//m/K] - virtual tmp Kappa - ( - const label patchI - ) const; + //- Anisotropic thermal conductivity [W/m/K] + virtual tmp Kappa(const label patchI) const; //- Absorption coefficient [1/m] - virtual tmp kappaRad - ( - const label patchI - ) const; + virtual tmp kappaRad(const label patchI) const; //- Scatter coefficient - virtual tmp sigmaS - ( - const label patchI - ) const; + virtual tmp sigmaS(const label patchI) const; //- Emissivity coefficient [1/m] - virtual tmp emissivity - ( - const label patchI - ) const; - + virtual tmp emissivity(const label patchI) const; }; @@ -135,7 +123,7 @@ public: } // End namespace Foam -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #ifdef NoRepository # include "heSolidThermo.C"