/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011-2015 OpenFOAM Foundation
Copyright (C) 2020 OpenCFD Ltd.
-------------------------------------------------------------------------------
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 .
\*---------------------------------------------------------------------------*/
#include "seriesProfile.H"
#include "addToRunTimeSelectionTable.H"
#include "IFstream.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
defineTypeNameAndDebug(seriesProfile, 0);
addToRunTimeSelectionTable(profileModel, seriesProfile, dictionary);
}
// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * //
Foam::scalar Foam::seriesProfile::evaluateDrag
(
const scalar& xIn,
const List& values
) const
{
scalar result = 0.0;
forAll(values, i)
{
result += values[i]*cos(i*xIn);
}
return result;
}
Foam::scalar Foam::seriesProfile::evaluateLift
(
const scalar& xIn,
const List& values
) const
{
scalar result = 0.0;
forAll(values, i)
{
// note: first contribution always zero since sin(0) = 0, but
// keep zero base to be consistent with drag coeffs
result += values[i]*sin(i*xIn);
}
return result;
}
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
Foam::seriesProfile::seriesProfile
(
const dictionary& dict,
const word& modelName
)
:
profileModel(dict, modelName),
CdCoeffs_(),
ClCoeffs_()
{
if (readFromFile())
{
IFstream is(fName_);
is >> CdCoeffs_ >> ClCoeffs_;
}
else
{
dict.readEntry("CdCoeffs", CdCoeffs_);
dict.readEntry("ClCoeffs", ClCoeffs_);
}
if (CdCoeffs_.empty())
{
FatalIOErrorInFunction(dict)
<< "CdCoeffs must be specified"
<< exit(FatalIOError);
}
if (ClCoeffs_.empty())
{
FatalIOErrorInFunction(dict)
<< "ClCoeffs must be specified"
<< exit(FatalIOError);
}
}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
void Foam::seriesProfile::Cdl(const scalar alpha, scalar& Cd, scalar& Cl) const
{
Cd = evaluateDrag(alpha, CdCoeffs_);
Cl = evaluateLift(alpha, ClCoeffs_);
}
// ************************************************************************* //