Go to the source code of this file.
|
| namespace | Foam |
| | Namespace for OpenFOAM.
|
Original source file coordSetWriter.H
Definition in file coordSetWriter.H.
◆ defineBufferMethod
| #define defineBufferMethod |
( |
| Type | ) |
|
Value: \
\
DynamicList<word> Type##Names_; \
\
\
PtrDynList<Field<Type>> Type##Fields_; \
\
\
void appendField(const word& fieldName, const Field<Type>& vals) \
{ \
Type##Names_.append(fieldName); \
Type##Fields_.append(vals.clone()); \
}
Definition at line 175 of file coordSetWriter.H.
◆ declareCoordSetWriterWriteMethod [1/2]
| #define declareCoordSetWriterWriteMethod |
( |
| Type | ) |
|
Value: \ \
( \
const word& fieldName, \
const Field<Type>&
field \
) = 0; \
\ \
( \
const word& fieldName, \
const List<Field<Type>>& fieldValues \
) = 0;
writer write("magLe", fld)
Definition at line 762 of file coordSetWriter.H.
◆ declareCoordSetWriterWriteMethod [2/2]
| #define declareCoordSetWriterWriteMethod |
( |
| Type | ) |
|
Value: \ \
( \
const word& fieldName, \
const Field<Type>& values \
); \
\ \
( \
const word& fieldName, \
const List<Field<Type>>& fieldValues \
);
Definition at line 762 of file coordSetWriter.H.