/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Copyright (C) 2011-2023 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 . \*---------------------------------------------------------------------------*/ #include "Polynomial1.H" // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // template Foam::Function1s::Polynomial::Polynomial ( const word& name, const List>& coeffs ) : FieldFunction1>(name), coeffs_(coeffs), integrable_(true) { if (!coeffs_.size()) { FatalErrorInFunction << "Polynomial coefficients for entry " << this->name_ << " are invalid (empty)" << nl << exit(FatalError); } forAll(coeffs_, i) { if (mag(coeffs_[i].second() + pTraits::one) < rootVSmall) { integrable_ = false; break; } } if (debug) { if (!integrable_) { WarningInFunction << "Polynomial " << this->name_ << " cannot be integrald" << endl; } } } template Foam::Function1s::Polynomial::Polynomial ( const word& name, const dictionary& dict ) : Polynomial(name, dict.lookup("coeffs")) {} template Foam::Function1s::Polynomial::Polynomial ( const word& name, Istream& is ) : Polynomial(name, List>(is)) {} template Foam::Function1s::Polynomial::Polynomial(const Polynomial& poly) : FieldFunction1>(poly), coeffs_(poly.coeffs_), integrable_(poly.integrable_) {} // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * // template Foam::Function1s::Polynomial::~Polynomial() {} // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // template Type Foam::Function1s::Polynomial::value(const scalar x) const { Type y(Zero); forAll(coeffs_, i) { y += cmptMultiply ( coeffs_[i].first(), cmptPow(pTraits::one*x, coeffs_[i].second()) ); } return y; } template Type Foam::Function1s::Polynomial::integral ( const scalar x1, const scalar x2 ) const { Type intx(Zero); if (integrable_) { forAll(coeffs_, i) { intx += cmptMultiply ( cmptDivide ( coeffs_[i].first(), coeffs_[i].second() + pTraits::one ), cmptPow ( pTraits::one*x2, coeffs_[i].second() + pTraits::one ) - cmptPow ( pTraits::one*x1, coeffs_[i].second() + pTraits::one ) ); } } return intx; } template void Foam::Function1s::Polynomial::write(Ostream& os) const { writeKeyword(os, "coeffs") << coeffs_ << token::END_STATEMENT << nl; } // ************************************************************************* //