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

Compare with Current View Page History

« Previous Version 7 Next »

Information

Purpose: electronic Structure Calculations
Latest version: 4.0.0
License: Mixed - Free for academics; forbidden for commercial.
Website: https://orcaforum.cec.mpg.de/ extlink-icon

ORCA is a program that implements HF, DFT, semi-empirical, and high level ab initio (CI and CC) methods with gaussian basis sets for electronic structure calculations.

ORCA implements a variety of standard quantum chemistry methods, but is especially tailored at geometry optimisation and prediction of spectroscopic parameters in open-shell molecular systems. It can be coupled to Gromacs for QM/MM calculations.

 


 

SLURM Submit script example

For more information use the Job Script Generator.

orca_example.slm
#!/bin/bash
#SBATCH -J orca_example
#SBATCH -e orca_example.err
#SBATCH -o orca_example.out
#SBATCH -p std
#SBATCH --nodes=1
#SBATCH --ntasks=1
#SBATCH --mem=4G

module load apps/orca/4.0.0
 
INPUT_DIR=${PWD}
OUTPUT_DIR=${PWD}

cd $TMPDIR
cp -r $INPUT_DIR $TMPDIR
orca orca_example.inp orca_example.out
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
  • --ntasks: Number of processes requested for allocation
  • --mem-per-cpu: Memory allocated per core.

 


 

  • No labels