You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 35 Next »

Information

Purpose: electronic Structure Calculations
Latest version: Gaussian16 B.01
License: Closed-source (provided by CSUC)
Website: http://gaussian.com/_ext-link

Gaussian is a program implementing a variety of computational chemistry methods.

The range of computational methods includes molecular mechanics, semi-empirical methods, Hartree-Fock SCF, Møller-Plesset perturbation theory, DFT methods, QM/MM calculations, CI methods and CC calculations. Calculations employing these methods can be carried out in order to optimise molecular geometry, electronic structure and derived chemical properties.


License

CSUC provide the license necessary to run this program.




SLURM Submit script example

For more information use the Job Script Generator.

gaussian_example.slm
#!/bin/bash
#SBATCH -J gaussian_example
#SBATCH -e gaussian_example.err
#SBATCH -o gaussian_example.out
#SBATCH -p std
#SBATCH --nodes=1
#SBATCH --cpus-per-task=8
#SBATCH --mem=32G

module load apps/gaussian/g16b01

INPUT_DIR=${SLURM_SUBMIT_DIR}
OUTPUT_DIR=${SLURM_SUBMIT_DIR}

INPUT_FILE=gaussian_example.com
OUTPUT_FILE=gaussian_example.log

cp -r $INPUT_FILE $SCRATCH
cd $SCRATCH

g16 < $INPUT_FILE > $OUTPUT_FILE
cp ./* $OUTPUT_DIR

Sbatch options:

  • -JSpecify a name for the job allocation. The default is the name of the batch script.
  • -e: Specify a name for the error output file.
  • -o: Specify a name for the output file.
  • -p: Specify the name of the partition (queue) where the job will be submited. The default is std.
  • --nodes: Number of nodes requested for allocation.

  • --cpus-per-task: Number of cores to be used in task requested for allocation.
  • --mem, --mem-per-cpu: Memory allocated per node/core respectively. If it is not specified SLURM associates 3998MB per requested core.
    • If the job needs up to 8GB per core, add:  #SBATCH -C mem.

Software execution information:

We do not support Linda. --nodes must be set to 1 to avoid executing Gaussian between nodes.

--cpus-per-task must have the same value as %nprocs in input.com file.

--mem must be higher than the value defined as %mem in input.com file. More info here.







Tutorial

You can follow this tutorial about geometric optimisation with Gaussian to get hands-on with the program.




  • No labels