Solvers: standardised the class declaration section comments to correspond to the foamNewSource template

This commit is contained in:
Henry Weller
2019-06-20 13:53:03 +01:00
parent 96b69f6f88
commit 5dbbac7c86
46 changed files with 462 additions and 451 deletions

View File

@ -92,15 +92,6 @@ class basicSubGrid
autoPtr<XiEqModel> XiEqModel_;
// Private Member Functions
//- Disallow default bitwise copy construction
basicSubGrid(const basicSubGrid&);
//- Disallow default bitwise assignment
void operator=(const basicSubGrid&) = delete;
public:
//- Runtime type information
@ -118,6 +109,9 @@ public:
const volScalarField& Su
);
//- Disallow default bitwise copy construction
basicSubGrid(const basicSubGrid&);
//- Destructor
virtual ~basicSubGrid();
@ -130,6 +124,12 @@ public:
//- Update properties from given dictionary
virtual bool read(const dictionary& XiEqProperties);
// Member Operators
//- Disallow default bitwise assignment
void operator=(const basicSubGrid&) = delete;
};

View File

@ -80,15 +80,6 @@ class basicSubGrid
autoPtr<XiGModel> XiGModel_;
// Private Member Functions
//- Disallow default bitwise copy construction
basicSubGrid(const basicSubGrid&);
//- Disallow default bitwise assignment
void operator=(const basicSubGrid&) = delete;
public:
//- Runtime type information
@ -106,6 +97,9 @@ public:
const volScalarField& Su
);
//- Disallow default bitwise copy construction
basicSubGrid(const basicSubGrid&);
//- Destructor
virtual ~basicSubGrid();
@ -121,6 +115,12 @@ public:
//- Update properties from given dictionary
virtual bool read(const dictionary& XiGProperties);
// Member Operators
//- Disallow default bitwise assignment
void operator=(const basicSubGrid&) = delete;
};

View File

@ -70,17 +70,6 @@ protected:
Switch on_;
private:
// Private Member Functions
//- Disallow default bitwise copy construction
PDRDragModel(const PDRDragModel&);
//- Disallow default bitwise assignment
void operator=(const PDRDragModel&) = delete;
public:
//- Runtime type information
@ -111,10 +100,10 @@ public:
);
// Selectors
// Constructors
//- Return a reference to the selected Xi model
static autoPtr<PDRDragModel> New
//- Construct from components
PDRDragModel
(
const dictionary& PDRProperties,
const compressible::RASModel& turbulence,
@ -123,11 +112,14 @@ public:
const surfaceScalarField& phi
);
//- Disallow default bitwise copy construction
PDRDragModel(const PDRDragModel&);
// Constructors
//- Construct from components
PDRDragModel
// Selectors
//- Return a reference to the selected Xi model
static autoPtr<PDRDragModel> New
(
const dictionary& PDRProperties,
const compressible::RASModel& turbulence,
@ -170,6 +162,12 @@ public:
{
NotImplemented;
}
// Member Operators
//- Disallow default bitwise assignment
void operator=(const PDRDragModel&) = delete;
};

View File

@ -106,15 +106,6 @@ class basic
volSymmTensorField CR_;
// Private Member Functions
//- Disallow default bitwise copy construction
basic(const basic&);
//- Disallow default bitwise assignment
void operator=(const basic&) = delete;
public:
//- Runtime type information
@ -133,6 +124,9 @@ public:
const surfaceScalarField& phi
);
//- Disallow default bitwise copy construction
basic(const basic&);
//- Destructor
virtual ~basic();
@ -151,6 +145,12 @@ public:
//- Write fields
void writeFields() const;
// Member Operators
//- Disallow default bitwise assignment
void operator=(const basic&) = delete;
};

View File

@ -68,15 +68,6 @@ class Gulder
bool subGridSchelkin_;
// Private Member Functions
//- Disallow default bitwise copy construction
Gulder(const Gulder&);
//- Disallow default bitwise assignment
void operator=(const Gulder&) = delete;
public:
//- Runtime type information
@ -94,6 +85,9 @@ public:
const volScalarField& Su
);
//- Disallow default bitwise copy construction
Gulder(const Gulder&);
//- Destructor
virtual ~Gulder();
@ -107,6 +101,11 @@ public:
//- Update properties from given dictionary
virtual bool read(const dictionary& XiEqProperties);
// Member Operators
//- Disallow default bitwise assignment
void operator=(const Gulder&) = delete;
};

View File

@ -64,15 +64,6 @@ class SCOPEBlend
autoPtr<XiEqModel> XiEqModelH_;
// Private Member Functions
//- Disallow default bitwise copy construction
SCOPEBlend(const SCOPEBlend&);
//- Disallow default bitwise assignment
void operator=(const SCOPEBlend&) = delete;
public:
//- Runtime type information
@ -90,6 +81,9 @@ public:
const volScalarField& Su
);
//- Disallow default bitwise copy construction
SCOPEBlend(const SCOPEBlend&);
//- Destructor
virtual ~SCOPEBlend();
@ -106,6 +100,11 @@ public:
return true;
}
// Member Operators
//- Disallow default bitwise assignment
void operator=(const SCOPEBlend&) = delete;
};

