Dispersion script mode - imports

At the very start of the script are two import statements. This is simply the standard Python import system for modules. The first will import the sep variable which is the operating system independent directory separator:

[firstnumber=4]
# Python module imports.
from os import sep

This sep variable will be used later on in the script. The second import is that of the automated relaxation dispersion class Relax_disp which will be used at the very end of the script to perform the full analysis:

[firstnumber=7]
# relax module imports.
from auto_analyses.relax_disp import Relax_disp



The relax user manual (PDF), created 2020-08-26.