Access to the library's functionality is provided by importing the gridXC module:
use gridxc
which exports the interfaces to the public user-level routines and other symbols.
most routines and symbols
are prefixed by gridxc
for export, whereas internally the gridxc
prefix is not currently used. This means that
this API reference will have cross-references to routine names without the prefix.
The library exports the kind parameter grid_p
appropriate for the
arrays passed to a from the cellXC routine. This is
controlled by the setting of the --enable-single-precision
configure
option (by default, a double-precision kind is returned).
It is necessary to call the gridxc_init routine before any other operations. Currently, this routine just sets a few internal variables. If working in parallel, the MPI communicator is passed in this call.
(See the source for full documentation)
A few routines are exported for convenience to some user programs:
nfft_gridxc: When VDW functionals are used, the library employs internally FFT routines that need the mesh sizes to be multiples of 2, 3, or 5. This routine (see the source) will help to determine the appropriate values.
setmeshdistr/meshBox: These routines can be used to select an appropriate data distribution in parallel. See the source for more information. These are in the process of refactoring to make them truly stand-alone.