Macros
FieldFunctionsM.C File Reference
Include dependency graph for FieldFunctionsM.C:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define UNARY_FUNCTION(ReturnType, Type, Func)
 
#define UNARY_OPERATOR(ReturnType, Type, Op, OpFunc)
 
#define BINARY_FUNCTION(ReturnType, Type1, Type2, Func)
 
#define BINARY_TYPE_FUNCTION_SF(ReturnType, Type1, Type2, Func)
 
#define BINARY_TYPE_FUNCTION_FS(ReturnType, Type1, Type2, Func)
 
#define BINARY_TYPE_FUNCTION(ReturnType, Type1, Type2, Func)
 
#define BINARY_OPERATOR(ReturnType, Type1, Type2, Op, OpFunc)
 
#define BINARY_TYPE_OPERATOR_SF(ReturnType, Type1, Type2, Op, OpFunc)
 
#define BINARY_TYPE_OPERATOR_FS(ReturnType, Type1, Type2, Op, OpFunc)
 
#define BINARY_TYPE_OPERATOR(ReturnType, Type1, Type2, Op, OpFunc)
 

Detailed Description

Original source file FieldFunctionsM.C

Definition in file FieldFunctionsM.C.

Macro Definition Documentation

◆ UNARY_FUNCTION

#define UNARY_FUNCTION (   ReturnType,
  Type,
  Func 
)
Value:
\
TEMPLATE \
void Func(Field<ReturnType>& res, const UList<Type>& f) \
{ \
TFOR_ALL_F_OP_FUNC_F(ReturnType, res, =, ::Foam::Func, Type, f) \
} \
\
TEMPLATE \
tmp<Field<ReturnType> > Func(const UList<Type>& f) \
{ \
tmp<Field<ReturnType> > tRes(new Field<ReturnType>(f.size())); \
Func(tRes(), f); \
return tRes; \
} \
\
TEMPLATE \
tmp<Field<ReturnType> > Func(const tmp<Field<Type> >& tf) \
{ \
tmp<Field<ReturnType> > tRes = reuseTmp<ReturnType, Type>::New(tf); \
Func(tRes(), tf()); \
return tRes; \
}

Definition at line 31 of file FieldFunctionsM.C.

◆ UNARY_OPERATOR

#define UNARY_OPERATOR (   ReturnType,
  Type,
  Op,
  OpFunc 
)
Value:
\
TEMPLATE \
void OpFunc(Field<ReturnType>& res, const UList<Type>& f) \
{ \
TFOR_ALL_F_OP_OP_F(ReturnType, res, =, Op, Type, f) \
} \
\
TEMPLATE \
tmp<Field<ReturnType> > operator Op(const UList<Type>& f) \
{ \
tmp<Field<ReturnType> > tRes(new Field<ReturnType>(f.size())); \
OpFunc(tRes(), f); \
return tRes; \
} \
\
TEMPLATE \
tmp<Field<ReturnType> > operator Op(const tmp<Field<Type> >& tf) \
{ \
tmp<Field<ReturnType> > tRes = reuseTmp<ReturnType, Type>::New(tf); \
OpFunc(tRes(), tf()); \
return tRes; \
}

Definition at line 59 of file FieldFunctionsM.C.

◆ BINARY_FUNCTION

#define BINARY_FUNCTION (   ReturnType,
  Type1,
  Type2,
  Func 
)

Definition at line 87 of file FieldFunctionsM.C.

◆ BINARY_TYPE_FUNCTION_SF

#define BINARY_TYPE_FUNCTION_SF (   ReturnType,
  Type1,
  Type2,
  Func 
)

Definition at line 158 of file FieldFunctionsM.C.

◆ BINARY_TYPE_FUNCTION_FS

#define BINARY_TYPE_FUNCTION_FS (   ReturnType,
  Type1,
  Type2,
  Func 
)

Definition at line 200 of file FieldFunctionsM.C.

◆ BINARY_TYPE_FUNCTION

#define BINARY_TYPE_FUNCTION (   ReturnType,
  Type1,
  Type2,
  Func 
)
Value:
BINARY_TYPE_FUNCTION_SF(ReturnType, Type1, Type2, Func) \
BINARY_TYPE_FUNCTION_FS(ReturnType, Type1, Type2, Func)

Definition at line 242 of file FieldFunctionsM.C.

◆ BINARY_OPERATOR

#define BINARY_OPERATOR (   ReturnType,
  Type1,
  Type2,
  Op,
  OpFunc 
)

Definition at line 249 of file FieldFunctionsM.C.

◆ BINARY_TYPE_OPERATOR_SF

#define BINARY_TYPE_OPERATOR_SF (   ReturnType,
  Type1,
  Type2,
  Op,
  OpFunc 
)

Definition at line 317 of file FieldFunctionsM.C.

◆ BINARY_TYPE_OPERATOR_FS

#define BINARY_TYPE_OPERATOR_FS (   ReturnType,
  Type1,
  Type2,
  Op,
  OpFunc 
)

Definition at line 356 of file FieldFunctionsM.C.

◆ BINARY_TYPE_OPERATOR

#define BINARY_TYPE_OPERATOR (   ReturnType,
  Type1,
  Type2,
  Op,
  OpFunc 
)
Value:
BINARY_TYPE_OPERATOR_SF(ReturnType, Type1, Type2, Op, OpFunc) \
BINARY_TYPE_OPERATOR_FS(ReturnType, Type1, Type2, Op, OpFunc)

Definition at line 395 of file FieldFunctionsM.C.

BINARY_TYPE_OPERATOR_SF
#define BINARY_TYPE_OPERATOR_SF(ReturnType, Type1, Type2, Op, OpFunc)
Definition: FieldFunctionsM.C:317
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()
BINARY_TYPE_FUNCTION_SF
#define BINARY_TYPE_FUNCTION_SF(ReturnType, Type1, Type2, Func)
Definition: FieldFunctionsM.C:158
tf
const tensorField & tf
Definition: getPatchFieldTensor.H:36
f
labelList f(nPoints)
Op
#define Op(opName, op)
Definition: ops.H:99