aiida_quantumespresso.calculations.epw#

Plugin to create a Quantum Espresso epw.x input file.

Module Contents#

Classes#

EpwCalculation

CalcJob implementation for the epw.x code of Quantum ESPRESSO.

class aiida_quantumespresso.calculations.epw.EpwCalculation(*args, **kwargs)[source]#

Bases: aiida_quantumespresso.calculations.base.CalcJob

CalcJob implementation for the epw.x code of Quantum ESPRESSO.

_blocked_keywords = [('INPUTEPW', 'outdir'), ('INPUTEPW', 'verbosity'), ('INPUTEPW', 'prefix'), ('INPUTEPW',...[source]#
_use_kpoints = True[source]#
_compulsory_namelists = ['INPUTEPW'][source]#
_PREFIX = 'aiida'[source]#
_DEFAULT_INPUT_FILE = 'aiida.in'[source]#
_DEFAULT_OUTPUT_FILE = 'aiida.out'[source]#
_OUTPUT_XML_TENSOR_FILE_NAME = 'tensors.xml'[source]#
_OUTPUT_SUBFOLDER = './out/'[source]#
_SAVE_PREFIX = '/save/'[source]#
_FOLDER_SAVE = 'save'[source]#
_VERBOSITY = 'high'[source]#
_FOLDER_DYNAMICAL_MATRIX = 'DYN_MAT'[source]#
classmethod define(spec)[source]#

Define the process specification.

prepare_for_submission(folder)[source]#

Prepare the calculation job for submission by transforming input nodes into input files.

In addition to the input files being written to the sandbox folder, a CalcInfo instance will be returned that contains lists of files that need to be copied to the remote machine before job submission, as well as file lists that are to be retrieved after job completion.

Parameters:

folder – a sandbox folder to temporarily write files on disk.

Returns:

CalcInfo instance.