fvConstraintM.H File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define DEFINE_FV_CONSTRAINT_CONSTRAIN(Type, nullArg)
 
#define IMPLEMENT_FV_CONSTRAINT_CONSTRAIN(Type, constraintType)
 
#define DEFINE_FV_CONSTRAINT_CONSTRAIN_FIELD(Type, nullArg)    virtual bool constrain(VolField<Type>& field) const;
 
#define IMPLEMENT_FV_CONSTRAINT_CONSTRAIN_FIELD(Type, constraintType)
 

Detailed Description

Original source file fvConstraintM.H

Definition in file fvConstraintM.H.

Macro Definition Documentation

◆ DEFINE_FV_CONSTRAINT_CONSTRAIN

#define DEFINE_FV_CONSTRAINT_CONSTRAIN (   Type,
  nullArg 
)
Value:
virtual bool constrain \
( \
fvMatrix<Type>& eqn, \
const word& fieldName \
) const;
fvConstraints constrain(rhoEqn)

Definition at line 26 of file fvConstraintM.H.

◆ IMPLEMENT_FV_CONSTRAINT_CONSTRAIN

#define IMPLEMENT_FV_CONSTRAINT_CONSTRAIN (   Type,
  constraintType 
)
Value:
( \
fvMatrix<Type>& eqn, \
const word& fieldName \
) const \
{ \
return constrainType(eqn, fieldName); \
}

Definition at line 33 of file fvConstraintM.H.

◆ DEFINE_FV_CONSTRAINT_CONSTRAIN_FIELD

#define DEFINE_FV_CONSTRAINT_CONSTRAIN_FIELD (   Type,
  nullArg 
)     virtual bool constrain(VolField<Type>& field) const;

Definition at line 46 of file fvConstraintM.H.

◆ IMPLEMENT_FV_CONSTRAINT_CONSTRAIN_FIELD

#define IMPLEMENT_FV_CONSTRAINT_CONSTRAIN_FIELD (   Type,
  constraintType 
)
Value:
bool Foam::constraintType::constrain(VolField<Type>& field) const \
{ \
return constrainType(field); \
}

Definition at line 49 of file fvConstraintM.H.