Show pageOld revisionsBacklinksFold/unfold allBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== ORCA ====== ===== Accessing ORCA ===== ORCA is available for free on Hábrók, but the developers require that users agree to the //End User License Agreement (EULA) for the ORCA software//. Without doing so, attempting to load the ORCA modules will result in a error. To confirm your agreement, please open a ticket with us at [[hpc@rug.nl]]. ===== Using ORCA ===== The following example can be used as a job script for running ORCA jobs: <code bash orca_example_job.sh> #!/bin/bash #SBATCH --job-name=orca #SBATCH --time=0-24:00:00 #SBATCH --partition=regular #SBATCH --ntasks=12 #SBATCH --cpus-per-task=1 #SBATCH --mem-per-cpu=1gb module load ORCA/6.1.1-gompi-2023b-avx2 $EBROOTORCA/bin/orca my_orca_file.inp </code> This job scripts requests a total of 12x1 cores. It does not specify whether/how many tasks should be run on the same node: this can be achieved by using additional options like ''%%--ntasks-per-node%%'' and ''%%--nodes%%'', if necessary. Note that ORCA itself will handle the parallelization by calling ''mpirun'', so you do not need to use ''mpirun'' or ''srun'' in your job script. You do have to call the ''orca'' executable with the full pathname, which you can easily do by using ''$EBROOTORCA'' (a variable that points to the ORCA installation directory). Finally, make sure to use the same number of requested cores in your ORCA input file, e.g.: <code txt my_orca_file.inp> %pal nprocs 12 end ! RHF TightSCF PModel !opt * xyz 0 1 C 0.000000 0.000000 0.000000 C 0.000000 0.000000 1.400000 C 1.212436 0.000000 2.100000 C 2.424871 0.000000 1.400000 C 2.424871 0.000000 0.000000 C 1.212436 0.000000 -0.700000 H -0.943102 0.000000 1.944500 H 1.212436 0.000000 3.189000 H 3.367973 0.000000 1.944500 H 3.367973 0.000000 -0.544500 H 1.212436 0.000000 -1.789000 H -0.943102 0.000000 -0.544500 * </code> Log In