Nek5000
SEM for Incompressible NS
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
fdmh1_mod.F90
Go to the documentation of this file.
1 module fdmh1
3  use kinds, only : dp
4  implicit none
5 
6  real(DP), allocatable :: dd(:,:),fds(:,:), fdst(:,:)
7  real(DP), allocatable :: elsize(:,:), bhalf(:,:,:,:)
8 
9  integer :: kfldfdm
10  integer, allocatable :: ktype(:,:,:)
11 
12  logical :: ifbhalf
13 
14  contains
15 
16  subroutine init_fdmh1()
17  use size_m
18  implicit none
19 
20 ! allocate(ktype(lelt, 3, 0:4))
21 ! allocate(elsize(3,lelt)) ! verified
22 ! allocate(dd(lx1,9),fds(lx1*lx1,9),fdst(lx1*lx1,9))
23 ! allocate(bhalf(lx1,ly1,lz1,lelt))
24 
25  end subroutine init_fdmh1
26 
27 end module fdmh1
subroutine init_fdmh1()
Definition: fdmh1_mod.F90:16