CUBE File Format

The CUBE file is a common format for storing molecular geometric and volumetric field data from quantum/computational chemical calculations. It originates from the Gaussian software package.[1Gaussian 09] The official specification of the CUBE file format, sanctioned by Gaussian, Inc., is described on the Gaussian webpage[L1Website of the Gaussian, Inc.] as part of the document on the “cubegen” utility.[L2“cubegen”]

Format specification can be found on Paul Bourke's webpage,[L3Bourke, P. “Gaussian Cube Files”] on the webpage of the VMD visualization program,[L4“Cube Plugin, Version 1.1.”] and as part[L5Skinn, B. “Gaussian CUBE File Format”] of the online document on the binary “h5cube” file[L6Skinn, B. “h5cube File Specification”] based on the HDF5 format.[L7“HDF5: a data model, library, and file format for storing and managing data”] These webpages provide a cleaner layout of possible arrangements of CUBE file contents. In particular, the Gaussian specification is ambiguous about whitespace requirements, so parsing of CUBE files should accommodate some variation in the format, including (i) variable amounts/types of whitespace between the values on a given line, and (ii) the presence of leading and/or trailing whitespace on a given line.

A description of the contents of a representative subset of CUBE files in circulation are reported here. The extensions that are specific to PAMoC are highlighted. Files formatted to PAMoC specification may not be compatible with all software supporting CUBE file input.

The file contains plain text (human readable) and consists of a header which includes the atom information and the size as well as orientation of the volumetric data. This is followed by the volumetric data, one or more values per voxel element.

  1. Header
  2. Volumetric data
  3. Compatibility issues
  4. Cube generators
  5. References and Notes
  6. Links

1. - Header

The first two lines of the header are comments, they are generally ignored by parsing packages or used as two default labels. In VMD,[L4“Cube Plugin, Version 1.1.”] by convention the first line is typically the title of the system and the second line is a description of the property/content stored in the file. For robustness, both of these lines should not be zero-length. As well, while there is no defined maximum length for either of these lines, both should not exceed 80 characters in length.

The third line has the number of atoms (NAtoms) included in the file followed by the position of the origin (X0, Y0, Z0) of the volumetric data and by the number of values (NVal) per voxel.

A negative value of the number of atoms here indicates that the CUBE file contains one or more rows of integers representing identifiers associated with multiple data values at each voxel. A positive value indicates that the file does not contains these lines. The absolute value of the number of atoms defines the number of rows of molecular geometry data. The CUBE specification is silent as to whether a zero value is permitted for the number of atoms; most applications likely do not support CUBE files with no atoms.

If the number of atoms is positive, NVal indicates how many data values are recorded at each point in the voxel grid; it may be omitted, in which case a value of one is assumed. If the number of atoms is negative, the value of NVal is irrelevant and can be omitted.
Densities, the norm of the density gradient, the Laplacian of the density, and the potential are scalars (i.e. one value per point, NVal=1). A gradient cube contains the density plus the vector gradient of the density, so it has four values per point (NVal=4): i.e. the value of the density plus the X, Y, and Z components of its gradient. Similarly, an electric field cube contains the potential plus the electric field vector, so it has four values per point (NVal=4).

The next three lines give the number of voxels along each axis (Nx, Ny, Nz) followed by the axis vectors X = (Xx, Xy, Xz), Y = (Yx, Yy, Yz). Z = (Zx, Zy, Zz). Note this means the volume need not be aligned with the coordinate axis, indeed it also means it may be sheared although most volumetric packages won't support that. Really, many tools like PAMoC only support voxel axes that are aligned with the geometry axes (and thus are also orthogonal). In this case the component values Xx, Yy, and Zz will be positive and the other six (Xy, Xz, Yx, Yz, Zx, and Zy) will be identically zero.

