The general distribution has been extended to accept cumulative distribution data, by means of a "cumulative" switch. The calculation of the mean value has also been corrected for this distribution, and additional header documentation and parameter checking has been added. In addition, the distribution models now all print some basic information (min, max and mean) into the log file to help in checking that the specification is correct. Patch contributed by Timo Niemi, VTT.
98 lines
2.9 KiB
C
98 lines
2.9 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Copyright (C) 2011-2019 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 <http://www.gnu.org/licenses/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "distributionModel.H"
|
|
|
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
defineTypeNameAndDebug(distributionModel, 0);
|
|
defineRunTimeSelectionTable(distributionModel, dictionary);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * //
|
|
|
|
void Foam::distributionModel::check() const
|
|
{
|
|
if (minValue() < 0)
|
|
{
|
|
FatalErrorInFunction
|
|
<< type() << "distribution: Minimum value must be greater than "
|
|
<< "zero." << nl << "Supplied minValue = " << minValue()
|
|
<< abort(FatalError);
|
|
}
|
|
|
|
if (maxValue() < minValue())
|
|
{
|
|
FatalErrorInFunction
|
|
<< type() << "distribution: Maximum value is smaller than the "
|
|
<< "minimum value:" << nl << " maxValue = " << maxValue()
|
|
<< ", minValue = " << minValue()
|
|
<< abort(FatalError);
|
|
}
|
|
}
|
|
|
|
|
|
void Foam::distributionModel::info() const
|
|
{
|
|
Info<< " Distribution min: " << minValue() << " max: " << maxValue()
|
|
<< " mean: " << meanValue() << endl;
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::distributionModel::distributionModel
|
|
(
|
|
const word& name,
|
|
const dictionary& dict,
|
|
Random& rndGen
|
|
)
|
|
:
|
|
distributionModelDict_(dict.subDict(name + "Distribution")),
|
|
rndGen_(rndGen)
|
|
{}
|
|
|
|
|
|
Foam::distributionModel::distributionModel
|
|
(
|
|
const distributionModel& p
|
|
)
|
|
:
|
|
distributionModelDict_(p.distributionModelDict_),
|
|
rndGen_(p.rndGen_)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
|
|
|
Foam::distributionModel::~distributionModel()
|
|
{}
|
|
|
|
|
|
// ************************************************************************* //
|