View File

@ -82,15 +82,6 @@ class SCOPEXiEq
laminarFlameSpeedModels::SCOPE MaModel;
// Private Member Functions
//- Disallow default bitwise copy construction
SCOPEXiEq(const SCOPEXiEq&);
//- Disallow default bitwise assignment
void operator=(const SCOPEXiEq&) = delete;
public:
//- Runtime type information
@ -108,6 +99,9 @@ public:
const volScalarField& Su
);
//- Disallow default bitwise copy construction
SCOPEXiEq(const SCOPEXiEq&);
//- Destructor
virtual ~SCOPEXiEq();
@ -120,6 +114,12 @@ public:
//- Update properties from given dictionary
virtual bool read(const dictionary& XiEqProperties);
// Member Operators
//- Disallow default bitwise assignment
void operator=(const SCOPEXiEq&) = delete;
};

View File

@ -75,17 +75,6 @@ protected:
const volScalarField& Su_;
private:
// Private Member Functions
//- Disallow default bitwise copy construction
XiEqModel(const XiEqModel&);
//- Disallow default bitwise assignment
void operator=(const XiEqModel&) = delete;
public:
//- Runtime type information
@ -114,10 +103,10 @@ public:
);
// Selectors
// Constructors
//- Return a reference to the selected XiEq model
static autoPtr<XiEqModel> New
//- Construct from components
XiEqModel
(
const dictionary& XiEqProperties,
const psiuReactionThermo& thermo,
@ -125,11 +114,14 @@ public:
const volScalarField& Su
);
//- Disallow default bitwise copy construction
XiEqModel(const XiEqModel&);
// Constructors
//- Construct from components
XiEqModel
// Selectors
//- Return a reference to the selected XiEq model
static autoPtr<XiEqModel> New
(
const dictionary& XiEqProperties,
const psiuReactionThermo& thermo,
@ -158,6 +150,12 @@ public:
//- Write fields
void writeFields() const;
// Member Operators
//- Disallow default bitwise assignment
void operator=(const XiEqModel&) = delete;
};

View File

@ -63,15 +63,6 @@ class instability
autoPtr<XiEqModel> XiEqModel_;
// Private Member Functions
//- Disallow default bitwise copy construction
instability(const instability&);
//- Disallow default bitwise assignment
void operator=(const instability&) = delete;
public:
//- Runtime type information
@ -89,6 +80,9 @@ public:
const volScalarField& Su
);
//- Disallow default bitwise copy construction
instability(const instability&);
//- Destructor
virtual ~instability();
@ -102,6 +96,11 @@ public:
//- Update properties from given dictionary
virtual bool read(const dictionary& XiEqProperties);
// Member Operators
//- Disallow default bitwise assignment
void operator=(const instability&) = delete;
};

View File

@ -58,15 +58,6 @@ class KTS
scalar GEtaCoef_;
// Private Member Functions
//- Disallow default bitwise copy construction
KTS(const KTS&);
//- Disallow default bitwise assignment
void operator=(const KTS&) = delete;
public:
//- Runtime type information
@ -84,6 +75,9 @@ public:
const volScalarField& Su
);
//- Disallow default bitwise copy construction
KTS(const KTS&);
//- Destructor
virtual ~KTS();
@ -96,6 +90,12 @@ public:
//- Update properties from given dictionary
virtual bool read(const dictionary& XiGProperties);
// Member Operators
//- Disallow default bitwise assignment
void operator=(const KTS&) = delete;
};

View File

@ -66,17 +66,6 @@ protected:
const volScalarField& Su_;
private:
// Private Member Functions
//- Disallow default bitwise copy construction
XiGModel(const XiGModel&);
//- Disallow default bitwise assignment
void operator=(const XiGModel&) = delete;
public:
//- Runtime type information
@ -105,10 +94,10 @@ public:
);
// Selectors
// Constructors
//- Return a reference to the selected XiG model
static autoPtr<XiGModel> New
//- Construct from components
XiGModel
(
const dictionary& XiGProperties,
const psiuReactionThermo& thermo,
@ -116,11 +105,14 @@ public:
const volScalarField& Su
);
//- Disallow default bitwise copy construction
XiGModel(const XiGModel&);
// Constructors
//- Construct from components
XiGModel
// Selectors
//- Return a reference to the selected XiG model
static autoPtr<XiGModel> New
(
const dictionary& XiGProperties,
const psiuReactionThermo& thermo,
@ -146,6 +138,12 @@ public:
//- Update properties from given dictionary
virtual bool read(const dictionary& XiGProperties) = 0;
// Member Operators
//- Disallow default bitwise assignment
void operator=(const XiGModel&) = delete;
};

