source: CIVL/examples/fortran/nek5000/core/makeq_aux.f

main
Last change on this file was ea777aa, checked in by Alex Wilton <awilton@…>, 3 years ago

Moved examples, include, build_default.properties, common.xml, and README out from dev.civl.com into the root of the repo.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@5704 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100755
File size: 563 bytes
Line 
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
Note: See TracBrowser for help on using the repository browser.