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

« back to all changes in this revision

Viewing changes to src/NWints/api/intp_1eke.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> \ingroup nwint
 
2
C> @{
 
3
C>
 
4
C> \brief Compute 1-electron Gaussian periodic kinetic energy
 
5
C> integrals
 
6
C>
 
7
C> See [1] for details.
 
8
C>
 
9
C> [1] JE Jaffe, AC Hess,
 
10
C>     <i>"Gaussian basis density functional theory for systems 
 
11
C>     periodic in two or three dimensions: Energy and forces"</i>,
 
12
C>    J.Chem.Phys. <b>105</b>, 10983-10998 (1996), DOI:
 
13
C>    <a href="http://dx.doi.org/10.1063/1.472866">
 
14
C>    10.1063/1.472866</a>
 
15
C>
1
16
      subroutine intp_1eke(i_basis,ish,j_basis,jsh,R,lscr,scr,lke,Ke)
2
 
c $Id: intp_1eke.F 19696 2010-10-29 16:53:42Z d3y133 $
 
17
c $Id: intp_1eke.F 23392 2013-01-07 20:00:04Z d3y133 $
3
18
      implicit none
4
19
#include "nwc_const.fh"
5
20
#include "errquit.fh"
24
39
      external cando_nw_1e
25
40
      external cando_nw
26
41
c::passed
27
 
      integer i_basis ! basis set handle for ish functions
28
 
      integer j_basis ! basis set handle for jsh functions
29
 
      integer ish     ! lexical contraction/shell index
30
 
      integer jsh     ! lexical contraction/shell index
31
 
      integer lscr    ! length of the scratch array
32
 
      integer lke     ! length of kinetic energy integral array
33
 
      double precision Ke(lke)   ! kinetic energy integral array
34
 
      double precision scr(lscr) ! scratch array
35
 
      double precision R(3)      ! translational vector in fractional coords
 
42
      integer i_basis !< [Input] basis set handle for ish functions
 
43
      integer j_basis !< [Input] basis set handle for jsh functions
 
44
      integer ish     !< [Input] lexical contraction/shell index
 
45
      integer jsh     !< [Input] lexical contraction/shell index
 
46
      integer lscr    !< [Input] length of the scratch array
 
47
      integer lke     !< [Input] length of kinetic energy integral array
 
48
      double precision Ke(lke)   !< [Output] kinetic energy integral array
 
49
      double precision scr(lscr) !< [Scratch] scratch array
 
50
      double precision R(3)      !< [Input] translational vector in fractional coords
36
51
c::local
37
52
      logical shells_ok
38
53
      integer i_geom, j_geom, ibas, jbas, ucont
125
140
      endif
126
141
c
127
142
      end
 
143
C> @}