ARCHER logo ARCHER banner

The ARCHER Service is now closed and has been superseded by ARCHER2.

  • ARCHER homepage
  • About ARCHER
    • About ARCHER
    • News & Events
    • Calendar
    • Blog Articles
    • Hardware
    • Software
    • Service Policies
    • Service Reports
    • Partners
    • People
    • Media Gallery
  • Get Access
    • Getting Access
    • TA Form and Notes
    • kAU Calculator
    • Cost of Access
  • User Support
    • User Support
    • Helpdesk
    • Frequently Asked Questions
    • ARCHER App
  • Documentation
    • User Guides & Documentation
    • Essential Skills
    • Quick Start Guide
    • ARCHER User Guide
    • ARCHER Best Practice Guide
    • Scientific Software Packages
    • UK Research Data Facility Guide
    • Knights Landing Guide
    • Data Management Guide
    • SAFE User Guide
    • ARCHER Troubleshooting Guide
    • ARCHER White Papers
    • Screencast Videos
  • Service Status
    • Detailed Service Status
    • Maintenance
  • Training
    • Upcoming Courses
    • Online Training
    • Driving Test
    • Course Registration
    • Course Descriptions
    • Virtual Tutorials and Webinars
    • Locations
    • Training personnel
    • Past Course Materials Repository
    • Feedback
  • Community
    • ARCHER Community
    • ARCHER Benchmarks
    • ARCHER KNL Performance Reports
    • Cray CoE for ARCHER
    • Embedded CSE
    • ARCHER Champions
    • ARCHER Scientific Consortia
    • HPC Scientific Advisory Committee
    • ARCHER for Early Career Researchers
  • Industry
    • Information for Industry
  • Outreach
    • Outreach (on EPCC Website)

You are here:

  • ARCHER
  • User Guides & Documentation
  • Essential Skills
  • Quick Start Guide
  • ARCHER User Guide
  • ARCHER Best Practice Guide
  • Scientific Software Packages
  • UK Research Data Facility Guide
  • Knights Landing Guide
  • Data Management Guide
  • SAFE User Guide
  • ARCHER Troubleshooting Guide
  • ARCHER White Papers
  • Screencast Videos

Contact Us

support@archer.ac.uk

Twitter Feed

Tweets by @ARCHER_HPC

ISO 9001 Certified

ISO 27001 Certified

Quantum Espresso

Useful links

  • Quantum Espresso web page
  • Quantum Espresso User Manual
  • Quantum Espresso Tutorials

Licensing and Access

Quauntum Espresso is Open Source software so all user have access to the binaries and source.

Running Quantum Espresso

To access the Quantum Espresso (QE) executables you need to load one of the "espresso" modules (usually in your job submission script as in the example below). The default module can be loaded by doing

module load espresso

Once an espresso module has been loaded the QE executables become available. The espresso modules also set the ESPRESSO_PSEUDO environment variable to point at the pseudopotentials included by the QE developers. Unless you explicitly specify an alternative location QE will use these pseudopotentials in your calculations.

An example Quantum Espresso job submission script (using the pw.x executable) is shown below. To run this example you will need to download the input file si.scf.david.in and place it in the same directory as the job script. You will also need to substitute "budget" in the job script with your project code.

#!/bin/bash --login
#
#PBS -N qe_job
#PBS -l select=2
#PBS -l walltime=00:10:00
# Make sure you change "budget" to your budget code
#PBS -A budget
#PBS -q short

# Make sure any symbolic links are resolved to absolute path
export PBS_O_WORKDIR=$(readlink -f $PBS_O_WORKDIR)

# Change to the directory that the job was submitted from
cd $PBS_O_WORKDIR

# Load the Quantum Espresso module
module load espresso

# Make sure temporary files go to the /work filesystem
export TMPDIR=$PBS_O_WORKDIR
export ESPRESSO_TMPDIR=$PBS_O_WORKDIR

# Run the Quantum Espresso executable "pw.x"
aprun -n 48 pw.x -nband 1 -ntg 1 -inp si.scf.david.in > si.scf.david.out

Compiling

  • Compiling Quantum Espresso 5.0.3 on ARCHER (Cray XC30, Ivy Bridge) using Intel's MKL library

Copyright © Design and Content 2013-2019 EPCC. All rights reserved.

EPSRC NERC EPCC