The length of each vector is the length of the side of the voxel thus allowing non cubic volumes.
If the sign of the number of voxels in a dimension is positive then the units are Bohr, if negative then Angstroms. As noted in the official Gaussian documentation,[L2“cubegen.”] in a CUBE file distance units must always be in Bohrs, and thus the ‘units flag’ function of a negative sign is superfluous. It is prudent to design applications to handle gracefully a negative value here, however. And this is what is done in PAMoC.

The penultimate section in the header is one line for each atom, consisting of 5 numbers, the first is the atomic number, the second is the nuclear charge of the atom, the last three are the Xi, Yi, Zi coordinates of the atom in the geometric frame of reference (X0, Y0, Z0).
As many applications do not use the nuclear charge of the atom, the corresponding field could be omitted. So, PAMoC counts the fields on the line and assigns the values contained in the last three fields to the atom coordinates.

The last section in the header is only present if NAtoms is negative. This section comprises one or more rows of integers (written with format 10I5), representing identifiers associated with multiple data values at each voxel, with a total of M + 1 values present. The most common meaning of these identifiers is orbital indices, in CUBE files containing wavefunction data. The first value must be positive and equal to M, to indicate the length of the rest of the list. Each of these M values may be any integer, with the constraint that all values should be unique. Further, all M values should be non-negative, as unpredictable behavior may result in some applications if negative integers are provided. It is clear that when this section is present the value of M replacess that of NVal (i.e. NVal = M).

The original Gaussian format arranged numerical integer values in a 5-digit wide fields (format I5) and floating point values in a 12-character wide field with 6 decimal places (format F12.6). For example, schematically, the header section of CUBE files will look like this:

 1st comment line
 2nd comment line
 NAtoms, X0, Y0, Z0, NVal
 Nx, Xx, Yx, Zx
 Ny, Xy, Yy, Zy
 Nz, Xz, Yz, Zz
 IA1, Chg1, X1,  Y1,  Z1
 ...  ...  ...  ...  ...
 IAn, Chgn, Xn,  Yn,  Zn
   M, m1, m2, m3, m4, m5, m6, m7, m8, m9
 m10,m11,m12, ..., mM
 (A)
 (A)
 (I5,3F12.6,I5)
 (I5,3F12.6)
 (I5,3F12.6)
 (I5,3F12.6)
 (I5,4F12.6)
 (I5,4F12.6)
 (I5,4F12.6)
 (10I5)
 (10I5)
 
 
  number of atoms, origin of the cube, number of voxels
  number of increments in the slowest running direction
  number of increments in the intermediate running direction
  number of increments in the fastest running direction
  atomic number, charge, and coordinates of the first atom
 ...  ...  ...  ...  ...
  atomic number, charge, and coordinates of the last atom
  number of MOs and their sequence numbers
  

2. - Volumetric data

This section consists of one floating point number for each volumetric element. The original Gaussian format arranged the values one row per record (i.e., Nx × Ny records each of length Nz × NVal). Each row is written out in format (6E13.5). In this case, if Nz × NVal is not a multiple of six, then there may be blank space in some lines. However, most parsing programs, including PAMoC, can read any white space separated format. Traditionally the grid is arranged with the X axis as the outer loop and the Z axis as the inner loop. A total of NX × NY × NZ × NVAL values should be present, flattened as follows (in the below Python pseudocode the for-loop variables are iterated starting from zero):[L5Skinn, B. “Gaussian CUBE File Format”]

for i in range(NX):
    for j in range(NY):
        for k in range(NZ):
            for l in range({NVAL}):

                write(data_array[i, j, k, l])
                if (k*{NVAL} + l) mod 6 == 5:
                    write('\n')

        write('\n')

As illustrated above a newline is typically inserted after the block of data corresponding to each (Xi,Yj) pair.

Instead, the following Fortran loop is used by the Gaussian utility “cubegen” to store the values of an array dimensioned F(NVal,NZ,NY,NX) into a CUBE file:[L2“cubegen.”]

      Do 10 IX = 1, NX
      Do 10 IY = 1, NY
         Write(n,'(6E13.5)') ((F(IVal,IZ,IY,IX),IVal=1,NVal),IZ=1,NZ)
   10 Continue

