{"id":340,"date":"2013-04-26T10:46:09","date_gmt":"2013-04-26T10:46:09","guid":{"rendered":"http:\/\/ri.itservices.manchester.ac.uk\/csf-apps\/?page_id=340"},"modified":"2018-06-26T13:01:53","modified_gmt":"2018-06-26T13:01:53","slug":"orca","status":"publish","type":"page","link":"https:\/\/ri.itservices.manchester.ac.uk\/csf-apps\/software\/applications\/orca\/","title":{"rendered":"ORCA"},"content":{"rendered":"<h2>Overview<\/h2>\n<p><a href=\"https:\/\/cec.mpg.de\/1\/research\/molecular-theory-and-spectroscopy\/dr-frank-wennmohs\/\">ORCA<\/a> is an ab initio, DFT and semiempirical SCF-MO package for quantum chemistry with specific emphasis on spectroscopic properties of open-shell molecules.<\/p>\n<p>Versions 4.0.0, 3.0.3, 3.0.2, 3.0.0, 2.9.1 and 2.8.0.2 are available.<\/p>\n<h2>Changes to accessing ORCA as of 1st June 2017<\/h2>\n<p>As of the 1st June 2017 ALL versions of ORCA are protected by a unix group. To be added to the group you must follow the &#8216;Restrictions on Use&#8217; below.<\/p>\n<h2>Restrictions on use<\/h2>\n<p>All users of the software must individually register and agree to the End User License Agreement (EULA) on the <a href=\"https:\/\/cec.mpg.de\/orcadownload\/\">ORCA download website<\/a>. Please then forward the registration confirmation email to <a href=\"&#109;&#x61;&#105;&#x6c;&#116;&#x6f;&#58;&#x69;&#116;&#x73;&#45;&#x72;&#105;&#x2d;&#116;&#x65;&#97;&#x6d;&#64;&#x6d;&#97;&#x6e;&#99;&#x68;&#101;&#x73;t&#x65;r&#x2e;a&#x63;&#46;&#x75;k\">&#x69;&#116;s&#x2d;&#x72;&#105;-&#x74;&#101;a&#x6d;&#x40;&#109;a&#x6e;&#99;h&#x65;&#x73;&#116;e&#x72;&#x2e;&#97;&#x63;&#x2e;&#117;k<\/a> and request access to ORCA on the CSF. <\/p>\n<p><strong>Note:<\/strong> You must have agreed to the ORCA 4 license (confirmation emails prior to March 2017 cannot be accepted).<\/p>\n<p>Visitor\/collaborators from other academic institutions may use the software. You must have a University of Manchester IT username. It is permitted to use your home institution email address when you register on the ORCA website.<\/p>\n<p>Some guidance, which is not intended as a replacement for the EULA, is given below.<\/p>\n<h3>What may ORCA be used for?<\/h3>\n<p>The EULA stipulates that:<\/p>\n<ul>\n<li>the software may only be for academic purposes, including teaching and research<\/li>\n<li>publication in a scientific is permitted<\/li>\n<li>copyright notices must remain in the software and it&#8217;s output<\/li>\n<\/ul>\n<h3>What may ORCA not be used for?<\/h3>\n<p>You MUST NOT use ORCA:<\/p>\n<ul>\n<li>for research and development for commercial purposes<\/li>\n<li>for research and development in cooperation or other collaboration with or sponsored by a for-profit organization<\/li>\n<li>for research and development for a for-profit organization<\/li>\n<li>for any work that is directly funded by or in collaboration with a military department, e.g. Ministry of Defence in the UK or an equivalent abroad.<\/li>\n<\/ul>\n<p>It is not permitted:<\/p>\n<ul>\n<li>to use ORCA on the CSF for &#8220;Private Use&#8221; (as defined in clause 1d of the EULA)<\/li>\n<li>to share data generated with ORCA with third parties for purposes other than academic purposes.<\/li>\n<li>to modify, translate, reverse engineer, decompile or disassemble ORCA or duplicate, transfer, modify it or derive works from it outside the scope of the EULA<\/li>\n<\/ul>\n<h3>How should the program be cited?<\/h3>\n<p>The use of ORCA should be cited as per clause 5 of the EULA. <\/p>\n<p>Note that any patent that is filed for as a result of using ORCA must be notified to the Max Planck Institute.<\/p>\n<h2>Set up procedure<\/h2>\n<p>Please load the appropriate modulefile:<\/p>\n<pre class=\"in1\">\r\nmodule load apps\/binapps\/orca\/4.0.1\r\nmodule load apps\/binapps\/orca\/4.0.0   \r\nmodule load apps\/binapps\/orca\/3.0.3\r\nmodule load apps\/binapps\/orca\/3.0.2\r\nmodule load apps\/binapps\/orca\/3.0.0\r\nmodule load apps\/binapps\/orca\/2.9.1\r\nmodule load apps\/binapps\/orca\/2.8.0.2<\/pre>\n<p>Note: this loads an mpi module required to run ORCA in parallel, therefore unloading the ORCA module will also unload this mpi module.<\/p>\n<h2>Running the application<\/h2>\n<p>ORCA must be run in batch only.<\/p>\n<h3>Serial batch job submission<\/h3>\n<ul>\n<li>Make sure you have the module loaded.<\/li>\n<li>Create or upload an input file to your working directory. In the example below we have called this file <code>my.orca.inp<\/code>.<\/li>\n<li>Write a submission script, for example:\n<pre>\r\n#!\/bin\/bash\r\n## Use the current directory as the working directory - input and output files are here\r\n#$ -cwd\r\n## Inherit the user environment from the login node\r\n#$ -V\r\n\r\n$ORCA_HOME\/orca my.orca.inp > out.txt\r\n<\/pre>\n<\/li>\n<li>Submit with: <code>qsub scriptname<\/code><\/li>\n<\/ul>\n<h3>Parallel batch job submission<\/h3>\n<ul>\n<li>Make sure you have the module loaded.<\/li>\n<li>Create or upload an input file to your working directory. In the example below we have called this file <code>my.orca.inp<\/code>.<\/li>\n<li>Write a submission script, for example:\n<pre>\r\n#!\/bin\/bash\r\n#$ -cwd\r\n#$ -V\r\n#$ -pe smp.pe 4\r\n\r\n$ORCA_HOME\/orca my.orca.inp > out.txt\r\n<\/pre>\n<\/li>\n<li>Your input file needs one of the following lines at the top of it (including the !) to tell it how many cores to use:\n<pre>\r\n! PAL4\r\n<\/pre>\n<p>or <\/p>\n<pre>\r\n%pal nprocs 4\r\n<\/pre>\n<\/li>\n<li>The number you specify after <\/code>PAL<\/code> or <\/code>%pal nprocs<\/code><strong>must<\/strong> match that on the <code>#$ -pe<\/code> line in your submission script to avoid scheduling issues.<\/li>\n<li>The maximum number of cores that ORCA can use if using the <code>! PAL<em>n<\/em><\/code> keyword is 8 because only <code>! PAL2 <\/code> to <code>! PAL8<\/code> keywords are supported.<\/li>\n<li>The maximum number of cores that ORCA can use if using the <code>%pal nprocs<\/code> is 24<\/li>\n<li><code>smp.pe<\/code> must be used pe for parallel ORCA jobs.<\/li>\n<li>The input file must be suffixed <code>.inp<\/code><\/li>\n<li>To submit the job: <code>qsub scriptname<\/code><\/li>\n<li>Note: MRCI has not been parallelized so must be run as a serial job.<\/li>\n<\/ul>\n<h2>Further info<\/h2>\n<h3>Manual<\/h3>\n<p>The manual is available on the CSF and can be read using <a href=\"\/csf-apps\/software\/applications\/evince\">evince<\/a><\/p>\n<ul>\n<li>4.0.0\n<pre>\r\nevince $ORCA_HOME\/manual\/OrcaManual4.0.0.pdf\r\n<\/pre>\n<\/li>\n<li>3.0.3\n<pre>\r\nevince $ORCA_HOME\/manual\/OrcaManual3.0.3.pdf\r\n<\/pre>\n<\/li>\n<li>3.0.2\n<pre>\r\nevince $ORCA_HOME\/manual\/OrcaManual3.0.2.pdf\r\n<\/pre>\n<\/li>\n<li>3.0.0\n<pre>\r\nevince $ORCA_HOME\/manual\/OrcaManual3.0.pdf\r\n<\/pre>\n<\/li>\n<li>2.9.1\n<pre>\r\nevince $ORCA_HOME\/manual\/OrcaManual2.9.pdf\r\n<\/pre>\n<\/li>\n<\/li>\n<li>2.8.0.2\n<pre>\r\nevince $ORCA_HOME\/manual\/OrcaManual_2_8_0.final.pdf\r\n<\/pre>\n<\/li>\n<\/ul>\n<h3>Examples<\/h3>\n<pre>\r\nevince $ORCA_HOME\/manual\/ORCA-example-installation.pdf<\/pre>\n<h3>ORCA Website<\/h3>\n<p><a href=\"https:\/\/orcaforum.cec.mpg.de\/\">The ORCA website<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Overview ORCA is an ab initio, DFT and semiempirical SCF-MO package for quantum chemistry with specific emphasis on spectroscopic properties of open-shell molecules. Versions 4.0.0, 3.0.3, 3.0.2, 3.0.0, 2.9.1 and 2.8.0.2 are available. Changes to accessing ORCA as of 1st June 2017 As of the 1st June 2017 ALL versions of ORCA are protected by a unix group. To be added to the group you must follow the &#8216;Restrictions on Use&#8217; below. Restrictions on use.. <a href=\"https:\/\/ri.itservices.manchester.ac.uk\/csf-apps\/software\/applications\/orca\/\">Read more &raquo;<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"parent":31,"menu_order":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-340","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/ri.itservices.manchester.ac.uk\/csf-apps\/wp-json\/wp\/v2\/pages\/340","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ri.itservices.manchester.ac.uk\/csf-apps\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/ri.itservices.manchester.ac.uk\/csf-apps\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/ri.itservices.manchester.ac.uk\/csf-apps\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/ri.itservices.manchester.ac.uk\/csf-apps\/wp-json\/wp\/v2\/comments?post=340"}],"version-history":[{"count":21,"href":"https:\/\/ri.itservices.manchester.ac.uk\/csf-apps\/wp-json\/wp\/v2\/pages\/340\/revisions"}],"predecessor-version":[{"id":4747,"href":"https:\/\/ri.itservices.manchester.ac.uk\/csf-apps\/wp-json\/wp\/v2\/pages\/340\/revisions\/4747"}],"up":[{"embeddable":true,"href":"https:\/\/ri.itservices.manchester.ac.uk\/csf-apps\/wp-json\/wp\/v2\/pages\/31"}],"wp:attachment":[{"href":"https:\/\/ri.itservices.manchester.ac.uk\/csf-apps\/wp-json\/wp\/v2\/media?parent=340"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}