Namespaces | Macros | Functions
scalarField.C File Reference

Specialisation of Field<T> for scalar. More...

Include dependency graph for scalarField.C:

Go to the source code of this file.

Namespaces

 Foam
 Namespace for OpenFOAM.
 

Macros

#define TEMPLATE
 
#define BesselFunc(func)
 

Functions

void component (scalarField &sf, const UList< scalar > &f, const direction)
 
void stabilise (scalarField &res, const UList< scalar > &sf, const scalar s)
 
tmp< scalarFieldstabilise (const UList< scalar > &sf, const scalar s)
 
tmp< scalarFieldstabilise (const tmp< scalarField > &tsf, const scalar s)
 
template<>
scalar sumProd (const UList< scalar > &f1, const UList< scalar > &f2)
 
void jn (scalarField &res, const int n, const UList< scalar > &sf)
 
tmp< scalarFieldjn (const int n, const UList< scalar > &sf)
 
tmp< scalarFieldjn (const int n, const tmp< scalarField > &tsf)
 
void yn (scalarField &res, const int n, const UList< scalar > &sf)
 
tmp< scalarFieldyn (const int n, const UList< scalar > &sf)
 
tmp< scalarFieldyn (const int n, const tmp< scalarField > &tsf)
 

Detailed Description

Specialisation of Field<T> for scalar.

Original source file scalarField.C

Definition in file scalarField.C.

Macro Definition Documentation

◆ TEMPLATE

#define TEMPLATE

Definition at line 32 of file scalarField.C.

◆ BesselFunc

#define BesselFunc (   func)
Value:
void func(scalarField& res, const int n, const UList<scalar>& sf) \
{ \
TFOR_ALL_F_OP_FUNC_S_F(scalar, res, =, ::Foam::func, int, n, scalar, sf) \
} \
\
tmp<scalarField> func(const int n, const UList<scalar>& sf) \
{ \
tmp<scalarField> tRes(new scalarField(sf.size())); \
func(tRes(), n, sf); \
return tRes; \
} \
\
tmp<scalarField> func(const int n, const tmp<scalarField>& tsf) \
{ \
tmp<scalarField> tRes = reuseTmp<scalar, scalar>::New(tsf); \
func(tRes(), n, tsf()); \
return tRes; \
}

Definition at line 167 of file scalarField.C.

Foam::compressible::New
autoPtr< BasicCompressibleTurbulenceModel > New(const volScalarField &rho, const volVectorField &U, const surfaceScalarField &phi, const typename BasicCompressibleTurbulenceModel::transportModel &transport, const word &propertiesName)
Definition: turbulentFluidThermoModel.C:36
clear
UEqn clear()
n
label n
Definition: TABSMDCalcMethod2.H:31
Foam::func
void func(FieldField< Field, Type > &f, const FieldField< Field, Type > &f1, const FieldField< Field, Type > &f2)
sf
volScalarField sf(fieldObject, mesh)
scalarField
volScalarField scalarField(fieldObject, mesh)