View File

@ -67,15 +67,6 @@ class instabilityG
autoPtr<XiGModel> XiGModel_;
// Private Member Functions
//- Disallow default bitwise copy construction
instabilityG(const instabilityG&);
//- Disallow default bitwise assignment
void operator=(const instabilityG&) = delete;
public:
//- Runtime type information
@ -93,6 +84,9 @@ public:
const volScalarField& Su
);
//- Disallow default bitwise copy construction
instabilityG(const instabilityG&);
//- Destructor
virtual ~instabilityG();
@ -108,6 +102,12 @@ public:
//- Update properties from given dictionary
virtual bool read(const dictionary& XiGProperties);
// Member Operators
//- Disallow default bitwise assignment
void operator=(const instabilityG&) = delete;
};

View File

@ -126,17 +126,6 @@ protected:
volScalarField Xi_;
private:
// Private Member Functions
//- Disallow default bitwise copy construction
XiModel(const XiModel&);
//- Disallow default bitwise assignment
void operator=(const XiModel&) = delete;
public:
//- Runtime type information
@ -171,10 +160,10 @@ public:
);
// Selectors
// Constructors
//- Return a reference to the selected Xi model
static autoPtr<XiModel> New
//- Construct from components
XiModel
(
const dictionary& XiProperties,
const psiuReactionThermo& thermo,
@ -185,11 +174,14 @@ public:
const surfaceScalarField& phi
);
//- Disallow default bitwise copy construction
XiModel(const XiModel&);
// Constructors
//- Construct from components
XiModel
// Selectors
//- Return a reference to the selected Xi model
static autoPtr<XiModel> New
(
const dictionary& XiProperties,
const psiuReactionThermo& thermo,
@ -241,6 +233,12 @@ public:
//- Write fields related to Xi model
virtual void writeFields() = 0;
// Member Operators
//- Disallow default bitwise assignment
void operator=(const XiModel&) = delete;
};

View File

@ -65,15 +65,6 @@ class algebraic
autoPtr<XiGModel> XiGModel_;
// Private Member Functions
//- Disallow default bitwise copy construction
algebraic(const algebraic&);
//- Disallow default bitwise assignment
void operator=(const algebraic&) = delete;
public:
//- Runtime type information
@ -94,6 +85,9 @@ public:
const surfaceScalarField& phi
);
//- Disallow default bitwise copy construction
algebraic(const algebraic&);
//- Destructor
virtual ~algebraic();
@ -116,6 +110,11 @@ public:
XiEqModel_().writeFields();
}
// Member Operators
//- Disallow default bitwise assignment
void operator=(const algebraic&) = delete;
};

View File

@ -53,15 +53,6 @@ class fixed
:
public XiModel
{
// Private Member Functions
//- Disallow default bitwise copy construction
fixed(const fixed&);
//- Disallow default bitwise assignment
void operator=(const fixed&) = delete;
public:
//- Runtime type information
@ -82,6 +73,9 @@ public:
const surfaceScalarField& phi
);
//- Disallow default bitwise copy construction
fixed(const fixed&);
//- Destructor
virtual ~fixed();
@ -100,6 +94,11 @@ public:
virtual void writeFields()
{}
// Member Operators
//- Disallow default bitwise assignment
void operator=(const fixed&) = delete;
};

View File

@ -65,15 +65,6 @@ class transport
autoPtr<XiGModel> XiGModel_;
// Private Member Functions
//- Disallow default bitwise copy construction
transport(const transport&);
//- Disallow default bitwise assignment
void operator=(const transport&) = delete;
public:
//- Runtime type information
@ -94,6 +85,9 @@ public:
const surfaceScalarField& phi
);
//- Disallow default bitwise copy construction
transport(const transport&);
//- Destructor
virtual ~transport();
@ -130,6 +124,12 @@ public:
{
XiEqModel_().writeFields();
}
// Member Operators
//- Disallow default bitwise assignment
void operator=(const transport&) = delete;
};

View File

@ -96,18 +96,6 @@ class compressibleInterPhaseTransportModel
> turbulence2_;
// Private Member Functions
//- Disallow default bitwise copy construction
compressibleInterPhaseTransportModel
(
const compressibleInterPhaseTransportModel&
);
//- Disallow default bitwise assignment
void operator=(const compressibleInterPhaseTransportModel&) = delete;
public:
// Constructors
@ -123,6 +111,12 @@ public:
const twoPhaseMixtureThermo& mixture
);
//- Disallow default bitwise copy construction
compressibleInterPhaseTransportModel
(
const compressibleInterPhaseTransportModel&
);
// Member Functions
@ -138,6 +132,12 @@ public:
//- Correct the phase or mixture transport models
void correct();
// Member Operators
//- Disallow default bitwise assignment
void operator=(const compressibleInterPhaseTransportModel&) = delete;
};

