1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
7 -------------------------------------------------------------------------------
9 This file is part of OpenFOAM.
11 OpenFOAM is free software: you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by
13 the Free Software Foundation, either version 3 of the License, or
14 (at your option) any later version.
16 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 You should have received a copy of the GNU General Public License
22 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 #include "distributionModel.H"
28 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
32 namespace distributionModels
34 defineTypeNameAndDebug(distributionModel, 0);
35 defineRunTimeSelectionTable(distributionModel, dictionary);
39 // * * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * //
41 void Foam::distributionModels::distributionModel::check() const
45 FatalErrorIn("distributionModels::distributionModel::check() const")
46 << type() << "distribution: Minimum value must be greater than "
47 << "zero." << nl << "Supplied minValue = " << minValue()
51 if (maxValue() < minValue())
53 FatalErrorIn("distributionModels::distributionModel::check() const")
54 << type() << "distribution: Maximum value is smaller than the "
55 << "minimum value:" << nl << " maxValue = " << maxValue()
56 << ", minValue = " << minValue()
62 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
64 Foam::distributionModels::distributionModel::distributionModel
67 const dictionary& dict,
71 distributionModelDict_(dict.subDict(name + "Distribution")),
76 Foam::distributionModels::distributionModel::distributionModel
78 const distributionModel& p
81 distributionModelDict_(p.distributionModelDict_),
86 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
88 Foam::distributionModels::distributionModel::~distributionModel()
92 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
94 Foam::scalar Foam::distributionModels::distributionModel::sample() const
99 "Foam::distributionModels::distributionModel::sample() const"
105 Foam::scalar Foam::distributionModels::distributionModel::minValue() const
110 "Foam::distributionModels::distributionModel::minValue() const"
116 Foam::scalar Foam::distributionModels::distributionModel::maxValue() const
121 "Foam::distributionModels::distributionModel::maxValue() const"
127 // ************************************************************************* //