diff --git a/src/regionModels/thermoBaffleModels/thermoBaffle2D/thermoBaffle2D.H b/src/regionModels/thermoBaffleModels/thermoBaffle2D/thermoBaffle2D.H index f0c3181a90d61374cf519c481b864015c67f9330..a8949e89df88e16c167c4b6ef7e0190c094e8123 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<volScalarField> 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 88a8d8aab6147731c2eab0b75508a6c9238f9f94..3a154f7fee5cf50a207ad78abd63bf823f9a8b16 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<class MixtureType, class BasicSolidThermo> @@ -62,6 +62,7 @@ class heSolidThermo //- Construct as copy (not implemented) heSolidThermo(const heSolidThermo<MixtureType, BasicSolidThermo>&); + public: //- Runtime type information @@ -104,30 +105,17 @@ public: // Per patch calculation - //- Anisotropic thermal conductivity [W//m/K] - virtual tmp<vectorField> Kappa - ( - const label patchI - ) const; + //- Anisotropic thermal conductivity [W/m/K] + virtual tmp<vectorField> Kappa(const label patchI) const; //- Absorption coefficient [1/m] - virtual tmp<scalarField> kappaRad - ( - const label patchI - ) const; + virtual tmp<scalarField> kappaRad(const label patchI) const; //- Scatter coefficient - virtual tmp<scalarField> sigmaS - ( - const label patchI - ) const; + virtual tmp<scalarField> sigmaS(const label patchI) const; //- Emissivity coefficient [1/m] - virtual tmp<scalarField> emissivity - ( - const label patchI - ) const; - + virtual tmp<scalarField> emissivity(const label patchI) const; }; @@ -135,7 +123,7 @@ public: } // End namespace Foam -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #ifdef NoRepository # include "heSolidThermo.C"