diff --git a/docs.it4i/software/chemistry/molpro.md b/docs.it4i/software/chemistry/molpro.md new file mode 100644 index 0000000000000000000000000000000000000000..08dedda92e5b31246e20597f69cd3dc35ceecdd8 --- /dev/null +++ b/docs.it4i/software/chemistry/molpro.md @@ -0,0 +1,63 @@ +# Molpro + +Molpro is a complete system of ab initio programs for molecular electronic structure calculations. + +## About Molpro + +Molpro is a software package used for accurate ab-initio quantum chemistry calculations. More information can be found at the [official webpage](http://www.molpro.net/). + +## License + +Molpro software package is available only to users that have a valid license. Please contact support to enable access to Molpro if you have a valid license appropriate for running on our cluster (eg. academic research group licence, parallel execution). + +To run Molpro, you need to have a valid license token present in " $HOME/.molpro/token". You can download the token from [Molpro website](https://www.molpro.net/licensee/?portal=licensee). + +## Installed Version + +Currently on Anselm is installed version 2010.1, patch level 45, parallel version compiled with Intel compilers and Intel MPI. + +Compilation parameters are default: + +| Parameter | Value | +| ---------------------------------- | ------------ | +| max number of atoms | 200 | +| max number of valence orbitals | 300 | +| max number of basis functions | 4095 | +| max number of states per symmmetry | 20 | +| max number of state symmetries | 16 | +| max number of records | 200 | +| max number of primitives | maxbfn x [2] | + +## Running + +Molpro is compiled for parallel execution using MPI and OpenMP. By default, Molpro reads the number of allocated nodes from PBS and launches a data server on one node. On the remaining allocated nodes, compute processes are launched, one process per node, each with 16 threads. You can modify this behavior by using -n, -t and helper-server options. Please refer to the [Molpro documentation](http://www.molpro.net/info/2010.1/doc/manual/node9.html) for more details. + +!!! note + The OpenMP parallelization in Molpro is limited and has been observed to produce limited scaling. We therefore recommend to use MPI parallelization only. This can be achieved by passing option mpiprocs=16:ompthreads=1 to PBS. + +You are advised to use the -d option to point to a directory in [SCRATCH file system](../../storage/storage/). Molpro can produce a large amount of temporary data during its run, and it is important that these are placed in the fast scratch file system. + +### Example jobscript + +```bash +#PBS -A IT4I-0-0 +#PBS -q qprod +#PBS -l select=1:ncpus=16:mpiprocs=16:ompthreads=1 + +cd $PBS_O_WORKDIR + +# load Molpro module +module add molpro + +# create a directory in the SCRATCH filesystem +mkdir -p /scratch/$USER/$PBS_JOBID + +# copy an example input +cp /apps/chem/molpro/2010.1/molprop_2010_1_Linux_x86_64_i8/examples/caffeine_opt_diis.com . + +# run Molpro with default options +molpro -d /scratch/$USER/$PBS_JOBID caffeine_opt_diis.com + +# delete scratch directory +rm -rf /scratch/$USER/$PBS_JOBID +``` diff --git a/mkdocs.yml b/mkdocs.yml index 466cf0cc790ebd2eaa06a18c3766a780ca5dfa6d..6bfc6371a375045061b7c69566099cc339ea4e3c 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -71,6 +71,8 @@ pages: - Matlab 2013-2014: software/numerical-languages/matlab_1314.md - Octave: software/numerical-languages/octave.md - OpenCoarrays: software/numerical-languages/opencoarrays.md + - 'Chemistry': + - Molpro: software/chemistry/molpro.md - Bioinformatics: software/bioinformatics.md - Java: software/java.md - Salomon Software: