Newer
Older
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2018-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 <http://www.gnu.org/licenses/>.
\*---------------------------------------------------------------------------*/
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
Henry Weller
committed
inline Foam::Vector<Cmpt>::Vector(const Foam::zero)
Henry Weller
committed
Vector::vsType(Zero)
template<class Cmpt>
template<class Cmpt2>
Henry Weller
committed
inline Foam::Vector<Cmpt>::Vector
(
const VectorSpace<Vector<Cmpt2>, Cmpt2, 3>& vs
)
Henry Weller
committed
Vector::vsType(vs)
Henry Weller
committed
inline Foam::Vector<Cmpt>::Vector
(
const Cmpt& vx,
const Cmpt& vy,
const Cmpt& vz
)
{
this->v_[X] = vx;
this->v_[Y] = vy;
this->v_[Z] = vz;
}
Henry Weller
committed
inline Foam::Vector<Cmpt>::Vector(Istream& is)
Henry Weller
committed
Vector::vsType(is)
{}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
Henry Weller
committed
inline const Cmpt& Foam::Vector<Cmpt>::x() const
{
return this->v_[X];
}
Henry Weller
committed
inline const Cmpt& Foam::Vector<Cmpt>::y() const
{
return this->v_[Y];
}
Henry Weller
committed
inline const Cmpt& Foam::Vector<Cmpt>::z() const
{
return this->v_[Z];
}
Henry Weller
committed
inline Cmpt& Foam::Vector<Cmpt>::x()
{
return this->v_[X];
}
Henry Weller
committed
inline Cmpt& Foam::Vector<Cmpt>::y()
{
return this->v_[Y];
}
Henry Weller
committed
inline Cmpt& Foam::Vector<Cmpt>::z()
{
return this->v_[Z];
}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
Henry Weller
committed
inline const Foam::Vector<Cmpt>& Foam::Vector<Cmpt>::centre
Henry Weller
committed
const Foam::List<Vector<Cmpt>>&
{
return *this;
}
template<class Cmpt>
inline Foam::Vector<Cmpt>& Foam::Vector<Cmpt>::normalise()
{
const scalar s(Foam::mag(*this));
if (s < ROOTVSMALL)
{
*this = Zero;
}
else
{
*this /= s;
}
return *this;
}
// * * * * * * * * * * * * * * * Global Operators * * * * * * * * * * * * * //
Henry Weller
committed
namespace Foam
{
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
//- Dummy innerProduct for scalar to allow the construction of vtables for
// virtual member functions involving the inner-products of fields
// for which a "NotImplemented" specialization for scalar is provided.
template<class Cmpt>
class innerProduct<Vector<Cmpt>, scalar>
{
public:
typedef scalar type;
};
Henry Weller
committed
inline typename innerProduct<Vector<Cmpt>, Vector<Cmpt>>::type
operator&(const Vector<Cmpt>& v1, const Vector<Cmpt>& v2)
{
return Cmpt(v1.x()*v2.x() + v1.y()*v2.y() + v1.z()*v2.z());
}
inline Vector<Cmpt> operator^(const Vector<Cmpt>& v1, const Vector<Cmpt>& v2)
{
return Vector<Cmpt>
(
(v1.y()*v2.z() - v1.z()*v2.y()),
(v1.z()*v2.x() - v1.x()*v2.z()),
(v1.x()*v2.y() - v1.y()*v2.x())
);
}
template<class Cmpt>
inline Vector<Cmpt> operator*(const Cmpt& s, const Vector<Cmpt>& v)
{
return Vector<Cmpt>(s*v.x(), s*v.y(), s*v.z());
}
template<class Cmpt>
inline Vector<Cmpt> operator*(const Vector<Cmpt>& v, const Cmpt& s)
{
return s*v;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// ************************************************************************* //