.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "gallery/plot_phdos_grid.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end <sphx_glr_download_gallery_plot_phdos_grid.py>` to download the full example code. .. rst-class:: sphx-glr-example-title .. _sphx_glr_gallery_plot_phdos_grid.py: Projected phonon DOS ==================== This example shows how to plot several phonon DOS on a grid. We phonon DOS file produced by anaddb: trf2_5.out_PHDOS.nc: phonon DOS compute with anaddb. See also tutorial/lesson_rf2.html .. GENERATED FROM PYTHON SOURCE LINES 15-18 We start by defining a list with the paths to the PHDOS.nc files In this case, for simplicity, we use the same file but we must use different labels when adding them to the plotter with the add_phdos method. .. GENERATED FROM PYTHON SOURCE LINES 18-28 .. code-block:: Python from abipy import abilab import abipy.data as abidata phdos_paths = [abidata.ref_file("trf2_5.out_PHDOS.nc")] plotter = abilab.PhononDosPlotter() plotter.add_phdos("AlAs", phdos_paths[0]) plotter.add_phdos("Same AlAs", phdos_paths[0]) .. GENERATED FROM PYTHON SOURCE LINES 29-30 To visualize the results on a grid with matplotlib, use: .. GENERATED FROM PYTHON SOURCE LINES 30-32 .. code-block:: Python plotter.gridplot(units="cm-1", tight_layout=True, title="Phonon DOS in cm-1 on grid") .. image-sg:: /gallery/images/sphx_glr_plot_phdos_grid_001.png :alt: Phonon DOS in cm-1 on grid, AlAs, Same AlAs :srcset: /gallery/images/sphx_glr_plot_phdos_grid_001.png :class: sphx-glr-single-img .. GENERATED FROM PYTHON SOURCE LINES 33-34 For the plotly version: .. GENERATED FROM PYTHON SOURCE LINES 34-35 .. code-block:: Python plotter.gridplotly(units="cm-1", title="Phonon DOS in cm-1 on grid") .. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 0.187 seconds) .. _sphx_glr_download_gallery_plot_phdos_grid.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_phdos_grid.ipynb <plot_phdos_grid.ipynb>` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_phdos_grid.py <plot_phdos_grid.py>` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: plot_phdos_grid.zip <plot_phdos_grid.zip>` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery <https://sphinx-gallery.github.io>`_