View File

@ -54,15 +54,6 @@ class VoFPatchTransfer
:
public transferModel
{
// Private Member Functions
//- Disallow default bitwise copy construction
VoFPatchTransfer(const VoFPatchTransfer&) = delete;
//- Disallow default bitwise assignment
void operator=(const VoFPatchTransfer&) = delete;
protected:
//- Factor of the cell height above which the film is transferred
@ -100,6 +91,9 @@ public:
//- Construct from surface film model
VoFPatchTransfer(surfaceFilmRegionModel& film, const dictionary& dict);
//- Disallow default bitwise copy construction
VoFPatchTransfer(const VoFPatchTransfer&) = delete;
//- Destructor
virtual ~VoFPatchTransfer();
@ -128,6 +122,12 @@ public:
(
scalarField& patchMasses
) const;
// Member Operators
//- Disallow default bitwise assignment
void operator=(const VoFPatchTransfer&) = delete;
};

View File

@ -135,15 +135,6 @@ class VoFSolidificationMeltingSource
template<class RhoFieldType>
void apply(const RhoFieldType& rho, fvMatrix<scalar>& eqn);
//- Disallow default bitwise copy construction
VoFSolidificationMeltingSource
(
const VoFSolidificationMeltingSource&
) = delete;
//- Disallow default bitwise assignment
void operator=(const VoFSolidificationMeltingSource&) = delete;
public:
@ -162,6 +153,12 @@ public:
const fvMesh& mesh
);
//- Disallow default bitwise copy construction
VoFSolidificationMeltingSource
(
const VoFSolidificationMeltingSource&
) = delete;
// Member Functions
@ -197,6 +194,12 @@ public:
//- Read source dictionary
virtual bool read(const dictionary& dict);
// Member Operators
//- Disallow default bitwise assignment
void operator=(const VoFSolidificationMeltingSource&) = delete;
};

View File

@ -71,15 +71,6 @@ protected:
const surfaceScalarField& phi_;
// Private Member Functions
//- Disallow default bitwise copy construction
mixtureViscosityModel(const mixtureViscosityModel&);
//- Disallow default bitwise assignment
void operator=(const mixtureViscosityModel&) = delete;
public:
//- Runtime type information
@ -103,10 +94,10 @@ public:
);
// Selectors
// Constructors
//- Return a reference to the selected viscosity model
static autoPtr<mixtureViscosityModel> New
//- Construct from components
mixtureViscosityModel
(
const word& name,
const dictionary& viscosityProperties,
@ -114,11 +105,14 @@ public:
const surfaceScalarField& phi
);
//- Disallow default bitwise copy construction
mixtureViscosityModel(const mixtureViscosityModel&);
// Constructors
//- Construct from components
mixtureViscosityModel
// Selectors
//- Return a reference to the selected viscosity model
static autoPtr<mixtureViscosityModel> New
(
const word& name,
const dictionary& viscosityProperties,
@ -146,6 +140,12 @@ public:
//- Read transportProperties dictionary
virtual bool read(const dictionary& viscosityProperties) = 0;
// Member Operators
//- Disallow default bitwise assignment
void operator=(const mixtureViscosityModel&) = delete;
};

View File

@ -55,12 +55,6 @@ class relativeVelocityModel
//- Return the list of patchFieldTypes for Udm derived from U
wordList UdmPatchFieldTypes() const;
//- Disallow default bitwise copy construction
relativeVelocityModel(const relativeVelocityModel&) = delete;
//- Disallow default bitwise assignment
void operator=(const relativeVelocityModel&) = delete;
protected:
@ -114,6 +108,9 @@ public:
const incompressibleTwoPhaseInteractingMixture& mixture
);
//- Disallow default bitwise copy construction
relativeVelocityModel(const relativeVelocityModel&) = delete;
// Selector
static autoPtr<relativeVelocityModel> New
@ -149,6 +146,12 @@ public:
//- Update the diffusion velocity
virtual void correct() = 0;
// Member Operators
//- Disallow default bitwise assignment
void operator=(const relativeVelocityModel&) = delete;
};

View File

