00001 #if CH_LANG_CC
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 #endif
00033
00034 #ifndef CH_LGINTEGRATOR_H
00035 #define CH_LGINTEGRATOR_H
00036
00037 #define GAS
00038 #define GRAVITY
00039
00040 #undef INFINITE_DOMAIN_BC
00041
00042 #if (CH_SPACEDIM == 2)
00043
00044 #define WRHO 0
00045 #define WVELX 1
00046 #define WVELY 2
00047 #define WPRES 3
00048 #define WENTR 4
00049
00050 #define WNUM (5)
00051 #define WSLOPE (5)
00052
00053 #define URHO 0
00054 #define UMOMX 1
00055 #define UMOMY 2
00056 #define UENG 3
00057 #define UENTR 4
00058
00059 #define UNUM (5)
00060 #define UFLUX (5)
00061
00062 #define MWAVE 0
00063 #define ZWAVE 1
00064 #define SWAVE 3
00065 #define PWAVE 4
00066
00067 #endif
00068
00069 #if (CH_SPACEDIM == 3)
00070
00071 #define WRHO 0
00072 #define WVELX 1
00073 #define WVELY 2
00074 #define WVELZ 3
00075 #define WPRES 4
00076 #define WENTR 5
00077
00078 #define WNUM (6)
00079 #define WSLOPE (6)
00080
00081 #define URHO 0
00082 #define UMOMX 1
00083 #define UMOMY 2
00084 #define UMOMZ 3
00085 #define UENG 4
00086 #define UENTR 5
00087
00088 #define UNUM (6)
00089 #define UFLUX (6)
00090
00091 #define MWAVE 0
00092 #define ZWAVE 1
00093 #define SWAVE 4
00094 #define PWAVE 5
00095
00096 #endif
00097
00098 #endif
00099
00100