MFIX  2016-1
ur_facs_mod.f
Go to the documentation of this file.
1  MODULE ur_facs
2 
3  use param, only: dim_eqs
4 
5 ! Under relaxation factors
6  DOUBLE PRECISION :: ur_fac(dim_eqs)
7 
8 ! Under relaxation factors for coefficient update:
9 ! [0] every time step (explicit)
10 ! [1] every iteration (implicit)
11 ! (0,1) underrelaxed
12 
13 ! Note that these values need to be temporarily set to 1 before the calc_coeff
14 ! call in time_march. And after the call reset to their original value.
15 
16 ! Under relaxation factor for gas-solids drag coefficient
17  DOUBLE PRECISION :: ur_f_gs
18 
19 ! Under relaxation factor for conductivity coefficient associated with
20 ! other solid phases for IA theory
21  DOUBLE PRECISION :: ur_kth_sml
22 
23  END MODULE ur_facs
double precision, dimension(dim_eqs) ur_fac
Definition: ur_facs_mod.f:6
double precision ur_f_gs
Definition: ur_facs_mod.f:17
integer, parameter dim_eqs
Definition: param_mod.f:97
Definition: param_mod.f:2
double precision ur_kth_sml
Definition: ur_facs_mod.f:21