@ -56,7 +56,6 @@ class phaseChangeTwoPhaseMixture
:
public immiscibleIncompressibleTwoPhaseMixture
{
protected:
// Protected data
@ -67,15 +66,6 @@ protected:
dimensionedScalar pSat_;
// Private Member Functions
//- Disallow default bitwise copy construction
phaseChangeTwoPhaseMixture(const phaseChangeTwoPhaseMixture&);
//- Disallow default bitwise assignment
void operator=(const phaseChangeTwoPhaseMixture&) = delete;
public:
//- Runtime type information
@ -97,16 +87,6 @@ public:
);
// Selectors
//- Return a reference to the selected phaseChange model
static autoPtr<phaseChangeTwoPhaseMixture> New
(
const volVectorField& U,
const surfaceScalarField& phi
);
// Constructors
//- Construct from components
@ -117,6 +97,19 @@ public:
const surfaceScalarField& phi
);
//- Disallow default bitwise copy construction
phaseChangeTwoPhaseMixture(const phaseChangeTwoPhaseMixture&);
// Selectors
//- Return a reference to the selected phaseChange model
static autoPtr<phaseChangeTwoPhaseMixture> New
(
const volVectorField& U,
const surfaceScalarField& phi
);
//- Destructor
virtual ~phaseChangeTwoPhaseMixture()
@ -154,6 +147,12 @@ public:
//- Read the transportProperties dictionary and update
virtual bool read() = 0;
// Member Operators
//- Disallow default bitwise assignment
void operator=(const phaseChangeTwoPhaseMixture&) = delete;
};

View File

@ -55,15 +55,6 @@ namespace wallBoilingModels
class departureDiameterModel
{
// Private Member Functions
//- Disallow default bitwise copy construction
departureDiameterModel(const departureDiameterModel&) = delete;
//- Disallow default bitwise assignment
void operator=(const departureDiameterModel&) = delete;
public:
//- Runtime type information
@ -88,6 +79,9 @@ public:
//- Construct null
departureDiameterModel();
//- Disallow default bitwise copy construction
departureDiameterModel(const departureDiameterModel&) = delete;
// Selectors
@ -113,6 +107,12 @@ public:
) const = 0;
virtual void write(Ostream& os) const;
// Member Operators
//- Disallow default bitwise assignment
void operator=(const departureDiameterModel&) = delete;
};

View File

@ -55,15 +55,6 @@ namespace wallBoilingModels
class departureFrequencyModel
{
// Private Member Functions
//- Disallow default bitwise copy construction
departureFrequencyModel(const departureFrequencyModel&) = delete;
//- Disallow default bitwise assignment
void operator=(const departureFrequencyModel&) = delete;
public:
//- Runtime type information
@ -88,6 +79,9 @@ public:
//- Construct null
departureFrequencyModel();
//- Disallow default bitwise copy construction
departureFrequencyModel(const departureFrequencyModel&) = delete;
// Selectors
@ -111,6 +105,12 @@ public:
) const = 0;
virtual void write(Ostream& os) const;
// Member Operators
//- Disallow default bitwise assignment
void operator=(const departureFrequencyModel&) = delete;
};

View File

@ -55,15 +55,6 @@ namespace wallBoilingModels
class nucleationSiteModel
{
// Private Member Functions
//- Disallow default bitwise copy construction
nucleationSiteModel(const nucleationSiteModel&) = delete;
//- Disallow default bitwise assignment
void operator=(const nucleationSiteModel&) = delete;
public:
//- Runtime type information
@ -88,6 +79,9 @@ public:
//- Construct null
nucleationSiteModel();
//- Disallow default bitwise copy construction
nucleationSiteModel(const nucleationSiteModel&) = delete;
// Selectors
@ -113,6 +107,12 @@ public:
) const = 0;
virtual void write(Ostream& os) const;
// Member Operators
//- Disallow default bitwise assignment
void operator=(const nucleationSiteModel&) = delete;
};

View File

@ -53,15 +53,6 @@ namespace wallBoilingModels
class partitioningModel
{
// Private Member Functions
//- Disallow default bitwise copy construction
partitioningModel(const partitioningModel&) = delete;
//- Disallow default bitwise assignment
void operator=(const partitioningModel&) = delete;
public:
//- Runtime type information
@ -86,6 +77,9 @@ public:
//- Construct null
partitioningModel();
//- Disallow default bitwise copy construction
partitioningModel(const partitioningModel&) = delete;
// Selectors
@ -106,6 +100,12 @@ public:
) const = 0;
virtual void write(Ostream& os) const;
// Member Operators
//- Disallow default bitwise assignment
void operator=(const partitioningModel&) = delete;
};

View File

@ -88,15 +88,6 @@ class phaseForces
:
public fvMeshFunctionObject
{
// Private Member Functions
//- Disallow default bitwise copy construction
phaseForces(const phaseForces&) = delete;
//- Disallow default bitwise assignment
void operator=(const phaseForces&) = delete;
protected:
// Protected data
@ -133,6 +124,9 @@ public:
const dictionary&
);
//- Disallow default bitwise copy construction
phaseForces(const phaseForces&) = delete;
//- Destructor
virtual ~phaseForces();
@ -148,6 +142,12 @@ public:
//- Write the force fields
virtual bool write();
// Member Operators
//- Disallow default bitwise assignment
void operator=(const phaseForces&) = delete;
};

View File

