Difference between revisions of "JUSTUS2/Software/Orca"

From bwHPC Wiki
Jump to: navigation, search
(Miscellaneous Notes to Usage)
 
(17 intermediate revisions by 2 users not shown)
Line 32: Line 32:
 
Furthermore, ORCA provides NEB-TS for studying reaction pathways and offers various methods for accurately calculating excited states, such as TD-DFT, EOM-CCSD, STEOM-CCSD, CASSCF with NEVPT2 or CASPT2, as well as molecular dynamics and multi-scale QM-MM models.
 
Furthermore, ORCA provides NEB-TS for studying reaction pathways and offers various methods for accurately calculating excited states, such as TD-DFT, EOM-CCSD, STEOM-CCSD, CASSCF with NEVPT2 or CASPT2, as well as molecular dynamics and multi-scale QM-MM models.
   
Please refer to documentation provided by the ORCA developers in the first place for more detailed information.
+
Please refer to documentation provided by the ORCA developers in the first place for more detailed information, e.g.:
   
 
[https://www.kofo.mpg.de/970274/orca_manual_5_0_4.pdf Orca Manual 5.0.4]
 
[https://www.kofo.mpg.de/970274/orca_manual_5_0_4.pdf Orca Manual 5.0.4]
  +
<br>
 
[https://wires.onlinelibrary.wiley.com/doi/full/10.1002/wcms.1606 Article Overview by Frank Nesse]
 
[https://wires.onlinelibrary.wiley.com/doi/full/10.1002/wcms.1606 Article Overview by Frank Nesse]
  +
<br>
 
[https://wires.onlinelibrary.wiley.com/doi/10.1002/wcms.81 Article about main improvement in the version 5.0]
 
[https://wires.onlinelibrary.wiley.com/doi/10.1002/wcms.81 Article about main improvement in the version 5.0]
   
 
<br>
 
<br>
   
  +
= Miscellaneous Notes to Usage =
= Versions and Availability =
 
  +
* ORCA utilizes MPI parallelization, specifically backed by OpenMPI. When configuring parallel jobs in the Slurm sbatch script, use appropriate directives such as --nodes and --ntasks-per-node.<br>Avoid using the --cpus-per-task directive. All the ORCA modules load the appropriate OpenMPI module automatically.
 
  +
* To ensure successful parallel runs, it is necessary to call ORCA with the full path, i.e. '$ORCA_BIN_DIR/orca <input_file>'
On the command line interface of any bwHPC cluster you'll get a list of available versions by using
 
  +
* Due to potential large I/O operations, especially for post HF methods, it is advisable to place temporary files a local scratch directory.<br>To learn more about local disk space on [[JUSTUS2]], please refer to the [[JUSTUS2/Hardware#$SCRATCH and $TMPDIR|$SCRATCH and $TMPDIR]] section on the "JUSTUS2 Hardware" page.
the command
 
  +
* The most preferable way to load ORCA is with the specific version included, i.e., 'module load chem/orca/<version>'.<br>The default version, which may change over time, can be loaded simply with the command 'module load chem/orca'.
  +
* The module includes the loading of all additional modules, especially an appropriate OpenMPI module in the case of ORCA, necessary for the proper functioning of the program, so there's no need to load additional modules separately. However, loading additional modules may be counterproductive.
 
<br>
 
<br>
''''module avail chem/orca''''.
 
<pre>
 
$ module avail chem/orca # JUSTUS 2
 
------------------------------ ----------------/opt/bwhpc/common/modulefiles/Core --------------------------------------------------------
 
chem/orca/4.2.1-xtb-6.3.3 chem/orca/5.0.1-xtb-6.4.1 chem/orca/5.0.2 chem/orca/5.0.3 chem/orca/5.0.4 (D)
 
chem/orca/4.2.1 chem/orca/5.0.1 chem/orca/5.0.3-xtb-6.5.1 chem/orca/5.0.4_xtb-6.6.0
 
</pre>
 
<br>
 
 
= Usage =
 
== Loading the module ==
 
 
The most preferable way to load ORCA is with the specific version included, i.e., 'module load chem/orca/<version>'.
 
 
<pre>
 
$ module load chem/orca/5.0.4
 
</pre>
 
 
 
The default version, which may change over time, can be loaded simply with the command 'module load chem/orca'.
 
The module includes the loading of all additional modules necessary for the proper functioning of the program, so there's no need to load additional modules separately. However, loading additional modules may be counterproductive.
 
 
== Example Script ==
 
 
A working example of the submission script for a parallel ORCA job is available, after loading the module, at $ORCA_EXA_DIR/slurm_orca_example.sbatch file.
 
<br>
 
<br>
 
 
----
 
[[Category:Chemistry software]][[Category:bwUniCluster]][[Category:bwForCluster_Chemistry]]
 

Latest revision as of 15:51, 29 February 2024

The main documentation is available via module help chem/orca on the cluster. Most software modules for applications provide working example batch scripts.


Description Content
module load chem/orca/5.0.4
Availability bwUniCluster | JUSTUS2
License EULA
Citing As described in the manual. Refer to Chapter 'Publications Related to ORCA' for guidance on citation.
Links Main ORCA Forum Portal | Documentation
Graphical Interface No


1 Description

ORCA is a comprehensive, fully parallelized quantum chemistry package designed for advanced electronic structure methods. It encompasses density functional theory, many-body perturbation theory, coupled cluster methods, multireference methods, and semi-empirical quantum chemistry approaches. ORCA is capable of computing a wide range of molecular properties and serves as a fully integrated system for multi-level calculations, including QM/MM, ONIOM, and embedded crystals.

Additionally, ORCA offers several advanced features to improve computational efficiency and accuracy. These include local correlation methods, starting with PNOs and expanded to DLPNO to reduce the computational cost of coupled cluster calculations. It also incorporates RIJCOSX for efficient handling of Hartree-Fock based methods.

Furthermore, ORCA provides NEB-TS for studying reaction pathways and offers various methods for accurately calculating excited states, such as TD-DFT, EOM-CCSD, STEOM-CCSD, CASSCF with NEVPT2 or CASPT2, as well as molecular dynamics and multi-scale QM-MM models.

Please refer to documentation provided by the ORCA developers in the first place for more detailed information, e.g.:

Orca Manual 5.0.4
Article Overview by Frank Nesse
Article about main improvement in the version 5.0


2 Miscellaneous Notes to Usage

  • ORCA utilizes MPI parallelization, specifically backed by OpenMPI. When configuring parallel jobs in the Slurm sbatch script, use appropriate directives such as --nodes and --ntasks-per-node.
    Avoid using the --cpus-per-task directive. All the ORCA modules load the appropriate OpenMPI module automatically.
  • To ensure successful parallel runs, it is necessary to call ORCA with the full path, i.e. '$ORCA_BIN_DIR/orca <input_file>'
  • Due to potential large I/O operations, especially for post HF methods, it is advisable to place temporary files a local scratch directory.
    To learn more about local disk space on JUSTUS2, please refer to the $SCRATCH and $TMPDIR section on the "JUSTUS2 Hardware" page.
  • The most preferable way to load ORCA is with the specific version included, i.e., 'module load chem/orca/<version>'.
    The default version, which may change over time, can be loaded simply with the command 'module load chem/orca'.
  • The module includes the loading of all additional modules, especially an appropriate OpenMPI module in the case of ORCA, necessary for the proper functioning of the program, so there's no need to load additional modules separately. However, loading additional modules may be counterproductive.