mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: Minor code formatting
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
|
||||
@ -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
|
||||
|
||||
|
||||
@ -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
|
||||
|
||||
|
||||
@ -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
|
||||
|
||||
|
||||
@ -125,7 +125,7 @@ public:
|
||||
virtual ~greyMeanSolidAbsorptionEmission();
|
||||
|
||||
|
||||
// Member Operators
|
||||
// Member Functions
|
||||
|
||||
// Access
|
||||
|
||||
|
||||
@ -62,11 +62,7 @@ public:
|
||||
// Constructors
|
||||
|
||||
//- Construct from components
|
||||
noAbsorptionEmission
|
||||
(
|
||||
const dictionary& dict,
|
||||
const fvMesh& mesh
|
||||
);
|
||||
noAbsorptionEmission(const dictionary& dict, const fvMesh& mesh);
|
||||
|
||||
|
||||
//- Destructor
|
||||
|
||||
@ -181,11 +181,7 @@ public:
|
||||
// Constructors
|
||||
|
||||
//- Construct from components
|
||||
wideBandAbsorptionEmission
|
||||
(
|
||||
const dictionary& dict,
|
||||
const fvMesh& mesh
|
||||
);
|
||||
wideBandAbsorptionEmission(const dictionary& dict, const fvMesh& mesh);
|
||||
|
||||
|
||||
//- Destructor
|
||||
|
||||
@ -85,7 +85,7 @@ public:
|
||||
virtual ~constantScatter();
|
||||
|
||||
|
||||
// Public Member Functions
|
||||
// Member Functions
|
||||
|
||||
//- Return scatter coefficient
|
||||
tmp<volScalarField> sigmaEff() const;
|
||||
|
||||
@ -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;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user