KTH framework for Nek5000 toolboxes; testing version  0.0.1
makeq_aux.f
Go to the documentation of this file.
1  subroutine makeq_aux
2 
3  include 'SIZE'
4  include 'TOTAL'
5 
6  logical if_conv_std
7 
8  if_conv_std = .true.
9  if (ifmhd.and.ifaxis) if_conv_std = .false. ! conv. treated in induct.f
10 
11  if (if_conv_std) call makeuq ! this will zero bq first
12 
13  if (ifdp0dt .and. ifield.eq.2 .and. .not.ifcvfld(ifield)) then
14  dd = dp0thdt * (gamma0 - 1.)/gamma0
15  ntot = nx1*ny1*nz1*nelv
16  call add2s2 (bq(1,1,1,1,ifield-1),bm1,dd,ntot)
17  endif
18 
19  if(filtertype.eq.2) call make_hpf
20 
21  return
22  end
subroutine makeuq
Definition: conduct.f:106
subroutine make_hpf
Definition: hpf.f:2
subroutine makeq_aux
Definition: makeq_aux.f:2
subroutine add2s2(a, b, c1, n)
Definition: math.f:690