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

« back to all changes in this revision

Viewing changes to src/NWints/api/int_vstat1e.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_vstat1e.F 19696 2010-10-29 16:53:42Z d3y133 $
 
1
C> \ingroup nwint
 
2
C> @{
 
3
C> 
 
4
C> \brief Compute the nuclear attaction integrals for pseudo nucleii
 
5
C>
 
6
C> This subroutine is modified from int_1epe. It evaluates the nuclear 
 
7
C> attraction integrals for each pseudo nucleus at positions specified by the
 
8
C> array qxyz, which are just the quardrature points. The effective charges
 
9
C> of these pseudo nuclei are determined by the transition densities and/or 
 
10
C> the quardrature weights.
 
11
C>
 
12
c $Id: int_vstat1e.F 23398 2013-01-08 08:18:46Z d3y133 $
2
13
      subroutine int_vstat1e(i_basis,ish,j_basis,jsh,lscr,scr,nqpts,
3
14
     &     vint,qxyz,zq,dens)
4
15
c
35
46
      external cando_nw_1e
36
47
      external cando_nw
37
48
c
38
 
      integer i_basis ! [input] basis set handle for ish
39
 
      integer ish     ! [input] i shell/contraction
40
 
      integer j_basis ! [input] basis set handle for jsh
41
 
      integer jsh     ! [input] j shell/contraction
42
 
      integer lscr    ! [input] length of scratch array
43
 
      double precision scr(lscr)    ! [scratch] scratch array
44
 
      integer nqpts                 ! [input] length of potential buffer
45
 
      double precision vint(nqpts)  ! [output] potential integrals
46
 
      double precision qxyz(3,nqpts)  ! [input] coordinates of q points
47
 
      double precision zq(nqpts)    ! [input] effective charges on q points
48
 
      double precision dens(*)      ! [input] elements of density matrix
 
49
      integer i_basis !< [Input] basis set handle for ish
 
50
      integer ish     !< [Input] i shell/contraction
 
51
      integer j_basis !< [Input] basis set handle for jsh
 
52
      integer jsh     !< [Input] j shell/contraction
 
53
      integer lscr    !< [Input] length of scratch array
 
54
      double precision scr(lscr)    !< [Scratch] scratch array
 
55
      integer nqpts                 !< [Input] length of potential buffer
 
56
      double precision vint(nqpts)  !< [Output] potential integrals
 
57
      double precision qxyz(3,nqpts) !< [Input] coordinates of q points
 
58
      double precision zq(nqpts)    !< [Input] effective charges on q points
 
59
      double precision dens(*)      !< [Input] elements of density matrix
49
60
c::local
50
61
      logical shells_ok, orel, oirel, ojrel, oNR
51
62
      integer i_geom, j_geom, ibas, jbas, ucont
185
196
      endif
186
197
c     
187
198
      end
188
 
      
 
199
C> @}