@ -53,15 +53,6 @@ class saturationModel
:
public IOdictionary
{
// Private Member Functions
//- Disallow default bitwise copy construction
saturationModel(const saturationModel&) = delete;
//- Disallow default bitwise assignment
void operator=(const saturationModel&) = delete;
public:
//- Runtime type information
@ -86,6 +77,9 @@ public:
//- Construct null
saturationModel(const objectRegistry& db);
//- Disallow default bitwise copy construction
saturationModel(const saturationModel&) = delete;
// Selectors
@ -126,6 +120,12 @@ public:
(
const volScalarField& p
) const = 0;
// Member Operators
//- Disallow default bitwise assignment
void operator=(const saturationModel&) = delete;
};

View File

@ -56,15 +56,6 @@ class wallDependentModel
const fvMesh& mesh_;
// Private Member Functions
//- Disallow default bitwise copy construction
wallDependentModel(const wallDependentModel&) = delete;
//- Disallow default bitwise assignment
void operator=(const wallDependentModel&) = delete;
public:
// Constructors
@ -72,10 +63,14 @@ public:
//- Construct from a mesh
wallDependentModel(const fvMesh& mesh);
//- Disallow default bitwise copy construction
wallDependentModel(const wallDependentModel&) = delete;
//- Destructor
virtual ~wallDependentModel();
// Member Functions
// Return the wall distance, creating and storing it if necessary
@ -83,6 +78,12 @@ public:
// Return the wall normal, creating and storing it if necessary
const volVectorField& nWall() const;
// Member Operators
//- Disallow default bitwise assignment
void operator=(const wallDependentModel&) = delete;
};

View File

@ -94,15 +94,6 @@ class BlendedInterfacialModel
// Private Member Functions
//- Disallow default bitwise copy construction
BlendedInterfacialModel
(
const BlendedInterfacialModel<ModelType>&
) = delete;
//- Disallow default bitwise assignment
void operator=(const BlendedInterfacialModel<ModelType>&) = delete;
//- Correct coeff/value on fixed flux boundary conditions
template<class GeoField>
void correctFixedFluxBCs(GeoField& field) const;
@ -158,6 +149,12 @@ public:
const bool correctFixedFluxBCs = true
);
//- Disallow default bitwise copy construction
BlendedInterfacialModel
(
const BlendedInterfacialModel<ModelType>&
) = delete;
//- Destructor
~BlendedInterfacialModel();
@ -198,6 +195,12 @@ public:
//- Dummy write for regIOobject
bool writeData(Ostream& os) const;
// Member Operators
//- Disallow default bitwise assignment
void operator=(const BlendedInterfacialModel<ModelType>&) = delete;
};

View File

@ -50,15 +50,6 @@ namespace kineticTheoryModels
class conductivityModel
{
// Private Member Functions
//- Disallow default bitwise copy construction
conductivityModel(const conductivityModel&) = delete;
//- Disallow default bitwise assignment
void operator=(const conductivityModel&) = delete;
protected:
// Protected data
@ -89,6 +80,9 @@ public:
//- Construct from components
conductivityModel(const dictionary& dict);
//- Disallow default bitwise copy construction
conductivityModel(const conductivityModel&) = delete;
// Selectors
@ -118,6 +112,12 @@ public:
{
return true;
}
// Member Operators
//- Disallow default bitwise assignment
void operator=(const conductivityModel&) = delete;
};

View File

@ -51,15 +51,6 @@ namespace kineticTheoryModels
class frictionalStressModel
{
// Private Member Functions
//- Disallow default bitwise copy construction
frictionalStressModel(const frictionalStressModel&) = delete;
//- Disallow default bitwise assignment
void operator=(const frictionalStressModel&) = delete;
protected:
// Protected data
@ -91,6 +82,9 @@ public:
//- Construct from components
frictionalStressModel(const dictionary& dict);
//- Disallow default bitwise copy construction
frictionalStressModel(const frictionalStressModel&) = delete;
// Selectors
@ -130,6 +124,12 @@ public:
) const = 0;
virtual bool read() = 0;
// Member Operators
//- Disallow default bitwise assignment
void operator=(const frictionalStressModel&) = delete;
};

View File

@ -50,15 +50,6 @@ namespace kineticTheoryModels
class granularPressureModel
{
// Private Member Functions
//- Disallow default bitwise copy construction
granularPressureModel(const granularPressureModel&) = delete;
//- Disallow default bitwise assignment
void operator=(const granularPressureModel&) = delete;
protected:
// Protected data
@ -89,6 +80,9 @@ public:
//- Construct from components
granularPressureModel(const dictionary& dict);
//- Disallow default bitwise copy construction
granularPressureModel(const granularPressureModel&) = delete;
// Selectors
@ -127,6 +121,12 @@ public:
{
return true;
}
// Member Operators
//- Disallow default bitwise assignment
void operator=(const granularPressureModel&) = delete;
};

View File

