Nek5000
SEM for Incompressible NS
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
tstep_mod.F90
Go to the documentation of this file.
1 
2 module tstep
3  use kinds, only : dp
4  use size_m
5  implicit none
6 
7  real(DP) :: time,timef,fintim,timeio &
8  ,dt,dtlag(10),dtinit,dtinvm,courno,ctarg &
9  ,ab(10),bd(10),abmsh(10) &
10  ,avdiff(ldimt1),avtran(ldimt1),volfld(0:ldimt1) &
11  ,tolrel,tolabs,tolhdf,tolpdf,tolev,tolnl,prelax &
12  ,tolps,tolhs,tolhr,tolhv,tolht(ldimt1),tolhe &
13  ,vnrmh1,vnrmsm,vnrml2,vnrml8,vmean &
14  ,tnrmh1(ldimt),tnrmsm(ldimt),tnrml2(ldimt) &
15  ,tnrml8(ldimt),tmean(ldimt)
16 
17 
18  real(DP) :: re_cell = 0._dp !>
19 
20  integer :: ifield,imesh,istep,nsteps,iostep,lastep,iocomm &
21  ,instep &
22  ,nab,nbd,nbdinp,ntaubd &
23  ,nmxh,nmxp,nmxe,nmxnl,ninter &
24  ,nelfld(0:ldimt1) &
25  ,nconv,nconv_max, ntdump
26 
27  real(DP) :: pi, betag, gtheta
28  LOGICAL :: ifprnt,if_full_pres
29 
30  real(DP) :: lyap(3,lpert)
31 
32 end module tstep
cleaned
Definition: tstep_mod.F90:2