Nek5000
SEM for Incompressible NS
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
makeq_aux.F90
Go to the documentation of this file.
1 
2 
3 subroutine makeq_aux
4  use input, only : ifmhd, ifaxis, ifcvode
5  use tstep, only : ifield
6  implicit none
7 
8  logical :: ifturb,if_conv_std
9 
10  if_conv_std = .true.
11  if (ifmhd .AND. ifaxis) if_conv_std = .false. ! conv. treated in induct.f
12 
13  if(ifcvode .AND. ifield == 2) call setprop
14 
15  ifturb = .false.
16 #if 0
17  call whatfld(ifturb)
18  if (ifturb) call maketq ! zero bq
19 #endif
20 
21  if ( .NOT. ifturb .AND. if_conv_std) call makeuq !zero bq
22 
23  return
24 end subroutine makeq_aux
cleaned
Definition: tstep_mod.F90:2
Input parameters from preprocessors.
Definition: input_mod.F90:11
subroutine makeq_aux
Definition: makeq_aux.F90:3
subroutine makeuq
Fill up user defined forcing function and collocate will the mass matrix on the Gauss-Lobatto mesh...
Definition: conduct.F90:122
subroutine setprop
Set variable property arrays.
Definition: setprop.F90:5