Skip to main content

Quantum ESPRESSO Calculator for Atomic Simulation Environment (ASE).

Project description

xespresso

Unit test

Quantum ESPRESSO Calculator for Atomic Simulation Environment (ASE).

For the introduction of ASE , please visit https://wiki.fysik.dtu.dk/ase/index.html

Features

  • Support all QE packages, including: pw, band, neb, dos, projwfc, pp ...
  • Spin-polarized calculation
  • LD(S)A+U
  • Automatic submit job
  • Automatic check a new calculation required or not
  • Automatic set up "nscf" calculation
  • Read and plot dos, pdos and layer resolved pdos
  • Plot NEB

Author

Dependencies

  • Python
  • ASE
  • numpy
  • scipy
  • matplotlib

Installation using pip

pip install --upgrade --user xespresso

Installation from source

You can get the source using git:

git clone --depth 1 https://github.com/superstar54/xespresso.git

Add xespresso to your PYTHONPATH. On windows, you can edit the system environment variables.

export PYTHONPATH="/path/to/xespresso":$PYTHONPATH
export ASE_ESPRESSO_COMMAND="/path/to/PACKAGE.x  PARALLEL  -in  PREFIX.PACKAGEi  >  PREFIX.PACKAGEo"
export ESPRESSO_PSEUDO="/path/to/pseudo"

Examples

Automatic submit job

A example of setting parameters for the queue. See example/queue.py

queue = {'nodes': 4,
         'ntasks-per-node': 20,
         'partition': 'all',
         'time': '23:10:00'}
calc = Espresso(queue = queue)

Automatic check a new calculation required or not

Before the calculation, it will first check the working directory. If the same geometry and parameters are used, try to check whether the results are available or not. Automatic check input parameters with Quantum Espresso document.

calc = Espresso(label = 'scf/fe')

Show debug information.

calc = Espresso(debug = True)

Add new species

Some atoms are special:

  • atoms with different starting_magnetization
  • atoms with different U values
  • atoms with special basis set

For example, Fe with spin state AFM. See example/spin.py

atoms.new_array('species', np.array(atoms.get_chemical_symbols(), dtype = 'U20'))
atoms.arrays['species'][1] = 'Fe1'

Setting parameters with "(i), i=1,ntyp"

Hubbard, starting_magnetization, starting_charge and so on. See example/dft+u.py

input_ntyp = {
'starting_magnetization': {'Fe1': 1.0, 'Fe2': -1.0},
'Hubbard_U': {'Fe1': 3.0, 'Fe2': 3.0},
}
input_data['input_ntyp'] = input_ntyp,

Setting parameters for "Hubbard_V(na,nb,k)"

Hubbard, starting_magnetization, starting_charge and so on. See example/dft+u.py

input_data = {
'hubbard_v': {'(1,1,1)': 4.0, '(3,3,1)': 1.0},
}

Control parallelization levels

To control the number of processors in each group: -ni, -nk, -nb, -nt, -nd) are used.

calc = Espresso(pseudopotentials = pseudopotentials,
                 package = 'pw',
                 parallel = '-nk 2 -nt 4 -nd 144',  # parallel parameters
                 }

Non self-consistent calculation

A example of nscf calculation following the above one.

# start nscf calculation
from xespresso.post.nscf import EspressoNscf
nscf = EspressoNscf(calc.directory, prefix = calc.prefix,
                occupations = 'tetrahedra',
                kpts = (2, 2, 2),
                debug = True,
                )
nscf.run()

Calculate dos and pdos

A example of calculating and plotting the pdos from the nscf calculation.

from xespresso.post.dos import EspressoDos
# dos
dos = EspressoDos(parent_directory = 'calculations/scf/co',
            prefix = calc.prefix,
            Emin = fe - 30, Emax = fe + 30, DeltaE = 0.01)
dos.run()
# pdos
from xespresso.post.projwfc import EspressoProjwfc
projwfc = EspressoProjwfc(parent_directory = 'calculations/scf/co',
            prefix = 'co',
            DeltaE = 0.01)
projwfc.run()

Calculate work function

from xespresso.post.pp import EspressoPp
pp = EspressoPp(calc.directory, prefix = calc.prefix,
                plot_num = 11,
                fileout = 'potential.cube',
                iflag = 3,
                output_format=6,
                debug = True,
                )
pp.get_work_function()

Restart from previous calculation

calc.read_results()
atoms = calc.results['atoms']
calc.run(atoms = atoms, restart = 1)

NEB calculation

See example/neb.py

from xespresso.neb import NEBEspresso
calc = NEBEspresso(
                 package = 'neb',
                 images = images,
                 climbing_images = [5],
                 path_data = path_data
                 )
calc.calculate()
calc.read_results()
calc.plot()

Workflow

Oxygen evolution reaction (OER) calculation

The workflow includes four modules:

  • OER_bulk
  • OER_pourbaix
  • OER_surface
  • OER_site

The workflow can handle:

  • Generate surface slab model from bulk structure
  • Determine the surface adsorption site
  • Determine the surface coverage(, O, OH*), Pourbaix diagram
  • Calculate the Zero-point energy
oer = OER_site(slab,
               label = 'oer/Pt-001-ontop',
               site_type = 'ontop',
               site = -1,
               height=2.0,
	           calculator = parameters,
               molecule_energies = molecule_energies,
               )
oer.run()

To do lists:

  • add qPointsSpecs and Line-of-input for phonon input file

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

xespresso-1.5.5.tar.gz (76.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

xespresso-1.5.5-py3-none-any.whl (85.3 kB view details)

Uploaded Python 3

File details

Details for the file xespresso-1.5.5.tar.gz.

File metadata

  • Download URL: xespresso-1.5.5.tar.gz
  • Upload date:
  • Size: 76.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.13.0 pkginfo/1.6.1 requests/2.31.0 requests-toolbelt/0.10.1 tqdm/4.51.0 CPython/3.8.5

File hashes

Hashes for xespresso-1.5.5.tar.gz
Algorithm Hash digest
SHA256 52e4ab2585b7226dfa15b5d76fc88da2f84f799f6cc9a7d9b35b70a25003cd9b
MD5 5f9f20f3024c75793d879ab996de3cd9
BLAKE2b-256 8d6cade7507f966d532b024d198e9b9f1f49246709465f179b53129dc36e2141

See more details on using hashes here.

File details

Details for the file xespresso-1.5.5-py3-none-any.whl.

File metadata

  • Download URL: xespresso-1.5.5-py3-none-any.whl
  • Upload date:
  • Size: 85.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.13.0 pkginfo/1.6.1 requests/2.31.0 requests-toolbelt/0.10.1 tqdm/4.51.0 CPython/3.8.5

File hashes

Hashes for xespresso-1.5.5-py3-none-any.whl
Algorithm Hash digest
SHA256 574ab09e67f739499cb88a76155ebdf457c2c26b6ca69207d28d4a60351f0b61
MD5 eec1c87ae0f2a52548a477d7443fc3b0
BLAKE2b-256 7640b290d78529877952b514f383d3f761ff7dbfa780eb206107fadac94dd9e4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page