STYLE: Minor code formatting

This commit is contained in:
andy
2012-10-15 11:22:32 +01:00
parent f9907cfd76
commit 614ffb6b0f
8 changed files with 17 additions and 43 deletions

View File

@ -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
@ -73,18 +73,14 @@ public:
// Constructors
//- Construct from components
binaryAbsorptionEmission
(
const dictionary& dict,
const fvMesh& mesh
);
binaryAbsorptionEmission(const dictionary& dict, const fvMesh& mesh);
//- Destructor
virtual ~binaryAbsorptionEmission();
// Member Operators
// Member Functions
// Access

View File

@ -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
@ -77,18 +77,14 @@ public:
// Constructors
//- Construct from components
constantAbsorptionEmission
(
const dictionary& dict,
const fvMesh& mesh
);
constantAbsorptionEmission(const dictionary& dict, const fvMesh& mesh);
//- Destructor
virtual ~constantAbsorptionEmission();
// Member Operators
// Member Functions
// Access

View File

@ -152,18 +152,14 @@ public:
// Constructors
//- Construct from components
greyMeanAbsorptionEmission
(
const dictionary& dict,
const fvMesh& mesh
);
greyMeanAbsorptionEmission(const dictionary& dict, const fvMesh& mesh);
//- Destructor
virtual ~greyMeanAbsorptionEmission();
// Member Operators
// Member Functions
// Access

View File

@ -125,7 +125,7 @@ public:
virtual ~greyMeanSolidAbsorptionEmission();
// Member Operators
// Member Functions
// Access

View File

@ -62,11 +62,7 @@ public:
// Constructors
//- Construct from components
noAbsorptionEmission
(
const dictionary& dict,
const fvMesh& mesh
);
noAbsorptionEmission(const dictionary& dict, const fvMesh& mesh);
//- Destructor

View File

@ -181,11 +181,7 @@ public:
// Constructors
//- Construct from components
wideBandAbsorptionEmission
(
const dictionary& dict,
const fvMesh& mesh
);
wideBandAbsorptionEmission(const dictionary& dict, const fvMesh& mesh);
//- Destructor

View File

@ -85,7 +85,7 @@ public:
virtual ~constantScatter();
// Public Member Functions
// Member Functions
//- Return scatter coefficient
tmp<volScalarField> sigmaEff() const;

View File

@ -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
@ -45,7 +45,7 @@ namespace radiation
{
/*---------------------------------------------------------------------------*\
Class scatterModel Declaration
Class scatterModel Declaration
\*---------------------------------------------------------------------------*/
class scatterModel
@ -81,11 +81,7 @@ public:
// Constructors
//- Construct from components
scatterModel
(
const dictionary& dict,
const fvMesh& mesh
);
scatterModel(const dictionary& dict, const fvMesh& mesh);
// Selector
@ -103,10 +99,8 @@ public:
// Member Functions
// Access
//- Return scatter coefficient
virtual tmp<volScalarField> sigmaEff() const = 0;
//- Return scatter coefficient
virtual tmp<volScalarField> sigmaEff() const = 0;
};