~ubuntu-branches/ubuntu/trusty/nwchem/trusty-proposed

« back to all changes in this revision

Viewing changes to src/ddscf/print_integrals.F

  • Committer: Package Import Robot
  • Author(s): Michael Banck, Daniel Leidert, Andreas Tille, Michael Banck
  • Date: 2013-07-04 12:14:55 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20130704121455-5tvsx2qabor3nrui
Tags: 6.3-1
* New upstream release.
* Fixes anisotropic properties (Closes: #696361).
* New features include:
  + Multi-reference coupled cluster (MRCC) approaches
  + Hybrid DFT calculations with short-range HF 
  + New density-functionals including Minnesota (M08, M11) and HSE hybrid
    functionals
  + X-ray absorption spectroscopy (XAS) with TDDFT
  + Analytical gradients for the COSMO solvation model
  + Transition densities from TDDFT 
  + DFT+U and Electron-Transfer (ET) methods for plane wave calculations
  + Exploitation of space group symmetry in plane wave geometry optimizations
  + Local density of states (LDOS) collective variable added to Metadynamics
  + Various new XC functionals added for plane wave calculations, including
    hybrid and range-corrected ones
  + Electric field gradients with relativistic corrections 
  + Nudged Elastic Band optimization method
  + Updated basis sets and ECPs 

[ Daniel Leidert ]
* debian/watch: Fixed.

[ Andreas Tille ]
* debian/upstream: References

[ Michael Banck ]
* debian/upstream (Name): New field.
* debian/patches/02_makefile_flags.patch: Refreshed.
* debian/patches/06_statfs_kfreebsd.patch: Likewise.
* debian/patches/07_ga_target_force_linux.patch: Likewise.
* debian/patches/05_avoid_inline_assembler.patch: Removed, no longer needed.
* debian/patches/09_backported_6.1.1_fixes.patch: Likewise.
* debian/control (Build-Depends): Added gfortran-4.7 and gcc-4.7.
* debian/patches/10_force_gcc-4.7.patch: New patch, explicitly sets
  gfortran-4.7 and gcc-4.7, fixes test suite hang with gcc-4.8 (Closes:
  #701328, #713262).
* debian/testsuite: Added tests for COSMO analytical gradients and MRCC.
* debian/rules (MRCC_METHODS): New variable, required to enable MRCC methods.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
c
 
2
c     wrapper utility function to print ao integrals
 
3
      subroutine print_integrals(basis, oskel)
 
4
c     
 
5
C$Id: print_integrals.F 23464 2013-01-18 20:22:20Z niri $
 
6
c
 
7
      implicit none
 
8
c     
 
9
#include "errquit.fh"
 
10
#include "mafdecls.fh"
 
11
#include "global.fh"
 
12
#include "tcgmsg.fh"
 
13
#include "stdio.fh"
 
14
#include "bas.fh"
 
15
#include "geom.fh"
 
16
#include "rtdb.fh"
 
17
#include "util.fh"
 
18
c
 
19
      integer basis
 
20
      logical oskel
 
21
c
 
22
      if (util_print('kinetic',print_never)) then
 
23
       if (ga_nodeid().eq.0) then
 
24
          write(luout,*) "===================================="
 
25
          write(luout,*) "Begin kinetic 1-e integrals"
 
26
          write(luout,*) "===================================="
 
27
       end if
 
28
       call print_1eints(basis, basis, 'kinetic', oskel)
 
29
       if (ga_nodeid().eq.0) then
 
30
          write(luout,*) "===================================="
 
31
          write(luout,*) "End kinetic 1-e integrals"
 
32
          write(luout,*) "===================================="
 
33
       end if
 
34
      endif
 
35
c
 
36
      if (util_print('potential',print_never)) then
 
37
       if (ga_nodeid().eq.0) then
 
38
          write(luout,*) "===================================="
 
39
          write(luout,*) "Begin potential 1-e integrals"
 
40
          write(luout,*) "===================================="
 
41
       end if
 
42
       call print_1eints(basis, basis, 'potential', oskel)
 
43
       if (ga_nodeid().eq.0) then
 
44
          write(luout,*) "===================================="
 
45
          write(luout,*) "End potential 1-e integrals"
 
46
          write(luout,*) "===================================="
 
47
       end if
 
48
      endif
 
49
c
 
50
      if (util_print('overlap',print_never)) then
 
51
       if (ga_nodeid().eq.0) then
 
52
          write(luout,*) "===================================="
 
53
          write(luout,*) "Begin overlap 1-e integrals"
 
54
          write(luout,*) "===================================="
 
55
       end if
 
56
       call print_1eints(basis, basis, 'overlap', oskel)
 
57
       if (ga_nodeid().eq.0) then
 
58
          write(luout,*) "===================================="
 
59
          write(luout,*) "End overlap 1-e integrals"
 
60
          write(luout,*) "===================================="
 
61
       end if
 
62
      endif
 
63
c
 
64
      if (util_print('ao2eints',print_never)) then
 
65
       if (ga_nodeid().eq.0) then
 
66
          write(luout,*) "===================================="
 
67
          write(luout,*) "Begin all 2-e integrals"
 
68
          write(luout,*) "===================================="
 
69
       end if
 
70
       call print_aoints(basis)
 
71
       if (ga_nodeid().eq.0) then
 
72
          write(luout,*) "===================================="
 
73
          write(luout,*) "End all 2-e integrals"
 
74
          write(luout,*) "===================================="
 
75
       end if
 
76
      endif
 
77
c
 
78
      if (util_print('allaoints',print_never)) ! Debug
 
79
     $     call print_aoints(basis)
 
80
c
 
81
      return
 
82
      end