Hi,
I have been learning how to use aiida with Quantum Espresso for the last couple of days and have managed to write a single python script that launches all the necessary codes to get a proper phonon dispersion (that's: pw.x, ph.x, q2r.x and matdyn.x)
This led me to the following 2 questions:
1. Is it possible to submit all the necessary codes in a single job? That is create and submit only one bash script (pbs, slurm,...)
For the moment, I wait for the status of the first code (say pw.x) to change to "FINISHED" and submit the next code (say ph.x) in a different job. This seems odd since you need the python script to be running on the login node during the whole process and you can loose you priority in the queue between each code/job you submit.
2. Are the eigenvectors of the dynamical matrices parsed somewhere?
After matdyn.x finishes, the output is a BandsData object. I can find the eigenvalues of the dynamical matrix (i.e the bands) but I can't seem to find the eigenvectors. The flvec file is created in the output folder but I can't find the parsed results.
Thank you for your help!
Félix