/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation \\/ 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 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::diameterModels::isothermal Description Isothermal dispersed-phase particle diameter model. SourceFiles isothermal.C \*---------------------------------------------------------------------------*/ #ifndef isothermal_H #define isothermal_H #include "diameterModel.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { namespace diameterModels { /*---------------------------------------------------------------------------*\ Class isothermal Declaration \*---------------------------------------------------------------------------*/ class isothermal : public diameterModel { // Private data //- Reference diameter for the isothermal expansion dimensionedScalar d0_; //- Reference pressure for the isothermal expansion dimensionedScalar p0_; public: //- Runtime type information TypeName("isothermal"); // Constructors //- Construct from components isothermal ( const dictionary& diameterProperties, const phaseModel& phase ); //- Destructor virtual ~isothermal(); // Member Functions //- Return the diameter field virtual tmp d() const; //- Read phaseProperties dictionary virtual bool read(const dictionary& phaseProperties); }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace diameterModels } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //