/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 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::distributionModels::uniform Description Uniform/equally-weighted distribution model SourceFiles uniform.C \*---------------------------------------------------------------------------*/ #ifndef distributionModels_uniform_H #define distributionModels_uniform_H #include "distributionModel.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { namespace distributionModels { /*---------------------------------------------------------------------------*\ Class uniform Declaration \*---------------------------------------------------------------------------*/ class uniform : public distributionModel { // Private data //- Distribution minimum scalar minValue_; //- Distribution maximum scalar maxValue_; public: //- Runtime type information TypeName("uniform"); // Constructors //- Construct from components uniform(const dictionary& dict, Random& rndGen); //- Construct copy uniform(const uniform& p); //- Construct and return a clone virtual autoPtr clone() const { return autoPtr(new uniform(*this)); } //- Destructor virtual ~uniform(); // Member Functions //- Sample the distributionModel virtual scalar sample() const; //- Return the minimum value virtual scalar minValue() const; //- Return the maximum value virtual scalar maxValue() const; //- Return the mean value virtual scalar meanValue() const; }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace distributionModels } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //