Dalton: Difference between revisions

From Alliance Doc
Jump to navigation Jump to search
(Created page with "{{Draft}} = Introduction = The kernel of the Dalton2016 suite is the two powerful molecular electronic structure programs, Dalton and LSDalton. Together, the two programs pr...")
 
Line 14: Line 14:


== Example 1 ==
== Example 1 ==
<tabs>
<tab name="Script">
{{File
  |name=run_glost_test.sh
  |lang="bash"
  |contents=
#!/bin/bash
#SBATCH --nodes=1
#SBATCH --ntasks-per-node=2
#SBATCH --time=00-02:00
#SBATCH --mem-per-cpu=4000M
# Load GLOST module along with the modules required to run your application:
}}
</tab>
<tab name="List of Tasks">
{{File
  |name=list_glost_tasks.txt
  |lang="txt"
  |contents=
nargument=20 && sleep 360 && echo ${nargument}.`hostname` > log_${nargument}.txt
}}
</tab>
</tabs>


== Example 2 ==
== Example 2 ==

Revision as of 17:20, 10 June 2018


This article is a draft

This is not a complete article: This is a draft, a work in progress that is intended to be published into an article, which may or may not be ready for inclusion in the main wiki. It should not necessarily be considered factual or authoritative.




Introduction

The kernel of the Dalton2016 suite is the two powerful molecular electronic structure programs, Dalton and LSDalton. Together, the two programs provide an extensive functionality for the calculations of molecular properties at the HF, DFT, MCSCF, and CC levels of theory. Many of these properties are only available in the Dalton2016 suite.

Modules

$ module load nixpkgs/16.09  intel/2016.4  openmpi/2.0.2 dalton/2017-alpha

Examples of input files

Example 1

File : run_glost_test.sh

#!/bin/bash

#SBATCH --nodes=1
#SBATCH --ntasks-per-node=2
#SBATCH --time=00-02:00
#SBATCH --mem-per-cpu=4000M

# Load GLOST module along with the modules required to run your application:


File : list_glost_tasks.txt

nargument=20 && sleep 360 && echo ${nargument}.`hostname` > log_${nargument}.txt


Example 2