mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
174 lines
6.6 KiB
C++
174 lines
6.6 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2012 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/>.
|
|
|
|
InClass
|
|
Foam::GeometricScalarField
|
|
|
|
Description
|
|
Scalar specific part of the implementation of GeometricField.
|
|
|
|
SourceFiles
|
|
GeometricScalarField.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef GeometricScalarField_H
|
|
#define GeometricScalarField_H
|
|
|
|
#include "GeometricField.H"
|
|
#include "DimensionedScalarField.H"
|
|
|
|
#define TEMPLATE template<template<class> class PatchField, class GeoMesh>
|
|
#include "GeometricFieldFunctionsM.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
template<template<class> class PatchField, class GeoMesh>
|
|
void stabilise
|
|
(
|
|
GeometricField<scalar, PatchField, GeoMesh>&,
|
|
const GeometricField<scalar, PatchField, GeoMesh>&,
|
|
const dimensioned<scalar>&
|
|
);
|
|
|
|
template<template<class> class PatchField, class GeoMesh>
|
|
tmp<GeometricField<scalar, PatchField, GeoMesh> > stabilise
|
|
(
|
|
const GeometricField<scalar, PatchField, GeoMesh>&,
|
|
const dimensioned<scalar>&
|
|
);
|
|
|
|
template<template<class> class PatchField, class GeoMesh>
|
|
tmp<GeometricField<scalar, PatchField, GeoMesh> > stabilise
|
|
(
|
|
const tmp<GeometricField<scalar, PatchField, GeoMesh> >&,
|
|
const dimensioned<scalar>&
|
|
);
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
BINARY_TYPE_OPERATOR(scalar, scalar, scalar, +, '+', add)
|
|
BINARY_TYPE_OPERATOR(scalar, scalar, scalar, -, '-', subtract)
|
|
|
|
BINARY_OPERATOR(scalar, scalar, scalar, *, '*', multiply)
|
|
BINARY_OPERATOR(scalar, scalar, scalar, /, '|', divide)
|
|
|
|
BINARY_TYPE_OPERATOR_SF(scalar, scalar, scalar, /, '|', divide)
|
|
|
|
BINARY_FUNCTION(scalar, scalar, scalar, pow)
|
|
BINARY_TYPE_FUNCTION(scalar, scalar, scalar, pow)
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
UNARY_FUNCTION(scalar, scalar, pow3, pow3)
|
|
UNARY_FUNCTION(scalar, scalar, pow4, pow4)
|
|
UNARY_FUNCTION(scalar, scalar, pow5, pow5)
|
|
UNARY_FUNCTION(scalar, scalar, pow6, pow6)
|
|
UNARY_FUNCTION(scalar, scalar, pow025, pow025)
|
|
UNARY_FUNCTION(scalar, scalar, sqrt, sqrt)
|
|
UNARY_FUNCTION(scalar, scalar, cbrt, cbrt)
|
|
UNARY_FUNCTION(scalar, scalar, sign, sign)
|
|
UNARY_FUNCTION(scalar, scalar, pos, pos)
|
|
UNARY_FUNCTION(scalar, scalar, neg, neg)
|
|
|
|
UNARY_FUNCTION(scalar, scalar, exp, trans)
|
|
UNARY_FUNCTION(scalar, scalar, log, trans)
|
|
UNARY_FUNCTION(scalar, scalar, log10, trans)
|
|
UNARY_FUNCTION(scalar, scalar, sin, trans)
|
|
UNARY_FUNCTION(scalar, scalar, cos, trans)
|
|
UNARY_FUNCTION(scalar, scalar, tan, trans)
|
|
UNARY_FUNCTION(scalar, scalar, asin, trans)
|
|
UNARY_FUNCTION(scalar, scalar, acos, trans)
|
|
UNARY_FUNCTION(scalar, scalar, atan, trans)
|
|
UNARY_FUNCTION(scalar, scalar, sinh, trans)
|
|
UNARY_FUNCTION(scalar, scalar, cosh, trans)
|
|
UNARY_FUNCTION(scalar, scalar, tanh, trans)
|
|
UNARY_FUNCTION(scalar, scalar, asinh, trans)
|
|
UNARY_FUNCTION(scalar, scalar, acosh, trans)
|
|
UNARY_FUNCTION(scalar, scalar, atanh, trans)
|
|
UNARY_FUNCTION(scalar, scalar, erf, trans)
|
|
UNARY_FUNCTION(scalar, scalar, erfc, trans)
|
|
UNARY_FUNCTION(scalar, scalar, lgamma, trans)
|
|
UNARY_FUNCTION(scalar, scalar, j0, trans)
|
|
UNARY_FUNCTION(scalar, scalar, j1, trans)
|
|
UNARY_FUNCTION(scalar, scalar, y0, trans)
|
|
UNARY_FUNCTION(scalar, scalar, y1, trans)
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#define BesselFunc(func) \
|
|
\
|
|
template<template<class> class PatchField, class GeoMesh> \
|
|
void func \
|
|
( \
|
|
GeometricField<scalar, PatchField, GeoMesh>& Res, \
|
|
const int n, \
|
|
const GeometricField<scalar, PatchField, GeoMesh>& sf \
|
|
); \
|
|
\
|
|
template<template<class> class PatchField, class GeoMesh> \
|
|
tmp<GeometricField<scalar, PatchField, GeoMesh> > func \
|
|
( \
|
|
const int n, \
|
|
const GeometricField<scalar, PatchField, GeoMesh>& \
|
|
); \
|
|
\
|
|
template<template<class> class PatchField, class GeoMesh> \
|
|
tmp<GeometricField<scalar, PatchField, GeoMesh> > func \
|
|
( \
|
|
const int n, \
|
|
const tmp<GeometricField<scalar, PatchField, GeoMesh> >& \
|
|
);
|
|
|
|
BesselFunc(jn)
|
|
BesselFunc(yn)
|
|
|
|
#undef BesselFunc
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#include "undefFieldFunctionsM.H"
|
|
|
|
#ifdef NoRepository
|
|
# include "GeometricScalarField.C"
|
|
#endif
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|