Nek5000
SEM for Incompressible NS
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
esolv_mod.F90
Go to the documentation of this file.
1 module esolv
2  use kinds, only : dp
3  implicit none
4 
5  integer :: iesolv
6  logical, allocatable :: ifalgn(:), ifrsxy(:)
7  real(DP), allocatable :: volel(:)
8 
9  contains
10 
11  subroutine init_esolv()
12  use size_m
13  implicit none
14 
15 ! allocate(ifalgn(lelv), ifrsxy(lelv))
16  allocate(volel(lelv)) ! verified
17  end subroutine init_esolv
18 
19 end module esolv
subroutine init_esolv()
Definition: esolv_mod.F90:11