/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2016 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 "Function1.H"
#include "Time.H"
// * * * * * * * * * * * * * * * * Constructor * * * * * * * * * * * * * * * //
template
Foam::Function1::Function1(const word& entryName)
:
refCount(),
name_(entryName)
{}
template
Foam::Function1::Function1(const Function1& de)
:
refCount(),
name_(de.name_)
{}
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
template
Foam::Function1::~Function1()
{}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
template
const Foam::word& Foam::Function1::name() const
{
return name_;
}
template
void Foam::Function1::convertTimeBase(const Time&)
{
// do nothing
}
template
Type Foam::Function1::value(const scalar x) const
{
NotImplemented;
return pTraits::zero;
}
template
Type Foam::Function1::integrate(const scalar x1, const scalar x2) const
{
NotImplemented;
return pTraits::zero;
}
template
Foam::tmp> Foam::Function1::value
(
const scalarField& x
) const
{
tmp> tfld(new Field(x.size()));
Field& fld = tfld.ref();
forAll(x, i)
{
fld[i] = this->value(x[i]);
}
return tfld;
}
template
Foam::tmp> Foam::Function1::integrate
(
const scalarField& x1,
const scalarField& x2
) const
{
tmp> tfld(new Field(x1.size()));
Field& fld = tfld.ref();
forAll(x1, i)
{
fld[i] = this->integrate(x1[i], x2[i]);
}
return tfld;
}
template
void Foam::Function1::writeData(Ostream& os) const
{
os.writeKeyword(name_) << type();
}
// * * * * * * * * * * * * * * IOStream operators * * * * * * * * * * * * * //
template
Foam::Ostream& Foam::operator<<
(
Ostream& os,
const Function1& f1
)
{
// Check state of Ostream
os.check
(
"Ostream& operator<<(Ostream&, const Function1&)"
);
os << f1.name_;
f1.writeData(os);
return os;
}
// ************************************************************************* //