where n is the unit number corresponding to the CUBE file. It is clear from this example that each record is NVal * NZ long and has the values for all properties (e.g. orbitals) at each point together.

Older versions of the Gaussian XX manual (e.g. XX = 94 and 98)[L8“Gaussian 98 Cube Keyword”] report that “the output is similar if the gradient or gradient and Laplacian of the charge density are also requested, except that in these cases there are two or three records, respectively, written for each pair of IX, IY values. Thus, if the density D(IZ,IY,IX), gradient G(3,IZ,IY,IX), and laplacian D2(IZ,IY,IX) are to be written out on CUBE file, a correct set of Fortran loops would be”:

      Do 10 IX = 1, NX
      Do 10 IY = 1, NY
         Write(n,'(6F13.5)') (D(IZ,IY,IX),IZ=1,NZ)
         Write(n,'(6F13.5)') ((G(IXYZ,IZ,IY,IX),IXYZ=1,3), IZ=1,NZ)
         Write(n,'(6F13.5)') (D2(IZ,IY,IX),IZ=1,NZ)
   10 Continue

where again n is the unit number corresponding to the CUBE file.

If the origin is (X0,Y0,Z0), and the increments (Xx,Xy,Xz), (Yx,Yy,Yz), and (Zx,Zy,Zz), then point (IX,IY,IZ) has the coordinates:

|Px|   |X0|   |Xx Xy Xz|   |IX−1|            Px = X0 + (IX-1)*Xx + (IY-1)*Xy + (IZ-1)*Xz
|Py| = |Y0| + |Yx Yy Yz| * |IY−1|     or     Py = Y0 + (IX-1)*Yx + (IY-1)*Yy + (IZ-1)*Yz
|Pz|   |Z0|   |Zx zy Zz|   |IZ−1|            Pz = Z0 + (IX-1)*Zx + (IY-1)*zy + (IZ-1)*Zz

3. - Compatibility issues

Although it has not become a standard, the Gaussian CUBE file format is recognized by many applications and therefore several quantomechanical codes offer the option of generating a CUBE file in this format. However most CUBE file generators adopt a simplified structure, which does not allow multi-property files and implies NVal = 1. In addition, some of them only generate grids with orthogonal axes (i.e. rectangular parallelepipeds or cuboids). This is the case for instance of NWCHEM-DPLOT.

As far as the format of a gradient or gradient and Laplacian Gaussian CUBE file is concerned, there seems to be a problem of incompatibility between the format described in the latest version of the Gaussian XX manual (XX = 09),[L2“cubegen.”] which requires writing a single record long 4×NZ or 5×NZ for each pair of IX, IY values, and older ones (XX = 94 and XX = 98),[L8“Gaussian 98 Cube Keyword”] which instead require writing two or three records long NZ, 3×NZ, and NZ, respectively. In agreement with the most recent official specification,[L2“cubegen.”] a correct set of Fortran loops would be:

      Do 10 IX = 1, NX
      Do 10 IY = 1, NY
         Write(n,'(6F13.5)') (D(IZ,IY,IX), (G(IXYZ,IZ,IY,IX),IXYZ=1,3), 
     $      D2(IZ,IY,IX), IZ=1,NZ)
   10 Continue

4. - Cube generators

Gaussian

Gaussian includes a standalone utility for generating cubes from the data in a formatted checkpoint file. The utility is named cubegen, and it is described in the website of the Gaussian, Inc.[L2“cubegen”]

NWChem

NWChem[2M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, T.P. Straatsma, H.J.J. van Dam,
D. Wang, J. Nieplocha, E. Apra, T.L. Windus, W.A. de Jong
Comput. Phys. Commun. 2010, 181, 1477-1489.
, L9NWChem: Open Source High-Performance Computational Chemistry] provides the “task DPLOT” directive which, combined with the “GAUSSIAN” sub-directive, generates volumetric data in the Gaussian Cube format.[L10NWChem: DPLOT]

