Turbomole

Turbomole consists of several sub programs, and many of those are available in differently parallelized versions.

The following script uses dscf as an example and is meant as a template for MPI parallelized executables:

#!/bin/bash
#SBATCH -p medium
#SBATCH -n 40
#SBATCH -t 10:00

module purge
module load turbomole

if (( ${SLURM_JOB_NUM_NODES} > 1 )); then
    export PARA_ARCH=MPI
    export PATH=$TURBODIR/mpirun_scripts/`sysname`/PMPI/bin:$TURBODIR/bin/`sysname`:$PATH
fi

if [ "$PARA_ARCH" = "MPI" ]; then
    pam -g 2 `which mpirun` -lsb_hosts `which dscf_mpi`
else
    `which dscf`
fi 


It runs the MPI version of dscf in the medium partition using 40 processors for 10 minutes. Save it, for example as myjob.job, and submit it with:

sbatch myjob.job


In order to use the interactive setup tools for Turbomole you need to load the corresponding module in your session:

module load turbomole

This loads the latest version. To load a specific version check which versions are available:

module av turbomole

E.g. to load version 7.6 run

module load turbomole/7.6

TmoleX

TmoleX is a GUI for Turbomole. In the past it was separate from Turbomole. Now it is part of Turbomole and available on the cluster. You need to connect with X11 forwarding enabled (connect with ssh -Y …) or use X2Go.

To see which versions are available run:

module av tmolex


Now load a specific version, here we load the version 2022:

module load tmolex/2022


For version 2022 (which includes Turbomole 7.6) you need to start the GUI with

TmoleX22


TmoleX offers both the GUI and the command line tools, so you can execute the usual Turbomole commands, too.

This website uses cookies. By using the website, you agree with storing cookies on your computer. Also you acknowledge that you have read and understand our Privacy Policy. If you do not agree leave the website.More information about cookies