
O -2.636388 0. 000463 0. 002694
C 1.4 1521 7 0.0 0013 4 -0.000654
C -1.415804 0. 000411 0. 001068
C -0.671293 1. 281066 0. 000296
C 0.6 7091 9 1.2 8105 3 -0.000451
C -0.671566 -1.280538 0.00012 3
C 0.6 7071 3 -1.280581 -0.000655
H -1.211943 2. 222954 0. 000499
H -1.212307 -2.222310 0.00021 0
H 1.2 1174 1 2.2 2277 5 -0.000813
H 1.2 1136 8 -2.222343 -0.001178
*
• Note: Sometimes, the normal optimization setting (!Opt) says the structure is finished, but it may not be perfectly
optimized. The program stops when the changes in energy and geometry become small but not extremely small. To
make the results more accurate we use tighter settings. I have replaced !Opt by !TightOPT and !TightSCF. What
does this do?
TightOPT: makes the geometry optimization stricter. It forces the program to reduce the forces on atoms even
more before stopping.
TightSCF: makes the electronic calculation stricter. It ensures the electron density is calculated more accurately.
This must look as referenced.
4 Data Transfer to HPC:
1. Open the terminal to connect to HPC cluster via ssh, type ssh , mine is “ncl comet”. which is a alias to hostname
for comet.
[ g olu @T4 30 ~] $ ssh ncl _co met
The dollar $ key on the screen shows you are inside the HPC cluster, you can type “pwd” to check your path, or type
“whoami”. it will tell your username.
2. Make a new directory using command “mkdir” (e.g. mkdir <directory name>). I have named it ‘benzo’. Now copy
the input file from your local system to this path, using below command. I have ’benzoT430’ directory in my system.
The 100% confirms the successfully copying.
[ g olu @T4 30 benzo T43 0 ] $ scp ben zoqui non e . inp ncl_comet :/ mnt / nfs / home / c50074 71 / BENZO
** WARNING : conn ect ion is not using a post - quantum key exc hang e algorithm .
** This sess ion may be vulnerable to " store now , decrypt later " a ttacks .
** The serv er may need to be upgr ade d . See https :// op enss h . com / pq . html
** WARNING : conn ect ion is not using a post - quantum key exc hang e algorithm .
** This sess ion may be vulnerable to " store now , decrypt later " a ttacks .
** The serv er may need to be upgr ade d . See https :// op enss h . com / pq . html
benzo qui none . inp 100% 754 1.4 KB / s 00:00
3. Now, we know “what” we have to run, which is our input file, but “where” and “how” the calculation runs is decided
by another file called a shell script. We cant simply use the input file without assigning it a command and resources.
4. To run our DFT calculations on the HPC cluster, we need an intermediate shell script to submit our computational
jobs on clusters with specific configurations and managed resources. Once this shell script is used to connect the
’ORCA input’ file with the Comet scheduler, it implements the resources from the clusters, such as computing nodes,
CPU cores, time, etc. This ensures that the calculation is performed efficiently and returns the results. How does
this shells scripts looks like?
[ c5 00 7471@co me tl og in01 ( comet ) benzo ] $ cat orca - script . sh
#!/ bin / bash
# SBATCH -- account = come t_o cm fli b
# SBATCH -- partit ion = d efa ult_f ree
# SBATCH -- job - name = or ca_PD _p arall el
10