GAMESS

GAMESS[3M.W.Schmidt, K.K.Baldridge, J.A.Boatz, S.T.Elbert, M.S.Gordon, J.H.Jensen,
S.Koseki, N.Matsunaga, K.A.Nguyen, S.Su, T.L.Windus, M.Dupuis, J.A.Montgomery
J. Comput. Chem. 1993, 14, 1347-1363.
, 4M.S.Gordon, M.W.Schmidt
in “Theory and Applications of Computational Chemistry: the first forty years”
pp. 1167-1189, Elsevier, Amsterdam, 2005.
, L11GAMESS: General Atomic and Molecular Electronic Structure System] can generate a cube file by means of the “$GRID” group of instructions in the input section:[L12GAMESS online documentation:
Input Description
]

  $GRID group     (not required)

      This group is used to input a grid (plane or cube) on
  which properties will be calculated.  This group should be
  given if WHERE=GRID in $ELPOT or $ELDENS.  This output will  
  be in the PUNCH file whenever OUTPUT=PUNCH or BOTH.

  MODGRD    = 0 orthonormalize the grid vectors
            = 1 normalize the grid vectors
  ORIGIN(i) = coordinates of one corner of the grid/cube.
  XVEC(i)   = vector from ORIGIN to an adjacent corner "X" of
              the grid (or cube).  The XVEC direction need
              not be parallel to the X-axis of the molecule.
  YVEC(i)   = vector to the adjacent corner "Y" of grid/cube.
  ZVEC(i)   = vector to the adjacent corner "Z" of the cube,
              given if and only if MODGRD=1.
  SIZE      = grid increment in all directions (default 0.25)
  UNITS     = units of the above five values, it can be
              either ANGS (the default) or BOHR.
  GRDPAD    = grid padding, like GRDPAD in $FMOPRP, but
              applied to non-FMO runs. Default: 0, which
              means padding is not used so one must specify
              ORIGIN.

  Two dimensional grids may be drawn with the graphics
  program MEPMAP provided with GAMESS.  Several programs will
  accept the 3-dimensional CUBE format.

  Note that MacMolPlt draws 2D and 3D density maps without
  any need to pre-compute them inside GAMESS by this group.

  User *must* input orthogonal XVEC/YVEC/ZVEC directions!

If run through GAMESS, you'll get the usual output file, but more importantly in your user scratch space you'll get a “.dat” file too. This file contains the CUBE data you requested. Just search for START to locate where the CUBE file starts, extract that and change the file extension to “.cub” or “.cube”. It is important to note that GAMESS writes out the volumetric data as a single record, so that it does not conform to the standard format of the Gaussian utility “cubegen”.[L2“cubegen”] It follows, for example, that a GAMESS cube file can be read by VESTA[5K. Momma and F. Izumi
J. Appl. Crystallogr. 2011, 44, 1272–1276.
, L13VESTA: Visualization for Electronic and STructural Analysis] and PAMoC, but not by Multiwfn.[6Tian Lu, Feiwu Chen
J. Comp. Chem. 2012, 33, 580-592.
, L14Multiwfn: A Multifunctional Wavefunction Analyzer]
An example of input instructions to generate a cube file with GAMESS is reported in the scheme below.

 $ELDENS IEDEN=1 MORB=0 WHERE=GRID IEDINT=0 $END
 $GRID MODGRD=1 SIZE=0.21549 UNITS=BOHR
   ORIGIN(1)= -5.13431, -3.16585, -7.56302
   XVEC(1)=    8.44175  -3.16585  -7.56302
   YVEC(1)=   -5.13431,  8.47077, -7.56302
   ZVEC(1)=   -5.13431  -3.16585   5.36656
 $END
