MFIX  2016-1
visc_g_mod.f
Go to the documentation of this file.
1  MODULE visc_g
2 
3 ! trace of D_g at i, j, k
4  DOUBLE PRECISION, DIMENSION(:), ALLOCATABLE :: trd_g
5 
6 ! Turbulent viscosity of fluid phase: sum of molecular
7 ! and eddy viscosities
8  DOUBLE PRECISION, DIMENSION(:), ALLOCATABLE :: mu_gt
9 
10 ! Turbulent viscosity of fluid phase: sum of molecular
11 ! and eddy viscosities x the void fraction of fluid phase
12 ! when ishii model is invoked
13  DOUBLE PRECISION, DIMENSION(:), ALLOCATABLE :: epmu_gt
14 
15 
16 ! Second coefficient of viscosity
17  DOUBLE PRECISION, DIMENSION(:), ALLOCATABLE :: lambda_gt
18 
19 ! Second coefficient of viscosity x void fraction of fluid phase
20 ! when ishii model is invoked
21  DOUBLE PRECISION, DIMENSION(:), ALLOCATABLE :: eplambda_gt
22 
23 ! Characteristic length for turbulence
24  DOUBLE PRECISION, DIMENSION(:), ALLOCATABLE :: l_scale
25 
26 ! gas viscosity needs to be updated during iterations?
27  LOGICAL :: recalc_visc_g
28 
29 ! diffusive component of conv-dif
30 ! stores diffusive term in matrix for x, y, z momentum cell
31  DOUBLE PRECISION, DIMENSION(:,:), ALLOCATABLE :: df_gu
32  DOUBLE PRECISION, DIMENSION(:,:), ALLOCATABLE :: df_gv
33  DOUBLE PRECISION, DIMENSION(:,:), ALLOCATABLE :: df_gw
34 
35  END MODULE visc_g
double precision, dimension(:,:), allocatable df_gw
Definition: visc_g_mod.f:33
logical recalc_visc_g
Definition: visc_g_mod.f:27
double precision, dimension(:), allocatable mu_gt
Definition: visc_g_mod.f:8
double precision, dimension(:,:), allocatable df_gv
Definition: visc_g_mod.f:32
double precision, dimension(:), allocatable l_scale
Definition: visc_g_mod.f:24
double precision, dimension(:), allocatable trd_g
Definition: visc_g_mod.f:4
double precision, dimension(:), allocatable epmu_gt
Definition: visc_g_mod.f:13
double precision, dimension(:), allocatable eplambda_gt
Definition: visc_g_mod.f:21
double precision, dimension(:), allocatable lambda_gt
Definition: visc_g_mod.f:17
double precision, dimension(:,:), allocatable df_gu
Definition: visc_g_mod.f:31