-
Notifications
You must be signed in to change notification settings - Fork 0
/
QE_jobs.xml
50 lines (37 loc) · 1.79 KB
/
QE_jobs.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<WaNoTemplate>
<WaNoMeta>
<Author>
<Name> J. Schaarschmidt </Name>
</Author>
<Description>
This script is utilized to perform Quantum ESPRESSO (QE) calculations for two main types of jobs: relaxation of crystal structures and energy calculation.
</Description>
</WaNoMeta>
<WaNoRoot name="QE_jobs">
<WaNoFile logical_filename="structure.xyz" name="Structure file">Structure file</WaNoFile>
<WaNoString name="kpts">3, 3, 3</WaNoString>
<WaNoDropDown name="Type of job">
<Entry id="0" chosen="True">Relaxation</Entry>
<Entry id="1">Calculation energy</Entry>
</WaNoDropDown>
<WaNoFile logical_filename="structure_strain.traj" visibility_condition="'%s' == 'Calculation energy'"
visibility_var_path="Type of job" name="Structure strain">Structure strain</WaNoFile>
<WaNoBool name="Your path to the pseudopotential files" description="You can specify your own path to the pseudopotential files">False</WaNoBool>
<WaNoString name="custom_pseudopotentials_path" visibility_condition="%s == True"
visibility_var_path="Your path to the pseudopotential files">Enter the path to the pseudopotentials</WaNoString>
</WaNoRoot>
<WaNoExecCommand>
simstack_server_mamba_source
eval "$(conda shell.bash hook)"
conda activate qe
export PSEUDOPOTENTIALS_PATH="{{- wano.pseudopotentials_path -}}"
python QE_jobs.py
</WaNoExecCommand>
<WaNoInputFiles>
<WaNoInputFile logical_filename="QE_jobs.py">QE_jobs.py</WaNoInputFile>
</WaNoInputFiles>
<WaNoOutputFiles>
<WaNoOutputFile>output.pwi</WaNoOutputFile>
<WaNoOutputFile>output.pwo</WaNoOutputFile>
</WaNoOutputFiles>
</WaNoTemplate>