00001 #ifdef CH_LANG_CC
00002
00003
00004
00005
00006
00007
00008
00009 #endif
00010
00011 #ifndef _ADVECTIONFUNCTIONS_H_
00012 #define _ADVECTIONFUNCTIONS_H_
00013
00014 #include "IntVect.H"
00015 #include "RealVect.H"
00016
00017 #include "NamespaceHeader.H"
00018
00019
00020
00021
00022
00023 typedef Real (*AdvectionVelocityFunction)(
00024 const RealVect& a_point,
00025
00026 const int& a_velComp);
00027
00028
00029
00030
00031
00032
00033 Real constantAdvection(
00034 const RealVect& a_point,
00035
00036 const int& a_velComp);
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048 Real rotatingAdvection(
00049 const RealVect& a_point,
00050
00051 const int& a_velComp);
00052
00053 #include "NamespaceFooter.H"
00054
00055 #endif