/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd. \\/ M anipulation | ------------------------------------------------------------------------------- License This file is part of OpenFOAM. OpenFOAM is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. OpenFOAM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Namespace Foam::viscosityModels Description A namespace for various incompressible viscosityModel implementations. Class Foam::viscosityModel Description An abstract base class for incompressible viscosityModels. The strain rate is defined by: mag(symm(grad(U))) SourceFiles viscosityModel.C newViscosityModel.C \*---------------------------------------------------------------------------*/ #ifndef viscosityModel_H #define viscosityModel_H #include "IOdictionary.H" #include "typeInfo.H" #include "runTimeSelectionTables.H" #include "volFieldsFwd.H" #include "surfaceFieldsFwd.H" #include "dimensionedScalar.H" #include "tmp.H" #include "autoPtr.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { /*---------------------------------------------------------------------------*\ Class viscosityModel Declaration \*---------------------------------------------------------------------------*/ class viscosityModel { protected: // Protected data word name_; dictionary viscosityProperties_; const volVectorField& U_; const surfaceScalarField& phi_; // Private Member Functions //- Disallow copy construct viscosityModel(const viscosityModel&); //- Disallow default bitwise assignment void operator=(const viscosityModel&); public: //- Runtime type information TypeName("viscosityModel"); // Declare run-time constructor selection table declareRunTimeSelectionTable ( autoPtr, viscosityModel, dictionary, ( const word& name, const dictionary& viscosityProperties, const volVectorField& U, const surfaceScalarField& phi ), (name, viscosityProperties, U, phi) ); // Selectors //- Return a reference to the selected viscosity model static autoPtr New ( const word& name, const dictionary& viscosityProperties, const volVectorField& U, const surfaceScalarField& phi ); // Constructors //- Construct from components viscosityModel ( const word& name, const dictionary& viscosityProperties, const volVectorField& U, const surfaceScalarField& phi ); //- Destructor virtual ~viscosityModel() {} // Member Functions //- Return the phase transport properties dictionary const dictionary& viscosityProperties() const { return viscosityProperties_; } //- Return the strain rate tmp strainRate() const; //- Return the laminar viscosity virtual tmp nu() const = 0; //- Correct the laminar viscosity virtual void correct() = 0; //- Read transportProperties dictionary virtual bool read(const dictionary& viscosityProperties) = 0; }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //