Go to the source code of this file.
Original source file coupled.C
Definition in file coupled.C.
◆ ACCESS_CARRIER_FIELDS
| #define ACCESS_CARRIER_FIELDS |
( |
|
Type, |
|
|
|
nullArg |
|
) |
| |
Value:
{ \
namespace clouds \
{ \
template<> \
PtrDictionary<CarrierField<Type>>& coupled::carrierFields() const \
{ \
} \
} \
}
#define CAPITALIZE(name)
Map 'name' to 'Name' via the predefined macro CAPITALIZE_name.
LagrangianFieldSource< label > CAT3(Lagrangian, CAPITALIZE(label), FieldSource)
Definition at line 46 of file coupled.C.
◆ CLEAR_TYPE_CARRIER_FIELDS
| #define CLEAR_TYPE_CARRIER_FIELDS |
( |
|
Type, |
|
|
|
nullArg |
|
) |
| |
Value:
( \
PtrDictionary<CarrierField<Type>>, \
carrierFields<Type>(), \
iter \
) \
{ \
iter().clear(true); \
}
#define forAllIter(Container, container, iter)
Iterate across all elements in the container object of type.
◆ RESET_TYPE_CARRIER_FIELDS
| #define RESET_TYPE_CARRIER_FIELDS |
( |
|
Type, |
|
|
|
nullArg |
|
) |
| |
Value:
( \
PtrDictionary<CarrierField<Type>>, \
carrierFields<Type>(), \
iter \
) \
{ \
iter().reset(predict); \
}
◆ ACCESS_CARRIER_EQNS
| #define ACCESS_CARRIER_EQNS |
( |
|
Type, |
|
|
|
nullArg |
|
) |
| |
Value:
{ \
namespace clouds \
{ \
template<> \
PtrDictionary<CarrierEqn<Type>>& coupled::carrierEqns() const \
{ \
} \
} \
}
Definition at line 96 of file coupled.C.
◆ CLEAR_TYPE_CARRIER_EQNS
| #define CLEAR_TYPE_CARRIER_EQNS |
( |
|
Type, |
|
|
|
nullArg |
|
) |
| |
Value:
( \
PtrDictionary<CarrierEqn<Type>>, \
carrierEqns<Type>(), \
iter \
) \
{ \
iter().clear(); \
}