Running through GAMESS the input instructions reported in the left box, yields the cube definition shown in the right box. Please, note that the axis vectors in the left box were defined as
XVEC(1) = Origin(1) + XLen
XVEC(2) = Origin(2)
XVEC(3) = Origin(3)
YVEC(1) = Origin(1)
YVEC(2) = Origin(2) + YLen
YVEC(3) = Origin(3)
ZVEC(1) = Origin(1)
ZVEC(2) = Origin(2)
ZVEC(3) = Origin(3) + ZLen
where XLen, YLen, and ZLen are the lengths of the edges of the cuboid.
 GAMESS CUBE FORMAT: ELECTRON DENSITY
 OUTER LOOP: X, MIDDLE LOOP: Y, INNER LOOP: Z 
   10   -5.134310   -3.165850   -7.563020
   64    0.215490    0.000000    0.000000
   55    0.000000    0.215490    0.000000
   61    0.000000    0.000000    0.215490

The example above requires calculation of total electron density values over a three dimensional grid, because “MORB=0” has been set in “$ELDENS”. A value of “MORB” greater than zero specifies the molecular orbital whose electron density is to be computed. Similarly, a cube of electrostatic potential values can be obtained by “$ELPOT IEPOT=1 WHERE=GRID END”.

ORCA

ORCA[7Neese, F.
Wiley Interdiscip. Rev.: Comput. Mol. Sci. 2012, 2, 73-78.
, L15ORCA: An ab initio, DFT and semiempirical SCF-MO package.] can create a “.cube” file of the electron density by means of the “%plots” input block,[L16ORCA manual - Version 4.0.1] as shown in the example below:

%plots
      #*** resolution of the cube
      dim1 80   # resolution in x-direction
      dim2 80   # resolution in y-direction
      dim3 80   # resolution in z-direction
      #*** minimum and maximum values along axis directions
      min1  0.0 # x-min value in bohr
      max1  0.0 # x-min value in bohr
      min2  0.0 # y-min value in bohr
      max2  0.0 # y-max value in bohr
      min3  0.0 # z-min value in bohr
      max3  0.0 # z-max value in bohr
      #*** the format of the output file
      Format Gaussian_Cube   # Gaussian-cube format
                             # (an ASCII file)
      #*** the quantities to output
      MO("gly-RHF-HOMO.cub",19,0);   # Molecular orbital nr. 19
                                     # (counting starts at orbital 0)
      ElDens("gly-RHF-density.cub"); # Electron density
      SpinDens("gly-RHF-spindensity.cub"); # Spin density
      end

In this example the dimensions of the cube were not given explicitly (i.e. min1 = max1 = min2 = max2 = min3 = max3=0), so that the program will try to be smart and figure out a good cube size by itself. It will look at the minimum and maximum values of the coordinates and then add 7 bohrs to each dimension in the hope to properly catch all wavefunction tails.

