Solvers: standardised the class declaration section comments to correspond to the foamNewSource template
This commit is contained in:
@ -92,15 +92,6 @@ class basicSubGrid
|
|||||||
autoPtr<XiEqModel> XiEqModel_;
|
autoPtr<XiEqModel> XiEqModel_;
|
||||||
|
|
||||||
|
|
||||||
// Private Member Functions
|
|
||||||
|
|
||||||
//- Disallow default bitwise copy construction
|
|
||||||
basicSubGrid(const basicSubGrid&);
|
|
||||||
|
|
||||||
//- Disallow default bitwise assignment
|
|
||||||
void operator=(const basicSubGrid&) = delete;
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
//- Runtime type information
|
//- Runtime type information
|
||||||
@ -118,6 +109,9 @@ public:
|
|||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
);
|
);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
basicSubGrid(const basicSubGrid&);
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
virtual ~basicSubGrid();
|
virtual ~basicSubGrid();
|
||||||
@ -130,6 +124,12 @@ public:
|
|||||||
|
|
||||||
//- Update properties from given dictionary
|
//- Update properties from given dictionary
|
||||||
virtual bool read(const dictionary& XiEqProperties);
|
virtual bool read(const dictionary& XiEqProperties);
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const basicSubGrid&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -80,15 +80,6 @@ class basicSubGrid
|
|||||||
autoPtr<XiGModel> XiGModel_;
|
autoPtr<XiGModel> XiGModel_;
|
||||||
|
|
||||||
|
|
||||||
// Private Member Functions
|
|
||||||
|
|
||||||
//- Disallow default bitwise copy construction
|
|
||||||
basicSubGrid(const basicSubGrid&);
|
|
||||||
|
|
||||||
//- Disallow default bitwise assignment
|
|
||||||
void operator=(const basicSubGrid&) = delete;
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
//- Runtime type information
|
//- Runtime type information
|
||||||
@ -106,6 +97,9 @@ public:
|
|||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
);
|
);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
basicSubGrid(const basicSubGrid&);
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
virtual ~basicSubGrid();
|
virtual ~basicSubGrid();
|
||||||
@ -121,6 +115,12 @@ public:
|
|||||||
|
|
||||||
//- Update properties from given dictionary
|
//- Update properties from given dictionary
|
||||||
virtual bool read(const dictionary& XiGProperties);
|
virtual bool read(const dictionary& XiGProperties);
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const basicSubGrid&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -70,17 +70,6 @@ protected:
|
|||||||
Switch on_;
|
Switch on_;
|
||||||
|
|
||||||
|
|
||||||
private:
|
|
||||||
|
|
||||||
// Private Member Functions
|
|
||||||
|
|
||||||
//- Disallow default bitwise copy construction
|
|
||||||
PDRDragModel(const PDRDragModel&);
|
|
||||||
|
|
||||||
//- Disallow default bitwise assignment
|
|
||||||
void operator=(const PDRDragModel&) = delete;
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
//- Runtime type information
|
//- Runtime type information
|
||||||
@ -111,10 +100,10 @@ public:
|
|||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
// Selectors
|
// Constructors
|
||||||
|
|
||||||
//- Return a reference to the selected Xi model
|
//- Construct from components
|
||||||
static autoPtr<PDRDragModel> New
|
PDRDragModel
|
||||||
(
|
(
|
||||||
const dictionary& PDRProperties,
|
const dictionary& PDRProperties,
|
||||||
const compressible::RASModel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
@ -123,11 +112,14 @@ public:
|
|||||||
const surfaceScalarField& phi
|
const surfaceScalarField& phi
|
||||||
);
|
);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
PDRDragModel(const PDRDragModel&);
|
||||||
|
|
||||||
// Constructors
|
|
||||||
|
|
||||||
//- Construct from components
|
// Selectors
|
||||||
PDRDragModel
|
|
||||||
|
//- Return a reference to the selected Xi model
|
||||||
|
static autoPtr<PDRDragModel> New
|
||||||
(
|
(
|
||||||
const dictionary& PDRProperties,
|
const dictionary& PDRProperties,
|
||||||
const compressible::RASModel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
@ -170,6 +162,12 @@ public:
|
|||||||
{
|
{
|
||||||
NotImplemented;
|
NotImplemented;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const PDRDragModel&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -106,15 +106,6 @@ class basic
|
|||||||
volSymmTensorField CR_;
|
volSymmTensorField CR_;
|
||||||
|
|
||||||
|
|
||||||
// Private Member Functions
|
|
||||||
|
|
||||||
//- Disallow default bitwise copy construction
|
|
||||||
basic(const basic&);
|
|
||||||
|
|
||||||
//- Disallow default bitwise assignment
|
|
||||||
void operator=(const basic&) = delete;
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
//- Runtime type information
|
//- Runtime type information
|
||||||
@ -133,6 +124,9 @@ public:
|
|||||||
const surfaceScalarField& phi
|
const surfaceScalarField& phi
|
||||||
);
|
);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
basic(const basic&);
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
virtual ~basic();
|
virtual ~basic();
|
||||||
@ -151,6 +145,12 @@ public:
|
|||||||
|
|
||||||
//- Write fields
|
//- Write fields
|
||||||
void writeFields() const;
|
void writeFields() const;
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const basic&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -68,15 +68,6 @@ class Gulder
|
|||||||
bool subGridSchelkin_;
|
bool subGridSchelkin_;
|
||||||
|
|
||||||
|
|
||||||
// Private Member Functions
|
|
||||||
|
|
||||||
//- Disallow default bitwise copy construction
|
|
||||||
Gulder(const Gulder&);
|
|
||||||
|
|
||||||
//- Disallow default bitwise assignment
|
|
||||||
void operator=(const Gulder&) = delete;
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
//- Runtime type information
|
//- Runtime type information
|
||||||
@ -94,6 +85,9 @@ public:
|
|||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
);
|
);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
Gulder(const Gulder&);
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
virtual ~Gulder();
|
virtual ~Gulder();
|
||||||
@ -107,6 +101,11 @@ public:
|
|||||||
//- Update properties from given dictionary
|
//- Update properties from given dictionary
|
||||||
virtual bool read(const dictionary& XiEqProperties);
|
virtual bool read(const dictionary& XiEqProperties);
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const Gulder&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -64,15 +64,6 @@ class SCOPEBlend
|
|||||||
autoPtr<XiEqModel> XiEqModelH_;
|
autoPtr<XiEqModel> XiEqModelH_;
|
||||||
|
|
||||||
|
|
||||||
// Private Member Functions
|
|
||||||
|
|
||||||
//- Disallow default bitwise copy construction
|
|
||||||
SCOPEBlend(const SCOPEBlend&);
|
|
||||||
|
|
||||||
//- Disallow default bitwise assignment
|
|
||||||
void operator=(const SCOPEBlend&) = delete;
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
//- Runtime type information
|
//- Runtime type information
|
||||||
@ -90,6 +81,9 @@ public:
|
|||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
);
|
);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
SCOPEBlend(const SCOPEBlend&);
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
virtual ~SCOPEBlend();
|
virtual ~SCOPEBlend();
|
||||||
@ -106,6 +100,11 @@ public:
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const SCOPEBlend&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -82,15 +82,6 @@ class SCOPEXiEq
|
|||||||
laminarFlameSpeedModels::SCOPE MaModel;
|
laminarFlameSpeedModels::SCOPE MaModel;
|
||||||
|
|
||||||
|
|
||||||
// Private Member Functions
|
|
||||||
|
|
||||||
//- Disallow default bitwise copy construction
|
|
||||||
SCOPEXiEq(const SCOPEXiEq&);
|
|
||||||
|
|
||||||
//- Disallow default bitwise assignment
|
|
||||||
void operator=(const SCOPEXiEq&) = delete;
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
//- Runtime type information
|
//- Runtime type information
|
||||||
@ -108,6 +99,9 @@ public:
|
|||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
);
|
);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
SCOPEXiEq(const SCOPEXiEq&);
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
virtual ~SCOPEXiEq();
|
virtual ~SCOPEXiEq();
|
||||||
@ -120,6 +114,12 @@ public:
|
|||||||
|
|
||||||
//- Update properties from given dictionary
|
//- Update properties from given dictionary
|
||||||
virtual bool read(const dictionary& XiEqProperties);
|
virtual bool read(const dictionary& XiEqProperties);
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const SCOPEXiEq&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -75,17 +75,6 @@ protected:
|
|||||||
const volScalarField& Su_;
|
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:
|
public:
|
||||||
|
|
||||||
//- Runtime type information
|
//- Runtime type information
|
||||||
@ -114,10 +103,10 @@ public:
|
|||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
// Selectors
|
// Constructors
|
||||||
|
|
||||||
//- Return a reference to the selected XiEq model
|
//- Construct from components
|
||||||
static autoPtr<XiEqModel> New
|
XiEqModel
|
||||||
(
|
(
|
||||||
const dictionary& XiEqProperties,
|
const dictionary& XiEqProperties,
|
||||||
const psiuReactionThermo& thermo,
|
const psiuReactionThermo& thermo,
|
||||||
@ -125,11 +114,14 @@ public:
|
|||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
);
|
);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
XiEqModel(const XiEqModel&);
|
||||||
|
|
||||||
// Constructors
|
|
||||||
|
|
||||||
//- Construct from components
|
// Selectors
|
||||||
XiEqModel
|
|
||||||
|
//- Return a reference to the selected XiEq model
|
||||||
|
static autoPtr<XiEqModel> New
|
||||||
(
|
(
|
||||||
const dictionary& XiEqProperties,
|
const dictionary& XiEqProperties,
|
||||||
const psiuReactionThermo& thermo,
|
const psiuReactionThermo& thermo,
|
||||||
@ -158,6 +150,12 @@ public:
|
|||||||
|
|
||||||
//- Write fields
|
//- Write fields
|
||||||
void writeFields() const;
|
void writeFields() const;
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const XiEqModel&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -63,15 +63,6 @@ class instability
|
|||||||
autoPtr<XiEqModel> XiEqModel_;
|
autoPtr<XiEqModel> XiEqModel_;
|
||||||
|
|
||||||
|
|
||||||
// Private Member Functions
|
|
||||||
|
|
||||||
//- Disallow default bitwise copy construction
|
|
||||||
instability(const instability&);
|
|
||||||
|
|
||||||
//- Disallow default bitwise assignment
|
|
||||||
void operator=(const instability&) = delete;
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
//- Runtime type information
|
//- Runtime type information
|
||||||
@ -89,6 +80,9 @@ public:
|
|||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
);
|
);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
instability(const instability&);
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
virtual ~instability();
|
virtual ~instability();
|
||||||
@ -102,6 +96,11 @@ public:
|
|||||||
//- Update properties from given dictionary
|
//- Update properties from given dictionary
|
||||||
virtual bool read(const dictionary& XiEqProperties);
|
virtual bool read(const dictionary& XiEqProperties);
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const instability&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -58,15 +58,6 @@ class KTS
|
|||||||
scalar GEtaCoef_;
|
scalar GEtaCoef_;
|
||||||
|
|
||||||
|
|
||||||
// Private Member Functions
|
|
||||||
|
|
||||||
//- Disallow default bitwise copy construction
|
|
||||||
KTS(const KTS&);
|
|
||||||
|
|
||||||
//- Disallow default bitwise assignment
|
|
||||||
void operator=(const KTS&) = delete;
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
//- Runtime type information
|
//- Runtime type information
|
||||||
@ -84,6 +75,9 @@ public:
|
|||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
);
|
);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
KTS(const KTS&);
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
virtual ~KTS();
|
virtual ~KTS();
|
||||||
@ -96,6 +90,12 @@ public:
|
|||||||
|
|
||||||
//- Update properties from given dictionary
|
//- Update properties from given dictionary
|
||||||
virtual bool read(const dictionary& XiGProperties);
|
virtual bool read(const dictionary& XiGProperties);
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const KTS&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -66,17 +66,6 @@ protected:
|
|||||||
const volScalarField& Su_;
|
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:
|
public:
|
||||||
|
|
||||||
//- Runtime type information
|
//- Runtime type information
|
||||||
@ -105,10 +94,10 @@ public:
|
|||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
// Selectors
|
// Constructors
|
||||||
|
|
||||||
//- Return a reference to the selected XiG model
|
//- Construct from components
|
||||||
static autoPtr<XiGModel> New
|
XiGModel
|
||||||
(
|
(
|
||||||
const dictionary& XiGProperties,
|
const dictionary& XiGProperties,
|
||||||
const psiuReactionThermo& thermo,
|
const psiuReactionThermo& thermo,
|
||||||
@ -116,11 +105,14 @@ public:
|
|||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
);
|
);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
XiGModel(const XiGModel&);
|
||||||
|
|
||||||
// Constructors
|
|
||||||
|
|
||||||
//- Construct from components
|
// Selectors
|
||||||
XiGModel
|
|
||||||
|
//- Return a reference to the selected XiG model
|
||||||
|
static autoPtr<XiGModel> New
|
||||||
(
|
(
|
||||||
const dictionary& XiGProperties,
|
const dictionary& XiGProperties,
|
||||||
const psiuReactionThermo& thermo,
|
const psiuReactionThermo& thermo,
|
||||||
@ -146,6 +138,12 @@ public:
|
|||||||
|
|
||||||
//- Update properties from given dictionary
|
//- Update properties from given dictionary
|
||||||
virtual bool read(const dictionary& XiGProperties) = 0;
|
virtual bool read(const dictionary& XiGProperties) = 0;
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const XiGModel&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -67,15 +67,6 @@ class instabilityG
|
|||||||
autoPtr<XiGModel> XiGModel_;
|
autoPtr<XiGModel> XiGModel_;
|
||||||
|
|
||||||
|
|
||||||
// Private Member Functions
|
|
||||||
|
|
||||||
//- Disallow default bitwise copy construction
|
|
||||||
instabilityG(const instabilityG&);
|
|
||||||
|
|
||||||
//- Disallow default bitwise assignment
|
|
||||||
void operator=(const instabilityG&) = delete;
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
//- Runtime type information
|
//- Runtime type information
|
||||||
@ -93,6 +84,9 @@ public:
|
|||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
);
|
);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
instabilityG(const instabilityG&);
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
virtual ~instabilityG();
|
virtual ~instabilityG();
|
||||||
@ -108,6 +102,12 @@ public:
|
|||||||
|
|
||||||
//- Update properties from given dictionary
|
//- Update properties from given dictionary
|
||||||
virtual bool read(const dictionary& XiGProperties);
|
virtual bool read(const dictionary& XiGProperties);
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const instabilityG&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -126,17 +126,6 @@ protected:
|
|||||||
volScalarField Xi_;
|
volScalarField Xi_;
|
||||||
|
|
||||||
|
|
||||||
private:
|
|
||||||
|
|
||||||
// Private Member Functions
|
|
||||||
|
|
||||||
//- Disallow default bitwise copy construction
|
|
||||||
XiModel(const XiModel&);
|
|
||||||
|
|
||||||
//- Disallow default bitwise assignment
|
|
||||||
void operator=(const XiModel&) = delete;
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
//- Runtime type information
|
//- Runtime type information
|
||||||
@ -171,10 +160,10 @@ public:
|
|||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
// Selectors
|
// Constructors
|
||||||
|
|
||||||
//- Return a reference to the selected Xi model
|
//- Construct from components
|
||||||
static autoPtr<XiModel> New
|
XiModel
|
||||||
(
|
(
|
||||||
const dictionary& XiProperties,
|
const dictionary& XiProperties,
|
||||||
const psiuReactionThermo& thermo,
|
const psiuReactionThermo& thermo,
|
||||||
@ -185,11 +174,14 @@ public:
|
|||||||
const surfaceScalarField& phi
|
const surfaceScalarField& phi
|
||||||
);
|
);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
XiModel(const XiModel&);
|
||||||
|
|
||||||
// Constructors
|
|
||||||
|
|
||||||
//- Construct from components
|
// Selectors
|
||||||
XiModel
|
|
||||||
|
//- Return a reference to the selected Xi model
|
||||||
|
static autoPtr<XiModel> New
|
||||||
(
|
(
|
||||||
const dictionary& XiProperties,
|
const dictionary& XiProperties,
|
||||||
const psiuReactionThermo& thermo,
|
const psiuReactionThermo& thermo,
|
||||||
@ -241,6 +233,12 @@ public:
|
|||||||
|
|
||||||
//- Write fields related to Xi model
|
//- Write fields related to Xi model
|
||||||
virtual void writeFields() = 0;
|
virtual void writeFields() = 0;
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const XiModel&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -65,15 +65,6 @@ class algebraic
|
|||||||
autoPtr<XiGModel> XiGModel_;
|
autoPtr<XiGModel> XiGModel_;
|
||||||
|
|
||||||
|
|
||||||
// Private Member Functions
|
|
||||||
|
|
||||||
//- Disallow default bitwise copy construction
|
|
||||||
algebraic(const algebraic&);
|
|
||||||
|
|
||||||
//- Disallow default bitwise assignment
|
|
||||||
void operator=(const algebraic&) = delete;
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
//- Runtime type information
|
//- Runtime type information
|
||||||
@ -94,6 +85,9 @@ public:
|
|||||||
const surfaceScalarField& phi
|
const surfaceScalarField& phi
|
||||||
);
|
);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
algebraic(const algebraic&);
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
virtual ~algebraic();
|
virtual ~algebraic();
|
||||||
@ -116,6 +110,11 @@ public:
|
|||||||
XiEqModel_().writeFields();
|
XiEqModel_().writeFields();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const algebraic&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -53,15 +53,6 @@ class fixed
|
|||||||
:
|
:
|
||||||
public XiModel
|
public XiModel
|
||||||
{
|
{
|
||||||
// Private Member Functions
|
|
||||||
|
|
||||||
//- Disallow default bitwise copy construction
|
|
||||||
fixed(const fixed&);
|
|
||||||
|
|
||||||
//- Disallow default bitwise assignment
|
|
||||||
void operator=(const fixed&) = delete;
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
//- Runtime type information
|
//- Runtime type information
|
||||||
@ -82,6 +73,9 @@ public:
|
|||||||
const surfaceScalarField& phi
|
const surfaceScalarField& phi
|
||||||
);
|
);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
fixed(const fixed&);
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
virtual ~fixed();
|
virtual ~fixed();
|
||||||
@ -100,6 +94,11 @@ public:
|
|||||||
virtual void writeFields()
|
virtual void writeFields()
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const fixed&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -65,15 +65,6 @@ class transport
|
|||||||
autoPtr<XiGModel> XiGModel_;
|
autoPtr<XiGModel> XiGModel_;
|
||||||
|
|
||||||
|
|
||||||
// Private Member Functions
|
|
||||||
|
|
||||||
//- Disallow default bitwise copy construction
|
|
||||||
transport(const transport&);
|
|
||||||
|
|
||||||
//- Disallow default bitwise assignment
|
|
||||||
void operator=(const transport&) = delete;
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
//- Runtime type information
|
//- Runtime type information
|
||||||
@ -94,6 +85,9 @@ public:
|
|||||||
const surfaceScalarField& phi
|
const surfaceScalarField& phi
|
||||||
);
|
);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
transport(const transport&);
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
virtual ~transport();
|
virtual ~transport();
|
||||||
@ -130,6 +124,12 @@ public:
|
|||||||
{
|
{
|
||||||
XiEqModel_().writeFields();
|
XiEqModel_().writeFields();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const transport&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -96,18 +96,6 @@ class compressibleInterPhaseTransportModel
|
|||||||
> turbulence2_;
|
> turbulence2_;
|
||||||
|
|
||||||
|
|
||||||
// Private Member Functions
|
|
||||||
|
|
||||||
//- Disallow default bitwise copy construction
|
|
||||||
compressibleInterPhaseTransportModel
|
|
||||||
(
|
|
||||||
const compressibleInterPhaseTransportModel&
|
|
||||||
);
|
|
||||||
|
|
||||||
//- Disallow default bitwise assignment
|
|
||||||
void operator=(const compressibleInterPhaseTransportModel&) = delete;
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
// Constructors
|
// Constructors
|
||||||
@ -123,6 +111,12 @@ public:
|
|||||||
const twoPhaseMixtureThermo& mixture
|
const twoPhaseMixtureThermo& mixture
|
||||||
);
|
);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
compressibleInterPhaseTransportModel
|
||||||
|
(
|
||||||
|
const compressibleInterPhaseTransportModel&
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
// Member Functions
|
// Member Functions
|
||||||
|
|
||||||
@ -138,6 +132,12 @@ public:
|
|||||||
|
|
||||||
//- Correct the phase or mixture transport models
|
//- Correct the phase or mixture transport models
|
||||||
void correct();
|
void correct();
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const compressibleInterPhaseTransportModel&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -54,15 +54,6 @@ class VoFPatchTransfer
|
|||||||
:
|
:
|
||||||
public transferModel
|
public transferModel
|
||||||
{
|
{
|
||||||
// Private Member Functions
|
|
||||||
|
|
||||||
//- Disallow default bitwise copy construction
|
|
||||||
VoFPatchTransfer(const VoFPatchTransfer&) = delete;
|
|
||||||
|
|
||||||
//- Disallow default bitwise assignment
|
|
||||||
void operator=(const VoFPatchTransfer&) = delete;
|
|
||||||
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
//- Factor of the cell height above which the film is transferred
|
//- Factor of the cell height above which the film is transferred
|
||||||
@ -100,6 +91,9 @@ public:
|
|||||||
//- Construct from surface film model
|
//- Construct from surface film model
|
||||||
VoFPatchTransfer(surfaceFilmRegionModel& film, const dictionary& dict);
|
VoFPatchTransfer(surfaceFilmRegionModel& film, const dictionary& dict);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
VoFPatchTransfer(const VoFPatchTransfer&) = delete;
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
virtual ~VoFPatchTransfer();
|
virtual ~VoFPatchTransfer();
|
||||||
@ -128,6 +122,12 @@ public:
|
|||||||
(
|
(
|
||||||
scalarField& patchMasses
|
scalarField& patchMasses
|
||||||
) const;
|
) const;
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const VoFPatchTransfer&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -135,15 +135,6 @@ class VoFSolidificationMeltingSource
|
|||||||
template<class RhoFieldType>
|
template<class RhoFieldType>
|
||||||
void apply(const RhoFieldType& rho, fvMatrix<scalar>& eqn);
|
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:
|
public:
|
||||||
|
|
||||||
@ -162,6 +153,12 @@ public:
|
|||||||
const fvMesh& mesh
|
const fvMesh& mesh
|
||||||
);
|
);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
VoFSolidificationMeltingSource
|
||||||
|
(
|
||||||
|
const VoFSolidificationMeltingSource&
|
||||||
|
) = delete;
|
||||||
|
|
||||||
|
|
||||||
// Member Functions
|
// Member Functions
|
||||||
|
|
||||||
@ -197,6 +194,12 @@ public:
|
|||||||
|
|
||||||
//- Read source dictionary
|
//- Read source dictionary
|
||||||
virtual bool read(const dictionary& dict);
|
virtual bool read(const dictionary& dict);
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const VoFSolidificationMeltingSource&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -71,15 +71,6 @@ protected:
|
|||||||
const surfaceScalarField& phi_;
|
const surfaceScalarField& phi_;
|
||||||
|
|
||||||
|
|
||||||
// Private Member Functions
|
|
||||||
|
|
||||||
//- Disallow default bitwise copy construction
|
|
||||||
mixtureViscosityModel(const mixtureViscosityModel&);
|
|
||||||
|
|
||||||
//- Disallow default bitwise assignment
|
|
||||||
void operator=(const mixtureViscosityModel&) = delete;
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
//- Runtime type information
|
//- Runtime type information
|
||||||
@ -103,10 +94,10 @@ public:
|
|||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
// Selectors
|
// Constructors
|
||||||
|
|
||||||
//- Return a reference to the selected viscosity model
|
//- Construct from components
|
||||||
static autoPtr<mixtureViscosityModel> New
|
mixtureViscosityModel
|
||||||
(
|
(
|
||||||
const word& name,
|
const word& name,
|
||||||
const dictionary& viscosityProperties,
|
const dictionary& viscosityProperties,
|
||||||
@ -114,11 +105,14 @@ public:
|
|||||||
const surfaceScalarField& phi
|
const surfaceScalarField& phi
|
||||||
);
|
);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
mixtureViscosityModel(const mixtureViscosityModel&);
|
||||||
|
|
||||||
// Constructors
|
|
||||||
|
|
||||||
//- Construct from components
|
// Selectors
|
||||||
mixtureViscosityModel
|
|
||||||
|
//- Return a reference to the selected viscosity model
|
||||||
|
static autoPtr<mixtureViscosityModel> New
|
||||||
(
|
(
|
||||||
const word& name,
|
const word& name,
|
||||||
const dictionary& viscosityProperties,
|
const dictionary& viscosityProperties,
|
||||||
@ -146,6 +140,12 @@ public:
|
|||||||
|
|
||||||
//- Read transportProperties dictionary
|
//- Read transportProperties dictionary
|
||||||
virtual bool read(const dictionary& viscosityProperties) = 0;
|
virtual bool read(const dictionary& viscosityProperties) = 0;
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const mixtureViscosityModel&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -55,12 +55,6 @@ class relativeVelocityModel
|
|||||||
//- Return the list of patchFieldTypes for Udm derived from U
|
//- Return the list of patchFieldTypes for Udm derived from U
|
||||||
wordList UdmPatchFieldTypes() const;
|
wordList UdmPatchFieldTypes() const;
|
||||||
|
|
||||||
//- Disallow default bitwise copy construction
|
|
||||||
relativeVelocityModel(const relativeVelocityModel&) = delete;
|
|
||||||
|
|
||||||
//- Disallow default bitwise assignment
|
|
||||||
void operator=(const relativeVelocityModel&) = delete;
|
|
||||||
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
@ -114,6 +108,9 @@ public:
|
|||||||
const incompressibleTwoPhaseInteractingMixture& mixture
|
const incompressibleTwoPhaseInteractingMixture& mixture
|
||||||
);
|
);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
relativeVelocityModel(const relativeVelocityModel&) = delete;
|
||||||
|
|
||||||
|
|
||||||
// Selector
|
// Selector
|
||||||
static autoPtr<relativeVelocityModel> New
|
static autoPtr<relativeVelocityModel> New
|
||||||
@ -149,6 +146,12 @@ public:
|
|||||||
|
|
||||||
//- Update the diffusion velocity
|
//- Update the diffusion velocity
|
||||||
virtual void correct() = 0;
|
virtual void correct() = 0;
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const relativeVelocityModel&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -56,7 +56,6 @@ class phaseChangeTwoPhaseMixture
|
|||||||
:
|
:
|
||||||
public immiscibleIncompressibleTwoPhaseMixture
|
public immiscibleIncompressibleTwoPhaseMixture
|
||||||
{
|
{
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
// Protected data
|
// Protected data
|
||||||
@ -67,15 +66,6 @@ protected:
|
|||||||
dimensionedScalar pSat_;
|
dimensionedScalar pSat_;
|
||||||
|
|
||||||
|
|
||||||
// Private Member Functions
|
|
||||||
|
|
||||||
//- Disallow default bitwise copy construction
|
|
||||||
phaseChangeTwoPhaseMixture(const phaseChangeTwoPhaseMixture&);
|
|
||||||
|
|
||||||
//- Disallow default bitwise assignment
|
|
||||||
void operator=(const phaseChangeTwoPhaseMixture&) = delete;
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
//- Runtime type information
|
//- 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
|
// Constructors
|
||||||
|
|
||||||
//- Construct from components
|
//- Construct from components
|
||||||
@ -117,6 +97,19 @@ public:
|
|||||||
const surfaceScalarField& phi
|
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
|
//- Destructor
|
||||||
virtual ~phaseChangeTwoPhaseMixture()
|
virtual ~phaseChangeTwoPhaseMixture()
|
||||||
@ -154,6 +147,12 @@ public:
|
|||||||
|
|
||||||
//- Read the transportProperties dictionary and update
|
//- Read the transportProperties dictionary and update
|
||||||
virtual bool read() = 0;
|
virtual bool read() = 0;
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const phaseChangeTwoPhaseMixture&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -55,15 +55,6 @@ namespace wallBoilingModels
|
|||||||
|
|
||||||
class departureDiameterModel
|
class departureDiameterModel
|
||||||
{
|
{
|
||||||
// Private Member Functions
|
|
||||||
|
|
||||||
//- Disallow default bitwise copy construction
|
|
||||||
departureDiameterModel(const departureDiameterModel&) = delete;
|
|
||||||
|
|
||||||
//- Disallow default bitwise assignment
|
|
||||||
void operator=(const departureDiameterModel&) = delete;
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
//- Runtime type information
|
//- Runtime type information
|
||||||
@ -88,6 +79,9 @@ public:
|
|||||||
//- Construct null
|
//- Construct null
|
||||||
departureDiameterModel();
|
departureDiameterModel();
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
departureDiameterModel(const departureDiameterModel&) = delete;
|
||||||
|
|
||||||
|
|
||||||
// Selectors
|
// Selectors
|
||||||
|
|
||||||
@ -113,6 +107,12 @@ public:
|
|||||||
) const = 0;
|
) const = 0;
|
||||||
|
|
||||||
virtual void write(Ostream& os) const;
|
virtual void write(Ostream& os) const;
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const departureDiameterModel&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -55,15 +55,6 @@ namespace wallBoilingModels
|
|||||||
|
|
||||||
class departureFrequencyModel
|
class departureFrequencyModel
|
||||||
{
|
{
|
||||||
// Private Member Functions
|
|
||||||
|
|
||||||
//- Disallow default bitwise copy construction
|
|
||||||
departureFrequencyModel(const departureFrequencyModel&) = delete;
|
|
||||||
|
|
||||||
//- Disallow default bitwise assignment
|
|
||||||
void operator=(const departureFrequencyModel&) = delete;
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
//- Runtime type information
|
//- Runtime type information
|
||||||
@ -88,6 +79,9 @@ public:
|
|||||||
//- Construct null
|
//- Construct null
|
||||||
departureFrequencyModel();
|
departureFrequencyModel();
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
departureFrequencyModel(const departureFrequencyModel&) = delete;
|
||||||
|
|
||||||
|
|
||||||
// Selectors
|
// Selectors
|
||||||
|
|
||||||
@ -111,6 +105,12 @@ public:
|
|||||||
) const = 0;
|
) const = 0;
|
||||||
|
|
||||||
virtual void write(Ostream& os) const;
|
virtual void write(Ostream& os) const;
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const departureFrequencyModel&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -55,15 +55,6 @@ namespace wallBoilingModels
|
|||||||
|
|
||||||
class nucleationSiteModel
|
class nucleationSiteModel
|
||||||
{
|
{
|
||||||
// Private Member Functions
|
|
||||||
|
|
||||||
//- Disallow default bitwise copy construction
|
|
||||||
nucleationSiteModel(const nucleationSiteModel&) = delete;
|
|
||||||
|
|
||||||
//- Disallow default bitwise assignment
|
|
||||||
void operator=(const nucleationSiteModel&) = delete;
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
//- Runtime type information
|
//- Runtime type information
|
||||||
@ -88,6 +79,9 @@ public:
|
|||||||
//- Construct null
|
//- Construct null
|
||||||
nucleationSiteModel();
|
nucleationSiteModel();
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
nucleationSiteModel(const nucleationSiteModel&) = delete;
|
||||||
|
|
||||||
|
|
||||||
// Selectors
|
// Selectors
|
||||||
|
|
||||||
@ -113,6 +107,12 @@ public:
|
|||||||
) const = 0;
|
) const = 0;
|
||||||
|
|
||||||
virtual void write(Ostream& os) const;
|
virtual void write(Ostream& os) const;
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const nucleationSiteModel&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -53,15 +53,6 @@ namespace wallBoilingModels
|
|||||||
|
|
||||||
class partitioningModel
|
class partitioningModel
|
||||||
{
|
{
|
||||||
// Private Member Functions
|
|
||||||
|
|
||||||
//- Disallow default bitwise copy construction
|
|
||||||
partitioningModel(const partitioningModel&) = delete;
|
|
||||||
|
|
||||||
//- Disallow default bitwise assignment
|
|
||||||
void operator=(const partitioningModel&) = delete;
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
//- Runtime type information
|
//- Runtime type information
|
||||||
@ -86,6 +77,9 @@ public:
|
|||||||
//- Construct null
|
//- Construct null
|
||||||
partitioningModel();
|
partitioningModel();
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
partitioningModel(const partitioningModel&) = delete;
|
||||||
|
|
||||||
|
|
||||||
// Selectors
|
// Selectors
|
||||||
|
|
||||||
@ -106,6 +100,12 @@ public:
|
|||||||
) const = 0;
|
) const = 0;
|
||||||
|
|
||||||
virtual void write(Ostream& os) const;
|
virtual void write(Ostream& os) const;
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const partitioningModel&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -88,15 +88,6 @@ class phaseForces
|
|||||||
:
|
:
|
||||||
public fvMeshFunctionObject
|
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:
|
||||||
|
|
||||||
// Protected data
|
// Protected data
|
||||||
@ -133,6 +124,9 @@ public:
|
|||||||
const dictionary&
|
const dictionary&
|
||||||
);
|
);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
phaseForces(const phaseForces&) = delete;
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
virtual ~phaseForces();
|
virtual ~phaseForces();
|
||||||
@ -148,6 +142,12 @@ public:
|
|||||||
|
|
||||||
//- Write the force fields
|
//- Write the force fields
|
||||||
virtual bool write();
|
virtual bool write();
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const phaseForces&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -53,15 +53,6 @@ class saturationModel
|
|||||||
:
|
:
|
||||||
public IOdictionary
|
public IOdictionary
|
||||||
{
|
{
|
||||||
// Private Member Functions
|
|
||||||
|
|
||||||
//- Disallow default bitwise copy construction
|
|
||||||
saturationModel(const saturationModel&) = delete;
|
|
||||||
|
|
||||||
//- Disallow default bitwise assignment
|
|
||||||
void operator=(const saturationModel&) = delete;
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
//- Runtime type information
|
//- Runtime type information
|
||||||
@ -86,6 +77,9 @@ public:
|
|||||||
//- Construct null
|
//- Construct null
|
||||||
saturationModel(const objectRegistry& db);
|
saturationModel(const objectRegistry& db);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
saturationModel(const saturationModel&) = delete;
|
||||||
|
|
||||||
|
|
||||||
// Selectors
|
// Selectors
|
||||||
|
|
||||||
@ -126,6 +120,12 @@ public:
|
|||||||
(
|
(
|
||||||
const volScalarField& p
|
const volScalarField& p
|
||||||
) const = 0;
|
) const = 0;
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const saturationModel&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -56,15 +56,6 @@ class wallDependentModel
|
|||||||
const fvMesh& mesh_;
|
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:
|
public:
|
||||||
|
|
||||||
// Constructors
|
// Constructors
|
||||||
@ -72,10 +63,14 @@ public:
|
|||||||
//- Construct from a mesh
|
//- Construct from a mesh
|
||||||
wallDependentModel(const fvMesh& mesh);
|
wallDependentModel(const fvMesh& mesh);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
wallDependentModel(const wallDependentModel&) = delete;
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
virtual ~wallDependentModel();
|
virtual ~wallDependentModel();
|
||||||
|
|
||||||
|
|
||||||
// Member Functions
|
// Member Functions
|
||||||
|
|
||||||
// Return the wall distance, creating and storing it if necessary
|
// 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
|
// Return the wall normal, creating and storing it if necessary
|
||||||
const volVectorField& nWall() const;
|
const volVectorField& nWall() const;
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const wallDependentModel&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -94,15 +94,6 @@ class BlendedInterfacialModel
|
|||||||
|
|
||||||
// Private Member Functions
|
// 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
|
//- Correct coeff/value on fixed flux boundary conditions
|
||||||
template<class GeoField>
|
template<class GeoField>
|
||||||
void correctFixedFluxBCs(GeoField& field) const;
|
void correctFixedFluxBCs(GeoField& field) const;
|
||||||
@ -158,6 +149,12 @@ public:
|
|||||||
const bool correctFixedFluxBCs = true
|
const bool correctFixedFluxBCs = true
|
||||||
);
|
);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
BlendedInterfacialModel
|
||||||
|
(
|
||||||
|
const BlendedInterfacialModel<ModelType>&
|
||||||
|
) = delete;
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
~BlendedInterfacialModel();
|
~BlendedInterfacialModel();
|
||||||
@ -198,6 +195,12 @@ public:
|
|||||||
|
|
||||||
//- Dummy write for regIOobject
|
//- Dummy write for regIOobject
|
||||||
bool writeData(Ostream& os) const;
|
bool writeData(Ostream& os) const;
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const BlendedInterfacialModel<ModelType>&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -50,15 +50,6 @@ namespace kineticTheoryModels
|
|||||||
|
|
||||||
class conductivityModel
|
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:
|
||||||
|
|
||||||
// Protected data
|
// Protected data
|
||||||
@ -89,6 +80,9 @@ public:
|
|||||||
//- Construct from components
|
//- Construct from components
|
||||||
conductivityModel(const dictionary& dict);
|
conductivityModel(const dictionary& dict);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
conductivityModel(const conductivityModel&) = delete;
|
||||||
|
|
||||||
|
|
||||||
// Selectors
|
// Selectors
|
||||||
|
|
||||||
@ -118,6 +112,12 @@ public:
|
|||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const conductivityModel&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -51,15 +51,6 @@ namespace kineticTheoryModels
|
|||||||
|
|
||||||
class frictionalStressModel
|
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:
|
||||||
|
|
||||||
// Protected data
|
// Protected data
|
||||||
@ -91,6 +82,9 @@ public:
|
|||||||
//- Construct from components
|
//- Construct from components
|
||||||
frictionalStressModel(const dictionary& dict);
|
frictionalStressModel(const dictionary& dict);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
frictionalStressModel(const frictionalStressModel&) = delete;
|
||||||
|
|
||||||
|
|
||||||
// Selectors
|
// Selectors
|
||||||
|
|
||||||
@ -130,6 +124,12 @@ public:
|
|||||||
) const = 0;
|
) const = 0;
|
||||||
|
|
||||||
virtual bool read() = 0;
|
virtual bool read() = 0;
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const frictionalStressModel&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -50,15 +50,6 @@ namespace kineticTheoryModels
|
|||||||
|
|
||||||
class granularPressureModel
|
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:
|
||||||
|
|
||||||
// Protected data
|
// Protected data
|
||||||
@ -89,6 +80,9 @@ public:
|
|||||||
//- Construct from components
|
//- Construct from components
|
||||||
granularPressureModel(const dictionary& dict);
|
granularPressureModel(const dictionary& dict);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
granularPressureModel(const granularPressureModel&) = delete;
|
||||||
|
|
||||||
|
|
||||||
// Selectors
|
// Selectors
|
||||||
|
|
||||||
@ -127,6 +121,12 @@ public:
|
|||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const granularPressureModel&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -147,12 +147,6 @@ class kineticTheoryModel
|
|||||||
void correctNut()
|
void correctNut()
|
||||||
{}
|
{}
|
||||||
|
|
||||||
//- Disallow default bitwise copy construction
|
|
||||||
kineticTheoryModel(const kineticTheoryModel&) = delete;
|
|
||||||
|
|
||||||
//- Disallow default bitwise assignment
|
|
||||||
void operator=(const kineticTheoryModel&) = delete;
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
@ -175,6 +169,9 @@ public:
|
|||||||
const word& type = typeName
|
const word& type = typeName
|
||||||
);
|
);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
kineticTheoryModel(const kineticTheoryModel&) = delete;
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
virtual ~kineticTheoryModel();
|
virtual ~kineticTheoryModel();
|
||||||
@ -222,6 +219,12 @@ public:
|
|||||||
|
|
||||||
//- Solve the kinetic theory equations and correct the viscosity
|
//- Solve the kinetic theory equations and correct the viscosity
|
||||||
virtual void correct();
|
virtual void correct();
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const kineticTheoryModel&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -50,15 +50,6 @@ namespace kineticTheoryModels
|
|||||||
|
|
||||||
class radialModel
|
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:
|
||||||
|
|
||||||
// Protected data
|
// Protected data
|
||||||
@ -89,6 +80,9 @@ public:
|
|||||||
//- Construct from components
|
//- Construct from components
|
||||||
radialModel(const dictionary& dict);
|
radialModel(const dictionary& dict);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
radialModel(const radialModel&) = delete;
|
||||||
|
|
||||||
|
|
||||||
// Selectors
|
// Selectors
|
||||||
|
|
||||||
@ -124,6 +118,12 @@ public:
|
|||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const radialModel&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -52,15 +52,6 @@ namespace kineticTheoryModels
|
|||||||
|
|
||||||
class viscosityModel
|
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:
|
||||||
|
|
||||||
// Protected data
|
// Protected data
|
||||||
@ -91,6 +82,9 @@ public:
|
|||||||
//- Construct from components
|
//- Construct from components
|
||||||
viscosityModel(const dictionary& dict);
|
viscosityModel(const dictionary& dict);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
viscosityModel(const viscosityModel&) = delete;
|
||||||
|
|
||||||
|
|
||||||
// Selectors
|
// Selectors
|
||||||
|
|
||||||
@ -120,6 +114,12 @@ public:
|
|||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const viscosityModel&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -102,12 +102,6 @@ class phasePressureModel
|
|||||||
void correctNut()
|
void correctNut()
|
||||||
{}
|
{}
|
||||||
|
|
||||||
//- Disallow default bitwise copy construction
|
|
||||||
phasePressureModel(const phasePressureModel&) = delete;
|
|
||||||
|
|
||||||
//- Disallow default bitwise assignment
|
|
||||||
void operator=(const phasePressureModel&) = delete;
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
@ -130,6 +124,9 @@ public:
|
|||||||
const word& type = typeName
|
const word& type = typeName
|
||||||
);
|
);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
phasePressureModel(const phasePressureModel&) = delete;
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
virtual ~phasePressureModel();
|
virtual ~phasePressureModel();
|
||||||
@ -177,6 +174,12 @@ public:
|
|||||||
|
|
||||||
//- Solve the kinetic theory equations and correct the viscosity
|
//- Solve the kinetic theory equations and correct the viscosity
|
||||||
virtual void correct();
|
virtual void correct();
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const phasePressureModel&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -56,15 +56,6 @@ class wallDependentModel
|
|||||||
const fvMesh& mesh_;
|
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:
|
public:
|
||||||
|
|
||||||
// Constructors
|
// Constructors
|
||||||
@ -72,6 +63,9 @@ public:
|
|||||||
//- Construct from a mesh
|
//- Construct from a mesh
|
||||||
wallDependentModel(const fvMesh& mesh);
|
wallDependentModel(const fvMesh& mesh);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
wallDependentModel(const wallDependentModel&) = delete;
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
virtual ~wallDependentModel();
|
virtual ~wallDependentModel();
|
||||||
@ -83,6 +77,12 @@ public:
|
|||||||
|
|
||||||
// Return the wall normal, creating and storing it if necessary
|
// Return the wall normal, creating and storing it if necessary
|
||||||
const volVectorField& nWall() const;
|
const volVectorField& nWall() const;
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const wallDependentModel&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -50,15 +50,6 @@ namespace kineticTheoryModels
|
|||||||
|
|
||||||
class conductivityModel
|
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:
|
||||||
|
|
||||||
// Protected data
|
// Protected data
|
||||||
@ -89,6 +80,9 @@ public:
|
|||||||
//- Construct from components
|
//- Construct from components
|
||||||
conductivityModel(const dictionary& dict);
|
conductivityModel(const dictionary& dict);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
conductivityModel(const conductivityModel&) = delete;
|
||||||
|
|
||||||
|
|
||||||
// Selectors
|
// Selectors
|
||||||
|
|
||||||
@ -118,6 +112,12 @@ public:
|
|||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const conductivityModel&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -51,15 +51,6 @@ namespace kineticTheoryModels
|
|||||||
|
|
||||||
class frictionalStressModel
|
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:
|
||||||
|
|
||||||
// Protected data
|
// Protected data
|
||||||
@ -91,6 +82,9 @@ public:
|
|||||||
//- Construct from components
|
//- Construct from components
|
||||||
frictionalStressModel(const dictionary& dict);
|
frictionalStressModel(const dictionary& dict);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
frictionalStressModel(const frictionalStressModel&) = delete;
|
||||||
|
|
||||||
|
|
||||||
// Selectors
|
// Selectors
|
||||||
|
|
||||||
@ -130,6 +124,12 @@ public:
|
|||||||
) const = 0;
|
) const = 0;
|
||||||
|
|
||||||
virtual bool read() = 0;
|
virtual bool read() = 0;
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const frictionalStressModel&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -50,15 +50,6 @@ namespace kineticTheoryModels
|
|||||||
|
|
||||||
class granularPressureModel
|
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:
|
||||||
|
|
||||||
// Protected data
|
// Protected data
|
||||||
@ -89,6 +80,9 @@ public:
|
|||||||
//- Construct from components
|
//- Construct from components
|
||||||
granularPressureModel(const dictionary& dict);
|
granularPressureModel(const dictionary& dict);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
granularPressureModel(const granularPressureModel&) = delete;
|
||||||
|
|
||||||
|
|
||||||
// Selectors
|
// Selectors
|
||||||
|
|
||||||
@ -127,6 +121,12 @@ public:
|
|||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const granularPressureModel&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -147,12 +147,6 @@ class kineticTheoryModel
|
|||||||
void correctNut()
|
void correctNut()
|
||||||
{}
|
{}
|
||||||
|
|
||||||
//- Disallow default bitwise copy construction
|
|
||||||
kineticTheoryModel(const kineticTheoryModel&) = delete;
|
|
||||||
|
|
||||||
//- Disallow default bitwise assignment
|
|
||||||
void operator=(const kineticTheoryModel&) = delete;
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
@ -175,6 +169,9 @@ public:
|
|||||||
const word& type = typeName
|
const word& type = typeName
|
||||||
);
|
);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
kineticTheoryModel(const kineticTheoryModel&) = delete;
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
virtual ~kineticTheoryModel();
|
virtual ~kineticTheoryModel();
|
||||||
@ -222,6 +219,12 @@ public:
|
|||||||
|
|
||||||
//- Solve the kinetic theory equations and correct the viscosity
|
//- Solve the kinetic theory equations and correct the viscosity
|
||||||
virtual void correct();
|
virtual void correct();
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const kineticTheoryModel&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -50,15 +50,6 @@ namespace kineticTheoryModels
|
|||||||
|
|
||||||
class radialModel
|
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:
|
||||||
|
|
||||||
// Protected data
|
// Protected data
|
||||||
@ -89,6 +80,9 @@ public:
|
|||||||
//- Construct from components
|
//- Construct from components
|
||||||
radialModel(const dictionary& dict);
|
radialModel(const dictionary& dict);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
radialModel(const radialModel&) = delete;
|
||||||
|
|
||||||
|
|
||||||
// Selectors
|
// Selectors
|
||||||
|
|
||||||
@ -124,6 +118,12 @@ public:
|
|||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const radialModel&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -52,15 +52,6 @@ namespace kineticTheoryModels
|
|||||||
|
|
||||||
class viscosityModel
|
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:
|
||||||
|
|
||||||
// Protected data
|
// Protected data
|
||||||
@ -91,6 +82,9 @@ public:
|
|||||||
//- Construct from components
|
//- Construct from components
|
||||||
viscosityModel(const dictionary& dict);
|
viscosityModel(const dictionary& dict);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
viscosityModel(const viscosityModel&) = delete;
|
||||||
|
|
||||||
|
|
||||||
// Selectors
|
// Selectors
|
||||||
|
|
||||||
@ -120,6 +114,12 @@ public:
|
|||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const viscosityModel&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -106,12 +106,6 @@ class phasePressureModel
|
|||||||
void correctNut()
|
void correctNut()
|
||||||
{}
|
{}
|
||||||
|
|
||||||
//- Disallow default bitwise copy construction
|
|
||||||
phasePressureModel(const phasePressureModel&) = delete;
|
|
||||||
|
|
||||||
//- Disallow default bitwise assignment
|
|
||||||
void operator=(const phasePressureModel&) = delete;
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
@ -134,6 +128,9 @@ public:
|
|||||||
const word& type = typeName
|
const word& type = typeName
|
||||||
);
|
);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
phasePressureModel(const phasePressureModel&) = delete;
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
virtual ~phasePressureModel();
|
virtual ~phasePressureModel();
|
||||||
@ -181,6 +178,12 @@ public:
|
|||||||
|
|
||||||
//- Solve the kinetic theory equations and correct the viscosity
|
//- Solve the kinetic theory equations and correct the viscosity
|
||||||
virtual void correct();
|
virtual void correct();
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const phasePressureModel&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -81,15 +81,6 @@ class BlendedInterfacialModel
|
|||||||
|
|
||||||
// Private Member Functions
|
// 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
|
//- Correct coeff/value on fixed flux boundary conditions
|
||||||
template<class GeometricField>
|
template<class GeometricField>
|
||||||
void correctFixedFluxBCs(GeometricField& field) const;
|
void correctFixedFluxBCs(GeometricField& field) const;
|
||||||
@ -110,6 +101,12 @@ public:
|
|||||||
const bool correctFixedFluxBCs = true
|
const bool correctFixedFluxBCs = true
|
||||||
);
|
);
|
||||||
|
|
||||||
|
//- Disallow default bitwise copy construction
|
||||||
|
BlendedInterfacialModel
|
||||||
|
(
|
||||||
|
const BlendedInterfacialModel<modelType>&
|
||||||
|
) = delete;
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
~BlendedInterfacialModel();
|
~BlendedInterfacialModel();
|
||||||
@ -138,6 +135,12 @@ public:
|
|||||||
|
|
||||||
//- Return the blended diffusivity
|
//- Return the blended diffusivity
|
||||||
tmp<volScalarField> D() const;
|
tmp<volScalarField> D() const;
|
||||||
|
|
||||||
|
|
||||||
|
// Member Operators
|
||||||
|
|
||||||
|
//- Disallow default bitwise assignment
|
||||||
|
void operator=(const BlendedInterfacialModel<modelType>&) = delete;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user