mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: code style corrections
This commit is contained in:
@ -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
|
||||
|
||||
@ -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"
|
||||
|
||||
Reference in New Issue
Block a user