TurbulenceModels/turbulenceModels/LES/eddyViscosity/LESeddyViscosity: removed unnecessary type and functions

This commit is contained in:
Henry
2013-08-05 16:37:05 +01:00
parent 56e6f52960
commit b7e0a248f5

View File

@ -71,11 +71,6 @@ protected:
dimensionedScalar Ce_;
// Protected Member Functions
virtual void correctNut() = 0;
public:
typedef typename BasicTurbulenceModel::alphaField alphaField;
@ -83,10 +78,6 @@ public:
typedef typename BasicTurbulenceModel::transportModel transportModel;
//- Runtime type information
TypeName("LESeddyViscosity");
// Constructors
//- Construct from components
@ -115,9 +106,6 @@ public:
//- Return sub-grid disipation rate
virtual tmp<volScalarField> epsilon() const;
//- Correct Eddy-Viscosity and related properties
virtual void correct() = 0;
};