The quantities that can be calculated are the atomic orbitals, molecular orbitals, natural orbitals, the total electron density or the total spin density. However, an electrostatic potential “.cube” file can be created by using a python script[L17Marius Retegan
mep.py: Create a .cube file of the electrostatic potential using ORCA
] written by Marius Retegan.[L18Marius Retegan's personal web page] In this case the keyword “KeepDens” must be specified in the input deck in order to preserve the “.scfp” file from being deleted, together with the keyword “XYZFile” to create the “.xyz” file. Both the “.scfp” and the “.xyz” files are required by the python script, in addition to the “.gbw” file.

(mep.py script)

PSI4

PSI4[8R. M. Parrish, et al.
J. Chem. Theory Comput., 2017, 13(7), 3185–3197.
, 9J. M. Turney, et al.
WIREs Comput. Mol. Sci. 2912, 2, 556.
, L19PSI4: open-source quantum chemistry. ] can evaluate properties on a grid and generate cube files by “cubeprop()”.[L20PSI4 manual: Generation of Cube Files − cubeprop()]

CRYSTAL

The CRYSTAL[10Erba, A.; Baima, J.; Bush, I.; Orlando, R.; Dovesi, R.
J. Chem. Theory Comput. 2017, 13(10), 5019-5027.
, 11Dovesi, R.; Saunders, V. R.; Roetti, C.; Orlando, R.; Zicovich-Wilson, C. M.; Pascale, F.; Civalleri, B.; Doll, K.; Harrison, N. M.; Bush, I. J.; D’Arco, P.; Llunell, M.; Causà, M.; Noël, Y.; Maschio, L.; Erba, A.; Rerat, M.; Casassa, S.
CRYSTAL17 User's Manual. University of Torino: Torino, 2017.
, L21CRYSTAL: a computational tool for solid state chemistry and physics] code can evaluate cube files of the electronic charge density (“ECH3”) and the electrostatic potential (“POT3”), as described by a specific tutorial[L22F. Chiatti
Isodensity Surface Colorcoded with the Electrostatic Potential.
] on the CRYSTAL tutorials website.[L22CRYSTAL tutorials web site.]


 
CRYSTAL http://www.theochem.unito.it/crystal_tuto/mssc2013_cd/tutorials/3d_maps/index.html

References and Notes

  1. Gaussian 09, Revision A.02, M. J. Frisch, G. W. Trucks, H. B. Schlegel, G. E. Scuseria, M. A. Robb, J. R. Cheeseman, G. Scalmani, V. Barone, G. A. Petersson, H. Nakatsuji, X. Li, M. Caricato, A. Marenich, J. Bloino, B. G. Janesko, R. Gomperts, B. Mennucci, H. P. Hratchian, J. V. Ortiz, A. F. Izmaylov, J. L. Sonnenberg, D. Williams-Young, F. Ding, F. Lipparini, F. Egidi, J. Goings, B. Peng, A. Petrone, T. Henderson, D. Ranasinghe, V. G. Zakrzewski, J. Gao, N. Rega, G. Zheng, W. Liang, M. Hada, M. Ehara, K. Toyota, R. Fukuda, J. Hasegawa, M. Ishida, T. Nakajima, Y. Honda, O. Kitao, H. Nakai, T. Vreven, K. Throssell, J. A. Montgomery, Jr., J. E. Peralta, F. Ogliaro, M. Bearpark, J. J. Heyd, E. Brothers, K. N. Kudin, V. N. Staroverov, T. Keith, R. Kobayashi, J. Normand, K. Raghavachari, A. Rendell, J. C. Burant, S. S. Iyengar, J. Tomasi, M. Cossi, J. M. Millam, M. Klene, C. Adamo, R. Cammi, J. W. Ochterski, R. L. Martin, K. Morokuma, O. Farkas, J. B. Foresman, and D. J. Fox, Gaussian, Inc., Wallingford CT, 2016.
  2. “NWChem: a comprehensive and scalable open-source solution for large scale molecular simulations”.
    M. Valiev, E.J. Bylaska, N. Govind, K. Kowalski, T.P. Straatsma, H.J.J. van Dam, D. Wang, J. Nieplocha, E. Apra, T.L. Windus, W.A. de Jong, Comput. Phys. Commun. 2010, 181, 1477-1489.
  3. “General Atomic and Molecular Electronic Structure System”.
    M.W.Schmidt, K.K.Baldridge, J.A.Boatz, S.T.Elbert, M.S.Gordon, J.H.Jensen, S.Koseki, N.Matsunaga, K.A.Nguyen, S.Su, T.L.Windus, M.Dupuis, J.A.Montgomery J. Comput. Chem. 1993, 14, 1347-1363.
  4. “Advances in electronic structure theory: GAMESS a decade later”.
    M.S.Gordon, M.W.Schmidt in “Theory and Applications of Computational Chemistry: the first forty years”, pp. 1167-1189, Elsevier, Amsterdam, 2005.
  5. “VESTA 3 for three-dimensional visualization of crystal, volumetric and morphology data”.
    K. Momma and F. Izumi J. Appl. Crystallogr. 2011, 44, 1272–1276.
  6. “Multiwfn: A Multifunctional Wavefunction Analyzer”.
    Tian Lu, Feiwu Chen J. Comp. Chem. 2012, 33, 580-592.
  7. “The ORCA program system”.
    Neese, F. Wiley Interdiscip. Rev.: Comput. Mol. Sci. 2012, 2, 73-78.
  8. “Psi4 1.1: An Open-Source Electronic Structure Program Emphasizing Automation, Advanced Libraries, and Interoperability”.
    R. M. Parrish, L. A. Burns, D. G. A. Smith, A. C. Simmonett, A. E. DePrince III, E. G. Hohenstein, U. Bozkaya, A. Yu. Sokolov, R. Di Remigio, R. M. Richard, J. F. Gonthier, A. M. James, H. R. McAlexander, A. Kumar, M. Saitow, X. Wang, B. P. Pritchard, P. Verma, H. F. Schaefer III, K. Patkowski, R. A. King, E. F. Valeev, F. A. Evangelista, J. M. Turney, T. D. Crawford, and C. D. Sherrill, J. Chem. Theory Comput., 2017, 13(7), 3185–3197. (doi: 10.1021/acs.jctc.7b00174).
  9. “Psi4: An open-source ab initio electronic structure program”.
    J. M. Turney, A. C. Simmonett, R. M. Parrish, E. G. Hohenstein, F. Evangelista, J. T. Fermann, B. J. Mintz, L. A. Burns, J. J. Wilke, M. L. Abrams, N. J. Russ, M. L. Leininger, C. L. Janssen, E. T. Seidl, W. D. Allen, H. F. Schaefer, R. A. King, E. F. Valeev, C. D. Sherrill, and T. D. Crawford, WIREs Comput. Mol. Sci. 2912, 2, 556. (doi: 10.1002/wcms.93).
  10. (a) “Large-Scale Condensed Matter DFT Simulations: Performance and Capabilities of the CRYSTAL Code”.
    Erba, A.; Baima, J.; Bush, I.; Orlando, R.; Dovesi, R. J. Chem. Theory Comput. 2017, 13(10), 5019-5027. (doi: 0.1021/acs.jctc.7b00687).
    (b) “CRYSTAL14: A program for the ab initio investigation of crystalline solids”.
    Dovesi, R.; Orlando, R.; Erba, A.; Zicovich-Wilson, C. M.; Civalleri, B.; Casassa, S.; Maschio, L.; Ferrabone, M.; De La Pierre, M.; D’Arco, P.; Noel, Y.; Causa, M.; Rerat, M.; Kirtman, B. Int. J. Quantum Chem., 2014, 114, 1287-1317.
    (c) “CRYSTAL: a computational tool for the ab initio study of the electronic properties of crystals”.
    Dovesi, R.; Orlando, R.; Civalleri, B.; Roetti, C.; Saunders, V. R.; Zicovich-Wilson, C. M. Z. Kristallogr. 2005, 220, 571-573.
  11. “CRYSTAL17 User's Manual”.
    Dovesi, R.; Saunders, V. R.; Roetti, C.; Orlando, R.; Zicovich-Wilson, C. M.; Pascale, F.; Civalleri, B.; Doll, K.; Harrison, N. M.; Bush, I. J.; D’Arco, P.; Llunell, M.; Causà, M.; Noël, Y.; Maschio, L.; Erba, A.; Rerat, M.; Casassa, S.
    CRYSTAL17 User's Manual. University of Torino: Torino, 2017.

Links

  1. “Expanding the limits of computational chemistry”. Website of the Gaussian, Inc.: http://gaussian.com. Accessed 11 Oct 2017. extlink
  2. “cubegen.” Website of the Gaussian program package: http://gaussian.com/cubegen/. Accessed 11 Oct 2017. extlink
  3. Bourke, P. “Gaussian Cube Files.” Dec 2003. Online resource: http://paulbourke.net/dataformats/cube/. Accessed 11 Oct 2017. extlink
  4. “Cube Plugin, Version 1.1.” Theoretical and Computational Biophysics Group, University of Illinois at Urbana-Champaign. Online resource: http://www.ks.uiuc.edu/Research/vmd/plugins/molfile/cubeplugin.html. Accessed 11 Oct 2017. extlink
  5. Skinn, Brian “Gaussian CUBE File Format” Online resource: http://h5cube-spec.readthedocs.io/en/latest/cubeformat.html. Accessed 11 Oct 2017. extlink
  6. Skinn, Brian “h5cube File Specification”. Online resource: http://h5cube-spec.readthedocs.io/en/latest/index.html Accessed 11 Oct 2017. extlink
  7. “HDF5: a data model, library, and file format for storing and managing data”. Online resource: https://support.hdfgroup.org/HDF5/. Accessed 11 Oct 2017. extlink
  8. “Gaussian 98 Cube Keyword”. Online resource: http://www.lct.jussieu.fr/manuels/Gaussian98/00000430.htm. Accessed 19 Oct 2017. extlink
  9. “NWChem: Open Source High-Performance Computational Chemistry”. Online resource: http://www.nwchem-sw.org Accessed 1 Dec 2017. extlink
  10. “NWChem: DPLOT”. Online resource: http://www.nwchem-sw.org/index.php/DPLOT. Accessed 1 Dec 2017. extlink
  11. “GAMESS: General Atomic and Molecular Electronic Structure System”. Online resource: http://www.msg.ameslab.gov/gamess/. Accessed 1 Dec 2017. extlink
  12. “GAMESS online documentation: Input Description”. Online resource: http://www.msg.ameslab.gov/gamess/GAMESS_Manual/input.pdf. Accessed 1 Dec 2017. extlink
  13. “VESTA: Visualization for Electronic and STructural Analysis”. Online resource: http://jp-minerals.org/vesta/en/. Accessed 2 Dec 2017. extlink
  14. “Multiwfn: A Multifunctional Wavefunction Analyzer”. Online resource: http://sobereva.com/multiwfn/. Accessed 2 Dec 2017. extlink
  15. “ORCA: An ab initio, DFT and semiempirical SCF-MO package”. Online resource: https://orcaforum.cec.mpg.de. Accessed 3 Dec 2017. extlink
  16. “ORCA manual - Version 4.0.1”. Online resource: https://cec.mpg.de/fileadmin/media/Forschung/ORCA/orca_manual_4_0_1.pdf § 6.1, p. 10; § 8.12, p. 221; § 9.32, p. 729-734. Accessed 3 Dec 2017. extlink
  17. “mep.py: Create a .cube file of the electrostatic potential using ORCA”. Online resource: https://gist.github.com/mretegan/5501553. Accessed 4 Dec 2017. extlink
  18. “Marius Retegan's personal web page”. Online resource: http://mretegan.github.io/ Accessed 4 Dec 2017. extlink
  19. “PSI4: open-source quantum chemistry”. Online resource: http://www.psicode.org Accessed 5 Dec 2017. extlink
  20. “PSI4 manual: Generation of Cube Files − cubeprop()”. Online resource: http://www.psicode.org/psi4manual/master/cubeprop.html Accessed 5 Dec 2017. extlink
  21. “CRYSTAL: a computational tool for solid state chemistry and physics”. Online resource: http://www.crystal.unito.it Accessed 5 Dec 2017. extlink
  22. F. Chiatti, “Isodensity Surface Colorcoded with the Electrostatic Potential”. Online resource: http://tutorials.crystalsolutions.eu/tutorial.html?td=3d_maps&tf=index Accessed 7 Dec 2017. extlink
  23. “Crystal Tutorials Web Site”. Online resource: http://tutorials.crystalsolutions.eu Accessed 7 Dec 2017. extlink