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

« back to all changes in this revision

Viewing changes to src/NWints/api/int_angmom.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 $Id: int_angmom.F 19696 2010-10-29 16:53:42Z d3y133 $
 
1
c $Id: int_angmom.F 23163 2012-11-27 19:03:33Z d3y133 $
2
2
*
 
3
C> \ingroup nwint
 
4
C> @{
 
5
C>
 
6
C> \brief Computes the angular momentum integrals
 
7
C>
 
8
C> Computes the angular momentum integrals. The integrals are stored
 
9
C> in the order:
 
10
C>
 
11
C> - h11(*,1) = \f$ \int g_i(r) \left(y\frac{\partial}{\partial z} - z\frac{\partial}{\partial y}\right) g_j(r) dr \f$
 
12
C>
 
13
C> - h11(*,2) = \f$ \int g_i(r) \left(z\frac{\partial}{\partial x} - x\frac{\partial}{\partial z}\right) g_j(r) dr \f$
 
14
C>
 
15
C> - h11(*,3) = \f$ \int g_i(r) \left(x\frac{\partial}{\partial y} - y\frac{\partial}{\partial x}\right) g_j(r) dr \f$
 
16
C>
 
17
C> where the "*" represents any basis function pairs.
 
18
C>
3
19
c:tex-% this is part of the API Standard Integral routines.
4
20
c:tex-\subsection{int\_angmom}
5
21
c:tex-This routine computes the angular momentum integrals
32
48
      external cando_hnd_1e_prp
33
49
c::passed
34
50
c:tex-\begin{verbatim}
35
 
      integer i_basis ! [input] basis set handle for ish
36
 
      integer ish     ! [input] i shell/contraction
37
 
      integer j_basis ! [input] basis set handle for jsh
38
 
      integer jsh     ! [input] j shell/contraction
39
 
      integer lscr    ! [input] length of scratch array
40
 
      double precision scr(lscr) ! [scratch] scratch array
41
 
      integer lh11               ! [input] length of h11 buffer
42
 
      double precision h11(lh11) ! [output] h11 integrals
 
51
      integer i_basis !< [Input] basis set handle for ish
 
52
      integer ish     !< [Input] i shell/contraction
 
53
      integer j_basis !< [Input] basis set handle for jsh
 
54
      integer jsh     !< [Input] j shell/contraction
 
55
      integer lscr    !< [Input] length of scratch array
 
56
      double precision scr(lscr) !< [Scratch] scratch array
 
57
      integer lh11               !< [Input] length of h11 buffer
 
58
      double precision h11(lh11) !< [Output] h11 integrals
43
59
c:tex-\end{verbatim}
44
60
c::local
45
61
      integer igeom, jgeom, ibas, jbas, ucont
146
162
c
147
163
      return
148
164
      end
 
165
C> @}