/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2017 OpenFOAM Foundation ------------------------------------------------------------------------------- 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 3 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, see . Class Foam::regionModels::surfaceFilmModels::function1Viscosity Description The Foam::Function1 temperature-dependent viscosity model multiplies the viscosity of a base model by a Function1 temperature function. SourceFiles function1Viscosity.C \*---------------------------------------------------------------------------*/ #ifndef function1Viscosity_H #define function1Viscosity_H #include "filmViscosityModel.H" #include "Function1.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { namespace regionModels { namespace surfaceFilmModels { /*---------------------------------------------------------------------------*\ Class function1Viscosity Declaration \*---------------------------------------------------------------------------*/ class function1Viscosity : public filmViscosityModel { // Private member functions //- No copy construct function1Viscosity(const function1Viscosity&) = delete; //- No copy assignment void operator=(const function1Viscosity&) = delete; protected: // Protected data //- Base viscosity model autoPtr viscosity_; //- Viscosity factor as a function of temperature autoPtr> function_; public: //- Runtime type information TypeName("function1"); // Constructors //- Construct from surface film model function1Viscosity ( surfaceFilmRegionModel& film, const dictionary& dict, volScalarField& mu ); //- Destructor virtual ~function1Viscosity(); // Member Functions //- Correct virtual void correct ( const volScalarField& p, const volScalarField& T ); }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace surfaceFilmModels } // End namespace regionModels } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //