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

« back to all changes in this revision

Viewing changes to src/tools/ga-5-2/pario/dra/dra.fh

  • 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
!****************** Fortran header file for Disk Arrays *****************
 
2
 
 
3
#include  "chemio.h"
 
4
#define   DRA_RW ELIO_RW
 
5
#define   DRA_R  ELIO_R
 
6
#define   DRA_W  ELIO_W
 
7
          Integer           DRA_REQ_INVALID
 
8
          parameter        (DRA_REQ_INVALID = -333)
 
9
          Integer           DRA_CREATE
 
10
          Integer           NDRA_CREATE
 
11
          Integer           NDRA_CREATE_CONFIG
 
12
          Integer           DRA_OPEN
 
13
          Integer           DRA_INQUIRE
 
14
          Integer           NDRA_INQUIRE
 
15
          Integer           DRA_INIT
 
16
          Integer           DRA_CLOSE
 
17
          Integer           DRA_DELETE
 
18
          Integer           DRA_WRITE
 
19
          Integer           NDRA_WRITE
 
20
          Integer           DRA_READ
 
21
          Integer           NDRA_READ
 
22
          Integer           DRA_WRITE_SECTION
 
23
          Integer           NDRA_WRITE_SECTION
 
24
          Integer           DRA_READ_SECTION
 
25
          Integer           NDRA_READ_SECTION
 
26
          Integer           DRA_PROBE
 
27
          Integer           DRA_SET_DEBUG
 
28
          Integer           DRA_WAIT
 
29
          Integer           DRA_TERMINATE  
 
30
          External          DRA_CREATE
 
31
          External          NDRA_CREATE
 
32
          External          NDRA_CREATE_CONFIG
 
33
          External          DRA_OPEN
 
34
          External          DRA_INQUIRE
 
35
          External          NDRA_INQUIRE
 
36
          External          DRA_INIT
 
37
          External          DRA_CLOSE
 
38
          External          DRA_DELETE
 
39
          External          DRA_WRITE
 
40
          External          NDRA_WRITE
 
41
          External          DRA_READ
 
42
          External          NDRA_READ
 
43
          External          DRA_WRITE_SECTION
 
44
          External          NDRA_WRITE_SECTION
 
45
          External          DRA_READ_SECTION
 
46
          External          NDRA_READ_SECTION
 
47
          External          DRA_PROBE
 
48
          External          DRA_SET_DEBUG
 
49
          External          DRA_WAIT
 
50
          External          DRA_TERMINATE
 
51
          External          DRA_FLICK
 
52
 
 
53