{ "cells": [ { "cell_type": "markdown", "metadata": { "collapsed": true }, "source": [ "# LID Phonon (lid_phonon.py)\n", "## Background \n", "\n", "lid_phonon is a code which performs the LID method, but only at second order. The advantage of having a standalone code for second order is that one can basically hard code the group theory for this particular case, which ensures that the code will be relatively fast when generating runs for large FTGs.\n", "\n", "lid_phonon does the necessary group theory, sets up runs using **xtal_derivative.py**, and then will gather all the results to form the dynamical matrix.\n", "\n", "Here we give a basic description of how to run lid_phonon.py on a simple test case of UO2. The actual runs can be found here:\n", "\n", "```bash\n", "/home/cam1/dft_runs/uo2/pbe/cut450_k16/ferro/u0/lid_phonon\n", "```\n", "\n", "We start with a YAML input file (e.g. inputs.yaml) containing the necessary keywords:\n", "\n", "```python\n", "fpinp: ../static/ # relative path to first-principles (DFT code) input files\n", "pgname: Oh # point group\n", "schema: generate # tells code to generate runs\n", "undistorted_path: ../static/ # path to undistorted results (if needed)\n", "supa: -1,1,1;1,-1,1;1,1,-1 # 3x3 matrix defining the supercell\n", "xtal: ../static/POSCAR # path to file defining the crystal structure\n", "delta: 0.01,0.04,0.01 # squence of displacement amplitudes to run: 0.01, 0.02, ...\n", "target: force # take derivatives of forces (or energy)\n", "```\n", "\n", "We can now execute lid_phonon.py\n", "\n", "```bash\n", "lid_phonon.py -i input.yaml\n", "```\n", "\n", "This will create the following directories:\n", "\n", "```bash\n", "$ ls */\n", "\n", "q1__000:\n", " irr_T1u.0 irr_T2g.0 \n", "\n", "q2__110:\n", " irr_1.Eu.0 irr_A1g irr_A2u irr_B1u irr_Eg.0 irr_Eu.0 \n", "```\n", "\n", "Given that the determinant of our supercell matrix is 4, there will be four q-points in the discretized first Brillouin zone. However, the Oh point symmetry dictates that only two of them will be irreducible. Therefore, we have two q-point directories as shown above. The integer next to the \"q\" is the denominator, and the three integers to the right of the underscore are the numerators: we have q-points (0,0,0) and (1/2,1/2,0) in lattice coordinates. Given that UO2 has 9 degrees of freedom in the primitive cell (i.e. 3 atoms with 3 degrees of freedom each), the listed irreducible representation directors should have dimension which adds to 9. This is not true for the Gamma point, which only has two three-fold irreducible representation directories. This is due to homogeneity of free space, meaning that we do not need to compute the derivatives of the shift modes, which are zero by construction. \n", "\n", "Within each irreducible representation directory, there is a directory for each displacement amplitude, and within that directory, there are subdirectories for each multiple of that amplitude which is needed for the derivative at hand:\n", "\n", "```bash\n", "$ ls q1__000/irr_T1u.0/\n", "delta_1.0000 delta_2.0000 delta_3.0000 \n", "\n", "$ ls q1__000/irr_T1u.0/delta_1.0000/\n", "run_m1 run_p1\n", "```\n", "\n", "The notation \"m1\" and \"p1\" indicate that we are displacing -1*delta and +1*delta, respectively. These directories contain the actual DFT files that were copied from the template directory *fpinp* provided in the input file. \n", "\n", "You are now free to run all the DFT calculations in each subdirectory. When the runs are finished, you then need to run lid_phonon.py again to extract all of the data, perform the central finite difference calculations of the derivtives, and construct the dynamical matrices. This is done by simply changing the `schema` variable from `generate` to `evaluate`. After doing so, the code will create an output file in each q-point directory:\n", "\n", "```bash\n", "$ ls q*\n", "q1__000:\n", "Dq.pkl Dq_symm.txt Dq.txt irr_T1u.0 irr_T2g.0 Uk.txt\n", "\n", "q2__110:\n", "Dq.pkl Dq_symm.txt Dq.txt irr_1.Eu.0 irr_A1g irr_A2u irr_B1u irr_Eg.0 irr_Eu.0 Uk.txt\n", "\n", "```\n", "\n", "The file `Dq_symm.txt` contains the dynamical matrix in the symmetrized basis, while `Dq.txt` contains the usual standard basis; and `Dq.pkl` is a pickle that will be read when generating the phonon bands, etc. We will now need to interface with the interpolation code, `fourier_interp_Dqn.py`.\n", "\n", "In order to interface with **fourier_interp_Dqn.py**, we need to creat the proper input file, called **fi_info**. The following is an example to create this file given a particular FTG, given by nq, and the Oh point group. The value of delta is irrelavant. This command should be run in a subdirectory as it will create a bunch of directories that are not needed: only fi_info is needed from this run.\n", "\n", "```bash\n", "mkdir generate_fi_info\n", "cd generate_fi_info\n", "fourier_interp_Dqn.py nosym=False sym=False use_symadt=False nq='-1 1 1 1 -1 1 1 1 -1' pos=POSCAR delta=0.01 order=2 pgn=Oh -gen\n", "cd ..\n", "ln -s fi_info .\n", "```\n", "\n", "Please note that I have copied the POSCAR file into this subdirectory. This is because the POSCAR needs to follow a deprecated convention where the label on each atom needs to be followed by a \":p\", which tells the group theory code that each atom is associated with three displacement vectors. \n", "\n", "```bash\n", "$ more POSCAR \n", "UO2 Fluorite\n", "1.0\n", "0.00000000 2.71091838 2.71091838\n", "2.71091838 0.00000000 2.71091838\n", "2.71091838 2.71091838 0.00000000\n", "1 2\n", "d\n", "0.00000000 0.00000000 0.00000000 U:p\n", "0.25000000 0.25000000 0.25000000 O:p\n", "0.75000000 0.75000000 0.75000000 O:p\n", "```\n", "\n", "Now that fi_info is present in the current directory, you can simply run **fourier_interp_Dqn.py** without any commands, and it will generate PhiN_WS.pkl, which are the force constants that have been repacked into the Wigner-Seitz cell such that they can be used to compute the phonons for any q-point. \n", "\n", "If you want to create a band structure or DOS, you can now use **tb_tools.py**, and a typical command would be\n", "\n", "```bash\n", "tb_tools.py pos=POSCAR ham=PhiN_WS.pkl -mass nk=10,10,10 -bands units=THz\n", "```\n", "\n", "Do not forget the *mass* key, because otherwise the code will think you are doing electrons. The path in k-space is defined in the input file called `kinput`, which contains a list of q-points. \n", "\n", "```bash\n", "$ more kinput \n", "0 0 0 \n", "0.5 0.5 0\n", "```\n", "\n", "The output is a file called `bands.dat`, in addition to a file called `plt_bands.gr` which can be called using our interface to `xmgrace` called `gracey.py` (found in the utils directory).\n", "\n", "```bash\n", "gracey.py -i plt_bands.gr\n", "```" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 2", "language": "python", "name": "python2" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 2 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython2", "version": "2.7.17" } }, "nbformat": 4, "nbformat_minor": 2 }