@ -147,12 +147,6 @@ class kineticTheoryModel
void correctNut()
{}
//- Disallow default bitwise copy construction
kineticTheoryModel(const kineticTheoryModel&) = delete;
//- Disallow default bitwise assignment
void operator=(const kineticTheoryModel&) = delete;
public:
@ -175,6 +169,9 @@ public:
const word& type = typeName
);
//- Disallow default bitwise copy construction
kineticTheoryModel(const kineticTheoryModel&) = delete;
//- Destructor
virtual ~kineticTheoryModel();
@ -222,6 +219,12 @@ public:
//- Solve the kinetic theory equations and correct the viscosity
virtual void correct();
// Member Operators
//- Disallow default bitwise assignment
void operator=(const kineticTheoryModel&) = delete;
};

View File

@ -50,15 +50,6 @@ namespace kineticTheoryModels
class radialModel
{
// Private Member Functions
//- Disallow default bitwise copy construction
radialModel(const radialModel&) = delete;
//- Disallow default bitwise assignment
void operator=(const radialModel&) = delete;
protected:
// Protected data
@ -89,6 +80,9 @@ public:
//- Construct from components
radialModel(const dictionary& dict);
//- Disallow default bitwise copy construction
radialModel(const radialModel&) = delete;
// Selectors
@ -124,6 +118,12 @@ public:
{
return true;
}
// Member Operators
//- Disallow default bitwise assignment
void operator=(const radialModel&) = delete;
};

View File

@ -52,15 +52,6 @@ namespace kineticTheoryModels
class viscosityModel
{
// Private Member Functions
//- Disallow default bitwise copy construction
viscosityModel(const viscosityModel&) = delete;
//- Disallow default bitwise assignment
void operator=(const viscosityModel&) = delete;
protected:
// Protected data
@ -91,6 +82,9 @@ public:
//- Construct from components
viscosityModel(const dictionary& dict);
//- Disallow default bitwise copy construction
viscosityModel(const viscosityModel&) = delete;
// Selectors
@ -120,6 +114,12 @@ public:
{
return true;
}
// Member Operators
//- Disallow default bitwise assignment
void operator=(const viscosityModel&) = delete;
};

View File

@ -102,12 +102,6 @@ class phasePressureModel
void correctNut()
{}
//- Disallow default bitwise copy construction
phasePressureModel(const phasePressureModel&) = delete;
//- Disallow default bitwise assignment
void operator=(const phasePressureModel&) = delete;
public:
@ -130,6 +124,9 @@ public:
const word& type = typeName
);
//- Disallow default bitwise copy construction
phasePressureModel(const phasePressureModel&) = delete;
//- Destructor
virtual ~phasePressureModel();
@ -177,6 +174,12 @@ public:
//- Solve the kinetic theory equations and correct the viscosity
virtual void correct();
// Member Operators
//- Disallow default bitwise assignment
void operator=(const phasePressureModel&) = delete;
};

View File

@ -56,15 +56,6 @@ class wallDependentModel
const fvMesh& mesh_;
// Private Member Functions
//- Disallow default bitwise copy construction
wallDependentModel(const wallDependentModel&) = delete;
//- Disallow default bitwise assignment
void operator=(const wallDependentModel&) = delete;
public:
// Constructors
@ -72,6 +63,9 @@ public:
//- Construct from a mesh
wallDependentModel(const fvMesh& mesh);
//- Disallow default bitwise copy construction
wallDependentModel(const wallDependentModel&) = delete;
//- Destructor
virtual ~wallDependentModel();
@ -83,6 +77,12 @@ public:
// Return the wall normal, creating and storing it if necessary
const volVectorField& nWall() const;
// Member Operators
//- Disallow default bitwise assignment
void operator=(const wallDependentModel&) = delete;
};

View File

@ -50,15 +50,6 @@ namespace kineticTheoryModels
class conductivityModel
{
// Private Member Functions
//- Disallow default bitwise copy construction
conductivityModel(const conductivityModel&) = delete;
//- Disallow default bitwise assignment
void operator=(const conductivityModel&) = delete;
protected:
// Protected data
@ -89,6 +80,9 @@ public:
//- Construct from components
conductivityModel(const dictionary& dict);
//- Disallow default bitwise copy construction
conductivityModel(const conductivityModel&) = delete;
// Selectors
@ -118,6 +112,12 @@ public:
{
return true;
}
// Member Operators
//- Disallow default bitwise assignment
void operator=(const conductivityModel&) = delete;
};

View File

@ -51,15 +51,6 @@ namespace kineticTheoryModels
class frictionalStressModel
{
// Private Member Functions
//- Disallow default bitwise copy construction
frictionalStressModel(const frictionalStressModel&) = delete;
//- Disallow default bitwise assignment
void operator=(const frictionalStressModel&) = delete;
protected:
// Protected data
@ -91,6 +82,9 @@ public:
//- Construct from components
frictionalStressModel(const dictionary& dict);
//- Disallow default bitwise copy construction
frictionalStressModel(const frictionalStressModel&) = delete;
// Selectors
@ -130,6 +124,12 @@ public:
) const = 0;
virtual bool read() = 0;
// Member Operators
//- Disallow default bitwise assignment
void operator=(const frictionalStressModel&) = delete;
};

