mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- this provides a better typesafe means of locating predefined cell models than relying on strings. The lookup is now ptr() or ref() directly. The lookup functions behave like on-demand singletons when loading "etc/cellModels". Functionality is now located entirely in cellModel but a forwarding version of cellModeller is provided for API (but not ABI) compatibility with older existing user code. STYLE: use constexpr for cellMatcher constants
124 lines
3.3 KiB
C++
124 lines
3.3 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011 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 "IOstreams.H"
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
template<class Point, class PointRef, class polygonRef>
|
|
inline Foam::pyramid<Point, PointRef, polygonRef>::pyramid
|
|
(
|
|
polygonRef base,
|
|
const Point& apex
|
|
)
|
|
:
|
|
base_(base),
|
|
apex_(apex)
|
|
{}
|
|
|
|
|
|
template<class Point, class PointRef, class polygonRef>
|
|
inline Foam::pyramid<Point, PointRef, polygonRef>::pyramid(Istream& is)
|
|
{
|
|
is >> base_ >> apex_;
|
|
is.check(FUNCTION_NAME);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
template<class Point, class PointRef, class polygonRef>
|
|
inline const Point& Foam::pyramid<Point, PointRef, polygonRef>::apex() const
|
|
{
|
|
return apex_;
|
|
}
|
|
|
|
template<class Point, class PointRef, class polygonRef>
|
|
inline polygonRef Foam::pyramid<Point, PointRef, polygonRef>::base() const
|
|
{
|
|
return base_;
|
|
}
|
|
|
|
|
|
template<class Point, class PointRef, class polygonRef>
|
|
inline Point Foam::pyramid<Point, PointRef, polygonRef>::centre
|
|
(
|
|
const UList<point>& points
|
|
) const
|
|
{
|
|
return (3.0/4.0)*base_.centre(points) + (1.0/4.0)*apex_;
|
|
}
|
|
|
|
|
|
template<class Point, class PointRef, class polygonRef>
|
|
inline Foam::vector Foam::pyramid<Point, PointRef, polygonRef>::height
|
|
(
|
|
const UList<point>& points
|
|
) const
|
|
{
|
|
// Height = apex - baseCentroid
|
|
return (apex_ - base_.centre(points));
|
|
}
|
|
|
|
|
|
template<class Point, class PointRef, class polygonRef>
|
|
inline Foam::scalar Foam::pyramid<Point, PointRef, polygonRef>::mag
|
|
(
|
|
const UList<point>& points
|
|
) const
|
|
{
|
|
return (1.0/3.0)*(base_.normal(points)&(height(points)));
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * IOstream Operators * * * * * * * * * * * * * //
|
|
|
|
template<class Point, class PointRef, class polygonRef>
|
|
inline Foam::Istream& Foam::operator>>
|
|
(
|
|
Istream& is,
|
|
pyramid<Point, PointRef, polygonRef>& p
|
|
)
|
|
{
|
|
is >> p.base_ >> p.apex_;
|
|
is.check(FUNCTION_NAME);
|
|
return is;
|
|
}
|
|
|
|
|
|
template<class Point, class PointRef, class polygonRef>
|
|
inline Foam::Ostream& Foam::operator<<
|
|
(
|
|
Ostream& os,
|
|
const pyramid<Point, PointRef, polygonRef>& p
|
|
)
|
|
{
|
|
os << p.base_ << tab << p.apex_ << nl;
|
|
return os;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|