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

« back to all changes in this revision

Viewing changes to src/NWints/api/intd_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 the kinetic energy integral derivatives
 
5
C>
 
6
C> Compute the kinetic energy integral derivatives defined as
 
7
C> \f{eqnarray*}{
 
8
C>   \frac{\partial (\mu|\nabla^2|\nu)}{\partial X_x} 
 
9
C>     &=& \int \frac{\partial [g_\mu(X_\mu,r_1)\nabla_1^2g_\nu(X_\nu,r_1)]}{\partial X_x}dr_1
 
10
C> \f}
 
11
C> 
1
12
      subroutine intd_1eke(i_basis,ish,j_basis,jsh,lscr,scr,
2
13
     &       lTa,Ta,idatom)
3
 
c $Id: intd_1eke.F 19696 2010-10-29 16:53:42Z d3y133 $
 
14
c $Id: intd_1eke.F 23256 2012-12-07 20:02:29Z d3y133 $
4
15
c
5
16
c This routine has NOT been extensively tested. - TLW
6
17
c
11
22
      integer int_nint_cart
12
23
      external int_nint_cart
13
24
c::passed
14
 
      integer i_basis   ! [input] ish basis set handle
15
 
      integer ish       ! [input] "i" contraction index
16
 
      integer j_basis   ! [input] jsh basis set handle
17
 
      integer jsh       ! [input] "j" contraction index
18
 
      integer lscr      ! [input] length of scratch space "scr"
19
 
      integer lTa       ! [input] number of kinetic integral derivatives in shells ish and jsh
 
25
      integer i_basis   !< [Input] ish basis set handle
 
26
      integer ish       !< [Input] "i" contraction index
 
27
      integer j_basis   !< [Input] jsh basis set handle
 
28
      integer jsh       !< [Input] "j" contraction index
 
29
      integer lscr      !< [Input] length of scratch space "scr"
 
30
      integer lTa       !< [Input] number of kinetic integral derivatives in shells ish and jsh
20
31
c                       ! NOTE: nint*3 integral derivatives returned per unique center
21
 
      integer idatom(*) ! [output] array identifying centers for derivatives
 
32
      integer idatom(*) !< [Output] array identifying centers for derivatives
22
33
c                       ! e.g., the first nint*3  derivatives go to center idatom(1)
23
34
c                       !       the second nint*3 derivatives go to center idatom(2)
24
35
c
48
59
c                       nint,d <ij>         |
49
60
c                            -------------- |
50
61
c                            d[idatom(2),z]/
51
 
      double precision scr(lscr)
52
 
      double precision Ta(lTa)
 
62
      double precision scr(lscr) !< [Scratch] work space
 
63
      double precision Ta(lTa) !< [Output] The integral derivatives
53
64
*
54
65
      integer nint
55
66
*
385
396
      endif
386
397
c
387
398
      end
 
399
C> @}