Quantum ESPRESSO: Difference between revisions
No edit summary |
No edit summary |
||
Line 4: | Line 4: | ||
"Quantum ESPRESSO is an integrated suite of Open-Source computer codes for electronic-structure calculations and materials modeling at the nanoscale. It is based on density-functional theory, plane waves, and pseudopotentials." | "Quantum ESPRESSO is an integrated suite of Open-Source computer codes for electronic-structure calculations and materials modeling at the nanoscale. It is based on density-functional theory, plane waves, and pseudopotentials." | ||
"Quantum ESPRESSO has evolved into a distribution of independent and inter-operable codes in the spirit of an open-source project. The Quantum ESPRESSO distribution consists of a “historical” core set of components, and a set of plug-ins that perform more advanced tasks, plus a number of third-party packages designed to be inter-operable with the core components." | "Quantum ESPRESSO has evolved into a distribution of independent and inter-operable codes in the spirit of an open-source project. The Quantum ESPRESSO distribution consists of a “historical” core set of components, and a set of plug-ins that perform more advanced tasks, plus a number of third-party packages designed to be inter-operable with the core components." (Description from [http://www.quantum-espresso.org/ Quantum ESPRESSO web site]). | ||
== Running Quantum ESPRESSO on Compute Canada == | |||
Use [[Utiliser des modules/en|modules]] to choose a version. You can see available versions with <code>module avail quantumespresso</code> or <code>module spider quantumespresso</code>, and load one with (for example), <code>module load quantumespresso/6.1</code>. | |||
=== Example job === | |||
{{File | |||
|name=qe_ex1.sh | |||
|lang="sh" | |||
|contents= | |||
#!/bin/bash | |||
#SBATCH --account=def-someuser | |||
#SBATCH --time=0-1:00 # time (DD-HH:MM) | |||
#SBATCH --nodes=2 | |||
#SBATCH --tasks-per-node=32 # MPI tasks | |||
#SBATCH --mem=0 # all memory on node | |||
srun pw.x | |||
}} | |||
The above example requests two whole nodes... ''MORE'' | |||
=== Pseudopotentials === | |||
''TO COME'' |
Revision as of 17:51, 24 August 2017
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[edit]
"Quantum ESPRESSO is an integrated suite of Open-Source computer codes for electronic-structure calculations and materials modeling at the nanoscale. It is based on density-functional theory, plane waves, and pseudopotentials."
"Quantum ESPRESSO has evolved into a distribution of independent and inter-operable codes in the spirit of an open-source project. The Quantum ESPRESSO distribution consists of a “historical” core set of components, and a set of plug-ins that perform more advanced tasks, plus a number of third-party packages designed to be inter-operable with the core components." (Description from Quantum ESPRESSO web site).
Running Quantum ESPRESSO on Compute Canada[edit]
Use modules to choose a version. You can see available versions with module avail quantumespresso
or module spider quantumespresso
, and load one with (for example), module load quantumespresso/6.1
.
Example job[edit]
#!/bin/bash
#SBATCH --account=def-someuser
#SBATCH --time=0-1:00 # time (DD-HH:MM)
#SBATCH --nodes=2
#SBATCH --tasks-per-node=32 # MPI tasks
#SBATCH --mem=0 # all memory on node
srun pw.x
The above example requests two whole nodes... MORE
Pseudopotentials[edit]
TO COME