Nek5000
SEM for Incompressible NS
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
wz_mod.F90
Go to the documentation of this file.
1 
2 module wz_m
3 ! Gauss-Labotto and Gauss points
4  use kinds, only : dp
5  use size_m
6  implicit none
7 
8  real(DP) :: zgm1(lx1,3), zgm2(lx2,3), zgm3(lx3,3) &
9  ,zam1(lx1) , zam2(lx2) , zam3(lx3)
10 
11 ! Weights
12 
13  real(DP) :: wxm1(lx1), wym1(ly1), wzm1(lz1), w3m1(lx1,ly1,lz1) &
14  ,wxm2(lx2), wym2(ly2), wzm2(lz2), w3m2(lx2,ly2,lz2) &
15  ,wxm3(lx3), wym3(ly3), wzm3(lz3), w3m3(lx3,ly3,lz3) &
16  ,wam1(ly1), wam2(ly2), wam3(ly3) &
17  ,w2am1(lx1,ly1), w2cm1(lx1,ly1) &
18  ,w2am2(lx2,ly2), w2cm2(lx2,ly2) &
19  ,w2am3(lx3,ly3), w2cm3(lx3,ly3)
20 
21 end module wz_m
cleaned
Definition: wz_mod.F90:2