Completed standardisation of the class declaration section comments to correspond to the foamNewSource template
This commit is contained in:
@ -72,15 +72,6 @@ class XiReactionRate
|
||||
:
|
||||
public fvMeshFunctionObject
|
||||
{
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
XiReactionRate(const XiReactionRate&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const XiReactionRate&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
@ -97,6 +88,9 @@ public:
|
||||
const dictionary& dict
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
XiReactionRate(const XiReactionRate&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~XiReactionRate();
|
||||
@ -109,6 +103,12 @@ public:
|
||||
|
||||
//- Write the cell-centre fields
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const XiReactionRate&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -257,13 +257,6 @@ protected:
|
||||
void readAveragingProperties();
|
||||
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
fieldAverage(const fieldAverage&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const fieldAverage&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
@ -280,6 +273,9 @@ public:
|
||||
const dictionary&
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
fieldAverage(const fieldAverage&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~fieldAverage();
|
||||
@ -295,6 +291,12 @@ public:
|
||||
|
||||
//- Write the field averages
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const fieldAverage&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -76,17 +76,6 @@ protected:
|
||||
bool foundObject(const word& name);
|
||||
|
||||
|
||||
private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
fieldExpression(const fieldExpression&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const fieldExpression&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
@ -105,6 +94,9 @@ public:
|
||||
const word& resultName = word::null
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
fieldExpression(const fieldExpression&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~fieldExpression();
|
||||
@ -123,6 +115,12 @@ public:
|
||||
|
||||
//- Clear the result field from the objectRegistry
|
||||
virtual bool clear();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const fieldExpression&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -138,12 +138,6 @@ protected:
|
||||
const Type& maxValue
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
fieldMinMax(const fieldMinMax&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const fieldMinMax&) = delete;
|
||||
|
||||
//- Calculate the field min/max
|
||||
template<class Type>
|
||||
void calcMinMaxFields
|
||||
@ -172,6 +166,9 @@ public:
|
||||
const dictionary& dict
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
fieldMinMax(const fieldMinMax&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~fieldMinMax();
|
||||
@ -187,6 +184,12 @@ public:
|
||||
|
||||
//- Write the fieldMinMax
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const fieldMinMax&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -91,17 +91,6 @@ protected:
|
||||
virtual bool calc() = 0;
|
||||
|
||||
|
||||
private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
fieldsExpression(const fieldsExpression&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const fieldsExpression&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
@ -120,6 +109,9 @@ public:
|
||||
const word& resultName = word::null
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
fieldsExpression(const fieldsExpression&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~fieldsExpression();
|
||||
@ -138,6 +130,12 @@ public:
|
||||
|
||||
//- Clear the result fields from the objectRegistry
|
||||
virtual bool clear();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const fieldsExpression&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -115,12 +115,6 @@ class histogram
|
||||
const scalarField& values
|
||||
) const;
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
histogram(const histogram&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const histogram&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -138,6 +132,9 @@ public:
|
||||
const dictionary& dict
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
histogram(const histogram&) = delete;
|
||||
|
||||
|
||||
// Destructor
|
||||
virtual ~histogram();
|
||||
@ -155,6 +152,12 @@ public:
|
||||
// postProcess overrides the usual writeControl behaviour and
|
||||
// forces writing always (used in post-processing mode)
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const histogram&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -165,14 +165,6 @@ protected:
|
||||
) const;
|
||||
|
||||
|
||||
private:
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
nearWallFields(const nearWallFields&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const nearWallFields&) = delete;
|
||||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
@ -190,6 +182,9 @@ public:
|
||||
const dictionary& dict
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
nearWallFields(const nearWallFields&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~nearWallFields();
|
||||
@ -205,6 +200,12 @@ public:
|
||||
|
||||
//- Write the near-wall fields
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const nearWallFields&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -72,15 +72,6 @@ class processorField
|
||||
:
|
||||
public fvMeshFunctionObject
|
||||
{
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
processorField(const processorField&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const processorField&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
@ -97,6 +88,9 @@ public:
|
||||
const dictionary& dict
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
processorField(const processorField&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~processorField();
|
||||
@ -112,6 +106,12 @@ public:
|
||||
|
||||
//- Write the processorID field
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const processorField&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -112,17 +112,6 @@ protected:
|
||||
) const;
|
||||
|
||||
|
||||
private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
readFields(const readFields&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const readFields&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
@ -140,6 +129,9 @@ public:
|
||||
const dictionary& dict
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
readFields(const readFields&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~readFields();
|
||||
@ -155,6 +147,12 @@ public:
|
||||
|
||||
//- Do nothing
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const readFields&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -221,12 +221,6 @@ class regionSizeDistribution
|
||||
const coordSet& coords // graph data for bins
|
||||
) const;
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
regionSizeDistribution(const regionSizeDistribution&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const regionSizeDistribution&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -245,6 +239,9 @@ public:
|
||||
const dictionary&
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
regionSizeDistribution(const regionSizeDistribution&) = delete;
|
||||
|
||||
|
||||
// Destructor
|
||||
|
||||
@ -261,6 +258,12 @@ public:
|
||||
|
||||
//- Calculate the regionSizeDistribution and write
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const regionSizeDistribution&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -224,12 +224,6 @@ private:
|
||||
//- Do all seeding and tracking
|
||||
void track();
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
streamLine(const streamLine&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const streamLine&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -247,6 +241,9 @@ public:
|
||||
const dictionary& dict
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
streamLine(const streamLine&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~streamLine();
|
||||
@ -268,6 +265,12 @@ public:
|
||||
|
||||
//- Update for mesh point-motion
|
||||
virtual void movePoints(const polyMesh&);
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const streamLine&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -51,15 +51,6 @@ class streamLineParticleCloud
|
||||
:
|
||||
public Cloud<streamLineParticle>
|
||||
{
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
streamLineParticleCloud(const streamLineParticleCloud&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const streamLineParticleCloud&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
//- Type of parcel the cloud was instantiated for
|
||||
@ -82,6 +73,15 @@ public:
|
||||
const word& cloudName,
|
||||
const IDLList<streamLineParticle>& particles
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
streamLineParticleCloud(const streamLineParticleCloud&) = delete;
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const streamLineParticleCloud&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -115,17 +115,6 @@ protected:
|
||||
) const;
|
||||
|
||||
|
||||
private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
surfaceInterpolate(const surfaceInterpolate&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const surfaceInterpolate&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
@ -143,6 +132,9 @@ public:
|
||||
const dictionary& dict
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
surfaceInterpolate(const surfaceInterpolate&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~surfaceInterpolate();
|
||||
@ -158,6 +150,12 @@ public:
|
||||
|
||||
//- Write the interpolated fields
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const surfaceInterpolate&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -163,17 +163,6 @@ protected:
|
||||
tmp<volScalarField> omega(const Model& model) const;
|
||||
|
||||
|
||||
private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
turbulenceFields(const turbulenceFields&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const turbulenceFields&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
@ -190,6 +179,9 @@ public:
|
||||
const dictionary& dict
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
turbulenceFields(const turbulenceFields&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~turbulenceFields();
|
||||
@ -206,6 +198,12 @@ public:
|
||||
//- Do nothing.
|
||||
// The turbulence fields are registered and written automatically
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const turbulenceFields&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -108,12 +108,6 @@ class turbulenceIntensity
|
||||
//- File header information
|
||||
virtual void writeFileHeader(const label i);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
turbulenceIntensity(const turbulenceIntensity&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const turbulenceIntensity&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -131,6 +125,9 @@ public:
|
||||
const dictionary& dict
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
turbulenceIntensity(const turbulenceIntensity&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~turbulenceIntensity();
|
||||
@ -146,6 +143,12 @@ public:
|
||||
|
||||
//- Write the turbulenceIntensity field
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const turbulenceIntensity&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -115,17 +115,6 @@ protected:
|
||||
);
|
||||
|
||||
|
||||
private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
wallHeatFlux(const wallHeatFlux&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const wallHeatFlux&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
@ -142,6 +131,9 @@ public:
|
||||
const dictionary&
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
wallHeatFlux(const wallHeatFlux&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~wallHeatFlux();
|
||||
@ -157,6 +149,12 @@ public:
|
||||
|
||||
//- Write the wall heat-flux
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const wallHeatFlux&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -137,17 +137,6 @@ protected:
|
||||
);
|
||||
|
||||
|
||||
private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
wallHeatTransferCoeff(const wallHeatTransferCoeff&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const wallHeatTransferCoeff&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
@ -164,6 +153,9 @@ public:
|
||||
const dictionary&
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
wallHeatTransferCoeff(const wallHeatTransferCoeff&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~wallHeatTransferCoeff();
|
||||
@ -179,6 +171,12 @@ public:
|
||||
|
||||
//- Write the wall heat transfer coefficient
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const wallHeatTransferCoeff&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -123,17 +123,6 @@ protected:
|
||||
);
|
||||
|
||||
|
||||
private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
wallShearStress(const wallShearStress&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const wallShearStress&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
@ -150,6 +139,9 @@ public:
|
||||
const dictionary&
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
wallShearStress(const wallShearStress&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~wallShearStress();
|
||||
@ -165,6 +157,12 @@ public:
|
||||
|
||||
//- Write the wall shear-stress
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const wallShearStress&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -72,15 +72,6 @@ class writeCellCentres
|
||||
:
|
||||
public fvMeshFunctionObject
|
||||
{
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
writeCellCentres(const writeCellCentres&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const writeCellCentres&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
@ -97,6 +88,9 @@ public:
|
||||
const dictionary& dict
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
writeCellCentres(const writeCellCentres&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~writeCellCentres();
|
||||
@ -109,6 +103,12 @@ public:
|
||||
|
||||
//- Write the cell-centre fields
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const writeCellCentres&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -71,15 +71,6 @@ class writeCellVolumes
|
||||
:
|
||||
public fvMeshFunctionObject
|
||||
{
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
writeCellVolumes(const writeCellVolumes&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const writeCellVolumes&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
@ -96,6 +87,9 @@ public:
|
||||
const dictionary& dict
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
writeCellVolumes(const writeCellVolumes&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~writeCellVolumes();
|
||||
@ -108,6 +102,12 @@ public:
|
||||
|
||||
//- Write the cell-centre fields
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const writeCellVolumes&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -100,12 +100,6 @@ class yPlus
|
||||
const turbulenceModel& turbModel
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
yPlus(const yPlus&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const yPlus&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -123,6 +117,9 @@ public:
|
||||
const dictionary& dict
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
yPlus(const yPlus&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~yPlus();
|
||||
@ -138,6 +135,12 @@ public:
|
||||
|
||||
//- Write the yPlus field
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const yPlus&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -135,15 +135,6 @@ class forceCoeffs
|
||||
scalar Aref_;
|
||||
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
forceCoeffs(const forceCoeffs&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const forceCoeffs&) = delete;
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
//- Output file header information
|
||||
@ -166,6 +157,9 @@ public:
|
||||
const dictionary&
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
forceCoeffs(const forceCoeffs&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~forceCoeffs();
|
||||
@ -181,6 +175,12 @@ public:
|
||||
|
||||
//- Write the forces
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const forceCoeffs&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -260,12 +260,6 @@ protected:
|
||||
//- Helper function to write bin data
|
||||
void writeBins();
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
forces(const forces&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const forces&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -291,6 +285,9 @@ public:
|
||||
const dictionary&
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
forces(const forces&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~forces();
|
||||
@ -315,6 +312,12 @@ public:
|
||||
|
||||
//- Write the forces
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const forces&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -96,17 +96,6 @@ protected:
|
||||
virtual void writeFileHeader(const label i);
|
||||
|
||||
|
||||
private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
cloudInfo(const cloudInfo&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const cloudInfo&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
@ -123,6 +112,9 @@ public:
|
||||
const dictionary&
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
cloudInfo(const cloudInfo&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~cloudInfo();
|
||||
@ -138,6 +130,12 @@ public:
|
||||
|
||||
//- Write
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const cloudInfo&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -60,15 +60,6 @@ class dsmcFields
|
||||
:
|
||||
public fvMeshFunctionObject
|
||||
{
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
dsmcFields(const dsmcFields&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const dsmcFields&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
@ -85,6 +76,9 @@ public:
|
||||
const dictionary& dict
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
dsmcFields(const dsmcFields&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~dsmcFields();
|
||||
@ -100,6 +94,12 @@ public:
|
||||
|
||||
//- Calculate and write the DSMC fields
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const dsmcFields&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -118,15 +118,6 @@ class icoUncoupledKinematicCloud
|
||||
basicKinematicCollidingCloud kinematicCloud_;
|
||||
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
icoUncoupledKinematicCloud(const icoUncoupledKinematicCloud&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator==(const icoUncoupledKinematicCloud&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
@ -144,6 +135,9 @@ public:
|
||||
const dictionary& dict
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
icoUncoupledKinematicCloud(const icoUncoupledKinematicCloud&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~icoUncoupledKinematicCloud();
|
||||
@ -159,6 +153,12 @@ public:
|
||||
|
||||
//- Write the cloud
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator==(const icoUncoupledKinematicCloud&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -111,12 +111,6 @@ class scalarTransport
|
||||
//- Return the diffusivity field
|
||||
tmp<volScalarField> D(const surfaceScalarField& phi) const;
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
scalarTransport(const scalarTransport&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const scalarTransport&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -134,6 +128,9 @@ public:
|
||||
const dictionary& dict
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
scalarTransport(const scalarTransport&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~scalarTransport();
|
||||
@ -150,6 +147,12 @@ public:
|
||||
//- Do nothing.
|
||||
// The volScalarField is registered and written automatically
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const scalarTransport&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -93,12 +93,6 @@ private:
|
||||
//- Remove abort file.
|
||||
void removeFile() const;
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
abort(const abort&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const abort&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -116,6 +110,9 @@ public:
|
||||
const dictionary&
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
abort(const abort&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~abort();
|
||||
@ -134,6 +131,12 @@ public:
|
||||
|
||||
//- Execute at the final time-loop, used for cleanup
|
||||
virtual bool end();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const abort&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -132,15 +132,6 @@ protected:
|
||||
virtual const wordList& codeKeys() const;
|
||||
|
||||
|
||||
private:
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
codedFunctionObject(const codedFunctionObject&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const codedFunctionObject&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
@ -157,6 +148,9 @@ public:
|
||||
const dictionary& dict
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
codedFunctionObject(const codedFunctionObject&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~codedFunctionObject();
|
||||
@ -183,6 +177,12 @@ public:
|
||||
|
||||
//- Read and set the function object if its data have changed
|
||||
virtual bool read(const dictionary&);
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const codedFunctionObject&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -87,15 +87,6 @@ class removeRegisteredObject
|
||||
wordList objectNames_;
|
||||
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
removeRegisteredObject(const removeRegisteredObject&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const removeRegisteredObject&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
@ -112,6 +103,9 @@ public:
|
||||
const dictionary& dict
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
removeRegisteredObject(const removeRegisteredObject&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~removeRegisteredObject();
|
||||
@ -127,6 +121,12 @@ public:
|
||||
|
||||
//- Do nothing
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const removeRegisteredObject&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -101,17 +101,6 @@ protected:
|
||||
void writeResidual(const word& fieldName);
|
||||
|
||||
|
||||
private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
residuals(const residuals&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const residuals&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
@ -128,6 +117,9 @@ public:
|
||||
const dictionary& dict
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
residuals(const residuals&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~residuals();
|
||||
@ -143,6 +135,12 @@ public:
|
||||
|
||||
//- Write the residuals
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const residuals&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -66,15 +66,6 @@ class setTimeStepFunctionObject
|
||||
autoPtr<Function1<scalar>> timeStepPtr_;
|
||||
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
setTimeStepFunctionObject(const setTimeStepFunctionObject&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const setTimeStepFunctionObject&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
@ -91,6 +82,9 @@ public:
|
||||
const dictionary& dict
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
setTimeStepFunctionObject(const setTimeStepFunctionObject&) = delete;
|
||||
|
||||
|
||||
// Destructor
|
||||
virtual ~setTimeStepFunctionObject();
|
||||
@ -116,6 +110,12 @@ public:
|
||||
// postProcess overrides the usual writeControl behaviour and
|
||||
// forces writing always (used in post-processing mode)
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const setTimeStepFunctionObject&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -115,17 +115,6 @@ protected:
|
||||
stringList writeCalls_;
|
||||
|
||||
|
||||
private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
systemCall(const systemCall&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const systemCall&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
@ -142,6 +131,9 @@ public:
|
||||
const dictionary& dict
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
systemCall(const systemCall&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~systemCall();
|
||||
@ -160,6 +152,12 @@ public:
|
||||
|
||||
//- Write, execute the "writeCalls"
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const systemCall&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -87,15 +87,6 @@ class time
|
||||
scalar clockTime0_;
|
||||
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
time(const time&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const time&) = delete;
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
// Protected Member Functions
|
||||
@ -120,6 +111,9 @@ public:
|
||||
const dictionary& dict
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
time(const time&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~time();
|
||||
@ -135,6 +129,12 @@ public:
|
||||
|
||||
//- Write the time
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const time&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -81,17 +81,6 @@ class writeDictionary
|
||||
);
|
||||
|
||||
|
||||
private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
writeDictionary(const writeDictionary&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const writeDictionary&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
@ -108,6 +97,9 @@ public:
|
||||
const dictionary& dict
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
writeDictionary(const writeDictionary&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~writeDictionary();
|
||||
@ -123,6 +115,12 @@ public:
|
||||
|
||||
//- Write the selected dictionaries
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const writeDictionary&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -129,12 +129,6 @@ private:
|
||||
//- Write the requested registered IO object
|
||||
virtual void writeObject(const regIOobject& obj);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
writeObjects(const writeObjects&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const writeObjects&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -152,6 +146,9 @@ public:
|
||||
const dictionary& dict
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construction
|
||||
writeObjects(const writeObjects&) = delete;
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~writeObjects();
|
||||
@ -167,6 +164,12 @@ public:
|
||||
|
||||
//- Write the registered objects
|
||||
virtual bool write();
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const writeObjects&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user