View File

@ -50,15 +50,6 @@ namespace kineticTheoryModels
class granularPressureModel
{
// Private Member Functions
//- Disallow default bitwise copy construction
granularPressureModel(const granularPressureModel&) = delete;
//- Disallow default bitwise assignment
void operator=(const granularPressureModel&) = delete;
protected:
// Protected data
@ -89,6 +80,9 @@ public:
//- Construct from components
granularPressureModel(const dictionary& dict);
//- Disallow default bitwise copy construction
granularPressureModel(const granularPressureModel&) = delete;
// Selectors
@ -127,6 +121,12 @@ public:
{
return true;
}
// Member Operators
//- Disallow default bitwise assignment
void operator=(const granularPressureModel&) = delete;
};

View File

@ -147,12 +147,6 @@ class kineticTheoryModel
void correctNut()
{}
//- Disallow default bitwise copy construction
kineticTheoryModel(const kineticTheoryModel&) = delete;
//- Disallow default bitwise assignment
void operator=(const kineticTheoryModel&) = delete;
public:
@ -175,6 +169,9 @@ public:
const word& type = typeName
);
//- Disallow default bitwise copy construction
kineticTheoryModel(const kineticTheoryModel&) = delete;
//- Destructor
virtual ~kineticTheoryModel();
@ -222,6 +219,12 @@ public:
//- Solve the kinetic theory equations and correct the viscosity
virtual void correct();
// Member Operators
//- Disallow default bitwise assignment
void operator=(const kineticTheoryModel&) = delete;
};

View File

@ -50,15 +50,6 @@ namespace kineticTheoryModels
class radialModel
{
// Private Member Functions
//- Disallow default bitwise copy construction
radialModel(const radialModel&) = delete;
//- Disallow default bitwise assignment
void operator=(const radialModel&) = delete;
protected:
// Protected data
@ -89,6 +80,9 @@ public:
//- Construct from components
radialModel(const dictionary& dict);
//- Disallow default bitwise copy construction
radialModel(const radialModel&) = delete;
// Selectors
@ -124,6 +118,12 @@ public:
{
return true;
}
// Member Operators
//- Disallow default bitwise assignment
void operator=(const radialModel&) = delete;
};

View File

@ -52,15 +52,6 @@ namespace kineticTheoryModels
class viscosityModel
{
// Private Member Functions
//- Disallow default bitwise copy construction
viscosityModel(const viscosityModel&) = delete;
//- Disallow default bitwise assignment
void operator=(const viscosityModel&) = delete;
protected:
// Protected data
@ -91,6 +82,9 @@ public:
//- Construct from components
viscosityModel(const dictionary& dict);
//- Disallow default bitwise copy construction
viscosityModel(const viscosityModel&) = delete;
// Selectors
@ -120,6 +114,12 @@ public:
{
return true;
}
// Member Operators
//- Disallow default bitwise assignment
void operator=(const viscosityModel&) = delete;
};

View File

@ -106,12 +106,6 @@ class phasePressureModel
void correctNut()
{}
//- Disallow default bitwise copy construction
phasePressureModel(const phasePressureModel&) = delete;
//- Disallow default bitwise assignment
void operator=(const phasePressureModel&) = delete;
public:
@ -134,6 +128,9 @@ public:
const word& type = typeName
);
//- Disallow default bitwise copy construction
phasePressureModel(const phasePressureModel&) = delete;
//- Destructor
virtual ~phasePressureModel();
@ -181,6 +178,12 @@ public:
//- Solve the kinetic theory equations and correct the viscosity
virtual void correct();
// Member Operators
//- Disallow default bitwise assignment
void operator=(const phasePressureModel&) = delete;
};

View File

@ -81,15 +81,6 @@ class BlendedInterfacialModel
// Private Member Functions
//- Disallow default bitwise copy construction
BlendedInterfacialModel
(
const BlendedInterfacialModel<modelType>&
) = delete;
//- Disallow default bitwise assignment
void operator=(const BlendedInterfacialModel<modelType>&) = delete;
//- Correct coeff/value on fixed flux boundary conditions
template<class GeometricField>
void correctFixedFluxBCs(GeometricField& field) const;
@ -110,6 +101,12 @@ public:
const bool correctFixedFluxBCs = true
);
//- Disallow default bitwise copy construction
BlendedInterfacialModel
(
const BlendedInterfacialModel<modelType>&
) = delete;
//- Destructor
~BlendedInterfacialModel();
@ -138,6 +135,12 @@ public:
//- Return the blended diffusivity
tmp<volScalarField> D() const;
// Member Operators
//- Disallow default bitwise assignment
void operator=(const BlendedInterfacialModel<modelType>&) = delete;
};