.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "gallery/plot_gscycle.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note Click :ref:`here ` to download the full example code or to run this example in your browser via Binder .. rst-class:: sphx-glr-example-title .. _sphx_glr_gallery_plot_gscycle.py: Ground-state SCF cycle ====================== This example shows how to plot the results of the GS self-consistent cycle reported in the main output file. .. GENERATED FROM PYTHON SOURCE LINES 9-28 .. image:: /gallery/images/sphx_glr_plot_gscycle_001.png :alt: file=/Users/gmatteo/git_repos/abipy/abipy/data/refs/si_ebands/run.abo, wall_time=4.0, mpi_nprocs=1, omp_nthreads=1 :class: sphx-glr-single-img .. code-block:: default from abipy.abilab import abiopen import abipy.data as abidata # Open the output file with GS calculation (Note the .abo extension). # Alternatively, one can use `abiopen.py run.abo -nb` # to generate a jupyter notebook. abo = abiopen(abidata.ref_file("refs/si_ebands/run.abo")) # Plot all SCF-GS sections found in the output file. # Use abo.next_d2de_scf_cycle() for DFPT cycles. scf_cycle = abo.next_gs_scf_cycle() if scf_cycle is not None: scf_cycle.plot() # If timopt -1, we can extract the timing and plot the data. timer = abo.get_timer() timer.plot_pie() abo.close() .. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 0.154 seconds) .. _sphx_glr_download_gallery_plot_gscycle.py: .. only :: html .. container:: sphx-glr-footer :class: sphx-glr-footer-example .. container:: binder-badge .. image:: images/binder_badge_logo.svg :target: https://mybinder.org/v2/gh/abinit/abipy/gh-pages?filepath=notebooks/gallery/plot_gscycle.ipynb :alt: Launch binder :width: 150 px .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_gscycle.py ` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_gscycle.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_