Nek5000
SEM for Incompressible NS
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
turbo_mod.F90
Go to the documentation of this file.
1 
2 module turbo
3 ! Common block for turbulence model
4  use kinds, only : dp
5  implicit none
6 
7 #if 0
8  real(DP), allocatable, dimension(:,:,:,:) :: vturb, turbl, uwall, zwall
9  real(DP), allocatable, dimension(:,:,:,:) :: twx, twy, twz
10 
11  real(DP) :: cmu,cmt,sgk,sge,ce1,ce2,vkc,bta,sgt &
12  , beta1,beta2 &
13  , cmi,ski,sei,vki,bti,sti &
14  , zpldat,zpudat,zpvdat,tlmax,tlimul
15 #endif
16 
17  integer :: ifldk,ifldtk,iflde,ifldte
18  logical :: ifswall,ifcwuz
19 ! logical, allocatable :: IFTWSH(:,:)
20 
21  contains
22 
23  subroutine init_turbo
24  use size_m
25  implicit none
26 
27 #if 0
28  allocate(vturb(lx1m,ly1m,lz1m,lelv) &
29  , turbl(lx1m,ly1m,lz1m,lelv) &
30  , uwall(lx1m,lz1m,6,lelv) &
31  , zwall(lx1m,lz1m,6,lelv) &
32  , twx(lx1m,lz1m,6,lelv) &
33  , twy(lx1m,lz1m,6,lelv) &
34  , twz(lx1m,lz1m,6,lelv) )
35 
36  allocate(iftwsh(6,lelv))
37 #endif
38 
39  end subroutine init_turbo
40 
41 end module turbo
subroutine init_turbo
Definition: turbo_mod.F90:23
cleaned
Definition: turbo_mod.F90:2