diff --git a/_sources/written/install.rst.txt b/_sources/written/install.rst.txt index c25e9249..5ad00337 100644 --- a/_sources/written/install.rst.txt +++ b/_sources/written/install.rst.txt @@ -4,11 +4,11 @@ Installation Quick start ----------- -Debian and derivatives: Fortran compiler, Python headers, lapack +Fortran compiler, Python headers, lapack, meson on Debian/Ubuntu: .. code-block:: sh - $ sudo apt install python3-dev gfortran liblapack-dev + $ sudo apt install python3-dev gfortran liblapack-dev meson Then @@ -120,15 +120,6 @@ might use ``ase``) won't fail at import time, but later at runtime when e.g. ``crys.Structure.get_ase_atoms()`` is called. What packages are optional might change depending on usage. -You also need the following to compile extensions. On a Debian-ish system - -.. code-block:: sh - - # apt - python3-dev # for compiling extensions - gfortran # or ifort, see src/Makefile - liblapack-dev - Also note that you can get most Python packages via your system's package manager. Debian and derivatives: @@ -173,22 +164,13 @@ Running tests See test/README. Actually, all of these are good examples, too! -Python versions ---------------- - -Only Python3 is supported, tested: Python 3.6-3.11 - -The package was developed mostly with Python 2.5-2.7 and ported using 2to3 + -manual changes. Therefore, you might find some crufty Python 2 style code -fragments in lesser used parts of the code base. - .. _extensions: Fortran extensions and OpenMP notes ----------------------------------- -Use ``src/Makefile``: +Use ``src/_ext_src/Makefile``: .. code-block:: sh @@ -200,25 +182,44 @@ Use ``src/Makefile``: make ifort-omp # ifort + OpenMP make ifort-mkl # ifort, Intel MKL lapack, set MKL_LIB -Generates ``*.so`` and ``*.pyf`` (f2py interface) files. +Generates ``*.so`` files + +.. code-block:: sh + + src/_ext_src/_dcd.so # will be copied to src/pwtools/_dcd.so + src/_ext_src/_flib.so # will be copied to src/pwtools/_flib.so + +You need the following to compile extensions. On Debian/Ubuntu -You need: +.. code-block:: sh + + # apt + python3-numpy # for f2py + python3-dev # Python headers + gfortran # or ifort, see src/_ext_src/Makefile + liblapack-dev # see below + meson # f2py build backend as of Python 3.12, will also install ninja -* numpy for f2py -* a Fortran compiler -* Python headers (Debian/Ubuntu: python-dev) -* Lapack (Debian: liblapack-dev) +``liblapack-dev`` is only one option, maybe the slowest. On Debian/Ubuntu, +there are other options, i.e. anything that provides a ``liblapack.so`` works. -The module is compiled with f2py (currently part of numpy, tested with numpy -1.1.0 .. 1.21.x). +.. code-block:: sh + + $ apt-file search -x 'liblapack.so$' + libatlas-base-dev: /usr/lib/x86_64-linux-gnu/atlas/liblapack.so + liblapack-dev: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so + libmkl-dev: /usr/lib/x86_64-linux-gnu/mkl/liblapack.so + libopenblas-openmp-dev: /usr/lib/x86_64-linux-gnu/openblas-openmp/liblapack.so + libopenblas-pthread-dev: /usr/lib/x86_64-linux-gnu/openblas-pthread/liblapack.so + libopenblas-serial-dev: /usr/lib/x86_64-linux-gnu/openblas-serial/liblapack.so The default ``make`` target is "gfortran" which tries to build a serial version -using system BLAS and LAPACK (e.g. from ``liblapack-dev``). If you want another +using system LAPACK (e.g. from ``liblapack-dev``). If you want another target (e.g. ``ifort-mkl``), then .. code-block:: sh - $ cd src + $ cd src/_ext_src $ make clean $ make ifort-mkl @@ -229,10 +230,10 @@ or when using ``pip`` (or anything calling ``setup.py``) set $ PWTOOLS_EXT_MAKE_TARGET=ifort-mkl pip install ... -This will use the Intel ``ifort`` compiler instead fo the default ``gfortran`` and +This will use the Intel ``ifort`` compiler instead of the default ``gfortran`` and link against the MKL. -In the MKL case, the Makefile uses the env var ``$MKL_LIB`` which sould point +In the MKL case, the Makefile uses the env var ``$MKL_LIB`` which should point to the location where things like ``libmkl_core.so`` live. You may need to set this. On a HPC cluster, that could look like this. @@ -242,28 +243,8 @@ this. On a HPC cluster, that could look like this. $ module load intel/20.4 $ MKL_LIB=$MKL_ROOT/lib/intel64 PWTOOLS_EXT_MAKE_TARGET=ifort-mkl pip install ... -See ``src/Makefile`` for more details. - -Compiler / f2py -^^^^^^^^^^^^^^^ -Instead of letting numpy.distutils pick a compiler + special flags, which is -not trivial and therefore almost never works, it is much easier to simply -define the compiler to use + architecture-specific flags. See F90 and ARCH in -the Makefile. +See ``src/_ext_src/Makefile`` for more details. -Also, numpy.distutils has default -03 for fcompiler. ``--f90flags="-02"`` does NOT -override this. We get ``-O3 -O2`` and a compiler warning. We have to use f2py's -``--opt=`` flag. - -On some systems (Debian), you may have: - -.. code-block:: sh - - /usr/bin/f2py -> f2py2.6 - /usr/bin/f2py2.5 - /usr/bin/f2py2.6 - -and such. But usually ``F2PY=f2py`` is fine. OpenMP ^^^^^^ @@ -289,13 +270,8 @@ Setting the number of threads: If this env var is NOT set, then OpenMP uses all available cores (e.g. 4 on a quad-core box). -IMPORTANT: - Note that we may have found a f2py bug (see test/test_f2py_flib_openmp.py) - re. OMP_NUM_THREADS. We have a workaround for that in pydos.fvacf(). - -There is also an optional arg 'nthreads' to _flib.vacf(). If this is -supplied, then it will override OMP_NUM_THREADS. Currently, this is the -safest way to set the number of threads. +There is also an optional arg 'nthreads' to ``_flib.vacf()``. If this is +supplied, then it will override ``OMP_NUM_THREADS``. Tests ^^^^^ diff --git a/index.html b/index.html index 7dcb675b..50e37254 100644 --- a/index.html +++ b/index.html @@ -108,7 +108,6 @@

Welcome to the pwtools documentationDetailed instructions
  • Dependencies
  • Running tests
  • -
  • Python versions
  • Fortran extensions and OpenMP notes
  • diff --git a/searchindex.js b/searchindex.js index fb7ec258..f6c0c851 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"1d": [[1431, "d"]], "2d": [[1431, "id1"]], "API Reference": [[35, null]], "Analysis of runs with pwtools": [[1426, "analysis-of-runs-with-pwtools"]], "Atomic coordinates": [[1424, "atomic-coordinates"]], "Atomic mass unit": [[10, "atomic-mass-unit"]], "Atomic units and constants": [[10, "atomic-units-and-constants"]], "Available parsers": [[1422, "available-parsers"]], "Avoid auto-calculation for big MD data": [[1433, "avoid-auto-calculation-for-big-md-data"]], "Background, details, special topics": [[1420, null]], "Binary IO": [[1433, "binary-io"]], "Calculation of the phonon DOS from MD data": [[1423, "calculation-of-the-phonon-dos-from-md-data"]], "Compiler / f2py": [[1430, "compiler-f2py"]], "Container classes Structure and Trajectory": [[1422, "container-classes-structure-and-trajectory"]], "Coordinate transformation": [[1419, null]], "Correlation and power spectrum": [[1423, "correlation-and-power-spectrum"]], "Data scaling": [[1425, "data-scaling"]], "Dependencies": [[1430, "dependencies"]], "Detailed instructions": [[1430, "detailed-instructions"]], "Features": [[1428, null]], "Find Monkhorst-Pack k-grid sampling for a given unit cell": [[1433, "find-monkhorst-pack-k-grid-sampling-for-a-given-unit-cell"]], "Find spacegroup": [[1433, "find-spacegroup"]], "Fortran extensions and OpenMP notes": [[1430, "fortran-extensions-and-openmp-notes"]], "Hartree units": [[10, "hartree-units"]], "High-level parsing functions": [[1422, "high-level-parsing-functions"]], "How to determine p and r": [[1425, "how-to-determine-p-and-r"]], "How to do a restart in cp2k": [[1426, null]], "Implementation": [[1419, "implementation"]], "Installation": [[1430, null]], "Interfaces for molecular viewers": [[34, "interfaces-for-molecular-viewers"]], "Interpolation and fitting": [[1433, "interpolation-and-fitting"]], "Interpolation vs. regression, regularization and numerical stability": [[1425, "interpolation-vs-regression-regularization-and-numerical-stability"]], "More": [[1433, "more"]], "Notation": [[1419, "notation"]], "Notes for the special case fractional <-> cartesian": [[1419, "notes-for-the-special-case-fractional-cartesian"]], "OpenMP": [[1430, "openmp"]], "Optional dependencies": [[1430, "optional-dependencies"]], "Other implementations": [[1425, "other-implementations"]], "Other tools": [[1431, "other-tools"]], "Padding and smoothing": [[1423, "padding-and-smoothing"]], "Parameter studies": [[1421, null]], "Parse SCF, relax or MD output": [[1433, "parse-scf-relax-or-md-output"]], "Parser classes for different file formats. Input- and output files.": [[21, "parser-classes-for-different-file-formats-input-and-output-files"]], "Parsing code output and using containers": [[1422, null]], "Phonon dispersion calculation and plotting": [[1427, null]], "Pwscf": [[1424, null]], "Python versions": [[1430, "python-versions"]], "Quasi-harmonic approximation": [[1431, null], [1433, "quasi-harmonic-approximation"]], "Quick start": [[1430, "quick-start"]], "RBF parameter p": [[1425, "rbf-parameter-p"]], "Radial Basis Function interpolation an regression": [[1425, null]], "Relation to ASE": [[1418, null]], "Restart": [[1426, "restart"]], "Row vs. column form": [[1419, "row-vs-column-form"]], "Running tests": [[1430, "running-tests"]], "Rydberg units": [[10, "rydberg-units"]], "Smoothing a signal or a Trajectory": [[1433, "smoothing-a-signal-or-a-trajectory"]], "Some comments": [[1426, "some-comments"]], "Tests": [[1430, "tests"]], "The periodic table": [[3, "the-periodic-table"]], "Theory": [[1419, "theory"], [1425, "theory"]], "Total force on atoms": [[1424, "total-force-on-atoms"]], "Tutorial": [[1433, null]], "Units": [[1422, "units"], [1424, "units"]], "Useful conversions": [[10, "useful-conversions"]], "Using ASE?": [[1433, "using-ase"]], "Using Parsing classes": [[21, "using-parsing-classes"]], "VMD": [[34, "vmd"]], "Velocity autocorrelation function and phonon DOS": [[1423, null]], "View a structure or trajectory": [[1433, "view-a-structure-or-trajectory"]], "Welcome to the pwtools documentation": [[1417, null]], "Work with SQLite databases": [[1433, "work-with-sqlite-databases"]], "_dcd": [[0, null]], "_flib": [[1, null]], "arrayio": [[2, null]], "atomic_data": [[3, null]], "base": [[4, null]], "batch": [[5, null]], "calculators": [[6, null]], "comb": [[7, null]], "common": [[8, null]], "config": [[9, null]], "constants": [[10, null]], "crys": [[11, null]], "dcd": [[12, null]], "decorators": [[13, null]], "eos": [[14, null]], "io": [[15, null]], "kpath": [[16, null]], "lammps": [[17, null]], "mpl": [[18, null]], "mttk": [[19, null]], "num": [[20, null]], "parse": [[21, null]], "pwscf": [[22, null]], "pwtools._dcd.get_dcd_file_info": [[36, null]], "pwtools._dcd.open_file": [[37, null]], "pwtools._dcd.read_dcd_data": [[38, null]], "pwtools._dcd.read_dcd_data_from_unit": [[39, null]], "pwtools._dcd.read_dcd_header_from_unit": [[40, null]], "pwtools._flib.acorr": [[41, null]], "pwtools._flib.angles": [[42, null]], "pwtools._flib.cart2frac": [[43, null]], "pwtools._flib.cart2frac_traj": [[44, null]], "pwtools._flib.distances_traj": [[45, null]], "pwtools._flib.distsq": [[46, null]], "pwtools._flib.distsq_frac": [[47, null]], "pwtools._flib.frac2cart": [[48, null]], "pwtools._flib.frac2cart_traj": [[49, null]], "pwtools._flib.solve": [[50, null]], "pwtools._flib.vacf": [[51, null]], "pwtools._flib.vect_loops": [[52, null]], "pwtools.arrayio.HEADER_COMMENT": [[53, null]], "pwtools.arrayio.HEADER_MAXLINES": [[54, null]], "pwtools.arrayio.TXT_MAXDIM": [[55, null]], "pwtools.arrayio._read_header_config": [[56, null]], "pwtools.arrayio._write_header_config": [[57, null]], "pwtools.arrayio.arr2d_to_3d": [[58, null]], "pwtools.arrayio.readtxt": [[59, null]], "pwtools.arrayio.writetxt": [[60, null]], "pwtools.atomic_data.covalent_radii": [[61, null]], "pwtools.atomic_data.masses": [[62, null]], "pwtools.atomic_data.missing": [[63, null]], "pwtools.atomic_data.numbers": [[64, null]], "pwtools.atomic_data.pt": [[65, null]], "pwtools.atomic_data.symbols": [[66, null]], "pwtools.base.FlexibleGetters": [[67, null]], "pwtools.base.FlexibleGetters.assert_attr": [[68, null]], "pwtools.base.FlexibleGetters.assert_attr_lst": [[69, null]], "pwtools.base.FlexibleGetters.assert_set_attr": [[70, null]], "pwtools.base.FlexibleGetters.assert_set_attr_lst": [[71, null]], "pwtools.base.FlexibleGetters.check_set_attr": [[72, null]], "pwtools.base.FlexibleGetters.check_set_attr_lst": [[73, null]], "pwtools.base.FlexibleGetters.dump": [[74, null]], "pwtools.base.FlexibleGetters.get_return_attr": [[75, null]], "pwtools.base.FlexibleGetters.init_attr_lst": [[76, null]], "pwtools.base.FlexibleGetters.is_set_attr": [[77, null]], "pwtools.base.FlexibleGetters.is_set_attr_lst": [[78, null]], "pwtools.base.FlexibleGetters.load": [[79, null]], "pwtools.base.FlexibleGetters.raw_return": [[80, null]], "pwtools.base.FlexibleGetters.raw_slice_get": [[81, null]], "pwtools.base.FlexibleGetters.set_all": [[82, null]], "pwtools.base.FlexibleGetters.set_attr_lst": [[83, null]], "pwtools.base.FlexibleGetters.try_set_attr": [[84, null]], "pwtools.base.FlexibleGetters.try_set_attr_lst": [[85, null]], "pwtools.batch.Calculation": [[86, null]], "pwtools.batch.Calculation.get_sql_record": [[87, null]], "pwtools.batch.Calculation.write_input": [[88, null]], "pwtools.batch.Case": [[89, null]], "pwtools.batch.FileTemplate": [[90, null]], "pwtools.batch.FileTemplate.write": [[91, null]], "pwtools.batch.FileTemplate.writesql": [[92, null]], "pwtools.batch.Machine": [[93, null]], "pwtools.batch.Machine.get_jobfile_basename": [[94, null]], "pwtools.batch.Machine.get_sql_record": [[95, null]], "pwtools.batch.ParameterStudy": [[96, null]], "pwtools.batch.ParameterStudy.write_input": [[97, null]], "pwtools.batch.conv_table": [[98, null]], "pwtools.batch.default_repl_keys": [[99, null]], "pwtools.calculators.CalculatorBase": [[100, null]], "pwtools.calculators.CalculatorBase.fill_infile_templ": [[101, null]], "pwtools.calculators.CalculatorBase.init_params_from_input": [[102, null]], "pwtools.calculators.FileIOCalculator": [[103, null]], "pwtools.calculators.Lammps": [[104, null]], "pwtools.calculators.Lammps.default_parameters": [[105, null]], "pwtools.calculators.Lammps.fill_infile_templ": [[106, null]], "pwtools.calculators.Lammps.implemented_properties": [[107, null]], "pwtools.calculators.Lammps.infile_templ": [[108, null]], "pwtools.calculators.Lammps.init_params_from_input": [[109, null]], "pwtools.calculators.Lammps.read_results": [[110, null]], "pwtools.calculators.Lammps.write_input": [[111, null]], "pwtools.calculators.Pwscf": [[112, null]], "pwtools.calculators.Pwscf.default_parameters": [[113, null]], "pwtools.calculators.Pwscf.fill_infile_templ": [[114, null]], "pwtools.calculators.Pwscf.implemented_properties": [[115, null]], "pwtools.calculators.Pwscf.infile_templ": [[116, null]], "pwtools.calculators.Pwscf.init_params_from_input": [[117, null]], "pwtools.calculators.Pwscf.read_results": [[118, null]], "pwtools.calculators.Pwscf.write_input": [[119, null]], "pwtools.calculators._ase_missing": [[120, null]], "pwtools.calculators.find_exe": [[121, null]], "pwtools.calculators.kpts2mp": [[122, null]], "pwtools.calculators.stress_pwtools2ase": [[123, null]], "pwtools.comb._ensure_list": [[124, null]], "pwtools.comb.nested_loops": [[125, null]], "pwtools.comb.unique2d": [[126, null]], "pwtools.common.EPS": [[127, null]], "pwtools.common.add_to_config": [[128, null]], "pwtools.common.asseq": [[129, null]], "pwtools.common.assert_cond": [[130, null]], "pwtools.common.backtick": [[131, null]], "pwtools.common.backup": [[132, null]], "pwtools.common.cpickle_load": [[133, null]], "pwtools.common.dict2class": [[134, null]], "pwtools.common.dict2str": [[135, null]], "pwtools.common.ffloat": [[136, null]], "pwtools.common.file_read": [[137, null]], "pwtools.common.file_readlines": [[138, null]], "pwtools.common.file_template_replace": [[139, null]], "pwtools.common.file_write": [[140, null]], "pwtools.common.fix_eps": [[141, null]], "pwtools.common.flatten": [[142, null]], "pwtools.common.fpj": [[143, null]], "pwtools.common.frepr": [[144, null]], "pwtools.common.fullpath": [[145, null]], "pwtools.common.fullpathjoin": [[146, null]], "pwtools.common.get_filename": [[147, null]], "pwtools.common.iflatten": [[148, null]], "pwtools.common.is_seq": [[149, null]], "pwtools.common.makedirs": [[150, null]], "pwtools.common.permit_sigpipe": [[151, null]], "pwtools.common.pop_from_list": [[152, null]], "pwtools.common.print_dct": [[153, null]], "pwtools.common.seq2str": [[154, null]], "pwtools.common.str2seq": [[155, null]], "pwtools.common.str2tup": [[156, null]], "pwtools.common.str_arr": [[157, null]], "pwtools.common.system": [[158, null]], "pwtools.common.template_replace": [[159, null]], "pwtools.common.tobool": [[160, null]], "pwtools.common.toslice": [[161, null]], "pwtools.common.tup2str": [[162, null]], "pwtools.config.name": [[163, null]], "pwtools.config.use_jax": [[164, null]], "pwtools.constants.Ang": [[165, null]], "pwtools.constants.Angstrom": [[166, null]], "pwtools.constants.Bohr": [[167, null]], "pwtools.constants.Bohr_to_Ang": [[168, null]], "pwtools.constants.Eh": [[169, null]], "pwtools.constants.Eryd": [[170, null]], "pwtools.constants.GPa": [[171, null]], "pwtools.constants.Ha": [[172, null]], "pwtools.constants.Ha_to_eV": [[173, null]], "pwtools.constants.Hartree": [[174, null]], "pwtools.constants.J_to_eV": [[175, null]], "pwtools.constants.J_to_rcm": [[176, null]], "pwtools.constants.R": [[177, null]], "pwtools.constants.Ry": [[178, null]], "pwtools.constants.Ry_to_Ha": [[179, null]], "pwtools.constants.Ry_to_Hz": [[180, null]], "pwtools.constants.Ry_to_J": [[181, null]], "pwtools.constants.Ry_to_eV": [[182, null]], "pwtools.constants.Ry_to_rcm": [[183, null]], "pwtools.constants.Rydberg": [[184, null]], "pwtools.constants.a0": [[185, null]], "pwtools.constants.a0_to_A": [[186, null]], "pwtools.constants.alpha": [[187, null]], "pwtools.constants.amu": [[188, null]], "pwtools.constants.avo": [[189, null]], "pwtools.constants.c0": [[190, null]], "pwtools.constants.dyn": [[191, null]], "pwtools.constants.e0": [[192, null]], "pwtools.constants.eV": [[193, null]], "pwtools.constants.eV_by_Ang3_to_GPa": [[194, null]], "pwtools.constants.eV_by_Ang3_to_Pa": [[195, null]], "pwtools.constants.eps0": [[196, null]], "pwtools.constants.fs": [[197, null]], "pwtools.constants.h": [[198, null]], "pwtools.constants.hbar": [[199, null]], "pwtools.constants.hplanck": [[200, null]], "pwtools.constants.kb": [[201, null]], "pwtools.constants.m0": [[202, null]], "pwtools.constants.mu0": [[203, null]], "pwtools.constants.pi": [[204, null]], "pwtools.constants.ps": [[205, null]], "pwtools.constants.rcm_to_Hz": [[206, null]], "pwtools.constants.th": [[207, null]], "pwtools.constants.thart": [[208, null]], "pwtools.constants.tryd": [[209, null]], "pwtools.crys.Angstrom": [[210, null]], "pwtools.crys.FakeASEAtoms": [[211, null]], "pwtools.crys.FakeASEAtoms.apply_units": [[212, null]], "pwtools.crys.FakeASEAtoms.assert_attr": [[213, null]], "pwtools.crys.FakeASEAtoms.assert_attr_lst": [[214, null]], "pwtools.crys.FakeASEAtoms.assert_set_attr": [[215, null]], "pwtools.crys.FakeASEAtoms.assert_set_attr_lst": [[216, null]], "pwtools.crys.FakeASEAtoms.check_set_attr": [[217, null]], "pwtools.crys.FakeASEAtoms.check_set_attr_lst": [[218, null]], "pwtools.crys.FakeASEAtoms.compress": [[219, null]], "pwtools.crys.FakeASEAtoms.copy": [[220, null]], "pwtools.crys.FakeASEAtoms.dump": [[221, null]], "pwtools.crys.FakeASEAtoms.get_ase_atoms": [[222, null]], "pwtools.crys.FakeASEAtoms.get_atomic_numbers": [[223, null]], "pwtools.crys.FakeASEAtoms.get_cell": [[224, null]], "pwtools.crys.FakeASEAtoms.get_coords": [[225, null]], "pwtools.crys.FakeASEAtoms.get_coords_frac": [[226, null]], "pwtools.crys.FakeASEAtoms.get_cryst_const": [[227, null]], "pwtools.crys.FakeASEAtoms.get_ekin": [[228, null]], "pwtools.crys.FakeASEAtoms.get_etot": [[229, null]], "pwtools.crys.FakeASEAtoms.get_fake_ase_atoms": [[230, null]], "pwtools.crys.FakeASEAtoms.get_forces": [[231, null]], "pwtools.crys.FakeASEAtoms.get_magnetic_moments": [[232, null]], "pwtools.crys.FakeASEAtoms.get_mass": [[233, null]], "pwtools.crys.FakeASEAtoms.get_mass_unique": [[234, null]], "pwtools.crys.FakeASEAtoms.get_natoms": [[235, null]], "pwtools.crys.FakeASEAtoms.get_nspecies": [[236, null]], "pwtools.crys.FakeASEAtoms.get_nstep": [[237, null]], "pwtools.crys.FakeASEAtoms.get_ntypat": [[238, null]], "pwtools.crys.FakeASEAtoms.get_order": [[239, null]], "pwtools.crys.FakeASEAtoms.get_pressure": [[240, null]], "pwtools.crys.FakeASEAtoms.get_return_attr": [[241, null]], "pwtools.crys.FakeASEAtoms.get_spglib": [[242, null]], "pwtools.crys.FakeASEAtoms.get_stress": [[243, null]], "pwtools.crys.FakeASEAtoms.get_symbols": [[244, null]], "pwtools.crys.FakeASEAtoms.get_symbols_unique": [[245, null]], "pwtools.crys.FakeASEAtoms.get_temperature": [[246, null]], "pwtools.crys.FakeASEAtoms.get_time": [[247, null]], "pwtools.crys.FakeASEAtoms.get_timestep": [[248, null]], "pwtools.crys.FakeASEAtoms.get_traj": [[249, null]], "pwtools.crys.FakeASEAtoms.get_typat": [[250, null]], "pwtools.crys.FakeASEAtoms.get_velocity": [[251, null]], "pwtools.crys.FakeASEAtoms.get_volume": [[252, null]], "pwtools.crys.FakeASEAtoms.get_znucl": [[253, null]], "pwtools.crys.FakeASEAtoms.get_znucl_unique": [[254, null]], "pwtools.crys.FakeASEAtoms.init_attr_lst": [[255, null]], "pwtools.crys.FakeASEAtoms.is_set_attr": [[256, null]], "pwtools.crys.FakeASEAtoms.is_set_attr_lst": [[257, null]], "pwtools.crys.FakeASEAtoms.is_struct": [[258, null]], "pwtools.crys.FakeASEAtoms.is_traj": [[259, null]], "pwtools.crys.FakeASEAtoms.load": [[260, null]], "pwtools.crys.FakeASEAtoms.raw_return": [[261, null]], "pwtools.crys.FakeASEAtoms.raw_slice_get": [[262, null]], "pwtools.crys.FakeASEAtoms.set_all": [[263, null]], "pwtools.crys.FakeASEAtoms.set_attr_lst": [[264, null]], "pwtools.crys.FakeASEAtoms.timeaxis": [[265, null]], "pwtools.crys.FakeASEAtoms.try_set_attr": [[266, null]], "pwtools.crys.FakeASEAtoms.try_set_attr_lst": [[267, null]], "pwtools.crys.FakeASEAtoms.update_units": [[268, null]], "pwtools.crys.Structure": [[269, null]], "pwtools.crys.Structure.apply_units": [[270, null]], "pwtools.crys.Structure.assert_attr": [[271, null]], "pwtools.crys.Structure.assert_attr_lst": [[272, null]], "pwtools.crys.Structure.assert_set_attr": [[273, null]], "pwtools.crys.Structure.assert_set_attr_lst": [[274, null]], "pwtools.crys.Structure.check_set_attr": [[275, null]], "pwtools.crys.Structure.check_set_attr_lst": [[276, null]], "pwtools.crys.Structure.compress": [[277, null]], "pwtools.crys.Structure.copy": [[278, null]], "pwtools.crys.Structure.dump": [[279, null]], "pwtools.crys.Structure.get_ase_atoms": [[280, null]], "pwtools.crys.Structure.get_cell": [[281, null]], "pwtools.crys.Structure.get_coords": [[282, null]], "pwtools.crys.Structure.get_coords_frac": [[283, null]], "pwtools.crys.Structure.get_cryst_const": [[284, null]], "pwtools.crys.Structure.get_ekin": [[285, null]], "pwtools.crys.Structure.get_etot": [[286, null]], "pwtools.crys.Structure.get_fake_ase_atoms": [[287, null]], "pwtools.crys.Structure.get_forces": [[288, null]], "pwtools.crys.Structure.get_mass": [[289, null]], "pwtools.crys.Structure.get_mass_unique": [[290, null]], "pwtools.crys.Structure.get_natoms": [[291, null]], "pwtools.crys.Structure.get_nspecies": [[292, null]], "pwtools.crys.Structure.get_nstep": [[293, null]], "pwtools.crys.Structure.get_ntypat": [[294, null]], "pwtools.crys.Structure.get_order": [[295, null]], "pwtools.crys.Structure.get_pressure": [[296, null]], "pwtools.crys.Structure.get_return_attr": [[297, null]], "pwtools.crys.Structure.get_spglib": [[298, null]], "pwtools.crys.Structure.get_stress": [[299, null]], "pwtools.crys.Structure.get_symbols": [[300, null]], "pwtools.crys.Structure.get_symbols_unique": [[301, null]], "pwtools.crys.Structure.get_temperature": [[302, null]], "pwtools.crys.Structure.get_time": [[303, null]], "pwtools.crys.Structure.get_timestep": [[304, null]], "pwtools.crys.Structure.get_traj": [[305, null]], "pwtools.crys.Structure.get_typat": [[306, null]], "pwtools.crys.Structure.get_velocity": [[307, null]], "pwtools.crys.Structure.get_volume": [[308, null]], "pwtools.crys.Structure.get_znucl": [[309, null]], "pwtools.crys.Structure.get_znucl_unique": [[310, null]], "pwtools.crys.Structure.init_attr_lst": [[311, null]], "pwtools.crys.Structure.is_set_attr": [[312, null]], "pwtools.crys.Structure.is_set_attr_lst": [[313, null]], "pwtools.crys.Structure.is_struct": [[314, null]], "pwtools.crys.Structure.is_traj": [[315, null]], "pwtools.crys.Structure.load": [[316, null]], "pwtools.crys.Structure.raw_return": [[317, null]], "pwtools.crys.Structure.raw_slice_get": [[318, null]], "pwtools.crys.Structure.set_all": [[319, null]], "pwtools.crys.Structure.set_attr_lst": [[320, null]], "pwtools.crys.Structure.timeaxis": [[321, null]], "pwtools.crys.Structure.try_set_attr": [[322, null]], "pwtools.crys.Structure.try_set_attr_lst": [[323, null]], "pwtools.crys.Structure.update_units": [[324, null]], "pwtools.crys.Trajectory": [[325, null]], "pwtools.crys.Trajectory.__getitem__": [[326, null]], "pwtools.crys.Trajectory.apply_units": [[327, null]], "pwtools.crys.Trajectory.assert_attr": [[328, null]], "pwtools.crys.Trajectory.assert_attr_lst": [[329, null]], "pwtools.crys.Trajectory.assert_set_attr": [[330, null]], "pwtools.crys.Trajectory.assert_set_attr_lst": [[331, null]], "pwtools.crys.Trajectory.check_set_attr": [[332, null]], "pwtools.crys.Trajectory.check_set_attr_lst": [[333, null]], "pwtools.crys.Trajectory.compress": [[334, null]], "pwtools.crys.Trajectory.copy": [[335, null]], "pwtools.crys.Trajectory.dump": [[336, null]], "pwtools.crys.Trajectory.get_ase_atoms": [[337, null]], "pwtools.crys.Trajectory.get_cell": [[338, null]], "pwtools.crys.Trajectory.get_coords": [[339, null]], "pwtools.crys.Trajectory.get_coords_frac": [[340, null]], "pwtools.crys.Trajectory.get_cryst_const": [[341, null]], "pwtools.crys.Trajectory.get_ekin": [[342, null]], "pwtools.crys.Trajectory.get_etot": [[343, null]], "pwtools.crys.Trajectory.get_fake_ase_atoms": [[344, null]], "pwtools.crys.Trajectory.get_forces": [[345, null]], "pwtools.crys.Trajectory.get_mass": [[346, null]], "pwtools.crys.Trajectory.get_mass_unique": [[347, null]], "pwtools.crys.Trajectory.get_natoms": [[348, null]], "pwtools.crys.Trajectory.get_nspecies": [[349, null]], "pwtools.crys.Trajectory.get_nstep": [[350, null]], "pwtools.crys.Trajectory.get_ntypat": [[351, null]], "pwtools.crys.Trajectory.get_order": [[352, null]], "pwtools.crys.Trajectory.get_pressure": [[353, null]], "pwtools.crys.Trajectory.get_return_attr": [[354, null]], "pwtools.crys.Trajectory.get_spglib": [[355, null]], "pwtools.crys.Trajectory.get_stress": [[356, null]], "pwtools.crys.Trajectory.get_symbols": [[357, null]], "pwtools.crys.Trajectory.get_symbols_unique": [[358, null]], "pwtools.crys.Trajectory.get_temperature": [[359, null]], "pwtools.crys.Trajectory.get_time": [[360, null]], "pwtools.crys.Trajectory.get_timestep": [[361, null]], "pwtools.crys.Trajectory.get_traj": [[362, null]], "pwtools.crys.Trajectory.get_typat": [[363, null]], "pwtools.crys.Trajectory.get_velocity": [[364, null]], "pwtools.crys.Trajectory.get_volume": [[365, null]], "pwtools.crys.Trajectory.get_znucl": [[366, null]], "pwtools.crys.Trajectory.get_znucl_unique": [[367, null]], "pwtools.crys.Trajectory.init_attr_lst": [[368, null]], "pwtools.crys.Trajectory.is_set_attr": [[369, null]], "pwtools.crys.Trajectory.is_set_attr_lst": [[370, null]], "pwtools.crys.Trajectory.is_struct": [[371, null]], "pwtools.crys.Trajectory.is_traj": [[372, null]], "pwtools.crys.Trajectory.load": [[373, null]], "pwtools.crys.Trajectory.raw_return": [[374, null]], "pwtools.crys.Trajectory.raw_slice_get": [[375, null]], "pwtools.crys.Trajectory.set_all": [[376, null]], "pwtools.crys.Trajectory.set_attr_lst": [[377, null]], "pwtools.crys.Trajectory.timeaxis": [[378, null]], "pwtools.crys.Trajectory.try_set_attr": [[379, null]], "pwtools.crys.Trajectory.try_set_attr_lst": [[380, null]], "pwtools.crys.Trajectory.update_units": [[381, null]], "pwtools.crys.UnitsHandler": [[382, null]], "pwtools.crys.UnitsHandler.apply_units": [[383, null]], "pwtools.crys.UnitsHandler.assert_attr": [[384, null]], "pwtools.crys.UnitsHandler.assert_attr_lst": [[385, null]], "pwtools.crys.UnitsHandler.assert_set_attr": [[386, null]], "pwtools.crys.UnitsHandler.assert_set_attr_lst": [[387, null]], "pwtools.crys.UnitsHandler.check_set_attr": [[388, null]], "pwtools.crys.UnitsHandler.check_set_attr_lst": [[389, null]], "pwtools.crys.UnitsHandler.dump": [[390, null]], "pwtools.crys.UnitsHandler.get_return_attr": [[391, null]], "pwtools.crys.UnitsHandler.init_attr_lst": [[392, null]], "pwtools.crys.UnitsHandler.is_set_attr": [[393, null]], "pwtools.crys.UnitsHandler.is_set_attr_lst": [[394, null]], "pwtools.crys.UnitsHandler.load": [[395, null]], "pwtools.crys.UnitsHandler.raw_return": [[396, null]], "pwtools.crys.UnitsHandler.raw_slice_get": [[397, null]], "pwtools.crys.UnitsHandler.set_all": [[398, null]], "pwtools.crys.UnitsHandler.set_attr_lst": [[399, null]], "pwtools.crys.UnitsHandler.try_set_attr": [[400, null]], "pwtools.crys.UnitsHandler.try_set_attr_lst": [[401, null]], "pwtools.crys.UnitsHandler.update_units": [[402, null]], "pwtools.crys._trans": [[403, null]], "pwtools.crys.align_cart": [[404, null]], "pwtools.crys.angle": [[405, null]], "pwtools.crys.angles": [[406, null]], "pwtools.crys.atoms2struct": [[407, null]], "pwtools.crys.call_vmd_measure_gofr": [[408, null]], "pwtools.crys.cc2cell": [[409, null]], "pwtools.crys.cc2cell3d": [[410, null]], "pwtools.crys.cc2celldm": [[411, null]], "pwtools.crys.cell2cc": [[412, null]], "pwtools.crys.cell2cc3d": [[413, null]], "pwtools.crys.celldm2cc": [[414, null]], "pwtools.crys.center_on_atom": [[415, null]], "pwtools.crys.compress": [[416, null]], "pwtools.crys.concatenate": [[417, null]], "pwtools.crys.coord_trans": [[418, null]], "pwtools.crys.coord_trans3d": [[419, null]], "pwtools.crys.distances": [[420, null]], "pwtools.crys.distances_traj": [[421, null]], "pwtools.crys.grid_in_cell": [[422, null]], "pwtools.crys.kgrid": [[423, null]], "pwtools.crys.mean": [[424, null]], "pwtools.crys.min_image_convention": [[425, null]], "pwtools.crys.mix": [[426, null]], "pwtools.crys.nearest_neighbors": [[427, null]], "pwtools.crys.nearest_neighbors_from_dists": [[428, null]], "pwtools.crys.nearest_neighbors_struct": [[429, null]], "pwtools.crys.pbc_wrap": [[430, null]], "pwtools.crys.pbc_wrap_coords": [[431, null]], "pwtools.crys.pi": [[432, null]], "pwtools.crys.populated_attrs": [[433, null]], "pwtools.crys.recip_cell": [[434, null]], "pwtools.crys.rmax_smith": [[435, null]], "pwtools.crys.rmsd": [[436, null]], "pwtools.crys.rpdf": [[437, null]], "pwtools.crys.scell": [[438, null]], "pwtools.crys.scell3d": [[439, null]], "pwtools.crys.scell_mask": [[440, null]], "pwtools.crys.smooth": [[441, null]], "pwtools.crys.struct2atoms": [[442, null]], "pwtools.crys.struct2traj": [[443, null]], "pwtools.crys.tensor2voigt": [[444, null]], "pwtools.crys.tensor2voigt3d": [[445, null]], "pwtools.crys.velocity_traj": [[446, null]], "pwtools.crys.vmd_measure_gofr": [[447, null]], "pwtools.crys.voigt2tensor": [[448, null]], "pwtools.crys.voigt2tensor3d": [[449, null]], "pwtools.crys.volume_cc": [[450, null]], "pwtools.crys.volume_cc3d": [[451, null]], "pwtools.crys.volume_cell": [[452, null]], "pwtools.crys.volume_cell3d": [[453, null]], "pwtools.dcd.HEADER_DTYPE": [[454, null]], "pwtools.dcd.HEADER_TYPES": [[455, null]], "pwtools.dcd.read_dcd_data": [[456, null]], "pwtools.dcd.read_dcd_data_f": [[457, null]], "pwtools.dcd.read_dcd_data_ref": [[458, null]], "pwtools.dcd.read_dcd_header": [[459, null]], "pwtools.decorators.crys_add_doc": [[460, null]], "pwtools.decorators.lazyprop": [[461, null]], "pwtools.decorators.open_and_close": [[462, null]], "pwtools.eos.Ang": [[463, null]], "pwtools.eos.Bohr": [[464, null]], "pwtools.eos.EVFunction": [[465, null]], "pwtools.eos.EVFunction.dct2lst": [[466, null]], "pwtools.eos.EVFunction.deriv": [[467, null]], "pwtools.eos.EVFunction.evaluate": [[468, null]], "pwtools.eos.EVFunction.get_min": [[469, null]], "pwtools.eos.EVFunction.lst2dct": [[470, null]], "pwtools.eos.ElkEOSFit": [[471, null]], "pwtools.eos.ElkEOSFit.assert_attr": [[472, null]], "pwtools.eos.ElkEOSFit.assert_attr_lst": [[473, null]], "pwtools.eos.ElkEOSFit.assert_set_attr": [[474, null]], "pwtools.eos.ElkEOSFit.assert_set_attr_lst": [[475, null]], "pwtools.eos.ElkEOSFit.calc_bv": [[476, null]], "pwtools.eos.ElkEOSFit.check_set_attr": [[477, null]], "pwtools.eos.ElkEOSFit.check_set_attr_lst": [[478, null]], "pwtools.eos.ElkEOSFit.dump": [[479, null]], "pwtools.eos.ElkEOSFit.fit": [[480, null]], "pwtools.eos.ElkEOSFit.get_min": [[481, null]], "pwtools.eos.ElkEOSFit.get_return_attr": [[482, null]], "pwtools.eos.ElkEOSFit.get_spl_bv": [[483, null]], "pwtools.eos.ElkEOSFit.get_spl_ev": [[484, null]], "pwtools.eos.ElkEOSFit.get_spl_pv": [[485, null]], "pwtools.eos.ElkEOSFit.init_attr_lst": [[486, null]], "pwtools.eos.ElkEOSFit.is_set_attr": [[487, null]], "pwtools.eos.ElkEOSFit.is_set_attr_lst": [[488, null]], "pwtools.eos.ElkEOSFit.load": [[489, null]], "pwtools.eos.ElkEOSFit.raw_return": [[490, null]], "pwtools.eos.ElkEOSFit.raw_slice_get": [[491, null]], "pwtools.eos.ElkEOSFit.set_all": [[492, null]], "pwtools.eos.ElkEOSFit.set_attr_lst": [[493, null]], "pwtools.eos.ElkEOSFit.set_bv_method": [[494, null]], "pwtools.eos.ElkEOSFit.try_set_attr": [[495, null]], "pwtools.eos.ElkEOSFit.try_set_attr_lst": [[496, null]], "pwtools.eos.EosFit": [[497, null]], "pwtools.eos.EosFit.bulkmod": [[498, null]], "pwtools.eos.EosFit.fit": [[499, null]], "pwtools.eos.EosFit.get_max": [[500, null]], "pwtools.eos.EosFit.get_min": [[501, null]], "pwtools.eos.EosFit.get_root": [[502, null]], "pwtools.eos.EosFit.is_mono": [[503, null]], "pwtools.eos.EosFit.pressure": [[504, null]], "pwtools.eos.EosFit.spl": [[505, null]], "pwtools.eos.ExternEOS": [[506, null]], "pwtools.eos.ExternEOS.assert_attr": [[507, null]], "pwtools.eos.ExternEOS.assert_attr_lst": [[508, null]], "pwtools.eos.ExternEOS.assert_set_attr": [[509, null]], "pwtools.eos.ExternEOS.assert_set_attr_lst": [[510, null]], "pwtools.eos.ExternEOS.calc_bv": [[511, null]], "pwtools.eos.ExternEOS.check_set_attr": [[512, null]], "pwtools.eos.ExternEOS.check_set_attr_lst": [[513, null]], "pwtools.eos.ExternEOS.dump": [[514, null]], "pwtools.eos.ExternEOS.fit": [[515, null]], "pwtools.eos.ExternEOS.get_min": [[516, null]], "pwtools.eos.ExternEOS.get_return_attr": [[517, null]], "pwtools.eos.ExternEOS.get_spl_bv": [[518, null]], "pwtools.eos.ExternEOS.get_spl_ev": [[519, null]], "pwtools.eos.ExternEOS.get_spl_pv": [[520, null]], "pwtools.eos.ExternEOS.init_attr_lst": [[521, null]], "pwtools.eos.ExternEOS.is_set_attr": [[522, null]], "pwtools.eos.ExternEOS.is_set_attr_lst": [[523, null]], "pwtools.eos.ExternEOS.load": [[524, null]], "pwtools.eos.ExternEOS.raw_return": [[525, null]], "pwtools.eos.ExternEOS.raw_slice_get": [[526, null]], "pwtools.eos.ExternEOS.set_all": [[527, null]], "pwtools.eos.ExternEOS.set_attr_lst": [[528, null]], "pwtools.eos.ExternEOS.set_bv_method": [[529, null]], "pwtools.eos.ExternEOS.try_set_attr": [[530, null]], "pwtools.eos.ExternEOS.try_set_attr_lst": [[531, null]], "pwtools.eos.Ha": [[532, null]], "pwtools.eos.MaxDerivException": [[533, null]], "pwtools.eos.Ry": [[534, null]], "pwtools.eos.Vinet": [[535, null]], "pwtools.eos.Vinet.dct2lst": [[536, null]], "pwtools.eos.Vinet.deriv": [[537, null]], "pwtools.eos.Vinet.evaluate": [[538, null]], "pwtools.eos.Vinet.get_min": [[539, null]], "pwtools.eos.Vinet.lst2dct": [[540, null]], "pwtools.eos._vinet": [[541, null]], "pwtools.eos._vinet_deriv1": [[542, null]], "pwtools.eos._vinet_deriv2": [[543, null]], "pwtools.eos.eV": [[544, null]], "pwtools.eos.eV_by_Ang3_to_GPa": [[545, null]], "pwtools.io.Ha": [[546, null]], "pwtools.io.ReadFactory": [[547, null]], "pwtools.io.eV": [[548, null]], "pwtools.io.load_h5": [[549, null]], "pwtools.io.read_cif": [[550, null]], "pwtools.io.read_cp2k_md": [[551, null]], "pwtools.io.read_cp2k_md_dcd": [[552, null]], "pwtools.io.read_cp2k_relax": [[553, null]], "pwtools.io.read_cp2k_scf": [[554, null]], "pwtools.io.read_cpmd_md": [[555, null]], "pwtools.io.read_cpmd_scf": [[556, null]], "pwtools.io.read_h5": [[557, null]], "pwtools.io.read_lammps_md_dcd": [[558, null]], "pwtools.io.read_lammps_md_txt": [[559, null]], "pwtools.io.read_pdb": [[560, null]], "pwtools.io.read_pickle": [[561, null]], "pwtools.io.read_pw_md": [[562, null]], "pwtools.io.read_pw_scf": [[563, null]], "pwtools.io.read_pw_vcmd": [[564, null]], "pwtools.io.wien_sgroup_input": [[565, null]], "pwtools.io.write_axsf": [[566, null]], "pwtools.io.write_cif": [[567, null]], "pwtools.io.write_h5": [[568, null]], "pwtools.io.write_lammps": [[569, null]], "pwtools.io.write_wien_sgroup": [[570, null]], "pwtools.io.write_xyz": [[571, null]], "pwtools.kpath.SpecialPointsPath": [[572, null]], "pwtools.kpath.get_path_norm": [[573, null]], "pwtools.kpath.kpath": [[574, null]], "pwtools.kpath.plot_dis": [[575, null]], "pwtools.lammps.struct_str": [[576, null]], "pwtools.mpl.Data2D": [[577, null]], "pwtools.mpl.Data2D.copy": [[578, null]], "pwtools.mpl.Data2D.update": [[579, null]], "pwtools.mpl.Data3D": [[580, null]], "pwtools.mpl.Data3D.copy": [[581, null]], "pwtools.mpl.Data3D.update": [[582, null]], "pwtools.mpl.Plot": [[583, null]], "pwtools.mpl.Plot.collect_legends": [[584, null]], "pwtools.mpl.Plot.legend": [[585, null]], "pwtools.mpl.Plot.savefig": [[586, null]], "pwtools.mpl.cc": [[587, null]], "pwtools.mpl.ccl": [[588, null]], "pwtools.mpl.ccm": [[589, null]], "pwtools.mpl.clc": [[590, null]], "pwtools.mpl.clean_ax3d": [[591, null]], "pwtools.mpl.cm": [[592, null]], "pwtools.mpl.cmc": [[593, null]], "pwtools.mpl.collect_legends": [[594, null]], "pwtools.mpl.color_ax": [[595, null]], "pwtools.mpl.colors": [[596, null]], "pwtools.mpl.colors_linestyles": [[597, null]], "pwtools.mpl.colors_markers": [[598, null]], "pwtools.mpl.cycle_colors": [[599, null]], "pwtools.mpl.cycle_colors_linestyles": [[600, null]], "pwtools.mpl.cycle_colors_markers": [[601, null]], "pwtools.mpl.cycle_linestyles_colors": [[602, null]], "pwtools.mpl.cycle_markers": [[603, null]], "pwtools.mpl.cycle_markers_colors": [[604, null]], "pwtools.mpl.fig_ax": [[605, null]], "pwtools.mpl.fig_ax3d": [[606, null]], "pwtools.mpl.get_2d_testdata": [[607, null]], "pwtools.mpl.ic": [[608, null]], "pwtools.mpl.icl": [[609, null]], "pwtools.mpl.icm": [[610, null]], "pwtools.mpl.ilc": [[611, null]], "pwtools.mpl.im": [[612, null]], "pwtools.mpl.imc": [[613, null]], "pwtools.mpl.iter_colors": [[614, null]], "pwtools.mpl.iter_colors_linestyles": [[615, null]], "pwtools.mpl.iter_colors_markers": [[616, null]], "pwtools.mpl.iter_linestyles": [[617, null]], "pwtools.mpl.iter_linestyles_colors": [[618, null]], "pwtools.mpl.iter_markers": [[619, null]], "pwtools.mpl.iter_markers_colors": [[620, null]], "pwtools.mpl.linestyles": [[621, null]], "pwtools.mpl.linestyles_colors": [[622, null]], "pwtools.mpl.make_axes_grid_fig": [[623, null]], "pwtools.mpl.markers": [[624, null]], "pwtools.mpl.markers_colors": [[625, null]], "pwtools.mpl.meshgridt": [[626, null]], "pwtools.mpl.new_axis": [[627, null]], "pwtools.mpl.plotlines3d": [[628, null]], "pwtools.mpl.prepare_plots": [[629, null]], "pwtools.mpl.smooth_color": [[630, null]], "pwtools.mpl.smooth_color_func": [[631, null]], "pwtools.mttk.a0": [[632, null]], "pwtools.mttk.add_doc": [[633, null]], "pwtools.mttk.barostat_mass_w": [[634, null]], "pwtools.mttk.barostat_mass_wg": [[635, null]], "pwtools.mttk.barostat_nhc_masses": [[636, null]], "pwtools.mttk.kb": [[637, null]], "pwtools.mttk.m0": [[638, null]], "pwtools.mttk.particle_nhc_masses": [[639, null]], "pwtools.num.DataND": [[640, null]], "pwtools.num.DataND.a2_to_an": [[641, null]], "pwtools.num.EPS": [[642, null]], "pwtools.num.Fit1D": [[643, null]], "pwtools.num.Fit1D.get_max": [[644, null]], "pwtools.num.Fit1D.get_min": [[645, null]], "pwtools.num.Fit1D.get_root": [[646, null]], "pwtools.num.Fit1D.is_mono": [[647, null]], "pwtools.num.Interpol2D": [[648, null]], "pwtools.num.Interpol2D.get_min": [[649, null]], "pwtools.num.PolyFit": [[650, null]], "pwtools.num.PolyFit.get_min": [[651, null]], "pwtools.num.PolyFit1D": [[652, null]], "pwtools.num.PolyFit1D.get_max": [[653, null]], "pwtools.num.PolyFit1D.get_min": [[654, null]], "pwtools.num.PolyFit1D.get_root": [[655, null]], "pwtools.num.PolyFit1D.is_mono": [[656, null]], "pwtools.num.Spline": [[657, null]], "pwtools.num.Spline.get_max": [[658, null]], "pwtools.num.Spline.get_min": [[659, null]], "pwtools.num.Spline.get_root": [[660, null]], "pwtools.num.Spline.invsplev": [[661, null]], "pwtools.num.Spline.is_mono": [[662, null]], "pwtools.num.Spline.splev": [[663, null]], "pwtools.num.deriv_spl": [[664, null]], "pwtools.num.distsq": [[665, null]], "pwtools.num.euler_matrix": [[666, null]], "pwtools.num.extend_array": [[667, null]], "pwtools.num.fempty": [[668, null]], "pwtools.num.findmin": [[669, null]], "pwtools.num.findroot": [[670, null]], "pwtools.num.inner_points_mask": [[671, null]], "pwtools.num.match_mask": [[672, null]], "pwtools.num.meshgridt": [[673, null]], "pwtools.num.norm": [[674, null]], "pwtools.num.norm_int": [[675, null]], "pwtools.num.normalize": [[676, null]], "pwtools.num.order_similar": [[677, null]], "pwtools.num.pi": [[678, null]], "pwtools.num.poly_powers": [[679, null]], "pwtools.num.poly_str": [[680, null]], "pwtools.num.polyfit": [[681, null]], "pwtools.num.polyval": [[682, null]], "pwtools.num.rms": [[683, null]], "pwtools.num.rms3d": [[684, null]], "pwtools.num.round_up_next_multiple": [[685, null]], "pwtools.num.sliceput": [[686, null]], "pwtools.num.slicetake": [[687, null]], "pwtools.num.sum": [[688, null]], "pwtools.num.vander": [[689, null]], "pwtools.num.vlinspace": [[690, null]], "pwtools.parse.AWK": [[691, null]], "pwtools.parse.Ang": [[692, null]], "pwtools.parse.Angstrom": [[693, null]], "pwtools.parse.Bohr": [[694, null]], "pwtools.parse.CifFile": [[695, null]], "pwtools.parse.CifFile.apply_units": [[696, null]], "pwtools.parse.CifFile.assert_attr": [[697, null]], "pwtools.parse.CifFile.assert_attr_lst": [[698, null]], "pwtools.parse.CifFile.assert_set_attr": [[699, null]], "pwtools.parse.CifFile.assert_set_attr_lst": [[700, null]], "pwtools.parse.CifFile.check_set_attr": [[701, null]], "pwtools.parse.CifFile.check_set_attr_lst": [[702, null]], "pwtools.parse.CifFile.cif_clear_atom_symbol": [[703, null]], "pwtools.parse.CifFile.cif_str2float": [[704, null]], "pwtools.parse.CifFile.default_units": [[705, null]], "pwtools.parse.CifFile.dump": [[706, null]], "pwtools.parse.CifFile.get_cont": [[707, null]], "pwtools.parse.CifFile.get_coords": [[708, null]], "pwtools.parse.CifFile.get_coords_frac": [[709, null]], "pwtools.parse.CifFile.get_cryst_const": [[710, null]], "pwtools.parse.CifFile.get_return_attr": [[711, null]], "pwtools.parse.CifFile.get_struct": [[712, null]], "pwtools.parse.CifFile.get_symbols": [[713, null]], "pwtools.parse.CifFile.init_attr_lst": [[714, null]], "pwtools.parse.CifFile.is_set_attr": [[715, null]], "pwtools.parse.CifFile.is_set_attr_lst": [[716, null]], "pwtools.parse.CifFile.load": [[717, null]], "pwtools.parse.CifFile.parse": [[718, null]], "pwtools.parse.CifFile.raw_return": [[719, null]], "pwtools.parse.CifFile.raw_slice_get": [[720, null]], "pwtools.parse.CifFile.set_all": [[721, null]], "pwtools.parse.CifFile.set_attr_lst": [[722, null]], "pwtools.parse.CifFile.try_set_attr": [[723, null]], "pwtools.parse.CifFile.try_set_attr_lst": [[724, null]], "pwtools.parse.CifFile.update_units": [[725, null]], "pwtools.parse.Cp2kDcdMDOutputFile": [[726, null]], "pwtools.parse.Cp2kDcdMDOutputFile.apply_units": [[727, null]], "pwtools.parse.Cp2kDcdMDOutputFile.assert_attr": [[728, null]], "pwtools.parse.Cp2kDcdMDOutputFile.assert_attr_lst": [[729, null]], "pwtools.parse.Cp2kDcdMDOutputFile.assert_set_attr": [[730, null]], "pwtools.parse.Cp2kDcdMDOutputFile.assert_set_attr_lst": [[731, null]], "pwtools.parse.Cp2kDcdMDOutputFile.check_set_attr": [[732, null]], "pwtools.parse.Cp2kDcdMDOutputFile.check_set_attr_lst": [[733, null]], "pwtools.parse.Cp2kDcdMDOutputFile.default_units": [[734, null]], "pwtools.parse.Cp2kDcdMDOutputFile.dump": [[735, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_cell": [[736, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_cont": [[737, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_coords": [[738, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_cryst_const": [[739, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_econst": [[740, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_ekin": [[741, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_etot": [[742, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_forces": [[743, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_natoms": [[744, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_nstep": [[745, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_return_attr": [[746, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_stress": [[747, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_struct": [[748, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_symbols": [[749, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_temperature": [[750, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_timestep": [[751, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_traj": [[752, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_velocity": [[753, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_volume": [[754, null]], "pwtools.parse.Cp2kDcdMDOutputFile.init_attr_lst": [[755, null]], "pwtools.parse.Cp2kDcdMDOutputFile.is_set_attr": [[756, null]], "pwtools.parse.Cp2kDcdMDOutputFile.is_set_attr_lst": [[757, null]], "pwtools.parse.Cp2kDcdMDOutputFile.load": [[758, null]], "pwtools.parse.Cp2kDcdMDOutputFile.parse": [[759, null]], "pwtools.parse.Cp2kDcdMDOutputFile.raw_return": [[760, null]], "pwtools.parse.Cp2kDcdMDOutputFile.raw_slice_get": [[761, null]], "pwtools.parse.Cp2kDcdMDOutputFile.set_all": [[762, null]], "pwtools.parse.Cp2kDcdMDOutputFile.set_attr_lst": [[763, null]], "pwtools.parse.Cp2kDcdMDOutputFile.timeaxis": [[764, null]], "pwtools.parse.Cp2kDcdMDOutputFile.try_set_attr": [[765, null]], "pwtools.parse.Cp2kDcdMDOutputFile.try_set_attr_lst": [[766, null]], "pwtools.parse.Cp2kDcdMDOutputFile.update_units": [[767, null]], "pwtools.parse.Cp2kMDOutputFile": [[768, null]], "pwtools.parse.Cp2kMDOutputFile.apply_units": [[769, null]], "pwtools.parse.Cp2kMDOutputFile.assert_attr": [[770, null]], "pwtools.parse.Cp2kMDOutputFile.assert_attr_lst": [[771, null]], "pwtools.parse.Cp2kMDOutputFile.assert_set_attr": [[772, null]], "pwtools.parse.Cp2kMDOutputFile.assert_set_attr_lst": [[773, null]], "pwtools.parse.Cp2kMDOutputFile.check_set_attr": [[774, null]], "pwtools.parse.Cp2kMDOutputFile.check_set_attr_lst": [[775, null]], "pwtools.parse.Cp2kMDOutputFile.default_units": [[776, null]], "pwtools.parse.Cp2kMDOutputFile.dump": [[777, null]], "pwtools.parse.Cp2kMDOutputFile.get_cell": [[778, null]], "pwtools.parse.Cp2kMDOutputFile.get_cont": [[779, null]], "pwtools.parse.Cp2kMDOutputFile.get_coords": [[780, null]], "pwtools.parse.Cp2kMDOutputFile.get_econst": [[781, null]], "pwtools.parse.Cp2kMDOutputFile.get_ekin": [[782, null]], "pwtools.parse.Cp2kMDOutputFile.get_etot": [[783, null]], "pwtools.parse.Cp2kMDOutputFile.get_forces": [[784, null]], "pwtools.parse.Cp2kMDOutputFile.get_natoms": [[785, null]], "pwtools.parse.Cp2kMDOutputFile.get_return_attr": [[786, null]], "pwtools.parse.Cp2kMDOutputFile.get_stress": [[787, null]], "pwtools.parse.Cp2kMDOutputFile.get_struct": [[788, null]], "pwtools.parse.Cp2kMDOutputFile.get_symbols": [[789, null]], "pwtools.parse.Cp2kMDOutputFile.get_temperature": [[790, null]], "pwtools.parse.Cp2kMDOutputFile.get_timestep": [[791, null]], "pwtools.parse.Cp2kMDOutputFile.get_traj": [[792, null]], "pwtools.parse.Cp2kMDOutputFile.get_velocity": [[793, null]], "pwtools.parse.Cp2kMDOutputFile.get_volume": [[794, null]], "pwtools.parse.Cp2kMDOutputFile.init_attr_lst": [[795, null]], "pwtools.parse.Cp2kMDOutputFile.is_set_attr": [[796, null]], "pwtools.parse.Cp2kMDOutputFile.is_set_attr_lst": [[797, null]], "pwtools.parse.Cp2kMDOutputFile.load": [[798, null]], "pwtools.parse.Cp2kMDOutputFile.parse": [[799, null]], "pwtools.parse.Cp2kMDOutputFile.raw_return": [[800, null]], "pwtools.parse.Cp2kMDOutputFile.raw_slice_get": [[801, null]], "pwtools.parse.Cp2kMDOutputFile.set_all": [[802, null]], "pwtools.parse.Cp2kMDOutputFile.set_attr_lst": [[803, null]], "pwtools.parse.Cp2kMDOutputFile.timeaxis": [[804, null]], "pwtools.parse.Cp2kMDOutputFile.try_set_attr": [[805, null]], "pwtools.parse.Cp2kMDOutputFile.try_set_attr_lst": [[806, null]], "pwtools.parse.Cp2kMDOutputFile.update_units": [[807, null]], "pwtools.parse.Cp2kRelaxOutputFile": [[808, null]], "pwtools.parse.Cp2kRelaxOutputFile.apply_units": [[809, null]], "pwtools.parse.Cp2kRelaxOutputFile.assert_attr": [[810, null]], "pwtools.parse.Cp2kRelaxOutputFile.assert_attr_lst": [[811, null]], "pwtools.parse.Cp2kRelaxOutputFile.assert_set_attr": [[812, null]], "pwtools.parse.Cp2kRelaxOutputFile.assert_set_attr_lst": [[813, null]], "pwtools.parse.Cp2kRelaxOutputFile.check_set_attr": [[814, null]], "pwtools.parse.Cp2kRelaxOutputFile.check_set_attr_lst": [[815, null]], "pwtools.parse.Cp2kRelaxOutputFile.default_units": [[816, null]], "pwtools.parse.Cp2kRelaxOutputFile.dump": [[817, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_cell": [[818, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_cont": [[819, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_coords": [[820, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_econst": [[821, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_ekin": [[822, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_etot": [[823, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_forces": [[824, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_natoms": [[825, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_return_attr": [[826, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_stress": [[827, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_struct": [[828, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_symbols": [[829, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_temperature": [[830, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_timestep": [[831, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_traj": [[832, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_velocity": [[833, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_volume": [[834, null]], "pwtools.parse.Cp2kRelaxOutputFile.init_attr_lst": [[835, null]], "pwtools.parse.Cp2kRelaxOutputFile.is_set_attr": [[836, null]], "pwtools.parse.Cp2kRelaxOutputFile.is_set_attr_lst": [[837, null]], "pwtools.parse.Cp2kRelaxOutputFile.load": [[838, null]], "pwtools.parse.Cp2kRelaxOutputFile.parse": [[839, null]], "pwtools.parse.Cp2kRelaxOutputFile.raw_return": [[840, null]], "pwtools.parse.Cp2kRelaxOutputFile.raw_slice_get": [[841, null]], "pwtools.parse.Cp2kRelaxOutputFile.set_all": [[842, null]], "pwtools.parse.Cp2kRelaxOutputFile.set_attr_lst": [[843, null]], "pwtools.parse.Cp2kRelaxOutputFile.timeaxis": [[844, null]], "pwtools.parse.Cp2kRelaxOutputFile.try_set_attr": [[845, null]], "pwtools.parse.Cp2kRelaxOutputFile.try_set_attr_lst": [[846, null]], "pwtools.parse.Cp2kRelaxOutputFile.update_units": [[847, null]], "pwtools.parse.Cp2kSCFOutputFile": [[848, null]], "pwtools.parse.Cp2kSCFOutputFile.apply_units": [[849, null]], "pwtools.parse.Cp2kSCFOutputFile.assert_attr": [[850, null]], "pwtools.parse.Cp2kSCFOutputFile.assert_attr_lst": [[851, null]], "pwtools.parse.Cp2kSCFOutputFile.assert_set_attr": [[852, null]], "pwtools.parse.Cp2kSCFOutputFile.assert_set_attr_lst": [[853, null]], "pwtools.parse.Cp2kSCFOutputFile.check_set_attr": [[854, null]], "pwtools.parse.Cp2kSCFOutputFile.check_set_attr_lst": [[855, null]], "pwtools.parse.Cp2kSCFOutputFile.default_units": [[856, null]], "pwtools.parse.Cp2kSCFOutputFile.dump": [[857, null]], "pwtools.parse.Cp2kSCFOutputFile.get_cont": [[858, null]], "pwtools.parse.Cp2kSCFOutputFile.get_etot": [[859, null]], "pwtools.parse.Cp2kSCFOutputFile.get_forces": [[860, null]], "pwtools.parse.Cp2kSCFOutputFile.get_natoms": [[861, null]], "pwtools.parse.Cp2kSCFOutputFile.get_return_attr": [[862, null]], "pwtools.parse.Cp2kSCFOutputFile.get_stress": [[863, null]], "pwtools.parse.Cp2kSCFOutputFile.get_struct": [[864, null]], "pwtools.parse.Cp2kSCFOutputFile.get_symbols": [[865, null]], "pwtools.parse.Cp2kSCFOutputFile.init_attr_lst": [[866, null]], "pwtools.parse.Cp2kSCFOutputFile.is_set_attr": [[867, null]], "pwtools.parse.Cp2kSCFOutputFile.is_set_attr_lst": [[868, null]], "pwtools.parse.Cp2kSCFOutputFile.load": [[869, null]], "pwtools.parse.Cp2kSCFOutputFile.parse": [[870, null]], "pwtools.parse.Cp2kSCFOutputFile.raw_return": [[871, null]], "pwtools.parse.Cp2kSCFOutputFile.raw_slice_get": [[872, null]], "pwtools.parse.Cp2kSCFOutputFile.set_all": [[873, null]], "pwtools.parse.Cp2kSCFOutputFile.set_attr_lst": [[874, null]], "pwtools.parse.Cp2kSCFOutputFile.try_set_attr": [[875, null]], "pwtools.parse.Cp2kSCFOutputFile.try_set_attr_lst": [[876, null]], "pwtools.parse.Cp2kSCFOutputFile.update_units": [[877, null]], "pwtools.parse.CpmdMDOutputFile": [[878, null]], "pwtools.parse.CpmdMDOutputFile.apply_units": [[879, null]], "pwtools.parse.CpmdMDOutputFile.assert_attr": [[880, null]], "pwtools.parse.CpmdMDOutputFile.assert_attr_lst": [[881, null]], "pwtools.parse.CpmdMDOutputFile.assert_set_attr": [[882, null]], "pwtools.parse.CpmdMDOutputFile.assert_set_attr_lst": [[883, null]], "pwtools.parse.CpmdMDOutputFile.check_set_attr": [[884, null]], "pwtools.parse.CpmdMDOutputFile.check_set_attr_lst": [[885, null]], "pwtools.parse.CpmdMDOutputFile.default_units": [[886, null]], "pwtools.parse.CpmdMDOutputFile.dump": [[887, null]], "pwtools.parse.CpmdMDOutputFile.get_cell": [[888, null]], "pwtools.parse.CpmdMDOutputFile.get_cont": [[889, null]], "pwtools.parse.CpmdMDOutputFile.get_coords": [[890, null]], "pwtools.parse.CpmdMDOutputFile.get_coords_frac": [[891, null]], "pwtools.parse.CpmdMDOutputFile.get_econst": [[892, null]], "pwtools.parse.CpmdMDOutputFile.get_ekin": [[893, null]], "pwtools.parse.CpmdMDOutputFile.get_ekin_cell": [[894, null]], "pwtools.parse.CpmdMDOutputFile.get_ekin_elec": [[895, null]], "pwtools.parse.CpmdMDOutputFile.get_ekinc": [[896, null]], "pwtools.parse.CpmdMDOutputFile.get_ekinh": [[897, null]], "pwtools.parse.CpmdMDOutputFile.get_etot": [[898, null]], "pwtools.parse.CpmdMDOutputFile.get_forces": [[899, null]], "pwtools.parse.CpmdMDOutputFile.get_natoms": [[900, null]], "pwtools.parse.CpmdMDOutputFile.get_nkpoints": [[901, null]], "pwtools.parse.CpmdMDOutputFile.get_nstep_scf": [[902, null]], "pwtools.parse.CpmdMDOutputFile.get_return_attr": [[903, null]], "pwtools.parse.CpmdMDOutputFile.get_scf_converged": [[904, null]], "pwtools.parse.CpmdMDOutputFile.get_stress": [[905, null]], "pwtools.parse.CpmdMDOutputFile.get_struct": [[906, null]], "pwtools.parse.CpmdMDOutputFile.get_symbols": [[907, null]], "pwtools.parse.CpmdMDOutputFile.get_temperature": [[908, null]], "pwtools.parse.CpmdMDOutputFile.get_temperature_cell": [[909, null]], "pwtools.parse.CpmdMDOutputFile.get_timestep": [[910, null]], "pwtools.parse.CpmdMDOutputFile.get_traj": [[911, null]], "pwtools.parse.CpmdMDOutputFile.get_velocity": [[912, null]], "pwtools.parse.CpmdMDOutputFile.init_attr_lst": [[913, null]], "pwtools.parse.CpmdMDOutputFile.is_set_attr": [[914, null]], "pwtools.parse.CpmdMDOutputFile.is_set_attr_lst": [[915, null]], "pwtools.parse.CpmdMDOutputFile.load": [[916, null]], "pwtools.parse.CpmdMDOutputFile.parse": [[917, null]], "pwtools.parse.CpmdMDOutputFile.raw_return": [[918, null]], "pwtools.parse.CpmdMDOutputFile.raw_slice_get": [[919, null]], "pwtools.parse.CpmdMDOutputFile.set_all": [[920, null]], "pwtools.parse.CpmdMDOutputFile.set_attr_lst": [[921, null]], "pwtools.parse.CpmdMDOutputFile.timeaxis": [[922, null]], "pwtools.parse.CpmdMDOutputFile.try_set_attr": [[923, null]], "pwtools.parse.CpmdMDOutputFile.try_set_attr_lst": [[924, null]], "pwtools.parse.CpmdMDOutputFile.update_units": [[925, null]], "pwtools.parse.CpmdSCFOutputFile": [[926, null]], "pwtools.parse.CpmdSCFOutputFile.apply_units": [[927, null]], "pwtools.parse.CpmdSCFOutputFile.assert_attr": [[928, null]], "pwtools.parse.CpmdSCFOutputFile.assert_attr_lst": [[929, null]], "pwtools.parse.CpmdSCFOutputFile.assert_set_attr": [[930, null]], "pwtools.parse.CpmdSCFOutputFile.assert_set_attr_lst": [[931, null]], "pwtools.parse.CpmdSCFOutputFile.check_set_attr": [[932, null]], "pwtools.parse.CpmdSCFOutputFile.check_set_attr_lst": [[933, null]], "pwtools.parse.CpmdSCFOutputFile.default_units": [[934, null]], "pwtools.parse.CpmdSCFOutputFile.dump": [[935, null]], "pwtools.parse.CpmdSCFOutputFile.get_cell": [[936, null]], "pwtools.parse.CpmdSCFOutputFile.get_cont": [[937, null]], "pwtools.parse.CpmdSCFOutputFile.get_coords_frac": [[938, null]], "pwtools.parse.CpmdSCFOutputFile.get_etot": [[939, null]], "pwtools.parse.CpmdSCFOutputFile.get_forces": [[940, null]], "pwtools.parse.CpmdSCFOutputFile.get_natoms": [[941, null]], "pwtools.parse.CpmdSCFOutputFile.get_nkpoints": [[942, null]], "pwtools.parse.CpmdSCFOutputFile.get_nstep_scf": [[943, null]], "pwtools.parse.CpmdSCFOutputFile.get_return_attr": [[944, null]], "pwtools.parse.CpmdSCFOutputFile.get_scf_converged": [[945, null]], "pwtools.parse.CpmdSCFOutputFile.get_stress": [[946, null]], "pwtools.parse.CpmdSCFOutputFile.get_struct": [[947, null]], "pwtools.parse.CpmdSCFOutputFile.get_symbols": [[948, null]], "pwtools.parse.CpmdSCFOutputFile.init_attr_lst": [[949, null]], "pwtools.parse.CpmdSCFOutputFile.is_set_attr": [[950, null]], "pwtools.parse.CpmdSCFOutputFile.is_set_attr_lst": [[951, null]], "pwtools.parse.CpmdSCFOutputFile.load": [[952, null]], "pwtools.parse.CpmdSCFOutputFile.parse": [[953, null]], "pwtools.parse.CpmdSCFOutputFile.raw_return": [[954, null]], "pwtools.parse.CpmdSCFOutputFile.raw_slice_get": [[955, null]], "pwtools.parse.CpmdSCFOutputFile.set_all": [[956, null]], "pwtools.parse.CpmdSCFOutputFile.set_attr_lst": [[957, null]], "pwtools.parse.CpmdSCFOutputFile.try_set_attr": [[958, null]], "pwtools.parse.CpmdSCFOutputFile.try_set_attr_lst": [[959, null]], "pwtools.parse.CpmdSCFOutputFile.update_units": [[960, null]], "pwtools.parse.DcdOutputFile": [[961, null]], "pwtools.parse.DcdOutputFile.get_cell": [[962, null]], "pwtools.parse.DcdOutputFile.get_coords": [[963, null]], "pwtools.parse.DcdOutputFile.get_cryst_const": [[964, null]], "pwtools.parse.DcdOutputFile.get_natoms": [[965, null]], "pwtools.parse.DcdOutputFile.get_nstep": [[966, null]], "pwtools.parse.DcdOutputFile.get_volume": [[967, null]], "pwtools.parse.Ha": [[968, null]], "pwtools.parse.LammpsDcdMDOutputFile": [[969, null]], "pwtools.parse.LammpsDcdMDOutputFile.apply_units": [[970, null]], "pwtools.parse.LammpsDcdMDOutputFile.assert_attr": [[971, null]], "pwtools.parse.LammpsDcdMDOutputFile.assert_attr_lst": [[972, null]], "pwtools.parse.LammpsDcdMDOutputFile.assert_set_attr": [[973, null]], "pwtools.parse.LammpsDcdMDOutputFile.assert_set_attr_lst": [[974, null]], "pwtools.parse.LammpsDcdMDOutputFile.check_set_attr": [[975, null]], "pwtools.parse.LammpsDcdMDOutputFile.check_set_attr_lst": [[976, null]], "pwtools.parse.LammpsDcdMDOutputFile.default_units": [[977, null]], "pwtools.parse.LammpsDcdMDOutputFile.dump": [[978, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_cell": [[979, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_cont": [[980, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_coords": [[981, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_coords_frac": [[982, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_cryst_const": [[983, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_ekin": [[984, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_etot": [[985, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_forces": [[986, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_natoms": [[987, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_nstep": [[988, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_return_attr": [[989, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_stress": [[990, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_struct": [[991, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_symbols": [[992, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_temperature": [[993, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_timestep": [[994, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_traj": [[995, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_velocity": [[996, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_volume": [[997, null]], "pwtools.parse.LammpsDcdMDOutputFile.init_attr_lst": [[998, null]], "pwtools.parse.LammpsDcdMDOutputFile.is_set_attr": [[999, null]], "pwtools.parse.LammpsDcdMDOutputFile.is_set_attr_lst": [[1000, null]], "pwtools.parse.LammpsDcdMDOutputFile.load": [[1001, null]], "pwtools.parse.LammpsDcdMDOutputFile.parse": [[1002, null]], "pwtools.parse.LammpsDcdMDOutputFile.raw_return": [[1003, null]], "pwtools.parse.LammpsDcdMDOutputFile.raw_slice_get": [[1004, null]], "pwtools.parse.LammpsDcdMDOutputFile.set_all": [[1005, null]], "pwtools.parse.LammpsDcdMDOutputFile.set_attr_lst": [[1006, null]], "pwtools.parse.LammpsDcdMDOutputFile.timeaxis": [[1007, null]], "pwtools.parse.LammpsDcdMDOutputFile.try_set_attr": [[1008, null]], "pwtools.parse.LammpsDcdMDOutputFile.try_set_attr_lst": [[1009, null]], "pwtools.parse.LammpsDcdMDOutputFile.update_units": [[1010, null]], "pwtools.parse.LammpsTextMDOutputFile": [[1011, null]], "pwtools.parse.LammpsTextMDOutputFile.apply_units": [[1012, null]], "pwtools.parse.LammpsTextMDOutputFile.assert_attr": [[1013, null]], "pwtools.parse.LammpsTextMDOutputFile.assert_attr_lst": [[1014, null]], "pwtools.parse.LammpsTextMDOutputFile.assert_set_attr": [[1015, null]], "pwtools.parse.LammpsTextMDOutputFile.assert_set_attr_lst": [[1016, null]], "pwtools.parse.LammpsTextMDOutputFile.check_set_attr": [[1017, null]], "pwtools.parse.LammpsTextMDOutputFile.check_set_attr_lst": [[1018, null]], "pwtools.parse.LammpsTextMDOutputFile.default_units": [[1019, null]], "pwtools.parse.LammpsTextMDOutputFile.dump": [[1020, null]], "pwtools.parse.LammpsTextMDOutputFile.get_cell": [[1021, null]], "pwtools.parse.LammpsTextMDOutputFile.get_cont": [[1022, null]], "pwtools.parse.LammpsTextMDOutputFile.get_coords": [[1023, null]], "pwtools.parse.LammpsTextMDOutputFile.get_coords_frac": [[1024, null]], "pwtools.parse.LammpsTextMDOutputFile.get_cryst_const": [[1025, null]], "pwtools.parse.LammpsTextMDOutputFile.get_ekin": [[1026, null]], "pwtools.parse.LammpsTextMDOutputFile.get_etot": [[1027, null]], "pwtools.parse.LammpsTextMDOutputFile.get_forces": [[1028, null]], "pwtools.parse.LammpsTextMDOutputFile.get_natoms": [[1029, null]], "pwtools.parse.LammpsTextMDOutputFile.get_return_attr": [[1030, null]], "pwtools.parse.LammpsTextMDOutputFile.get_stress": [[1031, null]], "pwtools.parse.LammpsTextMDOutputFile.get_struct": [[1032, null]], "pwtools.parse.LammpsTextMDOutputFile.get_symbols": [[1033, null]], "pwtools.parse.LammpsTextMDOutputFile.get_temperature": [[1034, null]], "pwtools.parse.LammpsTextMDOutputFile.get_timestep": [[1035, null]], "pwtools.parse.LammpsTextMDOutputFile.get_traj": [[1036, null]], "pwtools.parse.LammpsTextMDOutputFile.get_velocity": [[1037, null]], "pwtools.parse.LammpsTextMDOutputFile.get_volume": [[1038, null]], "pwtools.parse.LammpsTextMDOutputFile.init_attr_lst": [[1039, null]], "pwtools.parse.LammpsTextMDOutputFile.is_set_attr": [[1040, null]], "pwtools.parse.LammpsTextMDOutputFile.is_set_attr_lst": [[1041, null]], "pwtools.parse.LammpsTextMDOutputFile.load": [[1042, null]], "pwtools.parse.LammpsTextMDOutputFile.parse": [[1043, null]], "pwtools.parse.LammpsTextMDOutputFile.raw_return": [[1044, null]], "pwtools.parse.LammpsTextMDOutputFile.raw_slice_get": [[1045, null]], "pwtools.parse.LammpsTextMDOutputFile.set_all": [[1046, null]], "pwtools.parse.LammpsTextMDOutputFile.set_attr_lst": [[1047, null]], "pwtools.parse.LammpsTextMDOutputFile.timeaxis": [[1048, null]], "pwtools.parse.LammpsTextMDOutputFile.try_set_attr": [[1049, null]], "pwtools.parse.LammpsTextMDOutputFile.try_set_attr_lst": [[1050, null]], "pwtools.parse.LammpsTextMDOutputFile.update_units": [[1051, null]], "pwtools.parse.PDBFile": [[1052, null]], "pwtools.parse.PDBFile.apply_units": [[1053, null]], "pwtools.parse.PDBFile.assert_attr": [[1054, null]], "pwtools.parse.PDBFile.assert_attr_lst": [[1055, null]], "pwtools.parse.PDBFile.assert_set_attr": [[1056, null]], "pwtools.parse.PDBFile.assert_set_attr_lst": [[1057, null]], "pwtools.parse.PDBFile.check_set_attr": [[1058, null]], "pwtools.parse.PDBFile.check_set_attr_lst": [[1059, null]], "pwtools.parse.PDBFile.default_units": [[1060, null]], "pwtools.parse.PDBFile.dump": [[1061, null]], "pwtools.parse.PDBFile.get_cont": [[1062, null]], "pwtools.parse.PDBFile.get_coords": [[1063, null]], "pwtools.parse.PDBFile.get_cryst_const": [[1064, null]], "pwtools.parse.PDBFile.get_return_attr": [[1065, null]], "pwtools.parse.PDBFile.get_struct": [[1066, null]], "pwtools.parse.PDBFile.get_symbols": [[1067, null]], "pwtools.parse.PDBFile.init_attr_lst": [[1068, null]], "pwtools.parse.PDBFile.is_set_attr": [[1069, null]], "pwtools.parse.PDBFile.is_set_attr_lst": [[1070, null]], "pwtools.parse.PDBFile.load": [[1071, null]], "pwtools.parse.PDBFile.parse": [[1072, null]], "pwtools.parse.PDBFile.raw_return": [[1073, null]], "pwtools.parse.PDBFile.raw_slice_get": [[1074, null]], "pwtools.parse.PDBFile.set_all": [[1075, null]], "pwtools.parse.PDBFile.set_attr_lst": [[1076, null]], "pwtools.parse.PDBFile.try_set_attr": [[1077, null]], "pwtools.parse.PDBFile.try_set_attr_lst": [[1078, null]], "pwtools.parse.PDBFile.update_units": [[1079, null]], "pwtools.parse.PwMDOutputFile": [[1080, null]], "pwtools.parse.PwMDOutputFile.apply_units": [[1081, null]], "pwtools.parse.PwMDOutputFile.assert_attr": [[1082, null]], "pwtools.parse.PwMDOutputFile.assert_attr_lst": [[1083, null]], "pwtools.parse.PwMDOutputFile.assert_set_attr": [[1084, null]], "pwtools.parse.PwMDOutputFile.assert_set_attr_lst": [[1085, null]], "pwtools.parse.PwMDOutputFile.check_set_attr": [[1086, null]], "pwtools.parse.PwMDOutputFile.check_set_attr_lst": [[1087, null]], "pwtools.parse.PwMDOutputFile.default_units": [[1088, null]], "pwtools.parse.PwMDOutputFile.dump": [[1089, null]], "pwtools.parse.PwMDOutputFile.get_alat": [[1090, null]], "pwtools.parse.PwMDOutputFile.get_cell": [[1091, null]], "pwtools.parse.PwMDOutputFile.get_cell_unit": [[1092, null]], "pwtools.parse.PwMDOutputFile.get_cont": [[1093, null]], "pwtools.parse.PwMDOutputFile.get_coords": [[1094, null]], "pwtools.parse.PwMDOutputFile.get_coords_frac": [[1095, null]], "pwtools.parse.PwMDOutputFile.get_coords_unit": [[1096, null]], "pwtools.parse.PwMDOutputFile.get_ekin": [[1097, null]], "pwtools.parse.PwMDOutputFile.get_etot": [[1098, null]], "pwtools.parse.PwMDOutputFile.get_forces": [[1099, null]], "pwtools.parse.PwMDOutputFile.get_natoms": [[1100, null]], "pwtools.parse.PwMDOutputFile.get_nkpoints": [[1101, null]], "pwtools.parse.PwMDOutputFile.get_nstep_scf": [[1102, null]], "pwtools.parse.PwMDOutputFile.get_return_attr": [[1103, null]], "pwtools.parse.PwMDOutputFile.get_scf_converged": [[1104, null]], "pwtools.parse.PwMDOutputFile.get_stress": [[1105, null]], "pwtools.parse.PwMDOutputFile.get_struct": [[1106, null]], "pwtools.parse.PwMDOutputFile.get_symbols": [[1107, null]], "pwtools.parse.PwMDOutputFile.get_temperature": [[1108, null]], "pwtools.parse.PwMDOutputFile.get_timestep": [[1109, null]], "pwtools.parse.PwMDOutputFile.get_traj": [[1110, null]], "pwtools.parse.PwMDOutputFile.init_attr_lst": [[1111, null]], "pwtools.parse.PwMDOutputFile.is_set_attr": [[1112, null]], "pwtools.parse.PwMDOutputFile.is_set_attr_lst": [[1113, null]], "pwtools.parse.PwMDOutputFile.load": [[1114, null]], "pwtools.parse.PwMDOutputFile.parse": [[1115, null]], "pwtools.parse.PwMDOutputFile.raw_return": [[1116, null]], "pwtools.parse.PwMDOutputFile.raw_slice_get": [[1117, null]], "pwtools.parse.PwMDOutputFile.set_all": [[1118, null]], "pwtools.parse.PwMDOutputFile.set_attr_lst": [[1119, null]], "pwtools.parse.PwMDOutputFile.timeaxis": [[1120, null]], "pwtools.parse.PwMDOutputFile.try_set_attr": [[1121, null]], "pwtools.parse.PwMDOutputFile.try_set_attr_lst": [[1122, null]], "pwtools.parse.PwMDOutputFile.update_units": [[1123, null]], "pwtools.parse.PwSCFOutputFile": [[1124, null]], "pwtools.parse.PwSCFOutputFile.apply_units": [[1125, null]], "pwtools.parse.PwSCFOutputFile.assert_attr": [[1126, null]], "pwtools.parse.PwSCFOutputFile.assert_attr_lst": [[1127, null]], "pwtools.parse.PwSCFOutputFile.assert_set_attr": [[1128, null]], "pwtools.parse.PwSCFOutputFile.assert_set_attr_lst": [[1129, null]], "pwtools.parse.PwSCFOutputFile.check_set_attr": [[1130, null]], "pwtools.parse.PwSCFOutputFile.check_set_attr_lst": [[1131, null]], "pwtools.parse.PwSCFOutputFile.default_units": [[1132, null]], "pwtools.parse.PwSCFOutputFile.dump": [[1133, null]], "pwtools.parse.PwSCFOutputFile.get_alat": [[1134, null]], "pwtools.parse.PwSCFOutputFile.get_cell": [[1135, null]], "pwtools.parse.PwSCFOutputFile.get_cont": [[1136, null]], "pwtools.parse.PwSCFOutputFile.get_coords": [[1137, null]], "pwtools.parse.PwSCFOutputFile.get_etot": [[1138, null]], "pwtools.parse.PwSCFOutputFile.get_forces": [[1139, null]], "pwtools.parse.PwSCFOutputFile.get_natoms": [[1140, null]], "pwtools.parse.PwSCFOutputFile.get_nkpoints": [[1141, null]], "pwtools.parse.PwSCFOutputFile.get_nstep_scf": [[1142, null]], "pwtools.parse.PwSCFOutputFile.get_return_attr": [[1143, null]], "pwtools.parse.PwSCFOutputFile.get_scf_converged": [[1144, null]], "pwtools.parse.PwSCFOutputFile.get_stress": [[1145, null]], "pwtools.parse.PwSCFOutputFile.get_struct": [[1146, null]], "pwtools.parse.PwSCFOutputFile.get_symbols": [[1147, null]], "pwtools.parse.PwSCFOutputFile.init_attr_lst": [[1148, null]], "pwtools.parse.PwSCFOutputFile.is_set_attr": [[1149, null]], "pwtools.parse.PwSCFOutputFile.is_set_attr_lst": [[1150, null]], "pwtools.parse.PwSCFOutputFile.load": [[1151, null]], "pwtools.parse.PwSCFOutputFile.parse": [[1152, null]], "pwtools.parse.PwSCFOutputFile.raw_return": [[1153, null]], "pwtools.parse.PwSCFOutputFile.raw_slice_get": [[1154, null]], "pwtools.parse.PwSCFOutputFile.set_all": [[1155, null]], "pwtools.parse.PwSCFOutputFile.set_attr_lst": [[1156, null]], "pwtools.parse.PwSCFOutputFile.try_set_attr": [[1157, null]], "pwtools.parse.PwSCFOutputFile.try_set_attr_lst": [[1158, null]], "pwtools.parse.PwSCFOutputFile.update_units": [[1159, null]], "pwtools.parse.PwVCMDOutputFile": [[1160, null]], "pwtools.parse.PwVCMDOutputFile.apply_units": [[1161, null]], "pwtools.parse.PwVCMDOutputFile.assert_attr": [[1162, null]], "pwtools.parse.PwVCMDOutputFile.assert_attr_lst": [[1163, null]], "pwtools.parse.PwVCMDOutputFile.assert_set_attr": [[1164, null]], "pwtools.parse.PwVCMDOutputFile.assert_set_attr_lst": [[1165, null]], "pwtools.parse.PwVCMDOutputFile.check_set_attr": [[1166, null]], "pwtools.parse.PwVCMDOutputFile.check_set_attr_lst": [[1167, null]], "pwtools.parse.PwVCMDOutputFile.default_units": [[1168, null]], "pwtools.parse.PwVCMDOutputFile.dump": [[1169, null]], "pwtools.parse.PwVCMDOutputFile.get_alat": [[1170, null]], "pwtools.parse.PwVCMDOutputFile.get_cell": [[1171, null]], "pwtools.parse.PwVCMDOutputFile.get_cell_unit": [[1172, null]], "pwtools.parse.PwVCMDOutputFile.get_cont": [[1173, null]], "pwtools.parse.PwVCMDOutputFile.get_coords": [[1174, null]], "pwtools.parse.PwVCMDOutputFile.get_coords_frac": [[1175, null]], "pwtools.parse.PwVCMDOutputFile.get_coords_unit": [[1176, null]], "pwtools.parse.PwVCMDOutputFile.get_econst": [[1177, null]], "pwtools.parse.PwVCMDOutputFile.get_ekin": [[1178, null]], "pwtools.parse.PwVCMDOutputFile.get_etot": [[1179, null]], "pwtools.parse.PwVCMDOutputFile.get_forces": [[1180, null]], "pwtools.parse.PwVCMDOutputFile.get_natoms": [[1181, null]], "pwtools.parse.PwVCMDOutputFile.get_nkpoints": [[1182, null]], "pwtools.parse.PwVCMDOutputFile.get_nstep_scf": [[1183, null]], "pwtools.parse.PwVCMDOutputFile.get_return_attr": [[1184, null]], "pwtools.parse.PwVCMDOutputFile.get_scf_converged": [[1185, null]], "pwtools.parse.PwVCMDOutputFile.get_stress": [[1186, null]], "pwtools.parse.PwVCMDOutputFile.get_struct": [[1187, null]], "pwtools.parse.PwVCMDOutputFile.get_symbols": [[1188, null]], "pwtools.parse.PwVCMDOutputFile.get_temperature": [[1189, null]], "pwtools.parse.PwVCMDOutputFile.get_timestep": [[1190, null]], "pwtools.parse.PwVCMDOutputFile.get_traj": [[1191, null]], "pwtools.parse.PwVCMDOutputFile.init_attr_lst": [[1192, null]], "pwtools.parse.PwVCMDOutputFile.is_set_attr": [[1193, null]], "pwtools.parse.PwVCMDOutputFile.is_set_attr_lst": [[1194, null]], "pwtools.parse.PwVCMDOutputFile.load": [[1195, null]], "pwtools.parse.PwVCMDOutputFile.parse": [[1196, null]], "pwtools.parse.PwVCMDOutputFile.raw_return": [[1197, null]], "pwtools.parse.PwVCMDOutputFile.raw_slice_get": [[1198, null]], "pwtools.parse.PwVCMDOutputFile.set_all": [[1199, null]], "pwtools.parse.PwVCMDOutputFile.set_attr_lst": [[1200, null]], "pwtools.parse.PwVCMDOutputFile.timeaxis": [[1201, null]], "pwtools.parse.PwVCMDOutputFile.try_set_attr": [[1202, null]], "pwtools.parse.PwVCMDOutputFile.try_set_attr_lst": [[1203, null]], "pwtools.parse.PwVCMDOutputFile.update_units": [[1204, null]], "pwtools.parse.Ry": [[1205, null]], "pwtools.parse.StructureFileParser": [[1206, null]], "pwtools.parse.StructureFileParser.apply_units": [[1207, null]], "pwtools.parse.StructureFileParser.assert_attr": [[1208, null]], "pwtools.parse.StructureFileParser.assert_attr_lst": [[1209, null]], "pwtools.parse.StructureFileParser.assert_set_attr": [[1210, null]], "pwtools.parse.StructureFileParser.assert_set_attr_lst": [[1211, null]], "pwtools.parse.StructureFileParser.check_set_attr": [[1212, null]], "pwtools.parse.StructureFileParser.check_set_attr_lst": [[1213, null]], "pwtools.parse.StructureFileParser.default_units": [[1214, null]], "pwtools.parse.StructureFileParser.dump": [[1215, null]], "pwtools.parse.StructureFileParser.get_cont": [[1216, null]], "pwtools.parse.StructureFileParser.get_return_attr": [[1217, null]], "pwtools.parse.StructureFileParser.get_struct": [[1218, null]], "pwtools.parse.StructureFileParser.init_attr_lst": [[1219, null]], "pwtools.parse.StructureFileParser.is_set_attr": [[1220, null]], "pwtools.parse.StructureFileParser.is_set_attr_lst": [[1221, null]], "pwtools.parse.StructureFileParser.load": [[1222, null]], "pwtools.parse.StructureFileParser.parse": [[1223, null]], "pwtools.parse.StructureFileParser.raw_return": [[1224, null]], "pwtools.parse.StructureFileParser.raw_slice_get": [[1225, null]], "pwtools.parse.StructureFileParser.set_all": [[1226, null]], "pwtools.parse.StructureFileParser.set_attr_lst": [[1227, null]], "pwtools.parse.StructureFileParser.try_set_attr": [[1228, null]], "pwtools.parse.StructureFileParser.try_set_attr_lst": [[1229, null]], "pwtools.parse.StructureFileParser.update_units": [[1230, null]], "pwtools.parse.TrajectoryFileParser": [[1231, null]], "pwtools.parse.TrajectoryFileParser.apply_units": [[1232, null]], "pwtools.parse.TrajectoryFileParser.assert_attr": [[1233, null]], "pwtools.parse.TrajectoryFileParser.assert_attr_lst": [[1234, null]], "pwtools.parse.TrajectoryFileParser.assert_set_attr": [[1235, null]], "pwtools.parse.TrajectoryFileParser.assert_set_attr_lst": [[1236, null]], "pwtools.parse.TrajectoryFileParser.check_set_attr": [[1237, null]], "pwtools.parse.TrajectoryFileParser.check_set_attr_lst": [[1238, null]], "pwtools.parse.TrajectoryFileParser.default_units": [[1239, null]], "pwtools.parse.TrajectoryFileParser.dump": [[1240, null]], "pwtools.parse.TrajectoryFileParser.get_cont": [[1241, null]], "pwtools.parse.TrajectoryFileParser.get_return_attr": [[1242, null]], "pwtools.parse.TrajectoryFileParser.get_struct": [[1243, null]], "pwtools.parse.TrajectoryFileParser.get_traj": [[1244, null]], "pwtools.parse.TrajectoryFileParser.init_attr_lst": [[1245, null]], "pwtools.parse.TrajectoryFileParser.is_set_attr": [[1246, null]], "pwtools.parse.TrajectoryFileParser.is_set_attr_lst": [[1247, null]], "pwtools.parse.TrajectoryFileParser.load": [[1248, null]], "pwtools.parse.TrajectoryFileParser.parse": [[1249, null]], "pwtools.parse.TrajectoryFileParser.raw_return": [[1250, null]], "pwtools.parse.TrajectoryFileParser.raw_slice_get": [[1251, null]], "pwtools.parse.TrajectoryFileParser.set_all": [[1252, null]], "pwtools.parse.TrajectoryFileParser.set_attr_lst": [[1253, null]], "pwtools.parse.TrajectoryFileParser.timeaxis": [[1254, null]], "pwtools.parse.TrajectoryFileParser.try_set_attr": [[1255, null]], "pwtools.parse.TrajectoryFileParser.try_set_attr_lst": [[1256, null]], "pwtools.parse.TrajectoryFileParser.update_units": [[1257, null]], "pwtools.parse.arr1d_from_txt": [[1258, null]], "pwtools.parse.arr2d_from_txt": [[1259, null]], "pwtools.parse.axis_lens": [[1260, null]], "pwtools.parse.eV": [[1261, null]], "pwtools.parse.float_from_txt": [[1262, null]], "pwtools.parse.fs": [[1263, null]], "pwtools.parse.int_from_txt": [[1264, null]], "pwtools.parse.nstep_from_txt": [[1265, null]], "pwtools.parse.pi": [[1266, null]], "pwtools.parse.ps": [[1267, null]], "pwtools.parse.thart": [[1268, null]], "pwtools.parse.traj_from_txt": [[1269, null]], "pwtools.pwscf.EPS": [[1270, null]], "pwtools.pwscf.atpos_str": [[1271, null]], "pwtools.pwscf.atpos_str_fast": [[1272, null]], "pwtools.pwscf.atspec_str": [[1273, null]], "pwtools.pwscf.bool2str": [[1274, null]], "pwtools.pwscf.ibrav2cell": [[1275, null]], "pwtools.pwscf.kpoints_str": [[1276, null]], "pwtools.pwscf.kpoints_str_pwin": [[1277, null]], "pwtools.pwscf.kpoints_str_pwin_full": [[1278, null]], "pwtools.pwscf.kpointstr": [[1279, null]], "pwtools.pwscf.kpointstr_pwin": [[1280, null]], "pwtools.pwscf.kpointstr_pwin2": [[1281, null]], "pwtools.pwscf.read_all_dyn": [[1282, null]], "pwtools.pwscf.read_dyn": [[1283, null]], "pwtools.pwscf.read_dynmat": [[1284, null]], "pwtools.pwscf.read_dynmat_ir_raman": [[1285, null]], "pwtools.pwscf.read_dynmat_out": [[1286, null]], "pwtools.pwscf.read_matdyn_freq": [[1287, null]], "pwtools.pwscf.read_matdyn_modes": [[1288, null]], "pwtools.pydos.direct_pdos": [[1289, null]], "pwtools.pydos.fvacf": [[1290, null]], "pwtools.pydos.pdos": [[1291, null]], "pwtools.pydos.pyvacf": [[1292, null]], "pwtools.pydos.vacf_pdos": [[1293, null]], "pwtools.random.RandomStructure": [[1294, null]], "pwtools.random.RandomStructure.get_random_cryst_const": [[1295, null]], "pwtools.random.RandomStructure.get_random_struct": [[1296, null]], "pwtools.random.RandomStructureFail": [[1297, null]], "pwtools.random.pi": [[1298, null]], "pwtools.random.random_struct": [[1299, null]], "pwtools.rbf.core.JAX_MODE": [[1300, null]], "pwtools.rbf.core.Rbf": [[1301, null]], "pwtools.rbf.core.Rbf.deriv": [[1302, null]], "pwtools.rbf.core.Rbf.deriv_jax": [[1303, null]], "pwtools.rbf.core.Rbf.fit": [[1304, null]], "pwtools.rbf.core.Rbf.fit_error": [[1305, null]], "pwtools.rbf.core.Rbf.get_distsq": [[1306, null]], "pwtools.rbf.core.Rbf.get_params": [[1307, null]], "pwtools.rbf.core.Rbf.predict": [[1308, null]], "pwtools.rbf.core._np_distsq": [[1309, null]], "pwtools.rbf.core.estimate_p": [[1310, null]], "pwtools.rbf.core.euclidean_dists": [[1311, null]], "pwtools.rbf.core.jit": [[1312, null]], "pwtools.rbf.core.rbf_dct": [[1313, null]], "pwtools.rbf.core.rbf_gauss": [[1314, null]], "pwtools.rbf.core.rbf_inv_multi": [[1315, null]], "pwtools.rbf.core.rbf_multi": [[1316, null]], "pwtools.rbf.core.squared_dists": [[1317, null]], "pwtools.rbf.hyperopt.FitError": [[1318, null]], "pwtools.rbf.hyperopt.FitError.cv": [[1319, null]], "pwtools.rbf.hyperopt.FitError.err_cv": [[1320, null]], "pwtools.rbf.hyperopt.FitError.err_direct": [[1321, null]], "pwtools.rbf.hyperopt.RepeatedKFold": [[1322, null]], "pwtools.rbf.hyperopt.fit_opt": [[1323, null]], "pwtools.regex.float_re": [[1324, null]], "pwtools.signal.FIRFilter": [[1325, null]], "pwtools.signal.acorr": [[1326, null]], "pwtools.signal.cauchy": [[1327, null]], "pwtools.signal.dft": [[1328, null]], "pwtools.signal.ezfft": [[1329, null]], "pwtools.signal.fft_1d_loop": [[1330, null]], "pwtools.signal.fftsample": [[1331, null]], "pwtools.signal.find_peaks": [[1332, null]], "pwtools.signal.gauss": [[1333, null]], "pwtools.signal.lorentz": [[1334, null]], "pwtools.signal.mirror": [[1335, null]], "pwtools.signal.odd": [[1336, null]], "pwtools.signal.pad_zeros": [[1337, null]], "pwtools.signal.scale": [[1338, null]], "pwtools.signal.smooth": [[1339, null]], "pwtools.signal.welch": [[1340, null]], "pwtools.sql.SQLEntry": [[1341, null]], "pwtools.sql.SQLiteDB": [[1342, null]], "pwtools.sql.SQLiteDB.add_column": [[1343, null]], "pwtools.sql.SQLiteDB.add_columns": [[1344, null]], "pwtools.sql.SQLiteDB.attach_column": [[1345, null]], "pwtools.sql.SQLiteDB.commit": [[1346, null]], "pwtools.sql.SQLiteDB.create_table": [[1347, null]], "pwtools.sql.SQLiteDB.execute": [[1348, null]], "pwtools.sql.SQLiteDB.executemany": [[1349, null]], "pwtools.sql.SQLiteDB.executescript": [[1350, null]], "pwtools.sql.SQLiteDB.fill_column": [[1351, null]], "pwtools.sql.SQLiteDB.finish": [[1352, null]], "pwtools.sql.SQLiteDB.get_array": [[1353, null]], "pwtools.sql.SQLiteDB.get_array1d": [[1354, null]], "pwtools.sql.SQLiteDB.get_dict": [[1355, null]], "pwtools.sql.SQLiteDB.get_header": [[1356, null]], "pwtools.sql.SQLiteDB.get_list1d": [[1357, null]], "pwtools.sql.SQLiteDB.get_max_rowid": [[1358, null]], "pwtools.sql.SQLiteDB.get_single": [[1359, null]], "pwtools.sql.SQLiteDB.get_table": [[1360, null]], "pwtools.sql.SQLiteDB.has_column": [[1361, null]], "pwtools.sql.SQLiteDB.has_table": [[1362, null]], "pwtools.sql.SQLiteDB.set_table": [[1363, null]], "pwtools.sql.find_sqltype": [[1364, null]], "pwtools.sql.fix_sql_header": [[1365, null]], "pwtools.sql.fix_sqltype": [[1366, null]], "pwtools.sql.get_test_db": [[1367, null]], "pwtools.sql.makedb": [[1368, null]], "pwtools.sql.sql_column": [[1369, null]], "pwtools.sql.sql_column_old": [[1370, null]], "pwtools.sql.sql_matrix": [[1371, null]], "pwtools.symmetry.is_same_struct": [[1372, null]], "pwtools.symmetry.spglib2struct": [[1373, null]], "pwtools.symmetry.spglib_get_primitive": [[1374, null]], "pwtools.symmetry.spglib_get_spacegroup": [[1375, null]], "pwtools.symmetry.struct2spglib": [[1376, null]], "pwtools.thermo.Gibbs": [[1377, null]], "pwtools.thermo.Gibbs.calc_F": [[1378, null]], "pwtools.thermo.Gibbs.calc_G": [[1379, null]], "pwtools.thermo.Gibbs.calc_H": [[1380, null]], "pwtools.thermo.Gibbs.set_fitfunc": [[1381, null]], "pwtools.thermo.HarmonicThermo": [[1382, null]], "pwtools.thermo.HarmonicThermo.cv": [[1383, null]], "pwtools.thermo.HarmonicThermo.evib": [[1384, null]], "pwtools.thermo.HarmonicThermo.fvib": [[1385, null]], "pwtools.thermo.HarmonicThermo.isochoric_heat_capacity": [[1386, null]], "pwtools.thermo.HarmonicThermo.svib": [[1387, null]], "pwtools.thermo.HarmonicThermo.vibrational_entropy": [[1388, null]], "pwtools.thermo.HarmonicThermo.vibrational_free_energy": [[1389, null]], "pwtools.thermo.HarmonicThermo.vibrational_internal_energy": [[1390, null]], "pwtools.thermo.R": [[1391, null]], "pwtools.thermo.Ry_to_J": [[1392, null]], "pwtools.thermo.c0": [[1393, null]], "pwtools.thermo.coth": [[1394, null]], "pwtools.thermo.debye_func": [[1395, null]], "pwtools.thermo.eV": [[1396, null]], "pwtools.thermo.eV_by_Ang3_to_GPa": [[1397, null]], "pwtools.thermo.einstein_func": [[1398, null]], "pwtools.thermo.expansion": [[1399, null]], "pwtools.thermo.hplanck": [[1400, null]], "pwtools.thermo.kb": [[1401, null]], "pwtools.thermo.pi": [[1402, null]], "pwtools.timer.TagTimer": [[1403, null]], "pwtools.timer.TagTimer.p": [[1404, null]], "pwtools.timer.TagTimer.pt": [[1405, null]], "pwtools.timer.TagTimer.t": [[1406, null]], "pwtools.verbose.VERBOSE": [[1407, null]], "pwtools.verbose.verbose": [[1408, null]], "pwtools.visualize.ViewFactory": [[1409, null]], "pwtools.visualize.assert_struct": [[1410, null]], "pwtools.visualize.avogadro_cmd": [[1411, null]], "pwtools.visualize.view_avogadro": [[1412, null]], "pwtools.visualize.view_jmol": [[1413, null]], "pwtools.visualize.view_vmd_axsf": [[1414, null]], "pwtools.visualize.view_vmd_xyz": [[1415, null]], "pwtools.visualize.view_xcrysden": [[1416, null]], "pydos": [[23, null]], "random": [[24, null]], "rbf.core": [[25, null]], "rbf.hyperopt": [[26, null]], "regex": [[27, null]], "signal": [[28, null]], "sql": [[29, null]], "symmetry": [[30, null]], "thermo": [[31, null]], "timer": [[32, null]], "verbose": [[33, null]], "visualize": [[34, null]], "\u201cFake\u201d 1d a.k.a. usual QHA with varying volume": [[1431, "fake-1d-a-k-a-usual-qha-with-varying-volume"]]}, "docnames": ["generated/api/__sphinx_autodoc_module__pwtools._dcd", "generated/api/__sphinx_autodoc_module__pwtools._flib", "generated/api/__sphinx_autodoc_module__pwtools.arrayio", "generated/api/__sphinx_autodoc_module__pwtools.atomic_data", "generated/api/__sphinx_autodoc_module__pwtools.base", "generated/api/__sphinx_autodoc_module__pwtools.batch", "generated/api/__sphinx_autodoc_module__pwtools.calculators", "generated/api/__sphinx_autodoc_module__pwtools.comb", "generated/api/__sphinx_autodoc_module__pwtools.common", "generated/api/__sphinx_autodoc_module__pwtools.config", "generated/api/__sphinx_autodoc_module__pwtools.constants", "generated/api/__sphinx_autodoc_module__pwtools.crys", "generated/api/__sphinx_autodoc_module__pwtools.dcd", "generated/api/__sphinx_autodoc_module__pwtools.decorators", "generated/api/__sphinx_autodoc_module__pwtools.eos", "generated/api/__sphinx_autodoc_module__pwtools.io", "generated/api/__sphinx_autodoc_module__pwtools.kpath", "generated/api/__sphinx_autodoc_module__pwtools.lammps", "generated/api/__sphinx_autodoc_module__pwtools.mpl", "generated/api/__sphinx_autodoc_module__pwtools.mttk", "generated/api/__sphinx_autodoc_module__pwtools.num", "generated/api/__sphinx_autodoc_module__pwtools.parse", "generated/api/__sphinx_autodoc_module__pwtools.pwscf", "generated/api/__sphinx_autodoc_module__pwtools.pydos", "generated/api/__sphinx_autodoc_module__pwtools.random", "generated/api/__sphinx_autodoc_module__pwtools.rbf.core", "generated/api/__sphinx_autodoc_module__pwtools.rbf.hyperopt", "generated/api/__sphinx_autodoc_module__pwtools.regex", "generated/api/__sphinx_autodoc_module__pwtools.signal", "generated/api/__sphinx_autodoc_module__pwtools.sql", "generated/api/__sphinx_autodoc_module__pwtools.symmetry", "generated/api/__sphinx_autodoc_module__pwtools.thermo", "generated/api/__sphinx_autodoc_module__pwtools.timer", "generated/api/__sphinx_autodoc_module__pwtools.verbose", "generated/api/__sphinx_autodoc_module__pwtools.visualize", "generated/api/index", "generated/api/pwtools._dcd.get_dcd_file_info", "generated/api/pwtools._dcd.open_file", "generated/api/pwtools._dcd.read_dcd_data", "generated/api/pwtools._dcd.read_dcd_data_from_unit", "generated/api/pwtools._dcd.read_dcd_header_from_unit", "generated/api/pwtools._flib.acorr", "generated/api/pwtools._flib.angles", "generated/api/pwtools._flib.cart2frac", "generated/api/pwtools._flib.cart2frac_traj", "generated/api/pwtools._flib.distances_traj", "generated/api/pwtools._flib.distsq", "generated/api/pwtools._flib.distsq_frac", "generated/api/pwtools._flib.frac2cart", "generated/api/pwtools._flib.frac2cart_traj", "generated/api/pwtools._flib.solve", "generated/api/pwtools._flib.vacf", "generated/api/pwtools._flib.vect_loops", "generated/api/pwtools.arrayio.HEADER_COMMENT", "generated/api/pwtools.arrayio.HEADER_MAXLINES", "generated/api/pwtools.arrayio.TXT_MAXDIM", "generated/api/pwtools.arrayio._read_header_config", "generated/api/pwtools.arrayio._write_header_config", "generated/api/pwtools.arrayio.arr2d_to_3d", "generated/api/pwtools.arrayio.readtxt", "generated/api/pwtools.arrayio.writetxt", "generated/api/pwtools.atomic_data.covalent_radii", "generated/api/pwtools.atomic_data.masses", "generated/api/pwtools.atomic_data.missing", "generated/api/pwtools.atomic_data.numbers", "generated/api/pwtools.atomic_data.pt", "generated/api/pwtools.atomic_data.symbols", "generated/api/pwtools.base.FlexibleGetters", "generated/api/pwtools.base.FlexibleGetters.assert_attr", "generated/api/pwtools.base.FlexibleGetters.assert_attr_lst", "generated/api/pwtools.base.FlexibleGetters.assert_set_attr", "generated/api/pwtools.base.FlexibleGetters.assert_set_attr_lst", "generated/api/pwtools.base.FlexibleGetters.check_set_attr", "generated/api/pwtools.base.FlexibleGetters.check_set_attr_lst", "generated/api/pwtools.base.FlexibleGetters.dump", "generated/api/pwtools.base.FlexibleGetters.get_return_attr", "generated/api/pwtools.base.FlexibleGetters.init_attr_lst", "generated/api/pwtools.base.FlexibleGetters.is_set_attr", "generated/api/pwtools.base.FlexibleGetters.is_set_attr_lst", "generated/api/pwtools.base.FlexibleGetters.load", "generated/api/pwtools.base.FlexibleGetters.raw_return", "generated/api/pwtools.base.FlexibleGetters.raw_slice_get", "generated/api/pwtools.base.FlexibleGetters.set_all", "generated/api/pwtools.base.FlexibleGetters.set_attr_lst", "generated/api/pwtools.base.FlexibleGetters.try_set_attr", "generated/api/pwtools.base.FlexibleGetters.try_set_attr_lst", "generated/api/pwtools.batch.Calculation", "generated/api/pwtools.batch.Calculation.get_sql_record", "generated/api/pwtools.batch.Calculation.write_input", "generated/api/pwtools.batch.Case", "generated/api/pwtools.batch.FileTemplate", "generated/api/pwtools.batch.FileTemplate.write", "generated/api/pwtools.batch.FileTemplate.writesql", "generated/api/pwtools.batch.Machine", "generated/api/pwtools.batch.Machine.get_jobfile_basename", "generated/api/pwtools.batch.Machine.get_sql_record", "generated/api/pwtools.batch.ParameterStudy", "generated/api/pwtools.batch.ParameterStudy.write_input", "generated/api/pwtools.batch.conv_table", "generated/api/pwtools.batch.default_repl_keys", "generated/api/pwtools.calculators.CalculatorBase", "generated/api/pwtools.calculators.CalculatorBase.fill_infile_templ", "generated/api/pwtools.calculators.CalculatorBase.init_params_from_input", "generated/api/pwtools.calculators.FileIOCalculator", "generated/api/pwtools.calculators.Lammps", "generated/api/pwtools.calculators.Lammps.default_parameters", "generated/api/pwtools.calculators.Lammps.fill_infile_templ", "generated/api/pwtools.calculators.Lammps.implemented_properties", "generated/api/pwtools.calculators.Lammps.infile_templ", "generated/api/pwtools.calculators.Lammps.init_params_from_input", "generated/api/pwtools.calculators.Lammps.read_results", "generated/api/pwtools.calculators.Lammps.write_input", "generated/api/pwtools.calculators.Pwscf", "generated/api/pwtools.calculators.Pwscf.default_parameters", "generated/api/pwtools.calculators.Pwscf.fill_infile_templ", "generated/api/pwtools.calculators.Pwscf.implemented_properties", "generated/api/pwtools.calculators.Pwscf.infile_templ", "generated/api/pwtools.calculators.Pwscf.init_params_from_input", "generated/api/pwtools.calculators.Pwscf.read_results", "generated/api/pwtools.calculators.Pwscf.write_input", "generated/api/pwtools.calculators._ase_missing", "generated/api/pwtools.calculators.find_exe", "generated/api/pwtools.calculators.kpts2mp", "generated/api/pwtools.calculators.stress_pwtools2ase", "generated/api/pwtools.comb._ensure_list", "generated/api/pwtools.comb.nested_loops", "generated/api/pwtools.comb.unique2d", "generated/api/pwtools.common.EPS", "generated/api/pwtools.common.add_to_config", "generated/api/pwtools.common.asseq", "generated/api/pwtools.common.assert_cond", "generated/api/pwtools.common.backtick", "generated/api/pwtools.common.backup", "generated/api/pwtools.common.cpickle_load", "generated/api/pwtools.common.dict2class", "generated/api/pwtools.common.dict2str", "generated/api/pwtools.common.ffloat", "generated/api/pwtools.common.file_read", "generated/api/pwtools.common.file_readlines", "generated/api/pwtools.common.file_template_replace", "generated/api/pwtools.common.file_write", "generated/api/pwtools.common.fix_eps", "generated/api/pwtools.common.flatten", "generated/api/pwtools.common.fpj", "generated/api/pwtools.common.frepr", "generated/api/pwtools.common.fullpath", "generated/api/pwtools.common.fullpathjoin", "generated/api/pwtools.common.get_filename", "generated/api/pwtools.common.iflatten", "generated/api/pwtools.common.is_seq", "generated/api/pwtools.common.makedirs", "generated/api/pwtools.common.permit_sigpipe", "generated/api/pwtools.common.pop_from_list", "generated/api/pwtools.common.print_dct", "generated/api/pwtools.common.seq2str", "generated/api/pwtools.common.str2seq", "generated/api/pwtools.common.str2tup", "generated/api/pwtools.common.str_arr", "generated/api/pwtools.common.system", "generated/api/pwtools.common.template_replace", "generated/api/pwtools.common.tobool", "generated/api/pwtools.common.toslice", "generated/api/pwtools.common.tup2str", "generated/api/pwtools.config.name", "generated/api/pwtools.config.use_jax", "generated/api/pwtools.constants.Ang", "generated/api/pwtools.constants.Angstrom", "generated/api/pwtools.constants.Bohr", "generated/api/pwtools.constants.Bohr_to_Ang", "generated/api/pwtools.constants.Eh", "generated/api/pwtools.constants.Eryd", "generated/api/pwtools.constants.GPa", "generated/api/pwtools.constants.Ha", "generated/api/pwtools.constants.Ha_to_eV", "generated/api/pwtools.constants.Hartree", "generated/api/pwtools.constants.J_to_eV", "generated/api/pwtools.constants.J_to_rcm", "generated/api/pwtools.constants.R", "generated/api/pwtools.constants.Ry", "generated/api/pwtools.constants.Ry_to_Ha", "generated/api/pwtools.constants.Ry_to_Hz", "generated/api/pwtools.constants.Ry_to_J", "generated/api/pwtools.constants.Ry_to_eV", "generated/api/pwtools.constants.Ry_to_rcm", "generated/api/pwtools.constants.Rydberg", "generated/api/pwtools.constants.a0", "generated/api/pwtools.constants.a0_to_A", "generated/api/pwtools.constants.alpha", "generated/api/pwtools.constants.amu", "generated/api/pwtools.constants.avo", "generated/api/pwtools.constants.c0", "generated/api/pwtools.constants.dyn", "generated/api/pwtools.constants.e0", "generated/api/pwtools.constants.eV", "generated/api/pwtools.constants.eV_by_Ang3_to_GPa", "generated/api/pwtools.constants.eV_by_Ang3_to_Pa", "generated/api/pwtools.constants.eps0", "generated/api/pwtools.constants.fs", "generated/api/pwtools.constants.h", "generated/api/pwtools.constants.hbar", "generated/api/pwtools.constants.hplanck", "generated/api/pwtools.constants.kb", "generated/api/pwtools.constants.m0", "generated/api/pwtools.constants.mu0", "generated/api/pwtools.constants.pi", "generated/api/pwtools.constants.ps", "generated/api/pwtools.constants.rcm_to_Hz", "generated/api/pwtools.constants.th", "generated/api/pwtools.constants.thart", "generated/api/pwtools.constants.tryd", "generated/api/pwtools.crys.Angstrom", "generated/api/pwtools.crys.FakeASEAtoms", "generated/api/pwtools.crys.FakeASEAtoms.apply_units", "generated/api/pwtools.crys.FakeASEAtoms.assert_attr", "generated/api/pwtools.crys.FakeASEAtoms.assert_attr_lst", "generated/api/pwtools.crys.FakeASEAtoms.assert_set_attr", "generated/api/pwtools.crys.FakeASEAtoms.assert_set_attr_lst", "generated/api/pwtools.crys.FakeASEAtoms.check_set_attr", "generated/api/pwtools.crys.FakeASEAtoms.check_set_attr_lst", "generated/api/pwtools.crys.FakeASEAtoms.compress", "generated/api/pwtools.crys.FakeASEAtoms.copy", "generated/api/pwtools.crys.FakeASEAtoms.dump", "generated/api/pwtools.crys.FakeASEAtoms.get_ase_atoms", "generated/api/pwtools.crys.FakeASEAtoms.get_atomic_numbers", "generated/api/pwtools.crys.FakeASEAtoms.get_cell", "generated/api/pwtools.crys.FakeASEAtoms.get_coords", "generated/api/pwtools.crys.FakeASEAtoms.get_coords_frac", "generated/api/pwtools.crys.FakeASEAtoms.get_cryst_const", "generated/api/pwtools.crys.FakeASEAtoms.get_ekin", "generated/api/pwtools.crys.FakeASEAtoms.get_etot", "generated/api/pwtools.crys.FakeASEAtoms.get_fake_ase_atoms", "generated/api/pwtools.crys.FakeASEAtoms.get_forces", "generated/api/pwtools.crys.FakeASEAtoms.get_magnetic_moments", "generated/api/pwtools.crys.FakeASEAtoms.get_mass", "generated/api/pwtools.crys.FakeASEAtoms.get_mass_unique", "generated/api/pwtools.crys.FakeASEAtoms.get_natoms", "generated/api/pwtools.crys.FakeASEAtoms.get_nspecies", "generated/api/pwtools.crys.FakeASEAtoms.get_nstep", "generated/api/pwtools.crys.FakeASEAtoms.get_ntypat", "generated/api/pwtools.crys.FakeASEAtoms.get_order", "generated/api/pwtools.crys.FakeASEAtoms.get_pressure", "generated/api/pwtools.crys.FakeASEAtoms.get_return_attr", "generated/api/pwtools.crys.FakeASEAtoms.get_spglib", "generated/api/pwtools.crys.FakeASEAtoms.get_stress", "generated/api/pwtools.crys.FakeASEAtoms.get_symbols", "generated/api/pwtools.crys.FakeASEAtoms.get_symbols_unique", "generated/api/pwtools.crys.FakeASEAtoms.get_temperature", "generated/api/pwtools.crys.FakeASEAtoms.get_time", "generated/api/pwtools.crys.FakeASEAtoms.get_timestep", "generated/api/pwtools.crys.FakeASEAtoms.get_traj", "generated/api/pwtools.crys.FakeASEAtoms.get_typat", "generated/api/pwtools.crys.FakeASEAtoms.get_velocity", "generated/api/pwtools.crys.FakeASEAtoms.get_volume", "generated/api/pwtools.crys.FakeASEAtoms.get_znucl", "generated/api/pwtools.crys.FakeASEAtoms.get_znucl_unique", "generated/api/pwtools.crys.FakeASEAtoms.init_attr_lst", "generated/api/pwtools.crys.FakeASEAtoms.is_set_attr", "generated/api/pwtools.crys.FakeASEAtoms.is_set_attr_lst", "generated/api/pwtools.crys.FakeASEAtoms.is_struct", "generated/api/pwtools.crys.FakeASEAtoms.is_traj", "generated/api/pwtools.crys.FakeASEAtoms.load", "generated/api/pwtools.crys.FakeASEAtoms.raw_return", "generated/api/pwtools.crys.FakeASEAtoms.raw_slice_get", "generated/api/pwtools.crys.FakeASEAtoms.set_all", "generated/api/pwtools.crys.FakeASEAtoms.set_attr_lst", "generated/api/pwtools.crys.FakeASEAtoms.timeaxis", "generated/api/pwtools.crys.FakeASEAtoms.try_set_attr", "generated/api/pwtools.crys.FakeASEAtoms.try_set_attr_lst", "generated/api/pwtools.crys.FakeASEAtoms.update_units", "generated/api/pwtools.crys.Structure", "generated/api/pwtools.crys.Structure.apply_units", "generated/api/pwtools.crys.Structure.assert_attr", "generated/api/pwtools.crys.Structure.assert_attr_lst", "generated/api/pwtools.crys.Structure.assert_set_attr", "generated/api/pwtools.crys.Structure.assert_set_attr_lst", "generated/api/pwtools.crys.Structure.check_set_attr", "generated/api/pwtools.crys.Structure.check_set_attr_lst", "generated/api/pwtools.crys.Structure.compress", "generated/api/pwtools.crys.Structure.copy", "generated/api/pwtools.crys.Structure.dump", "generated/api/pwtools.crys.Structure.get_ase_atoms", "generated/api/pwtools.crys.Structure.get_cell", "generated/api/pwtools.crys.Structure.get_coords", "generated/api/pwtools.crys.Structure.get_coords_frac", "generated/api/pwtools.crys.Structure.get_cryst_const", "generated/api/pwtools.crys.Structure.get_ekin", "generated/api/pwtools.crys.Structure.get_etot", "generated/api/pwtools.crys.Structure.get_fake_ase_atoms", "generated/api/pwtools.crys.Structure.get_forces", "generated/api/pwtools.crys.Structure.get_mass", "generated/api/pwtools.crys.Structure.get_mass_unique", "generated/api/pwtools.crys.Structure.get_natoms", "generated/api/pwtools.crys.Structure.get_nspecies", "generated/api/pwtools.crys.Structure.get_nstep", "generated/api/pwtools.crys.Structure.get_ntypat", "generated/api/pwtools.crys.Structure.get_order", "generated/api/pwtools.crys.Structure.get_pressure", "generated/api/pwtools.crys.Structure.get_return_attr", "generated/api/pwtools.crys.Structure.get_spglib", "generated/api/pwtools.crys.Structure.get_stress", "generated/api/pwtools.crys.Structure.get_symbols", "generated/api/pwtools.crys.Structure.get_symbols_unique", "generated/api/pwtools.crys.Structure.get_temperature", "generated/api/pwtools.crys.Structure.get_time", "generated/api/pwtools.crys.Structure.get_timestep", "generated/api/pwtools.crys.Structure.get_traj", "generated/api/pwtools.crys.Structure.get_typat", "generated/api/pwtools.crys.Structure.get_velocity", "generated/api/pwtools.crys.Structure.get_volume", "generated/api/pwtools.crys.Structure.get_znucl", "generated/api/pwtools.crys.Structure.get_znucl_unique", "generated/api/pwtools.crys.Structure.init_attr_lst", "generated/api/pwtools.crys.Structure.is_set_attr", "generated/api/pwtools.crys.Structure.is_set_attr_lst", "generated/api/pwtools.crys.Structure.is_struct", "generated/api/pwtools.crys.Structure.is_traj", "generated/api/pwtools.crys.Structure.load", "generated/api/pwtools.crys.Structure.raw_return", "generated/api/pwtools.crys.Structure.raw_slice_get", "generated/api/pwtools.crys.Structure.set_all", "generated/api/pwtools.crys.Structure.set_attr_lst", "generated/api/pwtools.crys.Structure.timeaxis", "generated/api/pwtools.crys.Structure.try_set_attr", "generated/api/pwtools.crys.Structure.try_set_attr_lst", "generated/api/pwtools.crys.Structure.update_units", "generated/api/pwtools.crys.Trajectory", "generated/api/pwtools.crys.Trajectory.__getitem__", "generated/api/pwtools.crys.Trajectory.apply_units", "generated/api/pwtools.crys.Trajectory.assert_attr", "generated/api/pwtools.crys.Trajectory.assert_attr_lst", "generated/api/pwtools.crys.Trajectory.assert_set_attr", "generated/api/pwtools.crys.Trajectory.assert_set_attr_lst", "generated/api/pwtools.crys.Trajectory.check_set_attr", "generated/api/pwtools.crys.Trajectory.check_set_attr_lst", "generated/api/pwtools.crys.Trajectory.compress", "generated/api/pwtools.crys.Trajectory.copy", "generated/api/pwtools.crys.Trajectory.dump", "generated/api/pwtools.crys.Trajectory.get_ase_atoms", "generated/api/pwtools.crys.Trajectory.get_cell", "generated/api/pwtools.crys.Trajectory.get_coords", "generated/api/pwtools.crys.Trajectory.get_coords_frac", "generated/api/pwtools.crys.Trajectory.get_cryst_const", "generated/api/pwtools.crys.Trajectory.get_ekin", "generated/api/pwtools.crys.Trajectory.get_etot", "generated/api/pwtools.crys.Trajectory.get_fake_ase_atoms", "generated/api/pwtools.crys.Trajectory.get_forces", "generated/api/pwtools.crys.Trajectory.get_mass", "generated/api/pwtools.crys.Trajectory.get_mass_unique", "generated/api/pwtools.crys.Trajectory.get_natoms", "generated/api/pwtools.crys.Trajectory.get_nspecies", "generated/api/pwtools.crys.Trajectory.get_nstep", "generated/api/pwtools.crys.Trajectory.get_ntypat", "generated/api/pwtools.crys.Trajectory.get_order", "generated/api/pwtools.crys.Trajectory.get_pressure", "generated/api/pwtools.crys.Trajectory.get_return_attr", "generated/api/pwtools.crys.Trajectory.get_spglib", "generated/api/pwtools.crys.Trajectory.get_stress", "generated/api/pwtools.crys.Trajectory.get_symbols", "generated/api/pwtools.crys.Trajectory.get_symbols_unique", "generated/api/pwtools.crys.Trajectory.get_temperature", "generated/api/pwtools.crys.Trajectory.get_time", "generated/api/pwtools.crys.Trajectory.get_timestep", "generated/api/pwtools.crys.Trajectory.get_traj", "generated/api/pwtools.crys.Trajectory.get_typat", "generated/api/pwtools.crys.Trajectory.get_velocity", "generated/api/pwtools.crys.Trajectory.get_volume", "generated/api/pwtools.crys.Trajectory.get_znucl", "generated/api/pwtools.crys.Trajectory.get_znucl_unique", "generated/api/pwtools.crys.Trajectory.init_attr_lst", "generated/api/pwtools.crys.Trajectory.is_set_attr", "generated/api/pwtools.crys.Trajectory.is_set_attr_lst", "generated/api/pwtools.crys.Trajectory.is_struct", "generated/api/pwtools.crys.Trajectory.is_traj", "generated/api/pwtools.crys.Trajectory.load", "generated/api/pwtools.crys.Trajectory.raw_return", "generated/api/pwtools.crys.Trajectory.raw_slice_get", "generated/api/pwtools.crys.Trajectory.set_all", "generated/api/pwtools.crys.Trajectory.set_attr_lst", "generated/api/pwtools.crys.Trajectory.timeaxis", "generated/api/pwtools.crys.Trajectory.try_set_attr", "generated/api/pwtools.crys.Trajectory.try_set_attr_lst", "generated/api/pwtools.crys.Trajectory.update_units", "generated/api/pwtools.crys.UnitsHandler", "generated/api/pwtools.crys.UnitsHandler.apply_units", "generated/api/pwtools.crys.UnitsHandler.assert_attr", "generated/api/pwtools.crys.UnitsHandler.assert_attr_lst", "generated/api/pwtools.crys.UnitsHandler.assert_set_attr", "generated/api/pwtools.crys.UnitsHandler.assert_set_attr_lst", "generated/api/pwtools.crys.UnitsHandler.check_set_attr", "generated/api/pwtools.crys.UnitsHandler.check_set_attr_lst", "generated/api/pwtools.crys.UnitsHandler.dump", "generated/api/pwtools.crys.UnitsHandler.get_return_attr", "generated/api/pwtools.crys.UnitsHandler.init_attr_lst", "generated/api/pwtools.crys.UnitsHandler.is_set_attr", "generated/api/pwtools.crys.UnitsHandler.is_set_attr_lst", "generated/api/pwtools.crys.UnitsHandler.load", "generated/api/pwtools.crys.UnitsHandler.raw_return", "generated/api/pwtools.crys.UnitsHandler.raw_slice_get", "generated/api/pwtools.crys.UnitsHandler.set_all", "generated/api/pwtools.crys.UnitsHandler.set_attr_lst", "generated/api/pwtools.crys.UnitsHandler.try_set_attr", "generated/api/pwtools.crys.UnitsHandler.try_set_attr_lst", "generated/api/pwtools.crys.UnitsHandler.update_units", "generated/api/pwtools.crys._trans", "generated/api/pwtools.crys.align_cart", "generated/api/pwtools.crys.angle", "generated/api/pwtools.crys.angles", "generated/api/pwtools.crys.atoms2struct", "generated/api/pwtools.crys.call_vmd_measure_gofr", "generated/api/pwtools.crys.cc2cell", "generated/api/pwtools.crys.cc2cell3d", "generated/api/pwtools.crys.cc2celldm", "generated/api/pwtools.crys.cell2cc", "generated/api/pwtools.crys.cell2cc3d", "generated/api/pwtools.crys.celldm2cc", "generated/api/pwtools.crys.center_on_atom", "generated/api/pwtools.crys.compress", "generated/api/pwtools.crys.concatenate", "generated/api/pwtools.crys.coord_trans", "generated/api/pwtools.crys.coord_trans3d", "generated/api/pwtools.crys.distances", "generated/api/pwtools.crys.distances_traj", "generated/api/pwtools.crys.grid_in_cell", "generated/api/pwtools.crys.kgrid", "generated/api/pwtools.crys.mean", "generated/api/pwtools.crys.min_image_convention", "generated/api/pwtools.crys.mix", "generated/api/pwtools.crys.nearest_neighbors", "generated/api/pwtools.crys.nearest_neighbors_from_dists", "generated/api/pwtools.crys.nearest_neighbors_struct", "generated/api/pwtools.crys.pbc_wrap", "generated/api/pwtools.crys.pbc_wrap_coords", "generated/api/pwtools.crys.pi", "generated/api/pwtools.crys.populated_attrs", "generated/api/pwtools.crys.recip_cell", "generated/api/pwtools.crys.rmax_smith", "generated/api/pwtools.crys.rmsd", "generated/api/pwtools.crys.rpdf", "generated/api/pwtools.crys.scell", "generated/api/pwtools.crys.scell3d", "generated/api/pwtools.crys.scell_mask", "generated/api/pwtools.crys.smooth", "generated/api/pwtools.crys.struct2atoms", "generated/api/pwtools.crys.struct2traj", "generated/api/pwtools.crys.tensor2voigt", "generated/api/pwtools.crys.tensor2voigt3d", "generated/api/pwtools.crys.velocity_traj", "generated/api/pwtools.crys.vmd_measure_gofr", "generated/api/pwtools.crys.voigt2tensor", "generated/api/pwtools.crys.voigt2tensor3d", "generated/api/pwtools.crys.volume_cc", "generated/api/pwtools.crys.volume_cc3d", "generated/api/pwtools.crys.volume_cell", "generated/api/pwtools.crys.volume_cell3d", "generated/api/pwtools.dcd.HEADER_DTYPE", "generated/api/pwtools.dcd.HEADER_TYPES", "generated/api/pwtools.dcd.read_dcd_data", "generated/api/pwtools.dcd.read_dcd_data_f", "generated/api/pwtools.dcd.read_dcd_data_ref", "generated/api/pwtools.dcd.read_dcd_header", "generated/api/pwtools.decorators.crys_add_doc", "generated/api/pwtools.decorators.lazyprop", "generated/api/pwtools.decorators.open_and_close", "generated/api/pwtools.eos.Ang", "generated/api/pwtools.eos.Bohr", "generated/api/pwtools.eos.EVFunction", "generated/api/pwtools.eos.EVFunction.dct2lst", "generated/api/pwtools.eos.EVFunction.deriv", "generated/api/pwtools.eos.EVFunction.evaluate", "generated/api/pwtools.eos.EVFunction.get_min", "generated/api/pwtools.eos.EVFunction.lst2dct", "generated/api/pwtools.eos.ElkEOSFit", "generated/api/pwtools.eos.ElkEOSFit.assert_attr", "generated/api/pwtools.eos.ElkEOSFit.assert_attr_lst", "generated/api/pwtools.eos.ElkEOSFit.assert_set_attr", "generated/api/pwtools.eos.ElkEOSFit.assert_set_attr_lst", "generated/api/pwtools.eos.ElkEOSFit.calc_bv", "generated/api/pwtools.eos.ElkEOSFit.check_set_attr", "generated/api/pwtools.eos.ElkEOSFit.check_set_attr_lst", "generated/api/pwtools.eos.ElkEOSFit.dump", "generated/api/pwtools.eos.ElkEOSFit.fit", "generated/api/pwtools.eos.ElkEOSFit.get_min", "generated/api/pwtools.eos.ElkEOSFit.get_return_attr", "generated/api/pwtools.eos.ElkEOSFit.get_spl_bv", "generated/api/pwtools.eos.ElkEOSFit.get_spl_ev", "generated/api/pwtools.eos.ElkEOSFit.get_spl_pv", "generated/api/pwtools.eos.ElkEOSFit.init_attr_lst", "generated/api/pwtools.eos.ElkEOSFit.is_set_attr", "generated/api/pwtools.eos.ElkEOSFit.is_set_attr_lst", "generated/api/pwtools.eos.ElkEOSFit.load", "generated/api/pwtools.eos.ElkEOSFit.raw_return", "generated/api/pwtools.eos.ElkEOSFit.raw_slice_get", "generated/api/pwtools.eos.ElkEOSFit.set_all", "generated/api/pwtools.eos.ElkEOSFit.set_attr_lst", "generated/api/pwtools.eos.ElkEOSFit.set_bv_method", "generated/api/pwtools.eos.ElkEOSFit.try_set_attr", "generated/api/pwtools.eos.ElkEOSFit.try_set_attr_lst", "generated/api/pwtools.eos.EosFit", "generated/api/pwtools.eos.EosFit.bulkmod", "generated/api/pwtools.eos.EosFit.fit", "generated/api/pwtools.eos.EosFit.get_max", "generated/api/pwtools.eos.EosFit.get_min", "generated/api/pwtools.eos.EosFit.get_root", "generated/api/pwtools.eos.EosFit.is_mono", "generated/api/pwtools.eos.EosFit.pressure", "generated/api/pwtools.eos.EosFit.spl", "generated/api/pwtools.eos.ExternEOS", "generated/api/pwtools.eos.ExternEOS.assert_attr", "generated/api/pwtools.eos.ExternEOS.assert_attr_lst", "generated/api/pwtools.eos.ExternEOS.assert_set_attr", "generated/api/pwtools.eos.ExternEOS.assert_set_attr_lst", "generated/api/pwtools.eos.ExternEOS.calc_bv", "generated/api/pwtools.eos.ExternEOS.check_set_attr", "generated/api/pwtools.eos.ExternEOS.check_set_attr_lst", "generated/api/pwtools.eos.ExternEOS.dump", "generated/api/pwtools.eos.ExternEOS.fit", "generated/api/pwtools.eos.ExternEOS.get_min", "generated/api/pwtools.eos.ExternEOS.get_return_attr", "generated/api/pwtools.eos.ExternEOS.get_spl_bv", "generated/api/pwtools.eos.ExternEOS.get_spl_ev", "generated/api/pwtools.eos.ExternEOS.get_spl_pv", "generated/api/pwtools.eos.ExternEOS.init_attr_lst", "generated/api/pwtools.eos.ExternEOS.is_set_attr", "generated/api/pwtools.eos.ExternEOS.is_set_attr_lst", "generated/api/pwtools.eos.ExternEOS.load", "generated/api/pwtools.eos.ExternEOS.raw_return", "generated/api/pwtools.eos.ExternEOS.raw_slice_get", "generated/api/pwtools.eos.ExternEOS.set_all", "generated/api/pwtools.eos.ExternEOS.set_attr_lst", "generated/api/pwtools.eos.ExternEOS.set_bv_method", "generated/api/pwtools.eos.ExternEOS.try_set_attr", "generated/api/pwtools.eos.ExternEOS.try_set_attr_lst", "generated/api/pwtools.eos.Ha", "generated/api/pwtools.eos.MaxDerivException", "generated/api/pwtools.eos.Ry", "generated/api/pwtools.eos.Vinet", "generated/api/pwtools.eos.Vinet.dct2lst", "generated/api/pwtools.eos.Vinet.deriv", "generated/api/pwtools.eos.Vinet.evaluate", "generated/api/pwtools.eos.Vinet.get_min", "generated/api/pwtools.eos.Vinet.lst2dct", "generated/api/pwtools.eos._vinet", "generated/api/pwtools.eos._vinet_deriv1", "generated/api/pwtools.eos._vinet_deriv2", "generated/api/pwtools.eos.eV", "generated/api/pwtools.eos.eV_by_Ang3_to_GPa", "generated/api/pwtools.io.Ha", "generated/api/pwtools.io.ReadFactory", "generated/api/pwtools.io.eV", "generated/api/pwtools.io.load_h5", "generated/api/pwtools.io.read_cif", "generated/api/pwtools.io.read_cp2k_md", "generated/api/pwtools.io.read_cp2k_md_dcd", "generated/api/pwtools.io.read_cp2k_relax", "generated/api/pwtools.io.read_cp2k_scf", "generated/api/pwtools.io.read_cpmd_md", "generated/api/pwtools.io.read_cpmd_scf", "generated/api/pwtools.io.read_h5", "generated/api/pwtools.io.read_lammps_md_dcd", "generated/api/pwtools.io.read_lammps_md_txt", "generated/api/pwtools.io.read_pdb", "generated/api/pwtools.io.read_pickle", "generated/api/pwtools.io.read_pw_md", "generated/api/pwtools.io.read_pw_scf", "generated/api/pwtools.io.read_pw_vcmd", "generated/api/pwtools.io.wien_sgroup_input", "generated/api/pwtools.io.write_axsf", "generated/api/pwtools.io.write_cif", "generated/api/pwtools.io.write_h5", "generated/api/pwtools.io.write_lammps", "generated/api/pwtools.io.write_wien_sgroup", "generated/api/pwtools.io.write_xyz", "generated/api/pwtools.kpath.SpecialPointsPath", "generated/api/pwtools.kpath.get_path_norm", "generated/api/pwtools.kpath.kpath", "generated/api/pwtools.kpath.plot_dis", "generated/api/pwtools.lammps.struct_str", "generated/api/pwtools.mpl.Data2D", "generated/api/pwtools.mpl.Data2D.copy", "generated/api/pwtools.mpl.Data2D.update", "generated/api/pwtools.mpl.Data3D", "generated/api/pwtools.mpl.Data3D.copy", "generated/api/pwtools.mpl.Data3D.update", "generated/api/pwtools.mpl.Plot", "generated/api/pwtools.mpl.Plot.collect_legends", "generated/api/pwtools.mpl.Plot.legend", "generated/api/pwtools.mpl.Plot.savefig", "generated/api/pwtools.mpl.cc", "generated/api/pwtools.mpl.ccl", "generated/api/pwtools.mpl.ccm", "generated/api/pwtools.mpl.clc", "generated/api/pwtools.mpl.clean_ax3d", "generated/api/pwtools.mpl.cm", "generated/api/pwtools.mpl.cmc", "generated/api/pwtools.mpl.collect_legends", "generated/api/pwtools.mpl.color_ax", "generated/api/pwtools.mpl.colors", "generated/api/pwtools.mpl.colors_linestyles", "generated/api/pwtools.mpl.colors_markers", "generated/api/pwtools.mpl.cycle_colors", "generated/api/pwtools.mpl.cycle_colors_linestyles", "generated/api/pwtools.mpl.cycle_colors_markers", "generated/api/pwtools.mpl.cycle_linestyles_colors", "generated/api/pwtools.mpl.cycle_markers", "generated/api/pwtools.mpl.cycle_markers_colors", "generated/api/pwtools.mpl.fig_ax", "generated/api/pwtools.mpl.fig_ax3d", "generated/api/pwtools.mpl.get_2d_testdata", "generated/api/pwtools.mpl.ic", "generated/api/pwtools.mpl.icl", "generated/api/pwtools.mpl.icm", "generated/api/pwtools.mpl.ilc", "generated/api/pwtools.mpl.im", "generated/api/pwtools.mpl.imc", "generated/api/pwtools.mpl.iter_colors", "generated/api/pwtools.mpl.iter_colors_linestyles", "generated/api/pwtools.mpl.iter_colors_markers", "generated/api/pwtools.mpl.iter_linestyles", "generated/api/pwtools.mpl.iter_linestyles_colors", "generated/api/pwtools.mpl.iter_markers", "generated/api/pwtools.mpl.iter_markers_colors", "generated/api/pwtools.mpl.linestyles", "generated/api/pwtools.mpl.linestyles_colors", "generated/api/pwtools.mpl.make_axes_grid_fig", "generated/api/pwtools.mpl.markers", "generated/api/pwtools.mpl.markers_colors", "generated/api/pwtools.mpl.meshgridt", "generated/api/pwtools.mpl.new_axis", "generated/api/pwtools.mpl.plotlines3d", "generated/api/pwtools.mpl.prepare_plots", "generated/api/pwtools.mpl.smooth_color", "generated/api/pwtools.mpl.smooth_color_func", "generated/api/pwtools.mttk.a0", "generated/api/pwtools.mttk.add_doc", "generated/api/pwtools.mttk.barostat_mass_w", "generated/api/pwtools.mttk.barostat_mass_wg", "generated/api/pwtools.mttk.barostat_nhc_masses", "generated/api/pwtools.mttk.kb", "generated/api/pwtools.mttk.m0", "generated/api/pwtools.mttk.particle_nhc_masses", "generated/api/pwtools.num.DataND", "generated/api/pwtools.num.DataND.a2_to_an", "generated/api/pwtools.num.EPS", "generated/api/pwtools.num.Fit1D", "generated/api/pwtools.num.Fit1D.get_max", "generated/api/pwtools.num.Fit1D.get_min", "generated/api/pwtools.num.Fit1D.get_root", "generated/api/pwtools.num.Fit1D.is_mono", "generated/api/pwtools.num.Interpol2D", "generated/api/pwtools.num.Interpol2D.get_min", "generated/api/pwtools.num.PolyFit", "generated/api/pwtools.num.PolyFit.get_min", "generated/api/pwtools.num.PolyFit1D", "generated/api/pwtools.num.PolyFit1D.get_max", "generated/api/pwtools.num.PolyFit1D.get_min", "generated/api/pwtools.num.PolyFit1D.get_root", "generated/api/pwtools.num.PolyFit1D.is_mono", "generated/api/pwtools.num.Spline", "generated/api/pwtools.num.Spline.get_max", "generated/api/pwtools.num.Spline.get_min", "generated/api/pwtools.num.Spline.get_root", "generated/api/pwtools.num.Spline.invsplev", "generated/api/pwtools.num.Spline.is_mono", "generated/api/pwtools.num.Spline.splev", "generated/api/pwtools.num.deriv_spl", "generated/api/pwtools.num.distsq", "generated/api/pwtools.num.euler_matrix", "generated/api/pwtools.num.extend_array", "generated/api/pwtools.num.fempty", "generated/api/pwtools.num.findmin", "generated/api/pwtools.num.findroot", "generated/api/pwtools.num.inner_points_mask", "generated/api/pwtools.num.match_mask", "generated/api/pwtools.num.meshgridt", "generated/api/pwtools.num.norm", "generated/api/pwtools.num.norm_int", "generated/api/pwtools.num.normalize", "generated/api/pwtools.num.order_similar", "generated/api/pwtools.num.pi", "generated/api/pwtools.num.poly_powers", "generated/api/pwtools.num.poly_str", "generated/api/pwtools.num.polyfit", "generated/api/pwtools.num.polyval", "generated/api/pwtools.num.rms", "generated/api/pwtools.num.rms3d", "generated/api/pwtools.num.round_up_next_multiple", "generated/api/pwtools.num.sliceput", "generated/api/pwtools.num.slicetake", "generated/api/pwtools.num.sum", "generated/api/pwtools.num.vander", "generated/api/pwtools.num.vlinspace", "generated/api/pwtools.parse.AWK", "generated/api/pwtools.parse.Ang", "generated/api/pwtools.parse.Angstrom", "generated/api/pwtools.parse.Bohr", "generated/api/pwtools.parse.CifFile", "generated/api/pwtools.parse.CifFile.apply_units", "generated/api/pwtools.parse.CifFile.assert_attr", "generated/api/pwtools.parse.CifFile.assert_attr_lst", "generated/api/pwtools.parse.CifFile.assert_set_attr", "generated/api/pwtools.parse.CifFile.assert_set_attr_lst", "generated/api/pwtools.parse.CifFile.check_set_attr", "generated/api/pwtools.parse.CifFile.check_set_attr_lst", "generated/api/pwtools.parse.CifFile.cif_clear_atom_symbol", "generated/api/pwtools.parse.CifFile.cif_str2float", "generated/api/pwtools.parse.CifFile.default_units", "generated/api/pwtools.parse.CifFile.dump", "generated/api/pwtools.parse.CifFile.get_cont", "generated/api/pwtools.parse.CifFile.get_coords", "generated/api/pwtools.parse.CifFile.get_coords_frac", "generated/api/pwtools.parse.CifFile.get_cryst_const", "generated/api/pwtools.parse.CifFile.get_return_attr", "generated/api/pwtools.parse.CifFile.get_struct", "generated/api/pwtools.parse.CifFile.get_symbols", "generated/api/pwtools.parse.CifFile.init_attr_lst", "generated/api/pwtools.parse.CifFile.is_set_attr", "generated/api/pwtools.parse.CifFile.is_set_attr_lst", "generated/api/pwtools.parse.CifFile.load", "generated/api/pwtools.parse.CifFile.parse", "generated/api/pwtools.parse.CifFile.raw_return", "generated/api/pwtools.parse.CifFile.raw_slice_get", "generated/api/pwtools.parse.CifFile.set_all", "generated/api/pwtools.parse.CifFile.set_attr_lst", "generated/api/pwtools.parse.CifFile.try_set_attr", "generated/api/pwtools.parse.CifFile.try_set_attr_lst", "generated/api/pwtools.parse.CifFile.update_units", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.apply_units", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.assert_attr", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.assert_attr_lst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.assert_set_attr", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.assert_set_attr_lst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.check_set_attr", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.check_set_attr_lst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.default_units", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.dump", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_cell", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_cont", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_coords", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_cryst_const", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_econst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_ekin", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_etot", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_forces", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_natoms", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_nstep", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_return_attr", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_stress", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_struct", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_symbols", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_temperature", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_timestep", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_traj", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_velocity", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_volume", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.init_attr_lst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.is_set_attr", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.is_set_attr_lst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.load", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.parse", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.raw_return", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.raw_slice_get", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.set_all", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.set_attr_lst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.timeaxis", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.try_set_attr", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.try_set_attr_lst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.update_units", "generated/api/pwtools.parse.Cp2kMDOutputFile", "generated/api/pwtools.parse.Cp2kMDOutputFile.apply_units", "generated/api/pwtools.parse.Cp2kMDOutputFile.assert_attr", "generated/api/pwtools.parse.Cp2kMDOutputFile.assert_attr_lst", "generated/api/pwtools.parse.Cp2kMDOutputFile.assert_set_attr", "generated/api/pwtools.parse.Cp2kMDOutputFile.assert_set_attr_lst", "generated/api/pwtools.parse.Cp2kMDOutputFile.check_set_attr", "generated/api/pwtools.parse.Cp2kMDOutputFile.check_set_attr_lst", "generated/api/pwtools.parse.Cp2kMDOutputFile.default_units", "generated/api/pwtools.parse.Cp2kMDOutputFile.dump", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_cell", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_cont", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_coords", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_econst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_ekin", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_etot", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_forces", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_natoms", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_return_attr", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_stress", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_struct", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_symbols", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_temperature", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_timestep", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_traj", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_velocity", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_volume", "generated/api/pwtools.parse.Cp2kMDOutputFile.init_attr_lst", "generated/api/pwtools.parse.Cp2kMDOutputFile.is_set_attr", "generated/api/pwtools.parse.Cp2kMDOutputFile.is_set_attr_lst", "generated/api/pwtools.parse.Cp2kMDOutputFile.load", "generated/api/pwtools.parse.Cp2kMDOutputFile.parse", "generated/api/pwtools.parse.Cp2kMDOutputFile.raw_return", "generated/api/pwtools.parse.Cp2kMDOutputFile.raw_slice_get", "generated/api/pwtools.parse.Cp2kMDOutputFile.set_all", "generated/api/pwtools.parse.Cp2kMDOutputFile.set_attr_lst", "generated/api/pwtools.parse.Cp2kMDOutputFile.timeaxis", "generated/api/pwtools.parse.Cp2kMDOutputFile.try_set_attr", "generated/api/pwtools.parse.Cp2kMDOutputFile.try_set_attr_lst", "generated/api/pwtools.parse.Cp2kMDOutputFile.update_units", "generated/api/pwtools.parse.Cp2kRelaxOutputFile", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.apply_units", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.assert_attr", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.assert_attr_lst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.assert_set_attr", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.assert_set_attr_lst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.check_set_attr", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.check_set_attr_lst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.default_units", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.dump", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_cell", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_cont", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_coords", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_econst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_ekin", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_etot", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_forces", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_natoms", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_return_attr", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_stress", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_struct", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_symbols", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_temperature", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_timestep", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_traj", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_velocity", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_volume", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.init_attr_lst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.is_set_attr", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.is_set_attr_lst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.load", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.parse", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.raw_return", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.raw_slice_get", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.set_all", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.set_attr_lst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.timeaxis", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.try_set_attr", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.try_set_attr_lst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.update_units", "generated/api/pwtools.parse.Cp2kSCFOutputFile", "generated/api/pwtools.parse.Cp2kSCFOutputFile.apply_units", "generated/api/pwtools.parse.Cp2kSCFOutputFile.assert_attr", "generated/api/pwtools.parse.Cp2kSCFOutputFile.assert_attr_lst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.assert_set_attr", "generated/api/pwtools.parse.Cp2kSCFOutputFile.assert_set_attr_lst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.check_set_attr", "generated/api/pwtools.parse.Cp2kSCFOutputFile.check_set_attr_lst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.default_units", "generated/api/pwtools.parse.Cp2kSCFOutputFile.dump", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_cont", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_etot", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_forces", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_natoms", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_return_attr", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_stress", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_struct", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_symbols", "generated/api/pwtools.parse.Cp2kSCFOutputFile.init_attr_lst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.is_set_attr", "generated/api/pwtools.parse.Cp2kSCFOutputFile.is_set_attr_lst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.load", "generated/api/pwtools.parse.Cp2kSCFOutputFile.parse", "generated/api/pwtools.parse.Cp2kSCFOutputFile.raw_return", "generated/api/pwtools.parse.Cp2kSCFOutputFile.raw_slice_get", "generated/api/pwtools.parse.Cp2kSCFOutputFile.set_all", "generated/api/pwtools.parse.Cp2kSCFOutputFile.set_attr_lst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.try_set_attr", "generated/api/pwtools.parse.Cp2kSCFOutputFile.try_set_attr_lst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.update_units", "generated/api/pwtools.parse.CpmdMDOutputFile", "generated/api/pwtools.parse.CpmdMDOutputFile.apply_units", "generated/api/pwtools.parse.CpmdMDOutputFile.assert_attr", "generated/api/pwtools.parse.CpmdMDOutputFile.assert_attr_lst", "generated/api/pwtools.parse.CpmdMDOutputFile.assert_set_attr", "generated/api/pwtools.parse.CpmdMDOutputFile.assert_set_attr_lst", "generated/api/pwtools.parse.CpmdMDOutputFile.check_set_attr", "generated/api/pwtools.parse.CpmdMDOutputFile.check_set_attr_lst", "generated/api/pwtools.parse.CpmdMDOutputFile.default_units", "generated/api/pwtools.parse.CpmdMDOutputFile.dump", "generated/api/pwtools.parse.CpmdMDOutputFile.get_cell", "generated/api/pwtools.parse.CpmdMDOutputFile.get_cont", "generated/api/pwtools.parse.CpmdMDOutputFile.get_coords", "generated/api/pwtools.parse.CpmdMDOutputFile.get_coords_frac", "generated/api/pwtools.parse.CpmdMDOutputFile.get_econst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_ekin", "generated/api/pwtools.parse.CpmdMDOutputFile.get_ekin_cell", "generated/api/pwtools.parse.CpmdMDOutputFile.get_ekin_elec", "generated/api/pwtools.parse.CpmdMDOutputFile.get_ekinc", "generated/api/pwtools.parse.CpmdMDOutputFile.get_ekinh", "generated/api/pwtools.parse.CpmdMDOutputFile.get_etot", "generated/api/pwtools.parse.CpmdMDOutputFile.get_forces", "generated/api/pwtools.parse.CpmdMDOutputFile.get_natoms", "generated/api/pwtools.parse.CpmdMDOutputFile.get_nkpoints", "generated/api/pwtools.parse.CpmdMDOutputFile.get_nstep_scf", "generated/api/pwtools.parse.CpmdMDOutputFile.get_return_attr", "generated/api/pwtools.parse.CpmdMDOutputFile.get_scf_converged", "generated/api/pwtools.parse.CpmdMDOutputFile.get_stress", "generated/api/pwtools.parse.CpmdMDOutputFile.get_struct", "generated/api/pwtools.parse.CpmdMDOutputFile.get_symbols", "generated/api/pwtools.parse.CpmdMDOutputFile.get_temperature", "generated/api/pwtools.parse.CpmdMDOutputFile.get_temperature_cell", "generated/api/pwtools.parse.CpmdMDOutputFile.get_timestep", "generated/api/pwtools.parse.CpmdMDOutputFile.get_traj", "generated/api/pwtools.parse.CpmdMDOutputFile.get_velocity", "generated/api/pwtools.parse.CpmdMDOutputFile.init_attr_lst", "generated/api/pwtools.parse.CpmdMDOutputFile.is_set_attr", "generated/api/pwtools.parse.CpmdMDOutputFile.is_set_attr_lst", "generated/api/pwtools.parse.CpmdMDOutputFile.load", "generated/api/pwtools.parse.CpmdMDOutputFile.parse", "generated/api/pwtools.parse.CpmdMDOutputFile.raw_return", "generated/api/pwtools.parse.CpmdMDOutputFile.raw_slice_get", "generated/api/pwtools.parse.CpmdMDOutputFile.set_all", "generated/api/pwtools.parse.CpmdMDOutputFile.set_attr_lst", "generated/api/pwtools.parse.CpmdMDOutputFile.timeaxis", "generated/api/pwtools.parse.CpmdMDOutputFile.try_set_attr", "generated/api/pwtools.parse.CpmdMDOutputFile.try_set_attr_lst", "generated/api/pwtools.parse.CpmdMDOutputFile.update_units", "generated/api/pwtools.parse.CpmdSCFOutputFile", "generated/api/pwtools.parse.CpmdSCFOutputFile.apply_units", "generated/api/pwtools.parse.CpmdSCFOutputFile.assert_attr", "generated/api/pwtools.parse.CpmdSCFOutputFile.assert_attr_lst", "generated/api/pwtools.parse.CpmdSCFOutputFile.assert_set_attr", "generated/api/pwtools.parse.CpmdSCFOutputFile.assert_set_attr_lst", "generated/api/pwtools.parse.CpmdSCFOutputFile.check_set_attr", "generated/api/pwtools.parse.CpmdSCFOutputFile.check_set_attr_lst", "generated/api/pwtools.parse.CpmdSCFOutputFile.default_units", "generated/api/pwtools.parse.CpmdSCFOutputFile.dump", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_cell", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_cont", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_coords_frac", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_etot", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_forces", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_natoms", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_nkpoints", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_nstep_scf", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_return_attr", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_scf_converged", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_stress", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_struct", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_symbols", "generated/api/pwtools.parse.CpmdSCFOutputFile.init_attr_lst", "generated/api/pwtools.parse.CpmdSCFOutputFile.is_set_attr", "generated/api/pwtools.parse.CpmdSCFOutputFile.is_set_attr_lst", "generated/api/pwtools.parse.CpmdSCFOutputFile.load", "generated/api/pwtools.parse.CpmdSCFOutputFile.parse", "generated/api/pwtools.parse.CpmdSCFOutputFile.raw_return", "generated/api/pwtools.parse.CpmdSCFOutputFile.raw_slice_get", "generated/api/pwtools.parse.CpmdSCFOutputFile.set_all", "generated/api/pwtools.parse.CpmdSCFOutputFile.set_attr_lst", "generated/api/pwtools.parse.CpmdSCFOutputFile.try_set_attr", "generated/api/pwtools.parse.CpmdSCFOutputFile.try_set_attr_lst", "generated/api/pwtools.parse.CpmdSCFOutputFile.update_units", "generated/api/pwtools.parse.DcdOutputFile", "generated/api/pwtools.parse.DcdOutputFile.get_cell", "generated/api/pwtools.parse.DcdOutputFile.get_coords", "generated/api/pwtools.parse.DcdOutputFile.get_cryst_const", "generated/api/pwtools.parse.DcdOutputFile.get_natoms", "generated/api/pwtools.parse.DcdOutputFile.get_nstep", "generated/api/pwtools.parse.DcdOutputFile.get_volume", "generated/api/pwtools.parse.Ha", "generated/api/pwtools.parse.LammpsDcdMDOutputFile", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.apply_units", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.assert_attr", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.assert_attr_lst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.assert_set_attr", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.assert_set_attr_lst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.check_set_attr", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.check_set_attr_lst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.default_units", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.dump", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_cell", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_cont", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_coords", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_coords_frac", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_cryst_const", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_ekin", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_etot", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_forces", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_natoms", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_nstep", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_return_attr", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_stress", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_struct", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_symbols", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_temperature", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_timestep", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_traj", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_velocity", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_volume", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.init_attr_lst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.is_set_attr", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.is_set_attr_lst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.load", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.parse", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.raw_return", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.raw_slice_get", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.set_all", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.set_attr_lst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.timeaxis", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.try_set_attr", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.try_set_attr_lst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.update_units", "generated/api/pwtools.parse.LammpsTextMDOutputFile", "generated/api/pwtools.parse.LammpsTextMDOutputFile.apply_units", "generated/api/pwtools.parse.LammpsTextMDOutputFile.assert_attr", "generated/api/pwtools.parse.LammpsTextMDOutputFile.assert_attr_lst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.assert_set_attr", "generated/api/pwtools.parse.LammpsTextMDOutputFile.assert_set_attr_lst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.check_set_attr", "generated/api/pwtools.parse.LammpsTextMDOutputFile.check_set_attr_lst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.default_units", "generated/api/pwtools.parse.LammpsTextMDOutputFile.dump", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_cell", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_cont", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_coords", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_coords_frac", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_cryst_const", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_ekin", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_etot", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_forces", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_natoms", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_return_attr", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_stress", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_struct", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_symbols", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_temperature", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_timestep", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_traj", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_velocity", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_volume", "generated/api/pwtools.parse.LammpsTextMDOutputFile.init_attr_lst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.is_set_attr", "generated/api/pwtools.parse.LammpsTextMDOutputFile.is_set_attr_lst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.load", "generated/api/pwtools.parse.LammpsTextMDOutputFile.parse", "generated/api/pwtools.parse.LammpsTextMDOutputFile.raw_return", "generated/api/pwtools.parse.LammpsTextMDOutputFile.raw_slice_get", "generated/api/pwtools.parse.LammpsTextMDOutputFile.set_all", "generated/api/pwtools.parse.LammpsTextMDOutputFile.set_attr_lst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.timeaxis", "generated/api/pwtools.parse.LammpsTextMDOutputFile.try_set_attr", "generated/api/pwtools.parse.LammpsTextMDOutputFile.try_set_attr_lst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.update_units", "generated/api/pwtools.parse.PDBFile", "generated/api/pwtools.parse.PDBFile.apply_units", "generated/api/pwtools.parse.PDBFile.assert_attr", "generated/api/pwtools.parse.PDBFile.assert_attr_lst", "generated/api/pwtools.parse.PDBFile.assert_set_attr", "generated/api/pwtools.parse.PDBFile.assert_set_attr_lst", "generated/api/pwtools.parse.PDBFile.check_set_attr", "generated/api/pwtools.parse.PDBFile.check_set_attr_lst", "generated/api/pwtools.parse.PDBFile.default_units", "generated/api/pwtools.parse.PDBFile.dump", "generated/api/pwtools.parse.PDBFile.get_cont", "generated/api/pwtools.parse.PDBFile.get_coords", "generated/api/pwtools.parse.PDBFile.get_cryst_const", "generated/api/pwtools.parse.PDBFile.get_return_attr", "generated/api/pwtools.parse.PDBFile.get_struct", "generated/api/pwtools.parse.PDBFile.get_symbols", "generated/api/pwtools.parse.PDBFile.init_attr_lst", "generated/api/pwtools.parse.PDBFile.is_set_attr", "generated/api/pwtools.parse.PDBFile.is_set_attr_lst", "generated/api/pwtools.parse.PDBFile.load", "generated/api/pwtools.parse.PDBFile.parse", "generated/api/pwtools.parse.PDBFile.raw_return", "generated/api/pwtools.parse.PDBFile.raw_slice_get", "generated/api/pwtools.parse.PDBFile.set_all", "generated/api/pwtools.parse.PDBFile.set_attr_lst", "generated/api/pwtools.parse.PDBFile.try_set_attr", "generated/api/pwtools.parse.PDBFile.try_set_attr_lst", "generated/api/pwtools.parse.PDBFile.update_units", "generated/api/pwtools.parse.PwMDOutputFile", "generated/api/pwtools.parse.PwMDOutputFile.apply_units", "generated/api/pwtools.parse.PwMDOutputFile.assert_attr", "generated/api/pwtools.parse.PwMDOutputFile.assert_attr_lst", "generated/api/pwtools.parse.PwMDOutputFile.assert_set_attr", "generated/api/pwtools.parse.PwMDOutputFile.assert_set_attr_lst", "generated/api/pwtools.parse.PwMDOutputFile.check_set_attr", "generated/api/pwtools.parse.PwMDOutputFile.check_set_attr_lst", "generated/api/pwtools.parse.PwMDOutputFile.default_units", "generated/api/pwtools.parse.PwMDOutputFile.dump", "generated/api/pwtools.parse.PwMDOutputFile.get_alat", "generated/api/pwtools.parse.PwMDOutputFile.get_cell", "generated/api/pwtools.parse.PwMDOutputFile.get_cell_unit", "generated/api/pwtools.parse.PwMDOutputFile.get_cont", "generated/api/pwtools.parse.PwMDOutputFile.get_coords", "generated/api/pwtools.parse.PwMDOutputFile.get_coords_frac", "generated/api/pwtools.parse.PwMDOutputFile.get_coords_unit", "generated/api/pwtools.parse.PwMDOutputFile.get_ekin", "generated/api/pwtools.parse.PwMDOutputFile.get_etot", "generated/api/pwtools.parse.PwMDOutputFile.get_forces", "generated/api/pwtools.parse.PwMDOutputFile.get_natoms", "generated/api/pwtools.parse.PwMDOutputFile.get_nkpoints", "generated/api/pwtools.parse.PwMDOutputFile.get_nstep_scf", "generated/api/pwtools.parse.PwMDOutputFile.get_return_attr", "generated/api/pwtools.parse.PwMDOutputFile.get_scf_converged", "generated/api/pwtools.parse.PwMDOutputFile.get_stress", "generated/api/pwtools.parse.PwMDOutputFile.get_struct", "generated/api/pwtools.parse.PwMDOutputFile.get_symbols", "generated/api/pwtools.parse.PwMDOutputFile.get_temperature", "generated/api/pwtools.parse.PwMDOutputFile.get_timestep", "generated/api/pwtools.parse.PwMDOutputFile.get_traj", "generated/api/pwtools.parse.PwMDOutputFile.init_attr_lst", "generated/api/pwtools.parse.PwMDOutputFile.is_set_attr", "generated/api/pwtools.parse.PwMDOutputFile.is_set_attr_lst", "generated/api/pwtools.parse.PwMDOutputFile.load", "generated/api/pwtools.parse.PwMDOutputFile.parse", "generated/api/pwtools.parse.PwMDOutputFile.raw_return", "generated/api/pwtools.parse.PwMDOutputFile.raw_slice_get", "generated/api/pwtools.parse.PwMDOutputFile.set_all", "generated/api/pwtools.parse.PwMDOutputFile.set_attr_lst", "generated/api/pwtools.parse.PwMDOutputFile.timeaxis", "generated/api/pwtools.parse.PwMDOutputFile.try_set_attr", "generated/api/pwtools.parse.PwMDOutputFile.try_set_attr_lst", "generated/api/pwtools.parse.PwMDOutputFile.update_units", "generated/api/pwtools.parse.PwSCFOutputFile", "generated/api/pwtools.parse.PwSCFOutputFile.apply_units", "generated/api/pwtools.parse.PwSCFOutputFile.assert_attr", "generated/api/pwtools.parse.PwSCFOutputFile.assert_attr_lst", "generated/api/pwtools.parse.PwSCFOutputFile.assert_set_attr", "generated/api/pwtools.parse.PwSCFOutputFile.assert_set_attr_lst", "generated/api/pwtools.parse.PwSCFOutputFile.check_set_attr", "generated/api/pwtools.parse.PwSCFOutputFile.check_set_attr_lst", "generated/api/pwtools.parse.PwSCFOutputFile.default_units", "generated/api/pwtools.parse.PwSCFOutputFile.dump", "generated/api/pwtools.parse.PwSCFOutputFile.get_alat", "generated/api/pwtools.parse.PwSCFOutputFile.get_cell", "generated/api/pwtools.parse.PwSCFOutputFile.get_cont", "generated/api/pwtools.parse.PwSCFOutputFile.get_coords", "generated/api/pwtools.parse.PwSCFOutputFile.get_etot", "generated/api/pwtools.parse.PwSCFOutputFile.get_forces", "generated/api/pwtools.parse.PwSCFOutputFile.get_natoms", "generated/api/pwtools.parse.PwSCFOutputFile.get_nkpoints", "generated/api/pwtools.parse.PwSCFOutputFile.get_nstep_scf", "generated/api/pwtools.parse.PwSCFOutputFile.get_return_attr", "generated/api/pwtools.parse.PwSCFOutputFile.get_scf_converged", "generated/api/pwtools.parse.PwSCFOutputFile.get_stress", "generated/api/pwtools.parse.PwSCFOutputFile.get_struct", "generated/api/pwtools.parse.PwSCFOutputFile.get_symbols", "generated/api/pwtools.parse.PwSCFOutputFile.init_attr_lst", "generated/api/pwtools.parse.PwSCFOutputFile.is_set_attr", "generated/api/pwtools.parse.PwSCFOutputFile.is_set_attr_lst", "generated/api/pwtools.parse.PwSCFOutputFile.load", "generated/api/pwtools.parse.PwSCFOutputFile.parse", "generated/api/pwtools.parse.PwSCFOutputFile.raw_return", "generated/api/pwtools.parse.PwSCFOutputFile.raw_slice_get", "generated/api/pwtools.parse.PwSCFOutputFile.set_all", "generated/api/pwtools.parse.PwSCFOutputFile.set_attr_lst", "generated/api/pwtools.parse.PwSCFOutputFile.try_set_attr", "generated/api/pwtools.parse.PwSCFOutputFile.try_set_attr_lst", "generated/api/pwtools.parse.PwSCFOutputFile.update_units", "generated/api/pwtools.parse.PwVCMDOutputFile", "generated/api/pwtools.parse.PwVCMDOutputFile.apply_units", "generated/api/pwtools.parse.PwVCMDOutputFile.assert_attr", "generated/api/pwtools.parse.PwVCMDOutputFile.assert_attr_lst", "generated/api/pwtools.parse.PwVCMDOutputFile.assert_set_attr", "generated/api/pwtools.parse.PwVCMDOutputFile.assert_set_attr_lst", "generated/api/pwtools.parse.PwVCMDOutputFile.check_set_attr", "generated/api/pwtools.parse.PwVCMDOutputFile.check_set_attr_lst", "generated/api/pwtools.parse.PwVCMDOutputFile.default_units", "generated/api/pwtools.parse.PwVCMDOutputFile.dump", "generated/api/pwtools.parse.PwVCMDOutputFile.get_alat", "generated/api/pwtools.parse.PwVCMDOutputFile.get_cell", "generated/api/pwtools.parse.PwVCMDOutputFile.get_cell_unit", "generated/api/pwtools.parse.PwVCMDOutputFile.get_cont", "generated/api/pwtools.parse.PwVCMDOutputFile.get_coords", "generated/api/pwtools.parse.PwVCMDOutputFile.get_coords_frac", "generated/api/pwtools.parse.PwVCMDOutputFile.get_coords_unit", "generated/api/pwtools.parse.PwVCMDOutputFile.get_econst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_ekin", "generated/api/pwtools.parse.PwVCMDOutputFile.get_etot", "generated/api/pwtools.parse.PwVCMDOutputFile.get_forces", "generated/api/pwtools.parse.PwVCMDOutputFile.get_natoms", "generated/api/pwtools.parse.PwVCMDOutputFile.get_nkpoints", "generated/api/pwtools.parse.PwVCMDOutputFile.get_nstep_scf", "generated/api/pwtools.parse.PwVCMDOutputFile.get_return_attr", "generated/api/pwtools.parse.PwVCMDOutputFile.get_scf_converged", "generated/api/pwtools.parse.PwVCMDOutputFile.get_stress", "generated/api/pwtools.parse.PwVCMDOutputFile.get_struct", "generated/api/pwtools.parse.PwVCMDOutputFile.get_symbols", "generated/api/pwtools.parse.PwVCMDOutputFile.get_temperature", "generated/api/pwtools.parse.PwVCMDOutputFile.get_timestep", "generated/api/pwtools.parse.PwVCMDOutputFile.get_traj", "generated/api/pwtools.parse.PwVCMDOutputFile.init_attr_lst", "generated/api/pwtools.parse.PwVCMDOutputFile.is_set_attr", "generated/api/pwtools.parse.PwVCMDOutputFile.is_set_attr_lst", "generated/api/pwtools.parse.PwVCMDOutputFile.load", "generated/api/pwtools.parse.PwVCMDOutputFile.parse", "generated/api/pwtools.parse.PwVCMDOutputFile.raw_return", "generated/api/pwtools.parse.PwVCMDOutputFile.raw_slice_get", "generated/api/pwtools.parse.PwVCMDOutputFile.set_all", "generated/api/pwtools.parse.PwVCMDOutputFile.set_attr_lst", "generated/api/pwtools.parse.PwVCMDOutputFile.timeaxis", "generated/api/pwtools.parse.PwVCMDOutputFile.try_set_attr", "generated/api/pwtools.parse.PwVCMDOutputFile.try_set_attr_lst", "generated/api/pwtools.parse.PwVCMDOutputFile.update_units", "generated/api/pwtools.parse.Ry", "generated/api/pwtools.parse.StructureFileParser", "generated/api/pwtools.parse.StructureFileParser.apply_units", "generated/api/pwtools.parse.StructureFileParser.assert_attr", "generated/api/pwtools.parse.StructureFileParser.assert_attr_lst", "generated/api/pwtools.parse.StructureFileParser.assert_set_attr", "generated/api/pwtools.parse.StructureFileParser.assert_set_attr_lst", "generated/api/pwtools.parse.StructureFileParser.check_set_attr", "generated/api/pwtools.parse.StructureFileParser.check_set_attr_lst", "generated/api/pwtools.parse.StructureFileParser.default_units", "generated/api/pwtools.parse.StructureFileParser.dump", "generated/api/pwtools.parse.StructureFileParser.get_cont", "generated/api/pwtools.parse.StructureFileParser.get_return_attr", "generated/api/pwtools.parse.StructureFileParser.get_struct", "generated/api/pwtools.parse.StructureFileParser.init_attr_lst", "generated/api/pwtools.parse.StructureFileParser.is_set_attr", "generated/api/pwtools.parse.StructureFileParser.is_set_attr_lst", "generated/api/pwtools.parse.StructureFileParser.load", "generated/api/pwtools.parse.StructureFileParser.parse", "generated/api/pwtools.parse.StructureFileParser.raw_return", "generated/api/pwtools.parse.StructureFileParser.raw_slice_get", "generated/api/pwtools.parse.StructureFileParser.set_all", "generated/api/pwtools.parse.StructureFileParser.set_attr_lst", "generated/api/pwtools.parse.StructureFileParser.try_set_attr", "generated/api/pwtools.parse.StructureFileParser.try_set_attr_lst", "generated/api/pwtools.parse.StructureFileParser.update_units", "generated/api/pwtools.parse.TrajectoryFileParser", "generated/api/pwtools.parse.TrajectoryFileParser.apply_units", "generated/api/pwtools.parse.TrajectoryFileParser.assert_attr", "generated/api/pwtools.parse.TrajectoryFileParser.assert_attr_lst", "generated/api/pwtools.parse.TrajectoryFileParser.assert_set_attr", "generated/api/pwtools.parse.TrajectoryFileParser.assert_set_attr_lst", "generated/api/pwtools.parse.TrajectoryFileParser.check_set_attr", "generated/api/pwtools.parse.TrajectoryFileParser.check_set_attr_lst", "generated/api/pwtools.parse.TrajectoryFileParser.default_units", "generated/api/pwtools.parse.TrajectoryFileParser.dump", "generated/api/pwtools.parse.TrajectoryFileParser.get_cont", "generated/api/pwtools.parse.TrajectoryFileParser.get_return_attr", "generated/api/pwtools.parse.TrajectoryFileParser.get_struct", "generated/api/pwtools.parse.TrajectoryFileParser.get_traj", "generated/api/pwtools.parse.TrajectoryFileParser.init_attr_lst", "generated/api/pwtools.parse.TrajectoryFileParser.is_set_attr", "generated/api/pwtools.parse.TrajectoryFileParser.is_set_attr_lst", "generated/api/pwtools.parse.TrajectoryFileParser.load", "generated/api/pwtools.parse.TrajectoryFileParser.parse", "generated/api/pwtools.parse.TrajectoryFileParser.raw_return", "generated/api/pwtools.parse.TrajectoryFileParser.raw_slice_get", "generated/api/pwtools.parse.TrajectoryFileParser.set_all", "generated/api/pwtools.parse.TrajectoryFileParser.set_attr_lst", "generated/api/pwtools.parse.TrajectoryFileParser.timeaxis", "generated/api/pwtools.parse.TrajectoryFileParser.try_set_attr", "generated/api/pwtools.parse.TrajectoryFileParser.try_set_attr_lst", "generated/api/pwtools.parse.TrajectoryFileParser.update_units", "generated/api/pwtools.parse.arr1d_from_txt", "generated/api/pwtools.parse.arr2d_from_txt", "generated/api/pwtools.parse.axis_lens", "generated/api/pwtools.parse.eV", "generated/api/pwtools.parse.float_from_txt", "generated/api/pwtools.parse.fs", "generated/api/pwtools.parse.int_from_txt", "generated/api/pwtools.parse.nstep_from_txt", "generated/api/pwtools.parse.pi", "generated/api/pwtools.parse.ps", "generated/api/pwtools.parse.thart", "generated/api/pwtools.parse.traj_from_txt", "generated/api/pwtools.pwscf.EPS", "generated/api/pwtools.pwscf.atpos_str", "generated/api/pwtools.pwscf.atpos_str_fast", "generated/api/pwtools.pwscf.atspec_str", "generated/api/pwtools.pwscf.bool2str", "generated/api/pwtools.pwscf.ibrav2cell", "generated/api/pwtools.pwscf.kpoints_str", "generated/api/pwtools.pwscf.kpoints_str_pwin", "generated/api/pwtools.pwscf.kpoints_str_pwin_full", "generated/api/pwtools.pwscf.kpointstr", "generated/api/pwtools.pwscf.kpointstr_pwin", "generated/api/pwtools.pwscf.kpointstr_pwin2", "generated/api/pwtools.pwscf.read_all_dyn", "generated/api/pwtools.pwscf.read_dyn", "generated/api/pwtools.pwscf.read_dynmat", "generated/api/pwtools.pwscf.read_dynmat_ir_raman", "generated/api/pwtools.pwscf.read_dynmat_out", "generated/api/pwtools.pwscf.read_matdyn_freq", "generated/api/pwtools.pwscf.read_matdyn_modes", "generated/api/pwtools.pydos.direct_pdos", "generated/api/pwtools.pydos.fvacf", "generated/api/pwtools.pydos.pdos", "generated/api/pwtools.pydos.pyvacf", "generated/api/pwtools.pydos.vacf_pdos", "generated/api/pwtools.random.RandomStructure", "generated/api/pwtools.random.RandomStructure.get_random_cryst_const", "generated/api/pwtools.random.RandomStructure.get_random_struct", "generated/api/pwtools.random.RandomStructureFail", "generated/api/pwtools.random.pi", "generated/api/pwtools.random.random_struct", "generated/api/pwtools.rbf.core.JAX_MODE", "generated/api/pwtools.rbf.core.Rbf", "generated/api/pwtools.rbf.core.Rbf.deriv", "generated/api/pwtools.rbf.core.Rbf.deriv_jax", "generated/api/pwtools.rbf.core.Rbf.fit", "generated/api/pwtools.rbf.core.Rbf.fit_error", "generated/api/pwtools.rbf.core.Rbf.get_distsq", "generated/api/pwtools.rbf.core.Rbf.get_params", "generated/api/pwtools.rbf.core.Rbf.predict", "generated/api/pwtools.rbf.core._np_distsq", "generated/api/pwtools.rbf.core.estimate_p", "generated/api/pwtools.rbf.core.euclidean_dists", "generated/api/pwtools.rbf.core.jit", "generated/api/pwtools.rbf.core.rbf_dct", "generated/api/pwtools.rbf.core.rbf_gauss", "generated/api/pwtools.rbf.core.rbf_inv_multi", "generated/api/pwtools.rbf.core.rbf_multi", "generated/api/pwtools.rbf.core.squared_dists", "generated/api/pwtools.rbf.hyperopt.FitError", "generated/api/pwtools.rbf.hyperopt.FitError.cv", "generated/api/pwtools.rbf.hyperopt.FitError.err_cv", "generated/api/pwtools.rbf.hyperopt.FitError.err_direct", "generated/api/pwtools.rbf.hyperopt.RepeatedKFold", "generated/api/pwtools.rbf.hyperopt.fit_opt", "generated/api/pwtools.regex.float_re", "generated/api/pwtools.signal.FIRFilter", "generated/api/pwtools.signal.acorr", "generated/api/pwtools.signal.cauchy", "generated/api/pwtools.signal.dft", "generated/api/pwtools.signal.ezfft", "generated/api/pwtools.signal.fft_1d_loop", "generated/api/pwtools.signal.fftsample", "generated/api/pwtools.signal.find_peaks", "generated/api/pwtools.signal.gauss", "generated/api/pwtools.signal.lorentz", "generated/api/pwtools.signal.mirror", "generated/api/pwtools.signal.odd", "generated/api/pwtools.signal.pad_zeros", "generated/api/pwtools.signal.scale", "generated/api/pwtools.signal.smooth", "generated/api/pwtools.signal.welch", "generated/api/pwtools.sql.SQLEntry", "generated/api/pwtools.sql.SQLiteDB", "generated/api/pwtools.sql.SQLiteDB.add_column", "generated/api/pwtools.sql.SQLiteDB.add_columns", "generated/api/pwtools.sql.SQLiteDB.attach_column", "generated/api/pwtools.sql.SQLiteDB.commit", "generated/api/pwtools.sql.SQLiteDB.create_table", "generated/api/pwtools.sql.SQLiteDB.execute", "generated/api/pwtools.sql.SQLiteDB.executemany", "generated/api/pwtools.sql.SQLiteDB.executescript", "generated/api/pwtools.sql.SQLiteDB.fill_column", "generated/api/pwtools.sql.SQLiteDB.finish", "generated/api/pwtools.sql.SQLiteDB.get_array", "generated/api/pwtools.sql.SQLiteDB.get_array1d", "generated/api/pwtools.sql.SQLiteDB.get_dict", "generated/api/pwtools.sql.SQLiteDB.get_header", "generated/api/pwtools.sql.SQLiteDB.get_list1d", "generated/api/pwtools.sql.SQLiteDB.get_max_rowid", "generated/api/pwtools.sql.SQLiteDB.get_single", "generated/api/pwtools.sql.SQLiteDB.get_table", "generated/api/pwtools.sql.SQLiteDB.has_column", "generated/api/pwtools.sql.SQLiteDB.has_table", "generated/api/pwtools.sql.SQLiteDB.set_table", "generated/api/pwtools.sql.find_sqltype", "generated/api/pwtools.sql.fix_sql_header", "generated/api/pwtools.sql.fix_sqltype", "generated/api/pwtools.sql.get_test_db", "generated/api/pwtools.sql.makedb", "generated/api/pwtools.sql.sql_column", "generated/api/pwtools.sql.sql_column_old", "generated/api/pwtools.sql.sql_matrix", "generated/api/pwtools.symmetry.is_same_struct", "generated/api/pwtools.symmetry.spglib2struct", "generated/api/pwtools.symmetry.spglib_get_primitive", "generated/api/pwtools.symmetry.spglib_get_spacegroup", "generated/api/pwtools.symmetry.struct2spglib", "generated/api/pwtools.thermo.Gibbs", "generated/api/pwtools.thermo.Gibbs.calc_F", "generated/api/pwtools.thermo.Gibbs.calc_G", "generated/api/pwtools.thermo.Gibbs.calc_H", "generated/api/pwtools.thermo.Gibbs.set_fitfunc", "generated/api/pwtools.thermo.HarmonicThermo", "generated/api/pwtools.thermo.HarmonicThermo.cv", "generated/api/pwtools.thermo.HarmonicThermo.evib", "generated/api/pwtools.thermo.HarmonicThermo.fvib", "generated/api/pwtools.thermo.HarmonicThermo.isochoric_heat_capacity", "generated/api/pwtools.thermo.HarmonicThermo.svib", "generated/api/pwtools.thermo.HarmonicThermo.vibrational_entropy", "generated/api/pwtools.thermo.HarmonicThermo.vibrational_free_energy", "generated/api/pwtools.thermo.HarmonicThermo.vibrational_internal_energy", "generated/api/pwtools.thermo.R", "generated/api/pwtools.thermo.Ry_to_J", "generated/api/pwtools.thermo.c0", "generated/api/pwtools.thermo.coth", "generated/api/pwtools.thermo.debye_func", "generated/api/pwtools.thermo.eV", "generated/api/pwtools.thermo.eV_by_Ang3_to_GPa", "generated/api/pwtools.thermo.einstein_func", "generated/api/pwtools.thermo.expansion", "generated/api/pwtools.thermo.hplanck", "generated/api/pwtools.thermo.kb", "generated/api/pwtools.thermo.pi", "generated/api/pwtools.timer.TagTimer", "generated/api/pwtools.timer.TagTimer.p", "generated/api/pwtools.timer.TagTimer.pt", "generated/api/pwtools.timer.TagTimer.t", "generated/api/pwtools.verbose.VERBOSE", "generated/api/pwtools.verbose.verbose", "generated/api/pwtools.visualize.ViewFactory", "generated/api/pwtools.visualize.assert_struct", "generated/api/pwtools.visualize.avogadro_cmd", "generated/api/pwtools.visualize.view_avogadro", "generated/api/pwtools.visualize.view_jmol", "generated/api/pwtools.visualize.view_vmd_axsf", "generated/api/pwtools.visualize.view_vmd_xyz", "generated/api/pwtools.visualize.view_xcrysden", "index", "written/background/ase", "written/background/coord_trans", "written/background/index", "written/background/param_study", "written/background/parsing", "written/background/phonon_dos", "written/background/pwscf", "written/background/rbf", "written/cp2k_restart", "written/dispersion_example", "written/features", "written/index", "written/install", "written/qha", "written/refs", "written/tutorial"], "envversion": {"sphinx": 62, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1}, "filenames": ["generated/api/__sphinx_autodoc_module__pwtools._dcd.rst", "generated/api/__sphinx_autodoc_module__pwtools._flib.rst", "generated/api/__sphinx_autodoc_module__pwtools.arrayio.rst", "generated/api/__sphinx_autodoc_module__pwtools.atomic_data.rst", "generated/api/__sphinx_autodoc_module__pwtools.base.rst", "generated/api/__sphinx_autodoc_module__pwtools.batch.rst", "generated/api/__sphinx_autodoc_module__pwtools.calculators.rst", "generated/api/__sphinx_autodoc_module__pwtools.comb.rst", "generated/api/__sphinx_autodoc_module__pwtools.common.rst", "generated/api/__sphinx_autodoc_module__pwtools.config.rst", "generated/api/__sphinx_autodoc_module__pwtools.constants.rst", "generated/api/__sphinx_autodoc_module__pwtools.crys.rst", "generated/api/__sphinx_autodoc_module__pwtools.dcd.rst", "generated/api/__sphinx_autodoc_module__pwtools.decorators.rst", "generated/api/__sphinx_autodoc_module__pwtools.eos.rst", "generated/api/__sphinx_autodoc_module__pwtools.io.rst", "generated/api/__sphinx_autodoc_module__pwtools.kpath.rst", "generated/api/__sphinx_autodoc_module__pwtools.lammps.rst", "generated/api/__sphinx_autodoc_module__pwtools.mpl.rst", "generated/api/__sphinx_autodoc_module__pwtools.mttk.rst", "generated/api/__sphinx_autodoc_module__pwtools.num.rst", "generated/api/__sphinx_autodoc_module__pwtools.parse.rst", "generated/api/__sphinx_autodoc_module__pwtools.pwscf.rst", "generated/api/__sphinx_autodoc_module__pwtools.pydos.rst", "generated/api/__sphinx_autodoc_module__pwtools.random.rst", "generated/api/__sphinx_autodoc_module__pwtools.rbf.core.rst", "generated/api/__sphinx_autodoc_module__pwtools.rbf.hyperopt.rst", "generated/api/__sphinx_autodoc_module__pwtools.regex.rst", "generated/api/__sphinx_autodoc_module__pwtools.signal.rst", "generated/api/__sphinx_autodoc_module__pwtools.sql.rst", "generated/api/__sphinx_autodoc_module__pwtools.symmetry.rst", "generated/api/__sphinx_autodoc_module__pwtools.thermo.rst", "generated/api/__sphinx_autodoc_module__pwtools.timer.rst", "generated/api/__sphinx_autodoc_module__pwtools.verbose.rst", "generated/api/__sphinx_autodoc_module__pwtools.visualize.rst", "generated/api/index.rst", "generated/api/pwtools._dcd.get_dcd_file_info.rst", "generated/api/pwtools._dcd.open_file.rst", "generated/api/pwtools._dcd.read_dcd_data.rst", "generated/api/pwtools._dcd.read_dcd_data_from_unit.rst", "generated/api/pwtools._dcd.read_dcd_header_from_unit.rst", "generated/api/pwtools._flib.acorr.rst", "generated/api/pwtools._flib.angles.rst", "generated/api/pwtools._flib.cart2frac.rst", "generated/api/pwtools._flib.cart2frac_traj.rst", "generated/api/pwtools._flib.distances_traj.rst", "generated/api/pwtools._flib.distsq.rst", "generated/api/pwtools._flib.distsq_frac.rst", "generated/api/pwtools._flib.frac2cart.rst", "generated/api/pwtools._flib.frac2cart_traj.rst", "generated/api/pwtools._flib.solve.rst", "generated/api/pwtools._flib.vacf.rst", "generated/api/pwtools._flib.vect_loops.rst", "generated/api/pwtools.arrayio.HEADER_COMMENT.rst", "generated/api/pwtools.arrayio.HEADER_MAXLINES.rst", "generated/api/pwtools.arrayio.TXT_MAXDIM.rst", "generated/api/pwtools.arrayio._read_header_config.rst", "generated/api/pwtools.arrayio._write_header_config.rst", "generated/api/pwtools.arrayio.arr2d_to_3d.rst", "generated/api/pwtools.arrayio.readtxt.rst", "generated/api/pwtools.arrayio.writetxt.rst", "generated/api/pwtools.atomic_data.covalent_radii.rst", "generated/api/pwtools.atomic_data.masses.rst", "generated/api/pwtools.atomic_data.missing.rst", "generated/api/pwtools.atomic_data.numbers.rst", "generated/api/pwtools.atomic_data.pt.rst", "generated/api/pwtools.atomic_data.symbols.rst", "generated/api/pwtools.base.FlexibleGetters.rst", "generated/api/pwtools.base.FlexibleGetters.assert_attr.rst", "generated/api/pwtools.base.FlexibleGetters.assert_attr_lst.rst", "generated/api/pwtools.base.FlexibleGetters.assert_set_attr.rst", "generated/api/pwtools.base.FlexibleGetters.assert_set_attr_lst.rst", "generated/api/pwtools.base.FlexibleGetters.check_set_attr.rst", "generated/api/pwtools.base.FlexibleGetters.check_set_attr_lst.rst", "generated/api/pwtools.base.FlexibleGetters.dump.rst", "generated/api/pwtools.base.FlexibleGetters.get_return_attr.rst", "generated/api/pwtools.base.FlexibleGetters.init_attr_lst.rst", "generated/api/pwtools.base.FlexibleGetters.is_set_attr.rst", "generated/api/pwtools.base.FlexibleGetters.is_set_attr_lst.rst", "generated/api/pwtools.base.FlexibleGetters.load.rst", "generated/api/pwtools.base.FlexibleGetters.raw_return.rst", "generated/api/pwtools.base.FlexibleGetters.raw_slice_get.rst", "generated/api/pwtools.base.FlexibleGetters.set_all.rst", "generated/api/pwtools.base.FlexibleGetters.set_attr_lst.rst", "generated/api/pwtools.base.FlexibleGetters.try_set_attr.rst", "generated/api/pwtools.base.FlexibleGetters.try_set_attr_lst.rst", "generated/api/pwtools.batch.Calculation.rst", "generated/api/pwtools.batch.Calculation.get_sql_record.rst", "generated/api/pwtools.batch.Calculation.write_input.rst", "generated/api/pwtools.batch.Case.rst", "generated/api/pwtools.batch.FileTemplate.rst", "generated/api/pwtools.batch.FileTemplate.write.rst", "generated/api/pwtools.batch.FileTemplate.writesql.rst", "generated/api/pwtools.batch.Machine.rst", "generated/api/pwtools.batch.Machine.get_jobfile_basename.rst", "generated/api/pwtools.batch.Machine.get_sql_record.rst", "generated/api/pwtools.batch.ParameterStudy.rst", "generated/api/pwtools.batch.ParameterStudy.write_input.rst", "generated/api/pwtools.batch.conv_table.rst", "generated/api/pwtools.batch.default_repl_keys.rst", "generated/api/pwtools.calculators.CalculatorBase.rst", "generated/api/pwtools.calculators.CalculatorBase.fill_infile_templ.rst", "generated/api/pwtools.calculators.CalculatorBase.init_params_from_input.rst", "generated/api/pwtools.calculators.FileIOCalculator.rst", "generated/api/pwtools.calculators.Lammps.rst", "generated/api/pwtools.calculators.Lammps.default_parameters.rst", "generated/api/pwtools.calculators.Lammps.fill_infile_templ.rst", "generated/api/pwtools.calculators.Lammps.implemented_properties.rst", "generated/api/pwtools.calculators.Lammps.infile_templ.rst", "generated/api/pwtools.calculators.Lammps.init_params_from_input.rst", "generated/api/pwtools.calculators.Lammps.read_results.rst", "generated/api/pwtools.calculators.Lammps.write_input.rst", "generated/api/pwtools.calculators.Pwscf.rst", "generated/api/pwtools.calculators.Pwscf.default_parameters.rst", "generated/api/pwtools.calculators.Pwscf.fill_infile_templ.rst", "generated/api/pwtools.calculators.Pwscf.implemented_properties.rst", "generated/api/pwtools.calculators.Pwscf.infile_templ.rst", "generated/api/pwtools.calculators.Pwscf.init_params_from_input.rst", "generated/api/pwtools.calculators.Pwscf.read_results.rst", "generated/api/pwtools.calculators.Pwscf.write_input.rst", "generated/api/pwtools.calculators._ase_missing.rst", "generated/api/pwtools.calculators.find_exe.rst", "generated/api/pwtools.calculators.kpts2mp.rst", "generated/api/pwtools.calculators.stress_pwtools2ase.rst", "generated/api/pwtools.comb._ensure_list.rst", "generated/api/pwtools.comb.nested_loops.rst", "generated/api/pwtools.comb.unique2d.rst", "generated/api/pwtools.common.EPS.rst", "generated/api/pwtools.common.add_to_config.rst", "generated/api/pwtools.common.asseq.rst", "generated/api/pwtools.common.assert_cond.rst", "generated/api/pwtools.common.backtick.rst", "generated/api/pwtools.common.backup.rst", "generated/api/pwtools.common.cpickle_load.rst", "generated/api/pwtools.common.dict2class.rst", "generated/api/pwtools.common.dict2str.rst", "generated/api/pwtools.common.ffloat.rst", "generated/api/pwtools.common.file_read.rst", "generated/api/pwtools.common.file_readlines.rst", "generated/api/pwtools.common.file_template_replace.rst", "generated/api/pwtools.common.file_write.rst", "generated/api/pwtools.common.fix_eps.rst", "generated/api/pwtools.common.flatten.rst", "generated/api/pwtools.common.fpj.rst", "generated/api/pwtools.common.frepr.rst", "generated/api/pwtools.common.fullpath.rst", "generated/api/pwtools.common.fullpathjoin.rst", "generated/api/pwtools.common.get_filename.rst", "generated/api/pwtools.common.iflatten.rst", "generated/api/pwtools.common.is_seq.rst", "generated/api/pwtools.common.makedirs.rst", "generated/api/pwtools.common.permit_sigpipe.rst", "generated/api/pwtools.common.pop_from_list.rst", "generated/api/pwtools.common.print_dct.rst", "generated/api/pwtools.common.seq2str.rst", "generated/api/pwtools.common.str2seq.rst", "generated/api/pwtools.common.str2tup.rst", "generated/api/pwtools.common.str_arr.rst", "generated/api/pwtools.common.system.rst", "generated/api/pwtools.common.template_replace.rst", "generated/api/pwtools.common.tobool.rst", "generated/api/pwtools.common.toslice.rst", "generated/api/pwtools.common.tup2str.rst", "generated/api/pwtools.config.name.rst", "generated/api/pwtools.config.use_jax.rst", "generated/api/pwtools.constants.Ang.rst", "generated/api/pwtools.constants.Angstrom.rst", "generated/api/pwtools.constants.Bohr.rst", "generated/api/pwtools.constants.Bohr_to_Ang.rst", "generated/api/pwtools.constants.Eh.rst", "generated/api/pwtools.constants.Eryd.rst", "generated/api/pwtools.constants.GPa.rst", "generated/api/pwtools.constants.Ha.rst", "generated/api/pwtools.constants.Ha_to_eV.rst", "generated/api/pwtools.constants.Hartree.rst", "generated/api/pwtools.constants.J_to_eV.rst", "generated/api/pwtools.constants.J_to_rcm.rst", "generated/api/pwtools.constants.R.rst", "generated/api/pwtools.constants.Ry.rst", "generated/api/pwtools.constants.Ry_to_Ha.rst", "generated/api/pwtools.constants.Ry_to_Hz.rst", "generated/api/pwtools.constants.Ry_to_J.rst", "generated/api/pwtools.constants.Ry_to_eV.rst", "generated/api/pwtools.constants.Ry_to_rcm.rst", "generated/api/pwtools.constants.Rydberg.rst", "generated/api/pwtools.constants.a0.rst", "generated/api/pwtools.constants.a0_to_A.rst", "generated/api/pwtools.constants.alpha.rst", "generated/api/pwtools.constants.amu.rst", "generated/api/pwtools.constants.avo.rst", "generated/api/pwtools.constants.c0.rst", "generated/api/pwtools.constants.dyn.rst", "generated/api/pwtools.constants.e0.rst", "generated/api/pwtools.constants.eV.rst", "generated/api/pwtools.constants.eV_by_Ang3_to_GPa.rst", "generated/api/pwtools.constants.eV_by_Ang3_to_Pa.rst", "generated/api/pwtools.constants.eps0.rst", "generated/api/pwtools.constants.fs.rst", "generated/api/pwtools.constants.h.rst", "generated/api/pwtools.constants.hbar.rst", "generated/api/pwtools.constants.hplanck.rst", "generated/api/pwtools.constants.kb.rst", "generated/api/pwtools.constants.m0.rst", "generated/api/pwtools.constants.mu0.rst", "generated/api/pwtools.constants.pi.rst", "generated/api/pwtools.constants.ps.rst", "generated/api/pwtools.constants.rcm_to_Hz.rst", "generated/api/pwtools.constants.th.rst", "generated/api/pwtools.constants.thart.rst", "generated/api/pwtools.constants.tryd.rst", "generated/api/pwtools.crys.Angstrom.rst", "generated/api/pwtools.crys.FakeASEAtoms.rst", "generated/api/pwtools.crys.FakeASEAtoms.apply_units.rst", "generated/api/pwtools.crys.FakeASEAtoms.assert_attr.rst", "generated/api/pwtools.crys.FakeASEAtoms.assert_attr_lst.rst", "generated/api/pwtools.crys.FakeASEAtoms.assert_set_attr.rst", "generated/api/pwtools.crys.FakeASEAtoms.assert_set_attr_lst.rst", "generated/api/pwtools.crys.FakeASEAtoms.check_set_attr.rst", "generated/api/pwtools.crys.FakeASEAtoms.check_set_attr_lst.rst", "generated/api/pwtools.crys.FakeASEAtoms.compress.rst", "generated/api/pwtools.crys.FakeASEAtoms.copy.rst", "generated/api/pwtools.crys.FakeASEAtoms.dump.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_ase_atoms.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_atomic_numbers.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_cell.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_coords.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_coords_frac.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_cryst_const.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_ekin.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_etot.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_fake_ase_atoms.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_forces.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_magnetic_moments.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_mass.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_mass_unique.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_natoms.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_nspecies.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_nstep.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_ntypat.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_order.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_pressure.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_return_attr.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_spglib.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_stress.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_symbols.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_symbols_unique.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_temperature.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_time.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_timestep.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_traj.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_typat.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_velocity.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_volume.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_znucl.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_znucl_unique.rst", "generated/api/pwtools.crys.FakeASEAtoms.init_attr_lst.rst", "generated/api/pwtools.crys.FakeASEAtoms.is_set_attr.rst", "generated/api/pwtools.crys.FakeASEAtoms.is_set_attr_lst.rst", "generated/api/pwtools.crys.FakeASEAtoms.is_struct.rst", "generated/api/pwtools.crys.FakeASEAtoms.is_traj.rst", "generated/api/pwtools.crys.FakeASEAtoms.load.rst", "generated/api/pwtools.crys.FakeASEAtoms.raw_return.rst", "generated/api/pwtools.crys.FakeASEAtoms.raw_slice_get.rst", "generated/api/pwtools.crys.FakeASEAtoms.set_all.rst", "generated/api/pwtools.crys.FakeASEAtoms.set_attr_lst.rst", "generated/api/pwtools.crys.FakeASEAtoms.timeaxis.rst", "generated/api/pwtools.crys.FakeASEAtoms.try_set_attr.rst", "generated/api/pwtools.crys.FakeASEAtoms.try_set_attr_lst.rst", "generated/api/pwtools.crys.FakeASEAtoms.update_units.rst", "generated/api/pwtools.crys.Structure.rst", "generated/api/pwtools.crys.Structure.apply_units.rst", "generated/api/pwtools.crys.Structure.assert_attr.rst", "generated/api/pwtools.crys.Structure.assert_attr_lst.rst", "generated/api/pwtools.crys.Structure.assert_set_attr.rst", "generated/api/pwtools.crys.Structure.assert_set_attr_lst.rst", "generated/api/pwtools.crys.Structure.check_set_attr.rst", "generated/api/pwtools.crys.Structure.check_set_attr_lst.rst", "generated/api/pwtools.crys.Structure.compress.rst", "generated/api/pwtools.crys.Structure.copy.rst", "generated/api/pwtools.crys.Structure.dump.rst", "generated/api/pwtools.crys.Structure.get_ase_atoms.rst", "generated/api/pwtools.crys.Structure.get_cell.rst", "generated/api/pwtools.crys.Structure.get_coords.rst", "generated/api/pwtools.crys.Structure.get_coords_frac.rst", "generated/api/pwtools.crys.Structure.get_cryst_const.rst", "generated/api/pwtools.crys.Structure.get_ekin.rst", "generated/api/pwtools.crys.Structure.get_etot.rst", "generated/api/pwtools.crys.Structure.get_fake_ase_atoms.rst", "generated/api/pwtools.crys.Structure.get_forces.rst", "generated/api/pwtools.crys.Structure.get_mass.rst", "generated/api/pwtools.crys.Structure.get_mass_unique.rst", "generated/api/pwtools.crys.Structure.get_natoms.rst", "generated/api/pwtools.crys.Structure.get_nspecies.rst", "generated/api/pwtools.crys.Structure.get_nstep.rst", "generated/api/pwtools.crys.Structure.get_ntypat.rst", "generated/api/pwtools.crys.Structure.get_order.rst", "generated/api/pwtools.crys.Structure.get_pressure.rst", "generated/api/pwtools.crys.Structure.get_return_attr.rst", "generated/api/pwtools.crys.Structure.get_spglib.rst", "generated/api/pwtools.crys.Structure.get_stress.rst", "generated/api/pwtools.crys.Structure.get_symbols.rst", "generated/api/pwtools.crys.Structure.get_symbols_unique.rst", "generated/api/pwtools.crys.Structure.get_temperature.rst", "generated/api/pwtools.crys.Structure.get_time.rst", "generated/api/pwtools.crys.Structure.get_timestep.rst", "generated/api/pwtools.crys.Structure.get_traj.rst", "generated/api/pwtools.crys.Structure.get_typat.rst", "generated/api/pwtools.crys.Structure.get_velocity.rst", "generated/api/pwtools.crys.Structure.get_volume.rst", "generated/api/pwtools.crys.Structure.get_znucl.rst", "generated/api/pwtools.crys.Structure.get_znucl_unique.rst", "generated/api/pwtools.crys.Structure.init_attr_lst.rst", "generated/api/pwtools.crys.Structure.is_set_attr.rst", "generated/api/pwtools.crys.Structure.is_set_attr_lst.rst", "generated/api/pwtools.crys.Structure.is_struct.rst", "generated/api/pwtools.crys.Structure.is_traj.rst", "generated/api/pwtools.crys.Structure.load.rst", "generated/api/pwtools.crys.Structure.raw_return.rst", "generated/api/pwtools.crys.Structure.raw_slice_get.rst", "generated/api/pwtools.crys.Structure.set_all.rst", "generated/api/pwtools.crys.Structure.set_attr_lst.rst", "generated/api/pwtools.crys.Structure.timeaxis.rst", "generated/api/pwtools.crys.Structure.try_set_attr.rst", "generated/api/pwtools.crys.Structure.try_set_attr_lst.rst", "generated/api/pwtools.crys.Structure.update_units.rst", "generated/api/pwtools.crys.Trajectory.rst", "generated/api/pwtools.crys.Trajectory.__getitem__.rst", "generated/api/pwtools.crys.Trajectory.apply_units.rst", "generated/api/pwtools.crys.Trajectory.assert_attr.rst", "generated/api/pwtools.crys.Trajectory.assert_attr_lst.rst", "generated/api/pwtools.crys.Trajectory.assert_set_attr.rst", "generated/api/pwtools.crys.Trajectory.assert_set_attr_lst.rst", "generated/api/pwtools.crys.Trajectory.check_set_attr.rst", "generated/api/pwtools.crys.Trajectory.check_set_attr_lst.rst", "generated/api/pwtools.crys.Trajectory.compress.rst", "generated/api/pwtools.crys.Trajectory.copy.rst", "generated/api/pwtools.crys.Trajectory.dump.rst", "generated/api/pwtools.crys.Trajectory.get_ase_atoms.rst", "generated/api/pwtools.crys.Trajectory.get_cell.rst", "generated/api/pwtools.crys.Trajectory.get_coords.rst", "generated/api/pwtools.crys.Trajectory.get_coords_frac.rst", "generated/api/pwtools.crys.Trajectory.get_cryst_const.rst", "generated/api/pwtools.crys.Trajectory.get_ekin.rst", "generated/api/pwtools.crys.Trajectory.get_etot.rst", "generated/api/pwtools.crys.Trajectory.get_fake_ase_atoms.rst", "generated/api/pwtools.crys.Trajectory.get_forces.rst", "generated/api/pwtools.crys.Trajectory.get_mass.rst", "generated/api/pwtools.crys.Trajectory.get_mass_unique.rst", "generated/api/pwtools.crys.Trajectory.get_natoms.rst", "generated/api/pwtools.crys.Trajectory.get_nspecies.rst", "generated/api/pwtools.crys.Trajectory.get_nstep.rst", "generated/api/pwtools.crys.Trajectory.get_ntypat.rst", "generated/api/pwtools.crys.Trajectory.get_order.rst", "generated/api/pwtools.crys.Trajectory.get_pressure.rst", "generated/api/pwtools.crys.Trajectory.get_return_attr.rst", "generated/api/pwtools.crys.Trajectory.get_spglib.rst", "generated/api/pwtools.crys.Trajectory.get_stress.rst", "generated/api/pwtools.crys.Trajectory.get_symbols.rst", "generated/api/pwtools.crys.Trajectory.get_symbols_unique.rst", "generated/api/pwtools.crys.Trajectory.get_temperature.rst", "generated/api/pwtools.crys.Trajectory.get_time.rst", "generated/api/pwtools.crys.Trajectory.get_timestep.rst", "generated/api/pwtools.crys.Trajectory.get_traj.rst", "generated/api/pwtools.crys.Trajectory.get_typat.rst", "generated/api/pwtools.crys.Trajectory.get_velocity.rst", "generated/api/pwtools.crys.Trajectory.get_volume.rst", "generated/api/pwtools.crys.Trajectory.get_znucl.rst", "generated/api/pwtools.crys.Trajectory.get_znucl_unique.rst", "generated/api/pwtools.crys.Trajectory.init_attr_lst.rst", "generated/api/pwtools.crys.Trajectory.is_set_attr.rst", "generated/api/pwtools.crys.Trajectory.is_set_attr_lst.rst", "generated/api/pwtools.crys.Trajectory.is_struct.rst", "generated/api/pwtools.crys.Trajectory.is_traj.rst", "generated/api/pwtools.crys.Trajectory.load.rst", "generated/api/pwtools.crys.Trajectory.raw_return.rst", "generated/api/pwtools.crys.Trajectory.raw_slice_get.rst", "generated/api/pwtools.crys.Trajectory.set_all.rst", "generated/api/pwtools.crys.Trajectory.set_attr_lst.rst", "generated/api/pwtools.crys.Trajectory.timeaxis.rst", "generated/api/pwtools.crys.Trajectory.try_set_attr.rst", "generated/api/pwtools.crys.Trajectory.try_set_attr_lst.rst", "generated/api/pwtools.crys.Trajectory.update_units.rst", "generated/api/pwtools.crys.UnitsHandler.rst", "generated/api/pwtools.crys.UnitsHandler.apply_units.rst", "generated/api/pwtools.crys.UnitsHandler.assert_attr.rst", "generated/api/pwtools.crys.UnitsHandler.assert_attr_lst.rst", "generated/api/pwtools.crys.UnitsHandler.assert_set_attr.rst", "generated/api/pwtools.crys.UnitsHandler.assert_set_attr_lst.rst", "generated/api/pwtools.crys.UnitsHandler.check_set_attr.rst", "generated/api/pwtools.crys.UnitsHandler.check_set_attr_lst.rst", "generated/api/pwtools.crys.UnitsHandler.dump.rst", "generated/api/pwtools.crys.UnitsHandler.get_return_attr.rst", "generated/api/pwtools.crys.UnitsHandler.init_attr_lst.rst", "generated/api/pwtools.crys.UnitsHandler.is_set_attr.rst", "generated/api/pwtools.crys.UnitsHandler.is_set_attr_lst.rst", "generated/api/pwtools.crys.UnitsHandler.load.rst", "generated/api/pwtools.crys.UnitsHandler.raw_return.rst", "generated/api/pwtools.crys.UnitsHandler.raw_slice_get.rst", "generated/api/pwtools.crys.UnitsHandler.set_all.rst", "generated/api/pwtools.crys.UnitsHandler.set_attr_lst.rst", "generated/api/pwtools.crys.UnitsHandler.try_set_attr.rst", "generated/api/pwtools.crys.UnitsHandler.try_set_attr_lst.rst", "generated/api/pwtools.crys.UnitsHandler.update_units.rst", "generated/api/pwtools.crys._trans.rst", "generated/api/pwtools.crys.align_cart.rst", "generated/api/pwtools.crys.angle.rst", "generated/api/pwtools.crys.angles.rst", "generated/api/pwtools.crys.atoms2struct.rst", "generated/api/pwtools.crys.call_vmd_measure_gofr.rst", "generated/api/pwtools.crys.cc2cell.rst", "generated/api/pwtools.crys.cc2cell3d.rst", "generated/api/pwtools.crys.cc2celldm.rst", "generated/api/pwtools.crys.cell2cc.rst", "generated/api/pwtools.crys.cell2cc3d.rst", "generated/api/pwtools.crys.celldm2cc.rst", "generated/api/pwtools.crys.center_on_atom.rst", "generated/api/pwtools.crys.compress.rst", "generated/api/pwtools.crys.concatenate.rst", "generated/api/pwtools.crys.coord_trans.rst", "generated/api/pwtools.crys.coord_trans3d.rst", "generated/api/pwtools.crys.distances.rst", "generated/api/pwtools.crys.distances_traj.rst", "generated/api/pwtools.crys.grid_in_cell.rst", "generated/api/pwtools.crys.kgrid.rst", "generated/api/pwtools.crys.mean.rst", "generated/api/pwtools.crys.min_image_convention.rst", "generated/api/pwtools.crys.mix.rst", "generated/api/pwtools.crys.nearest_neighbors.rst", "generated/api/pwtools.crys.nearest_neighbors_from_dists.rst", "generated/api/pwtools.crys.nearest_neighbors_struct.rst", "generated/api/pwtools.crys.pbc_wrap.rst", "generated/api/pwtools.crys.pbc_wrap_coords.rst", "generated/api/pwtools.crys.pi.rst", "generated/api/pwtools.crys.populated_attrs.rst", "generated/api/pwtools.crys.recip_cell.rst", "generated/api/pwtools.crys.rmax_smith.rst", "generated/api/pwtools.crys.rmsd.rst", "generated/api/pwtools.crys.rpdf.rst", "generated/api/pwtools.crys.scell.rst", "generated/api/pwtools.crys.scell3d.rst", "generated/api/pwtools.crys.scell_mask.rst", "generated/api/pwtools.crys.smooth.rst", "generated/api/pwtools.crys.struct2atoms.rst", "generated/api/pwtools.crys.struct2traj.rst", "generated/api/pwtools.crys.tensor2voigt.rst", "generated/api/pwtools.crys.tensor2voigt3d.rst", "generated/api/pwtools.crys.velocity_traj.rst", "generated/api/pwtools.crys.vmd_measure_gofr.rst", "generated/api/pwtools.crys.voigt2tensor.rst", "generated/api/pwtools.crys.voigt2tensor3d.rst", "generated/api/pwtools.crys.volume_cc.rst", "generated/api/pwtools.crys.volume_cc3d.rst", "generated/api/pwtools.crys.volume_cell.rst", "generated/api/pwtools.crys.volume_cell3d.rst", "generated/api/pwtools.dcd.HEADER_DTYPE.rst", "generated/api/pwtools.dcd.HEADER_TYPES.rst", "generated/api/pwtools.dcd.read_dcd_data.rst", "generated/api/pwtools.dcd.read_dcd_data_f.rst", "generated/api/pwtools.dcd.read_dcd_data_ref.rst", "generated/api/pwtools.dcd.read_dcd_header.rst", "generated/api/pwtools.decorators.crys_add_doc.rst", "generated/api/pwtools.decorators.lazyprop.rst", "generated/api/pwtools.decorators.open_and_close.rst", "generated/api/pwtools.eos.Ang.rst", "generated/api/pwtools.eos.Bohr.rst", "generated/api/pwtools.eos.EVFunction.rst", "generated/api/pwtools.eos.EVFunction.dct2lst.rst", "generated/api/pwtools.eos.EVFunction.deriv.rst", "generated/api/pwtools.eos.EVFunction.evaluate.rst", "generated/api/pwtools.eos.EVFunction.get_min.rst", "generated/api/pwtools.eos.EVFunction.lst2dct.rst", "generated/api/pwtools.eos.ElkEOSFit.rst", "generated/api/pwtools.eos.ElkEOSFit.assert_attr.rst", "generated/api/pwtools.eos.ElkEOSFit.assert_attr_lst.rst", "generated/api/pwtools.eos.ElkEOSFit.assert_set_attr.rst", "generated/api/pwtools.eos.ElkEOSFit.assert_set_attr_lst.rst", "generated/api/pwtools.eos.ElkEOSFit.calc_bv.rst", "generated/api/pwtools.eos.ElkEOSFit.check_set_attr.rst", "generated/api/pwtools.eos.ElkEOSFit.check_set_attr_lst.rst", "generated/api/pwtools.eos.ElkEOSFit.dump.rst", "generated/api/pwtools.eos.ElkEOSFit.fit.rst", "generated/api/pwtools.eos.ElkEOSFit.get_min.rst", "generated/api/pwtools.eos.ElkEOSFit.get_return_attr.rst", "generated/api/pwtools.eos.ElkEOSFit.get_spl_bv.rst", "generated/api/pwtools.eos.ElkEOSFit.get_spl_ev.rst", "generated/api/pwtools.eos.ElkEOSFit.get_spl_pv.rst", "generated/api/pwtools.eos.ElkEOSFit.init_attr_lst.rst", "generated/api/pwtools.eos.ElkEOSFit.is_set_attr.rst", "generated/api/pwtools.eos.ElkEOSFit.is_set_attr_lst.rst", "generated/api/pwtools.eos.ElkEOSFit.load.rst", "generated/api/pwtools.eos.ElkEOSFit.raw_return.rst", "generated/api/pwtools.eos.ElkEOSFit.raw_slice_get.rst", "generated/api/pwtools.eos.ElkEOSFit.set_all.rst", "generated/api/pwtools.eos.ElkEOSFit.set_attr_lst.rst", "generated/api/pwtools.eos.ElkEOSFit.set_bv_method.rst", "generated/api/pwtools.eos.ElkEOSFit.try_set_attr.rst", "generated/api/pwtools.eos.ElkEOSFit.try_set_attr_lst.rst", "generated/api/pwtools.eos.EosFit.rst", "generated/api/pwtools.eos.EosFit.bulkmod.rst", "generated/api/pwtools.eos.EosFit.fit.rst", "generated/api/pwtools.eos.EosFit.get_max.rst", "generated/api/pwtools.eos.EosFit.get_min.rst", "generated/api/pwtools.eos.EosFit.get_root.rst", "generated/api/pwtools.eos.EosFit.is_mono.rst", "generated/api/pwtools.eos.EosFit.pressure.rst", "generated/api/pwtools.eos.EosFit.spl.rst", "generated/api/pwtools.eos.ExternEOS.rst", "generated/api/pwtools.eos.ExternEOS.assert_attr.rst", "generated/api/pwtools.eos.ExternEOS.assert_attr_lst.rst", "generated/api/pwtools.eos.ExternEOS.assert_set_attr.rst", "generated/api/pwtools.eos.ExternEOS.assert_set_attr_lst.rst", "generated/api/pwtools.eos.ExternEOS.calc_bv.rst", "generated/api/pwtools.eos.ExternEOS.check_set_attr.rst", "generated/api/pwtools.eos.ExternEOS.check_set_attr_lst.rst", "generated/api/pwtools.eos.ExternEOS.dump.rst", "generated/api/pwtools.eos.ExternEOS.fit.rst", "generated/api/pwtools.eos.ExternEOS.get_min.rst", "generated/api/pwtools.eos.ExternEOS.get_return_attr.rst", "generated/api/pwtools.eos.ExternEOS.get_spl_bv.rst", "generated/api/pwtools.eos.ExternEOS.get_spl_ev.rst", "generated/api/pwtools.eos.ExternEOS.get_spl_pv.rst", "generated/api/pwtools.eos.ExternEOS.init_attr_lst.rst", "generated/api/pwtools.eos.ExternEOS.is_set_attr.rst", "generated/api/pwtools.eos.ExternEOS.is_set_attr_lst.rst", "generated/api/pwtools.eos.ExternEOS.load.rst", "generated/api/pwtools.eos.ExternEOS.raw_return.rst", "generated/api/pwtools.eos.ExternEOS.raw_slice_get.rst", "generated/api/pwtools.eos.ExternEOS.set_all.rst", "generated/api/pwtools.eos.ExternEOS.set_attr_lst.rst", "generated/api/pwtools.eos.ExternEOS.set_bv_method.rst", "generated/api/pwtools.eos.ExternEOS.try_set_attr.rst", "generated/api/pwtools.eos.ExternEOS.try_set_attr_lst.rst", "generated/api/pwtools.eos.Ha.rst", "generated/api/pwtools.eos.MaxDerivException.rst", "generated/api/pwtools.eos.Ry.rst", "generated/api/pwtools.eos.Vinet.rst", "generated/api/pwtools.eos.Vinet.dct2lst.rst", "generated/api/pwtools.eos.Vinet.deriv.rst", "generated/api/pwtools.eos.Vinet.evaluate.rst", "generated/api/pwtools.eos.Vinet.get_min.rst", "generated/api/pwtools.eos.Vinet.lst2dct.rst", "generated/api/pwtools.eos._vinet.rst", "generated/api/pwtools.eos._vinet_deriv1.rst", "generated/api/pwtools.eos._vinet_deriv2.rst", "generated/api/pwtools.eos.eV.rst", "generated/api/pwtools.eos.eV_by_Ang3_to_GPa.rst", "generated/api/pwtools.io.Ha.rst", "generated/api/pwtools.io.ReadFactory.rst", "generated/api/pwtools.io.eV.rst", "generated/api/pwtools.io.load_h5.rst", "generated/api/pwtools.io.read_cif.rst", "generated/api/pwtools.io.read_cp2k_md.rst", "generated/api/pwtools.io.read_cp2k_md_dcd.rst", "generated/api/pwtools.io.read_cp2k_relax.rst", "generated/api/pwtools.io.read_cp2k_scf.rst", "generated/api/pwtools.io.read_cpmd_md.rst", "generated/api/pwtools.io.read_cpmd_scf.rst", "generated/api/pwtools.io.read_h5.rst", "generated/api/pwtools.io.read_lammps_md_dcd.rst", "generated/api/pwtools.io.read_lammps_md_txt.rst", "generated/api/pwtools.io.read_pdb.rst", "generated/api/pwtools.io.read_pickle.rst", "generated/api/pwtools.io.read_pw_md.rst", "generated/api/pwtools.io.read_pw_scf.rst", "generated/api/pwtools.io.read_pw_vcmd.rst", "generated/api/pwtools.io.wien_sgroup_input.rst", "generated/api/pwtools.io.write_axsf.rst", "generated/api/pwtools.io.write_cif.rst", "generated/api/pwtools.io.write_h5.rst", "generated/api/pwtools.io.write_lammps.rst", "generated/api/pwtools.io.write_wien_sgroup.rst", "generated/api/pwtools.io.write_xyz.rst", "generated/api/pwtools.kpath.SpecialPointsPath.rst", "generated/api/pwtools.kpath.get_path_norm.rst", "generated/api/pwtools.kpath.kpath.rst", "generated/api/pwtools.kpath.plot_dis.rst", "generated/api/pwtools.lammps.struct_str.rst", "generated/api/pwtools.mpl.Data2D.rst", "generated/api/pwtools.mpl.Data2D.copy.rst", "generated/api/pwtools.mpl.Data2D.update.rst", "generated/api/pwtools.mpl.Data3D.rst", "generated/api/pwtools.mpl.Data3D.copy.rst", "generated/api/pwtools.mpl.Data3D.update.rst", "generated/api/pwtools.mpl.Plot.rst", "generated/api/pwtools.mpl.Plot.collect_legends.rst", "generated/api/pwtools.mpl.Plot.legend.rst", "generated/api/pwtools.mpl.Plot.savefig.rst", "generated/api/pwtools.mpl.cc.rst", "generated/api/pwtools.mpl.ccl.rst", "generated/api/pwtools.mpl.ccm.rst", "generated/api/pwtools.mpl.clc.rst", "generated/api/pwtools.mpl.clean_ax3d.rst", "generated/api/pwtools.mpl.cm.rst", "generated/api/pwtools.mpl.cmc.rst", "generated/api/pwtools.mpl.collect_legends.rst", "generated/api/pwtools.mpl.color_ax.rst", "generated/api/pwtools.mpl.colors.rst", "generated/api/pwtools.mpl.colors_linestyles.rst", "generated/api/pwtools.mpl.colors_markers.rst", "generated/api/pwtools.mpl.cycle_colors.rst", "generated/api/pwtools.mpl.cycle_colors_linestyles.rst", "generated/api/pwtools.mpl.cycle_colors_markers.rst", "generated/api/pwtools.mpl.cycle_linestyles_colors.rst", "generated/api/pwtools.mpl.cycle_markers.rst", "generated/api/pwtools.mpl.cycle_markers_colors.rst", "generated/api/pwtools.mpl.fig_ax.rst", "generated/api/pwtools.mpl.fig_ax3d.rst", "generated/api/pwtools.mpl.get_2d_testdata.rst", "generated/api/pwtools.mpl.ic.rst", "generated/api/pwtools.mpl.icl.rst", "generated/api/pwtools.mpl.icm.rst", "generated/api/pwtools.mpl.ilc.rst", "generated/api/pwtools.mpl.im.rst", "generated/api/pwtools.mpl.imc.rst", "generated/api/pwtools.mpl.iter_colors.rst", "generated/api/pwtools.mpl.iter_colors_linestyles.rst", "generated/api/pwtools.mpl.iter_colors_markers.rst", "generated/api/pwtools.mpl.iter_linestyles.rst", "generated/api/pwtools.mpl.iter_linestyles_colors.rst", "generated/api/pwtools.mpl.iter_markers.rst", "generated/api/pwtools.mpl.iter_markers_colors.rst", "generated/api/pwtools.mpl.linestyles.rst", "generated/api/pwtools.mpl.linestyles_colors.rst", "generated/api/pwtools.mpl.make_axes_grid_fig.rst", "generated/api/pwtools.mpl.markers.rst", "generated/api/pwtools.mpl.markers_colors.rst", "generated/api/pwtools.mpl.meshgridt.rst", "generated/api/pwtools.mpl.new_axis.rst", "generated/api/pwtools.mpl.plotlines3d.rst", "generated/api/pwtools.mpl.prepare_plots.rst", "generated/api/pwtools.mpl.smooth_color.rst", "generated/api/pwtools.mpl.smooth_color_func.rst", "generated/api/pwtools.mttk.a0.rst", "generated/api/pwtools.mttk.add_doc.rst", "generated/api/pwtools.mttk.barostat_mass_w.rst", "generated/api/pwtools.mttk.barostat_mass_wg.rst", "generated/api/pwtools.mttk.barostat_nhc_masses.rst", "generated/api/pwtools.mttk.kb.rst", "generated/api/pwtools.mttk.m0.rst", "generated/api/pwtools.mttk.particle_nhc_masses.rst", "generated/api/pwtools.num.DataND.rst", "generated/api/pwtools.num.DataND.a2_to_an.rst", "generated/api/pwtools.num.EPS.rst", "generated/api/pwtools.num.Fit1D.rst", "generated/api/pwtools.num.Fit1D.get_max.rst", "generated/api/pwtools.num.Fit1D.get_min.rst", "generated/api/pwtools.num.Fit1D.get_root.rst", "generated/api/pwtools.num.Fit1D.is_mono.rst", "generated/api/pwtools.num.Interpol2D.rst", "generated/api/pwtools.num.Interpol2D.get_min.rst", "generated/api/pwtools.num.PolyFit.rst", "generated/api/pwtools.num.PolyFit.get_min.rst", "generated/api/pwtools.num.PolyFit1D.rst", "generated/api/pwtools.num.PolyFit1D.get_max.rst", "generated/api/pwtools.num.PolyFit1D.get_min.rst", "generated/api/pwtools.num.PolyFit1D.get_root.rst", "generated/api/pwtools.num.PolyFit1D.is_mono.rst", "generated/api/pwtools.num.Spline.rst", "generated/api/pwtools.num.Spline.get_max.rst", "generated/api/pwtools.num.Spline.get_min.rst", "generated/api/pwtools.num.Spline.get_root.rst", "generated/api/pwtools.num.Spline.invsplev.rst", "generated/api/pwtools.num.Spline.is_mono.rst", "generated/api/pwtools.num.Spline.splev.rst", "generated/api/pwtools.num.deriv_spl.rst", "generated/api/pwtools.num.distsq.rst", "generated/api/pwtools.num.euler_matrix.rst", "generated/api/pwtools.num.extend_array.rst", "generated/api/pwtools.num.fempty.rst", "generated/api/pwtools.num.findmin.rst", "generated/api/pwtools.num.findroot.rst", "generated/api/pwtools.num.inner_points_mask.rst", "generated/api/pwtools.num.match_mask.rst", "generated/api/pwtools.num.meshgridt.rst", "generated/api/pwtools.num.norm.rst", "generated/api/pwtools.num.norm_int.rst", "generated/api/pwtools.num.normalize.rst", "generated/api/pwtools.num.order_similar.rst", "generated/api/pwtools.num.pi.rst", "generated/api/pwtools.num.poly_powers.rst", "generated/api/pwtools.num.poly_str.rst", "generated/api/pwtools.num.polyfit.rst", "generated/api/pwtools.num.polyval.rst", "generated/api/pwtools.num.rms.rst", "generated/api/pwtools.num.rms3d.rst", "generated/api/pwtools.num.round_up_next_multiple.rst", "generated/api/pwtools.num.sliceput.rst", "generated/api/pwtools.num.slicetake.rst", "generated/api/pwtools.num.sum.rst", "generated/api/pwtools.num.vander.rst", "generated/api/pwtools.num.vlinspace.rst", "generated/api/pwtools.parse.AWK.rst", "generated/api/pwtools.parse.Ang.rst", "generated/api/pwtools.parse.Angstrom.rst", "generated/api/pwtools.parse.Bohr.rst", "generated/api/pwtools.parse.CifFile.rst", "generated/api/pwtools.parse.CifFile.apply_units.rst", "generated/api/pwtools.parse.CifFile.assert_attr.rst", "generated/api/pwtools.parse.CifFile.assert_attr_lst.rst", "generated/api/pwtools.parse.CifFile.assert_set_attr.rst", "generated/api/pwtools.parse.CifFile.assert_set_attr_lst.rst", "generated/api/pwtools.parse.CifFile.check_set_attr.rst", "generated/api/pwtools.parse.CifFile.check_set_attr_lst.rst", "generated/api/pwtools.parse.CifFile.cif_clear_atom_symbol.rst", "generated/api/pwtools.parse.CifFile.cif_str2float.rst", "generated/api/pwtools.parse.CifFile.default_units.rst", "generated/api/pwtools.parse.CifFile.dump.rst", "generated/api/pwtools.parse.CifFile.get_cont.rst", "generated/api/pwtools.parse.CifFile.get_coords.rst", "generated/api/pwtools.parse.CifFile.get_coords_frac.rst", "generated/api/pwtools.parse.CifFile.get_cryst_const.rst", "generated/api/pwtools.parse.CifFile.get_return_attr.rst", "generated/api/pwtools.parse.CifFile.get_struct.rst", "generated/api/pwtools.parse.CifFile.get_symbols.rst", "generated/api/pwtools.parse.CifFile.init_attr_lst.rst", "generated/api/pwtools.parse.CifFile.is_set_attr.rst", "generated/api/pwtools.parse.CifFile.is_set_attr_lst.rst", "generated/api/pwtools.parse.CifFile.load.rst", "generated/api/pwtools.parse.CifFile.parse.rst", "generated/api/pwtools.parse.CifFile.raw_return.rst", "generated/api/pwtools.parse.CifFile.raw_slice_get.rst", "generated/api/pwtools.parse.CifFile.set_all.rst", "generated/api/pwtools.parse.CifFile.set_attr_lst.rst", "generated/api/pwtools.parse.CifFile.try_set_attr.rst", "generated/api/pwtools.parse.CifFile.try_set_attr_lst.rst", "generated/api/pwtools.parse.CifFile.update_units.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.apply_units.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.assert_attr.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.assert_attr_lst.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.assert_set_attr.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.assert_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.check_set_attr.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.check_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.default_units.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.dump.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_cell.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_cont.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_coords.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_cryst_const.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_econst.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_ekin.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_etot.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_forces.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_natoms.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_nstep.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_return_attr.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_stress.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_struct.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_symbols.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_temperature.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_timestep.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_traj.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_velocity.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_volume.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.init_attr_lst.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.is_set_attr.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.is_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.load.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.parse.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.raw_return.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.raw_slice_get.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.set_all.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.timeaxis.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.try_set_attr.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.try_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.update_units.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.apply_units.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.assert_attr.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.assert_attr_lst.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.assert_set_attr.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.assert_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.check_set_attr.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.check_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.default_units.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.dump.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_cell.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_cont.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_coords.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_econst.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_ekin.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_etot.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_forces.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_natoms.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_return_attr.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_stress.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_struct.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_symbols.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_temperature.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_timestep.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_traj.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_velocity.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_volume.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.init_attr_lst.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.is_set_attr.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.is_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.load.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.parse.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.raw_return.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.raw_slice_get.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.set_all.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.timeaxis.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.try_set_attr.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.try_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.update_units.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.apply_units.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.assert_attr.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.assert_attr_lst.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.assert_set_attr.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.assert_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.check_set_attr.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.check_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.default_units.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.dump.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_cell.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_cont.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_coords.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_econst.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_ekin.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_etot.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_forces.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_natoms.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_return_attr.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_stress.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_struct.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_symbols.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_temperature.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_timestep.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_traj.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_velocity.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_volume.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.init_attr_lst.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.is_set_attr.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.is_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.load.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.parse.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.raw_return.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.raw_slice_get.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.set_all.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.timeaxis.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.try_set_attr.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.try_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.update_units.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.apply_units.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.assert_attr.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.assert_attr_lst.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.assert_set_attr.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.assert_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.check_set_attr.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.check_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.default_units.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.dump.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_cont.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_etot.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_forces.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_natoms.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_return_attr.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_stress.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_struct.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_symbols.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.init_attr_lst.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.is_set_attr.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.is_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.load.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.parse.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.raw_return.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.raw_slice_get.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.set_all.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.try_set_attr.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.try_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.update_units.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.apply_units.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.assert_attr.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.assert_attr_lst.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.assert_set_attr.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.assert_set_attr_lst.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.check_set_attr.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.check_set_attr_lst.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.default_units.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.dump.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_cell.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_cont.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_coords.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_coords_frac.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_econst.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_ekin.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_ekin_cell.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_ekin_elec.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_ekinc.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_ekinh.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_etot.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_forces.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_natoms.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_nkpoints.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_nstep_scf.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_return_attr.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_scf_converged.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_stress.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_struct.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_symbols.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_temperature.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_temperature_cell.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_timestep.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_traj.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_velocity.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.init_attr_lst.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.is_set_attr.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.is_set_attr_lst.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.load.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.parse.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.raw_return.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.raw_slice_get.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.set_all.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.set_attr_lst.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.timeaxis.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.try_set_attr.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.try_set_attr_lst.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.update_units.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.apply_units.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.assert_attr.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.assert_attr_lst.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.assert_set_attr.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.assert_set_attr_lst.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.check_set_attr.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.check_set_attr_lst.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.default_units.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.dump.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_cell.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_cont.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_coords_frac.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_etot.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_forces.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_natoms.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_nkpoints.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_nstep_scf.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_return_attr.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_scf_converged.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_stress.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_struct.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_symbols.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.init_attr_lst.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.is_set_attr.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.is_set_attr_lst.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.load.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.parse.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.raw_return.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.raw_slice_get.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.set_all.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.set_attr_lst.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.try_set_attr.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.try_set_attr_lst.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.update_units.rst", "generated/api/pwtools.parse.DcdOutputFile.rst", "generated/api/pwtools.parse.DcdOutputFile.get_cell.rst", "generated/api/pwtools.parse.DcdOutputFile.get_coords.rst", "generated/api/pwtools.parse.DcdOutputFile.get_cryst_const.rst", "generated/api/pwtools.parse.DcdOutputFile.get_natoms.rst", "generated/api/pwtools.parse.DcdOutputFile.get_nstep.rst", "generated/api/pwtools.parse.DcdOutputFile.get_volume.rst", "generated/api/pwtools.parse.Ha.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.apply_units.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.assert_attr.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.assert_attr_lst.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.assert_set_attr.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.assert_set_attr_lst.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.check_set_attr.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.check_set_attr_lst.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.default_units.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.dump.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_cell.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_cont.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_coords.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_coords_frac.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_cryst_const.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_ekin.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_etot.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_forces.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_natoms.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_nstep.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_return_attr.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_stress.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_struct.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_symbols.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_temperature.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_timestep.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_traj.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_velocity.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_volume.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.init_attr_lst.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.is_set_attr.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.is_set_attr_lst.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.load.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.parse.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.raw_return.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.raw_slice_get.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.set_all.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.set_attr_lst.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.timeaxis.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.try_set_attr.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.try_set_attr_lst.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.update_units.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.apply_units.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.assert_attr.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.assert_attr_lst.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.assert_set_attr.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.assert_set_attr_lst.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.check_set_attr.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.check_set_attr_lst.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.default_units.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.dump.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_cell.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_cont.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_coords.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_coords_frac.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_cryst_const.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_ekin.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_etot.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_forces.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_natoms.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_return_attr.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_stress.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_struct.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_symbols.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_temperature.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_timestep.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_traj.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_velocity.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_volume.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.init_attr_lst.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.is_set_attr.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.is_set_attr_lst.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.load.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.parse.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.raw_return.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.raw_slice_get.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.set_all.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.set_attr_lst.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.timeaxis.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.try_set_attr.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.try_set_attr_lst.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.update_units.rst", "generated/api/pwtools.parse.PDBFile.rst", "generated/api/pwtools.parse.PDBFile.apply_units.rst", "generated/api/pwtools.parse.PDBFile.assert_attr.rst", "generated/api/pwtools.parse.PDBFile.assert_attr_lst.rst", "generated/api/pwtools.parse.PDBFile.assert_set_attr.rst", "generated/api/pwtools.parse.PDBFile.assert_set_attr_lst.rst", "generated/api/pwtools.parse.PDBFile.check_set_attr.rst", "generated/api/pwtools.parse.PDBFile.check_set_attr_lst.rst", "generated/api/pwtools.parse.PDBFile.default_units.rst", "generated/api/pwtools.parse.PDBFile.dump.rst", "generated/api/pwtools.parse.PDBFile.get_cont.rst", "generated/api/pwtools.parse.PDBFile.get_coords.rst", "generated/api/pwtools.parse.PDBFile.get_cryst_const.rst", "generated/api/pwtools.parse.PDBFile.get_return_attr.rst", "generated/api/pwtools.parse.PDBFile.get_struct.rst", "generated/api/pwtools.parse.PDBFile.get_symbols.rst", "generated/api/pwtools.parse.PDBFile.init_attr_lst.rst", "generated/api/pwtools.parse.PDBFile.is_set_attr.rst", "generated/api/pwtools.parse.PDBFile.is_set_attr_lst.rst", "generated/api/pwtools.parse.PDBFile.load.rst", "generated/api/pwtools.parse.PDBFile.parse.rst", "generated/api/pwtools.parse.PDBFile.raw_return.rst", "generated/api/pwtools.parse.PDBFile.raw_slice_get.rst", "generated/api/pwtools.parse.PDBFile.set_all.rst", "generated/api/pwtools.parse.PDBFile.set_attr_lst.rst", "generated/api/pwtools.parse.PDBFile.try_set_attr.rst", "generated/api/pwtools.parse.PDBFile.try_set_attr_lst.rst", "generated/api/pwtools.parse.PDBFile.update_units.rst", "generated/api/pwtools.parse.PwMDOutputFile.rst", "generated/api/pwtools.parse.PwMDOutputFile.apply_units.rst", "generated/api/pwtools.parse.PwMDOutputFile.assert_attr.rst", "generated/api/pwtools.parse.PwMDOutputFile.assert_attr_lst.rst", "generated/api/pwtools.parse.PwMDOutputFile.assert_set_attr.rst", "generated/api/pwtools.parse.PwMDOutputFile.assert_set_attr_lst.rst", "generated/api/pwtools.parse.PwMDOutputFile.check_set_attr.rst", "generated/api/pwtools.parse.PwMDOutputFile.check_set_attr_lst.rst", "generated/api/pwtools.parse.PwMDOutputFile.default_units.rst", "generated/api/pwtools.parse.PwMDOutputFile.dump.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_alat.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_cell.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_cell_unit.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_cont.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_coords.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_coords_frac.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_coords_unit.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_ekin.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_etot.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_forces.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_natoms.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_nkpoints.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_nstep_scf.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_return_attr.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_scf_converged.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_stress.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_struct.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_symbols.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_temperature.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_timestep.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_traj.rst", "generated/api/pwtools.parse.PwMDOutputFile.init_attr_lst.rst", "generated/api/pwtools.parse.PwMDOutputFile.is_set_attr.rst", "generated/api/pwtools.parse.PwMDOutputFile.is_set_attr_lst.rst", "generated/api/pwtools.parse.PwMDOutputFile.load.rst", "generated/api/pwtools.parse.PwMDOutputFile.parse.rst", "generated/api/pwtools.parse.PwMDOutputFile.raw_return.rst", "generated/api/pwtools.parse.PwMDOutputFile.raw_slice_get.rst", "generated/api/pwtools.parse.PwMDOutputFile.set_all.rst", "generated/api/pwtools.parse.PwMDOutputFile.set_attr_lst.rst", "generated/api/pwtools.parse.PwMDOutputFile.timeaxis.rst", "generated/api/pwtools.parse.PwMDOutputFile.try_set_attr.rst", "generated/api/pwtools.parse.PwMDOutputFile.try_set_attr_lst.rst", "generated/api/pwtools.parse.PwMDOutputFile.update_units.rst", "generated/api/pwtools.parse.PwSCFOutputFile.rst", "generated/api/pwtools.parse.PwSCFOutputFile.apply_units.rst", "generated/api/pwtools.parse.PwSCFOutputFile.assert_attr.rst", "generated/api/pwtools.parse.PwSCFOutputFile.assert_attr_lst.rst", "generated/api/pwtools.parse.PwSCFOutputFile.assert_set_attr.rst", "generated/api/pwtools.parse.PwSCFOutputFile.assert_set_attr_lst.rst", "generated/api/pwtools.parse.PwSCFOutputFile.check_set_attr.rst", "generated/api/pwtools.parse.PwSCFOutputFile.check_set_attr_lst.rst", "generated/api/pwtools.parse.PwSCFOutputFile.default_units.rst", "generated/api/pwtools.parse.PwSCFOutputFile.dump.rst", "generated/api/pwtools.parse.PwSCFOutputFile.get_alat.rst", "generated/api/pwtools.parse.PwSCFOutputFile.get_cell.rst", "generated/api/pwtools.parse.PwSCFOutputFile.get_cont.rst", "generated/api/pwtools.parse.PwSCFOutputFile.get_coords.rst", "generated/api/pwtools.parse.PwSCFOutputFile.get_etot.rst", "generated/api/pwtools.parse.PwSCFOutputFile.get_forces.rst", "generated/api/pwtools.parse.PwSCFOutputFile.get_natoms.rst", "generated/api/pwtools.parse.PwSCFOutputFile.get_nkpoints.rst", "generated/api/pwtools.parse.PwSCFOutputFile.get_nstep_scf.rst", "generated/api/pwtools.parse.PwSCFOutputFile.get_return_attr.rst", "generated/api/pwtools.parse.PwSCFOutputFile.get_scf_converged.rst", "generated/api/pwtools.parse.PwSCFOutputFile.get_stress.rst", "generated/api/pwtools.parse.PwSCFOutputFile.get_struct.rst", "generated/api/pwtools.parse.PwSCFOutputFile.get_symbols.rst", "generated/api/pwtools.parse.PwSCFOutputFile.init_attr_lst.rst", "generated/api/pwtools.parse.PwSCFOutputFile.is_set_attr.rst", "generated/api/pwtools.parse.PwSCFOutputFile.is_set_attr_lst.rst", "generated/api/pwtools.parse.PwSCFOutputFile.load.rst", "generated/api/pwtools.parse.PwSCFOutputFile.parse.rst", "generated/api/pwtools.parse.PwSCFOutputFile.raw_return.rst", "generated/api/pwtools.parse.PwSCFOutputFile.raw_slice_get.rst", "generated/api/pwtools.parse.PwSCFOutputFile.set_all.rst", "generated/api/pwtools.parse.PwSCFOutputFile.set_attr_lst.rst", "generated/api/pwtools.parse.PwSCFOutputFile.try_set_attr.rst", "generated/api/pwtools.parse.PwSCFOutputFile.try_set_attr_lst.rst", "generated/api/pwtools.parse.PwSCFOutputFile.update_units.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.apply_units.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.assert_attr.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.assert_attr_lst.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.assert_set_attr.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.assert_set_attr_lst.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.check_set_attr.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.check_set_attr_lst.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.default_units.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.dump.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_alat.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_cell.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_cell_unit.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_cont.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_coords.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_coords_frac.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_coords_unit.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_econst.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_ekin.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_etot.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_forces.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_natoms.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_nkpoints.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_nstep_scf.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_return_attr.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_scf_converged.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_stress.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_struct.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_symbols.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_temperature.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_timestep.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_traj.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.init_attr_lst.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.is_set_attr.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.is_set_attr_lst.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.load.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.parse.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.raw_return.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.raw_slice_get.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.set_all.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.set_attr_lst.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.timeaxis.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.try_set_attr.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.try_set_attr_lst.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.update_units.rst", "generated/api/pwtools.parse.Ry.rst", "generated/api/pwtools.parse.StructureFileParser.rst", "generated/api/pwtools.parse.StructureFileParser.apply_units.rst", "generated/api/pwtools.parse.StructureFileParser.assert_attr.rst", "generated/api/pwtools.parse.StructureFileParser.assert_attr_lst.rst", "generated/api/pwtools.parse.StructureFileParser.assert_set_attr.rst", "generated/api/pwtools.parse.StructureFileParser.assert_set_attr_lst.rst", "generated/api/pwtools.parse.StructureFileParser.check_set_attr.rst", "generated/api/pwtools.parse.StructureFileParser.check_set_attr_lst.rst", "generated/api/pwtools.parse.StructureFileParser.default_units.rst", "generated/api/pwtools.parse.StructureFileParser.dump.rst", "generated/api/pwtools.parse.StructureFileParser.get_cont.rst", "generated/api/pwtools.parse.StructureFileParser.get_return_attr.rst", "generated/api/pwtools.parse.StructureFileParser.get_struct.rst", "generated/api/pwtools.parse.StructureFileParser.init_attr_lst.rst", "generated/api/pwtools.parse.StructureFileParser.is_set_attr.rst", "generated/api/pwtools.parse.StructureFileParser.is_set_attr_lst.rst", "generated/api/pwtools.parse.StructureFileParser.load.rst", "generated/api/pwtools.parse.StructureFileParser.parse.rst", "generated/api/pwtools.parse.StructureFileParser.raw_return.rst", "generated/api/pwtools.parse.StructureFileParser.raw_slice_get.rst", "generated/api/pwtools.parse.StructureFileParser.set_all.rst", "generated/api/pwtools.parse.StructureFileParser.set_attr_lst.rst", "generated/api/pwtools.parse.StructureFileParser.try_set_attr.rst", "generated/api/pwtools.parse.StructureFileParser.try_set_attr_lst.rst", "generated/api/pwtools.parse.StructureFileParser.update_units.rst", "generated/api/pwtools.parse.TrajectoryFileParser.rst", "generated/api/pwtools.parse.TrajectoryFileParser.apply_units.rst", "generated/api/pwtools.parse.TrajectoryFileParser.assert_attr.rst", "generated/api/pwtools.parse.TrajectoryFileParser.assert_attr_lst.rst", "generated/api/pwtools.parse.TrajectoryFileParser.assert_set_attr.rst", "generated/api/pwtools.parse.TrajectoryFileParser.assert_set_attr_lst.rst", "generated/api/pwtools.parse.TrajectoryFileParser.check_set_attr.rst", "generated/api/pwtools.parse.TrajectoryFileParser.check_set_attr_lst.rst", "generated/api/pwtools.parse.TrajectoryFileParser.default_units.rst", "generated/api/pwtools.parse.TrajectoryFileParser.dump.rst", "generated/api/pwtools.parse.TrajectoryFileParser.get_cont.rst", "generated/api/pwtools.parse.TrajectoryFileParser.get_return_attr.rst", "generated/api/pwtools.parse.TrajectoryFileParser.get_struct.rst", "generated/api/pwtools.parse.TrajectoryFileParser.get_traj.rst", "generated/api/pwtools.parse.TrajectoryFileParser.init_attr_lst.rst", "generated/api/pwtools.parse.TrajectoryFileParser.is_set_attr.rst", "generated/api/pwtools.parse.TrajectoryFileParser.is_set_attr_lst.rst", "generated/api/pwtools.parse.TrajectoryFileParser.load.rst", "generated/api/pwtools.parse.TrajectoryFileParser.parse.rst", "generated/api/pwtools.parse.TrajectoryFileParser.raw_return.rst", "generated/api/pwtools.parse.TrajectoryFileParser.raw_slice_get.rst", "generated/api/pwtools.parse.TrajectoryFileParser.set_all.rst", "generated/api/pwtools.parse.TrajectoryFileParser.set_attr_lst.rst", "generated/api/pwtools.parse.TrajectoryFileParser.timeaxis.rst", "generated/api/pwtools.parse.TrajectoryFileParser.try_set_attr.rst", "generated/api/pwtools.parse.TrajectoryFileParser.try_set_attr_lst.rst", "generated/api/pwtools.parse.TrajectoryFileParser.update_units.rst", "generated/api/pwtools.parse.arr1d_from_txt.rst", "generated/api/pwtools.parse.arr2d_from_txt.rst", "generated/api/pwtools.parse.axis_lens.rst", "generated/api/pwtools.parse.eV.rst", "generated/api/pwtools.parse.float_from_txt.rst", "generated/api/pwtools.parse.fs.rst", "generated/api/pwtools.parse.int_from_txt.rst", "generated/api/pwtools.parse.nstep_from_txt.rst", "generated/api/pwtools.parse.pi.rst", "generated/api/pwtools.parse.ps.rst", "generated/api/pwtools.parse.thart.rst", "generated/api/pwtools.parse.traj_from_txt.rst", "generated/api/pwtools.pwscf.EPS.rst", "generated/api/pwtools.pwscf.atpos_str.rst", "generated/api/pwtools.pwscf.atpos_str_fast.rst", "generated/api/pwtools.pwscf.atspec_str.rst", "generated/api/pwtools.pwscf.bool2str.rst", "generated/api/pwtools.pwscf.ibrav2cell.rst", "generated/api/pwtools.pwscf.kpoints_str.rst", "generated/api/pwtools.pwscf.kpoints_str_pwin.rst", "generated/api/pwtools.pwscf.kpoints_str_pwin_full.rst", "generated/api/pwtools.pwscf.kpointstr.rst", "generated/api/pwtools.pwscf.kpointstr_pwin.rst", "generated/api/pwtools.pwscf.kpointstr_pwin2.rst", "generated/api/pwtools.pwscf.read_all_dyn.rst", "generated/api/pwtools.pwscf.read_dyn.rst", "generated/api/pwtools.pwscf.read_dynmat.rst", "generated/api/pwtools.pwscf.read_dynmat_ir_raman.rst", "generated/api/pwtools.pwscf.read_dynmat_out.rst", "generated/api/pwtools.pwscf.read_matdyn_freq.rst", "generated/api/pwtools.pwscf.read_matdyn_modes.rst", "generated/api/pwtools.pydos.direct_pdos.rst", "generated/api/pwtools.pydos.fvacf.rst", "generated/api/pwtools.pydos.pdos.rst", "generated/api/pwtools.pydos.pyvacf.rst", "generated/api/pwtools.pydos.vacf_pdos.rst", "generated/api/pwtools.random.RandomStructure.rst", "generated/api/pwtools.random.RandomStructure.get_random_cryst_const.rst", "generated/api/pwtools.random.RandomStructure.get_random_struct.rst", "generated/api/pwtools.random.RandomStructureFail.rst", "generated/api/pwtools.random.pi.rst", "generated/api/pwtools.random.random_struct.rst", "generated/api/pwtools.rbf.core.JAX_MODE.rst", "generated/api/pwtools.rbf.core.Rbf.rst", "generated/api/pwtools.rbf.core.Rbf.deriv.rst", "generated/api/pwtools.rbf.core.Rbf.deriv_jax.rst", "generated/api/pwtools.rbf.core.Rbf.fit.rst", "generated/api/pwtools.rbf.core.Rbf.fit_error.rst", "generated/api/pwtools.rbf.core.Rbf.get_distsq.rst", "generated/api/pwtools.rbf.core.Rbf.get_params.rst", "generated/api/pwtools.rbf.core.Rbf.predict.rst", "generated/api/pwtools.rbf.core._np_distsq.rst", "generated/api/pwtools.rbf.core.estimate_p.rst", "generated/api/pwtools.rbf.core.euclidean_dists.rst", "generated/api/pwtools.rbf.core.jit.rst", "generated/api/pwtools.rbf.core.rbf_dct.rst", "generated/api/pwtools.rbf.core.rbf_gauss.rst", "generated/api/pwtools.rbf.core.rbf_inv_multi.rst", "generated/api/pwtools.rbf.core.rbf_multi.rst", "generated/api/pwtools.rbf.core.squared_dists.rst", "generated/api/pwtools.rbf.hyperopt.FitError.rst", "generated/api/pwtools.rbf.hyperopt.FitError.cv.rst", "generated/api/pwtools.rbf.hyperopt.FitError.err_cv.rst", "generated/api/pwtools.rbf.hyperopt.FitError.err_direct.rst", "generated/api/pwtools.rbf.hyperopt.RepeatedKFold.rst", "generated/api/pwtools.rbf.hyperopt.fit_opt.rst", "generated/api/pwtools.regex.float_re.rst", "generated/api/pwtools.signal.FIRFilter.rst", "generated/api/pwtools.signal.acorr.rst", "generated/api/pwtools.signal.cauchy.rst", "generated/api/pwtools.signal.dft.rst", "generated/api/pwtools.signal.ezfft.rst", "generated/api/pwtools.signal.fft_1d_loop.rst", "generated/api/pwtools.signal.fftsample.rst", "generated/api/pwtools.signal.find_peaks.rst", "generated/api/pwtools.signal.gauss.rst", "generated/api/pwtools.signal.lorentz.rst", "generated/api/pwtools.signal.mirror.rst", "generated/api/pwtools.signal.odd.rst", "generated/api/pwtools.signal.pad_zeros.rst", "generated/api/pwtools.signal.scale.rst", "generated/api/pwtools.signal.smooth.rst", "generated/api/pwtools.signal.welch.rst", "generated/api/pwtools.sql.SQLEntry.rst", "generated/api/pwtools.sql.SQLiteDB.rst", "generated/api/pwtools.sql.SQLiteDB.add_column.rst", "generated/api/pwtools.sql.SQLiteDB.add_columns.rst", "generated/api/pwtools.sql.SQLiteDB.attach_column.rst", "generated/api/pwtools.sql.SQLiteDB.commit.rst", "generated/api/pwtools.sql.SQLiteDB.create_table.rst", "generated/api/pwtools.sql.SQLiteDB.execute.rst", "generated/api/pwtools.sql.SQLiteDB.executemany.rst", "generated/api/pwtools.sql.SQLiteDB.executescript.rst", "generated/api/pwtools.sql.SQLiteDB.fill_column.rst", "generated/api/pwtools.sql.SQLiteDB.finish.rst", "generated/api/pwtools.sql.SQLiteDB.get_array.rst", "generated/api/pwtools.sql.SQLiteDB.get_array1d.rst", "generated/api/pwtools.sql.SQLiteDB.get_dict.rst", "generated/api/pwtools.sql.SQLiteDB.get_header.rst", "generated/api/pwtools.sql.SQLiteDB.get_list1d.rst", "generated/api/pwtools.sql.SQLiteDB.get_max_rowid.rst", "generated/api/pwtools.sql.SQLiteDB.get_single.rst", "generated/api/pwtools.sql.SQLiteDB.get_table.rst", "generated/api/pwtools.sql.SQLiteDB.has_column.rst", "generated/api/pwtools.sql.SQLiteDB.has_table.rst", "generated/api/pwtools.sql.SQLiteDB.set_table.rst", "generated/api/pwtools.sql.find_sqltype.rst", "generated/api/pwtools.sql.fix_sql_header.rst", "generated/api/pwtools.sql.fix_sqltype.rst", "generated/api/pwtools.sql.get_test_db.rst", "generated/api/pwtools.sql.makedb.rst", "generated/api/pwtools.sql.sql_column.rst", "generated/api/pwtools.sql.sql_column_old.rst", "generated/api/pwtools.sql.sql_matrix.rst", "generated/api/pwtools.symmetry.is_same_struct.rst", "generated/api/pwtools.symmetry.spglib2struct.rst", "generated/api/pwtools.symmetry.spglib_get_primitive.rst", "generated/api/pwtools.symmetry.spglib_get_spacegroup.rst", "generated/api/pwtools.symmetry.struct2spglib.rst", "generated/api/pwtools.thermo.Gibbs.rst", "generated/api/pwtools.thermo.Gibbs.calc_F.rst", "generated/api/pwtools.thermo.Gibbs.calc_G.rst", "generated/api/pwtools.thermo.Gibbs.calc_H.rst", "generated/api/pwtools.thermo.Gibbs.set_fitfunc.rst", "generated/api/pwtools.thermo.HarmonicThermo.rst", "generated/api/pwtools.thermo.HarmonicThermo.cv.rst", "generated/api/pwtools.thermo.HarmonicThermo.evib.rst", "generated/api/pwtools.thermo.HarmonicThermo.fvib.rst", "generated/api/pwtools.thermo.HarmonicThermo.isochoric_heat_capacity.rst", "generated/api/pwtools.thermo.HarmonicThermo.svib.rst", "generated/api/pwtools.thermo.HarmonicThermo.vibrational_entropy.rst", "generated/api/pwtools.thermo.HarmonicThermo.vibrational_free_energy.rst", "generated/api/pwtools.thermo.HarmonicThermo.vibrational_internal_energy.rst", "generated/api/pwtools.thermo.R.rst", "generated/api/pwtools.thermo.Ry_to_J.rst", "generated/api/pwtools.thermo.c0.rst", "generated/api/pwtools.thermo.coth.rst", "generated/api/pwtools.thermo.debye_func.rst", "generated/api/pwtools.thermo.eV.rst", "generated/api/pwtools.thermo.eV_by_Ang3_to_GPa.rst", "generated/api/pwtools.thermo.einstein_func.rst", "generated/api/pwtools.thermo.expansion.rst", "generated/api/pwtools.thermo.hplanck.rst", "generated/api/pwtools.thermo.kb.rst", "generated/api/pwtools.thermo.pi.rst", "generated/api/pwtools.timer.TagTimer.rst", "generated/api/pwtools.timer.TagTimer.p.rst", "generated/api/pwtools.timer.TagTimer.pt.rst", "generated/api/pwtools.timer.TagTimer.t.rst", "generated/api/pwtools.verbose.VERBOSE.rst", "generated/api/pwtools.verbose.verbose.rst", "generated/api/pwtools.visualize.ViewFactory.rst", "generated/api/pwtools.visualize.assert_struct.rst", "generated/api/pwtools.visualize.avogadro_cmd.rst", "generated/api/pwtools.visualize.view_avogadro.rst", "generated/api/pwtools.visualize.view_jmol.rst", "generated/api/pwtools.visualize.view_vmd_axsf.rst", "generated/api/pwtools.visualize.view_vmd_xyz.rst", "generated/api/pwtools.visualize.view_xcrysden.rst", "index.rst", "written/background/ase.rst", "written/background/coord_trans.rst", "written/background/index.rst", "written/background/param_study.rst", "written/background/parsing.rst", "written/background/phonon_dos.rst", "written/background/pwscf.rst", "written/background/rbf.rst", "written/cp2k_restart.rst", "written/dispersion_example.rst", "written/features.rst", "written/index.rst", "written/install.rst", "written/qha.md", "written/refs.rst", "written/tutorial.rst"], "indexentries": {"__call__() (pwtools.eos.eosfit method)": [[497, "pwtools.eos.EosFit.__call__", false]], "__call__() (pwtools.eos.evfunction method)": [[465, "pwtools.eos.EVFunction.__call__", false]], "__call__() (pwtools.eos.vinet method)": [[535, "pwtools.eos.Vinet.__call__", false]], "__call__() (pwtools.io.readfactory method)": [[547, "pwtools.io.ReadFactory.__call__", false]], "__call__() (pwtools.num.interpol2d method)": [[648, "pwtools.num.Interpol2D.__call__", false]], "__call__() (pwtools.num.polyfit method)": [[650, "pwtools.num.PolyFit.__call__", false]], "__call__() (pwtools.num.polyfit1d method)": [[652, "pwtools.num.PolyFit1D.__call__", false]], "__call__() (pwtools.num.spline method)": [[657, "pwtools.num.Spline.__call__", false]], "__call__() (pwtools.rbf.core.rbf method)": [[1301, "pwtools.rbf.core.Rbf.__call__", false]], "__call__() (pwtools.rbf.hyperopt.fiterror method)": [[1318, "pwtools.rbf.hyperopt.FitError.__call__", false]], "__call__() (pwtools.signal.firfilter method)": [[1325, "pwtools.signal.FIRFilter.__call__", false]], "__call__() (pwtools.visualize.viewfactory method)": [[34, "pwtools.visualize.ViewFactory.__call__", false], [1409, "pwtools.visualize.ViewFactory.__call__", false]], "__getitem__() (pwtools.crys.trajectory method)": [[326, "pwtools.crys.Trajectory.__getitem__", false]], "__init__() (pwtools.base.flexiblegetters method)": [[67, "pwtools.base.FlexibleGetters.__init__", false]], "__init__() (pwtools.batch.calculation method)": [[86, "pwtools.batch.Calculation.__init__", false]], "__init__() (pwtools.batch.case method)": [[89, "pwtools.batch.Case.__init__", false]], "__init__() (pwtools.batch.filetemplate method)": [[90, "pwtools.batch.FileTemplate.__init__", false]], "__init__() (pwtools.batch.machine method)": [[93, "pwtools.batch.Machine.__init__", false]], "__init__() (pwtools.batch.parameterstudy method)": [[96, "pwtools.batch.ParameterStudy.__init__", false]], "__init__() (pwtools.calculators.calculatorbase method)": [[100, "pwtools.calculators.CalculatorBase.__init__", false]], "__init__() (pwtools.calculators.fileiocalculator method)": [[103, "pwtools.calculators.FileIOCalculator.__init__", false]], "__init__() (pwtools.calculators.lammps method)": [[104, "pwtools.calculators.Lammps.__init__", false]], "__init__() (pwtools.calculators.pwscf method)": [[112, "pwtools.calculators.Pwscf.__init__", false]], "__init__() (pwtools.crys.fakeaseatoms method)": [[211, "pwtools.crys.FakeASEAtoms.__init__", false]], "__init__() (pwtools.crys.structure method)": [[269, "pwtools.crys.Structure.__init__", false]], "__init__() (pwtools.crys.trajectory method)": [[325, "pwtools.crys.Trajectory.__init__", false]], "__init__() (pwtools.crys.unitshandler method)": [[382, "pwtools.crys.UnitsHandler.__init__", false]], "__init__() (pwtools.decorators.lazyprop method)": [[461, "pwtools.decorators.lazyprop.__init__", false]], "__init__() (pwtools.eos.elkeosfit method)": [[471, "pwtools.eos.ElkEOSFit.__init__", false]], "__init__() (pwtools.eos.eosfit method)": [[497, "pwtools.eos.EosFit.__init__", false]], "__init__() (pwtools.eos.evfunction method)": [[465, "pwtools.eos.EVFunction.__init__", false]], "__init__() (pwtools.eos.externeos method)": [[506, "pwtools.eos.ExternEOS.__init__", false]], "__init__() (pwtools.eos.vinet method)": [[535, "pwtools.eos.Vinet.__init__", false]], "__init__() (pwtools.io.readfactory method)": [[547, "pwtools.io.ReadFactory.__init__", false]], "__init__() (pwtools.kpath.specialpointspath method)": [[572, "pwtools.kpath.SpecialPointsPath.__init__", false]], "__init__() (pwtools.mpl.data2d method)": [[577, "pwtools.mpl.Data2D.__init__", false]], "__init__() (pwtools.mpl.plot method)": [[583, "pwtools.mpl.Plot.__init__", false]], "__init__() (pwtools.num.datand method)": [[640, "pwtools.num.DataND.__init__", false]], "__init__() (pwtools.num.fit1d method)": [[643, "pwtools.num.Fit1D.__init__", false]], "__init__() (pwtools.num.interpol2d method)": [[648, "pwtools.num.Interpol2D.__init__", false]], "__init__() (pwtools.num.polyfit method)": [[650, "pwtools.num.PolyFit.__init__", false]], "__init__() (pwtools.num.polyfit1d method)": [[652, "pwtools.num.PolyFit1D.__init__", false]], "__init__() (pwtools.num.spline method)": [[657, "pwtools.num.Spline.__init__", false]], "__init__() (pwtools.parse.ciffile method)": [[695, "pwtools.parse.CifFile.__init__", false]], "__init__() (pwtools.parse.cp2kdcdmdoutputfile method)": [[726, "pwtools.parse.Cp2kDcdMDOutputFile.__init__", false]], "__init__() (pwtools.parse.cp2kmdoutputfile method)": [[768, "pwtools.parse.Cp2kMDOutputFile.__init__", false]], "__init__() (pwtools.parse.cp2krelaxoutputfile method)": [[808, "pwtools.parse.Cp2kRelaxOutputFile.__init__", false]], "__init__() (pwtools.parse.cp2kscfoutputfile method)": [[848, "pwtools.parse.Cp2kSCFOutputFile.__init__", false]], "__init__() (pwtools.parse.cpmdmdoutputfile method)": [[878, "pwtools.parse.CpmdMDOutputFile.__init__", false]], "__init__() (pwtools.parse.cpmdscfoutputfile method)": [[926, "pwtools.parse.CpmdSCFOutputFile.__init__", false]], "__init__() (pwtools.parse.dcdoutputfile method)": [[961, "pwtools.parse.DcdOutputFile.__init__", false]], "__init__() (pwtools.parse.lammpsdcdmdoutputfile method)": [[969, "pwtools.parse.LammpsDcdMDOutputFile.__init__", false]], "__init__() (pwtools.parse.lammpstextmdoutputfile method)": [[1011, "pwtools.parse.LammpsTextMDOutputFile.__init__", false]], "__init__() (pwtools.parse.pdbfile method)": [[1052, "pwtools.parse.PDBFile.__init__", false]], "__init__() (pwtools.parse.pwmdoutputfile method)": [[1080, "pwtools.parse.PwMDOutputFile.__init__", false]], "__init__() (pwtools.parse.pwscfoutputfile method)": [[1124, "pwtools.parse.PwSCFOutputFile.__init__", false]], "__init__() (pwtools.parse.pwvcmdoutputfile method)": [[1160, "pwtools.parse.PwVCMDOutputFile.__init__", false]], "__init__() (pwtools.parse.structurefileparser method)": [[1206, "pwtools.parse.StructureFileParser.__init__", false]], "__init__() (pwtools.parse.trajectoryfileparser method)": [[1231, "pwtools.parse.TrajectoryFileParser.__init__", false]], "__init__() (pwtools.random.randomstructure method)": [[1294, "pwtools.random.RandomStructure.__init__", false]], "__init__() (pwtools.rbf.core.rbf method)": [[1301, "pwtools.rbf.core.Rbf.__init__", false]], "__init__() (pwtools.rbf.hyperopt.fiterror method)": [[1318, "pwtools.rbf.hyperopt.FitError.__init__", false]], "__init__() (pwtools.rbf.hyperopt.repeatedkfold method)": [[1322, "pwtools.rbf.hyperopt.RepeatedKFold.__init__", false]], "__init__() (pwtools.signal.firfilter method)": [[1325, "pwtools.signal.FIRFilter.__init__", false]], "__init__() (pwtools.sql.sqlentry method)": [[1341, "pwtools.sql.SQLEntry.__init__", false]], "__init__() (pwtools.sql.sqlitedb method)": [[1342, "pwtools.sql.SQLiteDB.__init__", false]], "__init__() (pwtools.thermo.gibbs method)": [[1377, "pwtools.thermo.Gibbs.__init__", false]], "__init__() (pwtools.thermo.harmonicthermo method)": [[1382, "pwtools.thermo.HarmonicThermo.__init__", false]], "__init__() (pwtools.timer.tagtimer method)": [[1403, "pwtools.timer.TagTimer.__init__", false]], "__init__() (pwtools.visualize.viewfactory method)": [[1409, "pwtools.visualize.ViewFactory.__init__", false]], "_ase_missing() (in module pwtools.calculators)": [[120, "pwtools.calculators._ase_missing", false]], "_ensure_list() (in module pwtools.comb)": [[124, "pwtools.comb._ensure_list", false]], "_np_distsq() (in module pwtools.rbf.core)": [[1309, "pwtools.rbf.core._np_distsq", false]], "_read_header_config() (in module pwtools.arrayio)": [[56, "pwtools.arrayio._read_header_config", false]], "_trans() (in module pwtools.crys)": [[403, "pwtools.crys._trans", false]], "_vinet() (in module pwtools.eos)": [[541, "pwtools.eos._vinet", false]], "_vinet_deriv1() (in module pwtools.eos)": [[542, "pwtools.eos._vinet_deriv1", false]], "_vinet_deriv2() (in module pwtools.eos)": [[543, "pwtools.eos._vinet_deriv2", false]], "_write_header_config() (in module pwtools.arrayio)": [[57, "pwtools.arrayio._write_header_config", false]], "a0 (in module pwtools.constants)": [[185, "pwtools.constants.a0", false]], "a0 (in module pwtools.mttk)": [[632, "pwtools.mttk.a0", false]], "a0_to_a (in module pwtools.constants)": [[186, "pwtools.constants.a0_to_A", false]], "a2_to_an() (pwtools.num.datand method)": [[641, "pwtools.num.DataND.a2_to_an", false]], "acorr (in module pwtools._flib)": [[41, "pwtools._flib.acorr", false]], "acorr() (in module pwtools.signal)": [[1326, "pwtools.signal.acorr", false]], "add_column() (pwtools.sql.sqlitedb method)": [[1343, "pwtools.sql.SQLiteDB.add_column", false]], "add_columns() (pwtools.sql.sqlitedb method)": [[1344, "pwtools.sql.SQLiteDB.add_columns", false]], "add_doc() (in module pwtools.mttk)": [[633, "pwtools.mttk.add_doc", false]], "add_to_config() (in module pwtools.common)": [[128, "pwtools.common.add_to_config", false]], "align_cart() (in module pwtools.crys)": [[404, "pwtools.crys.align_cart", false]], "alpha (in module pwtools.constants)": [[187, "pwtools.constants.alpha", false]], "amu (in module pwtools.constants)": [[188, "pwtools.constants.amu", false]], "ang (in module pwtools.constants)": [[165, "pwtools.constants.Ang", false]], "ang (in module pwtools.eos)": [[463, "pwtools.eos.Ang", false]], "ang (in module pwtools.parse)": [[692, "pwtools.parse.Ang", false]], "angle() (in module pwtools.crys)": [[405, "pwtools.crys.angle", false]], "angles (in module pwtools._flib)": [[42, "pwtools._flib.angles", false]], "angles() (in module pwtools.crys)": [[406, "pwtools.crys.angles", false]], "angstrom (in module pwtools.constants)": [[166, "pwtools.constants.Angstrom", false]], "angstrom (in module pwtools.crys)": [[210, "pwtools.crys.Angstrom", false]], "angstrom (in module pwtools.parse)": [[693, "pwtools.parse.Angstrom", false]], "apply_units() (pwtools.crys.fakeaseatoms method)": [[212, "pwtools.crys.FakeASEAtoms.apply_units", false]], "apply_units() (pwtools.crys.structure method)": [[270, "pwtools.crys.Structure.apply_units", false]], "apply_units() (pwtools.crys.trajectory method)": [[327, "pwtools.crys.Trajectory.apply_units", false]], "apply_units() (pwtools.crys.unitshandler method)": [[383, "pwtools.crys.UnitsHandler.apply_units", false]], "apply_units() (pwtools.parse.ciffile method)": [[696, "pwtools.parse.CifFile.apply_units", false]], "apply_units() (pwtools.parse.cp2kdcdmdoutputfile method)": [[727, "pwtools.parse.Cp2kDcdMDOutputFile.apply_units", false]], "apply_units() (pwtools.parse.cp2kmdoutputfile method)": [[769, "pwtools.parse.Cp2kMDOutputFile.apply_units", false]], "apply_units() (pwtools.parse.cp2krelaxoutputfile method)": [[809, "pwtools.parse.Cp2kRelaxOutputFile.apply_units", false]], "apply_units() (pwtools.parse.cp2kscfoutputfile method)": [[849, "pwtools.parse.Cp2kSCFOutputFile.apply_units", false]], "apply_units() (pwtools.parse.cpmdmdoutputfile method)": [[879, "pwtools.parse.CpmdMDOutputFile.apply_units", false]], "apply_units() (pwtools.parse.cpmdscfoutputfile method)": [[927, "pwtools.parse.CpmdSCFOutputFile.apply_units", false]], "apply_units() (pwtools.parse.lammpsdcdmdoutputfile method)": [[970, "pwtools.parse.LammpsDcdMDOutputFile.apply_units", false]], "apply_units() (pwtools.parse.lammpstextmdoutputfile method)": [[1012, "pwtools.parse.LammpsTextMDOutputFile.apply_units", false]], "apply_units() (pwtools.parse.pdbfile method)": [[1053, "pwtools.parse.PDBFile.apply_units", false]], "apply_units() (pwtools.parse.pwmdoutputfile method)": [[1081, "pwtools.parse.PwMDOutputFile.apply_units", false]], "apply_units() (pwtools.parse.pwscfoutputfile method)": [[1125, "pwtools.parse.PwSCFOutputFile.apply_units", false]], "apply_units() (pwtools.parse.pwvcmdoutputfile method)": [[1161, "pwtools.parse.PwVCMDOutputFile.apply_units", false]], "apply_units() (pwtools.parse.structurefileparser method)": [[1207, "pwtools.parse.StructureFileParser.apply_units", false]], "apply_units() (pwtools.parse.trajectoryfileparser method)": [[1232, "pwtools.parse.TrajectoryFileParser.apply_units", false]], "arr1d_from_txt() (in module pwtools.parse)": [[1258, "pwtools.parse.arr1d_from_txt", false]], "arr2d_from_txt() (in module pwtools.parse)": [[1259, "pwtools.parse.arr2d_from_txt", false]], "arr2d_to_3d() (in module pwtools.arrayio)": [[58, "pwtools.arrayio.arr2d_to_3d", false]], "asseq() (in module pwtools.common)": [[129, "pwtools.common.asseq", false]], "assert_attr() (pwtools.base.flexiblegetters method)": [[68, "pwtools.base.FlexibleGetters.assert_attr", false]], "assert_attr() (pwtools.crys.fakeaseatoms method)": [[213, "pwtools.crys.FakeASEAtoms.assert_attr", false]], "assert_attr() (pwtools.crys.structure method)": [[271, "pwtools.crys.Structure.assert_attr", false]], "assert_attr() (pwtools.crys.trajectory method)": [[328, "pwtools.crys.Trajectory.assert_attr", false]], "assert_attr() (pwtools.crys.unitshandler method)": [[384, "pwtools.crys.UnitsHandler.assert_attr", false]], "assert_attr() (pwtools.eos.elkeosfit method)": [[472, "pwtools.eos.ElkEOSFit.assert_attr", false]], "assert_attr() (pwtools.eos.externeos method)": [[507, "pwtools.eos.ExternEOS.assert_attr", false]], "assert_attr() (pwtools.parse.ciffile method)": [[697, "pwtools.parse.CifFile.assert_attr", false]], "assert_attr() (pwtools.parse.cp2kdcdmdoutputfile method)": [[728, "pwtools.parse.Cp2kDcdMDOutputFile.assert_attr", false]], "assert_attr() (pwtools.parse.cp2kmdoutputfile method)": [[770, "pwtools.parse.Cp2kMDOutputFile.assert_attr", false]], "assert_attr() (pwtools.parse.cp2krelaxoutputfile method)": [[810, "pwtools.parse.Cp2kRelaxOutputFile.assert_attr", false]], "assert_attr() (pwtools.parse.cp2kscfoutputfile method)": [[850, "pwtools.parse.Cp2kSCFOutputFile.assert_attr", false]], "assert_attr() (pwtools.parse.cpmdmdoutputfile method)": [[880, "pwtools.parse.CpmdMDOutputFile.assert_attr", false]], "assert_attr() (pwtools.parse.cpmdscfoutputfile method)": [[928, "pwtools.parse.CpmdSCFOutputFile.assert_attr", false]], "assert_attr() (pwtools.parse.lammpsdcdmdoutputfile method)": [[971, "pwtools.parse.LammpsDcdMDOutputFile.assert_attr", false]], "assert_attr() (pwtools.parse.lammpstextmdoutputfile method)": [[1013, "pwtools.parse.LammpsTextMDOutputFile.assert_attr", false]], "assert_attr() (pwtools.parse.pdbfile method)": [[1054, "pwtools.parse.PDBFile.assert_attr", false]], "assert_attr() (pwtools.parse.pwmdoutputfile method)": [[1082, "pwtools.parse.PwMDOutputFile.assert_attr", false]], "assert_attr() (pwtools.parse.pwscfoutputfile method)": [[1126, "pwtools.parse.PwSCFOutputFile.assert_attr", false]], "assert_attr() (pwtools.parse.pwvcmdoutputfile method)": [[1162, "pwtools.parse.PwVCMDOutputFile.assert_attr", false]], "assert_attr() (pwtools.parse.structurefileparser method)": [[1208, "pwtools.parse.StructureFileParser.assert_attr", false]], "assert_attr() (pwtools.parse.trajectoryfileparser method)": [[1233, "pwtools.parse.TrajectoryFileParser.assert_attr", false]], "assert_attr_lst() (pwtools.base.flexiblegetters method)": [[69, "pwtools.base.FlexibleGetters.assert_attr_lst", false]], "assert_attr_lst() (pwtools.crys.fakeaseatoms method)": [[214, "pwtools.crys.FakeASEAtoms.assert_attr_lst", false]], "assert_attr_lst() (pwtools.crys.structure method)": [[272, "pwtools.crys.Structure.assert_attr_lst", false]], "assert_attr_lst() (pwtools.crys.trajectory method)": [[329, "pwtools.crys.Trajectory.assert_attr_lst", false]], "assert_attr_lst() (pwtools.crys.unitshandler method)": [[385, "pwtools.crys.UnitsHandler.assert_attr_lst", false]], "assert_attr_lst() (pwtools.eos.elkeosfit method)": [[473, "pwtools.eos.ElkEOSFit.assert_attr_lst", false]], "assert_attr_lst() (pwtools.eos.externeos method)": [[508, "pwtools.eos.ExternEOS.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.ciffile method)": [[698, "pwtools.parse.CifFile.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.cp2kdcdmdoutputfile method)": [[729, "pwtools.parse.Cp2kDcdMDOutputFile.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.cp2kmdoutputfile method)": [[771, "pwtools.parse.Cp2kMDOutputFile.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.cp2krelaxoutputfile method)": [[811, "pwtools.parse.Cp2kRelaxOutputFile.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.cp2kscfoutputfile method)": [[851, "pwtools.parse.Cp2kSCFOutputFile.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.cpmdmdoutputfile method)": [[881, "pwtools.parse.CpmdMDOutputFile.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.cpmdscfoutputfile method)": [[929, "pwtools.parse.CpmdSCFOutputFile.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.lammpsdcdmdoutputfile method)": [[972, "pwtools.parse.LammpsDcdMDOutputFile.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.lammpstextmdoutputfile method)": [[1014, "pwtools.parse.LammpsTextMDOutputFile.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.pdbfile method)": [[1055, "pwtools.parse.PDBFile.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.pwmdoutputfile method)": [[1083, "pwtools.parse.PwMDOutputFile.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.pwscfoutputfile method)": [[1127, "pwtools.parse.PwSCFOutputFile.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.pwvcmdoutputfile method)": [[1163, "pwtools.parse.PwVCMDOutputFile.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.structurefileparser method)": [[1209, "pwtools.parse.StructureFileParser.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.trajectoryfileparser method)": [[1234, "pwtools.parse.TrajectoryFileParser.assert_attr_lst", false]], "assert_cond() (in module pwtools.common)": [[130, "pwtools.common.assert_cond", false]], "assert_set_attr() (pwtools.base.flexiblegetters method)": [[70, "pwtools.base.FlexibleGetters.assert_set_attr", false]], "assert_set_attr() (pwtools.crys.fakeaseatoms method)": [[215, "pwtools.crys.FakeASEAtoms.assert_set_attr", false]], "assert_set_attr() (pwtools.crys.structure method)": [[273, "pwtools.crys.Structure.assert_set_attr", false]], "assert_set_attr() (pwtools.crys.trajectory method)": [[330, "pwtools.crys.Trajectory.assert_set_attr", false]], "assert_set_attr() (pwtools.crys.unitshandler method)": [[386, "pwtools.crys.UnitsHandler.assert_set_attr", false]], "assert_set_attr() (pwtools.eos.elkeosfit method)": [[474, "pwtools.eos.ElkEOSFit.assert_set_attr", false]], "assert_set_attr() (pwtools.eos.externeos method)": [[509, "pwtools.eos.ExternEOS.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.ciffile method)": [[699, "pwtools.parse.CifFile.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.cp2kdcdmdoutputfile method)": [[730, "pwtools.parse.Cp2kDcdMDOutputFile.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.cp2kmdoutputfile method)": [[772, "pwtools.parse.Cp2kMDOutputFile.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.cp2krelaxoutputfile method)": [[812, "pwtools.parse.Cp2kRelaxOutputFile.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.cp2kscfoutputfile method)": [[852, "pwtools.parse.Cp2kSCFOutputFile.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.cpmdmdoutputfile method)": [[882, "pwtools.parse.CpmdMDOutputFile.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.cpmdscfoutputfile method)": [[930, "pwtools.parse.CpmdSCFOutputFile.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.lammpsdcdmdoutputfile method)": [[973, "pwtools.parse.LammpsDcdMDOutputFile.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.lammpstextmdoutputfile method)": [[1015, "pwtools.parse.LammpsTextMDOutputFile.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.pdbfile method)": [[1056, "pwtools.parse.PDBFile.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.pwmdoutputfile method)": [[1084, "pwtools.parse.PwMDOutputFile.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.pwscfoutputfile method)": [[1128, "pwtools.parse.PwSCFOutputFile.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.pwvcmdoutputfile method)": [[1164, "pwtools.parse.PwVCMDOutputFile.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.structurefileparser method)": [[1210, "pwtools.parse.StructureFileParser.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.trajectoryfileparser method)": [[1235, "pwtools.parse.TrajectoryFileParser.assert_set_attr", false]], "assert_set_attr_lst() (pwtools.base.flexiblegetters method)": [[71, "pwtools.base.FlexibleGetters.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.crys.fakeaseatoms method)": [[216, "pwtools.crys.FakeASEAtoms.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.crys.structure method)": [[274, "pwtools.crys.Structure.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.crys.trajectory method)": [[331, "pwtools.crys.Trajectory.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.crys.unitshandler method)": [[387, "pwtools.crys.UnitsHandler.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.eos.elkeosfit method)": [[475, "pwtools.eos.ElkEOSFit.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.eos.externeos method)": [[510, "pwtools.eos.ExternEOS.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.ciffile method)": [[700, "pwtools.parse.CifFile.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.cp2kdcdmdoutputfile method)": [[731, "pwtools.parse.Cp2kDcdMDOutputFile.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.cp2kmdoutputfile method)": [[773, "pwtools.parse.Cp2kMDOutputFile.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.cp2krelaxoutputfile method)": [[813, "pwtools.parse.Cp2kRelaxOutputFile.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.cp2kscfoutputfile method)": [[853, "pwtools.parse.Cp2kSCFOutputFile.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.cpmdmdoutputfile method)": [[883, "pwtools.parse.CpmdMDOutputFile.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.cpmdscfoutputfile method)": [[931, "pwtools.parse.CpmdSCFOutputFile.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.lammpsdcdmdoutputfile method)": [[974, "pwtools.parse.LammpsDcdMDOutputFile.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.lammpstextmdoutputfile method)": [[1016, "pwtools.parse.LammpsTextMDOutputFile.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.pdbfile method)": [[1057, "pwtools.parse.PDBFile.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.pwmdoutputfile method)": [[1085, "pwtools.parse.PwMDOutputFile.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.pwscfoutputfile method)": [[1129, "pwtools.parse.PwSCFOutputFile.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.pwvcmdoutputfile method)": [[1165, "pwtools.parse.PwVCMDOutputFile.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.structurefileparser method)": [[1211, "pwtools.parse.StructureFileParser.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.trajectoryfileparser method)": [[1236, "pwtools.parse.TrajectoryFileParser.assert_set_attr_lst", false]], "assert_struct() (in module pwtools.visualize)": [[1410, "pwtools.visualize.assert_struct", false]], "atoms2struct() (in module pwtools.crys)": [[407, "pwtools.crys.atoms2struct", false]], "atpos_str() (in module pwtools.pwscf)": [[1271, "pwtools.pwscf.atpos_str", false]], "atpos_str_fast() (in module pwtools.pwscf)": [[1272, "pwtools.pwscf.atpos_str_fast", false]], "atspec_str() (in module pwtools.pwscf)": [[1273, "pwtools.pwscf.atspec_str", false]], "attach_column() (pwtools.sql.sqlitedb method)": [[1345, "pwtools.sql.SQLiteDB.attach_column", false]], "avo (in module pwtools.constants)": [[189, "pwtools.constants.avo", false]], "avogadro_cmd (in module pwtools.visualize)": [[1411, "pwtools.visualize.avogadro_cmd", false]], "awk (in module pwtools.parse)": [[691, "pwtools.parse.AWK", false]], "axes (pwtools.num.datand attribute)": [[640, "pwtools.num.DataND.axes", false]], "axis_lens() (in module pwtools.parse)": [[1260, "pwtools.parse.axis_lens", false]], "backtick() (in module pwtools.common)": [[131, "pwtools.common.backtick", false]], "backup() (in module pwtools.common)": [[132, "pwtools.common.backup", false]], "barostat_mass_w() (in module pwtools.mttk)": [[634, "pwtools.mttk.barostat_mass_w", false]], "barostat_mass_wg() (in module pwtools.mttk)": [[635, "pwtools.mttk.barostat_mass_wg", false]], "barostat_nhc_masses() (in module pwtools.mttk)": [[636, "pwtools.mttk.barostat_nhc_masses", false]], "base (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.base", false], [62, "pwtools.atomic_data.base", false]], "bohr (in module pwtools.constants)": [[167, "pwtools.constants.Bohr", false]], "bohr (in module pwtools.eos)": [[464, "pwtools.eos.Bohr", false]], "bohr (in module pwtools.parse)": [[694, "pwtools.parse.Bohr", false]], "bohr_to_ang (in module pwtools.constants)": [[168, "pwtools.constants.Bohr_to_Ang", false]], "bool2str() (in module pwtools.pwscf)": [[1274, "pwtools.pwscf.bool2str", false]], "bulkmod() (pwtools.eos.eosfit method)": [[498, "pwtools.eos.EosFit.bulkmod", false]], "c0 (in module pwtools.constants)": [[190, "pwtools.constants.c0", false]], "c0 (in module pwtools.thermo)": [[1393, "pwtools.thermo.c0", false]], "calc_bv() (pwtools.eos.elkeosfit method)": [[476, "pwtools.eos.ElkEOSFit.calc_bv", false]], "calc_bv() (pwtools.eos.externeos method)": [[511, "pwtools.eos.ExternEOS.calc_bv", false]], "calc_f() (pwtools.thermo.gibbs method)": [[1378, "pwtools.thermo.Gibbs.calc_F", false]], "calc_g() (pwtools.thermo.gibbs method)": [[1379, "pwtools.thermo.Gibbs.calc_G", false]], "calc_h() (pwtools.thermo.gibbs method)": [[1380, "pwtools.thermo.Gibbs.calc_H", false]], "calculation (class in pwtools.batch)": [[86, "pwtools.batch.Calculation", false]], "calculatorbase (class in pwtools.calculators)": [[100, "pwtools.calculators.CalculatorBase", false]], "call_vmd_measure_gofr() (in module pwtools.crys)": [[408, "pwtools.crys.call_vmd_measure_gofr", false]], "cart2frac (in module pwtools._flib)": [[43, "pwtools._flib.cart2frac", false]], "cart2frac_traj (in module pwtools._flib)": [[44, "pwtools._flib.cart2frac_traj", false]], "case (class in pwtools.batch)": [[89, "pwtools.batch.Case", false]], "cauchy() (in module pwtools.signal)": [[1327, "pwtools.signal.cauchy", false]], "cc (in module pwtools.mpl)": [[587, "pwtools.mpl.cc", false]], "cc2cell() (in module pwtools.crys)": [[409, "pwtools.crys.cc2cell", false]], "cc2cell3d() (in module pwtools.crys)": [[410, "pwtools.crys.cc2cell3d", false]], "cc2celldm() (in module pwtools.crys)": [[411, "pwtools.crys.cc2celldm", false]], "ccl (in module pwtools.mpl)": [[588, "pwtools.mpl.ccl", false]], "ccm (in module pwtools.mpl)": [[589, "pwtools.mpl.ccm", false]], "cell2cc() (in module pwtools.crys)": [[412, "pwtools.crys.cell2cc", false]], "cell2cc3d() (in module pwtools.crys)": [[413, "pwtools.crys.cell2cc3d", false]], "celldm2cc() (in module pwtools.crys)": [[414, "pwtools.crys.celldm2cc", false]], "center_on_atom() (in module pwtools.crys)": [[415, "pwtools.crys.center_on_atom", false]], "check_set_attr() (pwtools.base.flexiblegetters method)": [[72, "pwtools.base.FlexibleGetters.check_set_attr", false]], "check_set_attr() (pwtools.crys.fakeaseatoms method)": [[217, "pwtools.crys.FakeASEAtoms.check_set_attr", false]], "check_set_attr() (pwtools.crys.structure method)": [[275, "pwtools.crys.Structure.check_set_attr", false]], "check_set_attr() (pwtools.crys.trajectory method)": [[332, "pwtools.crys.Trajectory.check_set_attr", false]], "check_set_attr() (pwtools.crys.unitshandler method)": [[388, "pwtools.crys.UnitsHandler.check_set_attr", false]], "check_set_attr() (pwtools.eos.elkeosfit method)": [[477, "pwtools.eos.ElkEOSFit.check_set_attr", false]], "check_set_attr() (pwtools.eos.externeos method)": [[512, "pwtools.eos.ExternEOS.check_set_attr", false]], "check_set_attr() (pwtools.parse.ciffile method)": [[701, "pwtools.parse.CifFile.check_set_attr", false]], "check_set_attr() (pwtools.parse.cp2kdcdmdoutputfile method)": [[732, "pwtools.parse.Cp2kDcdMDOutputFile.check_set_attr", false]], "check_set_attr() (pwtools.parse.cp2kmdoutputfile method)": [[774, "pwtools.parse.Cp2kMDOutputFile.check_set_attr", false]], "check_set_attr() (pwtools.parse.cp2krelaxoutputfile method)": [[814, "pwtools.parse.Cp2kRelaxOutputFile.check_set_attr", false]], "check_set_attr() (pwtools.parse.cp2kscfoutputfile method)": [[854, "pwtools.parse.Cp2kSCFOutputFile.check_set_attr", false]], "check_set_attr() (pwtools.parse.cpmdmdoutputfile method)": [[884, "pwtools.parse.CpmdMDOutputFile.check_set_attr", false]], "check_set_attr() (pwtools.parse.cpmdscfoutputfile method)": [[932, "pwtools.parse.CpmdSCFOutputFile.check_set_attr", false]], "check_set_attr() (pwtools.parse.lammpsdcdmdoutputfile method)": [[975, "pwtools.parse.LammpsDcdMDOutputFile.check_set_attr", false]], "check_set_attr() (pwtools.parse.lammpstextmdoutputfile method)": [[1017, "pwtools.parse.LammpsTextMDOutputFile.check_set_attr", false]], "check_set_attr() (pwtools.parse.pdbfile method)": [[1058, "pwtools.parse.PDBFile.check_set_attr", false]], "check_set_attr() (pwtools.parse.pwmdoutputfile method)": [[1086, "pwtools.parse.PwMDOutputFile.check_set_attr", false]], "check_set_attr() (pwtools.parse.pwscfoutputfile method)": [[1130, "pwtools.parse.PwSCFOutputFile.check_set_attr", false]], "check_set_attr() (pwtools.parse.pwvcmdoutputfile method)": [[1166, "pwtools.parse.PwVCMDOutputFile.check_set_attr", false]], "check_set_attr() (pwtools.parse.structurefileparser method)": [[1212, "pwtools.parse.StructureFileParser.check_set_attr", false]], "check_set_attr() (pwtools.parse.trajectoryfileparser method)": [[1237, "pwtools.parse.TrajectoryFileParser.check_set_attr", false]], "check_set_attr_lst() (pwtools.base.flexiblegetters method)": [[73, "pwtools.base.FlexibleGetters.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.crys.fakeaseatoms method)": [[218, "pwtools.crys.FakeASEAtoms.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.crys.structure method)": [[276, "pwtools.crys.Structure.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.crys.trajectory method)": [[333, "pwtools.crys.Trajectory.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.crys.unitshandler method)": [[389, "pwtools.crys.UnitsHandler.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.eos.elkeosfit method)": [[478, "pwtools.eos.ElkEOSFit.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.eos.externeos method)": [[513, "pwtools.eos.ExternEOS.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.ciffile method)": [[702, "pwtools.parse.CifFile.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.cp2kdcdmdoutputfile method)": [[733, "pwtools.parse.Cp2kDcdMDOutputFile.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.cp2kmdoutputfile method)": [[775, "pwtools.parse.Cp2kMDOutputFile.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.cp2krelaxoutputfile method)": [[815, "pwtools.parse.Cp2kRelaxOutputFile.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.cp2kscfoutputfile method)": [[855, "pwtools.parse.Cp2kSCFOutputFile.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.cpmdmdoutputfile method)": [[885, "pwtools.parse.CpmdMDOutputFile.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.cpmdscfoutputfile method)": [[933, "pwtools.parse.CpmdSCFOutputFile.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.lammpsdcdmdoutputfile method)": [[976, "pwtools.parse.LammpsDcdMDOutputFile.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.lammpstextmdoutputfile method)": [[1018, "pwtools.parse.LammpsTextMDOutputFile.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.pdbfile method)": [[1059, "pwtools.parse.PDBFile.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.pwmdoutputfile method)": [[1087, "pwtools.parse.PwMDOutputFile.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.pwscfoutputfile method)": [[1131, "pwtools.parse.PwSCFOutputFile.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.pwvcmdoutputfile method)": [[1167, "pwtools.parse.PwVCMDOutputFile.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.structurefileparser method)": [[1213, "pwtools.parse.StructureFileParser.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.trajectoryfileparser method)": [[1238, "pwtools.parse.TrajectoryFileParser.check_set_attr_lst", false]], "cif_clear_atom_symbol() (pwtools.parse.ciffile method)": [[703, "pwtools.parse.CifFile.cif_clear_atom_symbol", false]], "cif_str2float() (pwtools.parse.ciffile method)": [[704, "pwtools.parse.CifFile.cif_str2float", false]], "ciffile (class in pwtools.parse)": [[695, "pwtools.parse.CifFile", false]], "clc (in module pwtools.mpl)": [[590, "pwtools.mpl.clc", false]], "clean_ax3d() (in module pwtools.mpl)": [[591, "pwtools.mpl.clean_ax3d", false]], "cm (in module pwtools.mpl)": [[592, "pwtools.mpl.cm", false]], "cmc (in module pwtools.mpl)": [[593, "pwtools.mpl.cmc", false]], "collect_legends() (in module pwtools.mpl)": [[594, "pwtools.mpl.collect_legends", false]], "collect_legends() (pwtools.mpl.plot method)": [[584, "pwtools.mpl.Plot.collect_legends", false]], "color_ax() (in module pwtools.mpl)": [[595, "pwtools.mpl.color_ax", false]], "colors (in module pwtools.mpl)": [[596, "pwtools.mpl.colors", false]], "colors_linestyles (in module pwtools.mpl)": [[597, "pwtools.mpl.colors_linestyles", false]], "colors_markers (in module pwtools.mpl)": [[598, "pwtools.mpl.colors_markers", false]], "commit() (pwtools.sql.sqlitedb method)": [[1346, "pwtools.sql.SQLiteDB.commit", false]], "compress() (in module pwtools.crys)": [[416, "pwtools.crys.compress", false]], "compress() (pwtools.crys.fakeaseatoms method)": [[219, "pwtools.crys.FakeASEAtoms.compress", false]], "compress() (pwtools.crys.structure method)": [[277, "pwtools.crys.Structure.compress", false]], "compress() (pwtools.crys.trajectory method)": [[334, "pwtools.crys.Trajectory.compress", false]], "concatenate() (in module pwtools.crys)": [[417, "pwtools.crys.concatenate", false]], "conv_table() (in module pwtools.batch)": [[98, "pwtools.batch.conv_table", false]], "coord_trans() (in module pwtools.crys)": [[418, "pwtools.crys.coord_trans", false]], "coord_trans3d() (in module pwtools.crys)": [[419, "pwtools.crys.coord_trans3d", false]], "copy() (pwtools.crys.fakeaseatoms method)": [[220, "pwtools.crys.FakeASEAtoms.copy", false]], "copy() (pwtools.crys.structure method)": [[278, "pwtools.crys.Structure.copy", false]], "copy() (pwtools.crys.trajectory method)": [[335, "pwtools.crys.Trajectory.copy", false]], "copy() (pwtools.mpl.data2d method)": [[578, "pwtools.mpl.Data2D.copy", false]], "copy() (pwtools.mpl.data3d method)": [[581, "pwtools.mpl.Data3D.copy", false]], "coth() (in module pwtools.thermo)": [[1394, "pwtools.thermo.coth", false]], "covalent_radii (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.covalent_radii", false]], "cp2kdcdmdoutputfile (class in pwtools.parse)": [[726, "pwtools.parse.Cp2kDcdMDOutputFile", false]], "cp2kmdoutputfile (class in pwtools.parse)": [[768, "pwtools.parse.Cp2kMDOutputFile", false]], "cp2krelaxoutputfile (class in pwtools.parse)": [[808, "pwtools.parse.Cp2kRelaxOutputFile", false]], "cp2kscfoutputfile (class in pwtools.parse)": [[848, "pwtools.parse.Cp2kSCFOutputFile", false]], "cpickle_load() (in module pwtools.common)": [[133, "pwtools.common.cpickle_load", false]], "cpmdmdoutputfile (class in pwtools.parse)": [[878, "pwtools.parse.CpmdMDOutputFile", false]], "cpmdscfoutputfile (class in pwtools.parse)": [[926, "pwtools.parse.CpmdSCFOutputFile", false]], "create_table() (pwtools.sql.sqlitedb method)": [[1347, "pwtools.sql.SQLiteDB.create_table", false]], "crys_add_doc() (in module pwtools.decorators)": [[460, "pwtools.decorators.crys_add_doc", false]], "ctypes (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.ctypes", false], [62, "pwtools.atomic_data.ctypes", false]], "cv() (pwtools.rbf.hyperopt.fiterror method)": [[1319, "pwtools.rbf.hyperopt.FitError.cv", false]], "cv() (pwtools.thermo.harmonicthermo method)": [[1383, "pwtools.thermo.HarmonicThermo.cv", false]], "cycle_colors (in module pwtools.mpl)": [[599, "pwtools.mpl.cycle_colors", false]], "cycle_colors_linestyles (in module pwtools.mpl)": [[600, "pwtools.mpl.cycle_colors_linestyles", false]], "cycle_colors_markers (in module pwtools.mpl)": [[601, "pwtools.mpl.cycle_colors_markers", false]], "cycle_linestyles_colors (in module pwtools.mpl)": [[602, "pwtools.mpl.cycle_linestyles_colors", false]], "cycle_markers (in module pwtools.mpl)": [[603, "pwtools.mpl.cycle_markers", false]], "cycle_markers_colors (in module pwtools.mpl)": [[604, "pwtools.mpl.cycle_markers_colors", false]], "data (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.data", false], [62, "pwtools.atomic_data.data", false]], "data2d (class in pwtools.mpl)": [[577, "pwtools.mpl.Data2D", false]], "data3d (in module pwtools.mpl)": [[580, "pwtools.mpl.Data3D", false]], "datand (class in pwtools.num)": [[640, "pwtools.num.DataND", false]], "dcdoutputfile (class in pwtools.parse)": [[961, "pwtools.parse.DcdOutputFile", false]], "dct2lst() (pwtools.eos.evfunction method)": [[466, "pwtools.eos.EVFunction.dct2lst", false]], "dct2lst() (pwtools.eos.vinet method)": [[536, "pwtools.eos.Vinet.dct2lst", false]], "debye_func() (in module pwtools.thermo)": [[1395, "pwtools.thermo.debye_func", false]], "default_parameters (pwtools.calculators.lammps attribute)": [[105, "pwtools.calculators.Lammps.default_parameters", false]], "default_parameters (pwtools.calculators.pwscf attribute)": [[113, "pwtools.calculators.Pwscf.default_parameters", false]], "default_repl_keys() (in module pwtools.batch)": [[99, "pwtools.batch.default_repl_keys", false]], "default_units (pwtools.parse.ciffile attribute)": [[705, "pwtools.parse.CifFile.default_units", false]], "default_units (pwtools.parse.cp2kdcdmdoutputfile attribute)": [[734, "pwtools.parse.Cp2kDcdMDOutputFile.default_units", false]], "default_units (pwtools.parse.cp2kmdoutputfile attribute)": [[776, "pwtools.parse.Cp2kMDOutputFile.default_units", false]], "default_units (pwtools.parse.cp2krelaxoutputfile attribute)": [[816, "pwtools.parse.Cp2kRelaxOutputFile.default_units", false]], "default_units (pwtools.parse.cp2kscfoutputfile attribute)": [[856, "pwtools.parse.Cp2kSCFOutputFile.default_units", false]], "default_units (pwtools.parse.cpmdmdoutputfile attribute)": [[886, "pwtools.parse.CpmdMDOutputFile.default_units", false]], "default_units (pwtools.parse.cpmdscfoutputfile attribute)": [[934, "pwtools.parse.CpmdSCFOutputFile.default_units", false]], "default_units (pwtools.parse.lammpsdcdmdoutputfile attribute)": [[977, "pwtools.parse.LammpsDcdMDOutputFile.default_units", false]], "default_units (pwtools.parse.lammpstextmdoutputfile attribute)": [[1019, "pwtools.parse.LammpsTextMDOutputFile.default_units", false]], "default_units (pwtools.parse.pdbfile attribute)": [[1060, "pwtools.parse.PDBFile.default_units", false]], "default_units (pwtools.parse.pwmdoutputfile attribute)": [[1088, "pwtools.parse.PwMDOutputFile.default_units", false]], "default_units (pwtools.parse.pwscfoutputfile attribute)": [[1132, "pwtools.parse.PwSCFOutputFile.default_units", false]], "default_units (pwtools.parse.pwvcmdoutputfile attribute)": [[1168, "pwtools.parse.PwVCMDOutputFile.default_units", false]], "default_units (pwtools.parse.structurefileparser attribute)": [[1214, "pwtools.parse.StructureFileParser.default_units", false]], "default_units (pwtools.parse.trajectoryfileparser attribute)": [[1239, "pwtools.parse.TrajectoryFileParser.default_units", false]], "deriv() (pwtools.eos.evfunction method)": [[467, "pwtools.eos.EVFunction.deriv", false]], "deriv() (pwtools.eos.vinet method)": [[537, "pwtools.eos.Vinet.deriv", false]], "deriv() (pwtools.rbf.core.rbf method)": [[1302, "pwtools.rbf.core.Rbf.deriv", false]], "deriv_jax() (pwtools.rbf.core.rbf method)": [[1303, "pwtools.rbf.core.Rbf.deriv_jax", false]], "deriv_spl() (in module pwtools.num)": [[664, "pwtools.num.deriv_spl", false]], "dft() (in module pwtools.signal)": [[1328, "pwtools.signal.dft", false]], "dict2class() (in module pwtools.common)": [[134, "pwtools.common.dict2class", false]], "dict2str() (in module pwtools.common)": [[135, "pwtools.common.dict2str", false]], "direct_pdos() (in module pwtools.pydos)": [[1289, "pwtools.pydos.direct_pdos", false]], "distances() (in module pwtools.crys)": [[420, "pwtools.crys.distances", false]], "distances_traj (in module pwtools._flib)": [[45, "pwtools._flib.distances_traj", false]], "distances_traj() (in module pwtools.crys)": [[421, "pwtools.crys.distances_traj", false]], "distsq (in module pwtools._flib)": [[46, "pwtools._flib.distsq", false]], "distsq() (in module pwtools.num)": [[665, "pwtools.num.distsq", false]], "distsq_frac (in module pwtools._flib)": [[47, "pwtools._flib.distsq_frac", false]], "dtype (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.dtype", false], [62, "pwtools.atomic_data.dtype", false]], "dump() (pwtools.base.flexiblegetters method)": [[74, "pwtools.base.FlexibleGetters.dump", false]], "dump() (pwtools.crys.fakeaseatoms method)": [[221, "pwtools.crys.FakeASEAtoms.dump", false]], "dump() (pwtools.crys.structure method)": [[279, "pwtools.crys.Structure.dump", false]], "dump() (pwtools.crys.trajectory method)": [[336, "pwtools.crys.Trajectory.dump", false]], "dump() (pwtools.crys.unitshandler method)": [[390, "pwtools.crys.UnitsHandler.dump", false]], "dump() (pwtools.eos.elkeosfit method)": [[479, "pwtools.eos.ElkEOSFit.dump", false]], "dump() (pwtools.eos.externeos method)": [[514, "pwtools.eos.ExternEOS.dump", false]], "dump() (pwtools.parse.ciffile method)": [[706, "pwtools.parse.CifFile.dump", false]], "dump() (pwtools.parse.cp2kdcdmdoutputfile method)": [[735, "pwtools.parse.Cp2kDcdMDOutputFile.dump", false]], "dump() (pwtools.parse.cp2kmdoutputfile method)": [[777, "pwtools.parse.Cp2kMDOutputFile.dump", false]], "dump() (pwtools.parse.cp2krelaxoutputfile method)": [[817, "pwtools.parse.Cp2kRelaxOutputFile.dump", false]], "dump() (pwtools.parse.cp2kscfoutputfile method)": [[857, "pwtools.parse.Cp2kSCFOutputFile.dump", false]], "dump() (pwtools.parse.cpmdmdoutputfile method)": [[887, "pwtools.parse.CpmdMDOutputFile.dump", false]], "dump() (pwtools.parse.cpmdscfoutputfile method)": [[935, "pwtools.parse.CpmdSCFOutputFile.dump", false]], "dump() (pwtools.parse.lammpsdcdmdoutputfile method)": [[978, "pwtools.parse.LammpsDcdMDOutputFile.dump", false]], "dump() (pwtools.parse.lammpstextmdoutputfile method)": [[1020, "pwtools.parse.LammpsTextMDOutputFile.dump", false]], "dump() (pwtools.parse.pdbfile method)": [[1061, "pwtools.parse.PDBFile.dump", false]], "dump() (pwtools.parse.pwmdoutputfile method)": [[1089, "pwtools.parse.PwMDOutputFile.dump", false]], "dump() (pwtools.parse.pwscfoutputfile method)": [[1133, "pwtools.parse.PwSCFOutputFile.dump", false]], "dump() (pwtools.parse.pwvcmdoutputfile method)": [[1169, "pwtools.parse.PwVCMDOutputFile.dump", false]], "dump() (pwtools.parse.structurefileparser method)": [[1215, "pwtools.parse.StructureFileParser.dump", false]], "dump() (pwtools.parse.trajectoryfileparser method)": [[1240, "pwtools.parse.TrajectoryFileParser.dump", false]], "dyn (in module pwtools.constants)": [[191, "pwtools.constants.dyn", false]], "e0 (in module pwtools.constants)": [[192, "pwtools.constants.e0", false]], "eh (in module pwtools.constants)": [[169, "pwtools.constants.Eh", false]], "einstein_func() (in module pwtools.thermo)": [[1398, "pwtools.thermo.einstein_func", false]], "elkeosfit (class in pwtools.eos)": [[471, "pwtools.eos.ElkEOSFit", false]], "eosfit (class in pwtools.eos)": [[497, "pwtools.eos.EosFit", false]], "eps (in module pwtools.common)": [[127, "pwtools.common.EPS", false]], "eps (in module pwtools.num)": [[642, "pwtools.num.EPS", false]], "eps (in module pwtools.pwscf)": [[1270, "pwtools.pwscf.EPS", false]], "eps0 (in module pwtools.constants)": [[196, "pwtools.constants.eps0", false]], "err_cv() (pwtools.rbf.hyperopt.fiterror method)": [[1320, "pwtools.rbf.hyperopt.FitError.err_cv", false]], "err_direct() (pwtools.rbf.hyperopt.fiterror method)": [[1321, "pwtools.rbf.hyperopt.FitError.err_direct", false]], "eryd (in module pwtools.constants)": [[170, "pwtools.constants.Eryd", false]], "estimate_p() (in module pwtools.rbf.core)": [[1310, "pwtools.rbf.core.estimate_p", false]], "euclidean_dists() (in module pwtools.rbf.core)": [[1311, "pwtools.rbf.core.euclidean_dists", false]], "euler_matrix() (in module pwtools.num)": [[666, "pwtools.num.euler_matrix", false]], "ev (in module pwtools.constants)": [[193, "pwtools.constants.eV", false]], "ev (in module pwtools.eos)": [[544, "pwtools.eos.eV", false]], "ev (in module pwtools.io)": [[548, "pwtools.io.eV", false]], "ev (in module pwtools.parse)": [[1261, "pwtools.parse.eV", false]], "ev (in module pwtools.thermo)": [[1396, "pwtools.thermo.eV", false]], "ev_by_ang3_to_gpa (in module pwtools.constants)": [[194, "pwtools.constants.eV_by_Ang3_to_GPa", false]], "ev_by_ang3_to_gpa (in module pwtools.eos)": [[545, "pwtools.eos.eV_by_Ang3_to_GPa", false]], "ev_by_ang3_to_gpa (in module pwtools.thermo)": [[1397, "pwtools.thermo.eV_by_Ang3_to_GPa", false]], "ev_by_ang3_to_pa (in module pwtools.constants)": [[195, "pwtools.constants.eV_by_Ang3_to_Pa", false]], "evaluate() (pwtools.eos.evfunction method)": [[468, "pwtools.eos.EVFunction.evaluate", false]], "evaluate() (pwtools.eos.vinet method)": [[538, "pwtools.eos.Vinet.evaluate", false]], "evfunction (class in pwtools.eos)": [[465, "pwtools.eos.EVFunction", false]], "evib() (pwtools.thermo.harmonicthermo method)": [[1384, "pwtools.thermo.HarmonicThermo.evib", false]], "execute() (pwtools.sql.sqlitedb method)": [[1348, "pwtools.sql.SQLiteDB.execute", false]], "executemany() (pwtools.sql.sqlitedb method)": [[1349, "pwtools.sql.SQLiteDB.executemany", false]], "executescript() (pwtools.sql.sqlitedb method)": [[1350, "pwtools.sql.SQLiteDB.executescript", false]], "expansion() (in module pwtools.thermo)": [[1399, "pwtools.thermo.expansion", false]], "extend_array() (in module pwtools.num)": [[667, "pwtools.num.extend_array", false]], "externeos (class in pwtools.eos)": [[506, "pwtools.eos.ExternEOS", false]], "ezfft() (in module pwtools.signal)": [[1329, "pwtools.signal.ezfft", false]], "fakeaseatoms (class in pwtools.crys)": [[211, "pwtools.crys.FakeASEAtoms", false]], "fempty() (in module pwtools.num)": [[668, "pwtools.num.fempty", false]], "ffloat() (in module pwtools.common)": [[136, "pwtools.common.ffloat", false]], "fft_1d_loop() (in module pwtools.signal)": [[1330, "pwtools.signal.fft_1d_loop", false]], "fftsample() (in module pwtools.signal)": [[1331, "pwtools.signal.fftsample", false]], "fig_ax() (in module pwtools.mpl)": [[605, "pwtools.mpl.fig_ax", false]], "fig_ax3d() (in module pwtools.mpl)": [[606, "pwtools.mpl.fig_ax3d", false]], "file_read() (in module pwtools.common)": [[137, "pwtools.common.file_read", false]], "file_readlines() (in module pwtools.common)": [[138, "pwtools.common.file_readlines", false]], "file_template_replace() (in module pwtools.common)": [[139, "pwtools.common.file_template_replace", false]], "file_write() (in module pwtools.common)": [[140, "pwtools.common.file_write", false]], "fileiocalculator (class in pwtools.calculators)": [[103, "pwtools.calculators.FileIOCalculator", false]], "filetemplate (class in pwtools.batch)": [[90, "pwtools.batch.FileTemplate", false]], "fill_column() (pwtools.sql.sqlitedb method)": [[1351, "pwtools.sql.SQLiteDB.fill_column", false]], "fill_infile_templ() (pwtools.calculators.calculatorbase method)": [[101, "pwtools.calculators.CalculatorBase.fill_infile_templ", false]], "fill_infile_templ() (pwtools.calculators.lammps method)": [[106, "pwtools.calculators.Lammps.fill_infile_templ", false]], "fill_infile_templ() (pwtools.calculators.pwscf method)": [[114, "pwtools.calculators.Pwscf.fill_infile_templ", false]], "find_exe() (in module pwtools.calculators)": [[121, "pwtools.calculators.find_exe", false]], "find_peaks() (in module pwtools.signal)": [[1332, "pwtools.signal.find_peaks", false]], "find_sqltype() (in module pwtools.sql)": [[1364, "pwtools.sql.find_sqltype", false]], "findmin() (in module pwtools.num)": [[669, "pwtools.num.findmin", false]], "findroot() (in module pwtools.num)": [[670, "pwtools.num.findroot", false]], "finish() (pwtools.sql.sqlitedb method)": [[1352, "pwtools.sql.SQLiteDB.finish", false]], "firfilter (class in pwtools.signal)": [[1325, "pwtools.signal.FIRFilter", false]], "fit() (pwtools.eos.elkeosfit method)": [[480, "pwtools.eos.ElkEOSFit.fit", false]], "fit() (pwtools.eos.eosfit method)": [[499, "pwtools.eos.EosFit.fit", false]], "fit() (pwtools.eos.externeos method)": [[515, "pwtools.eos.ExternEOS.fit", false]], "fit() (pwtools.rbf.core.rbf method)": [[1304, "pwtools.rbf.core.Rbf.fit", false]], "fit1d (class in pwtools.num)": [[643, "pwtools.num.Fit1D", false]], "fit_error() (pwtools.rbf.core.rbf method)": [[1305, "pwtools.rbf.core.Rbf.fit_error", false]], "fit_opt() (in module pwtools.rbf.hyperopt)": [[1323, "pwtools.rbf.hyperopt.fit_opt", false]], "fiterror (class in pwtools.rbf.hyperopt)": [[1318, "pwtools.rbf.hyperopt.FitError", false]], "fix_eps() (in module pwtools.common)": [[141, "pwtools.common.fix_eps", false]], "fix_sql_header() (in module pwtools.sql)": [[1365, "pwtools.sql.fix_sql_header", false]], "fix_sqltype() (in module pwtools.sql)": [[1366, "pwtools.sql.fix_sqltype", false]], "flags (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.flags", false], [62, "pwtools.atomic_data.flags", false]], "flat (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.flat", false], [62, "pwtools.atomic_data.flat", false]], "flatten() (in module pwtools.common)": [[142, "pwtools.common.flatten", false]], "flexiblegetters (class in pwtools.base)": [[67, "pwtools.base.FlexibleGetters", false]], "float_from_txt() (in module pwtools.parse)": [[1262, "pwtools.parse.float_from_txt", false]], "float_re (in module pwtools.regex)": [[1324, "pwtools.regex.float_re", false]], "fpj() (in module pwtools.common)": [[143, "pwtools.common.fpj", false]], "frac2cart (in module pwtools._flib)": [[48, "pwtools._flib.frac2cart", false]], "frac2cart_traj (in module pwtools._flib)": [[49, "pwtools._flib.frac2cart_traj", false]], "frepr() (in module pwtools.common)": [[144, "pwtools.common.frepr", false]], "fs (in module pwtools.constants)": [[197, "pwtools.constants.fs", false]], "fs (in module pwtools.parse)": [[1263, "pwtools.parse.fs", false]], "fullpath() (in module pwtools.common)": [[145, "pwtools.common.fullpath", false]], "fullpathjoin() (in module pwtools.common)": [[146, "pwtools.common.fullpathjoin", false]], "fvacf() (in module pwtools.pydos)": [[1290, "pwtools.pydos.fvacf", false]], "fvib() (pwtools.thermo.harmonicthermo method)": [[1385, "pwtools.thermo.HarmonicThermo.fvib", false]], "gauss() (in module pwtools.signal)": [[1333, "pwtools.signal.gauss", false]], "get_2d_testdata() (in module pwtools.mpl)": [[607, "pwtools.mpl.get_2d_testdata", false]], "get_alat() (pwtools.parse.pwmdoutputfile method)": [[1090, "pwtools.parse.PwMDOutputFile.get_alat", false]], "get_alat() (pwtools.parse.pwscfoutputfile method)": [[1134, "pwtools.parse.PwSCFOutputFile.get_alat", false]], "get_alat() (pwtools.parse.pwvcmdoutputfile method)": [[1170, "pwtools.parse.PwVCMDOutputFile.get_alat", false]], "get_array() (pwtools.sql.sqlitedb method)": [[1353, "pwtools.sql.SQLiteDB.get_array", false]], "get_array1d() (pwtools.sql.sqlitedb method)": [[1354, "pwtools.sql.SQLiteDB.get_array1d", false]], "get_ase_atoms() (pwtools.crys.fakeaseatoms method)": [[222, "pwtools.crys.FakeASEAtoms.get_ase_atoms", false]], "get_ase_atoms() (pwtools.crys.structure method)": [[280, "pwtools.crys.Structure.get_ase_atoms", false]], "get_ase_atoms() (pwtools.crys.trajectory method)": [[337, "pwtools.crys.Trajectory.get_ase_atoms", false]], "get_atomic_numbers() (pwtools.crys.fakeaseatoms method)": [[223, "pwtools.crys.FakeASEAtoms.get_atomic_numbers", false]], "get_cell() (pwtools.crys.fakeaseatoms method)": [[224, "pwtools.crys.FakeASEAtoms.get_cell", false]], "get_cell() (pwtools.crys.structure method)": [[281, "pwtools.crys.Structure.get_cell", false]], "get_cell() (pwtools.crys.trajectory method)": [[338, "pwtools.crys.Trajectory.get_cell", false]], "get_cell() (pwtools.parse.cp2kdcdmdoutputfile method)": [[736, "pwtools.parse.Cp2kDcdMDOutputFile.get_cell", false]], "get_cell() (pwtools.parse.cp2kmdoutputfile method)": [[778, "pwtools.parse.Cp2kMDOutputFile.get_cell", false]], "get_cell() (pwtools.parse.cp2krelaxoutputfile method)": [[818, "pwtools.parse.Cp2kRelaxOutputFile.get_cell", false]], "get_cell() (pwtools.parse.cpmdmdoutputfile method)": [[888, "pwtools.parse.CpmdMDOutputFile.get_cell", false]], "get_cell() (pwtools.parse.cpmdscfoutputfile method)": [[936, "pwtools.parse.CpmdSCFOutputFile.get_cell", false]], "get_cell() (pwtools.parse.dcdoutputfile method)": [[962, "pwtools.parse.DcdOutputFile.get_cell", false]], "get_cell() (pwtools.parse.lammpsdcdmdoutputfile method)": [[979, "pwtools.parse.LammpsDcdMDOutputFile.get_cell", false]], "get_cell() (pwtools.parse.lammpstextmdoutputfile method)": [[1021, "pwtools.parse.LammpsTextMDOutputFile.get_cell", false]], "get_cell() (pwtools.parse.pwmdoutputfile method)": [[1091, "pwtools.parse.PwMDOutputFile.get_cell", false]], "get_cell() (pwtools.parse.pwscfoutputfile method)": [[1135, "pwtools.parse.PwSCFOutputFile.get_cell", false]], "get_cell() (pwtools.parse.pwvcmdoutputfile method)": [[1171, "pwtools.parse.PwVCMDOutputFile.get_cell", false]], "get_cell_unit() (pwtools.parse.pwmdoutputfile method)": [[1092, "pwtools.parse.PwMDOutputFile.get_cell_unit", false]], "get_cell_unit() (pwtools.parse.pwvcmdoutputfile method)": [[1172, "pwtools.parse.PwVCMDOutputFile.get_cell_unit", false]], "get_cont() (pwtools.parse.ciffile method)": [[707, "pwtools.parse.CifFile.get_cont", false]], "get_cont() (pwtools.parse.cp2kdcdmdoutputfile method)": [[737, "pwtools.parse.Cp2kDcdMDOutputFile.get_cont", false]], "get_cont() (pwtools.parse.cp2kmdoutputfile method)": [[779, "pwtools.parse.Cp2kMDOutputFile.get_cont", false]], "get_cont() (pwtools.parse.cp2krelaxoutputfile method)": [[819, "pwtools.parse.Cp2kRelaxOutputFile.get_cont", false]], "get_cont() (pwtools.parse.cp2kscfoutputfile method)": [[858, "pwtools.parse.Cp2kSCFOutputFile.get_cont", false]], "get_cont() (pwtools.parse.cpmdmdoutputfile method)": [[889, "pwtools.parse.CpmdMDOutputFile.get_cont", false]], "get_cont() (pwtools.parse.cpmdscfoutputfile method)": [[937, "pwtools.parse.CpmdSCFOutputFile.get_cont", false]], "get_cont() (pwtools.parse.lammpsdcdmdoutputfile method)": [[980, "pwtools.parse.LammpsDcdMDOutputFile.get_cont", false]], "get_cont() (pwtools.parse.lammpstextmdoutputfile method)": [[1022, "pwtools.parse.LammpsTextMDOutputFile.get_cont", false]], "get_cont() (pwtools.parse.pdbfile method)": [[1062, "pwtools.parse.PDBFile.get_cont", false]], "get_cont() (pwtools.parse.pwmdoutputfile method)": [[1093, "pwtools.parse.PwMDOutputFile.get_cont", false]], "get_cont() (pwtools.parse.pwscfoutputfile method)": [[1136, "pwtools.parse.PwSCFOutputFile.get_cont", false]], "get_cont() (pwtools.parse.pwvcmdoutputfile method)": [[1173, "pwtools.parse.PwVCMDOutputFile.get_cont", false]], "get_cont() (pwtools.parse.structurefileparser method)": [[1216, "pwtools.parse.StructureFileParser.get_cont", false]], "get_cont() (pwtools.parse.trajectoryfileparser method)": [[1241, "pwtools.parse.TrajectoryFileParser.get_cont", false]], "get_coords() (pwtools.crys.fakeaseatoms method)": [[225, "pwtools.crys.FakeASEAtoms.get_coords", false]], "get_coords() (pwtools.crys.structure method)": [[282, "pwtools.crys.Structure.get_coords", false]], "get_coords() (pwtools.crys.trajectory method)": [[339, "pwtools.crys.Trajectory.get_coords", false]], "get_coords() (pwtools.parse.ciffile method)": [[708, "pwtools.parse.CifFile.get_coords", false]], "get_coords() (pwtools.parse.cp2kdcdmdoutputfile method)": [[738, "pwtools.parse.Cp2kDcdMDOutputFile.get_coords", false]], "get_coords() (pwtools.parse.cp2kmdoutputfile method)": [[780, "pwtools.parse.Cp2kMDOutputFile.get_coords", false]], "get_coords() (pwtools.parse.cp2krelaxoutputfile method)": [[820, "pwtools.parse.Cp2kRelaxOutputFile.get_coords", false]], "get_coords() (pwtools.parse.cpmdmdoutputfile method)": [[890, "pwtools.parse.CpmdMDOutputFile.get_coords", false]], "get_coords() (pwtools.parse.dcdoutputfile method)": [[963, "pwtools.parse.DcdOutputFile.get_coords", false]], "get_coords() (pwtools.parse.lammpsdcdmdoutputfile method)": [[981, "pwtools.parse.LammpsDcdMDOutputFile.get_coords", false]], "get_coords() (pwtools.parse.lammpstextmdoutputfile method)": [[1023, "pwtools.parse.LammpsTextMDOutputFile.get_coords", false]], "get_coords() (pwtools.parse.pdbfile method)": [[1063, "pwtools.parse.PDBFile.get_coords", false]], "get_coords() (pwtools.parse.pwmdoutputfile method)": [[1094, "pwtools.parse.PwMDOutputFile.get_coords", false]], "get_coords() (pwtools.parse.pwscfoutputfile method)": [[1137, "pwtools.parse.PwSCFOutputFile.get_coords", false]], "get_coords() (pwtools.parse.pwvcmdoutputfile method)": [[1174, "pwtools.parse.PwVCMDOutputFile.get_coords", false]], "get_coords_frac() (pwtools.crys.fakeaseatoms method)": [[226, "pwtools.crys.FakeASEAtoms.get_coords_frac", false]], "get_coords_frac() (pwtools.crys.structure method)": [[283, "pwtools.crys.Structure.get_coords_frac", false]], "get_coords_frac() (pwtools.crys.trajectory method)": [[340, "pwtools.crys.Trajectory.get_coords_frac", false]], "get_coords_frac() (pwtools.parse.ciffile method)": [[709, "pwtools.parse.CifFile.get_coords_frac", false]], "get_coords_frac() (pwtools.parse.cpmdmdoutputfile method)": [[891, "pwtools.parse.CpmdMDOutputFile.get_coords_frac", false]], "get_coords_frac() (pwtools.parse.cpmdscfoutputfile method)": [[938, "pwtools.parse.CpmdSCFOutputFile.get_coords_frac", false]], "get_coords_frac() (pwtools.parse.lammpsdcdmdoutputfile method)": [[982, "pwtools.parse.LammpsDcdMDOutputFile.get_coords_frac", false]], "get_coords_frac() (pwtools.parse.lammpstextmdoutputfile method)": [[1024, "pwtools.parse.LammpsTextMDOutputFile.get_coords_frac", false]], "get_coords_frac() (pwtools.parse.pwmdoutputfile method)": [[1095, "pwtools.parse.PwMDOutputFile.get_coords_frac", false]], "get_coords_frac() (pwtools.parse.pwvcmdoutputfile method)": [[1175, "pwtools.parse.PwVCMDOutputFile.get_coords_frac", false]], "get_coords_unit() (pwtools.parse.pwmdoutputfile method)": [[1096, "pwtools.parse.PwMDOutputFile.get_coords_unit", false]], "get_coords_unit() (pwtools.parse.pwvcmdoutputfile method)": [[1176, "pwtools.parse.PwVCMDOutputFile.get_coords_unit", false]], "get_cryst_const() (pwtools.crys.fakeaseatoms method)": [[227, "pwtools.crys.FakeASEAtoms.get_cryst_const", false]], "get_cryst_const() (pwtools.crys.structure method)": [[284, "pwtools.crys.Structure.get_cryst_const", false]], "get_cryst_const() (pwtools.crys.trajectory method)": [[341, "pwtools.crys.Trajectory.get_cryst_const", false]], "get_cryst_const() (pwtools.parse.ciffile method)": [[710, "pwtools.parse.CifFile.get_cryst_const", false]], "get_cryst_const() (pwtools.parse.cp2kdcdmdoutputfile method)": [[739, "pwtools.parse.Cp2kDcdMDOutputFile.get_cryst_const", false]], "get_cryst_const() (pwtools.parse.dcdoutputfile method)": [[964, "pwtools.parse.DcdOutputFile.get_cryst_const", false]], "get_cryst_const() (pwtools.parse.lammpsdcdmdoutputfile method)": [[983, "pwtools.parse.LammpsDcdMDOutputFile.get_cryst_const", false]], "get_cryst_const() (pwtools.parse.lammpstextmdoutputfile method)": [[1025, "pwtools.parse.LammpsTextMDOutputFile.get_cryst_const", false]], "get_cryst_const() (pwtools.parse.pdbfile method)": [[1064, "pwtools.parse.PDBFile.get_cryst_const", false]], "get_dcd_file_info (in module pwtools._dcd)": [[36, "pwtools._dcd.get_dcd_file_info", false]], "get_dict() (pwtools.sql.sqlitedb method)": [[1355, "pwtools.sql.SQLiteDB.get_dict", false]], "get_distsq() (pwtools.rbf.core.rbf method)": [[1306, "pwtools.rbf.core.Rbf.get_distsq", false]], "get_econst() (pwtools.parse.cp2kdcdmdoutputfile method)": [[740, "pwtools.parse.Cp2kDcdMDOutputFile.get_econst", false]], "get_econst() (pwtools.parse.cp2kmdoutputfile method)": [[781, "pwtools.parse.Cp2kMDOutputFile.get_econst", false]], "get_econst() (pwtools.parse.cp2krelaxoutputfile method)": [[821, "pwtools.parse.Cp2kRelaxOutputFile.get_econst", false]], "get_econst() (pwtools.parse.cpmdmdoutputfile method)": [[892, "pwtools.parse.CpmdMDOutputFile.get_econst", false]], "get_econst() (pwtools.parse.pwvcmdoutputfile method)": [[1177, "pwtools.parse.PwVCMDOutputFile.get_econst", false]], "get_ekin() (pwtools.crys.fakeaseatoms method)": [[228, "pwtools.crys.FakeASEAtoms.get_ekin", false]], "get_ekin() (pwtools.crys.structure method)": [[285, "pwtools.crys.Structure.get_ekin", false]], "get_ekin() (pwtools.crys.trajectory method)": [[342, "pwtools.crys.Trajectory.get_ekin", false]], "get_ekin() (pwtools.parse.cp2kdcdmdoutputfile method)": [[741, "pwtools.parse.Cp2kDcdMDOutputFile.get_ekin", false]], "get_ekin() (pwtools.parse.cp2kmdoutputfile method)": [[782, "pwtools.parse.Cp2kMDOutputFile.get_ekin", false]], "get_ekin() (pwtools.parse.cp2krelaxoutputfile method)": [[822, "pwtools.parse.Cp2kRelaxOutputFile.get_ekin", false]], "get_ekin() (pwtools.parse.cpmdmdoutputfile method)": [[893, "pwtools.parse.CpmdMDOutputFile.get_ekin", false]], "get_ekin() (pwtools.parse.lammpsdcdmdoutputfile method)": [[984, "pwtools.parse.LammpsDcdMDOutputFile.get_ekin", false]], "get_ekin() (pwtools.parse.lammpstextmdoutputfile method)": [[1026, "pwtools.parse.LammpsTextMDOutputFile.get_ekin", false]], "get_ekin() (pwtools.parse.pwmdoutputfile method)": [[1097, "pwtools.parse.PwMDOutputFile.get_ekin", false]], "get_ekin() (pwtools.parse.pwvcmdoutputfile method)": [[1178, "pwtools.parse.PwVCMDOutputFile.get_ekin", false]], "get_ekin_cell() (pwtools.parse.cpmdmdoutputfile method)": [[894, "pwtools.parse.CpmdMDOutputFile.get_ekin_cell", false]], "get_ekin_elec() (pwtools.parse.cpmdmdoutputfile method)": [[895, "pwtools.parse.CpmdMDOutputFile.get_ekin_elec", false]], "get_ekinc() (pwtools.parse.cpmdmdoutputfile method)": [[896, "pwtools.parse.CpmdMDOutputFile.get_ekinc", false]], "get_ekinh() (pwtools.parse.cpmdmdoutputfile method)": [[897, "pwtools.parse.CpmdMDOutputFile.get_ekinh", false]], "get_etot() (pwtools.crys.fakeaseatoms method)": [[229, "pwtools.crys.FakeASEAtoms.get_etot", false]], "get_etot() (pwtools.crys.structure method)": [[286, "pwtools.crys.Structure.get_etot", false]], "get_etot() (pwtools.crys.trajectory method)": [[343, "pwtools.crys.Trajectory.get_etot", false]], "get_etot() (pwtools.parse.cp2kdcdmdoutputfile method)": [[742, "pwtools.parse.Cp2kDcdMDOutputFile.get_etot", false]], "get_etot() (pwtools.parse.cp2kmdoutputfile method)": [[783, "pwtools.parse.Cp2kMDOutputFile.get_etot", false]], "get_etot() (pwtools.parse.cp2krelaxoutputfile method)": [[823, "pwtools.parse.Cp2kRelaxOutputFile.get_etot", false]], "get_etot() (pwtools.parse.cp2kscfoutputfile method)": [[859, "pwtools.parse.Cp2kSCFOutputFile.get_etot", false]], "get_etot() (pwtools.parse.cpmdmdoutputfile method)": [[898, "pwtools.parse.CpmdMDOutputFile.get_etot", false]], "get_etot() (pwtools.parse.cpmdscfoutputfile method)": [[939, "pwtools.parse.CpmdSCFOutputFile.get_etot", false]], "get_etot() (pwtools.parse.lammpsdcdmdoutputfile method)": [[985, "pwtools.parse.LammpsDcdMDOutputFile.get_etot", false]], "get_etot() (pwtools.parse.lammpstextmdoutputfile method)": [[1027, "pwtools.parse.LammpsTextMDOutputFile.get_etot", false]], "get_etot() (pwtools.parse.pwmdoutputfile method)": [[1098, "pwtools.parse.PwMDOutputFile.get_etot", false]], "get_etot() (pwtools.parse.pwscfoutputfile method)": [[1138, "pwtools.parse.PwSCFOutputFile.get_etot", false]], "get_etot() (pwtools.parse.pwvcmdoutputfile method)": [[1179, "pwtools.parse.PwVCMDOutputFile.get_etot", false]], "get_fake_ase_atoms() (pwtools.crys.fakeaseatoms method)": [[230, "pwtools.crys.FakeASEAtoms.get_fake_ase_atoms", false]], "get_fake_ase_atoms() (pwtools.crys.structure method)": [[287, "pwtools.crys.Structure.get_fake_ase_atoms", false]], "get_fake_ase_atoms() (pwtools.crys.trajectory method)": [[344, "pwtools.crys.Trajectory.get_fake_ase_atoms", false]], "get_filename() (in module pwtools.common)": [[147, "pwtools.common.get_filename", false]], "get_forces() (pwtools.crys.fakeaseatoms method)": [[231, "pwtools.crys.FakeASEAtoms.get_forces", false]], "get_forces() (pwtools.crys.structure method)": [[288, "pwtools.crys.Structure.get_forces", false]], "get_forces() (pwtools.crys.trajectory method)": [[345, "pwtools.crys.Trajectory.get_forces", false]], "get_forces() (pwtools.parse.cp2kdcdmdoutputfile method)": [[743, "pwtools.parse.Cp2kDcdMDOutputFile.get_forces", false]], "get_forces() (pwtools.parse.cp2kmdoutputfile method)": [[784, "pwtools.parse.Cp2kMDOutputFile.get_forces", false]], "get_forces() (pwtools.parse.cp2krelaxoutputfile method)": [[824, "pwtools.parse.Cp2kRelaxOutputFile.get_forces", false]], "get_forces() (pwtools.parse.cp2kscfoutputfile method)": [[860, "pwtools.parse.Cp2kSCFOutputFile.get_forces", false]], "get_forces() (pwtools.parse.cpmdmdoutputfile method)": [[899, "pwtools.parse.CpmdMDOutputFile.get_forces", false]], "get_forces() (pwtools.parse.cpmdscfoutputfile method)": [[940, "pwtools.parse.CpmdSCFOutputFile.get_forces", false]], "get_forces() (pwtools.parse.lammpsdcdmdoutputfile method)": [[986, "pwtools.parse.LammpsDcdMDOutputFile.get_forces", false]], "get_forces() (pwtools.parse.lammpstextmdoutputfile method)": [[1028, "pwtools.parse.LammpsTextMDOutputFile.get_forces", false]], "get_forces() (pwtools.parse.pwmdoutputfile method)": [[1099, "pwtools.parse.PwMDOutputFile.get_forces", false]], "get_forces() (pwtools.parse.pwscfoutputfile method)": [[1139, "pwtools.parse.PwSCFOutputFile.get_forces", false]], "get_forces() (pwtools.parse.pwvcmdoutputfile method)": [[1180, "pwtools.parse.PwVCMDOutputFile.get_forces", false]], "get_header() (pwtools.sql.sqlitedb method)": [[1356, "pwtools.sql.SQLiteDB.get_header", false]], "get_jobfile_basename() (pwtools.batch.machine method)": [[94, "pwtools.batch.Machine.get_jobfile_basename", false]], "get_list1d() (pwtools.sql.sqlitedb method)": [[1357, "pwtools.sql.SQLiteDB.get_list1d", false]], "get_magnetic_moments() (pwtools.crys.fakeaseatoms method)": [[232, "pwtools.crys.FakeASEAtoms.get_magnetic_moments", false]], "get_mass() (pwtools.crys.fakeaseatoms method)": [[233, "pwtools.crys.FakeASEAtoms.get_mass", false]], "get_mass() (pwtools.crys.structure method)": [[289, "pwtools.crys.Structure.get_mass", false]], "get_mass() (pwtools.crys.trajectory method)": [[346, "pwtools.crys.Trajectory.get_mass", false]], "get_mass_unique() (pwtools.crys.fakeaseatoms method)": [[234, "pwtools.crys.FakeASEAtoms.get_mass_unique", false]], "get_mass_unique() (pwtools.crys.structure method)": [[290, "pwtools.crys.Structure.get_mass_unique", false]], "get_mass_unique() (pwtools.crys.trajectory method)": [[347, "pwtools.crys.Trajectory.get_mass_unique", false]], "get_max() (pwtools.eos.eosfit method)": [[500, "pwtools.eos.EosFit.get_max", false]], "get_max() (pwtools.num.fit1d method)": [[644, "pwtools.num.Fit1D.get_max", false]], "get_max() (pwtools.num.polyfit1d method)": [[653, "pwtools.num.PolyFit1D.get_max", false]], "get_max() (pwtools.num.spline method)": [[658, "pwtools.num.Spline.get_max", false]], "get_max_rowid() (pwtools.sql.sqlitedb method)": [[1358, "pwtools.sql.SQLiteDB.get_max_rowid", false]], "get_min() (pwtools.eos.elkeosfit method)": [[481, "pwtools.eos.ElkEOSFit.get_min", false]], "get_min() (pwtools.eos.eosfit method)": [[501, "pwtools.eos.EosFit.get_min", false]], "get_min() (pwtools.eos.evfunction method)": [[469, "pwtools.eos.EVFunction.get_min", false]], "get_min() (pwtools.eos.externeos method)": [[516, "pwtools.eos.ExternEOS.get_min", false]], "get_min() (pwtools.eos.vinet method)": [[539, "pwtools.eos.Vinet.get_min", false]], "get_min() (pwtools.num.fit1d method)": [[645, "pwtools.num.Fit1D.get_min", false]], "get_min() (pwtools.num.interpol2d method)": [[649, "pwtools.num.Interpol2D.get_min", false]], "get_min() (pwtools.num.polyfit method)": [[651, "pwtools.num.PolyFit.get_min", false]], "get_min() (pwtools.num.polyfit1d method)": [[654, "pwtools.num.PolyFit1D.get_min", false]], "get_min() (pwtools.num.spline method)": [[659, "pwtools.num.Spline.get_min", false]], "get_natoms() (pwtools.crys.fakeaseatoms method)": [[235, "pwtools.crys.FakeASEAtoms.get_natoms", false]], "get_natoms() (pwtools.crys.structure method)": [[291, "pwtools.crys.Structure.get_natoms", false]], "get_natoms() (pwtools.crys.trajectory method)": [[348, "pwtools.crys.Trajectory.get_natoms", false]], "get_natoms() (pwtools.parse.cp2kdcdmdoutputfile method)": [[744, "pwtools.parse.Cp2kDcdMDOutputFile.get_natoms", false]], "get_natoms() (pwtools.parse.cp2kmdoutputfile method)": [[785, "pwtools.parse.Cp2kMDOutputFile.get_natoms", false]], "get_natoms() (pwtools.parse.cp2krelaxoutputfile method)": [[825, "pwtools.parse.Cp2kRelaxOutputFile.get_natoms", false]], "get_natoms() (pwtools.parse.cp2kscfoutputfile method)": [[861, "pwtools.parse.Cp2kSCFOutputFile.get_natoms", false]], "get_natoms() (pwtools.parse.cpmdmdoutputfile method)": [[900, "pwtools.parse.CpmdMDOutputFile.get_natoms", false]], "get_natoms() (pwtools.parse.cpmdscfoutputfile method)": [[941, "pwtools.parse.CpmdSCFOutputFile.get_natoms", false]], "get_natoms() (pwtools.parse.dcdoutputfile method)": [[965, "pwtools.parse.DcdOutputFile.get_natoms", false]], "get_natoms() (pwtools.parse.lammpsdcdmdoutputfile method)": [[987, "pwtools.parse.LammpsDcdMDOutputFile.get_natoms", false]], "get_natoms() (pwtools.parse.lammpstextmdoutputfile method)": [[1029, "pwtools.parse.LammpsTextMDOutputFile.get_natoms", false]], "get_natoms() (pwtools.parse.pwmdoutputfile method)": [[1100, "pwtools.parse.PwMDOutputFile.get_natoms", false]], "get_natoms() (pwtools.parse.pwscfoutputfile method)": [[1140, "pwtools.parse.PwSCFOutputFile.get_natoms", false]], "get_natoms() (pwtools.parse.pwvcmdoutputfile method)": [[1181, "pwtools.parse.PwVCMDOutputFile.get_natoms", false]], "get_nkpoints() (pwtools.parse.cpmdmdoutputfile method)": [[901, "pwtools.parse.CpmdMDOutputFile.get_nkpoints", false]], "get_nkpoints() (pwtools.parse.cpmdscfoutputfile method)": [[942, "pwtools.parse.CpmdSCFOutputFile.get_nkpoints", false]], "get_nkpoints() (pwtools.parse.pwmdoutputfile method)": [[1101, "pwtools.parse.PwMDOutputFile.get_nkpoints", false]], "get_nkpoints() (pwtools.parse.pwscfoutputfile method)": [[1141, "pwtools.parse.PwSCFOutputFile.get_nkpoints", false]], "get_nkpoints() (pwtools.parse.pwvcmdoutputfile method)": [[1182, "pwtools.parse.PwVCMDOutputFile.get_nkpoints", false]], "get_nspecies() (pwtools.crys.fakeaseatoms method)": [[236, "pwtools.crys.FakeASEAtoms.get_nspecies", false]], "get_nspecies() (pwtools.crys.structure method)": [[292, "pwtools.crys.Structure.get_nspecies", false]], "get_nspecies() (pwtools.crys.trajectory method)": [[349, "pwtools.crys.Trajectory.get_nspecies", false]], "get_nstep() (pwtools.crys.fakeaseatoms method)": [[237, "pwtools.crys.FakeASEAtoms.get_nstep", false]], "get_nstep() (pwtools.crys.structure method)": [[293, "pwtools.crys.Structure.get_nstep", false]], "get_nstep() (pwtools.crys.trajectory method)": [[350, "pwtools.crys.Trajectory.get_nstep", false]], "get_nstep() (pwtools.parse.cp2kdcdmdoutputfile method)": [[745, "pwtools.parse.Cp2kDcdMDOutputFile.get_nstep", false]], "get_nstep() (pwtools.parse.dcdoutputfile method)": [[966, "pwtools.parse.DcdOutputFile.get_nstep", false]], "get_nstep() (pwtools.parse.lammpsdcdmdoutputfile method)": [[988, "pwtools.parse.LammpsDcdMDOutputFile.get_nstep", false]], "get_nstep_scf() (pwtools.parse.cpmdmdoutputfile method)": [[902, "pwtools.parse.CpmdMDOutputFile.get_nstep_scf", false]], "get_nstep_scf() (pwtools.parse.cpmdscfoutputfile method)": [[943, "pwtools.parse.CpmdSCFOutputFile.get_nstep_scf", false]], "get_nstep_scf() (pwtools.parse.pwmdoutputfile method)": [[1102, "pwtools.parse.PwMDOutputFile.get_nstep_scf", false]], "get_nstep_scf() (pwtools.parse.pwscfoutputfile method)": [[1142, "pwtools.parse.PwSCFOutputFile.get_nstep_scf", false]], "get_nstep_scf() (pwtools.parse.pwvcmdoutputfile method)": [[1183, "pwtools.parse.PwVCMDOutputFile.get_nstep_scf", false]], "get_ntypat() (pwtools.crys.fakeaseatoms method)": [[238, "pwtools.crys.FakeASEAtoms.get_ntypat", false]], "get_ntypat() (pwtools.crys.structure method)": [[294, "pwtools.crys.Structure.get_ntypat", false]], "get_ntypat() (pwtools.crys.trajectory method)": [[351, "pwtools.crys.Trajectory.get_ntypat", false]], "get_order() (pwtools.crys.fakeaseatoms method)": [[239, "pwtools.crys.FakeASEAtoms.get_order", false]], "get_order() (pwtools.crys.structure method)": [[295, "pwtools.crys.Structure.get_order", false]], "get_order() (pwtools.crys.trajectory method)": [[352, "pwtools.crys.Trajectory.get_order", false]], "get_params() (pwtools.rbf.core.rbf method)": [[1307, "pwtools.rbf.core.Rbf.get_params", false]], "get_path_norm() (in module pwtools.kpath)": [[573, "pwtools.kpath.get_path_norm", false]], "get_pressure() (pwtools.crys.fakeaseatoms method)": [[240, "pwtools.crys.FakeASEAtoms.get_pressure", false]], "get_pressure() (pwtools.crys.structure method)": [[296, "pwtools.crys.Structure.get_pressure", false]], "get_pressure() (pwtools.crys.trajectory method)": [[353, "pwtools.crys.Trajectory.get_pressure", false]], "get_random_cryst_const() (pwtools.random.randomstructure method)": [[1295, "pwtools.random.RandomStructure.get_random_cryst_const", false]], "get_random_struct() (pwtools.random.randomstructure method)": [[1296, "pwtools.random.RandomStructure.get_random_struct", false]], "get_return_attr() (pwtools.base.flexiblegetters method)": [[75, "pwtools.base.FlexibleGetters.get_return_attr", false]], "get_return_attr() (pwtools.crys.fakeaseatoms method)": [[241, "pwtools.crys.FakeASEAtoms.get_return_attr", false]], "get_return_attr() (pwtools.crys.structure method)": [[297, "pwtools.crys.Structure.get_return_attr", false]], "get_return_attr() (pwtools.crys.trajectory method)": [[354, "pwtools.crys.Trajectory.get_return_attr", false]], "get_return_attr() (pwtools.crys.unitshandler method)": [[391, "pwtools.crys.UnitsHandler.get_return_attr", false]], "get_return_attr() (pwtools.eos.elkeosfit method)": [[482, "pwtools.eos.ElkEOSFit.get_return_attr", false]], "get_return_attr() (pwtools.eos.externeos method)": [[517, "pwtools.eos.ExternEOS.get_return_attr", false]], "get_return_attr() (pwtools.parse.ciffile method)": [[711, "pwtools.parse.CifFile.get_return_attr", false]], "get_return_attr() (pwtools.parse.cp2kdcdmdoutputfile method)": [[746, "pwtools.parse.Cp2kDcdMDOutputFile.get_return_attr", false]], "get_return_attr() (pwtools.parse.cp2kmdoutputfile method)": [[786, "pwtools.parse.Cp2kMDOutputFile.get_return_attr", false]], "get_return_attr() (pwtools.parse.cp2krelaxoutputfile method)": [[826, "pwtools.parse.Cp2kRelaxOutputFile.get_return_attr", false]], "get_return_attr() (pwtools.parse.cp2kscfoutputfile method)": [[862, "pwtools.parse.Cp2kSCFOutputFile.get_return_attr", false]], "get_return_attr() (pwtools.parse.cpmdmdoutputfile method)": [[903, "pwtools.parse.CpmdMDOutputFile.get_return_attr", false]], "get_return_attr() (pwtools.parse.cpmdscfoutputfile method)": [[944, "pwtools.parse.CpmdSCFOutputFile.get_return_attr", false]], "get_return_attr() (pwtools.parse.lammpsdcdmdoutputfile method)": [[989, "pwtools.parse.LammpsDcdMDOutputFile.get_return_attr", false]], "get_return_attr() (pwtools.parse.lammpstextmdoutputfile method)": [[1030, "pwtools.parse.LammpsTextMDOutputFile.get_return_attr", false]], "get_return_attr() (pwtools.parse.pdbfile method)": [[1065, "pwtools.parse.PDBFile.get_return_attr", false]], "get_return_attr() (pwtools.parse.pwmdoutputfile method)": [[1103, "pwtools.parse.PwMDOutputFile.get_return_attr", false]], "get_return_attr() (pwtools.parse.pwscfoutputfile method)": [[1143, "pwtools.parse.PwSCFOutputFile.get_return_attr", false]], "get_return_attr() (pwtools.parse.pwvcmdoutputfile method)": [[1184, "pwtools.parse.PwVCMDOutputFile.get_return_attr", false]], "get_return_attr() (pwtools.parse.structurefileparser method)": [[1217, "pwtools.parse.StructureFileParser.get_return_attr", false]], "get_return_attr() (pwtools.parse.trajectoryfileparser method)": [[1242, "pwtools.parse.TrajectoryFileParser.get_return_attr", false]], "get_root() (pwtools.eos.eosfit method)": [[502, "pwtools.eos.EosFit.get_root", false]], "get_root() (pwtools.num.fit1d method)": [[646, "pwtools.num.Fit1D.get_root", false]], "get_root() (pwtools.num.polyfit1d method)": [[655, "pwtools.num.PolyFit1D.get_root", false]], "get_root() (pwtools.num.spline method)": [[660, "pwtools.num.Spline.get_root", false]], "get_scf_converged() (pwtools.parse.cpmdmdoutputfile method)": [[904, "pwtools.parse.CpmdMDOutputFile.get_scf_converged", false]], "get_scf_converged() (pwtools.parse.cpmdscfoutputfile method)": [[945, "pwtools.parse.CpmdSCFOutputFile.get_scf_converged", false]], "get_scf_converged() (pwtools.parse.pwmdoutputfile method)": [[1104, "pwtools.parse.PwMDOutputFile.get_scf_converged", false]], "get_scf_converged() (pwtools.parse.pwscfoutputfile method)": [[1144, "pwtools.parse.PwSCFOutputFile.get_scf_converged", false]], "get_scf_converged() (pwtools.parse.pwvcmdoutputfile method)": [[1185, "pwtools.parse.PwVCMDOutputFile.get_scf_converged", false]], "get_single() (pwtools.sql.sqlitedb method)": [[1359, "pwtools.sql.SQLiteDB.get_single", false]], "get_spglib() (pwtools.crys.fakeaseatoms method)": [[242, "pwtools.crys.FakeASEAtoms.get_spglib", false]], "get_spglib() (pwtools.crys.structure method)": [[298, "pwtools.crys.Structure.get_spglib", false]], "get_spglib() (pwtools.crys.trajectory method)": [[355, "pwtools.crys.Trajectory.get_spglib", false]], "get_spl_bv() (pwtools.eos.elkeosfit method)": [[483, "pwtools.eos.ElkEOSFit.get_spl_bv", false]], "get_spl_bv() (pwtools.eos.externeos method)": [[518, "pwtools.eos.ExternEOS.get_spl_bv", false]], "get_spl_ev() (pwtools.eos.elkeosfit method)": [[484, "pwtools.eos.ElkEOSFit.get_spl_ev", false]], "get_spl_ev() (pwtools.eos.externeos method)": [[519, "pwtools.eos.ExternEOS.get_spl_ev", false]], "get_spl_pv() (pwtools.eos.elkeosfit method)": [[485, "pwtools.eos.ElkEOSFit.get_spl_pv", false]], "get_spl_pv() (pwtools.eos.externeos method)": [[520, "pwtools.eos.ExternEOS.get_spl_pv", false]], "get_sql_record() (pwtools.batch.calculation method)": [[87, "pwtools.batch.Calculation.get_sql_record", false]], "get_sql_record() (pwtools.batch.machine method)": [[95, "pwtools.batch.Machine.get_sql_record", false]], "get_stress() (pwtools.crys.fakeaseatoms method)": [[243, "pwtools.crys.FakeASEAtoms.get_stress", false]], "get_stress() (pwtools.crys.structure method)": [[299, "pwtools.crys.Structure.get_stress", false]], "get_stress() (pwtools.crys.trajectory method)": [[356, "pwtools.crys.Trajectory.get_stress", false]], "get_stress() (pwtools.parse.cp2kdcdmdoutputfile method)": [[747, "pwtools.parse.Cp2kDcdMDOutputFile.get_stress", false]], "get_stress() (pwtools.parse.cp2kmdoutputfile method)": [[787, "pwtools.parse.Cp2kMDOutputFile.get_stress", false]], "get_stress() (pwtools.parse.cp2krelaxoutputfile method)": [[827, "pwtools.parse.Cp2kRelaxOutputFile.get_stress", false]], "get_stress() (pwtools.parse.cp2kscfoutputfile method)": [[863, "pwtools.parse.Cp2kSCFOutputFile.get_stress", false]], "get_stress() (pwtools.parse.cpmdmdoutputfile method)": [[905, "pwtools.parse.CpmdMDOutputFile.get_stress", false]], "get_stress() (pwtools.parse.cpmdscfoutputfile method)": [[946, "pwtools.parse.CpmdSCFOutputFile.get_stress", false]], "get_stress() (pwtools.parse.lammpsdcdmdoutputfile method)": [[990, "pwtools.parse.LammpsDcdMDOutputFile.get_stress", false]], "get_stress() (pwtools.parse.lammpstextmdoutputfile method)": [[1031, "pwtools.parse.LammpsTextMDOutputFile.get_stress", false]], "get_stress() (pwtools.parse.pwmdoutputfile method)": [[1105, "pwtools.parse.PwMDOutputFile.get_stress", false]], "get_stress() (pwtools.parse.pwscfoutputfile method)": [[1145, "pwtools.parse.PwSCFOutputFile.get_stress", false]], "get_stress() (pwtools.parse.pwvcmdoutputfile method)": [[1186, "pwtools.parse.PwVCMDOutputFile.get_stress", false]], "get_struct() (pwtools.parse.ciffile method)": [[712, "pwtools.parse.CifFile.get_struct", false]], "get_struct() (pwtools.parse.cp2kdcdmdoutputfile method)": [[748, "pwtools.parse.Cp2kDcdMDOutputFile.get_struct", false]], "get_struct() (pwtools.parse.cp2kmdoutputfile method)": [[788, "pwtools.parse.Cp2kMDOutputFile.get_struct", false]], "get_struct() (pwtools.parse.cp2krelaxoutputfile method)": [[828, "pwtools.parse.Cp2kRelaxOutputFile.get_struct", false]], "get_struct() (pwtools.parse.cp2kscfoutputfile method)": [[864, "pwtools.parse.Cp2kSCFOutputFile.get_struct", false]], "get_struct() (pwtools.parse.cpmdmdoutputfile method)": [[906, "pwtools.parse.CpmdMDOutputFile.get_struct", false]], "get_struct() (pwtools.parse.cpmdscfoutputfile method)": [[947, "pwtools.parse.CpmdSCFOutputFile.get_struct", false]], "get_struct() (pwtools.parse.lammpsdcdmdoutputfile method)": [[991, "pwtools.parse.LammpsDcdMDOutputFile.get_struct", false]], "get_struct() (pwtools.parse.lammpstextmdoutputfile method)": [[1032, "pwtools.parse.LammpsTextMDOutputFile.get_struct", false]], "get_struct() (pwtools.parse.pdbfile method)": [[1066, "pwtools.parse.PDBFile.get_struct", false]], "get_struct() (pwtools.parse.pwmdoutputfile method)": [[1106, "pwtools.parse.PwMDOutputFile.get_struct", false]], "get_struct() (pwtools.parse.pwscfoutputfile method)": [[1146, "pwtools.parse.PwSCFOutputFile.get_struct", false]], "get_struct() (pwtools.parse.pwvcmdoutputfile method)": [[1187, "pwtools.parse.PwVCMDOutputFile.get_struct", false]], "get_struct() (pwtools.parse.structurefileparser method)": [[1218, "pwtools.parse.StructureFileParser.get_struct", false]], "get_struct() (pwtools.parse.trajectoryfileparser method)": [[1243, "pwtools.parse.TrajectoryFileParser.get_struct", false]], "get_symbols() (pwtools.crys.fakeaseatoms method)": [[244, "pwtools.crys.FakeASEAtoms.get_symbols", false]], "get_symbols() (pwtools.crys.structure method)": [[300, "pwtools.crys.Structure.get_symbols", false]], "get_symbols() (pwtools.crys.trajectory method)": [[357, "pwtools.crys.Trajectory.get_symbols", false]], "get_symbols() (pwtools.parse.ciffile method)": [[713, "pwtools.parse.CifFile.get_symbols", false]], "get_symbols() (pwtools.parse.cp2kdcdmdoutputfile method)": [[749, "pwtools.parse.Cp2kDcdMDOutputFile.get_symbols", false]], "get_symbols() (pwtools.parse.cp2kmdoutputfile method)": [[789, "pwtools.parse.Cp2kMDOutputFile.get_symbols", false]], "get_symbols() (pwtools.parse.cp2krelaxoutputfile method)": [[829, "pwtools.parse.Cp2kRelaxOutputFile.get_symbols", false]], "get_symbols() (pwtools.parse.cp2kscfoutputfile method)": [[865, "pwtools.parse.Cp2kSCFOutputFile.get_symbols", false]], "get_symbols() (pwtools.parse.cpmdmdoutputfile method)": [[907, "pwtools.parse.CpmdMDOutputFile.get_symbols", false]], "get_symbols() (pwtools.parse.cpmdscfoutputfile method)": [[948, "pwtools.parse.CpmdSCFOutputFile.get_symbols", false]], "get_symbols() (pwtools.parse.lammpsdcdmdoutputfile method)": [[992, "pwtools.parse.LammpsDcdMDOutputFile.get_symbols", false]], "get_symbols() (pwtools.parse.lammpstextmdoutputfile method)": [[1033, "pwtools.parse.LammpsTextMDOutputFile.get_symbols", false]], "get_symbols() (pwtools.parse.pdbfile method)": [[1067, "pwtools.parse.PDBFile.get_symbols", false]], "get_symbols() (pwtools.parse.pwmdoutputfile method)": [[1107, "pwtools.parse.PwMDOutputFile.get_symbols", false]], "get_symbols() (pwtools.parse.pwscfoutputfile method)": [[1147, "pwtools.parse.PwSCFOutputFile.get_symbols", false]], "get_symbols() (pwtools.parse.pwvcmdoutputfile method)": [[1188, "pwtools.parse.PwVCMDOutputFile.get_symbols", false]], "get_symbols_unique() (pwtools.crys.fakeaseatoms method)": [[245, "pwtools.crys.FakeASEAtoms.get_symbols_unique", false]], "get_symbols_unique() (pwtools.crys.structure method)": [[301, "pwtools.crys.Structure.get_symbols_unique", false]], "get_symbols_unique() (pwtools.crys.trajectory method)": [[358, "pwtools.crys.Trajectory.get_symbols_unique", false]], "get_table() (pwtools.sql.sqlitedb method)": [[1360, "pwtools.sql.SQLiteDB.get_table", false]], "get_temperature() (pwtools.crys.fakeaseatoms method)": [[246, "pwtools.crys.FakeASEAtoms.get_temperature", false]], "get_temperature() (pwtools.crys.structure method)": [[302, "pwtools.crys.Structure.get_temperature", false]], "get_temperature() (pwtools.crys.trajectory method)": [[359, "pwtools.crys.Trajectory.get_temperature", false]], "get_temperature() (pwtools.parse.cp2kdcdmdoutputfile method)": [[750, "pwtools.parse.Cp2kDcdMDOutputFile.get_temperature", false]], "get_temperature() (pwtools.parse.cp2kmdoutputfile method)": [[790, "pwtools.parse.Cp2kMDOutputFile.get_temperature", false]], "get_temperature() (pwtools.parse.cp2krelaxoutputfile method)": [[830, "pwtools.parse.Cp2kRelaxOutputFile.get_temperature", false]], "get_temperature() (pwtools.parse.cpmdmdoutputfile method)": [[908, "pwtools.parse.CpmdMDOutputFile.get_temperature", false]], "get_temperature() (pwtools.parse.lammpsdcdmdoutputfile method)": [[993, "pwtools.parse.LammpsDcdMDOutputFile.get_temperature", false]], "get_temperature() (pwtools.parse.lammpstextmdoutputfile method)": [[1034, "pwtools.parse.LammpsTextMDOutputFile.get_temperature", false]], "get_temperature() (pwtools.parse.pwmdoutputfile method)": [[1108, "pwtools.parse.PwMDOutputFile.get_temperature", false]], "get_temperature() (pwtools.parse.pwvcmdoutputfile method)": [[1189, "pwtools.parse.PwVCMDOutputFile.get_temperature", false]], "get_temperature_cell() (pwtools.parse.cpmdmdoutputfile method)": [[909, "pwtools.parse.CpmdMDOutputFile.get_temperature_cell", false]], "get_test_db() (in module pwtools.sql)": [[1367, "pwtools.sql.get_test_db", false]], "get_time() (pwtools.crys.fakeaseatoms method)": [[247, "pwtools.crys.FakeASEAtoms.get_time", false]], "get_time() (pwtools.crys.structure method)": [[303, "pwtools.crys.Structure.get_time", false]], "get_time() (pwtools.crys.trajectory method)": [[360, "pwtools.crys.Trajectory.get_time", false]], "get_timestep() (pwtools.crys.fakeaseatoms method)": [[248, "pwtools.crys.FakeASEAtoms.get_timestep", false]], "get_timestep() (pwtools.crys.structure method)": [[304, "pwtools.crys.Structure.get_timestep", false]], "get_timestep() (pwtools.crys.trajectory method)": [[361, "pwtools.crys.Trajectory.get_timestep", false]], "get_timestep() (pwtools.parse.cp2kdcdmdoutputfile method)": [[751, "pwtools.parse.Cp2kDcdMDOutputFile.get_timestep", false]], "get_timestep() (pwtools.parse.cp2kmdoutputfile method)": [[791, "pwtools.parse.Cp2kMDOutputFile.get_timestep", false]], "get_timestep() (pwtools.parse.cp2krelaxoutputfile method)": [[831, "pwtools.parse.Cp2kRelaxOutputFile.get_timestep", false]], "get_timestep() (pwtools.parse.cpmdmdoutputfile method)": [[910, "pwtools.parse.CpmdMDOutputFile.get_timestep", false]], "get_timestep() (pwtools.parse.lammpsdcdmdoutputfile method)": [[994, "pwtools.parse.LammpsDcdMDOutputFile.get_timestep", false]], "get_timestep() (pwtools.parse.lammpstextmdoutputfile method)": [[1035, "pwtools.parse.LammpsTextMDOutputFile.get_timestep", false]], "get_timestep() (pwtools.parse.pwmdoutputfile method)": [[1109, "pwtools.parse.PwMDOutputFile.get_timestep", false]], "get_timestep() (pwtools.parse.pwvcmdoutputfile method)": [[1190, "pwtools.parse.PwVCMDOutputFile.get_timestep", false]], "get_traj() (pwtools.crys.fakeaseatoms method)": [[249, "pwtools.crys.FakeASEAtoms.get_traj", false]], "get_traj() (pwtools.crys.structure method)": [[305, "pwtools.crys.Structure.get_traj", false]], "get_traj() (pwtools.crys.trajectory method)": [[362, "pwtools.crys.Trajectory.get_traj", false]], "get_traj() (pwtools.parse.cp2kdcdmdoutputfile method)": [[752, "pwtools.parse.Cp2kDcdMDOutputFile.get_traj", false]], "get_traj() (pwtools.parse.cp2kmdoutputfile method)": [[792, "pwtools.parse.Cp2kMDOutputFile.get_traj", false]], "get_traj() (pwtools.parse.cp2krelaxoutputfile method)": [[832, "pwtools.parse.Cp2kRelaxOutputFile.get_traj", false]], "get_traj() (pwtools.parse.cpmdmdoutputfile method)": [[911, "pwtools.parse.CpmdMDOutputFile.get_traj", false]], "get_traj() (pwtools.parse.lammpsdcdmdoutputfile method)": [[995, "pwtools.parse.LammpsDcdMDOutputFile.get_traj", false]], "get_traj() (pwtools.parse.lammpstextmdoutputfile method)": [[1036, "pwtools.parse.LammpsTextMDOutputFile.get_traj", false]], "get_traj() (pwtools.parse.pwmdoutputfile method)": [[1110, "pwtools.parse.PwMDOutputFile.get_traj", false]], "get_traj() (pwtools.parse.pwvcmdoutputfile method)": [[1191, "pwtools.parse.PwVCMDOutputFile.get_traj", false]], "get_traj() (pwtools.parse.trajectoryfileparser method)": [[1244, "pwtools.parse.TrajectoryFileParser.get_traj", false]], "get_typat() (pwtools.crys.fakeaseatoms method)": [[250, "pwtools.crys.FakeASEAtoms.get_typat", false]], "get_typat() (pwtools.crys.structure method)": [[306, "pwtools.crys.Structure.get_typat", false]], "get_typat() (pwtools.crys.trajectory method)": [[363, "pwtools.crys.Trajectory.get_typat", false]], "get_velocity() (pwtools.crys.fakeaseatoms method)": [[251, "pwtools.crys.FakeASEAtoms.get_velocity", false]], "get_velocity() (pwtools.crys.structure method)": [[307, "pwtools.crys.Structure.get_velocity", false]], "get_velocity() (pwtools.crys.trajectory method)": [[364, "pwtools.crys.Trajectory.get_velocity", false]], "get_velocity() (pwtools.parse.cp2kdcdmdoutputfile method)": [[753, "pwtools.parse.Cp2kDcdMDOutputFile.get_velocity", false]], "get_velocity() (pwtools.parse.cp2kmdoutputfile method)": [[793, "pwtools.parse.Cp2kMDOutputFile.get_velocity", false]], "get_velocity() (pwtools.parse.cp2krelaxoutputfile method)": [[833, "pwtools.parse.Cp2kRelaxOutputFile.get_velocity", false]], "get_velocity() (pwtools.parse.cpmdmdoutputfile method)": [[912, "pwtools.parse.CpmdMDOutputFile.get_velocity", false]], "get_velocity() (pwtools.parse.lammpsdcdmdoutputfile method)": [[996, "pwtools.parse.LammpsDcdMDOutputFile.get_velocity", false]], "get_velocity() (pwtools.parse.lammpstextmdoutputfile method)": [[1037, "pwtools.parse.LammpsTextMDOutputFile.get_velocity", false]], "get_volume() (pwtools.crys.fakeaseatoms method)": [[252, "pwtools.crys.FakeASEAtoms.get_volume", false]], "get_volume() (pwtools.crys.structure method)": [[308, "pwtools.crys.Structure.get_volume", false]], "get_volume() (pwtools.crys.trajectory method)": [[365, "pwtools.crys.Trajectory.get_volume", false]], "get_volume() (pwtools.parse.cp2kdcdmdoutputfile method)": [[754, "pwtools.parse.Cp2kDcdMDOutputFile.get_volume", false]], "get_volume() (pwtools.parse.cp2kmdoutputfile method)": [[794, "pwtools.parse.Cp2kMDOutputFile.get_volume", false]], "get_volume() (pwtools.parse.cp2krelaxoutputfile method)": [[834, "pwtools.parse.Cp2kRelaxOutputFile.get_volume", false]], "get_volume() (pwtools.parse.dcdoutputfile method)": [[967, "pwtools.parse.DcdOutputFile.get_volume", false]], "get_volume() (pwtools.parse.lammpsdcdmdoutputfile method)": [[997, "pwtools.parse.LammpsDcdMDOutputFile.get_volume", false]], "get_volume() (pwtools.parse.lammpstextmdoutputfile method)": [[1038, "pwtools.parse.LammpsTextMDOutputFile.get_volume", false]], "get_znucl() (pwtools.crys.fakeaseatoms method)": [[253, "pwtools.crys.FakeASEAtoms.get_znucl", false]], "get_znucl() (pwtools.crys.structure method)": [[309, "pwtools.crys.Structure.get_znucl", false]], "get_znucl() (pwtools.crys.trajectory method)": [[366, "pwtools.crys.Trajectory.get_znucl", false]], "get_znucl_unique() (pwtools.crys.fakeaseatoms method)": [[254, "pwtools.crys.FakeASEAtoms.get_znucl_unique", false]], "get_znucl_unique() (pwtools.crys.structure method)": [[310, "pwtools.crys.Structure.get_znucl_unique", false]], "get_znucl_unique() (pwtools.crys.trajectory method)": [[367, "pwtools.crys.Trajectory.get_znucl_unique", false]], "gibbs (class in pwtools.thermo)": [[1377, "pwtools.thermo.Gibbs", false]], "gpa (in module pwtools.constants)": [[171, "pwtools.constants.GPa", false]], "grid_in_cell() (in module pwtools.crys)": [[422, "pwtools.crys.grid_in_cell", false]], "h (in module pwtools.constants)": [[198, "pwtools.constants.h", false]], "ha (in module pwtools.constants)": [[172, "pwtools.constants.Ha", false]], "ha (in module pwtools.eos)": [[532, "pwtools.eos.Ha", false]], "ha (in module pwtools.io)": [[546, "pwtools.io.Ha", false]], "ha (in module pwtools.parse)": [[968, "pwtools.parse.Ha", false]], "ha_to_ev (in module pwtools.constants)": [[173, "pwtools.constants.Ha_to_eV", false]], "harmonicthermo (class in pwtools.thermo)": [[1382, "pwtools.thermo.HarmonicThermo", false]], "hartree (in module pwtools.constants)": [[174, "pwtools.constants.Hartree", false]], "has_column() (pwtools.sql.sqlitedb method)": [[1361, "pwtools.sql.SQLiteDB.has_column", false]], "has_table() (pwtools.sql.sqlitedb method)": [[1362, "pwtools.sql.SQLiteDB.has_table", false]], "hbar (in module pwtools.constants)": [[199, "pwtools.constants.hbar", false]], "header_comment (in module pwtools.arrayio)": [[53, "pwtools.arrayio.HEADER_COMMENT", false]], "header_dtype (in module pwtools.dcd)": [[454, "pwtools.dcd.HEADER_DTYPE", false]], "header_maxlines (in module pwtools.arrayio)": [[54, "pwtools.arrayio.HEADER_MAXLINES", false]], "header_types (in module pwtools.dcd)": [[455, "pwtools.dcd.HEADER_TYPES", false]], "hplanck (in module pwtools.constants)": [[200, "pwtools.constants.hplanck", false]], "hplanck (in module pwtools.thermo)": [[1400, "pwtools.thermo.hplanck", false]], "ibrav2cell() (in module pwtools.pwscf)": [[1275, "pwtools.pwscf.ibrav2cell", false]], "ic (in module pwtools.mpl)": [[608, "pwtools.mpl.ic", false]], "icl (in module pwtools.mpl)": [[609, "pwtools.mpl.icl", false]], "icm (in module pwtools.mpl)": [[610, "pwtools.mpl.icm", false]], "iflatten() (in module pwtools.common)": [[148, "pwtools.common.iflatten", false]], "ilc (in module pwtools.mpl)": [[611, "pwtools.mpl.ilc", false]], "im (in module pwtools.mpl)": [[612, "pwtools.mpl.im", false]], "imag (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.imag", false], [62, "pwtools.atomic_data.imag", false]], "imc (in module pwtools.mpl)": [[613, "pwtools.mpl.imc", false]], "implemented_properties (pwtools.calculators.lammps attribute)": [[107, "pwtools.calculators.Lammps.implemented_properties", false]], "implemented_properties (pwtools.calculators.pwscf attribute)": [[115, "pwtools.calculators.Pwscf.implemented_properties", false]], "infile_templ (pwtools.calculators.lammps attribute)": [[108, "pwtools.calculators.Lammps.infile_templ", false]], "infile_templ (pwtools.calculators.pwscf attribute)": [[116, "pwtools.calculators.Pwscf.infile_templ", false]], "init_attr_lst() (pwtools.base.flexiblegetters method)": [[76, "pwtools.base.FlexibleGetters.init_attr_lst", false]], "init_attr_lst() (pwtools.crys.fakeaseatoms method)": [[255, "pwtools.crys.FakeASEAtoms.init_attr_lst", false]], "init_attr_lst() (pwtools.crys.structure method)": [[311, "pwtools.crys.Structure.init_attr_lst", false]], "init_attr_lst() (pwtools.crys.trajectory method)": [[368, "pwtools.crys.Trajectory.init_attr_lst", false]], "init_attr_lst() (pwtools.crys.unitshandler method)": [[392, "pwtools.crys.UnitsHandler.init_attr_lst", false]], "init_attr_lst() (pwtools.eos.elkeosfit method)": [[486, "pwtools.eos.ElkEOSFit.init_attr_lst", false]], "init_attr_lst() (pwtools.eos.externeos method)": [[521, "pwtools.eos.ExternEOS.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.ciffile method)": [[714, "pwtools.parse.CifFile.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.cp2kdcdmdoutputfile method)": [[755, "pwtools.parse.Cp2kDcdMDOutputFile.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.cp2kmdoutputfile method)": [[795, "pwtools.parse.Cp2kMDOutputFile.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.cp2krelaxoutputfile method)": [[835, "pwtools.parse.Cp2kRelaxOutputFile.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.cp2kscfoutputfile method)": [[866, "pwtools.parse.Cp2kSCFOutputFile.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.cpmdmdoutputfile method)": [[913, "pwtools.parse.CpmdMDOutputFile.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.cpmdscfoutputfile method)": [[949, "pwtools.parse.CpmdSCFOutputFile.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.lammpsdcdmdoutputfile method)": [[998, "pwtools.parse.LammpsDcdMDOutputFile.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.lammpstextmdoutputfile method)": [[1039, "pwtools.parse.LammpsTextMDOutputFile.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.pdbfile method)": [[1068, "pwtools.parse.PDBFile.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.pwmdoutputfile method)": [[1111, "pwtools.parse.PwMDOutputFile.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.pwscfoutputfile method)": [[1148, "pwtools.parse.PwSCFOutputFile.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.pwvcmdoutputfile method)": [[1192, "pwtools.parse.PwVCMDOutputFile.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.structurefileparser method)": [[1219, "pwtools.parse.StructureFileParser.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.trajectoryfileparser method)": [[1245, "pwtools.parse.TrajectoryFileParser.init_attr_lst", false]], "init_params_from_input() (pwtools.calculators.calculatorbase method)": [[102, "pwtools.calculators.CalculatorBase.init_params_from_input", false]], "init_params_from_input() (pwtools.calculators.lammps method)": [[109, "pwtools.calculators.Lammps.init_params_from_input", false]], "init_params_from_input() (pwtools.calculators.pwscf method)": [[117, "pwtools.calculators.Pwscf.init_params_from_input", false]], "inner_points_mask() (in module pwtools.num)": [[671, "pwtools.num.inner_points_mask", false]], "int_from_txt() (in module pwtools.parse)": [[1264, "pwtools.parse.int_from_txt", false]], "interpol2d (class in pwtools.num)": [[648, "pwtools.num.Interpol2D", false]], "invsplev() (pwtools.num.spline method)": [[661, "pwtools.num.Spline.invsplev", false]], "is_mono() (pwtools.eos.eosfit method)": [[503, "pwtools.eos.EosFit.is_mono", false]], "is_mono() (pwtools.num.fit1d method)": [[647, "pwtools.num.Fit1D.is_mono", false]], "is_mono() (pwtools.num.polyfit1d method)": [[656, "pwtools.num.PolyFit1D.is_mono", false]], "is_mono() (pwtools.num.spline method)": [[662, "pwtools.num.Spline.is_mono", false]], "is_same_struct() (in module pwtools.symmetry)": [[1372, "pwtools.symmetry.is_same_struct", false]], "is_seq() (in module pwtools.common)": [[149, "pwtools.common.is_seq", false]], "is_set_attr() (pwtools.base.flexiblegetters method)": [[77, "pwtools.base.FlexibleGetters.is_set_attr", false]], "is_set_attr() (pwtools.crys.fakeaseatoms method)": [[256, "pwtools.crys.FakeASEAtoms.is_set_attr", false]], "is_set_attr() (pwtools.crys.structure method)": [[312, "pwtools.crys.Structure.is_set_attr", false]], "is_set_attr() (pwtools.crys.trajectory method)": [[369, "pwtools.crys.Trajectory.is_set_attr", false]], "is_set_attr() (pwtools.crys.unitshandler method)": [[393, "pwtools.crys.UnitsHandler.is_set_attr", false]], "is_set_attr() (pwtools.eos.elkeosfit method)": [[487, "pwtools.eos.ElkEOSFit.is_set_attr", false]], "is_set_attr() (pwtools.eos.externeos method)": [[522, "pwtools.eos.ExternEOS.is_set_attr", false]], "is_set_attr() (pwtools.parse.ciffile method)": [[715, "pwtools.parse.CifFile.is_set_attr", false]], "is_set_attr() (pwtools.parse.cp2kdcdmdoutputfile method)": [[756, "pwtools.parse.Cp2kDcdMDOutputFile.is_set_attr", false]], "is_set_attr() (pwtools.parse.cp2kmdoutputfile method)": [[796, "pwtools.parse.Cp2kMDOutputFile.is_set_attr", false]], "is_set_attr() (pwtools.parse.cp2krelaxoutputfile method)": [[836, "pwtools.parse.Cp2kRelaxOutputFile.is_set_attr", false]], "is_set_attr() (pwtools.parse.cp2kscfoutputfile method)": [[867, "pwtools.parse.Cp2kSCFOutputFile.is_set_attr", false]], "is_set_attr() (pwtools.parse.cpmdmdoutputfile method)": [[914, "pwtools.parse.CpmdMDOutputFile.is_set_attr", false]], "is_set_attr() (pwtools.parse.cpmdscfoutputfile method)": [[950, "pwtools.parse.CpmdSCFOutputFile.is_set_attr", false]], "is_set_attr() (pwtools.parse.lammpsdcdmdoutputfile method)": [[999, "pwtools.parse.LammpsDcdMDOutputFile.is_set_attr", false]], "is_set_attr() (pwtools.parse.lammpstextmdoutputfile method)": [[1040, "pwtools.parse.LammpsTextMDOutputFile.is_set_attr", false]], "is_set_attr() (pwtools.parse.pdbfile method)": [[1069, "pwtools.parse.PDBFile.is_set_attr", false]], "is_set_attr() (pwtools.parse.pwmdoutputfile method)": [[1112, "pwtools.parse.PwMDOutputFile.is_set_attr", false]], "is_set_attr() (pwtools.parse.pwscfoutputfile method)": [[1149, "pwtools.parse.PwSCFOutputFile.is_set_attr", false]], "is_set_attr() (pwtools.parse.pwvcmdoutputfile method)": [[1193, "pwtools.parse.PwVCMDOutputFile.is_set_attr", false]], "is_set_attr() (pwtools.parse.structurefileparser method)": [[1220, "pwtools.parse.StructureFileParser.is_set_attr", false]], "is_set_attr() (pwtools.parse.trajectoryfileparser method)": [[1246, "pwtools.parse.TrajectoryFileParser.is_set_attr", false]], "is_set_attr_lst() (pwtools.base.flexiblegetters method)": [[78, "pwtools.base.FlexibleGetters.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.crys.fakeaseatoms method)": [[257, "pwtools.crys.FakeASEAtoms.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.crys.structure method)": [[313, "pwtools.crys.Structure.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.crys.trajectory method)": [[370, "pwtools.crys.Trajectory.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.crys.unitshandler method)": [[394, "pwtools.crys.UnitsHandler.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.eos.elkeosfit method)": [[488, "pwtools.eos.ElkEOSFit.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.eos.externeos method)": [[523, "pwtools.eos.ExternEOS.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.ciffile method)": [[716, "pwtools.parse.CifFile.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.cp2kdcdmdoutputfile method)": [[757, "pwtools.parse.Cp2kDcdMDOutputFile.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.cp2kmdoutputfile method)": [[797, "pwtools.parse.Cp2kMDOutputFile.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.cp2krelaxoutputfile method)": [[837, "pwtools.parse.Cp2kRelaxOutputFile.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.cp2kscfoutputfile method)": [[868, "pwtools.parse.Cp2kSCFOutputFile.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.cpmdmdoutputfile method)": [[915, "pwtools.parse.CpmdMDOutputFile.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.cpmdscfoutputfile method)": [[951, "pwtools.parse.CpmdSCFOutputFile.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.lammpsdcdmdoutputfile method)": [[1000, "pwtools.parse.LammpsDcdMDOutputFile.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.lammpstextmdoutputfile method)": [[1041, "pwtools.parse.LammpsTextMDOutputFile.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.pdbfile method)": [[1070, "pwtools.parse.PDBFile.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.pwmdoutputfile method)": [[1113, "pwtools.parse.PwMDOutputFile.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.pwscfoutputfile method)": [[1150, "pwtools.parse.PwSCFOutputFile.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.pwvcmdoutputfile method)": [[1194, "pwtools.parse.PwVCMDOutputFile.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.structurefileparser method)": [[1221, "pwtools.parse.StructureFileParser.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.trajectoryfileparser method)": [[1247, "pwtools.parse.TrajectoryFileParser.is_set_attr_lst", false]], "is_struct (pwtools.crys.fakeaseatoms attribute)": [[258, "pwtools.crys.FakeASEAtoms.is_struct", false]], "is_struct (pwtools.crys.structure attribute)": [[314, "pwtools.crys.Structure.is_struct", false]], "is_struct (pwtools.crys.trajectory attribute)": [[371, "pwtools.crys.Trajectory.is_struct", false]], "is_traj (pwtools.crys.fakeaseatoms attribute)": [[259, "pwtools.crys.FakeASEAtoms.is_traj", false]], "is_traj (pwtools.crys.structure attribute)": [[315, "pwtools.crys.Structure.is_traj", false]], "is_traj (pwtools.crys.trajectory attribute)": [[372, "pwtools.crys.Trajectory.is_traj", false]], "isochoric_heat_capacity() (pwtools.thermo.harmonicthermo method)": [[1386, "pwtools.thermo.HarmonicThermo.isochoric_heat_capacity", false]], "itemsize (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.itemsize", false], [62, "pwtools.atomic_data.itemsize", false]], "iter_colors (in module pwtools.mpl)": [[614, "pwtools.mpl.iter_colors", false]], "iter_colors_linestyles (in module pwtools.mpl)": [[615, "pwtools.mpl.iter_colors_linestyles", false]], "iter_colors_markers (in module pwtools.mpl)": [[616, "pwtools.mpl.iter_colors_markers", false]], "iter_linestyles (in module pwtools.mpl)": [[617, "pwtools.mpl.iter_linestyles", false]], "iter_linestyles_colors (in module pwtools.mpl)": [[618, "pwtools.mpl.iter_linestyles_colors", false]], "iter_markers (in module pwtools.mpl)": [[619, "pwtools.mpl.iter_markers", false]], "iter_markers_colors (in module pwtools.mpl)": [[620, "pwtools.mpl.iter_markers_colors", false]], "j_to_ev (in module pwtools.constants)": [[175, "pwtools.constants.J_to_eV", false]], "j_to_rcm (in module pwtools.constants)": [[176, "pwtools.constants.J_to_rcm", false]], "jax_mode (in module pwtools.rbf.core)": [[1300, "pwtools.rbf.core.JAX_MODE", false]], "jit() (in module pwtools.rbf.core)": [[1312, "pwtools.rbf.core.jit", false]], "kb (in module pwtools.constants)": [[201, "pwtools.constants.kb", false]], "kb (in module pwtools.mttk)": [[637, "pwtools.mttk.kb", false]], "kb (in module pwtools.thermo)": [[1401, "pwtools.thermo.kb", false]], "kgrid() (in module pwtools.crys)": [[423, "pwtools.crys.kgrid", false]], "kpath() (in module pwtools.kpath)": [[574, "pwtools.kpath.kpath", false]], "kpoints_str() (in module pwtools.pwscf)": [[1276, "pwtools.pwscf.kpoints_str", false]], "kpoints_str_pwin() (in module pwtools.pwscf)": [[1277, "pwtools.pwscf.kpoints_str_pwin", false]], "kpoints_str_pwin_full() (in module pwtools.pwscf)": [[1278, "pwtools.pwscf.kpoints_str_pwin_full", false]], "kpointstr() (in module pwtools.pwscf)": [[1279, "pwtools.pwscf.kpointstr", false]], "kpointstr_pwin() (in module pwtools.pwscf)": [[1280, "pwtools.pwscf.kpointstr_pwin", false]], "kpointstr_pwin2() (in module pwtools.pwscf)": [[1281, "pwtools.pwscf.kpointstr_pwin2", false]], "kpts2mp() (in module pwtools.calculators)": [[122, "pwtools.calculators.kpts2mp", false]], "lammps (class in pwtools.calculators)": [[104, "pwtools.calculators.Lammps", false]], "lammpsdcdmdoutputfile (class in pwtools.parse)": [[969, "pwtools.parse.LammpsDcdMDOutputFile", false]], "lammpstextmdoutputfile (class in pwtools.parse)": [[1011, "pwtools.parse.LammpsTextMDOutputFile", false]], "lazyprop (class in pwtools.decorators)": [[461, "pwtools.decorators.lazyprop", false]], "legend() (pwtools.mpl.plot method)": [[585, "pwtools.mpl.Plot.legend", false]], "linestyles (in module pwtools.mpl)": [[621, "pwtools.mpl.linestyles", false]], "linestyles_colors (in module pwtools.mpl)": [[622, "pwtools.mpl.linestyles_colors", false]], "load() (pwtools.base.flexiblegetters method)": [[79, "pwtools.base.FlexibleGetters.load", false]], "load() (pwtools.crys.fakeaseatoms method)": [[260, "pwtools.crys.FakeASEAtoms.load", false]], "load() (pwtools.crys.structure method)": [[316, "pwtools.crys.Structure.load", false]], "load() (pwtools.crys.trajectory method)": [[373, "pwtools.crys.Trajectory.load", false]], "load() (pwtools.crys.unitshandler method)": [[395, "pwtools.crys.UnitsHandler.load", false]], "load() (pwtools.eos.elkeosfit method)": [[489, "pwtools.eos.ElkEOSFit.load", false]], "load() (pwtools.eos.externeos method)": [[524, "pwtools.eos.ExternEOS.load", false]], "load() (pwtools.parse.ciffile method)": [[717, "pwtools.parse.CifFile.load", false]], "load() (pwtools.parse.cp2kdcdmdoutputfile method)": [[758, "pwtools.parse.Cp2kDcdMDOutputFile.load", false]], "load() (pwtools.parse.cp2kmdoutputfile method)": [[798, "pwtools.parse.Cp2kMDOutputFile.load", false]], "load() (pwtools.parse.cp2krelaxoutputfile method)": [[838, "pwtools.parse.Cp2kRelaxOutputFile.load", false]], "load() (pwtools.parse.cp2kscfoutputfile method)": [[869, "pwtools.parse.Cp2kSCFOutputFile.load", false]], "load() (pwtools.parse.cpmdmdoutputfile method)": [[916, "pwtools.parse.CpmdMDOutputFile.load", false]], "load() (pwtools.parse.cpmdscfoutputfile method)": [[952, "pwtools.parse.CpmdSCFOutputFile.load", false]], "load() (pwtools.parse.lammpsdcdmdoutputfile method)": [[1001, "pwtools.parse.LammpsDcdMDOutputFile.load", false]], "load() (pwtools.parse.lammpstextmdoutputfile method)": [[1042, "pwtools.parse.LammpsTextMDOutputFile.load", false]], "load() (pwtools.parse.pdbfile method)": [[1071, "pwtools.parse.PDBFile.load", false]], "load() (pwtools.parse.pwmdoutputfile method)": [[1114, "pwtools.parse.PwMDOutputFile.load", false]], "load() (pwtools.parse.pwscfoutputfile method)": [[1151, "pwtools.parse.PwSCFOutputFile.load", false]], "load() (pwtools.parse.pwvcmdoutputfile method)": [[1195, "pwtools.parse.PwVCMDOutputFile.load", false]], "load() (pwtools.parse.structurefileparser method)": [[1222, "pwtools.parse.StructureFileParser.load", false]], "load() (pwtools.parse.trajectoryfileparser method)": [[1248, "pwtools.parse.TrajectoryFileParser.load", false]], "load_h5() (in module pwtools.io)": [[549, "pwtools.io.load_h5", false]], "lorentz() (in module pwtools.signal)": [[1334, "pwtools.signal.lorentz", false]], "lst2dct() (pwtools.eos.evfunction method)": [[470, "pwtools.eos.EVFunction.lst2dct", false]], "lst2dct() (pwtools.eos.vinet method)": [[540, "pwtools.eos.Vinet.lst2dct", false]], "m0 (in module pwtools.constants)": [[202, "pwtools.constants.m0", false]], "m0 (in module pwtools.mttk)": [[638, "pwtools.mttk.m0", false]], "machine (class in pwtools.batch)": [[93, "pwtools.batch.Machine", false]], "make_axes_grid_fig() (in module pwtools.mpl)": [[623, "pwtools.mpl.make_axes_grid_fig", false]], "makedb() (in module pwtools.sql)": [[1368, "pwtools.sql.makedb", false]], "makedirs() (in module pwtools.common)": [[150, "pwtools.common.makedirs", false]], "markers (in module pwtools.mpl)": [[624, "pwtools.mpl.markers", false]], "markers_colors (in module pwtools.mpl)": [[625, "pwtools.mpl.markers_colors", false]], "masses (in module pwtools.atomic_data)": [[62, "pwtools.atomic_data.masses", false]], "match_mask() (in module pwtools.num)": [[672, "pwtools.num.match_mask", false]], "maxderivexception": [[533, "pwtools.eos.MaxDerivException", false]], "mean() (in module pwtools.crys)": [[424, "pwtools.crys.mean", false]], "meshgridt() (in module pwtools.mpl)": [[626, "pwtools.mpl.meshgridt", false]], "meshgridt() (in module pwtools.num)": [[673, "pwtools.num.meshgridt", false]], "min_image_convention() (in module pwtools.crys)": [[425, "pwtools.crys.min_image_convention", false]], "mirror() (in module pwtools.signal)": [[1335, "pwtools.signal.mirror", false]], "missing (in module pwtools.atomic_data)": [[63, "pwtools.atomic_data.missing", false]], "mix() (in module pwtools.crys)": [[426, "pwtools.crys.mix", false]], "module": [[0, "module-pwtools._dcd", false], [1, "module-pwtools._flib", false], [2, "module-pwtools.arrayio", false], [3, "module-pwtools.atomic_data", false], [4, "module-pwtools.base", false], [5, "module-pwtools.batch", false], [6, "module-pwtools.calculators", false], [7, "module-pwtools.comb", false], [8, "module-pwtools.common", false], [9, "module-pwtools.config", false], [10, "module-pwtools.constants", false], [11, "module-pwtools.crys", false], [12, "module-pwtools.dcd", false], [13, "module-pwtools.decorators", false], [14, "module-pwtools.eos", false], [15, "module-pwtools.io", false], [16, "module-pwtools.kpath", false], [17, "module-pwtools.lammps", false], [18, "module-pwtools.mpl", false], [19, "module-pwtools.mttk", false], [20, "module-pwtools.num", false], [21, "module-pwtools.parse", false], [22, "module-pwtools.pwscf", false], [23, "module-pwtools.pydos", false], [24, "module-pwtools.random", false], [25, "module-pwtools.rbf.core", false], [26, "module-pwtools.rbf.hyperopt", false], [27, "module-pwtools.regex", false], [28, "module-pwtools.signal", false], [29, "module-pwtools.sql", false], [30, "module-pwtools.symmetry", false], [31, "module-pwtools.thermo", false], [32, "module-pwtools.timer", false], [33, "module-pwtools.verbose", false], [34, "module-pwtools.visualize", false]], "mu0 (in module pwtools.constants)": [[203, "pwtools.constants.mu0", false]], "name (in module pwtools.config)": [[163, "pwtools.config.name", false]], "nbytes (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.nbytes", false], [62, "pwtools.atomic_data.nbytes", false]], "nd (pwtools.num.datand attribute)": [[640, "pwtools.num.DataND.nd", false]], "ndim (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.ndim", false], [62, "pwtools.atomic_data.ndim", false]], "nearest_neighbors() (in module pwtools.crys)": [[427, "pwtools.crys.nearest_neighbors", false]], "nearest_neighbors_from_dists() (in module pwtools.crys)": [[428, "pwtools.crys.nearest_neighbors_from_dists", false]], "nearest_neighbors_struct() (in module pwtools.crys)": [[429, "pwtools.crys.nearest_neighbors_struct", false]], "nested_loops() (in module pwtools.comb)": [[125, "pwtools.comb.nested_loops", false]], "new_axis() (in module pwtools.mpl)": [[627, "pwtools.mpl.new_axis", false]], "norm() (in module pwtools.num)": [[674, "pwtools.num.norm", false]], "norm_int() (in module pwtools.num)": [[675, "pwtools.num.norm_int", false]], "normalize() (in module pwtools.num)": [[676, "pwtools.num.normalize", false]], "nstep_from_txt() (in module pwtools.parse)": [[1265, "pwtools.parse.nstep_from_txt", false]], "numbers (in module pwtools.atomic_data)": [[64, "pwtools.atomic_data.numbers", false]], "odd() (in module pwtools.signal)": [[1336, "pwtools.signal.odd", false]], "open_and_close() (in module pwtools.decorators)": [[462, "pwtools.decorators.open_and_close", false]], "open_file (in module pwtools._dcd)": [[37, "pwtools._dcd.open_file", false]], "order_similar() (in module pwtools.num)": [[677, "pwtools.num.order_similar", false]], "p() (pwtools.timer.tagtimer method)": [[1404, "pwtools.timer.TagTimer.p", false]], "pad_zeros() (in module pwtools.signal)": [[1337, "pwtools.signal.pad_zeros", false]], "parameterstudy (class in pwtools.batch)": [[96, "pwtools.batch.ParameterStudy", false]], "parse() (pwtools.parse.ciffile method)": [[718, "pwtools.parse.CifFile.parse", false]], "parse() (pwtools.parse.cp2kdcdmdoutputfile method)": [[759, "pwtools.parse.Cp2kDcdMDOutputFile.parse", false]], "parse() (pwtools.parse.cp2kmdoutputfile method)": [[799, "pwtools.parse.Cp2kMDOutputFile.parse", false]], "parse() (pwtools.parse.cp2krelaxoutputfile method)": [[839, "pwtools.parse.Cp2kRelaxOutputFile.parse", false]], "parse() (pwtools.parse.cp2kscfoutputfile method)": [[870, "pwtools.parse.Cp2kSCFOutputFile.parse", false]], "parse() (pwtools.parse.cpmdmdoutputfile method)": [[917, "pwtools.parse.CpmdMDOutputFile.parse", false]], "parse() (pwtools.parse.cpmdscfoutputfile method)": [[953, "pwtools.parse.CpmdSCFOutputFile.parse", false]], "parse() (pwtools.parse.lammpsdcdmdoutputfile method)": [[1002, "pwtools.parse.LammpsDcdMDOutputFile.parse", false]], "parse() (pwtools.parse.lammpstextmdoutputfile method)": [[1043, "pwtools.parse.LammpsTextMDOutputFile.parse", false]], "parse() (pwtools.parse.pdbfile method)": [[1072, "pwtools.parse.PDBFile.parse", false]], "parse() (pwtools.parse.pwmdoutputfile method)": [[1115, "pwtools.parse.PwMDOutputFile.parse", false]], "parse() (pwtools.parse.pwscfoutputfile method)": [[1152, "pwtools.parse.PwSCFOutputFile.parse", false]], "parse() (pwtools.parse.pwvcmdoutputfile method)": [[1196, "pwtools.parse.PwVCMDOutputFile.parse", false]], "parse() (pwtools.parse.structurefileparser method)": [[1223, "pwtools.parse.StructureFileParser.parse", false]], "parse() (pwtools.parse.trajectoryfileparser method)": [[1249, "pwtools.parse.TrajectoryFileParser.parse", false]], "particle_nhc_masses() (in module pwtools.mttk)": [[639, "pwtools.mttk.particle_nhc_masses", false]], "pbc_wrap() (in module pwtools.crys)": [[430, "pwtools.crys.pbc_wrap", false]], "pbc_wrap_coords() (in module pwtools.crys)": [[431, "pwtools.crys.pbc_wrap_coords", false]], "pdbfile (class in pwtools.parse)": [[1052, "pwtools.parse.PDBFile", false]], "pdos() (in module pwtools.pydos)": [[1291, "pwtools.pydos.pdos", false]], "permit_sigpipe() (in module pwtools.common)": [[151, "pwtools.common.permit_sigpipe", false]], "pi (in module pwtools.constants)": [[204, "pwtools.constants.pi", false]], "pi (in module pwtools.crys)": [[432, "pwtools.crys.pi", false]], "pi (in module pwtools.num)": [[678, "pwtools.num.pi", false]], "pi (in module pwtools.parse)": [[1266, "pwtools.parse.pi", false]], "pi (in module pwtools.random)": [[1298, "pwtools.random.pi", false]], "pi (in module pwtools.thermo)": [[1402, "pwtools.thermo.pi", false]], "plot (class in pwtools.mpl)": [[583, "pwtools.mpl.Plot", false]], "plot_dis() (in module pwtools.kpath)": [[575, "pwtools.kpath.plot_dis", false]], "plotlines3d() (in module pwtools.mpl)": [[628, "pwtools.mpl.plotlines3d", false]], "poly_powers() (in module pwtools.num)": [[679, "pwtools.num.poly_powers", false]], "poly_str() (in module pwtools.num)": [[680, "pwtools.num.poly_str", false]], "polyfit (class in pwtools.num)": [[650, "pwtools.num.PolyFit", false]], "polyfit() (in module pwtools.num)": [[681, "pwtools.num.polyfit", false]], "polyfit1d (class in pwtools.num)": [[652, "pwtools.num.PolyFit1D", false]], "polyval() (in module pwtools.num)": [[682, "pwtools.num.polyval", false]], "pop_from_list() (in module pwtools.common)": [[152, "pwtools.common.pop_from_list", false]], "populated_attrs() (in module pwtools.crys)": [[433, "pwtools.crys.populated_attrs", false]], "predict() (pwtools.rbf.core.rbf method)": [[1308, "pwtools.rbf.core.Rbf.predict", false]], "prepare_plots() (in module pwtools.mpl)": [[629, "pwtools.mpl.prepare_plots", false]], "pressure() (pwtools.eos.eosfit method)": [[504, "pwtools.eos.EosFit.pressure", false]], "print_dct() (in module pwtools.common)": [[153, "pwtools.common.print_dct", false]], "ps (in module pwtools.constants)": [[205, "pwtools.constants.ps", false]], "ps (in module pwtools.parse)": [[1267, "pwtools.parse.ps", false]], "pt (in module pwtools.atomic_data)": [[65, "pwtools.atomic_data.pt", false]], "pt() (pwtools.timer.tagtimer method)": [[1405, "pwtools.timer.TagTimer.pt", false]], "pwmdoutputfile (class in pwtools.parse)": [[1080, "pwtools.parse.PwMDOutputFile", false]], "pwscf (class in pwtools.calculators)": [[112, "pwtools.calculators.Pwscf", false]], "pwscfoutputfile (class in pwtools.parse)": [[1124, "pwtools.parse.PwSCFOutputFile", false]], "pwtools._dcd": [[0, "module-pwtools._dcd", false]], "pwtools._flib": [[1, "module-pwtools._flib", false]], "pwtools.arrayio": [[2, "module-pwtools.arrayio", false]], "pwtools.atomic_data": [[3, "module-pwtools.atomic_data", false]], "pwtools.base": [[4, "module-pwtools.base", false]], "pwtools.batch": [[5, "module-pwtools.batch", false]], "pwtools.calculators": [[6, "module-pwtools.calculators", false]], "pwtools.comb": [[7, "module-pwtools.comb", false]], "pwtools.common": [[8, "module-pwtools.common", false]], "pwtools.config": [[9, "module-pwtools.config", false]], "pwtools.constants": [[10, "module-pwtools.constants", false]], "pwtools.crys": [[11, "module-pwtools.crys", false]], "pwtools.dcd": [[12, "module-pwtools.dcd", false]], "pwtools.decorators": [[13, "module-pwtools.decorators", false]], "pwtools.eos": [[14, "module-pwtools.eos", false]], "pwtools.io": [[15, "module-pwtools.io", false]], "pwtools.kpath": [[16, "module-pwtools.kpath", false]], "pwtools.lammps": [[17, "module-pwtools.lammps", false]], "pwtools.mpl": [[18, "module-pwtools.mpl", false]], "pwtools.mttk": [[19, "module-pwtools.mttk", false]], "pwtools.num": [[20, "module-pwtools.num", false]], "pwtools.parse": [[21, "module-pwtools.parse", false]], "pwtools.pwscf": [[22, "module-pwtools.pwscf", false]], "pwtools.pydos": [[23, "module-pwtools.pydos", false]], "pwtools.random": [[24, "module-pwtools.random", false]], "pwtools.rbf.core": [[25, "module-pwtools.rbf.core", false]], "pwtools.rbf.hyperopt": [[26, "module-pwtools.rbf.hyperopt", false]], "pwtools.regex": [[27, "module-pwtools.regex", false]], "pwtools.signal": [[28, "module-pwtools.signal", false]], "pwtools.sql": [[29, "module-pwtools.sql", false]], "pwtools.symmetry": [[30, "module-pwtools.symmetry", false]], "pwtools.thermo": [[31, "module-pwtools.thermo", false]], "pwtools.timer": [[32, "module-pwtools.timer", false]], "pwtools.verbose": [[33, "module-pwtools.verbose", false]], "pwtools.visualize": [[34, "module-pwtools.visualize", false]], "pwvcmdoutputfile (class in pwtools.parse)": [[1160, "pwtools.parse.PwVCMDOutputFile", false]], "pyvacf() (in module pwtools.pydos)": [[1292, "pwtools.pydos.pyvacf", false]], "r (in module pwtools.constants)": [[177, "pwtools.constants.R", false]], "r (in module pwtools.thermo)": [[1391, "pwtools.thermo.R", false]], "random_struct() (in module pwtools.random)": [[1299, "pwtools.random.random_struct", false]], "randomstructure (class in pwtools.random)": [[1294, "pwtools.random.RandomStructure", false]], "randomstructurefail": [[1297, "pwtools.random.RandomStructureFail", false]], "raw_return() (pwtools.base.flexiblegetters method)": [[80, "pwtools.base.FlexibleGetters.raw_return", false]], "raw_return() (pwtools.crys.fakeaseatoms method)": [[261, "pwtools.crys.FakeASEAtoms.raw_return", false]], "raw_return() (pwtools.crys.structure method)": [[317, "pwtools.crys.Structure.raw_return", false]], "raw_return() (pwtools.crys.trajectory method)": [[374, "pwtools.crys.Trajectory.raw_return", false]], "raw_return() (pwtools.crys.unitshandler method)": [[396, "pwtools.crys.UnitsHandler.raw_return", false]], "raw_return() (pwtools.eos.elkeosfit method)": [[490, "pwtools.eos.ElkEOSFit.raw_return", false]], "raw_return() (pwtools.eos.externeos method)": [[525, "pwtools.eos.ExternEOS.raw_return", false]], "raw_return() (pwtools.parse.ciffile method)": [[719, "pwtools.parse.CifFile.raw_return", false]], "raw_return() (pwtools.parse.cp2kdcdmdoutputfile method)": [[760, "pwtools.parse.Cp2kDcdMDOutputFile.raw_return", false]], "raw_return() (pwtools.parse.cp2kmdoutputfile method)": [[800, "pwtools.parse.Cp2kMDOutputFile.raw_return", false]], "raw_return() (pwtools.parse.cp2krelaxoutputfile method)": [[840, "pwtools.parse.Cp2kRelaxOutputFile.raw_return", false]], "raw_return() (pwtools.parse.cp2kscfoutputfile method)": [[871, "pwtools.parse.Cp2kSCFOutputFile.raw_return", false]], "raw_return() (pwtools.parse.cpmdmdoutputfile method)": [[918, "pwtools.parse.CpmdMDOutputFile.raw_return", false]], "raw_return() (pwtools.parse.cpmdscfoutputfile method)": [[954, "pwtools.parse.CpmdSCFOutputFile.raw_return", false]], "raw_return() (pwtools.parse.lammpsdcdmdoutputfile method)": [[1003, "pwtools.parse.LammpsDcdMDOutputFile.raw_return", false]], "raw_return() (pwtools.parse.lammpstextmdoutputfile method)": [[1044, "pwtools.parse.LammpsTextMDOutputFile.raw_return", false]], "raw_return() (pwtools.parse.pdbfile method)": [[1073, "pwtools.parse.PDBFile.raw_return", false]], "raw_return() (pwtools.parse.pwmdoutputfile method)": [[1116, "pwtools.parse.PwMDOutputFile.raw_return", false]], "raw_return() (pwtools.parse.pwscfoutputfile method)": [[1153, "pwtools.parse.PwSCFOutputFile.raw_return", false]], "raw_return() (pwtools.parse.pwvcmdoutputfile method)": [[1197, "pwtools.parse.PwVCMDOutputFile.raw_return", false]], "raw_return() (pwtools.parse.structurefileparser method)": [[1224, "pwtools.parse.StructureFileParser.raw_return", false]], "raw_return() (pwtools.parse.trajectoryfileparser method)": [[1250, "pwtools.parse.TrajectoryFileParser.raw_return", false]], "raw_slice_get() (pwtools.base.flexiblegetters method)": [[81, "pwtools.base.FlexibleGetters.raw_slice_get", false]], "raw_slice_get() (pwtools.crys.fakeaseatoms method)": [[262, "pwtools.crys.FakeASEAtoms.raw_slice_get", false]], "raw_slice_get() (pwtools.crys.structure method)": [[318, "pwtools.crys.Structure.raw_slice_get", false]], "raw_slice_get() (pwtools.crys.trajectory method)": [[375, "pwtools.crys.Trajectory.raw_slice_get", false]], "raw_slice_get() (pwtools.crys.unitshandler method)": [[397, "pwtools.crys.UnitsHandler.raw_slice_get", false]], "raw_slice_get() (pwtools.eos.elkeosfit method)": [[491, "pwtools.eos.ElkEOSFit.raw_slice_get", false]], "raw_slice_get() (pwtools.eos.externeos method)": [[526, "pwtools.eos.ExternEOS.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.ciffile method)": [[720, "pwtools.parse.CifFile.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.cp2kdcdmdoutputfile method)": [[761, "pwtools.parse.Cp2kDcdMDOutputFile.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.cp2kmdoutputfile method)": [[801, "pwtools.parse.Cp2kMDOutputFile.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.cp2krelaxoutputfile method)": [[841, "pwtools.parse.Cp2kRelaxOutputFile.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.cp2kscfoutputfile method)": [[872, "pwtools.parse.Cp2kSCFOutputFile.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.cpmdmdoutputfile method)": [[919, "pwtools.parse.CpmdMDOutputFile.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.cpmdscfoutputfile method)": [[955, "pwtools.parse.CpmdSCFOutputFile.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.lammpsdcdmdoutputfile method)": [[1004, "pwtools.parse.LammpsDcdMDOutputFile.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.lammpstextmdoutputfile method)": [[1045, "pwtools.parse.LammpsTextMDOutputFile.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.pdbfile method)": [[1074, "pwtools.parse.PDBFile.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.pwmdoutputfile method)": [[1117, "pwtools.parse.PwMDOutputFile.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.pwscfoutputfile method)": [[1154, "pwtools.parse.PwSCFOutputFile.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.pwvcmdoutputfile method)": [[1198, "pwtools.parse.PwVCMDOutputFile.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.structurefileparser method)": [[1225, "pwtools.parse.StructureFileParser.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.trajectoryfileparser method)": [[1251, "pwtools.parse.TrajectoryFileParser.raw_slice_get", false]], "rbf (class in pwtools.rbf.core)": [[1301, "pwtools.rbf.core.Rbf", false]], "rbf_dct (in module pwtools.rbf.core)": [[1313, "pwtools.rbf.core.rbf_dct", false]], "rbf_gauss() (in module pwtools.rbf.core)": [[1314, "pwtools.rbf.core.rbf_gauss", false]], "rbf_inv_multi() (in module pwtools.rbf.core)": [[1315, "pwtools.rbf.core.rbf_inv_multi", false]], "rbf_multi() (in module pwtools.rbf.core)": [[1316, "pwtools.rbf.core.rbf_multi", false]], "rcm_to_hz (in module pwtools.constants)": [[206, "pwtools.constants.rcm_to_Hz", false]], "read_all_dyn() (in module pwtools.pwscf)": [[1282, "pwtools.pwscf.read_all_dyn", false]], "read_cif (in module pwtools.io)": [[550, "pwtools.io.read_cif", false]], "read_cp2k_md (in module pwtools.io)": [[551, "pwtools.io.read_cp2k_md", false]], "read_cp2k_md_dcd (in module pwtools.io)": [[552, "pwtools.io.read_cp2k_md_dcd", false]], "read_cp2k_relax (in module pwtools.io)": [[553, "pwtools.io.read_cp2k_relax", false]], "read_cp2k_scf (in module pwtools.io)": [[554, "pwtools.io.read_cp2k_scf", false]], "read_cpmd_md (in module pwtools.io)": [[555, "pwtools.io.read_cpmd_md", false]], "read_cpmd_scf (in module pwtools.io)": [[556, "pwtools.io.read_cpmd_scf", false]], "read_dcd_data (in module pwtools._dcd)": [[38, "pwtools._dcd.read_dcd_data", false]], "read_dcd_data() (in module pwtools.dcd)": [[456, "pwtools.dcd.read_dcd_data", false]], "read_dcd_data_f() (in module pwtools.dcd)": [[457, "pwtools.dcd.read_dcd_data_f", false]], "read_dcd_data_from_unit (in module pwtools._dcd)": [[39, "pwtools._dcd.read_dcd_data_from_unit", false]], "read_dcd_data_ref() (in module pwtools.dcd)": [[458, "pwtools.dcd.read_dcd_data_ref", false]], "read_dcd_header() (in module pwtools.dcd)": [[459, "pwtools.dcd.read_dcd_header", false]], "read_dcd_header_from_unit (in module pwtools._dcd)": [[40, "pwtools._dcd.read_dcd_header_from_unit", false]], "read_dyn() (in module pwtools.pwscf)": [[1283, "pwtools.pwscf.read_dyn", false]], "read_dynmat() (in module pwtools.pwscf)": [[1284, "pwtools.pwscf.read_dynmat", false]], "read_dynmat_ir_raman() (in module pwtools.pwscf)": [[1285, "pwtools.pwscf.read_dynmat_ir_raman", false]], "read_dynmat_out() (in module pwtools.pwscf)": [[1286, "pwtools.pwscf.read_dynmat_out", false]], "read_h5() (in module pwtools.io)": [[557, "pwtools.io.read_h5", false]], "read_lammps_md_dcd (in module pwtools.io)": [[558, "pwtools.io.read_lammps_md_dcd", false]], "read_lammps_md_txt (in module pwtools.io)": [[559, "pwtools.io.read_lammps_md_txt", false]], "read_matdyn_freq() (in module pwtools.pwscf)": [[1287, "pwtools.pwscf.read_matdyn_freq", false]], "read_matdyn_modes() (in module pwtools.pwscf)": [[1288, "pwtools.pwscf.read_matdyn_modes", false]], "read_pdb (in module pwtools.io)": [[560, "pwtools.io.read_pdb", false]], "read_pickle() (in module pwtools.io)": [[561, "pwtools.io.read_pickle", false]], "read_pw_md (in module pwtools.io)": [[562, "pwtools.io.read_pw_md", false]], "read_pw_scf (in module pwtools.io)": [[563, "pwtools.io.read_pw_scf", false]], "read_pw_vcmd (in module pwtools.io)": [[564, "pwtools.io.read_pw_vcmd", false]], "read_results() (pwtools.calculators.lammps method)": [[110, "pwtools.calculators.Lammps.read_results", false]], "read_results() (pwtools.calculators.pwscf method)": [[118, "pwtools.calculators.Pwscf.read_results", false]], "readfactory (class in pwtools.io)": [[547, "pwtools.io.ReadFactory", false]], "readtxt() (in module pwtools.arrayio)": [[59, "pwtools.arrayio.readtxt", false]], "real (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.real", false], [62, "pwtools.atomic_data.real", false]], "recip_cell() (in module pwtools.crys)": [[434, "pwtools.crys.recip_cell", false]], "repeatedkfold (class in pwtools.rbf.hyperopt)": [[1322, "pwtools.rbf.hyperopt.RepeatedKFold", false]], "rmax_smith() (in module pwtools.crys)": [[435, "pwtools.crys.rmax_smith", false]], "rms() (in module pwtools.num)": [[683, "pwtools.num.rms", false]], "rms3d() (in module pwtools.num)": [[684, "pwtools.num.rms3d", false]], "rmsd() (in module pwtools.crys)": [[436, "pwtools.crys.rmsd", false]], "round_up_next_multiple() (in module pwtools.num)": [[685, "pwtools.num.round_up_next_multiple", false]], "rpdf() (in module pwtools.crys)": [[437, "pwtools.crys.rpdf", false]], "ry (in module pwtools.constants)": [[178, "pwtools.constants.Ry", false]], "ry (in module pwtools.eos)": [[534, "pwtools.eos.Ry", false]], "ry (in module pwtools.parse)": [[1205, "pwtools.parse.Ry", false]], "ry_to_ev (in module pwtools.constants)": [[182, "pwtools.constants.Ry_to_eV", false]], "ry_to_ha (in module pwtools.constants)": [[179, "pwtools.constants.Ry_to_Ha", false]], "ry_to_hz (in module pwtools.constants)": [[180, "pwtools.constants.Ry_to_Hz", false]], "ry_to_j (in module pwtools.constants)": [[181, "pwtools.constants.Ry_to_J", false]], "ry_to_j (in module pwtools.thermo)": [[1392, "pwtools.thermo.Ry_to_J", false]], "ry_to_rcm (in module pwtools.constants)": [[183, "pwtools.constants.Ry_to_rcm", false]], "rydberg (in module pwtools.constants)": [[184, "pwtools.constants.Rydberg", false]], "savefig() (pwtools.mpl.plot method)": [[586, "pwtools.mpl.Plot.savefig", false]], "scale() (in module pwtools.signal)": [[1338, "pwtools.signal.scale", false]], "scell() (in module pwtools.crys)": [[438, "pwtools.crys.scell", false]], "scell3d() (in module pwtools.crys)": [[439, "pwtools.crys.scell3d", false]], "scell_mask() (in module pwtools.crys)": [[440, "pwtools.crys.scell_mask", false]], "seq2str() (in module pwtools.common)": [[154, "pwtools.common.seq2str", false]], "set_all() (pwtools.base.flexiblegetters method)": [[82, "pwtools.base.FlexibleGetters.set_all", false]], "set_all() (pwtools.crys.fakeaseatoms method)": [[263, "pwtools.crys.FakeASEAtoms.set_all", false]], "set_all() (pwtools.crys.structure method)": [[319, "pwtools.crys.Structure.set_all", false]], "set_all() (pwtools.crys.trajectory method)": [[376, "pwtools.crys.Trajectory.set_all", false]], "set_all() (pwtools.crys.unitshandler method)": [[398, "pwtools.crys.UnitsHandler.set_all", false]], "set_all() (pwtools.eos.elkeosfit method)": [[492, "pwtools.eos.ElkEOSFit.set_all", false]], "set_all() (pwtools.eos.externeos method)": [[527, "pwtools.eos.ExternEOS.set_all", false]], "set_all() (pwtools.parse.ciffile method)": [[721, "pwtools.parse.CifFile.set_all", false]], "set_all() (pwtools.parse.cp2kdcdmdoutputfile method)": [[762, "pwtools.parse.Cp2kDcdMDOutputFile.set_all", false]], "set_all() (pwtools.parse.cp2kmdoutputfile method)": [[802, "pwtools.parse.Cp2kMDOutputFile.set_all", false]], "set_all() (pwtools.parse.cp2krelaxoutputfile method)": [[842, "pwtools.parse.Cp2kRelaxOutputFile.set_all", false]], "set_all() (pwtools.parse.cp2kscfoutputfile method)": [[873, "pwtools.parse.Cp2kSCFOutputFile.set_all", false]], "set_all() (pwtools.parse.cpmdmdoutputfile method)": [[920, "pwtools.parse.CpmdMDOutputFile.set_all", false]], "set_all() (pwtools.parse.cpmdscfoutputfile method)": [[956, "pwtools.parse.CpmdSCFOutputFile.set_all", false]], "set_all() (pwtools.parse.lammpsdcdmdoutputfile method)": [[1005, "pwtools.parse.LammpsDcdMDOutputFile.set_all", false]], "set_all() (pwtools.parse.lammpstextmdoutputfile method)": [[1046, "pwtools.parse.LammpsTextMDOutputFile.set_all", false]], "set_all() (pwtools.parse.pdbfile method)": [[1075, "pwtools.parse.PDBFile.set_all", false]], "set_all() (pwtools.parse.pwmdoutputfile method)": [[1118, "pwtools.parse.PwMDOutputFile.set_all", false]], "set_all() (pwtools.parse.pwscfoutputfile method)": [[1155, "pwtools.parse.PwSCFOutputFile.set_all", false]], "set_all() (pwtools.parse.pwvcmdoutputfile method)": [[1199, "pwtools.parse.PwVCMDOutputFile.set_all", false]], "set_all() (pwtools.parse.structurefileparser method)": [[1226, "pwtools.parse.StructureFileParser.set_all", false]], "set_all() (pwtools.parse.trajectoryfileparser method)": [[1252, "pwtools.parse.TrajectoryFileParser.set_all", false]], "set_attr_lst() (pwtools.base.flexiblegetters method)": [[83, "pwtools.base.FlexibleGetters.set_attr_lst", false]], "set_attr_lst() (pwtools.crys.fakeaseatoms method)": [[264, "pwtools.crys.FakeASEAtoms.set_attr_lst", false]], "set_attr_lst() (pwtools.crys.structure method)": [[320, "pwtools.crys.Structure.set_attr_lst", false]], "set_attr_lst() (pwtools.crys.trajectory method)": [[377, "pwtools.crys.Trajectory.set_attr_lst", false]], "set_attr_lst() (pwtools.crys.unitshandler method)": [[399, "pwtools.crys.UnitsHandler.set_attr_lst", false]], "set_attr_lst() (pwtools.eos.elkeosfit method)": [[493, "pwtools.eos.ElkEOSFit.set_attr_lst", false]], "set_attr_lst() (pwtools.eos.externeos method)": [[528, "pwtools.eos.ExternEOS.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.ciffile method)": [[722, "pwtools.parse.CifFile.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.cp2kdcdmdoutputfile method)": [[763, "pwtools.parse.Cp2kDcdMDOutputFile.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.cp2kmdoutputfile method)": [[803, "pwtools.parse.Cp2kMDOutputFile.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.cp2krelaxoutputfile method)": [[843, "pwtools.parse.Cp2kRelaxOutputFile.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.cp2kscfoutputfile method)": [[874, "pwtools.parse.Cp2kSCFOutputFile.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.cpmdmdoutputfile method)": [[921, "pwtools.parse.CpmdMDOutputFile.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.cpmdscfoutputfile method)": [[957, "pwtools.parse.CpmdSCFOutputFile.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.lammpsdcdmdoutputfile method)": [[1006, "pwtools.parse.LammpsDcdMDOutputFile.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.lammpstextmdoutputfile method)": [[1047, "pwtools.parse.LammpsTextMDOutputFile.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.pdbfile method)": [[1076, "pwtools.parse.PDBFile.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.pwmdoutputfile method)": [[1119, "pwtools.parse.PwMDOutputFile.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.pwscfoutputfile method)": [[1156, "pwtools.parse.PwSCFOutputFile.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.pwvcmdoutputfile method)": [[1200, "pwtools.parse.PwVCMDOutputFile.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.structurefileparser method)": [[1227, "pwtools.parse.StructureFileParser.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.trajectoryfileparser method)": [[1253, "pwtools.parse.TrajectoryFileParser.set_attr_lst", false]], "set_bv_method() (pwtools.eos.elkeosfit method)": [[494, "pwtools.eos.ElkEOSFit.set_bv_method", false]], "set_bv_method() (pwtools.eos.externeos method)": [[529, "pwtools.eos.ExternEOS.set_bv_method", false]], "set_fitfunc() (pwtools.thermo.gibbs method)": [[1381, "pwtools.thermo.Gibbs.set_fitfunc", false]], "set_table() (pwtools.sql.sqlitedb method)": [[1363, "pwtools.sql.SQLiteDB.set_table", false]], "shape (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.shape", false], [62, "pwtools.atomic_data.shape", false]], "size (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.size", false], [62, "pwtools.atomic_data.size", false]], "sliceput() (in module pwtools.num)": [[686, "pwtools.num.sliceput", false]], "slicetake() (in module pwtools.num)": [[687, "pwtools.num.slicetake", false]], "smooth() (in module pwtools.crys)": [[441, "pwtools.crys.smooth", false]], "smooth() (in module pwtools.signal)": [[1339, "pwtools.signal.smooth", false]], "smooth_color() (in module pwtools.mpl)": [[630, "pwtools.mpl.smooth_color", false]], "smooth_color_func() (in module pwtools.mpl)": [[631, "pwtools.mpl.smooth_color_func", false]], "solve (in module pwtools._flib)": [[50, "pwtools._flib.solve", false]], "specialpointspath (class in pwtools.kpath)": [[572, "pwtools.kpath.SpecialPointsPath", false]], "spglib2struct() (in module pwtools.symmetry)": [[1373, "pwtools.symmetry.spglib2struct", false]], "spglib_get_primitive() (in module pwtools.symmetry)": [[1374, "pwtools.symmetry.spglib_get_primitive", false]], "spglib_get_spacegroup() (in module pwtools.symmetry)": [[1375, "pwtools.symmetry.spglib_get_spacegroup", false]], "spl (pwtools.eos.eosfit attribute)": [[505, "pwtools.eos.EosFit.spl", false]], "splev() (pwtools.num.spline method)": [[663, "pwtools.num.Spline.splev", false]], "spline (class in pwtools.num)": [[657, "pwtools.num.Spline", false]], "sql_column() (in module pwtools.sql)": [[1369, "pwtools.sql.sql_column", false]], "sql_column_old() (in module pwtools.sql)": [[1370, "pwtools.sql.sql_column_old", false]], "sql_matrix() (in module pwtools.sql)": [[1371, "pwtools.sql.sql_matrix", false]], "sqlentry (class in pwtools.sql)": [[1341, "pwtools.sql.SQLEntry", false]], "sqlitedb (class in pwtools.sql)": [[1342, "pwtools.sql.SQLiteDB", false]], "squared_dists() (in module pwtools.rbf.core)": [[1317, "pwtools.rbf.core.squared_dists", false]], "str2seq() (in module pwtools.common)": [[155, "pwtools.common.str2seq", false]], "str2tup() (in module pwtools.common)": [[156, "pwtools.common.str2tup", false]], "str_arr() (in module pwtools.common)": [[157, "pwtools.common.str_arr", false]], "stress_pwtools2ase() (in module pwtools.calculators)": [[123, "pwtools.calculators.stress_pwtools2ase", false]], "strides (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.strides", false], [62, "pwtools.atomic_data.strides", false]], "struct2atoms() (in module pwtools.crys)": [[442, "pwtools.crys.struct2atoms", false]], "struct2spglib() (in module pwtools.symmetry)": [[1376, "pwtools.symmetry.struct2spglib", false]], "struct2traj() (in module pwtools.crys)": [[443, "pwtools.crys.struct2traj", false]], "struct_str() (in module pwtools.lammps)": [[576, "pwtools.lammps.struct_str", false]], "structure (class in pwtools.crys)": [[269, "pwtools.crys.Structure", false]], "structurefileparser (class in pwtools.parse)": [[1206, "pwtools.parse.StructureFileParser", false]], "sum() (in module pwtools.num)": [[688, "pwtools.num.sum", false]], "svib() (pwtools.thermo.harmonicthermo method)": [[1387, "pwtools.thermo.HarmonicThermo.svib", false]], "symbols (in module pwtools.atomic_data)": [[66, "pwtools.atomic_data.symbols", false]], "system() (in module pwtools.common)": [[158, "pwtools.common.system", false]], "t (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.T", false], [62, "pwtools.atomic_data.T", false]], "t() (pwtools.timer.tagtimer method)": [[1406, "pwtools.timer.TagTimer.t", false]], "tagtimer (class in pwtools.timer)": [[1403, "pwtools.timer.TagTimer", false]], "template_replace() (in module pwtools.common)": [[159, "pwtools.common.template_replace", false]], "tensor2voigt() (in module pwtools.crys)": [[444, "pwtools.crys.tensor2voigt", false]], "tensor2voigt3d() (in module pwtools.crys)": [[445, "pwtools.crys.tensor2voigt3d", false]], "th (in module pwtools.constants)": [[207, "pwtools.constants.th", false]], "thart (in module pwtools.constants)": [[208, "pwtools.constants.thart", false]], "thart (in module pwtools.parse)": [[1268, "pwtools.parse.thart", false]], "timeaxis (pwtools.crys.fakeaseatoms attribute)": [[265, "pwtools.crys.FakeASEAtoms.timeaxis", false]], "timeaxis (pwtools.crys.structure attribute)": [[321, "pwtools.crys.Structure.timeaxis", false]], "timeaxis (pwtools.crys.trajectory attribute)": [[378, "pwtools.crys.Trajectory.timeaxis", false]], "timeaxis (pwtools.parse.cp2kdcdmdoutputfile attribute)": [[764, "pwtools.parse.Cp2kDcdMDOutputFile.timeaxis", false]], "timeaxis (pwtools.parse.cp2kmdoutputfile attribute)": [[804, "pwtools.parse.Cp2kMDOutputFile.timeaxis", false]], "timeaxis (pwtools.parse.cp2krelaxoutputfile attribute)": [[844, "pwtools.parse.Cp2kRelaxOutputFile.timeaxis", false]], "timeaxis (pwtools.parse.cpmdmdoutputfile attribute)": [[922, "pwtools.parse.CpmdMDOutputFile.timeaxis", false]], "timeaxis (pwtools.parse.lammpsdcdmdoutputfile attribute)": [[1007, "pwtools.parse.LammpsDcdMDOutputFile.timeaxis", false]], "timeaxis (pwtools.parse.lammpstextmdoutputfile attribute)": [[1048, "pwtools.parse.LammpsTextMDOutputFile.timeaxis", false]], "timeaxis (pwtools.parse.pwmdoutputfile attribute)": [[1120, "pwtools.parse.PwMDOutputFile.timeaxis", false]], "timeaxis (pwtools.parse.pwvcmdoutputfile attribute)": [[1201, "pwtools.parse.PwVCMDOutputFile.timeaxis", false]], "timeaxis (pwtools.parse.trajectoryfileparser attribute)": [[1254, "pwtools.parse.TrajectoryFileParser.timeaxis", false]], "tobool() (in module pwtools.common)": [[160, "pwtools.common.tobool", false]], "toslice() (in module pwtools.common)": [[161, "pwtools.common.toslice", false]], "traj_from_txt() (in module pwtools.parse)": [[1269, "pwtools.parse.traj_from_txt", false]], "trajectory (class in pwtools.crys)": [[325, "pwtools.crys.Trajectory", false]], "trajectoryfileparser (class in pwtools.parse)": [[1231, "pwtools.parse.TrajectoryFileParser", false]], "try_set_attr() (pwtools.base.flexiblegetters method)": [[84, "pwtools.base.FlexibleGetters.try_set_attr", false]], "try_set_attr() (pwtools.crys.fakeaseatoms method)": [[266, "pwtools.crys.FakeASEAtoms.try_set_attr", false]], "try_set_attr() (pwtools.crys.structure method)": [[322, "pwtools.crys.Structure.try_set_attr", false]], "try_set_attr() (pwtools.crys.trajectory method)": [[379, "pwtools.crys.Trajectory.try_set_attr", false]], "try_set_attr() (pwtools.crys.unitshandler method)": [[400, "pwtools.crys.UnitsHandler.try_set_attr", false]], "try_set_attr() (pwtools.eos.elkeosfit method)": [[495, "pwtools.eos.ElkEOSFit.try_set_attr", false]], "try_set_attr() (pwtools.eos.externeos method)": [[530, "pwtools.eos.ExternEOS.try_set_attr", false]], "try_set_attr() (pwtools.parse.ciffile method)": [[723, "pwtools.parse.CifFile.try_set_attr", false]], "try_set_attr() (pwtools.parse.cp2kdcdmdoutputfile method)": [[765, "pwtools.parse.Cp2kDcdMDOutputFile.try_set_attr", false]], "try_set_attr() (pwtools.parse.cp2kmdoutputfile method)": [[805, "pwtools.parse.Cp2kMDOutputFile.try_set_attr", false]], "try_set_attr() (pwtools.parse.cp2krelaxoutputfile method)": [[845, "pwtools.parse.Cp2kRelaxOutputFile.try_set_attr", false]], "try_set_attr() (pwtools.parse.cp2kscfoutputfile method)": [[875, "pwtools.parse.Cp2kSCFOutputFile.try_set_attr", false]], "try_set_attr() (pwtools.parse.cpmdmdoutputfile method)": [[923, "pwtools.parse.CpmdMDOutputFile.try_set_attr", false]], "try_set_attr() (pwtools.parse.cpmdscfoutputfile method)": [[958, "pwtools.parse.CpmdSCFOutputFile.try_set_attr", false]], "try_set_attr() (pwtools.parse.lammpsdcdmdoutputfile method)": [[1008, "pwtools.parse.LammpsDcdMDOutputFile.try_set_attr", false]], "try_set_attr() (pwtools.parse.lammpstextmdoutputfile method)": [[1049, "pwtools.parse.LammpsTextMDOutputFile.try_set_attr", false]], "try_set_attr() (pwtools.parse.pdbfile method)": [[1077, "pwtools.parse.PDBFile.try_set_attr", false]], "try_set_attr() (pwtools.parse.pwmdoutputfile method)": [[1121, "pwtools.parse.PwMDOutputFile.try_set_attr", false]], "try_set_attr() (pwtools.parse.pwscfoutputfile method)": [[1157, "pwtools.parse.PwSCFOutputFile.try_set_attr", false]], "try_set_attr() (pwtools.parse.pwvcmdoutputfile method)": [[1202, "pwtools.parse.PwVCMDOutputFile.try_set_attr", false]], "try_set_attr() (pwtools.parse.structurefileparser method)": [[1228, "pwtools.parse.StructureFileParser.try_set_attr", false]], "try_set_attr() (pwtools.parse.trajectoryfileparser method)": [[1255, "pwtools.parse.TrajectoryFileParser.try_set_attr", false]], "try_set_attr_lst() (pwtools.base.flexiblegetters method)": [[85, "pwtools.base.FlexibleGetters.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.crys.fakeaseatoms method)": [[267, "pwtools.crys.FakeASEAtoms.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.crys.structure method)": [[323, "pwtools.crys.Structure.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.crys.trajectory method)": [[380, "pwtools.crys.Trajectory.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.crys.unitshandler method)": [[401, "pwtools.crys.UnitsHandler.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.eos.elkeosfit method)": [[496, "pwtools.eos.ElkEOSFit.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.eos.externeos method)": [[531, "pwtools.eos.ExternEOS.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.ciffile method)": [[724, "pwtools.parse.CifFile.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.cp2kdcdmdoutputfile method)": [[766, "pwtools.parse.Cp2kDcdMDOutputFile.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.cp2kmdoutputfile method)": [[806, "pwtools.parse.Cp2kMDOutputFile.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.cp2krelaxoutputfile method)": [[846, "pwtools.parse.Cp2kRelaxOutputFile.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.cp2kscfoutputfile method)": [[876, "pwtools.parse.Cp2kSCFOutputFile.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.cpmdmdoutputfile method)": [[924, "pwtools.parse.CpmdMDOutputFile.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.cpmdscfoutputfile method)": [[959, "pwtools.parse.CpmdSCFOutputFile.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.lammpsdcdmdoutputfile method)": [[1009, "pwtools.parse.LammpsDcdMDOutputFile.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.lammpstextmdoutputfile method)": [[1050, "pwtools.parse.LammpsTextMDOutputFile.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.pdbfile method)": [[1078, "pwtools.parse.PDBFile.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.pwmdoutputfile method)": [[1122, "pwtools.parse.PwMDOutputFile.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.pwscfoutputfile method)": [[1158, "pwtools.parse.PwSCFOutputFile.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.pwvcmdoutputfile method)": [[1203, "pwtools.parse.PwVCMDOutputFile.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.structurefileparser method)": [[1229, "pwtools.parse.StructureFileParser.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.trajectoryfileparser method)": [[1256, "pwtools.parse.TrajectoryFileParser.try_set_attr_lst", false]], "tryd (in module pwtools.constants)": [[209, "pwtools.constants.tryd", false]], "tup2str() (in module pwtools.common)": [[162, "pwtools.common.tup2str", false]], "txt_maxdim (in module pwtools.arrayio)": [[55, "pwtools.arrayio.TXT_MAXDIM", false]], "unique2d() (in module pwtools.comb)": [[126, "pwtools.comb.unique2d", false]], "unitshandler (class in pwtools.crys)": [[382, "pwtools.crys.UnitsHandler", false]], "update() (pwtools.mpl.data2d method)": [[579, "pwtools.mpl.Data2D.update", false]], "update() (pwtools.mpl.data3d method)": [[582, "pwtools.mpl.Data3D.update", false]], "update_units() (pwtools.crys.fakeaseatoms method)": [[268, "pwtools.crys.FakeASEAtoms.update_units", false]], "update_units() (pwtools.crys.structure method)": [[324, "pwtools.crys.Structure.update_units", false]], "update_units() (pwtools.crys.trajectory method)": [[381, "pwtools.crys.Trajectory.update_units", false]], "update_units() (pwtools.crys.unitshandler method)": [[402, "pwtools.crys.UnitsHandler.update_units", false]], "update_units() (pwtools.parse.ciffile method)": [[725, "pwtools.parse.CifFile.update_units", false]], "update_units() (pwtools.parse.cp2kdcdmdoutputfile method)": [[767, "pwtools.parse.Cp2kDcdMDOutputFile.update_units", false]], "update_units() (pwtools.parse.cp2kmdoutputfile method)": [[807, "pwtools.parse.Cp2kMDOutputFile.update_units", false]], "update_units() (pwtools.parse.cp2krelaxoutputfile method)": [[847, "pwtools.parse.Cp2kRelaxOutputFile.update_units", false]], "update_units() (pwtools.parse.cp2kscfoutputfile method)": [[877, "pwtools.parse.Cp2kSCFOutputFile.update_units", false]], "update_units() (pwtools.parse.cpmdmdoutputfile method)": [[925, "pwtools.parse.CpmdMDOutputFile.update_units", false]], "update_units() (pwtools.parse.cpmdscfoutputfile method)": [[960, "pwtools.parse.CpmdSCFOutputFile.update_units", false]], "update_units() (pwtools.parse.lammpsdcdmdoutputfile method)": [[1010, "pwtools.parse.LammpsDcdMDOutputFile.update_units", false]], "update_units() (pwtools.parse.lammpstextmdoutputfile method)": [[1051, "pwtools.parse.LammpsTextMDOutputFile.update_units", false]], "update_units() (pwtools.parse.pdbfile method)": [[1079, "pwtools.parse.PDBFile.update_units", false]], "update_units() (pwtools.parse.pwmdoutputfile method)": [[1123, "pwtools.parse.PwMDOutputFile.update_units", false]], "update_units() (pwtools.parse.pwscfoutputfile method)": [[1159, "pwtools.parse.PwSCFOutputFile.update_units", false]], "update_units() (pwtools.parse.pwvcmdoutputfile method)": [[1204, "pwtools.parse.PwVCMDOutputFile.update_units", false]], "update_units() (pwtools.parse.structurefileparser method)": [[1230, "pwtools.parse.StructureFileParser.update_units", false]], "update_units() (pwtools.parse.trajectoryfileparser method)": [[1257, "pwtools.parse.TrajectoryFileParser.update_units", false]], "use_jax (in module pwtools.config)": [[164, "pwtools.config.use_jax", false]], "vacf (in module pwtools._flib)": [[51, "pwtools._flib.vacf", false]], "vacf_pdos() (in module pwtools.pydos)": [[1293, "pwtools.pydos.vacf_pdos", false]], "vander() (in module pwtools.num)": [[689, "pwtools.num.vander", false]], "vect_loops (in module pwtools._flib)": [[52, "pwtools._flib.vect_loops", false]], "velocity_traj() (in module pwtools.crys)": [[446, "pwtools.crys.velocity_traj", false]], "verbose (in module pwtools.verbose)": [[1407, "pwtools.verbose.VERBOSE", false]], "verbose() (in module pwtools.verbose)": [[1408, "pwtools.verbose.verbose", false]], "vibrational_entropy() (pwtools.thermo.harmonicthermo method)": [[1388, "pwtools.thermo.HarmonicThermo.vibrational_entropy", false]], "vibrational_free_energy() (pwtools.thermo.harmonicthermo method)": [[1389, "pwtools.thermo.HarmonicThermo.vibrational_free_energy", false]], "vibrational_internal_energy() (pwtools.thermo.harmonicthermo method)": [[1390, "pwtools.thermo.HarmonicThermo.vibrational_internal_energy", false]], "view_avogadro (in module pwtools.visualize)": [[1412, "pwtools.visualize.view_avogadro", false]], "view_jmol (in module pwtools.visualize)": [[1413, "pwtools.visualize.view_jmol", false]], "view_vmd_axsf (in module pwtools.visualize)": [[1414, "pwtools.visualize.view_vmd_axsf", false]], "view_vmd_xyz (in module pwtools.visualize)": [[1415, "pwtools.visualize.view_vmd_xyz", false]], "view_xcrysden (in module pwtools.visualize)": [[1416, "pwtools.visualize.view_xcrysden", false]], "viewfactory (class in pwtools.visualize)": [[1409, "pwtools.visualize.ViewFactory", false]], "vinet (class in pwtools.eos)": [[535, "pwtools.eos.Vinet", false]], "vlinspace() (in module pwtools.num)": [[690, "pwtools.num.vlinspace", false]], "vmd_measure_gofr() (in module pwtools.crys)": [[447, "pwtools.crys.vmd_measure_gofr", false]], "voigt2tensor() (in module pwtools.crys)": [[448, "pwtools.crys.voigt2tensor", false]], "voigt2tensor3d() (in module pwtools.crys)": [[449, "pwtools.crys.voigt2tensor3d", false]], "volume_cc() (in module pwtools.crys)": [[450, "pwtools.crys.volume_cc", false]], "volume_cc3d() (in module pwtools.crys)": [[451, "pwtools.crys.volume_cc3d", false]], "volume_cell() (in module pwtools.crys)": [[452, "pwtools.crys.volume_cell", false]], "volume_cell3d() (in module pwtools.crys)": [[453, "pwtools.crys.volume_cell3d", false]], "welch() (in module pwtools.signal)": [[1340, "pwtools.signal.welch", false]], "wien_sgroup_input() (in module pwtools.io)": [[565, "pwtools.io.wien_sgroup_input", false]], "with_traceback() (pwtools.eos.maxderivexception method)": [[533, "pwtools.eos.MaxDerivException.with_traceback", false]], "with_traceback() (pwtools.random.randomstructurefail method)": [[1297, "pwtools.random.RandomStructureFail.with_traceback", false]], "write() (pwtools.batch.filetemplate method)": [[91, "pwtools.batch.FileTemplate.write", false]], "write_axsf() (in module pwtools.io)": [[566, "pwtools.io.write_axsf", false]], "write_cif() (in module pwtools.io)": [[567, "pwtools.io.write_cif", false]], "write_h5() (in module pwtools.io)": [[568, "pwtools.io.write_h5", false]], "write_input() (pwtools.batch.calculation method)": [[88, "pwtools.batch.Calculation.write_input", false]], "write_input() (pwtools.batch.parameterstudy method)": [[97, "pwtools.batch.ParameterStudy.write_input", false]], "write_input() (pwtools.calculators.lammps method)": [[111, "pwtools.calculators.Lammps.write_input", false]], "write_input() (pwtools.calculators.pwscf method)": [[119, "pwtools.calculators.Pwscf.write_input", false]], "write_lammps() (in module pwtools.io)": [[569, "pwtools.io.write_lammps", false]], "write_wien_sgroup() (in module pwtools.io)": [[570, "pwtools.io.write_wien_sgroup", false]], "write_xyz() (in module pwtools.io)": [[571, "pwtools.io.write_xyz", false]], "writesql() (pwtools.batch.filetemplate method)": [[92, "pwtools.batch.FileTemplate.writesql", false]], "writetxt() (in module pwtools.arrayio)": [[60, "pwtools.arrayio.writetxt", false]]}, "objects": {"pwtools": [[0, 0, 0, "-", "_dcd"], [1, 0, 0, "-", "_flib"], [2, 0, 0, "-", "arrayio"], [3, 0, 0, "-", "atomic_data"], [4, 0, 0, "-", "base"], [5, 0, 0, "-", "batch"], [6, 0, 0, "-", "calculators"], [7, 0, 0, "-", "comb"], [8, 0, 0, "-", "common"], [9, 0, 0, "-", "config"], [10, 0, 0, "-", "constants"], [11, 0, 0, "-", "crys"], [12, 0, 0, "-", "dcd"], [13, 0, 0, "-", "decorators"], [14, 0, 0, "-", "eos"], [15, 0, 0, "-", "io"], [16, 0, 0, "-", "kpath"], [17, 0, 0, "-", "lammps"], [18, 0, 0, "-", "mpl"], [19, 0, 0, "-", "mttk"], [20, 0, 0, "-", "num"], [21, 0, 0, "-", "parse"], [22, 0, 0, "-", "pwscf"], [23, 0, 0, "-", "pydos"], [24, 0, 0, "-", "random"], [27, 0, 0, "-", "regex"], [28, 0, 0, "-", "signal"], [29, 0, 0, "-", "sql"], [30, 0, 0, "-", "symmetry"], [31, 0, 0, "-", "thermo"], [32, 0, 0, "-", "timer"], [33, 0, 0, "-", "verbose"], [34, 0, 0, "-", "visualize"]], "pwtools._dcd": [[36, 1, 1, "", "get_dcd_file_info"], [37, 1, 1, "", "open_file"], [38, 1, 1, "", "read_dcd_data"], [39, 1, 1, "", "read_dcd_data_from_unit"], [40, 1, 1, "", "read_dcd_header_from_unit"]], "pwtools._flib": [[41, 1, 1, "", "acorr"], [42, 1, 1, "", "angles"], [43, 1, 1, "", "cart2frac"], [44, 1, 1, "", "cart2frac_traj"], [45, 1, 1, "", "distances_traj"], [46, 1, 1, "", "distsq"], [47, 1, 1, "", "distsq_frac"], [48, 1, 1, "", "frac2cart"], [49, 1, 1, "", "frac2cart_traj"], [50, 1, 1, "", "solve"], [51, 1, 1, "", "vacf"], [52, 1, 1, "", "vect_loops"]], "pwtools.arrayio": [[53, 1, 1, "", "HEADER_COMMENT"], [54, 1, 1, "", "HEADER_MAXLINES"], [55, 1, 1, "", "TXT_MAXDIM"], [56, 2, 1, "", "_read_header_config"], [57, 2, 1, "", "_write_header_config"], [58, 2, 1, "", "arr2d_to_3d"], [59, 2, 1, "", "readtxt"], [60, 2, 1, "", "writetxt"]], "pwtools.atomic_data": [[62, 3, 1, "", "T"], [62, 3, 1, "", "base"], [61, 1, 1, "", "covalent_radii"], [62, 3, 1, "", "ctypes"], [62, 3, 1, "", "data"], [62, 3, 1, "", "dtype"], [62, 3, 1, "", "flags"], [62, 3, 1, "", "flat"], [62, 3, 1, "", "imag"], [62, 3, 1, "", "itemsize"], [62, 1, 1, "", "masses"], [63, 1, 1, "", "missing"], [62, 3, 1, "", "nbytes"], [62, 3, 1, "", "ndim"], [64, 1, 1, "", "numbers"], [65, 1, 1, "", "pt"], [62, 3, 1, "", "real"], [62, 3, 1, "", "shape"], [62, 3, 1, "", "size"], [62, 3, 1, "", "strides"], [66, 1, 1, "", "symbols"]], "pwtools.base": [[67, 4, 1, "", "FlexibleGetters"]], "pwtools.base.FlexibleGetters": [[67, 5, 1, "", "__init__"], [68, 5, 1, "", "assert_attr"], [69, 5, 1, "", "assert_attr_lst"], [70, 5, 1, "", "assert_set_attr"], [71, 5, 1, "", "assert_set_attr_lst"], [72, 5, 1, "", "check_set_attr"], [73, 5, 1, "", "check_set_attr_lst"], [74, 5, 1, "", "dump"], [75, 5, 1, "", "get_return_attr"], [76, 5, 1, "", "init_attr_lst"], [77, 5, 1, "", "is_set_attr"], [78, 5, 1, "", "is_set_attr_lst"], [79, 5, 1, "", "load"], [80, 5, 1, "", "raw_return"], [81, 5, 1, "", "raw_slice_get"], [82, 5, 1, "", "set_all"], [83, 5, 1, "", "set_attr_lst"], [84, 5, 1, "", "try_set_attr"], [85, 5, 1, "", "try_set_attr_lst"]], "pwtools.batch": [[86, 4, 1, "", "Calculation"], [89, 4, 1, "", "Case"], [90, 4, 1, "", "FileTemplate"], [93, 4, 1, "", "Machine"], [96, 4, 1, "", "ParameterStudy"], [98, 2, 1, "", "conv_table"], [99, 2, 1, "", "default_repl_keys"]], "pwtools.batch.Calculation": [[86, 5, 1, "", "__init__"], [87, 5, 1, "", "get_sql_record"], [88, 5, 1, "", "write_input"]], "pwtools.batch.Case": [[89, 5, 1, "", "__init__"]], "pwtools.batch.FileTemplate": [[90, 5, 1, "", "__init__"], [91, 5, 1, "", "write"], [92, 5, 1, "", "writesql"]], "pwtools.batch.Machine": [[93, 5, 1, "", "__init__"], [94, 5, 1, "", "get_jobfile_basename"], [95, 5, 1, "", "get_sql_record"]], "pwtools.batch.ParameterStudy": [[96, 5, 1, "", "__init__"], [97, 5, 1, "", "write_input"]], "pwtools.calculators": [[100, 4, 1, "", "CalculatorBase"], [103, 4, 1, "", "FileIOCalculator"], [104, 4, 1, "", "Lammps"], [112, 4, 1, "", "Pwscf"], [120, 2, 1, "", "_ase_missing"], [121, 2, 1, "", "find_exe"], [122, 2, 1, "", "kpts2mp"], [123, 2, 1, "", "stress_pwtools2ase"]], "pwtools.calculators.CalculatorBase": [[100, 5, 1, "", "__init__"], [101, 5, 1, "", "fill_infile_templ"], [102, 5, 1, "", "init_params_from_input"]], "pwtools.calculators.FileIOCalculator": [[103, 5, 1, "", "__init__"]], "pwtools.calculators.Lammps": [[104, 5, 1, "", "__init__"], [105, 3, 1, "", "default_parameters"], [106, 5, 1, "", "fill_infile_templ"], [107, 3, 1, "", "implemented_properties"], [108, 3, 1, "", "infile_templ"], [109, 5, 1, "", "init_params_from_input"], [110, 5, 1, "", "read_results"], [111, 5, 1, "", "write_input"]], "pwtools.calculators.Pwscf": [[112, 5, 1, "", "__init__"], [113, 3, 1, "", "default_parameters"], [114, 5, 1, "", "fill_infile_templ"], [115, 3, 1, "", "implemented_properties"], [116, 3, 1, "", "infile_templ"], [117, 5, 1, "", "init_params_from_input"], [118, 5, 1, "", "read_results"], [119, 5, 1, "", "write_input"]], "pwtools.comb": [[124, 2, 1, "", "_ensure_list"], [125, 2, 1, "", "nested_loops"], [126, 2, 1, "", "unique2d"]], "pwtools.common": [[127, 1, 1, "", "EPS"], [128, 2, 1, "", "add_to_config"], [129, 2, 1, "", "asseq"], [130, 2, 1, "", "assert_cond"], [131, 2, 1, "", "backtick"], [132, 2, 1, "", "backup"], [133, 2, 1, "", "cpickle_load"], [134, 2, 1, "", "dict2class"], [135, 2, 1, "", "dict2str"], [136, 2, 1, "", "ffloat"], [137, 2, 1, "", "file_read"], [138, 2, 1, "", "file_readlines"], [139, 2, 1, "", "file_template_replace"], [140, 2, 1, "", "file_write"], [141, 2, 1, "", "fix_eps"], [142, 2, 1, "", "flatten"], [143, 2, 1, "", "fpj"], [144, 2, 1, "", "frepr"], [145, 2, 1, "", "fullpath"], [146, 2, 1, "", "fullpathjoin"], [147, 2, 1, "", "get_filename"], [148, 2, 1, "", "iflatten"], [149, 2, 1, "", "is_seq"], [150, 2, 1, "", "makedirs"], [151, 2, 1, "", "permit_sigpipe"], [152, 2, 1, "", "pop_from_list"], [153, 2, 1, "", "print_dct"], [154, 2, 1, "", "seq2str"], [155, 2, 1, "", "str2seq"], [156, 2, 1, "", "str2tup"], [157, 2, 1, "", "str_arr"], [158, 2, 1, "", "system"], [159, 2, 1, "", "template_replace"], [160, 2, 1, "", "tobool"], [161, 2, 1, "", "toslice"], [162, 2, 1, "", "tup2str"]], "pwtools.config": [[163, 1, 1, "", "name"], [164, 1, 1, "", "use_jax"]], "pwtools.constants": [[165, 1, 1, "", "Ang"], [166, 1, 1, "", "Angstrom"], [167, 1, 1, "", "Bohr"], [168, 1, 1, "", "Bohr_to_Ang"], [169, 1, 1, "", "Eh"], [170, 1, 1, "", "Eryd"], [171, 1, 1, "", "GPa"], [172, 1, 1, "", "Ha"], [173, 1, 1, "", "Ha_to_eV"], [174, 1, 1, "", "Hartree"], [175, 1, 1, "", "J_to_eV"], [176, 1, 1, "", "J_to_rcm"], [177, 1, 1, "", "R"], [178, 1, 1, "", "Ry"], [179, 1, 1, "", "Ry_to_Ha"], [180, 1, 1, "", "Ry_to_Hz"], [181, 1, 1, "", "Ry_to_J"], [182, 1, 1, "", "Ry_to_eV"], [183, 1, 1, "", "Ry_to_rcm"], [184, 1, 1, "", "Rydberg"], [185, 1, 1, "", "a0"], [186, 1, 1, "", "a0_to_A"], [187, 1, 1, "", "alpha"], [188, 1, 1, "", "amu"], [189, 1, 1, "", "avo"], [190, 1, 1, "", "c0"], [191, 1, 1, "", "dyn"], [192, 1, 1, "", "e0"], [193, 1, 1, "", "eV"], [194, 1, 1, "", "eV_by_Ang3_to_GPa"], [195, 1, 1, "", "eV_by_Ang3_to_Pa"], [196, 1, 1, "", "eps0"], [197, 1, 1, "", "fs"], [198, 1, 1, "", "h"], [199, 1, 1, "", "hbar"], [200, 1, 1, "", "hplanck"], [201, 1, 1, "", "kb"], [202, 1, 1, "", "m0"], [203, 1, 1, "", "mu0"], [204, 1, 1, "", "pi"], [205, 1, 1, "", "ps"], [206, 1, 1, "", "rcm_to_Hz"], [207, 1, 1, "", "th"], [208, 1, 1, "", "thart"], [209, 1, 1, "", "tryd"]], "pwtools.crys": [[210, 1, 1, "", "Angstrom"], [211, 4, 1, "", "FakeASEAtoms"], [269, 4, 1, "", "Structure"], [325, 4, 1, "", "Trajectory"], [382, 4, 1, "", "UnitsHandler"], [403, 2, 1, "", "_trans"], [404, 2, 1, "", "align_cart"], [405, 2, 1, "", "angle"], [406, 2, 1, "", "angles"], [407, 2, 1, "", "atoms2struct"], [408, 2, 1, "", "call_vmd_measure_gofr"], [409, 2, 1, "", "cc2cell"], [410, 2, 1, "", "cc2cell3d"], [411, 2, 1, "", "cc2celldm"], [412, 2, 1, "", "cell2cc"], [413, 2, 1, "", "cell2cc3d"], [414, 2, 1, "", "celldm2cc"], [415, 2, 1, "", "center_on_atom"], [416, 2, 1, "", "compress"], [417, 2, 1, "", "concatenate"], [418, 2, 1, "", "coord_trans"], [419, 2, 1, "", "coord_trans3d"], [420, 2, 1, "", "distances"], [421, 2, 1, "", "distances_traj"], [422, 2, 1, "", "grid_in_cell"], [423, 2, 1, "", "kgrid"], [424, 2, 1, "", "mean"], [425, 2, 1, "", "min_image_convention"], [426, 2, 1, "", "mix"], [427, 2, 1, "", "nearest_neighbors"], [428, 2, 1, "", "nearest_neighbors_from_dists"], [429, 2, 1, "", "nearest_neighbors_struct"], [430, 2, 1, "", "pbc_wrap"], [431, 2, 1, "", "pbc_wrap_coords"], [432, 1, 1, "", "pi"], [433, 2, 1, "", "populated_attrs"], [434, 2, 1, "", "recip_cell"], [435, 2, 1, "", "rmax_smith"], [436, 2, 1, "", "rmsd"], [437, 2, 1, "", "rpdf"], [438, 2, 1, "", "scell"], [439, 2, 1, "", "scell3d"], [440, 2, 1, "", "scell_mask"], [441, 2, 1, "", "smooth"], [442, 2, 1, "", "struct2atoms"], [443, 2, 1, "", "struct2traj"], [444, 2, 1, "", "tensor2voigt"], [445, 2, 1, "", "tensor2voigt3d"], [446, 2, 1, "", "velocity_traj"], [447, 2, 1, "", "vmd_measure_gofr"], [448, 2, 1, "", "voigt2tensor"], [449, 2, 1, "", "voigt2tensor3d"], [450, 2, 1, "", "volume_cc"], [451, 2, 1, "", "volume_cc3d"], [452, 2, 1, "", "volume_cell"], [453, 2, 1, "", "volume_cell3d"]], "pwtools.crys.FakeASEAtoms": [[211, 5, 1, "", "__init__"], [212, 5, 1, "", "apply_units"], [213, 5, 1, "", "assert_attr"], [214, 5, 1, "", "assert_attr_lst"], [215, 5, 1, "", "assert_set_attr"], [216, 5, 1, "", "assert_set_attr_lst"], [217, 5, 1, "", "check_set_attr"], [218, 5, 1, "", "check_set_attr_lst"], [219, 5, 1, "", "compress"], [220, 5, 1, "", "copy"], [221, 5, 1, "", "dump"], [222, 5, 1, "", "get_ase_atoms"], [223, 5, 1, "", "get_atomic_numbers"], [224, 5, 1, "", "get_cell"], [225, 5, 1, "", "get_coords"], [226, 5, 1, "", "get_coords_frac"], [227, 5, 1, "", "get_cryst_const"], [228, 5, 1, "", "get_ekin"], [229, 5, 1, "", "get_etot"], [230, 5, 1, "", "get_fake_ase_atoms"], [231, 5, 1, "", "get_forces"], [232, 5, 1, "", "get_magnetic_moments"], [233, 5, 1, "", "get_mass"], [234, 5, 1, "", "get_mass_unique"], [235, 5, 1, "", "get_natoms"], [236, 5, 1, "", "get_nspecies"], [237, 5, 1, "", "get_nstep"], [238, 5, 1, "", "get_ntypat"], [239, 5, 1, "", "get_order"], [240, 5, 1, "", "get_pressure"], [241, 5, 1, "", "get_return_attr"], [242, 5, 1, "", "get_spglib"], [243, 5, 1, "", "get_stress"], [244, 5, 1, "", "get_symbols"], [245, 5, 1, "", "get_symbols_unique"], [246, 5, 1, "", "get_temperature"], [247, 5, 1, "", "get_time"], [248, 5, 1, "", "get_timestep"], [249, 5, 1, "", "get_traj"], [250, 5, 1, "", "get_typat"], [251, 5, 1, "", "get_velocity"], [252, 5, 1, "", "get_volume"], [253, 5, 1, "", "get_znucl"], [254, 5, 1, "", "get_znucl_unique"], [255, 5, 1, "", "init_attr_lst"], [256, 5, 1, "", "is_set_attr"], [257, 5, 1, "", "is_set_attr_lst"], [258, 3, 1, "", "is_struct"], [259, 3, 1, "", "is_traj"], [260, 5, 1, "", "load"], [261, 5, 1, "", "raw_return"], [262, 5, 1, "", "raw_slice_get"], [263, 5, 1, "", "set_all"], [264, 5, 1, "", "set_attr_lst"], [265, 3, 1, "", "timeaxis"], [266, 5, 1, "", "try_set_attr"], [267, 5, 1, "", "try_set_attr_lst"], [268, 5, 1, "", "update_units"]], "pwtools.crys.Structure": [[269, 5, 1, "", "__init__"], [270, 5, 1, "", "apply_units"], [271, 5, 1, "", "assert_attr"], [272, 5, 1, "", "assert_attr_lst"], [273, 5, 1, "", "assert_set_attr"], [274, 5, 1, "", "assert_set_attr_lst"], [275, 5, 1, "", "check_set_attr"], [276, 5, 1, "", "check_set_attr_lst"], [277, 5, 1, "", "compress"], [278, 5, 1, "", "copy"], [279, 5, 1, "", "dump"], [280, 5, 1, "", "get_ase_atoms"], [281, 5, 1, "", "get_cell"], [282, 5, 1, "", "get_coords"], [283, 5, 1, "", "get_coords_frac"], [284, 5, 1, "", "get_cryst_const"], [285, 5, 1, "", "get_ekin"], [286, 5, 1, "", "get_etot"], [287, 5, 1, "", "get_fake_ase_atoms"], [288, 5, 1, "", "get_forces"], [289, 5, 1, "", "get_mass"], [290, 5, 1, "", "get_mass_unique"], [291, 5, 1, "", "get_natoms"], [292, 5, 1, "", "get_nspecies"], [293, 5, 1, "", "get_nstep"], [294, 5, 1, "", "get_ntypat"], [295, 5, 1, "", "get_order"], [296, 5, 1, "", "get_pressure"], [297, 5, 1, "", "get_return_attr"], [298, 5, 1, "", "get_spglib"], [299, 5, 1, "", "get_stress"], [300, 5, 1, "", "get_symbols"], [301, 5, 1, "", "get_symbols_unique"], [302, 5, 1, "", "get_temperature"], [303, 5, 1, "", "get_time"], [304, 5, 1, "", "get_timestep"], [305, 5, 1, "", "get_traj"], [306, 5, 1, "", "get_typat"], [307, 5, 1, "", "get_velocity"], [308, 5, 1, "", "get_volume"], [309, 5, 1, "", "get_znucl"], [310, 5, 1, "", "get_znucl_unique"], [311, 5, 1, "", "init_attr_lst"], [312, 5, 1, "", "is_set_attr"], [313, 5, 1, "", "is_set_attr_lst"], [314, 3, 1, "", "is_struct"], [315, 3, 1, "", "is_traj"], [316, 5, 1, "", "load"], [317, 5, 1, "", "raw_return"], [318, 5, 1, "", "raw_slice_get"], [319, 5, 1, "", "set_all"], [320, 5, 1, "", "set_attr_lst"], [321, 3, 1, "", "timeaxis"], [322, 5, 1, "", "try_set_attr"], [323, 5, 1, "", "try_set_attr_lst"], [324, 5, 1, "", "update_units"]], "pwtools.crys.Trajectory": [[326, 5, 1, "", "__getitem__"], [325, 5, 1, "", "__init__"], [327, 5, 1, "", "apply_units"], [328, 5, 1, "", "assert_attr"], [329, 5, 1, "", "assert_attr_lst"], [330, 5, 1, "", "assert_set_attr"], [331, 5, 1, "", "assert_set_attr_lst"], [332, 5, 1, "", "check_set_attr"], [333, 5, 1, "", "check_set_attr_lst"], [334, 5, 1, "", "compress"], [335, 5, 1, "", "copy"], [336, 5, 1, "", "dump"], [337, 5, 1, "", "get_ase_atoms"], [338, 5, 1, "", "get_cell"], [339, 5, 1, "", "get_coords"], [340, 5, 1, "", "get_coords_frac"], [341, 5, 1, "", "get_cryst_const"], [342, 5, 1, "", "get_ekin"], [343, 5, 1, "", "get_etot"], [344, 5, 1, "", "get_fake_ase_atoms"], [345, 5, 1, "", "get_forces"], [346, 5, 1, "", "get_mass"], [347, 5, 1, "", "get_mass_unique"], [348, 5, 1, "", "get_natoms"], [349, 5, 1, "", "get_nspecies"], [350, 5, 1, "", "get_nstep"], [351, 5, 1, "", "get_ntypat"], [352, 5, 1, "", "get_order"], [353, 5, 1, "", "get_pressure"], [354, 5, 1, "", "get_return_attr"], [355, 5, 1, "", "get_spglib"], [356, 5, 1, "", "get_stress"], [357, 5, 1, "", "get_symbols"], [358, 5, 1, "", "get_symbols_unique"], [359, 5, 1, "", "get_temperature"], [360, 5, 1, "", "get_time"], [361, 5, 1, "", "get_timestep"], [362, 5, 1, "", "get_traj"], [363, 5, 1, "", "get_typat"], [364, 5, 1, "", "get_velocity"], [365, 5, 1, "", "get_volume"], [366, 5, 1, "", "get_znucl"], [367, 5, 1, "", "get_znucl_unique"], [368, 5, 1, "", "init_attr_lst"], [369, 5, 1, "", "is_set_attr"], [370, 5, 1, "", "is_set_attr_lst"], [371, 3, 1, "", "is_struct"], [372, 3, 1, "", "is_traj"], [373, 5, 1, "", "load"], [374, 5, 1, "", "raw_return"], [375, 5, 1, "", "raw_slice_get"], [376, 5, 1, "", "set_all"], [377, 5, 1, "", "set_attr_lst"], [378, 3, 1, "", "timeaxis"], [379, 5, 1, "", "try_set_attr"], [380, 5, 1, "", "try_set_attr_lst"], [381, 5, 1, "", "update_units"]], "pwtools.crys.UnitsHandler": [[382, 5, 1, "", "__init__"], [383, 5, 1, "", "apply_units"], [384, 5, 1, "", "assert_attr"], [385, 5, 1, "", "assert_attr_lst"], [386, 5, 1, "", "assert_set_attr"], [387, 5, 1, "", "assert_set_attr_lst"], [388, 5, 1, "", "check_set_attr"], [389, 5, 1, "", "check_set_attr_lst"], [390, 5, 1, "", "dump"], [391, 5, 1, "", "get_return_attr"], [392, 5, 1, "", "init_attr_lst"], [393, 5, 1, "", "is_set_attr"], [394, 5, 1, "", "is_set_attr_lst"], [395, 5, 1, "", "load"], [396, 5, 1, "", "raw_return"], [397, 5, 1, "", "raw_slice_get"], [398, 5, 1, "", "set_all"], [399, 5, 1, "", "set_attr_lst"], [400, 5, 1, "", "try_set_attr"], [401, 5, 1, "", "try_set_attr_lst"], [402, 5, 1, "", "update_units"]], "pwtools.dcd": [[454, 1, 1, "", "HEADER_DTYPE"], [455, 1, 1, "", "HEADER_TYPES"], [456, 2, 1, "", "read_dcd_data"], [457, 2, 1, "", "read_dcd_data_f"], [458, 2, 1, "", "read_dcd_data_ref"], [459, 2, 1, "", "read_dcd_header"]], "pwtools.decorators": [[460, 2, 1, "", "crys_add_doc"], [461, 4, 1, "", "lazyprop"], [462, 2, 1, "", "open_and_close"]], "pwtools.decorators.lazyprop": [[461, 5, 1, "", "__init__"]], "pwtools.eos": [[463, 1, 1, "", "Ang"], [464, 1, 1, "", "Bohr"], [465, 4, 1, "", "EVFunction"], [471, 4, 1, "", "ElkEOSFit"], [497, 4, 1, "", "EosFit"], [506, 4, 1, "", "ExternEOS"], [532, 1, 1, "", "Ha"], [533, 6, 1, "", "MaxDerivException"], [534, 1, 1, "", "Ry"], [535, 4, 1, "", "Vinet"], [541, 2, 1, "", "_vinet"], [542, 2, 1, "", "_vinet_deriv1"], [543, 2, 1, "", "_vinet_deriv2"], [544, 1, 1, "", "eV"], [545, 1, 1, "", "eV_by_Ang3_to_GPa"]], "pwtools.eos.EVFunction": [[465, 5, 1, "", "__call__"], [465, 5, 1, "", "__init__"], [466, 5, 1, "", "dct2lst"], [467, 5, 1, "", "deriv"], [468, 5, 1, "", "evaluate"], [469, 5, 1, "", "get_min"], [470, 5, 1, "", "lst2dct"]], "pwtools.eos.ElkEOSFit": [[471, 5, 1, "", "__init__"], [472, 5, 1, "", "assert_attr"], [473, 5, 1, "", "assert_attr_lst"], [474, 5, 1, "", "assert_set_attr"], [475, 5, 1, "", "assert_set_attr_lst"], [476, 5, 1, "", "calc_bv"], [477, 5, 1, "", "check_set_attr"], [478, 5, 1, "", "check_set_attr_lst"], [479, 5, 1, "", "dump"], [480, 5, 1, "", "fit"], [481, 5, 1, "", "get_min"], [482, 5, 1, "", "get_return_attr"], [483, 5, 1, "", "get_spl_bv"], [484, 5, 1, "", "get_spl_ev"], [485, 5, 1, "", "get_spl_pv"], [486, 5, 1, "", "init_attr_lst"], [487, 5, 1, "", "is_set_attr"], [488, 5, 1, "", "is_set_attr_lst"], [489, 5, 1, "", "load"], [490, 5, 1, "", "raw_return"], [491, 5, 1, "", "raw_slice_get"], [492, 5, 1, "", "set_all"], [493, 5, 1, "", "set_attr_lst"], [494, 5, 1, "", "set_bv_method"], [495, 5, 1, "", "try_set_attr"], [496, 5, 1, "", "try_set_attr_lst"]], "pwtools.eos.EosFit": [[497, 5, 1, "", "__call__"], [497, 5, 1, "", "__init__"], [498, 5, 1, "", "bulkmod"], [499, 5, 1, "", "fit"], [500, 5, 1, "", "get_max"], [501, 5, 1, "", "get_min"], [502, 5, 1, "", "get_root"], [503, 5, 1, "", "is_mono"], [504, 5, 1, "", "pressure"], [505, 3, 1, "", "spl"]], "pwtools.eos.ExternEOS": [[506, 5, 1, "", "__init__"], [507, 5, 1, "", "assert_attr"], [508, 5, 1, "", "assert_attr_lst"], [509, 5, 1, "", "assert_set_attr"], [510, 5, 1, "", "assert_set_attr_lst"], [511, 5, 1, "", "calc_bv"], [512, 5, 1, "", "check_set_attr"], [513, 5, 1, "", "check_set_attr_lst"], [514, 5, 1, "", "dump"], [515, 5, 1, "", "fit"], [516, 5, 1, "", "get_min"], [517, 5, 1, "", "get_return_attr"], [518, 5, 1, "", "get_spl_bv"], [519, 5, 1, "", "get_spl_ev"], [520, 5, 1, "", "get_spl_pv"], [521, 5, 1, "", "init_attr_lst"], [522, 5, 1, "", "is_set_attr"], [523, 5, 1, "", "is_set_attr_lst"], [524, 5, 1, "", "load"], [525, 5, 1, "", "raw_return"], [526, 5, 1, "", "raw_slice_get"], [527, 5, 1, "", "set_all"], [528, 5, 1, "", "set_attr_lst"], [529, 5, 1, "", "set_bv_method"], [530, 5, 1, "", "try_set_attr"], [531, 5, 1, "", "try_set_attr_lst"]], "pwtools.eos.MaxDerivException": [[533, 5, 1, "", "with_traceback"]], "pwtools.eos.Vinet": [[535, 5, 1, "", "__call__"], [535, 5, 1, "", "__init__"], [536, 5, 1, "", "dct2lst"], [537, 5, 1, "", "deriv"], [538, 5, 1, "", "evaluate"], [539, 5, 1, "", "get_min"], [540, 5, 1, "", "lst2dct"]], "pwtools.io": [[546, 1, 1, "", "Ha"], [547, 4, 1, "", "ReadFactory"], [548, 1, 1, "", "eV"], [549, 2, 1, "", "load_h5"], [550, 1, 1, "", "read_cif"], [551, 1, 1, "", "read_cp2k_md"], [552, 1, 1, "", "read_cp2k_md_dcd"], [553, 1, 1, "", "read_cp2k_relax"], [554, 1, 1, "", "read_cp2k_scf"], [555, 1, 1, "", "read_cpmd_md"], [556, 1, 1, "", "read_cpmd_scf"], [557, 2, 1, "", "read_h5"], [558, 1, 1, "", "read_lammps_md_dcd"], [559, 1, 1, "", "read_lammps_md_txt"], [560, 1, 1, "", "read_pdb"], [561, 2, 1, "", "read_pickle"], [562, 1, 1, "", "read_pw_md"], [563, 1, 1, "", "read_pw_scf"], [564, 1, 1, "", "read_pw_vcmd"], [565, 2, 1, "", "wien_sgroup_input"], [566, 2, 1, "", "write_axsf"], [567, 2, 1, "", "write_cif"], [568, 2, 1, "", "write_h5"], [569, 2, 1, "", "write_lammps"], [570, 2, 1, "", "write_wien_sgroup"], [571, 2, 1, "", "write_xyz"]], "pwtools.io.ReadFactory": [[547, 5, 1, "", "__call__"], [547, 5, 1, "", "__init__"]], "pwtools.kpath": [[572, 4, 1, "", "SpecialPointsPath"], [573, 2, 1, "", "get_path_norm"], [574, 2, 1, "", "kpath"], [575, 2, 1, "", "plot_dis"]], "pwtools.kpath.SpecialPointsPath": [[572, 5, 1, "", "__init__"]], "pwtools.lammps": [[576, 2, 1, "", "struct_str"]], "pwtools.mpl": [[577, 4, 1, "", "Data2D"], [580, 3, 1, "", "Data3D"], [583, 4, 1, "", "Plot"], [587, 1, 1, "", "cc"], [588, 1, 1, "", "ccl"], [589, 1, 1, "", "ccm"], [590, 1, 1, "", "clc"], [591, 2, 1, "", "clean_ax3d"], [592, 1, 1, "", "cm"], [593, 1, 1, "", "cmc"], [594, 2, 1, "", "collect_legends"], [595, 2, 1, "", "color_ax"], [596, 1, 1, "", "colors"], [597, 1, 1, "", "colors_linestyles"], [598, 1, 1, "", "colors_markers"], [599, 1, 1, "", "cycle_colors"], [600, 1, 1, "", "cycle_colors_linestyles"], [601, 1, 1, "", "cycle_colors_markers"], [602, 1, 1, "", "cycle_linestyles_colors"], [603, 1, 1, "", "cycle_markers"], [604, 1, 1, "", "cycle_markers_colors"], [605, 2, 1, "", "fig_ax"], [606, 2, 1, "", "fig_ax3d"], [607, 2, 1, "", "get_2d_testdata"], [608, 1, 1, "", "ic"], [609, 1, 1, "", "icl"], [610, 1, 1, "", "icm"], [611, 1, 1, "", "ilc"], [612, 1, 1, "", "im"], [613, 1, 1, "", "imc"], [614, 1, 1, "", "iter_colors"], [615, 1, 1, "", "iter_colors_linestyles"], [616, 1, 1, "", "iter_colors_markers"], [617, 1, 1, "", "iter_linestyles"], [618, 1, 1, "", "iter_linestyles_colors"], [619, 1, 1, "", "iter_markers"], [620, 1, 1, "", "iter_markers_colors"], [621, 1, 1, "", "linestyles"], [622, 1, 1, "", "linestyles_colors"], [623, 2, 1, "", "make_axes_grid_fig"], [624, 1, 1, "", "markers"], [625, 1, 1, "", "markers_colors"], [626, 2, 1, "", "meshgridt"], [627, 2, 1, "", "new_axis"], [628, 2, 1, "", "plotlines3d"], [629, 2, 1, "", "prepare_plots"], [630, 2, 1, "", "smooth_color"], [631, 2, 1, "", "smooth_color_func"]], "pwtools.mpl.Data2D": [[577, 5, 1, "", "__init__"], [578, 5, 1, "", "copy"], [579, 5, 1, "", "update"]], "pwtools.mpl.Data3D": [[581, 5, 1, "", "copy"], [582, 5, 1, "", "update"]], "pwtools.mpl.Plot": [[583, 5, 1, "", "__init__"], [584, 5, 1, "", "collect_legends"], [585, 5, 1, "", "legend"], [586, 5, 1, "", "savefig"]], "pwtools.mttk": [[632, 1, 1, "", "a0"], [633, 2, 1, "", "add_doc"], [634, 2, 1, "", "barostat_mass_w"], [635, 2, 1, "", "barostat_mass_wg"], [636, 2, 1, "", "barostat_nhc_masses"], [637, 1, 1, "", "kb"], [638, 1, 1, "", "m0"], [639, 2, 1, "", "particle_nhc_masses"]], "pwtools.num": [[640, 4, 1, "", "DataND"], [642, 1, 1, "", "EPS"], [643, 4, 1, "", "Fit1D"], [648, 4, 1, "", "Interpol2D"], [650, 4, 1, "", "PolyFit"], [652, 4, 1, "", "PolyFit1D"], [657, 4, 1, "", "Spline"], [664, 2, 1, "", "deriv_spl"], [665, 2, 1, "", "distsq"], [666, 2, 1, "", "euler_matrix"], [667, 2, 1, "", "extend_array"], [668, 2, 1, "", "fempty"], [669, 2, 1, "", "findmin"], [670, 2, 1, "", "findroot"], [671, 2, 1, "", "inner_points_mask"], [672, 2, 1, "", "match_mask"], [673, 2, 1, "", "meshgridt"], [674, 2, 1, "", "norm"], [675, 2, 1, "", "norm_int"], [676, 2, 1, "", "normalize"], [677, 2, 1, "", "order_similar"], [678, 1, 1, "", "pi"], [679, 2, 1, "", "poly_powers"], [680, 2, 1, "", "poly_str"], [681, 2, 1, "", "polyfit"], [682, 2, 1, "", "polyval"], [683, 2, 1, "", "rms"], [684, 2, 1, "", "rms3d"], [685, 2, 1, "", "round_up_next_multiple"], [686, 2, 1, "", "sliceput"], [687, 2, 1, "", "slicetake"], [688, 2, 1, "", "sum"], [689, 2, 1, "", "vander"], [690, 2, 1, "", "vlinspace"]], "pwtools.num.DataND": [[640, 5, 1, "", "__init__"], [641, 5, 1, "", "a2_to_an"], [640, 3, 1, "", "axes"], [640, 3, 1, "", "nd"]], "pwtools.num.Fit1D": [[643, 5, 1, "", "__init__"], [644, 5, 1, "", "get_max"], [645, 5, 1, "", "get_min"], [646, 5, 1, "", "get_root"], [647, 5, 1, "", "is_mono"]], "pwtools.num.Interpol2D": [[648, 5, 1, "", "__call__"], [648, 5, 1, "", "__init__"], [649, 5, 1, "", "get_min"]], "pwtools.num.PolyFit": [[650, 5, 1, "", "__call__"], [650, 5, 1, "", "__init__"], [651, 5, 1, "", "get_min"]], "pwtools.num.PolyFit1D": [[652, 5, 1, "", "__call__"], [652, 5, 1, "", "__init__"], [653, 5, 1, "", "get_max"], [654, 5, 1, "", "get_min"], [655, 5, 1, "", "get_root"], [656, 5, 1, "", "is_mono"]], "pwtools.num.Spline": [[657, 5, 1, "", "__call__"], [657, 5, 1, "", "__init__"], [658, 5, 1, "", "get_max"], [659, 5, 1, "", "get_min"], [660, 5, 1, "", "get_root"], [661, 5, 1, "", "invsplev"], [662, 5, 1, "", "is_mono"], [663, 5, 1, "", "splev"]], "pwtools.parse": [[691, 1, 1, "", "AWK"], [692, 1, 1, "", "Ang"], [693, 1, 1, "", "Angstrom"], [694, 1, 1, "", "Bohr"], [695, 4, 1, "", "CifFile"], [726, 4, 1, "", "Cp2kDcdMDOutputFile"], [768, 4, 1, "", "Cp2kMDOutputFile"], [808, 4, 1, "", "Cp2kRelaxOutputFile"], [848, 4, 1, "", "Cp2kSCFOutputFile"], [878, 4, 1, "", "CpmdMDOutputFile"], [926, 4, 1, "", "CpmdSCFOutputFile"], [961, 4, 1, "", "DcdOutputFile"], [968, 1, 1, "", "Ha"], [969, 4, 1, "", "LammpsDcdMDOutputFile"], [1011, 4, 1, "", "LammpsTextMDOutputFile"], [1052, 4, 1, "", "PDBFile"], [1080, 4, 1, "", "PwMDOutputFile"], [1124, 4, 1, "", "PwSCFOutputFile"], [1160, 4, 1, "", "PwVCMDOutputFile"], [1205, 1, 1, "", "Ry"], [1206, 4, 1, "", "StructureFileParser"], [1231, 4, 1, "", "TrajectoryFileParser"], [1258, 2, 1, "", "arr1d_from_txt"], [1259, 2, 1, "", "arr2d_from_txt"], [1260, 2, 1, "", "axis_lens"], [1261, 1, 1, "", "eV"], [1262, 2, 1, "", "float_from_txt"], [1263, 1, 1, "", "fs"], [1264, 2, 1, "", "int_from_txt"], [1265, 2, 1, "", "nstep_from_txt"], [1266, 1, 1, "", "pi"], [1267, 1, 1, "", "ps"], [1268, 1, 1, "", "thart"], [1269, 2, 1, "", "traj_from_txt"]], "pwtools.parse.CifFile": [[695, 5, 1, "", "__init__"], [696, 5, 1, "", "apply_units"], [697, 5, 1, "", "assert_attr"], [698, 5, 1, "", "assert_attr_lst"], [699, 5, 1, "", "assert_set_attr"], [700, 5, 1, "", "assert_set_attr_lst"], [701, 5, 1, "", "check_set_attr"], [702, 5, 1, "", "check_set_attr_lst"], [703, 5, 1, "", "cif_clear_atom_symbol"], [704, 5, 1, "", "cif_str2float"], [705, 3, 1, "", "default_units"], [706, 5, 1, "", "dump"], [707, 5, 1, "", "get_cont"], [708, 5, 1, "", "get_coords"], [709, 5, 1, "", "get_coords_frac"], [710, 5, 1, "", "get_cryst_const"], [711, 5, 1, "", "get_return_attr"], [712, 5, 1, "", "get_struct"], [713, 5, 1, "", "get_symbols"], [714, 5, 1, "", "init_attr_lst"], [715, 5, 1, "", "is_set_attr"], [716, 5, 1, "", "is_set_attr_lst"], [717, 5, 1, "", "load"], [718, 5, 1, "", "parse"], [719, 5, 1, "", "raw_return"], [720, 5, 1, "", "raw_slice_get"], [721, 5, 1, "", "set_all"], [722, 5, 1, "", "set_attr_lst"], [723, 5, 1, "", "try_set_attr"], [724, 5, 1, "", "try_set_attr_lst"], [725, 5, 1, "", "update_units"]], "pwtools.parse.Cp2kDcdMDOutputFile": [[726, 5, 1, "", "__init__"], [727, 5, 1, "", "apply_units"], [728, 5, 1, "", "assert_attr"], [729, 5, 1, "", "assert_attr_lst"], [730, 5, 1, "", "assert_set_attr"], [731, 5, 1, "", "assert_set_attr_lst"], [732, 5, 1, "", "check_set_attr"], [733, 5, 1, "", "check_set_attr_lst"], [734, 3, 1, "", "default_units"], [735, 5, 1, "", "dump"], [736, 5, 1, "", "get_cell"], [737, 5, 1, "", "get_cont"], [738, 5, 1, "", "get_coords"], [739, 5, 1, "", "get_cryst_const"], [740, 5, 1, "", "get_econst"], [741, 5, 1, "", "get_ekin"], [742, 5, 1, "", "get_etot"], [743, 5, 1, "", "get_forces"], [744, 5, 1, "", "get_natoms"], [745, 5, 1, "", "get_nstep"], [746, 5, 1, "", "get_return_attr"], [747, 5, 1, "", "get_stress"], [748, 5, 1, "", "get_struct"], [749, 5, 1, "", "get_symbols"], [750, 5, 1, "", "get_temperature"], [751, 5, 1, "", "get_timestep"], [752, 5, 1, "", "get_traj"], [753, 5, 1, "", "get_velocity"], [754, 5, 1, "", "get_volume"], [755, 5, 1, "", "init_attr_lst"], [756, 5, 1, "", "is_set_attr"], [757, 5, 1, "", "is_set_attr_lst"], [758, 5, 1, "", "load"], [759, 5, 1, "", "parse"], [760, 5, 1, "", "raw_return"], [761, 5, 1, "", "raw_slice_get"], [762, 5, 1, "", "set_all"], [763, 5, 1, "", "set_attr_lst"], [764, 3, 1, "", "timeaxis"], [765, 5, 1, "", "try_set_attr"], [766, 5, 1, "", "try_set_attr_lst"], [767, 5, 1, "", "update_units"]], "pwtools.parse.Cp2kMDOutputFile": [[768, 5, 1, "", "__init__"], [769, 5, 1, "", "apply_units"], [770, 5, 1, "", "assert_attr"], [771, 5, 1, "", "assert_attr_lst"], [772, 5, 1, "", "assert_set_attr"], [773, 5, 1, "", "assert_set_attr_lst"], [774, 5, 1, "", "check_set_attr"], [775, 5, 1, "", "check_set_attr_lst"], [776, 3, 1, "", "default_units"], [777, 5, 1, "", "dump"], [778, 5, 1, "", "get_cell"], [779, 5, 1, "", "get_cont"], [780, 5, 1, "", "get_coords"], [781, 5, 1, "", "get_econst"], [782, 5, 1, "", "get_ekin"], [783, 5, 1, "", "get_etot"], [784, 5, 1, "", "get_forces"], [785, 5, 1, "", "get_natoms"], [786, 5, 1, "", "get_return_attr"], [787, 5, 1, "", "get_stress"], [788, 5, 1, "", "get_struct"], [789, 5, 1, "", "get_symbols"], [790, 5, 1, "", "get_temperature"], [791, 5, 1, "", "get_timestep"], [792, 5, 1, "", "get_traj"], [793, 5, 1, "", "get_velocity"], [794, 5, 1, "", "get_volume"], [795, 5, 1, "", "init_attr_lst"], [796, 5, 1, "", "is_set_attr"], [797, 5, 1, "", "is_set_attr_lst"], [798, 5, 1, "", "load"], [799, 5, 1, "", "parse"], [800, 5, 1, "", "raw_return"], [801, 5, 1, "", "raw_slice_get"], [802, 5, 1, "", "set_all"], [803, 5, 1, "", "set_attr_lst"], [804, 3, 1, "", "timeaxis"], [805, 5, 1, "", "try_set_attr"], [806, 5, 1, "", "try_set_attr_lst"], [807, 5, 1, "", "update_units"]], "pwtools.parse.Cp2kRelaxOutputFile": [[808, 5, 1, "", "__init__"], [809, 5, 1, "", "apply_units"], [810, 5, 1, "", "assert_attr"], [811, 5, 1, "", "assert_attr_lst"], [812, 5, 1, "", "assert_set_attr"], [813, 5, 1, "", "assert_set_attr_lst"], [814, 5, 1, "", "check_set_attr"], [815, 5, 1, "", "check_set_attr_lst"], [816, 3, 1, "", "default_units"], [817, 5, 1, "", "dump"], [818, 5, 1, "", "get_cell"], [819, 5, 1, "", "get_cont"], [820, 5, 1, "", "get_coords"], [821, 5, 1, "", "get_econst"], [822, 5, 1, "", "get_ekin"], [823, 5, 1, "", "get_etot"], [824, 5, 1, "", "get_forces"], [825, 5, 1, "", "get_natoms"], [826, 5, 1, "", "get_return_attr"], [827, 5, 1, "", "get_stress"], [828, 5, 1, "", "get_struct"], [829, 5, 1, "", "get_symbols"], [830, 5, 1, "", "get_temperature"], [831, 5, 1, "", "get_timestep"], [832, 5, 1, "", "get_traj"], [833, 5, 1, "", "get_velocity"], [834, 5, 1, "", "get_volume"], [835, 5, 1, "", "init_attr_lst"], [836, 5, 1, "", "is_set_attr"], [837, 5, 1, "", "is_set_attr_lst"], [838, 5, 1, "", "load"], [839, 5, 1, "", "parse"], [840, 5, 1, "", "raw_return"], [841, 5, 1, "", "raw_slice_get"], [842, 5, 1, "", "set_all"], [843, 5, 1, "", "set_attr_lst"], [844, 3, 1, "", "timeaxis"], [845, 5, 1, "", "try_set_attr"], [846, 5, 1, "", "try_set_attr_lst"], [847, 5, 1, "", "update_units"]], "pwtools.parse.Cp2kSCFOutputFile": [[848, 5, 1, "", "__init__"], [849, 5, 1, "", "apply_units"], [850, 5, 1, "", "assert_attr"], [851, 5, 1, "", "assert_attr_lst"], [852, 5, 1, "", "assert_set_attr"], [853, 5, 1, "", "assert_set_attr_lst"], [854, 5, 1, "", "check_set_attr"], [855, 5, 1, "", "check_set_attr_lst"], [856, 3, 1, "", "default_units"], [857, 5, 1, "", "dump"], [858, 5, 1, "", "get_cont"], [859, 5, 1, "", "get_etot"], [860, 5, 1, "", "get_forces"], [861, 5, 1, "", "get_natoms"], [862, 5, 1, "", "get_return_attr"], [863, 5, 1, "", "get_stress"], [864, 5, 1, "", "get_struct"], [865, 5, 1, "", "get_symbols"], [866, 5, 1, "", "init_attr_lst"], [867, 5, 1, "", "is_set_attr"], [868, 5, 1, "", "is_set_attr_lst"], [869, 5, 1, "", "load"], [870, 5, 1, "", "parse"], [871, 5, 1, "", "raw_return"], [872, 5, 1, "", "raw_slice_get"], [873, 5, 1, "", "set_all"], [874, 5, 1, "", "set_attr_lst"], [875, 5, 1, "", "try_set_attr"], [876, 5, 1, "", "try_set_attr_lst"], [877, 5, 1, "", "update_units"]], "pwtools.parse.CpmdMDOutputFile": [[878, 5, 1, "", "__init__"], [879, 5, 1, "", "apply_units"], [880, 5, 1, "", "assert_attr"], [881, 5, 1, "", "assert_attr_lst"], [882, 5, 1, "", "assert_set_attr"], [883, 5, 1, "", "assert_set_attr_lst"], [884, 5, 1, "", "check_set_attr"], [885, 5, 1, "", "check_set_attr_lst"], [886, 3, 1, "", "default_units"], [887, 5, 1, "", "dump"], [888, 5, 1, "", "get_cell"], [889, 5, 1, "", "get_cont"], [890, 5, 1, "", "get_coords"], [891, 5, 1, "", "get_coords_frac"], [892, 5, 1, "", "get_econst"], [893, 5, 1, "", "get_ekin"], [894, 5, 1, "", "get_ekin_cell"], [895, 5, 1, "", "get_ekin_elec"], [896, 5, 1, "", "get_ekinc"], [897, 5, 1, "", "get_ekinh"], [898, 5, 1, "", "get_etot"], [899, 5, 1, "", "get_forces"], [900, 5, 1, "", "get_natoms"], [901, 5, 1, "", "get_nkpoints"], [902, 5, 1, "", "get_nstep_scf"], [903, 5, 1, "", "get_return_attr"], [904, 5, 1, "", "get_scf_converged"], [905, 5, 1, "", "get_stress"], [906, 5, 1, "", "get_struct"], [907, 5, 1, "", "get_symbols"], [908, 5, 1, "", "get_temperature"], [909, 5, 1, "", "get_temperature_cell"], [910, 5, 1, "", "get_timestep"], [911, 5, 1, "", "get_traj"], [912, 5, 1, "", "get_velocity"], [913, 5, 1, "", "init_attr_lst"], [914, 5, 1, "", "is_set_attr"], [915, 5, 1, "", "is_set_attr_lst"], [916, 5, 1, "", "load"], [917, 5, 1, "", "parse"], [918, 5, 1, "", "raw_return"], [919, 5, 1, "", "raw_slice_get"], [920, 5, 1, "", "set_all"], [921, 5, 1, "", "set_attr_lst"], [922, 3, 1, "", "timeaxis"], [923, 5, 1, "", "try_set_attr"], [924, 5, 1, "", "try_set_attr_lst"], [925, 5, 1, "", "update_units"]], "pwtools.parse.CpmdSCFOutputFile": [[926, 5, 1, "", "__init__"], [927, 5, 1, "", "apply_units"], [928, 5, 1, "", "assert_attr"], [929, 5, 1, "", "assert_attr_lst"], [930, 5, 1, "", "assert_set_attr"], [931, 5, 1, "", "assert_set_attr_lst"], [932, 5, 1, "", "check_set_attr"], [933, 5, 1, "", "check_set_attr_lst"], [934, 3, 1, "", "default_units"], [935, 5, 1, "", "dump"], [936, 5, 1, "", "get_cell"], [937, 5, 1, "", "get_cont"], [938, 5, 1, "", "get_coords_frac"], [939, 5, 1, "", "get_etot"], [940, 5, 1, "", "get_forces"], [941, 5, 1, "", "get_natoms"], [942, 5, 1, "", "get_nkpoints"], [943, 5, 1, "", "get_nstep_scf"], [944, 5, 1, "", "get_return_attr"], [945, 5, 1, "", "get_scf_converged"], [946, 5, 1, "", "get_stress"], [947, 5, 1, "", "get_struct"], [948, 5, 1, "", "get_symbols"], [949, 5, 1, "", "init_attr_lst"], [950, 5, 1, "", "is_set_attr"], [951, 5, 1, "", "is_set_attr_lst"], [952, 5, 1, "", "load"], [953, 5, 1, "", "parse"], [954, 5, 1, "", "raw_return"], [955, 5, 1, "", "raw_slice_get"], [956, 5, 1, "", "set_all"], [957, 5, 1, "", "set_attr_lst"], [958, 5, 1, "", "try_set_attr"], [959, 5, 1, "", "try_set_attr_lst"], [960, 5, 1, "", "update_units"]], "pwtools.parse.DcdOutputFile": [[961, 5, 1, "", "__init__"], [962, 5, 1, "", "get_cell"], [963, 5, 1, "", "get_coords"], [964, 5, 1, "", "get_cryst_const"], [965, 5, 1, "", "get_natoms"], [966, 5, 1, "", "get_nstep"], [967, 5, 1, "", "get_volume"]], "pwtools.parse.LammpsDcdMDOutputFile": [[969, 5, 1, "", "__init__"], [970, 5, 1, "", "apply_units"], [971, 5, 1, "", "assert_attr"], [972, 5, 1, "", "assert_attr_lst"], [973, 5, 1, "", "assert_set_attr"], [974, 5, 1, "", "assert_set_attr_lst"], [975, 5, 1, "", "check_set_attr"], [976, 5, 1, "", "check_set_attr_lst"], [977, 3, 1, "", "default_units"], [978, 5, 1, "", "dump"], [979, 5, 1, "", "get_cell"], [980, 5, 1, "", "get_cont"], [981, 5, 1, "", "get_coords"], [982, 5, 1, "", "get_coords_frac"], [983, 5, 1, "", "get_cryst_const"], [984, 5, 1, "", "get_ekin"], [985, 5, 1, "", "get_etot"], [986, 5, 1, "", "get_forces"], [987, 5, 1, "", "get_natoms"], [988, 5, 1, "", "get_nstep"], [989, 5, 1, "", "get_return_attr"], [990, 5, 1, "", "get_stress"], [991, 5, 1, "", "get_struct"], [992, 5, 1, "", "get_symbols"], [993, 5, 1, "", "get_temperature"], [994, 5, 1, "", "get_timestep"], [995, 5, 1, "", "get_traj"], [996, 5, 1, "", "get_velocity"], [997, 5, 1, "", "get_volume"], [998, 5, 1, "", "init_attr_lst"], [999, 5, 1, "", "is_set_attr"], [1000, 5, 1, "", "is_set_attr_lst"], [1001, 5, 1, "", "load"], [1002, 5, 1, "", "parse"], [1003, 5, 1, "", "raw_return"], [1004, 5, 1, "", "raw_slice_get"], [1005, 5, 1, "", "set_all"], [1006, 5, 1, "", "set_attr_lst"], [1007, 3, 1, "", "timeaxis"], [1008, 5, 1, "", "try_set_attr"], [1009, 5, 1, "", "try_set_attr_lst"], [1010, 5, 1, "", "update_units"]], "pwtools.parse.LammpsTextMDOutputFile": [[1011, 5, 1, "", "__init__"], [1012, 5, 1, "", "apply_units"], [1013, 5, 1, "", "assert_attr"], [1014, 5, 1, "", "assert_attr_lst"], [1015, 5, 1, "", "assert_set_attr"], [1016, 5, 1, "", "assert_set_attr_lst"], [1017, 5, 1, "", "check_set_attr"], [1018, 5, 1, "", "check_set_attr_lst"], [1019, 3, 1, "", "default_units"], [1020, 5, 1, "", "dump"], [1021, 5, 1, "", "get_cell"], [1022, 5, 1, "", "get_cont"], [1023, 5, 1, "", "get_coords"], [1024, 5, 1, "", "get_coords_frac"], [1025, 5, 1, "", "get_cryst_const"], [1026, 5, 1, "", "get_ekin"], [1027, 5, 1, "", "get_etot"], [1028, 5, 1, "", "get_forces"], [1029, 5, 1, "", "get_natoms"], [1030, 5, 1, "", "get_return_attr"], [1031, 5, 1, "", "get_stress"], [1032, 5, 1, "", "get_struct"], [1033, 5, 1, "", "get_symbols"], [1034, 5, 1, "", "get_temperature"], [1035, 5, 1, "", "get_timestep"], [1036, 5, 1, "", "get_traj"], [1037, 5, 1, "", "get_velocity"], [1038, 5, 1, "", "get_volume"], [1039, 5, 1, "", "init_attr_lst"], [1040, 5, 1, "", "is_set_attr"], [1041, 5, 1, "", "is_set_attr_lst"], [1042, 5, 1, "", "load"], [1043, 5, 1, "", "parse"], [1044, 5, 1, "", "raw_return"], [1045, 5, 1, "", "raw_slice_get"], [1046, 5, 1, "", "set_all"], [1047, 5, 1, "", "set_attr_lst"], [1048, 3, 1, "", "timeaxis"], [1049, 5, 1, "", "try_set_attr"], [1050, 5, 1, "", "try_set_attr_lst"], [1051, 5, 1, "", "update_units"]], "pwtools.parse.PDBFile": [[1052, 5, 1, "", "__init__"], [1053, 5, 1, "", "apply_units"], [1054, 5, 1, "", "assert_attr"], [1055, 5, 1, "", "assert_attr_lst"], [1056, 5, 1, "", "assert_set_attr"], [1057, 5, 1, "", "assert_set_attr_lst"], [1058, 5, 1, "", "check_set_attr"], [1059, 5, 1, "", "check_set_attr_lst"], [1060, 3, 1, "", "default_units"], [1061, 5, 1, "", "dump"], [1062, 5, 1, "", "get_cont"], [1063, 5, 1, "", "get_coords"], [1064, 5, 1, "", "get_cryst_const"], [1065, 5, 1, "", "get_return_attr"], [1066, 5, 1, "", "get_struct"], [1067, 5, 1, "", "get_symbols"], [1068, 5, 1, "", "init_attr_lst"], [1069, 5, 1, "", "is_set_attr"], [1070, 5, 1, "", "is_set_attr_lst"], [1071, 5, 1, "", "load"], [1072, 5, 1, "", "parse"], [1073, 5, 1, "", "raw_return"], [1074, 5, 1, "", "raw_slice_get"], [1075, 5, 1, "", "set_all"], [1076, 5, 1, "", "set_attr_lst"], [1077, 5, 1, "", "try_set_attr"], [1078, 5, 1, "", "try_set_attr_lst"], [1079, 5, 1, "", "update_units"]], "pwtools.parse.PwMDOutputFile": [[1080, 5, 1, "", "__init__"], [1081, 5, 1, "", "apply_units"], [1082, 5, 1, "", "assert_attr"], [1083, 5, 1, "", "assert_attr_lst"], [1084, 5, 1, "", "assert_set_attr"], [1085, 5, 1, "", "assert_set_attr_lst"], [1086, 5, 1, "", "check_set_attr"], [1087, 5, 1, "", "check_set_attr_lst"], [1088, 3, 1, "", "default_units"], [1089, 5, 1, "", "dump"], [1090, 5, 1, "", "get_alat"], [1091, 5, 1, "", "get_cell"], [1092, 5, 1, "", "get_cell_unit"], [1093, 5, 1, "", "get_cont"], [1094, 5, 1, "", "get_coords"], [1095, 5, 1, "", "get_coords_frac"], [1096, 5, 1, "", "get_coords_unit"], [1097, 5, 1, "", "get_ekin"], [1098, 5, 1, "", "get_etot"], [1099, 5, 1, "", "get_forces"], [1100, 5, 1, "", "get_natoms"], [1101, 5, 1, "", "get_nkpoints"], [1102, 5, 1, "", "get_nstep_scf"], [1103, 5, 1, "", "get_return_attr"], [1104, 5, 1, "", "get_scf_converged"], [1105, 5, 1, "", "get_stress"], [1106, 5, 1, "", "get_struct"], [1107, 5, 1, "", "get_symbols"], [1108, 5, 1, "", "get_temperature"], [1109, 5, 1, "", "get_timestep"], [1110, 5, 1, "", "get_traj"], [1111, 5, 1, "", "init_attr_lst"], [1112, 5, 1, "", "is_set_attr"], [1113, 5, 1, "", "is_set_attr_lst"], [1114, 5, 1, "", "load"], [1115, 5, 1, "", "parse"], [1116, 5, 1, "", "raw_return"], [1117, 5, 1, "", "raw_slice_get"], [1118, 5, 1, "", "set_all"], [1119, 5, 1, "", "set_attr_lst"], [1120, 3, 1, "", "timeaxis"], [1121, 5, 1, "", "try_set_attr"], [1122, 5, 1, "", "try_set_attr_lst"], [1123, 5, 1, "", "update_units"]], "pwtools.parse.PwSCFOutputFile": [[1124, 5, 1, "", "__init__"], [1125, 5, 1, "", "apply_units"], [1126, 5, 1, "", "assert_attr"], [1127, 5, 1, "", "assert_attr_lst"], [1128, 5, 1, "", "assert_set_attr"], [1129, 5, 1, "", "assert_set_attr_lst"], [1130, 5, 1, "", "check_set_attr"], [1131, 5, 1, "", "check_set_attr_lst"], [1132, 3, 1, "", "default_units"], [1133, 5, 1, "", "dump"], [1134, 5, 1, "", "get_alat"], [1135, 5, 1, "", "get_cell"], [1136, 5, 1, "", "get_cont"], [1137, 5, 1, "", "get_coords"], [1138, 5, 1, "", "get_etot"], [1139, 5, 1, "", "get_forces"], [1140, 5, 1, "", "get_natoms"], [1141, 5, 1, "", "get_nkpoints"], [1142, 5, 1, "", "get_nstep_scf"], [1143, 5, 1, "", "get_return_attr"], [1144, 5, 1, "", "get_scf_converged"], [1145, 5, 1, "", "get_stress"], [1146, 5, 1, "", "get_struct"], [1147, 5, 1, "", "get_symbols"], [1148, 5, 1, "", "init_attr_lst"], [1149, 5, 1, "", "is_set_attr"], [1150, 5, 1, "", "is_set_attr_lst"], [1151, 5, 1, "", "load"], [1152, 5, 1, "", "parse"], [1153, 5, 1, "", "raw_return"], [1154, 5, 1, "", "raw_slice_get"], [1155, 5, 1, "", "set_all"], [1156, 5, 1, "", "set_attr_lst"], [1157, 5, 1, "", "try_set_attr"], [1158, 5, 1, "", "try_set_attr_lst"], [1159, 5, 1, "", "update_units"]], "pwtools.parse.PwVCMDOutputFile": [[1160, 5, 1, "", "__init__"], [1161, 5, 1, "", "apply_units"], [1162, 5, 1, "", "assert_attr"], [1163, 5, 1, "", "assert_attr_lst"], [1164, 5, 1, "", "assert_set_attr"], [1165, 5, 1, "", "assert_set_attr_lst"], [1166, 5, 1, "", "check_set_attr"], [1167, 5, 1, "", "check_set_attr_lst"], [1168, 3, 1, "", "default_units"], [1169, 5, 1, "", "dump"], [1170, 5, 1, "", "get_alat"], [1171, 5, 1, "", "get_cell"], [1172, 5, 1, "", "get_cell_unit"], [1173, 5, 1, "", "get_cont"], [1174, 5, 1, "", "get_coords"], [1175, 5, 1, "", "get_coords_frac"], [1176, 5, 1, "", "get_coords_unit"], [1177, 5, 1, "", "get_econst"], [1178, 5, 1, "", "get_ekin"], [1179, 5, 1, "", "get_etot"], [1180, 5, 1, "", "get_forces"], [1181, 5, 1, "", "get_natoms"], [1182, 5, 1, "", "get_nkpoints"], [1183, 5, 1, "", "get_nstep_scf"], [1184, 5, 1, "", "get_return_attr"], [1185, 5, 1, "", "get_scf_converged"], [1186, 5, 1, "", "get_stress"], [1187, 5, 1, "", "get_struct"], [1188, 5, 1, "", "get_symbols"], [1189, 5, 1, "", "get_temperature"], [1190, 5, 1, "", "get_timestep"], [1191, 5, 1, "", "get_traj"], [1192, 5, 1, "", "init_attr_lst"], [1193, 5, 1, "", "is_set_attr"], [1194, 5, 1, "", "is_set_attr_lst"], [1195, 5, 1, "", "load"], [1196, 5, 1, "", "parse"], [1197, 5, 1, "", "raw_return"], [1198, 5, 1, "", "raw_slice_get"], [1199, 5, 1, "", "set_all"], [1200, 5, 1, "", "set_attr_lst"], [1201, 3, 1, "", "timeaxis"], [1202, 5, 1, "", "try_set_attr"], [1203, 5, 1, "", "try_set_attr_lst"], [1204, 5, 1, "", "update_units"]], "pwtools.parse.StructureFileParser": [[1206, 5, 1, "", "__init__"], [1207, 5, 1, "", "apply_units"], [1208, 5, 1, "", "assert_attr"], [1209, 5, 1, "", "assert_attr_lst"], [1210, 5, 1, "", "assert_set_attr"], [1211, 5, 1, "", "assert_set_attr_lst"], [1212, 5, 1, "", "check_set_attr"], [1213, 5, 1, "", "check_set_attr_lst"], [1214, 3, 1, "", "default_units"], [1215, 5, 1, "", "dump"], [1216, 5, 1, "", "get_cont"], [1217, 5, 1, "", "get_return_attr"], [1218, 5, 1, "", "get_struct"], [1219, 5, 1, "", "init_attr_lst"], [1220, 5, 1, "", "is_set_attr"], [1221, 5, 1, "", "is_set_attr_lst"], [1222, 5, 1, "", "load"], [1223, 5, 1, "", "parse"], [1224, 5, 1, "", "raw_return"], [1225, 5, 1, "", "raw_slice_get"], [1226, 5, 1, "", "set_all"], [1227, 5, 1, "", "set_attr_lst"], [1228, 5, 1, "", "try_set_attr"], [1229, 5, 1, "", "try_set_attr_lst"], [1230, 5, 1, "", "update_units"]], "pwtools.parse.TrajectoryFileParser": [[1231, 5, 1, "", "__init__"], [1232, 5, 1, "", "apply_units"], [1233, 5, 1, "", "assert_attr"], [1234, 5, 1, "", "assert_attr_lst"], [1235, 5, 1, "", "assert_set_attr"], [1236, 5, 1, "", "assert_set_attr_lst"], [1237, 5, 1, "", "check_set_attr"], [1238, 5, 1, "", "check_set_attr_lst"], [1239, 3, 1, "", "default_units"], [1240, 5, 1, "", "dump"], [1241, 5, 1, "", "get_cont"], [1242, 5, 1, "", "get_return_attr"], [1243, 5, 1, "", "get_struct"], [1244, 5, 1, "", "get_traj"], [1245, 5, 1, "", "init_attr_lst"], [1246, 5, 1, "", "is_set_attr"], [1247, 5, 1, "", "is_set_attr_lst"], [1248, 5, 1, "", "load"], [1249, 5, 1, "", "parse"], [1250, 5, 1, "", "raw_return"], [1251, 5, 1, "", "raw_slice_get"], [1252, 5, 1, "", "set_all"], [1253, 5, 1, "", "set_attr_lst"], [1254, 3, 1, "", "timeaxis"], [1255, 5, 1, "", "try_set_attr"], [1256, 5, 1, "", "try_set_attr_lst"], [1257, 5, 1, "", "update_units"]], "pwtools.pwscf": [[1270, 1, 1, "", "EPS"], [1271, 2, 1, "", "atpos_str"], [1272, 2, 1, "", "atpos_str_fast"], [1273, 2, 1, "", "atspec_str"], [1274, 2, 1, "", "bool2str"], [1275, 2, 1, "", "ibrav2cell"], [1276, 2, 1, "", "kpoints_str"], [1277, 2, 1, "", "kpoints_str_pwin"], [1278, 2, 1, "", "kpoints_str_pwin_full"], [1279, 2, 1, "", "kpointstr"], [1280, 2, 1, "", "kpointstr_pwin"], [1281, 2, 1, "", "kpointstr_pwin2"], [1282, 2, 1, "", "read_all_dyn"], [1283, 2, 1, "", "read_dyn"], [1284, 2, 1, "", "read_dynmat"], [1285, 2, 1, "", "read_dynmat_ir_raman"], [1286, 2, 1, "", "read_dynmat_out"], [1287, 2, 1, "", "read_matdyn_freq"], [1288, 2, 1, "", "read_matdyn_modes"]], "pwtools.pydos": [[1289, 2, 1, "", "direct_pdos"], [1290, 2, 1, "", "fvacf"], [1291, 2, 1, "", "pdos"], [1292, 2, 1, "", "pyvacf"], [1293, 2, 1, "", "vacf_pdos"]], "pwtools.random": [[1294, 4, 1, "", "RandomStructure"], [1297, 6, 1, "", "RandomStructureFail"], [1298, 1, 1, "", "pi"], [1299, 2, 1, "", "random_struct"]], "pwtools.random.RandomStructure": [[1294, 5, 1, "", "__init__"], [1295, 5, 1, "", "get_random_cryst_const"], [1296, 5, 1, "", "get_random_struct"]], "pwtools.random.RandomStructureFail": [[1297, 5, 1, "", "with_traceback"]], "pwtools.rbf": [[25, 0, 0, "-", "core"], [26, 0, 0, "-", "hyperopt"]], "pwtools.rbf.core": [[1300, 1, 1, "", "JAX_MODE"], [1301, 4, 1, "", "Rbf"], [1309, 2, 1, "", "_np_distsq"], [1310, 2, 1, "", "estimate_p"], [1311, 2, 1, "", "euclidean_dists"], [1312, 2, 1, "", "jit"], [1313, 1, 1, "", "rbf_dct"], [1314, 2, 1, "", "rbf_gauss"], [1315, 2, 1, "", "rbf_inv_multi"], [1316, 2, 1, "", "rbf_multi"], [1317, 2, 1, "", "squared_dists"]], "pwtools.rbf.core.Rbf": [[1301, 5, 1, "", "__call__"], [1301, 5, 1, "", "__init__"], [1302, 5, 1, "", "deriv"], [1303, 5, 1, "", "deriv_jax"], [1304, 5, 1, "", "fit"], [1305, 5, 1, "", "fit_error"], [1306, 5, 1, "", "get_distsq"], [1307, 5, 1, "", "get_params"], [1308, 5, 1, "", "predict"]], "pwtools.rbf.hyperopt": [[1318, 4, 1, "", "FitError"], [1322, 4, 1, "", "RepeatedKFold"], [1323, 2, 1, "", "fit_opt"]], "pwtools.rbf.hyperopt.FitError": [[1318, 5, 1, "", "__call__"], [1318, 5, 1, "", "__init__"], [1319, 5, 1, "", "cv"], [1320, 5, 1, "", "err_cv"], [1321, 5, 1, "", "err_direct"]], "pwtools.rbf.hyperopt.RepeatedKFold": [[1322, 5, 1, "", "__init__"]], "pwtools.regex": [[1324, 1, 1, "", "float_re"]], "pwtools.signal": [[1325, 4, 1, "", "FIRFilter"], [1326, 2, 1, "", "acorr"], [1327, 2, 1, "", "cauchy"], [1328, 2, 1, "", "dft"], [1329, 2, 1, "", "ezfft"], [1330, 2, 1, "", "fft_1d_loop"], [1331, 2, 1, "", "fftsample"], [1332, 2, 1, "", "find_peaks"], [1333, 2, 1, "", "gauss"], [1334, 2, 1, "", "lorentz"], [1335, 2, 1, "", "mirror"], [1336, 2, 1, "", "odd"], [1337, 2, 1, "", "pad_zeros"], [1338, 2, 1, "", "scale"], [1339, 2, 1, "", "smooth"], [1340, 2, 1, "", "welch"]], "pwtools.signal.FIRFilter": [[1325, 5, 1, "", "__call__"], [1325, 5, 1, "", "__init__"]], "pwtools.sql": [[1341, 4, 1, "", "SQLEntry"], [1342, 4, 1, "", "SQLiteDB"], [1364, 2, 1, "", "find_sqltype"], [1365, 2, 1, "", "fix_sql_header"], [1366, 2, 1, "", "fix_sqltype"], [1367, 2, 1, "", "get_test_db"], [1368, 2, 1, "", "makedb"], [1369, 2, 1, "", "sql_column"], [1370, 2, 1, "", "sql_column_old"], [1371, 2, 1, "", "sql_matrix"]], "pwtools.sql.SQLEntry": [[1341, 5, 1, "", "__init__"]], "pwtools.sql.SQLiteDB": [[1342, 5, 1, "", "__init__"], [1343, 5, 1, "", "add_column"], [1344, 5, 1, "", "add_columns"], [1345, 5, 1, "", "attach_column"], [1346, 5, 1, "", "commit"], [1347, 5, 1, "", "create_table"], [1348, 5, 1, "", "execute"], [1349, 5, 1, "", "executemany"], [1350, 5, 1, "", "executescript"], [1351, 5, 1, "", "fill_column"], [1352, 5, 1, "", "finish"], [1353, 5, 1, "", "get_array"], [1354, 5, 1, "", "get_array1d"], [1355, 5, 1, "", "get_dict"], [1356, 5, 1, "", "get_header"], [1357, 5, 1, "", "get_list1d"], [1358, 5, 1, "", "get_max_rowid"], [1359, 5, 1, "", "get_single"], [1360, 5, 1, "", "get_table"], [1361, 5, 1, "", "has_column"], [1362, 5, 1, "", "has_table"], [1363, 5, 1, "", "set_table"]], "pwtools.symmetry": [[1372, 2, 1, "", "is_same_struct"], [1373, 2, 1, "", "spglib2struct"], [1374, 2, 1, "", "spglib_get_primitive"], [1375, 2, 1, "", "spglib_get_spacegroup"], [1376, 2, 1, "", "struct2spglib"]], "pwtools.thermo": [[1377, 4, 1, "", "Gibbs"], [1382, 4, 1, "", "HarmonicThermo"], [1391, 1, 1, "", "R"], [1392, 1, 1, "", "Ry_to_J"], [1393, 1, 1, "", "c0"], [1394, 2, 1, "", "coth"], [1395, 2, 1, "", "debye_func"], [1396, 1, 1, "", "eV"], [1397, 1, 1, "", "eV_by_Ang3_to_GPa"], [1398, 2, 1, "", "einstein_func"], [1399, 2, 1, "", "expansion"], [1400, 1, 1, "", "hplanck"], [1401, 1, 1, "", "kb"], [1402, 1, 1, "", "pi"]], "pwtools.thermo.Gibbs": [[1377, 5, 1, "", "__init__"], [1378, 5, 1, "", "calc_F"], [1379, 5, 1, "", "calc_G"], [1380, 5, 1, "", "calc_H"], [1381, 5, 1, "", "set_fitfunc"]], "pwtools.thermo.HarmonicThermo": [[1382, 5, 1, "", "__init__"], [1383, 5, 1, "", "cv"], [1384, 5, 1, "", "evib"], [1385, 5, 1, "", "fvib"], [1386, 5, 1, "", "isochoric_heat_capacity"], [1387, 5, 1, "", "svib"], [1388, 5, 1, "", "vibrational_entropy"], [1389, 5, 1, "", "vibrational_free_energy"], [1390, 5, 1, "", "vibrational_internal_energy"]], "pwtools.timer": [[1403, 4, 1, "", "TagTimer"]], "pwtools.timer.TagTimer": [[1403, 5, 1, "", "__init__"], [1404, 5, 1, "", "p"], [1405, 5, 1, "", "pt"], [1406, 5, 1, "", "t"]], "pwtools.verbose": [[1407, 1, 1, "", "VERBOSE"], [1408, 2, 1, "", "verbose"]], "pwtools.visualize": [[1409, 4, 1, "", "ViewFactory"], [1410, 2, 1, "", "assert_struct"], [1411, 1, 1, "", "avogadro_cmd"], [1412, 1, 1, "", "view_avogadro"], [1413, 1, 1, "", "view_jmol"], [1414, 1, 1, "", "view_vmd_axsf"], [1415, 1, 1, "", "view_vmd_xyz"], [1416, 1, 1, "", "view_xcrysden"]], "pwtools.visualize.ViewFactory": [[1409, 5, 1, "", "__call__"], [1409, 5, 1, "", "__init__"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "data", "Python data"], "2": ["py", "function", "Python function"], "3": ["py", "attribute", "Python attribute"], "4": ["py", "class", "Python class"], "5": ["py", "method", "Python method"], "6": ["py", "exception", "Python exception"]}, "objtypes": {"0": "py:module", "1": "py:data", "2": "py:function", "3": "py:attribute", "4": "py:class", "5": "py:method", "6": "py:exception"}, "terms": {"": [6, 10, 21, 34, 61, 62, 64, 65, 66, 86, 90, 96, 97, 112, 130, 139, 144, 145, 159, 269, 408, 427, 437, 547, 565, 570, 573, 584, 624, 627, 640, 645, 648, 652, 654, 657, 659, 661, 664, 666, 676, 682, 688, 969, 1080, 1124, 1275, 1276, 1279, 1287, 1288, 1290, 1291, 1301, 1313, 1323, 1325, 1328, 1331, 1337, 1342, 1369, 1370, 1374, 1380, 1403, 1409, 1418, 1419, 1422, 1425, 1426, 1427, 1428, 1430, 1431, 1433], "0": [0, 1, 3, 10, 34, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 61, 62, 63, 64, 65, 67, 80, 86, 90, 91, 96, 97, 98, 108, 112, 113, 116, 132, 144, 157, 160, 168, 171, 179, 180, 186, 187, 190, 195, 206, 261, 265, 268, 269, 317, 321, 324, 325, 374, 378, 381, 396, 402, 404, 406, 408, 410, 411, 413, 414, 415, 418, 419, 422, 423, 424, 426, 427, 431, 434, 436, 437, 440, 446, 447, 451, 452, 453, 454, 455, 465, 471, 490, 497, 502, 506, 525, 535, 565, 575, 577, 627, 628, 630, 631, 640, 646, 648, 652, 655, 657, 660, 661, 664, 665, 666, 667, 669, 670, 672, 675, 676, 677, 679, 681, 682, 684, 686, 688, 703, 719, 725, 760, 764, 767, 800, 804, 807, 840, 844, 847, 871, 877, 878, 886, 918, 922, 925, 934, 954, 960, 1003, 1007, 1010, 1011, 1044, 1048, 1051, 1073, 1079, 1080, 1088, 1090, 1116, 1120, 1123, 1124, 1132, 1134, 1153, 1159, 1168, 1170, 1197, 1201, 1204, 1224, 1230, 1250, 1254, 1257, 1260, 1269, 1271, 1275, 1277, 1278, 1280, 1281, 1284, 1285, 1287, 1288, 1290, 1291, 1294, 1301, 1304, 1309, 1310, 1318, 1319, 1321, 1324, 1325, 1326, 1327, 1328, 1329, 1331, 1332, 1333, 1334, 1335, 1337, 1339, 1341, 1342, 1345, 1369, 1371, 1377, 1380, 1382, 1393, 1395, 1399, 1405, 1406, 1419, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1430, 1431, 1433], "00": [144, 159, 269, 1285, 1433], "000": [61, 62], "0000": [98, 1285, 1287, 1288], "000000": [1287, 1288], "0000000": 1124, "00000000": 676, "0000000000": 1271, "0000000000000009": 652, "000000000000000e": 144, "00000000e": [269, 1331], "00000005": 648, "00000051": 648, "00000352": 648, "0000050": 1124, "00001397": 1433, "000061": 1288, "000096": 1288, "000180": 1288, "000202": 1288, "000231296097065": 1332, "000238": 1288, "000464": 1288, "0005": 1285, "0007122565950572": 1332, "00121567": 1433, "0018": 1285, "002602": [62, 65], "003782": 1288, "005": [116, 1331], "0067": [62, 65], "00674": 1287, "0072973525698": 187, "0073": 1285, "00794": [62, 65], "0079400000000001": 3, "008336": 1288, "01": [61, 65, 1011, 1433], "0107": [62, 65], "010832": 1288, "010856": 648, "012182": [3, 62, 65], "01385042": 648, "01616479": 1433, "018304": 1288, "02": [61, 65, 1331, 1430, 1433], "02214179e": 189, "025643": 1288, "026063": 1288, "0265": 1285, "02891": [62, 65], "02974457": 269, "02998": 10, "03": [61, 65, 1309, 1331, 1430], "031584": 1288, "034117471638147e": 176, "03588": [62, 65], "03617668": 269, "03671913": 1422, "037500": 1287, "03806": [62, 65], "04": [61, 65], "05": [61, 65, 191, 404, 437, 447], "054": [62, 65], "054571628e": 199, "058042": 151, "06": [61, 65, 203], "061497": 1288, "06161700e": 269, "064109": 1431, "065": [62, 65], "066513": 1288, "06793023": 1433, "06925208": 648, "07": [61, 62, 65], "073636268676152": 688, "0762": 1285, "078": [62, 65], "08": 1395, "084": [62, 65], "085499": 1288, "0855": [62, 65], "086633": 1288, "086854": 1288, "0872": 1285, "089511": 1288, "09": 23, "0983": [62, 65], "0b100": [54, 55, 63], "0d": 926, "0d5_10": 136, "0e": [61, 62], "0j": 676, "0x2c52320": 56, "0x3615ab8": 134, "0x3615b48": 134, "1": [1, 3, 10, 19, 23, 34, 41, 42, 44, 45, 46, 47, 49, 50, 51, 52, 56, 58, 60, 61, 62, 63, 64, 65, 79, 80, 89, 90, 96, 97, 98, 104, 108, 112, 125, 126, 129, 130, 134, 144, 151, 154, 155, 159, 160, 161, 162, 188, 192, 193, 199, 201, 203, 211, 222, 233, 239, 250, 260, 261, 268, 269, 280, 289, 295, 306, 316, 317, 324, 337, 346, 352, 363, 373, 374, 381, 395, 396, 402, 406, 408, 411, 414, 418, 419, 422, 423, 426, 427, 431, 434, 435, 436, 437, 438, 440, 441, 443, 446, 447, 450, 452, 454, 455, 467, 468, 471, 489, 490, 500, 506, 524, 525, 537, 538, 544, 548, 565, 566, 574, 575, 577, 583, 594, 627, 628, 629, 630, 631, 634, 637, 640, 643, 644, 645, 648, 650, 652, 653, 654, 657, 658, 659, 661, 664, 665, 666, 667, 669, 670, 671, 672, 675, 676, 677, 679, 681, 686, 687, 688, 689, 695, 717, 719, 725, 726, 758, 760, 767, 798, 800, 807, 838, 840, 847, 869, 871, 877, 878, 886, 916, 918, 925, 926, 934, 952, 954, 960, 1001, 1003, 1010, 1011, 1042, 1044, 1051, 1071, 1073, 1079, 1080, 1088, 1090, 1114, 1116, 1123, 1124, 1132, 1134, 1151, 1153, 1159, 1168, 1170, 1195, 1197, 1204, 1222, 1224, 1230, 1248, 1250, 1257, 1260, 1261, 1271, 1272, 1273, 1275, 1278, 1281, 1283, 1284, 1285, 1287, 1288, 1289, 1290, 1291, 1292, 1294, 1301, 1302, 1309, 1310, 1313, 1315, 1318, 1319, 1323, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1339, 1340, 1342, 1345, 1351, 1353, 1355, 1357, 1368, 1371, 1373, 1374, 1377, 1382, 1395, 1396, 1398, 1399, 1401, 1403, 1405, 1406, 1419, 1422, 1423, 1424, 1425, 1426, 1427, 1430, 1431, 1433], "10": [54, 55, 62, 63, 64, 65, 98, 113, 165, 166, 210, 239, 245, 250, 269, 295, 301, 306, 352, 358, 363, 418, 423, 427, 435, 436, 437, 454, 455, 463, 481, 516, 574, 577, 595, 630, 631, 640, 648, 652, 657, 677, 686, 687, 692, 693, 926, 1285, 1301, 1304, 1309, 1325, 1329, 1332, 1337, 1339, 1422, 1423, 1425, 1426, 1433], "100": [10, 12, 64, 65, 406, 410, 413, 418, 437, 451, 453, 575, 628, 640, 657, 686, 926, 1260, 1294, 1301, 1309, 1325, 1328, 1331, 1339, 1371, 1377, 1395, 1399, 1419, 1421, 1422, 1423, 1433], "1000": [12, 58, 98, 1011, 1294, 1325, 1422, 1426, 1430], "10000": [12, 1433], "100000": 1426, "1000000000": 171, "100th": 437, "101": [62, 64, 65, 441, 1287, 1339], "1016541": 269, "101915": 1399, "102": [62, 64, 65], "1024": [36, 37, 38], "103": [64, 65], "104": [64, 65], "105": [64, 65], "106": [62, 64, 65], "107": [62, 64, 65], "107383": 1288, "108": [64, 65], "108966": 1288, "109": [64, 65, 471], "10938215e": [202, 638], "109737": 183, "10int": [454, 455], "10x": 1304, "11": [61, 64, 65, 89, 127, 167, 185, 427, 464, 632, 640, 642, 686, 694, 1270, 1285, 1339, 1425, 1430], "110": [64, 65], "111": [64, 65], "1117": 19, "112": [62, 64, 65], "113": [64, 65], "114": [12, 62, 64, 65], "115": [64, 65], "11533691": 269, "116": [62, 64, 65], "116601": 1288, "117": [64, 65], "118": [62, 65], "11844733769775123": 452, "11844733769775125": 452, "11844733769775126": 452, "12": [10, 62, 64, 65, 98, 196, 205, 427, 640, 686, 688, 1267, 1275, 1285, 1328], "120": [1294, 1325, 1433], "1200": 1399, "121": [62, 65], "121991": 1288, "123": 1011, "123456": 1433, "126": [62, 65], "12697068": 1433, "127": [62, 65], "128": [441, 1337], "13": [64, 65, 157, 182, 253, 254, 269, 309, 310, 366, 367, 427, 634, 635, 639, 640, 1088, 1132, 1168, 1275, 1326, 1425], "130217": 1288, "131": [62, 65], "1311": 1285, "13154023": 269, "132": [62, 65], "137": [62, 65], "138": [62, 65], "13850416": 648, "14": [62, 64, 65, 427, 640, 1275, 1287, 1288], "140": [62, 65], "14000000e": 1433, "14159265": 423, "141592653589793": [204, 432, 678, 1266, 1272, 1298, 1402], "1415926535897931e": 159, "144": [62, 65], "145": [62, 65], "15": [61, 62, 64, 65, 98, 197, 269, 640, 648, 878, 1263, 1288, 1339, 1422], "150": [62, 65], "151": [62, 65, 1433], "1512203": 1433, "157": [62, 65], "158": [62, 65], "16": [61, 64, 65, 112, 127, 141, 157, 269, 640, 642, 1270, 1271, 1285, 1288, 1326, 1337, 1342, 1382], "160": [194, 545, 1397], "160217648700": 195, "16196033": 269, "162": [62, 65], "164": [62, 65], "167": [62, 65], "168": [62, 65], "1696": [435, 437], "16e": [144, 157, 159, 1271], "17": [64, 65, 207, 208, 209, 640, 1268, 1382], "172149": 1288, "173": [62, 65], "174": [62, 65], "178": [62, 65], "17807": 1422, "17808": 1422, "17810": 1422, "17811": 1422, "17812": 1422, "179": 1332, "1797": [62, 65], "179871969961165e": [181, 1392], "17987197e": [170, 178, 184, 534, 1205], "18": [62, 64, 65, 169, 170, 172, 174, 175, 178, 181, 184, 532, 534, 546, 640, 968, 1205, 1285, 1392], "180": [62, 65, 406, 657], "18088339": 269, "183": [62, 65], "186": [62, 65], "19": [61, 64, 65, 192, 193, 269, 544, 548, 640, 1261, 1285, 1396, 1422], "190": [62, 65], "192": [62, 65], "1937": 471, "1947": 471, "195": [62, 65], "19512195j": 676, "196": [62, 65], "1989": [435, 437, 471], "1992": 1328, "1993": 1291, "1995": 437, "1996": 19, "1998": 471, "1_0": 1302, "1_1": 1302, "1_n": 1302, "1d": [3, 60, 98, 157, 233, 289, 346, 405, 406, 408, 418, 422, 426, 427, 436, 437, 441, 444, 447, 448, 467, 468, 497, 498, 504, 506, 537, 538, 577, 628, 640, 643, 648, 649, 650, 651, 652, 657, 664, 669, 670, 671, 672, 673, 675, 677, 681, 682, 684, 690, 1283, 1284, 1285, 1290, 1291, 1292, 1295, 1301, 1302, 1303, 1308, 1319, 1325, 1326, 1328, 1329, 1330, 1332, 1333, 1337, 1339, 1377, 1378, 1382, 1395, 1398, 1419, 1423, 1428], "1e": [10, 112, 113, 165, 166, 191, 197, 205, 210, 269, 404, 463, 481, 516, 648, 657, 692, 693, 969, 1263, 1267, 1301, 1304, 1318, 1326, 1382, 1395, 1399, 1422, 1425, 1433], "1e5": [441, 1339], "1j": 1328, "1st": [462, 636, 639, 645, 652, 654, 657, 659, 669, 682, 1288, 1301, 1382, 1406], "2": [0, 1, 10, 19, 23, 38, 39, 42, 43, 46, 47, 48, 50, 54, 55, 56, 61, 62, 63, 64, 65, 67, 72, 79, 89, 96, 97, 98, 104, 125, 126, 127, 130, 134, 141, 151, 154, 155, 157, 161, 162, 170, 178, 181, 184, 207, 208, 217, 238, 239, 250, 260, 269, 275, 294, 295, 306, 316, 332, 351, 352, 363, 373, 388, 395, 406, 408, 418, 422, 423, 427, 431, 434, 437, 438, 440, 441, 446, 447, 452, 471, 477, 480, 489, 497, 506, 512, 515, 524, 534, 543, 565, 574, 575, 577, 583, 594, 629, 635, 640, 642, 648, 649, 652, 657, 661, 665, 666, 667, 672, 674, 677, 679, 686, 687, 688, 701, 717, 732, 758, 774, 798, 814, 838, 854, 869, 884, 916, 932, 952, 975, 1001, 1011, 1017, 1042, 1058, 1071, 1086, 1114, 1124, 1130, 1151, 1166, 1195, 1205, 1212, 1222, 1237, 1248, 1260, 1268, 1270, 1271, 1272, 1273, 1275, 1285, 1287, 1288, 1290, 1291, 1292, 1294, 1301, 1309, 1310, 1313, 1314, 1315, 1316, 1318, 1319, 1325, 1326, 1327, 1328, 1329, 1331, 1332, 1334, 1335, 1337, 1339, 1341, 1342, 1355, 1357, 1368, 1371, 1374, 1377, 1382, 1392, 1403, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1430, 1431, 1433], "20": [6, 54, 56, 57, 59, 62, 64, 65, 239, 295, 352, 427, 497, 574, 607, 630, 631, 640, 648, 687, 926, 1285, 1301, 1325, 1329, 1339, 1377, 1422, 1430, 1433], "200": [62, 65, 418, 424, 437, 497, 677, 686, 1294, 1329, 1331, 1339, 1371, 1431], "2000": [98, 437], "20000": 437, "2007": 151, "2009": 1399, "200th": 437, "200x21": 1431, "2010": 23, "204": [62, 65], "207": [62, 65], "208": [62, 65], "209": [62, 65], "21": [61, 64, 65, 640, 1339, 1430, 1431, 1433], "210": [62, 65], "21088541": 269, "21138386": 173, "211383860484776": [734, 776, 816, 856, 886, 934], "217": [62, 65], "2176487": [194, 545, 1397], "218314": 1288, "22": [61, 62, 64, 65, 89, 157, 176, 640, 1285], "22033082": 269, "220446049250313e": [127, 141, 157, 642, 1270, 1271], "222": [62, 65], "22244653": 1433, "223": [62, 65], "224": [62, 65], "22400000e": 1433, "224107": 541, "225": 1433, "225020": 1288, "226": [62, 65], "227": [3, 62, 65], "23": [62, 64, 65, 90, 189, 201, 427, 637, 640, 1273, 1287, 1369, 1401], "231": [62, 65], "232": [62, 65], "2338": 1287, "23456789": 1124, "237": [62, 65], "238": [62, 65], "2385": 1287, "24": [61, 62, 64, 65, 640, 1288], "241": 12, "241509647120417e": 175, "242": [62, 65], "243": [62, 65], "244": [62, 65], "24555934": 269, "247": [62, 65], "25": [62, 64, 65, 1088, 1132, 1168, 1309, 1369, 1370, 1433], "2500": [1377, 1399], "251": [62, 65], "252": [62, 65, 1285], "256": 1337, "2566370614359173e": 203, "257": [62, 65], "258": [62, 65, 1422, 1433], "25804864": 1433, "259": [62, 65], "26": [61, 62, 64, 65, 157, 1287, 1288], "262": [62, 65], "263": 1431, "2647": 1285, "26524368": 1433, "267": [62, 65], "268": [62, 65], "27": [64, 65, 173, 188, 233, 269, 289, 346, 734, 776, 816, 856, 886, 934, 1285, 1288, 1422], "270": [62, 65], "271": [62, 65], "272": [62, 65], "276": [62, 65], "28": [61, 62, 64, 65], "280": [62, 65], "281": [62, 65], "28147351": 269, "28318531": 423, "284": [62, 65], "285": [62, 65], "288": [62, 65], "28800000e": 1433, "2886722": 1124, "289": [62, 65], "29": [23, 64, 65, 648], "2917720859e": [167, 185, 464, 632, 694], "293": [62, 65], "294": [62, 65], "29849056": 269, "29944506": 1433, "299792458": [190, 1393], "29979245800": 206, "2d": [58, 59, 60, 96, 98, 126, 157, 410, 418, 419, 420, 428, 431, 440, 451, 480, 506, 515, 577, 583, 607, 628, 629, 640, 648, 665, 667, 673, 677, 679, 682, 689, 878, 888, 936, 1091, 1171, 1260, 1269, 1288, 1301, 1302, 1303, 1308, 1337, 1353, 1377, 1378, 1419, 1433], "2e": [543, 1382], "2e3": 1331, "2f": 157, "2g": 1377, "2nd": [437, 636, 639, 1326, 1406], "2to3": 1430, "2x2x1": 440, "2x2x2": 440, "3": [3, 6, 12, 23, 38, 39, 42, 43, 44, 45, 47, 48, 49, 51, 52, 55, 56, 58, 59, 60, 61, 62, 64, 65, 96, 97, 98, 112, 113, 123, 125, 126, 136, 154, 155, 157, 159, 161, 162, 204, 211, 239, 269, 295, 325, 352, 404, 406, 408, 409, 412, 413, 418, 419, 420, 422, 423, 425, 427, 429, 431, 432, 434, 435, 436, 437, 440, 444, 445, 447, 448, 449, 450, 452, 453, 456, 458, 467, 468, 480, 497, 498, 501, 504, 506, 515, 537, 538, 565, 569, 572, 573, 574, 575, 576, 583, 594, 631, 634, 635, 636, 639, 640, 648, 650, 657, 664, 667, 672, 676, 677, 678, 681, 686, 688, 689, 754, 794, 834, 878, 900, 941, 1011, 1124, 1260, 1266, 1269, 1271, 1272, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1283, 1284, 1285, 1287, 1288, 1290, 1291, 1292, 1294, 1298, 1301, 1309, 1326, 1328, 1331, 1332, 1337, 1339, 1355, 1368, 1373, 1377, 1382, 1395, 1399, 1402, 1419, 1421, 1422, 1423, 1424, 1426, 1427, 1430, 1431, 1433], "30": [62, 64, 65, 268, 324, 381, 402, 418, 497, 575, 648, 725, 767, 807, 847, 877, 925, 960, 1010, 1051, 1079, 1123, 1159, 1204, 1230, 1257, 1421], "300": [98, 471, 686, 1011, 1332, 1339, 1377, 1433], "3000": [98, 437], "30000000e": 1433, "3012421": 461, "3033": 1287, "305": [62, 65], "31": [3, 61, 64, 65, 202, 638, 1285], "310": 98, "312": 98, "314472": [177, 1391], "31569915768": 183, "32": [61, 62, 64, 65, 1272, 1285, 1337], "323": [61, 62], "327": [62, 65], "3289841960777247": 180, "33": [64, 65, 648], "330246": 1288, "3306690738754696e": 1382, "33081055": 1433, "33333333e": 1433, "34": [64, 65, 198, 199, 200, 1273, 1400], "35": [12, 62, 64, 65, 112, 157, 1285], "35355339": 418, "35974394e": [169, 172, 174, 532, 546, 968], "36": [54, 55, 61, 62, 63, 64, 65], "36208784": 269, "37": [64, 65, 1287], "3776": 1287, "3782": 704, "38": [61, 62, 64, 65], "3806504e": [201, 637, 1401], "38315829": 1422, "3833": [62, 65], "39": [61, 62, 64, 65, 157, 1309], "39269908": 423, "39398397": 269, "3d": [2, 58, 59, 60, 96, 406, 410, 413, 418, 419, 431, 440, 441, 451, 453, 629, 684, 878, 1091, 1171, 1269, 1283, 1284, 1290, 1291, 1292, 1377, 1378, 1419, 1422, 1423, 1431], "3m": 1433, "3rd": [471, 636, 639, 1294, 1406], "4": [10, 54, 55, 61, 62, 63, 64, 65, 98, 112, 125, 126, 169, 172, 174, 209, 239, 269, 295, 352, 404, 408, 422, 423, 427, 437, 440, 447, 481, 516, 532, 546, 565, 628, 636, 639, 640, 648, 667, 672, 676, 686, 688, 768, 968, 1011, 1124, 1275, 1285, 1294, 1309, 1319, 1326, 1332, 1337, 1421, 1427, 1430, 1433], "40": [62, 64, 65, 497, 1309], "402992": 1288, "40594891": 269, "41": [61, 64, 65], "411": [62, 65], "41219704": 269, "41887902": 423, "418884326505e": [207, 208, 1268], "42": [61, 62, 64, 65], "4209142": 1124, "422063193140694": [734, 776, 816, 856, 886, 934], "43": [64, 65, 1309], "4314": 1377, "438": 1309, "44": [61, 62, 64, 65, 1285], "4419": 1285, "45": [61, 64, 65], "453": [62, 65], "455": [12, 1287], "456": 1287, "4562947": 269, "457": 1287, "46": [61, 64, 65], "4678": [62, 65], "47": [61, 62, 64, 65, 1291], "47241757": 269, "4762002": 595, "47879679": 269, "48": [61, 64, 65], "4863": 1291, "49": [62, 64, 65, 471, 1433], "49245281": 269, "49846847": 269, "49969369": 269, "4d": 1288, "4f": 98, "4j": 676, "4th": 471, "5": [19, 61, 62, 64, 65, 112, 113, 125, 161, 167, 176, 179, 185, 239, 268, 269, 295, 324, 352, 381, 402, 406, 415, 418, 422, 423, 427, 434, 464, 497, 575, 577, 628, 631, 632, 640, 648, 652, 657, 672, 676, 677, 686, 687, 694, 725, 767, 807, 847, 877, 925, 960, 1010, 1051, 1079, 1123, 1124, 1159, 1204, 1230, 1257, 1260, 1282, 1285, 1287, 1291, 1318, 1319, 1323, 1326, 1327, 1331, 1332, 1334, 1337, 1342, 1377, 1381, 1382, 1399, 1419, 1421, 1422, 1423, 1426, 1427, 1430, 1433], "50": [58, 62, 64, 65, 426, 437, 497, 577, 627, 652, 1294, 1301, 1325, 1339, 1369, 1370, 1426, 1427, 1431, 1433], "500": [113, 424, 436, 497, 575, 1339, 1422, 1423, 1427, 1433], "5000": [1288, 1430], "5000050": 1124, "50th": 437, "51": [61, 62, 64, 65, 734, 776, 816, 856, 886, 934, 1431, 1433], "512": 1337, "52": [64, 65, 127, 642, 1270], "52833103": 269, "52917720859": [168, 186, 886, 934, 1088, 1132, 1168, 1424], "53": [61, 64, 65, 1309], "53186403": 595, "54": [61, 62, 64, 65, 157, 1287, 1433], "544": 1288, "546": [62, 65], "548": 1285, "55": [62, 64, 65], "56": [64, 65], "5627": 1285, "57": [61, 64, 65, 435, 437], "5712": 1285, "57441444": 269, "57668453": 269, "5773532": 1124, "57943468": 269, "58": [61, 62, 64, 65], "58148870118305": [1422, 1433], "59": [62, 64, 65], "59033133": 1433, "5931": 1287, "59727965": 269, "5e": [61, 62, 1011, 1331, 1399], "5k": 1380, "5th": [1422, 1433], "6": [38, 39, 61, 62, 64, 65, 112, 123, 125, 175, 189, 198, 200, 211, 269, 325, 409, 410, 411, 412, 414, 418, 422, 423, 427, 445, 449, 450, 451, 456, 458, 640, 648, 686, 900, 941, 969, 1275, 1285, 1287, 1295, 1326, 1328, 1332, 1337, 1339, 1399, 1400, 1425, 1430, 1431, 1433], "60": [64, 65, 1294, 1325, 1332, 1421, 1422], "60203333e": 1433, "602176487e": [192, 193, 269, 544, 548, 1261, 1396, 1422], "603": 1285, "60569193": 182, "605691930242388": [1088, 1132, 1168], "61": [64, 65], "62": [61, 62, 64, 65], "6201379367036871e": 269, "6208499": 1124, "62606896e": [198, 200, 1400], "62630805": 269, "63": [62, 64, 65], "63239207": 269, "64": [61, 62, 64, 65, 127, 642, 1270, 1285, 1309, 1337], "64588604295": 269, "64911187": 269, "65": [62, 64, 65], "656": 1285, "66": [61, 64, 65, 157], "6600": 1285, "6605387820000001e": [269, 1422], "660538782e": [188, 233, 289, 346], "663631": 1288, "669": 1285, "67": [64, 65, 1285], "68": [64, 65], "68243941": 269, "68611164": 1433, "69": [61, 62, 64, 65], "6910": 1285, "6934": [62, 65], "7": [10, 61, 64, 65, 125, 161, 253, 254, 269, 309, 310, 366, 367, 640, 672, 688, 704, 926, 1285, 1294, 1309, 1326, 1332, 1337, 1339, 1430, 1433], "70": [64, 65, 541, 1325], "71": [61, 62, 64, 65, 471], "711031596570347": [1088, 1132, 1168], "71536701": 1422, "718372": 1288, "72": [62, 64, 65], "723": [62, 65], "72534409": 269, "73": [64, 65], "7306": 1285, "7366": 1285, "738": 1285, "74": [62, 64, 65], "7414": 1285, "7434": 1285, "74506882": 269, "7465": 1285, "74763576": 1433, "74831561": 1422, "75": [61, 64, 65, 157, 1369, 1370], "7500": 1285, "75609756": 676, "7569": 1287, "76": [61, 62, 64, 65, 1421], "76776695": 418, "77": [64, 65], "777": 1371, "78": [62, 64, 65], "79": [62, 64, 65], "798": [62, 65], "8": [19, 61, 62, 64, 65, 98, 112, 177, 196, 423, 427, 569, 576, 640, 648, 1285, 1288, 1318, 1337, 1342, 1374, 1377, 1391, 1399, 1421, 1425, 1433], "80": [64, 65, 112, 113, 1325], "80000000e": 1433, "8000643": 1124, "81": [64, 65], "811": [62, 65], "81153398": 1433, "818": [62, 65], "82": [64, 65, 1285], "82271468": 648, "825": 1433, "82842712": 427, "829": 1288, "83": [62, 64, 65], "83776865301e": 209, "84": [61, 62, 64, 65], "84217708": 269, "845": [62, 65], "85": [62, 64, 65], "854187817620389e": 196, "86": [64, 65], "867": [62, 65], "8682": [62, 65], "869": 1287, "87": [19, 61, 62, 64, 65], "871": 1287, "87207221": 269, "8789": 1124, "88": [62, 64, 65], "8811": 1287, "881828": 1288, "8832": 1287, "88798": 151, "888": 1371, "889": 1288, "89": [61, 64, 65, 1431], "89717342": 269, "9": [3, 6, 61, 62, 64, 65, 202, 211, 427, 452, 454, 455, 638, 640, 672, 679, 686, 703, 1285, 1291, 1309, 1337, 1433], "90": [64, 65, 269, 565, 1332, 1377, 1433], "90318748": 269, "904": [62, 65], "90413645": 1422, "90447": [62, 65], "9045": 1285, "9054519": [62, 65], "90547": [62, 65], "9055": [62, 65], "90566621": 269, "90585": [62, 65], "90638": [62, 65], "9075": 1285, "90765": [62, 65], "91": [62, 64, 65, 565], "92": [61, 62, 64, 65, 565], "9216": [62, 65], "922": 1285, "92535": [62, 65], "93": [64, 65], "93032": [62, 65], "93127985": 269, "9317": 1285, "933195": [62, 65], "93421": [62, 65], "938045": [62, 65], "94": [61, 64, 65, 1399], "941": [62, 65], "9415": [62, 65], "94788": [62, 65], "948": [62, 65], "95": [61, 62, 64, 65], "955912": [62, 65], "96": [61, 62, 64, 65], "96259264": 1422, "964": [62, 65], "966569": [62, 65], "9668": [62, 65], "968443": 1288, "97": [64, 65, 157], "973762": [62, 65], "98": [61, 62, 64, 65], "9804": [62, 65], "9806375": 269, "981538": 1287, "9815386": [62, 65], "98625597": 269, "98639824": 269, "98976928": [62, 65], "99": [61, 64, 65], "9961": [62, 65], "99762256": 648, "9984032": [62, 65], "998e10": 10, "999": 406, "9994": [62, 65], "99999798": 648, "999998055132549": 1332, "99999808": 648, "99999959": 648, "9eedd": 1324, "9int": [454, 455], "A": [6, 86, 90, 96, 161, 438, 441, 471, 565, 575, 666, 673, 679, 687, 878, 1080, 1341, 1377, 1419, 1422, 1424, 1427], "ASE": [6, 112, 123, 222, 269, 280, 337, 407, 427, 442, 569, 576, 1417, 1420, 1428, 1429, 1431], "AT": [408, 437, 447], "As": [19, 21, 64, 65, 66, 1325, 1425], "At": [64, 65, 66, 1431], "BUT": 1309, "Be": [64, 65, 66], "But": [89, 93, 418, 577, 677, 1275, 1330, 1339, 1377, 1382, 1423, 1424, 1430, 1431], "By": [96, 222, 280, 337, 672, 1368, 1422, 1423], "For": [21, 23, 54, 55, 61, 62, 63, 64, 65, 67, 88, 96, 97, 102, 109, 117, 408, 417, 422, 427, 431, 436, 437, 447, 506, 574, 577, 585, 661, 669, 670, 671, 679, 682, 878, 1080, 1275, 1287, 1291, 1292, 1294, 1301, 1302, 1304, 1313, 1319, 1339, 1341, 1342, 1355, 1368, 1371, 1377, 1422, 1423, 1424, 1425, 1426, 1431, 1433], "If": [21, 34, 53, 54, 55, 59, 60, 61, 62, 63, 66, 84, 90, 96, 97, 99, 112, 125, 129, 144, 147, 157, 159, 163, 211, 222, 266, 269, 280, 322, 325, 337, 379, 400, 404, 418, 427, 431, 437, 455, 481, 495, 516, 530, 568, 575, 583, 584, 585, 596, 597, 598, 621, 622, 624, 625, 649, 651, 661, 677, 688, 691, 695, 723, 765, 805, 845, 875, 923, 958, 1008, 1011, 1049, 1052, 1077, 1090, 1094, 1121, 1124, 1134, 1157, 1170, 1174, 1202, 1228, 1255, 1260, 1271, 1275, 1278, 1281, 1285, 1290, 1296, 1301, 1306, 1324, 1331, 1332, 1341, 1351, 1357, 1368, 1371, 1374, 1377, 1379, 1382, 1409, 1411, 1418, 1419, 1423, 1425, 1430, 1431, 1433], "In": [10, 21, 34, 64, 65, 66, 90, 96, 112, 132, 149, 404, 418, 431, 437, 447, 502, 568, 646, 655, 660, 681, 878, 985, 1027, 1080, 1124, 1287, 1325, 1331, 1339, 1368, 1374, 1418, 1419, 1422, 1423, 1424, 1425, 1430, 1431, 1433], "It": [67, 130, 419, 575, 643, 657, 686, 687, 848, 1080, 1124, 1291, 1342, 1403, 1417, 1418, 1419, 1422, 1423, 1430, 1433], "NO": 636, "NOT": [21, 97, 136, 159, 409, 418, 1080, 1382, 1423, 1424, 1430], "No": [61, 62, 64, 65, 66, 140, 1433], "Not": [90, 158], "OF": [900, 941], "ON": [878, 926], "OR": [437, 1325], "Of": 1433, "On": [591, 1430], "One": [67, 1381, 1425], "Or": [34, 661, 1318, 1433], "THE": 1424, "TO": 1427, "That": [404, 437, 569, 969, 1339, 1368, 1382, 1419, 1433], "The": [6, 21, 34, 54, 55, 61, 62, 63, 66, 67, 86, 90, 96, 97, 125, 136, 150, 151, 159, 164, 233, 289, 346, 404, 418, 429, 434, 435, 436, 437, 438, 441, 455, 461, 471, 481, 506, 516, 568, 574, 576, 577, 585, 596, 597, 598, 621, 622, 624, 625, 627, 640, 643, 648, 661, 675, 677, 679, 681, 684, 686, 687, 688, 878, 926, 969, 1011, 1124, 1269, 1272, 1275, 1283, 1284, 1285, 1288, 1290, 1294, 1300, 1304, 1325, 1326, 1327, 1328, 1331, 1334, 1335, 1339, 1341, 1351, 1353, 1368, 1371, 1375, 1377, 1380, 1382, 1406, 1407, 1409, 1418, 1419, 1422, 1423, 1424, 1425, 1426, 1430, 1431, 1433], "Then": [14, 89, 90, 96, 409, 418, 427, 587, 588, 589, 590, 592, 593, 599, 600, 601, 602, 603, 604, 677, 1080, 1124, 1294, 1304, 1339, 1377, 1419, 1425, 1430, 1431], "There": [61, 62, 636, 661, 1275, 1341, 1342, 1423, 1430], "These": [61, 62, 462, 577, 1331, 1422], "To": [34, 61, 62, 151, 446, 568, 577, 679, 926, 1124, 1325, 1332, 1343, 1351, 1409, 1423, 1424, 1426, 1430, 1433], "Will": [1304, 1377, 1409], "With": [672, 1291, 1345, 1418, 1419, 1424], "_": [21, 80, 81, 96, 261, 262, 317, 318, 374, 375, 396, 397, 418, 490, 491, 525, 526, 719, 720, 760, 761, 800, 801, 840, 841, 871, 872, 918, 919, 954, 955, 1003, 1004, 1044, 1045, 1073, 1074, 1116, 1117, 1153, 1154, 1197, 1198, 1224, 1225, 1250, 1251], "_10": 136, "__call__": [34, 465, 497, 535, 547, 643, 648, 650, 652, 657, 1301, 1318, 1325, 1377, 1409], "__debug__": 130, "__dict__": 134, "__doc__": 1290, "__f": 1411, "__file__": 1433, "__init__": [61, 62, 67, 86, 89, 90, 93, 96, 100, 103, 104, 112, 211, 269, 325, 382, 461, 465, 471, 497, 506, 535, 547, 572, 577, 583, 640, 643, 648, 650, 652, 657, 695, 726, 768, 808, 848, 878, 926, 961, 969, 1011, 1052, 1080, 1124, 1160, 1206, 1231, 1294, 1301, 1318, 1322, 1325, 1341, 1342, 1377, 1382, 1403, 1409], "__int__": [54, 55, 63], "__new__": [61, 62], "__repr__": 135, "__str__": [53, 163, 691, 1324, 1411], "__traceback__": [533, 1297], "_apply_units_raw": [212, 270, 327, 383, 696, 727, 769, 809, 849, 879, 927, 970, 1012, 1053, 1081, 1125, 1161, 1207, 1232], "_atoms_too_clos": 1294, "_baz": 67, "_cell_2d": [1091, 1135, 1171], "_dcd": 35, "_default_fit_": 1377, "_default_unit": [268, 324, 381, 402, 725, 767, 807, 847, 877, 925, 960, 1010, 1051, 1079, 1123, 1159, 1204, 1230, 1257], "_different_": 1380, "_dump_dct": 1011, "_ext_src": 1430, "_extend_arrays_apply_unit": [707, 737, 779, 819, 858, 889, 937, 980, 1022, 1062, 1093, 1136, 1173, 1216, 1241], "_findroot": [502, 645, 646, 654, 655, 659, 660], "_fit": 506, "_flib": [35, 406, 420, 421, 665, 1290, 1326, 1430], "_foo": [84, 266, 322, 379, 400, 495, 530, 723, 765, 805, 845, 875, 923, 958, 1008, 1049, 1077, 1121, 1157, 1202, 1228, 1255], "_forces_raw": 1124, "_get_": [21, 1124], "_get_baz": 67, "_get_foo": [84, 266, 322, 379, 400, 495, 530, 723, 765, 805, 845, 875, 923, 958, 1008, 1049, 1077, 1121, 1157, 1202, 1228, 1255], "_get_forces_raw": 1124, "_get_header_config": 56, "_not_": [77, 256, 312, 369, 393, 487, 522, 715, 756, 796, 836, 867, 914, 950, 999, 1040, 1069, 1112, 1149, 1193, 1220, 1246], "_p": 1431, "_pdo": 1424, "_raw": [21, 80, 81, 261, 262, 317, 318, 374, 375, 396, 397, 490, 491, 525, 526, 719, 720, 760, 761, 800, 801, 840, 841, 871, 872, 918, 919, 954, 955, 1003, 1004, 1044, 1045, 1073, 1074, 1116, 1117, 1124, 1153, 1154, 1197, 1198, 1224, 1225, 1250, 1251], "_run": 96, "_scale": 1296, "_thermo_dct": 1011, "_val": 1370, "a0": [10, 19, 679, 1377, 1424], "a1": [679, 1377], "a2": [640, 679, 1377], "a3": 679, "a4": 679, "a5": 679, "a6": 679, "a7": 679, "a8": 679, "a_0": 1124, "a_smooth": 1433, "aa": [1, 50, 677, 1309, 1311, 1317], "ab": [141, 157, 481, 516, 1271, 1325, 1329, 1418, 1423], "abc": 144, "abil": 437, "abinit": [19, 21, 634, 635, 636, 639, 1418], "abl": 1377, "about": [431, 969, 1272, 1339, 1423, 1433], "abov": [61, 62, 269, 577, 878, 1332, 1419, 1422, 1423, 1425, 1431, 1433], "absdiff": 98, "absolut": [6, 98, 145, 506, 1296], "abstact": 1342, "abstract": 1422, "abtract": 1418, "ac": [64, 65, 66], "accept": [222, 280, 337, 406, 408, 428, 430, 447, 595, 631, 686, 687, 1318, 1377, 1409], "access": [21, 89, 1418, 1422, 1428, 1431, 1433], "accord": [438, 1124, 1399, 1424], "accordingli": [59, 1422], "account": [437, 1080], "accur": [648, 1080, 1382, 1431], "accuraci": [657, 1433], "acf": 1326, "acorr": [1, 1291, 1423], "across": 90, "act": [1124, 1424], "activ": 1430, "actual": [34, 61, 62, 90, 150, 151, 575, 648, 664, 1080, 1275, 1330, 1339, 1341, 1342, 1343, 1419, 1423, 1425, 1430, 1431], "ad": [96, 1368, 1377], "adapt": [688, 1290], "add": [86, 128, 159, 269, 422, 460, 568, 583, 623, 627, 667, 1271, 1272, 1336, 1342, 1343, 1344, 1345, 1351, 1379, 1426, 1433], "add_column": [1342, 1345], "addit": [96, 222, 280, 325, 337, 454, 628, 900, 941, 1345, 1379, 1409, 1431], "addition": 1080, "adjac": 573, "advanc": 1433, "advis": 1323, "afaik": 1287, "affect": [437, 1423], "after": [21, 34, 61, 62, 148, 438, 480, 515, 707, 737, 779, 819, 858, 889, 937, 980, 1022, 1062, 1093, 1124, 1136, 1173, 1216, 1241, 1275, 1291, 1342, 1368, 1382, 1406, 1409, 1423, 1424, 1426], "ag": [64, 65, 66], "again": [21, 1011, 1423], "against": [628, 1430], "agrument": 90, "ahead": [1091, 1171], "ai": 677, "ak": 679, "aka": 1363, "al": [64, 65, 66, 104, 105, 112, 238, 239, 245, 250, 253, 254, 269, 294, 295, 301, 306, 309, 310, 351, 352, 358, 363, 366, 367, 427, 471, 565, 703, 1011, 1124, 1271, 1273, 1399, 1421, 1422], "al1": [565, 703], "alat": [1080, 1090, 1094, 1124, 1134, 1135, 1137, 1170, 1174, 1275, 1287, 1422, 1424, 1427], "alawi": 1284, "algo": [677, 1328], "algorithm": [677, 1332], "alia": [34, 61, 62, 127, 549, 580, 642, 1270, 1409], "alias": 1325, "align": [58, 404, 419, 969, 1011, 1425], "all": [10, 19, 21, 34, 61, 62, 90, 96, 97, 101, 104, 106, 108, 112, 114, 152, 157, 160, 253, 263, 268, 269, 309, 319, 324, 325, 366, 376, 381, 402, 404, 406, 408, 415, 418, 419, 420, 427, 431, 433, 437, 440, 447, 457, 462, 471, 551, 553, 557, 559, 568, 577, 583, 584, 585, 627, 648, 661, 665, 671, 672, 677, 679, 683, 684, 687, 688, 725, 726, 767, 807, 847, 877, 878, 925, 960, 1010, 1011, 1051, 1079, 1123, 1124, 1159, 1204, 1230, 1257, 1260, 1272, 1275, 1282, 1283, 1288, 1291, 1294, 1296, 1302, 1304, 1318, 1326, 1332, 1339, 1342, 1351, 1369, 1371, 1377, 1378, 1379, 1382, 1418, 1419, 1422, 1423, 1424, 1425, 1426, 1430, 1431, 1433], "allclos": [1287, 1339, 1372, 1419], "allen": 437, "alloc": [61, 62], "allow": [6, 60, 61, 62, 67, 408, 437, 447, 565, 688, 1294, 1345, 1368, 1377, 1424, 1431], "almost": [144, 1309, 1325, 1417, 1430], "aln": [104, 105, 427, 1011, 1421, 1427, 1431, 1433], "alon": [419, 1294], "along": [58, 60, 81, 96, 262, 318, 325, 375, 397, 409, 418, 419, 421, 422, 424, 436, 441, 446, 491, 526, 574, 575, 628, 667, 684, 688, 690, 720, 761, 801, 841, 872, 919, 955, 1004, 1045, 1074, 1117, 1124, 1154, 1198, 1225, 1251, 1269, 1275, 1291, 1319, 1330, 1335, 1337, 1339, 1378, 1405, 1419, 1423], "alpha": [10, 211, 269, 325, 409, 411, 412, 414, 426, 450, 456, 458, 565, 1377, 1399, 1431, 1433], "alpha_": 1377, "alpha_a": 1431, "alpha_ax0": 1431, "alpha_ax1": 1431, "alpha_ax2": 1431, "alpha_c": 1431, "alpha_v": 1431, "alpha_x": [1377, 1379, 1399], "alreadi": [21, 96, 97, 129, 1294, 1351, 1361, 1362, 1368, 1374, 1425], "also": [3, 10, 14, 21, 61, 62, 67, 96, 97, 325, 406, 418, 419, 422, 425, 431, 437, 440, 506, 575, 577, 636, 640, 648, 652, 657, 672, 673, 676, 687, 688, 808, 878, 1124, 1269, 1271, 1272, 1275, 1294, 1325, 1331, 1332, 1339, 1342, 1371, 1374, 1377, 1378, 1379, 1418, 1421, 1422, 1423, 1424, 1425, 1426, 1430, 1431, 1433], "altern": 1430, "alwai": [67, 150, 437, 438, 447, 506, 574, 661, 878, 1011, 1124, 1275, 1287, 1304, 1339, 1351, 1374, 1377, 1419, 1422, 1425, 1431], "am": [64, 65, 66, 471], "amask": [437, 1426], "amass": [1287, 1427], "amu": [3, 10, 233, 269, 289, 346, 1422], "an": [14, 19, 21, 25, 34, 54, 55, 61, 62, 63, 66, 67, 84, 86, 88, 91, 96, 132, 148, 266, 269, 322, 379, 400, 418, 422, 425, 427, 430, 431, 436, 446, 455, 495, 506, 530, 596, 597, 598, 621, 622, 623, 624, 625, 627, 640, 648, 657, 661, 667, 672, 682, 687, 723, 765, 805, 845, 875, 923, 958, 1008, 1049, 1077, 1080, 1121, 1124, 1157, 1202, 1228, 1255, 1260, 1275, 1319, 1325, 1330, 1337, 1339, 1341, 1371, 1377, 1409, 1417, 1418, 1419, 1420, 1422, 1423, 1424, 1429, 1430, 1431, 1433], "analysi": [565, 570, 1428], "analyt": [682, 1302], "andf": 1433, "anergi": [229, 286, 343], "ang": [21, 123, 211, 222, 269, 280, 325, 337, 423, 434, 437, 467, 468, 480, 497, 498, 501, 504, 506, 515, 537, 538, 566, 736, 738, 754, 778, 780, 794, 818, 820, 834, 1080, 1124, 1377, 1433], "angl": [1, 12, 409, 411, 412, 450, 456, 458, 565, 666, 1294, 1431], "angle_rang": 1294, "angle_toler": [1374, 1375], "angleidx": 406, "angleidx2": 406, "angleidx3": 406, "angles1d": 406, "anglesijk": [1, 42, 406], "angstrom": [116, 269, 408, 427, 434, 437, 447, 456, 458, 566, 567, 571, 1080, 1124, 1275, 1422, 1424, 1433], "angsttom": 3, "angular": [1423, 1424], "ani": [21, 61, 62, 80, 99, 261, 317, 374, 396, 411, 414, 437, 447, 490, 525, 565, 575, 584, 719, 760, 800, 840, 871, 918, 954, 1003, 1044, 1073, 1116, 1153, 1197, 1224, 1250, 1341, 1364, 1365, 1374, 1377, 1380, 1418, 1423, 1428], "anim": 566, "anoth": [14, 61, 62, 89, 123, 419, 438, 494, 529, 688, 1124, 1291, 1294, 1304, 1339, 1341, 1363, 1423, 1430, 1431, 1433], "anwendungen": 437, "anymor": [211, 1430], "anyth": [21, 97, 144, 159, 437, 585, 1318, 1341, 1405, 1406, 1430, 1431], "anywai": [1330, 1431], "anywher": [19, 1275], "apart": 1425, "api": [14, 269, 643, 648, 1301, 1303, 1318, 1374, 1417, 1422, 1428, 1433], "app": [14, 471, 506], "appar": [900, 941], "appart": [1418, 1423], "appear": [1304, 1342], "append": [96, 97, 406, 568, 1337, 1368, 1421, 1431], "appl": 1399, "appli": [212, 263, 269, 270, 319, 327, 376, 383, 404, 406, 420, 425, 427, 430, 431, 437, 438, 696, 727, 769, 809, 849, 879, 927, 970, 1012, 1053, 1080, 1081, 1125, 1135, 1161, 1207, 1232, 1325, 1339, 1365, 1373, 1382, 1433], "applic": [14, 1080, 1369], "approach": 1377, "appropir": [84, 266, 322, 379, 400, 495, 530, 723, 765, 805, 845, 875, 923, 958, 1008, 1049, 1077, 1121, 1157, 1202, 1228, 1255], "appropri": 1422, "approxim": [31, 1377, 1382, 1395, 1417, 1428, 1429], "apt": 1430, "ar": [12, 19, 21, 23, 34, 54, 55, 58, 59, 60, 61, 62, 63, 64, 65, 66, 75, 86, 90, 91, 96, 97, 99, 112, 132, 136, 149, 157, 159, 160, 164, 212, 241, 269, 270, 297, 325, 327, 354, 383, 391, 408, 409, 417, 418, 419, 425, 426, 427, 433, 435, 436, 437, 446, 447, 471, 480, 482, 506, 515, 517, 557, 565, 566, 568, 574, 577, 578, 579, 581, 582, 584, 585, 627, 628, 629, 640, 648, 650, 661, 664, 671, 672, 677, 681, 688, 696, 711, 726, 727, 746, 769, 786, 809, 826, 848, 849, 862, 878, 879, 900, 903, 926, 927, 941, 944, 970, 989, 1011, 1012, 1030, 1053, 1065, 1081, 1103, 1124, 1125, 1143, 1161, 1184, 1207, 1217, 1232, 1242, 1275, 1284, 1294, 1296, 1300, 1304, 1323, 1325, 1326, 1328, 1339, 1341, 1342, 1351, 1355, 1368, 1371, 1372, 1377, 1379, 1382, 1407, 1409, 1418, 1419, 1422, 1423, 1424, 1425, 1426, 1427, 1430, 1431, 1433], "arang": [427, 628, 640, 664, 667, 686, 1260, 1337], "arbitrari": [67, 149, 159, 409, 418, 419, 425, 462, 682, 688, 1369, 1371], "arbitrarili": 409, "arch": [1272, 1430], "architectur": 1430, "area": [675, 1291, 1382, 1424], "arg": [59, 89, 103, 122, 124, 129, 143, 146, 156, 269, 325, 420, 431, 462, 480, 515, 547, 549, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 579, 582, 626, 628, 650, 652, 657, 663, 664, 695, 726, 768, 808, 848, 878, 926, 969, 1052, 1160, 1286, 1289, 1293, 1299, 1301, 1312, 1348, 1349, 1350, 1353, 1354, 1355, 1357, 1359, 1383, 1384, 1385, 1387, 1409, 1430], "argsort": 427, "argument": [54, 55, 63, 64, 65, 66, 102, 109, 117, 161, 164, 269, 429, 455, 462, 596, 597, 598, 621, 622, 624, 625, 650, 675, 1290, 1300, 1313, 1326, 1407, 1423], "around": [161, 269, 437, 657, 1325, 1326, 1332, 1367, 1423, 1425], "arr": [58, 60, 126, 141, 157, 418, 446, 640, 667, 672, 677, 683, 684, 688, 1330, 1335, 1337, 1339], "arr2": 677, "arr3d": 58, "arrai": [2, 3, 21, 38, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 56, 58, 59, 60, 61, 62, 98, 112, 126, 141, 149, 157, 219, 233, 263, 269, 277, 289, 319, 334, 346, 376, 404, 405, 406, 408, 409, 410, 412, 413, 418, 419, 420, 422, 423, 424, 427, 428, 430, 431, 434, 435, 436, 437, 440, 441, 444, 446, 447, 448, 451, 452, 453, 456, 458, 467, 468, 480, 481, 497, 498, 504, 506, 515, 516, 537, 538, 568, 573, 574, 575, 577, 578, 581, 628, 640, 648, 649, 650, 651, 657, 664, 665, 667, 669, 670, 671, 672, 673, 675, 676, 677, 679, 681, 683, 684, 686, 687, 688, 689, 690, 878, 1091, 1171, 1260, 1269, 1271, 1272, 1275, 1283, 1284, 1285, 1287, 1288, 1290, 1291, 1292, 1295, 1301, 1302, 1303, 1306, 1308, 1319, 1325, 1326, 1328, 1329, 1331, 1333, 1335, 1337, 1339, 1342, 1353, 1354, 1377, 1382, 1395, 1398, 1405, 1406, 1419, 1421, 1422, 1423, 1427, 1431, 1433], "array_lik": [157, 409, 411, 412, 414, 431, 450, 1325, 1332, 1333, 1338, 1399], "arrayio": [35, 1269], "arri": [1, 46, 640, 665], "arrx": [1, 46, 665], "articl": 151, "ase": [3, 6, 112, 211, 222, 269, 280, 337, 423, 427, 569, 576, 1422, 1430, 1431, 1433], "ask": 112, "asr": [1287, 1427], "ass": 1406, "assembl": 96, "assert": [129, 130, 422, 1272, 1419, 1431], "assert_almost_equ": 418, "assert_array_almost_equ": 1328, "assert_attr": [70, 215, 273, 330, 386, 474, 509, 699, 730, 772, 812, 852, 882, 930, 973, 1015, 1056, 1084, 1128, 1164, 1210, 1235], "assert_cmd": 1409, "assertionerror": [68, 213, 271, 328, 384, 472, 507, 697, 728, 770, 810, 850, 880, 928, 971, 1013, 1054, 1082, 1126, 1162, 1208, 1233], "assign": [61, 62, 1406], "associ": [61, 62, 1405, 1406], "assum": [21, 90, 98, 269, 431, 437, 567, 577, 643, 671, 672, 926, 1124, 1275, 1284, 1339, 1342, 1382, 1419, 1423, 1425, 1430, 1431], "assumpt": 1339, "assur": [67, 462, 1339], "astyp": 1272, "atm": [112, 640], "atom": [3, 19, 105, 108, 111, 112, 113, 119, 211, 222, 233, 236, 238, 239, 244, 245, 250, 253, 254, 269, 280, 289, 292, 294, 295, 300, 301, 306, 309, 310, 325, 337, 346, 349, 351, 352, 357, 358, 363, 366, 367, 404, 406, 407, 408, 415, 420, 427, 428, 429, 430, 431, 436, 437, 438, 441, 442, 446, 447, 467, 468, 471, 497, 498, 504, 537, 538, 565, 569, 639, 703, 900, 941, 1011, 1052, 1124, 1271, 1272, 1273, 1283, 1285, 1288, 1290, 1291, 1292, 1294, 1296, 1339, 1373, 1374, 1418, 1419, 1420, 1422, 1423, 1426, 1427, 1429, 1433], "atom1": 1339, "atom2": 1339, "atom_maxtri": [1294, 1296], "atom_styl": 1011, "atom_symbol": 112, "atomic_data": [35, 1294, 1373], "atomic_posit": [1080, 1124, 1271, 1422, 1424], "atomic_speci": 1273, "atomic_unit": 10, "atomist": [1417, 1422], "atoms2struct": [427, 1422, 1431, 1433], "atpo": [116, 1421], "atpos_str": [1272, 1421], "atspec": 116, "attach": [584, 627, 1342, 1345], "attach_column": [1343, 1351], "attempt": [86, 96, 1294, 1341], "attr": [21, 67, 68, 70, 72, 76, 77, 82, 83, 84, 95, 213, 215, 217, 219, 255, 256, 264, 266, 271, 273, 275, 277, 311, 312, 320, 322, 325, 328, 330, 332, 334, 368, 369, 377, 379, 384, 386, 388, 392, 393, 398, 399, 400, 417, 424, 433, 472, 474, 477, 480, 486, 487, 492, 493, 495, 507, 509, 512, 515, 521, 522, 527, 528, 530, 697, 699, 701, 714, 715, 721, 722, 723, 728, 730, 732, 755, 756, 762, 763, 765, 770, 772, 774, 795, 796, 802, 803, 805, 810, 812, 814, 835, 836, 842, 843, 845, 850, 852, 854, 866, 867, 873, 874, 875, 878, 880, 882, 884, 913, 914, 920, 921, 923, 928, 930, 932, 949, 950, 956, 957, 958, 971, 973, 975, 998, 999, 1005, 1006, 1008, 1013, 1015, 1017, 1039, 1040, 1046, 1047, 1049, 1054, 1056, 1058, 1068, 1069, 1075, 1076, 1077, 1082, 1084, 1086, 1111, 1112, 1118, 1119, 1121, 1124, 1126, 1128, 1130, 1148, 1149, 1155, 1156, 1157, 1162, 1164, 1166, 1192, 1193, 1199, 1200, 1202, 1208, 1210, 1212, 1219, 1220, 1226, 1227, 1228, 1233, 1235, 1237, 1245, 1246, 1252, 1253, 1255], "attr_lst": [21, 67, 69, 71, 73, 76, 78, 82, 83, 85, 95, 214, 216, 218, 255, 257, 264, 267, 272, 274, 276, 311, 313, 320, 323, 329, 331, 333, 368, 370, 377, 380, 385, 387, 389, 392, 394, 398, 399, 401, 473, 475, 478, 486, 488, 492, 493, 496, 508, 510, 513, 521, 523, 527, 528, 531, 698, 700, 702, 714, 716, 721, 722, 724, 729, 731, 733, 755, 757, 762, 763, 766, 771, 773, 775, 795, 797, 802, 803, 806, 811, 813, 815, 835, 837, 842, 843, 846, 851, 853, 855, 866, 868, 873, 874, 876, 881, 883, 885, 913, 915, 920, 921, 924, 929, 931, 933, 949, 951, 956, 957, 959, 972, 974, 976, 998, 1000, 1005, 1006, 1009, 1014, 1016, 1018, 1039, 1041, 1046, 1047, 1050, 1055, 1057, 1059, 1068, 1070, 1075, 1076, 1078, 1083, 1085, 1087, 1111, 1113, 1118, 1119, 1122, 1127, 1129, 1131, 1148, 1150, 1155, 1156, 1158, 1163, 1165, 1167, 1192, 1194, 1199, 1200, 1203, 1209, 1211, 1213, 1219, 1221, 1226, 1227, 1229, 1234, 1236, 1238, 1245, 1247, 1252, 1253, 1256], "attr_nam": [75, 80, 81, 241, 261, 262, 297, 317, 318, 354, 374, 375, 391, 396, 397, 482, 490, 491, 517, 525, 526, 711, 719, 720, 746, 760, 761, 786, 800, 801, 826, 840, 841, 862, 871, 872, 903, 918, 919, 944, 954, 955, 989, 1003, 1004, 1030, 1044, 1045, 1065, 1073, 1074, 1103, 1116, 1117, 1143, 1153, 1154, 1184, 1197, 1198, 1217, 1224, 1225, 1242, 1250, 1251], "attribut": [21, 61, 62, 67, 77, 86, 89, 96, 104, 112, 147, 211, 219, 256, 269, 277, 312, 325, 334, 369, 393, 487, 497, 522, 695, 707, 715, 726, 737, 756, 768, 779, 796, 808, 819, 836, 848, 858, 867, 878, 889, 914, 926, 937, 950, 969, 980, 999, 1011, 1022, 1040, 1052, 1062, 1069, 1080, 1093, 1112, 1124, 1136, 1149, 1160, 1173, 1193, 1206, 1216, 1220, 1231, 1241, 1246, 1355, 1377, 1422, 1425, 1433], "attrs_nstep": [325, 441], "attrs_only_traj": 325, "attrubiut": [77, 256, 312, 369, 393, 487, 522, 715, 756, 796, 836, 867, 914, 950, 999, 1040, 1069, 1112, 1149, 1193, 1220, 1246], "au": [64, 65, 66], "auto": [0, 1, 408, 437, 447, 707, 737, 779, 819, 858, 889, 937, 980, 1022, 1062, 1093, 1136, 1173, 1216, 1241, 1417, 1422, 1429], "auto_calc": [707, 737, 779, 819, 858, 889, 937, 980, 1022, 1062, 1093, 1136, 1173, 1216, 1241, 1433], "autocorrel": [23, 1326, 1417, 1420, 1428, 1429], "automag": 1011, "automat": [89, 96, 100, 116, 159, 441, 575, 577, 1124, 1272, 1278, 1281, 1341, 1342, 1371, 1421, 1422, 1425], "avail": [480, 515, 878, 905, 1339, 1420, 1429, 1430], "averag": [408, 424, 437, 447, 1423], "aviod": 1342, "avogadro": [1411, 1428, 1433], "avogadro2": 1411, "avoid": [6, 222, 280, 337, 675, 1272, 1325, 1417, 1429], "awai": [682, 1339, 1342, 1368, 1418, 1422, 1433], "awar": 437, "awk": 21, "ax": [419, 575, 577, 583, 584, 585, 591, 594, 595, 605, 627, 628, 629, 640, 684, 688, 1124, 1301, 1325, 1330, 1377, 1378, 1419, 1427, 1431, 1433], "ax0": [1377, 1378, 1379, 1431], "ax0_i": 1377, "ax1": [1301, 1377, 1378, 1379, 1431], "ax1_i": 1377, "ax2": [583, 585, 594, 595, 1301, 1377, 1378, 1379, 1431], "ax3d": [577, 606, 628], "axdo": [575, 1427], "axes3d": 628, "axes3dsubplot": 591, "axes_flat": [1377, 1378, 1431], "axes_grid": [623, 627], "axessubplot": [575, 595], "axi": [56, 58, 59, 60, 80, 81, 96, 112, 261, 262, 317, 318, 325, 374, 375, 396, 397, 408, 409, 410, 413, 418, 419, 422, 424, 431, 436, 437, 446, 447, 451, 453, 468, 490, 491, 525, 526, 538, 575, 583, 584, 585, 595, 627, 628, 664, 667, 684, 686, 687, 688, 719, 720, 760, 761, 800, 801, 840, 841, 871, 872, 918, 919, 954, 955, 1003, 1004, 1044, 1045, 1073, 1074, 1116, 1117, 1124, 1153, 1154, 1197, 1198, 1224, 1225, 1250, 1251, 1260, 1269, 1291, 1319, 1325, 1326, 1330, 1332, 1335, 1337, 1339, 1377, 1378, 1382, 1399, 1419, 1423, 1424, 1431], "axnam": [584, 585], "axsf": [34, 408, 1284, 1409, 1428], "b": [10, 21, 34, 64, 65, 66, 96, 125, 130, 134, 211, 269, 325, 409, 411, 412, 414, 422, 434, 438, 450, 452, 456, 458, 462, 471, 480, 481, 498, 506, 515, 516, 557, 565, 568, 575, 577, 595, 596, 597, 598, 622, 625, 666, 686, 690, 878, 1124, 1272, 1275, 1290, 1291, 1294, 1301, 1309, 1325, 1331, 1339, 1342, 1344, 1356, 1368, 1374, 1377, 1379, 1380, 1382, 1409, 1419, 1423, 1424, 1426, 1431], "b0": [467, 468, 481, 497, 506, 516, 537, 538], "b1": [467, 468, 497, 537, 538, 687], "b2": 687, "b3": 687, "ba": [64, 65, 66], "back": [74, 125, 139, 221, 279, 336, 390, 479, 514, 706, 735, 777, 817, 857, 887, 935, 978, 1020, 1061, 1089, 1133, 1169, 1215, 1240, 1269, 1325, 1433], "backend": [1418, 1428], "background": [23, 34, 1409, 1417, 1425, 1429, 1430], "backtick": 1269, "backup": [97, 105, 112, 113, 139, 1421], "backward": [158, 423, 1286, 1328], "bad": [481, 516, 661], "bak": 139, "band": [575, 677, 1325, 1427], "bandpass": 1325, "bandstop": 1325, "bar": [67, 72, 90, 125, 134, 139, 217, 275, 332, 388, 477, 512, 568, 584, 594, 701, 732, 747, 774, 787, 814, 827, 848, 854, 884, 932, 975, 1017, 1058, 1086, 1130, 1166, 1212, 1237, 1341, 1342, 1355, 1371, 1422], "barostat": [19, 634, 635, 636], "bartlett": 1340, "base": [6, 14, 35, 54, 55, 61, 62, 63, 86, 89, 90, 93, 96, 97, 100, 103, 104, 112, 149, 211, 269, 325, 382, 426, 438, 447, 461, 465, 471, 497, 506, 533, 535, 547, 572, 577, 583, 586, 640, 643, 648, 650, 652, 657, 695, 726, 768, 808, 848, 878, 926, 961, 969, 1011, 1052, 1080, 1124, 1160, 1206, 1231, 1272, 1276, 1279, 1282, 1294, 1297, 1301, 1318, 1322, 1325, 1326, 1341, 1342, 1368, 1371, 1377, 1382, 1403, 1409, 1418, 1423, 1428, 1430, 1433], "basecrossvalid": 1318, "basedir": [969, 1011], "basenam": [6, 90, 96, 112, 506, 1282, 1421], "bash": [97, 151], "basi": [25, 409, 412, 418, 434, 435, 452, 481, 516, 565, 1301, 1417, 1419, 1420, 1428, 1429, 1433], "basic": [21, 67, 96, 211, 657, 1425, 1428, 1433], "batch": [35, 1418, 1421, 1428, 1431], "baz": 125, "bb": [1, 50, 1309, 1311, 1317], "bd": 598, "becaus": [61, 62, 481, 516, 577, 681, 1325, 1380], "becom": [99, 112, 1425], "bee": 130, "been": [21, 130, 159, 1011, 1325, 1368, 1377, 1431], "befor": [21, 97, 431, 650, 661, 667, 675, 681, 688, 1124, 1290, 1291, 1294, 1325, 1331, 1338, 1339, 1377, 1382, 1423, 1424, 1426, 1430], "beforehand": 150, "begin": 1425, "behav": [481, 516, 585, 672, 1304, 1325, 1345, 1433], "behavior": [211, 1124, 1425], "being": [1382, 1425], "belief": 19, "bell": 159, "belong": 446, "below": [61, 62, 409, 420, 422, 427, 437, 471, 568, 595, 878, 1124, 1339, 1341, 1377, 1424, 1425, 1427, 1430, 1431], "besid": 1326, "best": [12, 1418, 1433], "beta": [211, 269, 325, 409, 411, 412, 414, 450, 456, 458, 565, 1431], "better": [21, 677, 1291, 1309, 1339, 1377, 1418, 1425, 1431], "between": [93, 405, 406, 426, 437, 438, 456, 574, 577, 661, 665, 690, 1080, 1271, 1275, 1294, 1325, 1328, 1331, 1418, 1422, 1425], "bewar": [67, 1091, 1171], "beyond": 1431, "bg": [34, 1409], "bh": [64, 65, 66, 598], "bi": [64, 65, 66], "bia": 1425, "big": [21, 34, 422, 423, 437, 441, 1294, 1330, 1339, 1417, 1422, 1425, 1429], "bigger": [422, 657, 1339, 1425], "biggest": 437, "bin": [406, 408, 437, 447, 575, 1287, 1421, 1427, 1430], "binari": [74, 221, 279, 336, 390, 479, 514, 552, 706, 726, 735, 777, 817, 857, 887, 935, 969, 978, 1020, 1061, 1089, 1133, 1169, 1215, 1240, 1417, 1422, 1429], "bind": 90, "biopython": 1052, "birch": 471, "bispl": [577, 648], "bisplev": [577, 673], "bisplin": 682, "bisplrep": [577, 1425], "bit": [127, 642, 1270, 1309, 1425], "bitbucket": 695, "bk": [64, 65, 66], "bla": [139, 1430], "blame": 1275, "blk0": [454, 455], "blk1": [454, 455], "blk2": [454, 455], "blob": 1341, "block": [695, 1080, 1124, 1285], "blue": 630, "bmass": [19, 634, 635], "bo": [555, 598, 878], "bohr": [10, 19, 21, 411, 414, 743, 753, 784, 793, 824, 833, 860, 888, 899, 936, 940, 1080, 1090, 1091, 1094, 1099, 1124, 1134, 1135, 1137, 1139, 1170, 1171, 1174, 1180, 1275, 1422, 1424, 1433], "bool": [34, 60, 97, 98, 112, 125, 130, 141, 158, 159, 160, 164, 211, 269, 325, 406, 408, 416, 418, 420, 421, 422, 425, 427, 430, 431, 437, 447, 456, 457, 458, 506, 606, 627, 650, 657, 664, 666, 671, 672, 675, 681, 687, 688, 707, 737, 779, 819, 858, 889, 937, 980, 1022, 1062, 1090, 1093, 1134, 1136, 1170, 1173, 1216, 1241, 1274, 1278, 1281, 1291, 1294, 1296, 1300, 1301, 1326, 1327, 1331, 1333, 1334, 1337, 1338, 1339, 1351, 1368, 1378, 1379, 1382, 1407, 1409], "boolean": 160, "born": 1418, "both": [132, 159, 211, 269, 325, 417, 595, 1291, 1323, 1339, 1342, 1423, 1425, 1427, 1430], "bother": 848, "bottleneck": 1294, "bottom": [595, 627, 1368], "bound": [38, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 86, 627, 1011, 1290, 1294, 1323, 1326], "boundari": [430, 431, 1011], "box": [408, 437, 447, 627, 1011, 1430], "bp": 598, "br": [64, 65, 66], "bracket": 661, "brent": 661, "brillouin": 574, "broadcast": [441, 667, 688, 1419], "broken": [151, 1430], "brute": 1323, "bsub": 93, "buffer": [53, 61, 62, 163, 691, 1324, 1341, 1411], "bug": [6, 1430], "build": [22, 112, 427, 438, 440, 679, 1011, 1318, 1319, 1321, 1325, 1368, 1422, 1428, 1430, 1433], "built": [66, 96, 455, 596, 597, 598, 621, 622, 624, 625, 1422], "builtin": [164, 1300, 1407], "bulk": [427, 480, 481, 515, 516, 1377, 1380, 1433], "bulkmod": 497, "bv": [471, 480, 506, 515, 598], "bv_method": [494, 506, 529], "bw": 1328, "bx": 598, "byte": [54, 55, 61, 62, 63, 456, 1342], "bytearrai": [54, 55, 63], "bytes_or_buff": [53, 163, 691, 1324, 1411], "bz": [574, 1287, 1427], "c": [1, 6, 10, 21, 34, 41, 51, 52, 61, 62, 64, 65, 66, 127, 130, 211, 269, 325, 409, 411, 412, 414, 422, 434, 438, 450, 452, 456, 458, 462, 471, 557, 565, 568, 575, 596, 597, 598, 622, 625, 642, 666, 878, 900, 941, 1124, 1270, 1272, 1290, 1291, 1292, 1294, 1309, 1325, 1326, 1339, 1342, 1368, 1377, 1382, 1409, 1419, 1423, 1424, 1430, 1431], "c0": 10, "c1": 1423, "c2": 1423, "c3": 1423, "c_contigu": [61, 62], "c_j": [1306, 1425], "c_new": 418, "c_old": 418, "c_old2": 418, "c_p": 1431, "c_v": 1431, "ca": [64, 65, 66, 408, 427, 447], "ca_salt": 34, "calc": [86, 90, 91, 92, 93, 96, 97, 104, 112, 900, 941, 1341, 1342, 1355, 1368, 1421, 1426, 1431], "calc_al": [1377, 1378, 1379, 1380, 1431], "calc_baz": 67, "calc_bv": 506, "calc_dir": [86, 88, 90, 91, 92, 96, 97], "calc_dir_prefix": 96, "calc_dir_root": 96, "calc_f": [1377, 1379], "calc_foo": [86, 96, 97], "calc_g": [1377, 1378, 1380, 1431], "calc_h": [1377, 1379], "calc_nam": [96, 112, 113, 116], "calc_root": [96, 97], "calc_stuff": 67, "calc_theo": 1421, "calcul": [23, 35, 96, 97, 211, 251, 269, 307, 325, 364, 406, 420, 422, 423, 428, 435, 437, 446, 447, 452, 456, 467, 481, 497, 502, 506, 516, 537, 569, 572, 575, 576, 577, 631, 643, 645, 646, 654, 655, 659, 660, 661, 669, 670, 671, 707, 737, 779, 819, 858, 889, 926, 937, 969, 980, 1022, 1062, 1080, 1093, 1124, 1136, 1160, 1173, 1216, 1241, 1287, 1290, 1292, 1339, 1377, 1378, 1379, 1380, 1382, 1399, 1417, 1418, 1419, 1420, 1422, 1424, 1428, 1429, 1430, 1431], "calculatorbas": [104, 112], "calcut": 506, "call": [14, 21, 34, 67, 75, 80, 81, 82, 89, 96, 99, 131, 149, 151, 158, 211, 241, 261, 262, 263, 269, 297, 317, 318, 319, 325, 354, 374, 375, 376, 391, 396, 397, 398, 408, 418, 424, 429, 447, 462, 465, 480, 482, 490, 491, 492, 506, 515, 517, 525, 526, 527, 535, 583, 585, 645, 650, 652, 654, 657, 659, 675, 707, 711, 719, 720, 721, 737, 746, 760, 761, 762, 779, 786, 800, 801, 802, 819, 826, 840, 841, 842, 858, 862, 871, 872, 873, 889, 903, 918, 919, 920, 937, 944, 954, 955, 956, 980, 985, 989, 1003, 1004, 1005, 1022, 1027, 1030, 1044, 1045, 1046, 1062, 1065, 1073, 1074, 1075, 1080, 1093, 1103, 1116, 1117, 1118, 1124, 1136, 1143, 1153, 1154, 1155, 1173, 1184, 1197, 1198, 1199, 1216, 1217, 1224, 1225, 1226, 1241, 1242, 1250, 1251, 1252, 1294, 1301, 1318, 1331, 1348, 1349, 1350, 1357, 1379, 1382, 1405, 1406, 1409, 1419, 1422, 1424, 1427, 1430, 1431, 1433], "call_vmd_measure_gofr": [447, 1430], "callabl": [34, 90, 547, 631, 675, 1301, 1369, 1377, 1381, 1382, 1399, 1409], "callkwd": 648, "can": [21, 34, 54, 55, 60, 61, 62, 63, 67, 93, 96, 97, 99, 151, 159, 222, 239, 269, 280, 295, 337, 352, 404, 406, 409, 418, 424, 428, 437, 440, 441, 447, 452, 462, 471, 506, 565, 568, 569, 574, 575, 576, 583, 627, 631, 648, 650, 657, 661, 664, 672, 677, 681, 688, 1080, 1124, 1269, 1271, 1272, 1275, 1325, 1336, 1339, 1342, 1364, 1368, 1371, 1374, 1377, 1379, 1382, 1418, 1419, 1421, 1422, 1425, 1426, 1430, 1431, 1433], "candid": 87, "cannot": [21, 164, 269, 568, 681, 1300, 1309, 1374, 1382, 1407, 1419], "canon": [127, 642, 1270], "capabl": 437, "capac": [1377, 1382], "car": 437, "card": [1277, 1278, 1280, 1281], "care": [59, 1325, 1433], "cart": [404, 575], "cart2frac": 1, "cart2frac_traj": 1, "cartesian": [211, 269, 325, 404, 412, 420, 421, 428, 436, 456, 458, 572, 575, 738, 780, 820, 899, 1094, 1124, 1137, 1174, 1420, 1422, 1424, 1427, 1429], "case": [34, 59, 67, 90, 132, 149, 150, 159, 160, 222, 280, 337, 404, 418, 419, 425, 437, 440, 447, 462, 575, 584, 648, 652, 672, 688, 848, 878, 900, 941, 1080, 1124, 1275, 1291, 1304, 1323, 1325, 1330, 1339, 1341, 1368, 1374, 1377, 1380, 1403, 1420, 1423, 1425, 1429, 1430, 1431], "case1": 89, "case2": 89, "cast": [219, 277, 334, 1377], "cat": 56, "catch": 149, "cauchi": 1334, "caus": [643, 661, 1382], "caveat": [661, 1342], "cbook": 148, "cc": [12, 456, 457, 458], "cc2cell": [211, 269, 325, 410, 1275], "cd": [64, 65, 66, 598, 1426, 1430], "cdist": [665, 1309], "ce": [64, 65, 66], "cell": [1, 21, 43, 44, 45, 47, 48, 49, 112, 116, 123, 211, 222, 242, 269, 280, 298, 325, 337, 355, 409, 412, 413, 415, 418, 419, 422, 423, 426, 430, 431, 434, 435, 436, 437, 438, 440, 447, 450, 452, 453, 460, 471, 555, 565, 634, 635, 848, 878, 888, 900, 936, 941, 969, 1011, 1080, 1091, 1124, 1135, 1171, 1269, 1275, 1283, 1285, 1294, 1373, 1374, 1376, 1377, 1417, 1421, 1422, 1424, 1426, 1427, 1428, 1429, 1431], "cell2cc": [211, 269, 325, 413], "cell_maxtri": [1294, 1296], "cell_opt": 808, "cell_paramet": [1080, 1091, 1171, 1424], "cella": [108, 1011], "cellalpha": [108, 1011], "cellb": [108, 1011], "cellbeta": [108, 1011], "cellc": [108, 1011], "celldm": [411, 414, 1275, 1287, 1424], "celldm1": 1124, "celldm2cc": 1275, "cellgamma": [108, 1011], "center": [415, 440, 1304, 1306, 1425], "central": [427, 429, 446], "certain": [427, 437, 1371, 1425, 1433], "cf": [64, 65, 66], "ch": [418, 598, 1326], "chain": [19, 636, 639], "chang": [96, 97, 404, 437, 595, 627, 630, 1124, 1290, 1346, 1366, 1377, 1426, 1430, 1431], "char": 1272, "charact": [21, 127, 565, 642, 1270], "charg": [10, 113, 1373], "check": [67, 77, 140, 158, 256, 312, 369, 393, 404, 417, 419, 487, 522, 657, 715, 756, 796, 836, 867, 914, 950, 999, 1040, 1052, 1069, 1112, 1124, 1149, 1193, 1220, 1246, 1361, 1362, 1374, 1375, 1380, 1418, 1430, 1433], "check_depend": 1430, "check_set_attr": 67, "check_set_attr_lst": 67, "checkep": 657, "chemic": 3, "choic": [565, 1339, 1377], "choke": 151, "choos": [409, 441, 585, 1377], "chunk": [58, 60, 1269, 1339], "cif": [550, 567, 695, 1275, 1422, 1424, 1428, 1431], "ciffil": 1422, "citeseerx": [435, 437], "ckeck": 657, "ckeckep": 657, "cl": [64, 65, 66, 427, 437], "clarendon": 437, "class": [6, 14, 61, 62, 67, 86, 89, 90, 93, 96, 100, 103, 104, 112, 134, 154, 155, 162, 164, 211, 219, 269, 277, 325, 334, 382, 454, 461, 465, 471, 497, 506, 535, 547, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 572, 577, 583, 640, 643, 648, 650, 652, 657, 668, 695, 726, 768, 808, 848, 878, 926, 961, 969, 1011, 1052, 1080, 1124, 1160, 1206, 1231, 1258, 1259, 1269, 1294, 1300, 1301, 1318, 1322, 1325, 1341, 1342, 1377, 1382, 1403, 1407, 1409, 1420, 1428, 1429, 1433], "clean": [606, 1430, 1433], "clean_ax3d": 606, "clear": 1011, "clone": 1430, "close": [462, 481, 516, 1294, 1352, 1368, 1382], "close_scal": 1294, "cloughtocher2dinterpol": 648, "cluster": [97, 1430], "cm": [10, 64, 65, 66, 1283, 1284, 1285, 1288, 1291, 1382, 1424], "cmd": [34, 151, 1342, 1409], "co": [12, 64, 65, 66, 125, 411, 414, 456, 457, 458, 598, 607, 677, 1301, 1339], "codata": 10, "code": [23, 59, 67, 127, 437, 471, 481, 516, 642, 1269, 1270, 1403, 1417, 1418, 1419, 1420, 1423, 1425, 1428, 1429, 1430, 1433], "coeff": [679, 681, 1325, 1399], "coeffici": [681, 1325], "col": [126, 452, 679, 1285, 1343, 1345, 1351, 1361], "col0": [1368, 1371], "col1": [1368, 1371], "col2": 1371, "collect": [584, 585, 594, 1433], "colnam": [1368, 1371], "colname1": 1347, "colname2": 1347, "color": [577, 591, 595, 630, 631, 1301, 1339, 1427, 1433], "color_left": 595, "color_right": 595, "colum": [408, 447], "column": [61, 62, 86, 96, 418, 437, 628, 640, 679, 681, 878, 900, 941, 1011, 1052, 1271, 1285, 1341, 1343, 1344, 1345, 1351, 1353, 1355, 1357, 1361, 1368, 1369, 1371, 1420, 1429], "colunm": [900, 941], "com": [461, 595, 666, 1326, 1328, 1430, 1431], "comb": [35, 96, 1371], "combin": 1425, "commamd": 158, "command": [34, 84, 93, 104, 105, 112, 113, 266, 322, 379, 400, 408, 495, 530, 723, 765, 805, 845, 875, 923, 958, 1008, 1011, 1049, 1077, 1121, 1157, 1202, 1228, 1255, 1342, 1409], "comment": [56, 59, 60, 437, 565, 878, 1269, 1427], "commit": 1352, "commmand": 97, "common": [34, 35, 56, 90, 409, 437, 460, 648, 1269, 1409, 1421, 1422, 1425, 1427, 1428, 1433], "commonli": [93, 1357, 1422], "commun": 151, "comp": 151, "compact": 1426, "compar": [436, 497, 672, 681, 1283, 1327, 1334, 1374, 1423], "comparison": 1328, "compat": [127, 158, 423, 642, 1270, 1286, 1433], "compil": [14, 96, 703, 1290, 1429], "complain": [34, 1409], "complementari": [437, 447], "complet": [96, 145, 437, 627, 688, 1080, 1325, 1377, 1418, 1433], "completli": 585, "complex": [96, 676, 1283, 1288, 1291, 1328], "complic": [437, 1052, 1091, 1171], "composit": 1294, "compress": [21, 1431], "comput": [437, 684, 1418, 1419, 1423, 1428], "con": 21, "concaten": [404, 1080, 1422, 1426, 1433], "cond": 130, "conden": 471, "condit": [430, 431, 681], "config": [35, 57, 128], "configpars": [56, 128], "configur": 436, "confus": [675, 677], "conj": 1423, "connect": [90, 573, 574, 690, 1342, 1346, 1368], "consecut": 59, "consid": 1331, "consist": 679, "const": 1425, "constant": [35, 98, 409, 412, 436, 450, 497, 683, 684, 1275, 1291, 1318, 1323, 1339, 1422, 1424, 1425, 1427, 1431], "constraint": [1271, 1272], "constrani": [634, 635, 639], "construct": [22, 61, 62, 67, 96, 547, 574, 577, 661, 1336, 1427], "constructor": [14, 61, 62, 66, 89, 100, 222, 269, 280, 337, 455, 579, 582, 596, 597, 598, 621, 622, 624, 625, 648, 1382], "contain": [61, 62, 89, 90, 93, 125, 268, 269, 324, 381, 402, 418, 429, 452, 577, 583, 661, 669, 670, 672, 707, 725, 737, 767, 779, 807, 819, 847, 858, 877, 889, 925, 937, 960, 980, 1010, 1022, 1051, 1062, 1079, 1093, 1123, 1136, 1159, 1173, 1204, 1216, 1230, 1241, 1257, 1269, 1282, 1301, 1368, 1417, 1419, 1420, 1423, 1425, 1428, 1429], "content": [34, 112, 132, 1409], "context": 1341, "contigu": [61, 62], "continu": [96, 1339, 1351], "contrast": 1425, "contrib": 1430, "contribut": [1124, 1379, 1380, 1431], "control": 116, "conv": [159, 1427], "conv_thr": [112, 113, 116], "convang": [0, 12, 38, 39, 456, 457, 458], "conveni": [15, 131, 423, 500, 575, 644, 653, 658, 1271, 1273, 1342, 1344, 1422, 1423, 1424, 1428], "convent": [67, 123, 408, 409, 425, 435, 437, 447, 577, 666, 1275, 1377, 1426], "converg": [98, 436, 437, 481, 516, 661, 848, 926, 1339, 1421, 1433], "convergence_test_cutoff": 1421, "convers": [159, 269, 382, 411, 414, 577, 1124, 1342, 1433], "convert": [12, 19, 54, 55, 63, 86, 90, 91, 96, 123, 134, 136, 157, 159, 160, 161, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 411, 414, 432, 444, 448, 456, 458, 463, 464, 471, 532, 534, 544, 545, 546, 548, 566, 576, 577, 632, 637, 638, 678, 692, 693, 694, 968, 1080, 1124, 1205, 1261, 1263, 1266, 1267, 1268, 1272, 1275, 1298, 1331, 1353, 1369, 1371, 1391, 1392, 1393, 1396, 1397, 1400, 1401, 1402, 1418, 1422, 1433], "convex": 671, "convolut": [6, 441, 1327, 1334, 1339, 1423, 1433], "convolv": [1339, 1433], "cookbook": [1325, 1339], "coord": [0, 1, 38, 39, 43, 44, 48, 49, 112, 211, 219, 251, 269, 277, 307, 325, 334, 364, 403, 404, 412, 415, 416, 418, 419, 424, 425, 426, 427, 430, 431, 436, 437, 441, 446, 447, 456, 458, 848, 1011, 1080, 1094, 1095, 1124, 1137, 1174, 1175, 1269, 1271, 1272, 1294, 1296, 1419, 1422, 1424, 1426, 1427, 1433], "coord_tran": [211, 269, 325, 403, 419], "coord_trans3d": 418, "coordin": [418, 425, 431, 440, 446, 552, 558, 575, 726, 878, 926, 1011, 1339, 1417, 1420, 1422, 1428, 1429, 1433], "coords_frac": [1, 43, 44, 45, 47, 48, 49, 211, 222, 242, 269, 280, 298, 325, 337, 355, 424, 425, 430, 431, 438, 441, 1011, 1124, 1373, 1376, 1421, 1422, 1433], "coords_unit": [1094, 1174], "copi": [90, 132, 141, 152, 249, 305, 362, 415, 416, 418, 419, 425, 430, 431, 575, 687, 1338, 1421, 1426, 1430], "copytre": 132, "core": [35, 157, 428, 1124, 1373, 1422, 1430], "corner": [67, 1430], "corr": [1326, 1423], "correct": [435, 437, 438, 577, 1124, 1430], "correctli": [437, 627, 1342], "correl": [28, 437, 1326, 1420, 1429], "correlationtheorem": 1326, "correspond": [90, 93, 454, 1377], "cosin": [406, 456, 458], "could": [1430, 1433], "count": [408, 437, 447, 688], "counter": 1294, "coupl": 1426, "cours": [447, 648, 1260, 1290, 1339, 1422, 1433], "cov_rad": [3, 65], "coval": [3, 1294], "covalent_radii": [3, 1294], "cover": 419, "cp": [555, 598, 878, 1377, 1379, 1421, 1426, 1431], "cp2k": [21, 437, 456, 457, 458, 551, 552, 553, 554, 768, 808, 848, 1417, 1422, 1428, 1433], "cp2kdcdmdoutputfil": 1422, "cp2kmdoutputfil": [726, 808, 1422], "cp2krelaxoutputfil": 1422, "cp2kscfoutputfil": [768, 1422], "cpickl": 133, "cpmd": [21, 23, 555, 556, 878, 926, 1417, 1422, 1423, 1428, 1430], "cpmdmdoutputfil": 1422, "cpmdscfoutputfil": [878, 1422], "cpu": 1011, "cr": [64, 65, 66], "crazi": 1309, "creat": [53, 61, 62, 66, 96, 97, 100, 150, 163, 406, 422, 423, 427, 437, 438, 454, 455, 461, 568, 575, 596, 597, 598, 621, 622, 623, 624, 625, 630, 640, 672, 691, 1011, 1294, 1295, 1296, 1304, 1324, 1339, 1341, 1347, 1356, 1368, 1377, 1409, 1411, 1412, 1413, 1414, 1415, 1416, 1425, 1433], "create_t": 1342, "creation": [440, 1294], "cross": [404, 452, 677, 1318, 1319, 1323, 1326, 1423, 1425], "crossval_map_p_r": 1425, "crufti": 1430, "cry": [34, 35, 104, 112, 1011, 1080, 1124, 1275, 1294, 1339, 1377, 1421, 1422, 1424, 1426, 1427, 1428, 1430, 1431, 1433], "cryst1": 1052, "cryst_const": [0, 21, 38, 39, 211, 219, 269, 277, 325, 334, 409, 410, 411, 412, 414, 450, 451, 456, 458, 969, 1052, 1124, 1275, 1295, 1296, 1421, 1422, 1427, 1431, 1433], "crystal": [116, 269, 427, 460, 1080, 1422, 1424, 1427, 1431], "crystallograph": [409, 412, 450], "crystalstructur": [427, 1433], "crystalthermo": 1431, "cstride": 577, "cstringio": 147, "csvr": 1426, "ct": 648, "ctype": [61, 62], "cu": [64, 65, 66], "cubic": [408, 434, 435, 437, 447, 471, 650, 681, 689, 1275, 1377, 1431], "cufoff": [481, 516], "cumul": [573, 575], "cur": [1348, 1349, 1350, 1357], "curent": 437, "current": [471, 878, 1011, 1382, 1424, 1430], "cursor": [1342, 1352, 1355, 1368], "curv": [471, 503, 506, 628, 647, 656, 661, 662, 669, 670, 1291, 1382, 1424, 1431], "curvatur": 1425, "custom": [108, 1011], "cut": [1345, 1426], "cutoff": [427, 428, 429, 1325], "cuu": 10, "cv": [598, 1318, 1320, 1321, 1323, 1377, 1378, 1382, 1386, 1425, 1431], "cv_kwd": [1318, 1323], "cx": 598, "cycl": [587, 588, 589, 590, 592, 593, 599, 600, 601, 602, 603, 604], "cyclic": 67, "cyclon": 461, "d": [38, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 64, 65, 66, 127, 437, 438, 471, 543, 567, 624, 642, 652, 666, 1270, 1287, 1290, 1301, 1313, 1326, 1329, 1377, 1426, 1427], "d0": 418, "d1": [418, 557], "d2": 557, "d3": 557, "danger": 67, "data": [34, 53, 61, 62, 67, 86, 98, 163, 219, 277, 334, 408, 437, 454, 461, 471, 480, 481, 506, 515, 516, 575, 577, 579, 582, 594, 607, 643, 648, 649, 652, 657, 661, 664, 677, 679, 681, 689, 691, 695, 707, 737, 779, 819, 858, 889, 937, 980, 1011, 1022, 1062, 1093, 1136, 1173, 1216, 1241, 1291, 1301, 1304, 1318, 1319, 1324, 1330, 1332, 1339, 1343, 1353, 1364, 1374, 1377, 1382, 1411, 1417, 1418, 1420, 1422, 1428, 1429, 1430, 1431], "data2d": [580, 607, 648, 1301, 1377], "data_foo": 695, "databas": [96, 97, 1341, 1342, 1361, 1367, 1368, 1371, 1417, 1421, 1429], "datafn": 408, "dataset": [557, 568, 1371, 1431], "datsbas": [99, 1368], "david": 113, "db": [64, 65, 66, 96, 625, 1325, 1341, 1342, 1344, 1355, 1356, 1368], "db_fn": 1342, "db_name": 96, "db_tabl": 96, "dbfn": 97, "dc": 625, "dcd": [35, 552, 558, 726, 961, 969, 1011, 1433], "dcdfilenam": 969, "dcdoutputfil": [726, 969], "dct": [90, 91, 134, 135, 139, 153, 159, 466, 536, 568], "dct2class": 134, "dd": [648, 1301, 1433], "ddi": [1301, 1433], "de": [418, 481, 506, 516, 542, 1323], "deactiv": 1433, "deal": [673, 1377, 1423, 1425], "debian": 1430, "debug": [21, 419, 1292], "deby": [1395, 1399], "debye_func": 1399, "decod": [53, 163, 691, 1324, 1411], "decor": 35, "def": [67, 72, 89, 217, 275, 332, 388, 462, 477, 512, 701, 732, 774, 814, 854, 884, 932, 975, 1017, 1058, 1086, 1130, 1166, 1212, 1237, 1431], "default": [21, 34, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 63, 90, 96, 97, 99, 159, 163, 222, 268, 280, 324, 337, 381, 402, 418, 422, 437, 441, 456, 457, 458, 506, 568, 583, 585, 648, 657, 664, 666, 672, 675, 681, 687, 688, 691, 725, 767, 807, 847, 848, 877, 925, 960, 969, 1010, 1011, 1051, 1079, 1080, 1123, 1124, 1159, 1204, 1230, 1257, 1301, 1318, 1319, 1323, 1324, 1325, 1337, 1339, 1341, 1342, 1345, 1368, 1369, 1377, 1382, 1411, 1423, 1424, 1425, 1426, 1430, 1431, 1433], "default_paramet": [102, 109, 117], "default_unit": [1011, 1124], "defin": [21, 34, 53, 67, 77, 86, 89, 90, 96, 104, 112, 130, 163, 256, 312, 325, 369, 393, 404, 406, 418, 427, 487, 522, 574, 577, 691, 715, 756, 796, 836, 867, 878, 914, 950, 999, 1040, 1069, 1112, 1149, 1193, 1220, 1246, 1287, 1294, 1324, 1377, 1411, 1422, 1424, 1425, 1427, 1430, 1431, 1433], "definit": [10, 27, 112, 1301, 1327, 1334, 1425], "deg": [1, 42, 406, 648, 650, 666, 679, 680, 681, 689, 1377, 1433], "degauss": 116, "degre": [405, 406, 456, 458, 565, 634, 635, 639, 650, 657, 666, 679, 680, 681, 689], "delet": [21, 34, 99, 219, 277, 334, 568, 1409], "delim": [157, 1271], "delimit": [157, 1271], "delta": 1339, "dens": [422, 423], "densiti": [23, 1304, 1382, 1418, 1423, 1424, 1428], "dep": 1430, "depend": [21, 67, 97, 427, 506, 661, 878, 1291, 1318, 1323, 1339, 1353, 1417, 1429], "depol": 1285, "deprec": [133, 439, 457, 549, 1318, 1430], "depth": 125, "der": [465, 467, 497, 500, 535, 537, 643, 644, 645, 652, 653, 654, 657, 658, 659, 682, 1124, 1301, 1377], "deriv": [21, 67, 269, 471, 497, 506, 542, 543, 643, 645, 652, 654, 657, 659, 664, 669, 682, 1124, 1301, 1303, 1377, 1430], "deriv_fd": 664, "deriv_jax": [1301, 1302], "deriv_spl": 1399, "describ": [61, 62, 503, 647, 656, 662, 1275, 1425], "descript": [112, 1355, 1377], "design": 1418, "desir": [1325, 1331], "despit": 648, "destin": 132, "det": 452, "detail": [25, 568, 1339, 1377, 1417, 1429], "detect": [1341, 1371, 1422, 1425], "determin": [59, 159, 1291, 1294, 1339, 1341, 1369, 1374, 1377, 1420, 1429], "dev": [1309, 1411, 1430], "devel": 151, "develop": [1418, 1430], "devid": 681, "df": [1302, 1325, 1331], "dfft1": 1328, "dfft2": 1328, "dft": [423, 985, 1027, 1431], "dg": 625, "di": 878, "diag": [112, 422, 423, 1433], "diagon": [112, 113, 116, 878, 1288], "dict": [3, 61, 62, 64, 65, 87, 90, 91, 95, 99, 112, 128, 134, 139, 211, 236, 239, 268, 269, 292, 295, 324, 325, 349, 352, 381, 402, 459, 467, 468, 481, 516, 537, 538, 557, 568, 629, 648, 681, 725, 767, 807, 847, 877, 925, 960, 1010, 1011, 1051, 1079, 1123, 1159, 1204, 1230, 1257, 1285, 1313, 1318, 1319, 1323, 1355, 1371, 1377, 1378, 1379, 1381], "dictionari": [61, 62, 64, 65, 89, 90, 159, 568, 1313, 1377, 1431], "did": 462, "didn": 682, "diff": [1309, 1332, 1431], "differ": [14, 98, 125, 404, 418, 425, 427, 428, 436, 437, 446, 471, 573, 577, 661, 675, 677, 681, 688, 878, 1080, 1291, 1319, 1328, 1339, 1341, 1374, 1405, 1418, 1422, 1423, 1431], "differend": 584, "differential_evolut": 1323, "difficult": 437, "digit": [703, 1272, 1325, 1326, 1342], "dim": [60, 418, 438, 439, 648, 665, 679, 689, 1283, 1301, 1306, 1339, 1428], "dimens": [19, 61, 62, 418, 419, 440, 634, 635, 636, 667, 679, 681, 682, 688, 1124, 1260, 1339, 1377, 1419, 1424], "dimension": 418, "dir": [6, 86, 90, 91, 93, 96, 97, 99, 104, 112, 132, 408, 447, 506, 1011, 1427], "direc": [438, 440], "direct": [21, 422, 440, 1289, 1291, 1304, 1318, 1319, 1323, 1419, 1423], "direct_pdo": [1291, 1423], "directli": [34, 437, 585, 681, 1342, 1422, 1433], "directori": [6, 34, 86, 104, 105, 112, 113, 926, 1409], "dirnam": [6, 90, 150, 1433], "disabl": [157, 404, 1271], "disbal": [1090, 1134, 1170], "discard": 1124, "discret": 1423, "discuss": 130, "disk": [21, 34, 1409], "disp": [34, 159, 1287, 1409, 1427], "dispatch": 100, "dispers": [574, 575, 677, 1287, 1433], "displai": [34, 408, 447, 1409], "dist": [1, 42, 45, 420, 421, 428, 1011], "distanc": [406, 421, 425, 427, 428, 435, 436, 437, 574, 665, 690, 1294, 1306, 1309, 1310, 1314, 1315, 1316, 1425], "distances_traj": 1, "distinct": [96, 1275, 1431], "distribut": [437, 574, 1428], "distsq": [1, 47, 1306], "distsq_frac": [1, 420], "distutil": 1430, "distvec": [1, 42, 47, 420], "distvecs_frac": [1, 47, 420], "divid": [471, 683, 684, 1124, 1338, 1424], "dk": [625, 1431], "dm": 625, "dmask": 437, "do": [21, 23, 89, 97, 431, 437, 441, 462, 471, 575, 627, 648, 672, 675, 681, 1124, 1275, 1287, 1291, 1323, 1330, 1339, 1377, 1382, 1417, 1420, 1422, 1424, 1425, 1427, 1428, 1429, 1431, 1433], "do_stuff": 67, "doc": [23, 112, 506, 547, 566, 1325, 1328, 1339, 1341, 1425, 1433], "docstr": [21, 460, 547, 688], "document": [19, 1275, 1433], "doe": [21, 59, 84, 144, 159, 266, 322, 379, 400, 408, 419, 423, 437, 495, 530, 585, 648, 681, 723, 765, 805, 845, 875, 923, 958, 1008, 1049, 1077, 1080, 1121, 1157, 1202, 1228, 1255, 1345, 1406, 1424, 1425, 1430], "doesn": [21, 97, 437, 574, 1339, 1368, 1377, 1380, 1419, 1425, 1430], "doi": [435, 437], "doingth": 140, "domain": [1325, 1326, 1331], "don": [21, 89, 112, 149, 222, 280, 337, 427, 437, 457, 575, 677, 848, 1052, 1124, 1275, 1290, 1325, 1419, 1425, 1430], "done": [96, 139, 159, 577, 848, 1342, 1422, 1423, 1425, 1426, 1433], "dosarea": 1382, "dot": [419, 452, 1419, 1427], "doubl": [127, 136, 577, 642, 1270, 1331, 1342, 1423], "dougla": 19, "down": [56, 1331], "download": 1430, "dr": [6, 408, 437, 447, 625, 1431], "drawback": 67, "dregre": 681, "drive": 21, "drop": 6, "dset": [557, 568], "dsq": [1, 46], "dt": [446, 1291, 1325, 1329, 1331, 1377, 1395, 1399, 1423], "dtu": 1431, "dtype": [61, 62, 219, 277, 334, 427, 454, 577, 668, 672, 1258, 1259, 1269, 1272], "due": [1339, 1422, 1423], "dummi": [99, 134, 147, 427, 471], "dump": [21, 79, 133, 260, 316, 373, 395, 416, 489, 524, 561, 717, 758, 798, 838, 869, 916, 952, 1001, 1011, 1042, 1071, 1114, 1151, 1195, 1222, 1248, 1422, 1431, 1433], "dump_dcd": 1011, "dump_filenam": [74, 79, 221, 260, 279, 316, 336, 373, 390, 395, 479, 489, 514, 524, 706, 717, 735, 758, 777, 798, 817, 838, 857, 869, 887, 916, 935, 952, 978, 1001, 1020, 1042, 1061, 1071, 1089, 1114, 1133, 1151, 1169, 1195, 1215, 1222, 1240, 1248], "dump_modifi": 1011, "dump_txt": [108, 1011], "dump_xyz": 1011, "dumpfil": 108, "dumpfilenam": 1011, "duplic": 437, "dure": [436, 1382, 1431], "dv": [481, 506, 516, 542, 543, 1377], "dx": [652, 1301, 1377, 1399], "dx0_0": 1302, "dx0_1": 1302, "dx0_n": 1302, "dxl": 1302, "dy": [64, 65, 66, 625, 1301], "dy1": 98, "dy2": 98, "dyn": [10, 1282, 1283], "dyn1": 1282, "dyn3": 1283, "dyn5": 1282, "dynam": [19, 59, 878, 1282, 1283, 1284, 1288, 1428], "dynmat": [22, 1284, 1285], "e": [14, 19, 21, 34, 59, 61, 62, 64, 65, 66, 67, 72, 77, 86, 89, 90, 91, 93, 96, 99, 104, 112, 125, 139, 144, 149, 159, 217, 239, 256, 275, 295, 312, 332, 352, 369, 388, 393, 406, 408, 410, 412, 413, 418, 419, 425, 427, 428, 431, 434, 436, 437, 438, 441, 451, 453, 465, 467, 471, 477, 480, 481, 487, 497, 499, 502, 506, 512, 515, 516, 522, 537, 547, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 568, 575, 577, 579, 582, 583, 585, 595, 629, 640, 643, 646, 648, 650, 655, 660, 661, 667, 671, 673, 679, 681, 686, 687, 688, 689, 695, 701, 715, 732, 756, 774, 796, 814, 836, 854, 867, 878, 884, 914, 932, 950, 975, 999, 1011, 1017, 1040, 1058, 1069, 1080, 1086, 1090, 1112, 1124, 1130, 1134, 1149, 1166, 1170, 1193, 1212, 1220, 1237, 1246, 1260, 1269, 1275, 1282, 1284, 1285, 1287, 1294, 1321, 1325, 1326, 1333, 1339, 1341, 1342, 1345, 1353, 1368, 1369, 1371, 1373, 1374, 1375, 1377, 1379, 1380, 1381, 1382, 1409, 1419, 1423, 1424, 1425, 1426, 1427, 1428, 1430, 1431, 1433], "e0": [10, 467, 468, 481, 497, 506, 516, 537, 538], "each": [21, 61, 62, 67, 76, 82, 83, 86, 87, 88, 90, 95, 96, 97, 98, 99, 102, 109, 112, 117, 125, 255, 264, 311, 320, 368, 377, 392, 398, 399, 404, 408, 418, 422, 436, 437, 438, 441, 447, 486, 492, 493, 521, 527, 528, 572, 573, 574, 575, 628, 677, 679, 684, 686, 687, 690, 714, 721, 722, 755, 762, 763, 795, 802, 803, 835, 842, 843, 866, 873, 874, 878, 913, 920, 921, 949, 956, 957, 998, 1005, 1006, 1011, 1039, 1046, 1047, 1052, 1068, 1075, 1076, 1080, 1111, 1118, 1119, 1124, 1148, 1155, 1156, 1192, 1199, 1200, 1219, 1226, 1227, 1245, 1252, 1253, 1287, 1288, 1302, 1309, 1319, 1325, 1332, 1355, 1369, 1371, 1377, 1378, 1419, 1422, 1423, 1424, 1425, 1426, 1431, 1433], "earli": 1409, "earth": 471, "easi": [3, 441, 648, 1428], "easier": [61, 62, 1430], "easiest": 575, "easili": [1339, 1377], "eat": 1339, "echo": [140, 1011], "eclass": 878, "ecutfwc": [1369, 1370], "ecutrho": [112, 113, 116, 1421], "ecutwfc": [90, 112, 113, 116, 1341, 1421], "ed": [21, 437, 640, 1291, 1326, 1419], "edg": [440, 574, 671, 1325, 1339, 1433], "edit": [1328, 1430], "edu": [435, 437, 571], "educ": 437, "ee": 506, "effect": [159, 422, 423, 681, 1291, 1339, 1423, 1433], "effici": [428, 1422, 1426], "efit": 506, "egd": 440, "egrep": 21, "eh": 10, "eham": 878, "eiermann": 418, "eigenvector": [1283, 1284, 1288], "einstein": [1398, 1399], "einstein_func": 1399, "either": [93, 211, 269, 325, 404, 422, 427, 452, 577, 648, 1011, 1124, 1318, 1325, 1371, 1427], "ek": 878, "ekin": [211, 228, 269, 285, 325, 342, 424, 629, 985, 1027, 1426], "ekinc": 878, "ekinh": 878, "elcorto": 1430, "electr": 10, "electron": [10, 19, 116, 423, 1379], "electron_maxstep": [112, 113, 116], "element": [3, 61, 62, 587, 588, 589, 590, 592, 593, 599, 600, 601, 602, 603, 604, 683, 684, 1011], "elk": [471, 1428, 1430], "elkeosfit": [14, 506, 1430], "els": [21, 61, 62, 67, 72, 80, 81, 129, 217, 261, 262, 275, 317, 318, 332, 374, 375, 388, 396, 397, 477, 490, 491, 512, 525, 526, 583, 585, 648, 664, 701, 719, 720, 732, 760, 761, 774, 800, 801, 814, 840, 841, 854, 871, 872, 884, 918, 919, 932, 954, 955, 975, 1003, 1004, 1017, 1044, 1045, 1058, 1073, 1074, 1086, 1116, 1117, 1130, 1153, 1154, 1166, 1197, 1198, 1212, 1224, 1225, 1237, 1250, 1251, 1275, 1278, 1281, 1301, 1318, 1319, 1323, 1325, 1332, 1374, 1411], "empti": [21, 61, 62, 64, 65, 66, 131, 150, 455, 565, 575, 577, 596, 597, 598, 621, 622, 624, 625, 1080, 1313], "empty_lik": [1339, 1419], "en": [10, 450], "enabl": 681, "encod": [53, 163, 691, 1324, 1341, 1411], "encount": 1382, "end": [96, 151, 424, 437, 456, 878, 926, 1080, 1124, 1337, 1339, 1409, 1423, 1425, 1426], "endian": 1272, "endpoint": [446, 690], "ener": 1426, "energi": [10, 104, 107, 115, 211, 268, 269, 324, 325, 381, 402, 471, 480, 481, 497, 506, 515, 516, 725, 734, 767, 776, 807, 816, 847, 856, 877, 878, 886, 925, 934, 960, 985, 1010, 1027, 1051, 1079, 1088, 1097, 1123, 1132, 1159, 1168, 1178, 1204, 1230, 1257, 1287, 1377, 1378, 1379, 1382, 1418, 1422, 1431], "energies_ord": 878, "energy_forc": 848, "eneri": 1138, "engin": 1418, "enough": [681, 1382, 1425], "ensembl": 1426, "ensur": 1339, "enter": 1341, "enthalpi": 1380, "entir": [437, 1417], "entri": [96, 125, 157, 584, 585, 1260, 1275, 1341, 1342, 1351, 1359, 1368, 1369, 1371], "entropi": [1379, 1382], "enumer": [631, 1427], "env": [1421, 1427, 1430], "environ": 1430, "eo": [35, 1377, 1428, 1430], "eof": 456, "eosfit": [14, 471, 1377], "ep": [141, 157, 404, 657, 672, 1271, 1382], "eps0": 10, "eq": 1328, "equal": [418, 419, 427, 574, 672, 1358, 1423, 1425], "equat": [471, 541], "equi": 1426, "equilibr": 1426, "equival": [125, 636, 681, 682, 686, 687], "er": [64, 65, 66], "err": [151, 1319], "err_cv": 1318, "err_direct": 1318, "error": [53, 67, 151, 163, 657, 661, 691, 1275, 1305, 1318, 1319, 1321, 1323, 1324, 1411, 1425], "eryd": 10, "esp": [1080, 1425], "especi": [21, 136, 427, 437, 1275, 1418, 1425], "espresso": [112, 1417, 1424], "essenti": [89, 157, 1339, 1345, 1422], "estim": [1294, 1310, 1425], "estimate_p": [1301, 1425], "et": [471, 1399], "etc": [59, 61, 62, 93, 96, 222, 280, 337, 467, 537, 577, 583, 648, 657, 878, 1011, 1124, 1275, 1377, 1426, 1431, 1433], "etot": [98, 211, 269, 325, 441, 629, 848, 985, 1011, 1027, 1080, 1377, 1422, 1426, 1431, 1433], "etyp": 471, "eu": [64, 65, 66], "euler": 666, "eulerangl": 666, "ev": [21, 123, 211, 228, 269, 285, 325, 342, 467, 468, 471, 480, 494, 497, 506, 515, 529, 537, 538, 566, 577, 648, 985, 1027, 1124, 1377, 1382, 1389, 1390, 1422, 1433], "ev_by_ang3_to_gpa": 497, "evalu": [461, 577, 648, 661, 664, 681, 682, 1301, 1308, 1377], "evaluta": 648, "even": [67, 422, 423, 437, 557, 575, 650, 1325, 1336, 1339, 1382, 1422, 1425, 1430], "everi": [90, 91, 437, 1418, 1419, 1422, 1426, 1433], "evfunct": [497, 535], "evib": [1378, 1382, 1390, 1431], "evid": 437, "exact": [10, 159, 1269, 1291, 1326], "exactli": [502, 646, 655, 660, 1124, 1325, 1339, 1382, 1422, 1423], "examin": [61, 62], "exampl": [23, 56, 58, 61, 62, 64, 65, 67, 72, 79, 89, 90, 96, 98, 104, 112, 125, 126, 130, 131, 134, 139, 144, 157, 158, 159, 161, 217, 260, 269, 275, 316, 332, 373, 388, 395, 406, 416, 418, 419, 422, 423, 424, 426, 427, 429, 434, 436, 437, 440, 441, 446, 452, 456, 457, 458, 462, 477, 489, 497, 506, 512, 524, 557, 575, 577, 583, 585, 594, 595, 628, 629, 630, 631, 640, 648, 650, 652, 657, 667, 672, 676, 677, 679, 686, 687, 688, 701, 703, 717, 732, 758, 774, 798, 814, 838, 854, 869, 878, 884, 916, 932, 952, 975, 1001, 1011, 1017, 1042, 1058, 1071, 1086, 1114, 1130, 1151, 1166, 1195, 1212, 1222, 1237, 1248, 1260, 1271, 1273, 1275, 1283, 1287, 1288, 1291, 1294, 1301, 1313, 1318, 1319, 1325, 1328, 1329, 1331, 1332, 1337, 1339, 1341, 1342, 1344, 1355, 1356, 1368, 1369, 1370, 1371, 1377, 1380, 1399, 1403, 1409, 1419, 1421, 1422, 1423, 1425, 1427, 1430, 1431, 1433], "exceed": 1296, "except": [130, 131, 431, 533, 648, 1297, 1326], "excit": 471, "excl": 97, "excl_push": 97, "exclud": [97, 149, 1325], "execut": [14, 34, 67, 84, 266, 322, 379, 400, 495, 506, 530, 723, 765, 805, 845, 875, 923, 958, 1008, 1049, 1077, 1121, 1157, 1202, 1228, 1255, 1342, 1343, 1353, 1356, 1409, 1430], "executescript": 1342, "exhaust": [587, 588, 589, 590, 592, 593, 599, 600, 601, 602, 603, 604], "exist": [59, 67, 84, 89, 96, 97, 140, 266, 322, 379, 400, 437, 495, 530, 568, 723, 765, 805, 845, 875, 923, 958, 1008, 1049, 1077, 1121, 1157, 1202, 1228, 1255, 1345, 1351, 1368, 1421, 1423], "exit": [34, 1409], "exp": [1314, 1328, 1395, 1398, 1425], "expand": 437, "expans": [31, 145, 1377, 1419, 1431], "expect": [462, 1124, 1374, 1422], "experiment": 1425, "explain": [1425, 1431], "explicit": [19, 90, 437, 577, 1124, 1371], "explicitli": [1124, 1339, 1424, 1433], "expon": [127, 642, 1270], "export": 1430, "expos": [53, 61, 62, 163, 575, 691, 1324, 1411], "express": [1309, 1325], "ext": [583, 586], "ext_restart": 1426, "extend": [19, 263, 319, 376, 1339, 1345, 1351, 1417, 1428], "extens": [1290, 1326, 1417, 1428, 1429], "extern": [14, 506, 1409, 1412, 1413, 1414, 1415, 1416, 1418, 1428], "externeo": [14, 471], "extist": 1362, "extra": [424, 878, 926, 1405], "extract": [21, 640, 687, 848, 1011, 1052, 1283, 1285, 1332, 1353, 1357, 1422, 1428, 1433], "extrapol": [677, 1418], "extrem": 67, "f": [21, 38, 39, 61, 62, 64, 65, 66, 211, 269, 325, 471, 497, 503, 565, 577, 647, 648, 650, 652, 656, 657, 662, 679, 681, 751, 791, 831, 1291, 1301, 1302, 1303, 1309, 1325, 1329, 1331, 1377, 1378, 1379, 1382, 1395, 1398, 1422, 1423, 1424, 1425, 1431, 1433], "f1": 650, "f2py": [0, 1, 1429], "f2py2": 1430, "f4": [454, 455], "f90": [457, 573, 969, 1124, 1290, 1419, 1424, 1430], "f90flag": 1430, "f_ij": [1124, 1424], "fac": [411, 414], "fact": [21, 96, 149, 408, 431, 878, 1285, 1418, 1419], "factor": [19, 269, 657, 1309], "factori": [406, 547, 1409, 1412, 1413, 1414, 1415, 1416], "fail": [147, 151, 577, 1294, 1296, 1430], "fake": 1377, "fakeaseatom": [287, 344], "fallback": 497, "fals": [34, 68, 72, 77, 98, 105, 113, 116, 125, 130, 159, 160, 164, 213, 217, 222, 256, 259, 271, 275, 280, 312, 315, 328, 332, 337, 369, 371, 384, 388, 393, 406, 408, 418, 420, 421, 422, 425, 427, 428, 431, 437, 447, 456, 457, 458, 472, 477, 487, 507, 512, 522, 606, 627, 664, 666, 672, 681, 687, 688, 697, 701, 707, 715, 728, 732, 737, 756, 770, 774, 779, 796, 810, 814, 819, 836, 850, 854, 858, 867, 880, 884, 889, 914, 928, 932, 937, 950, 971, 975, 980, 999, 1013, 1017, 1022, 1040, 1054, 1058, 1062, 1069, 1082, 1086, 1090, 1093, 1112, 1124, 1126, 1130, 1134, 1136, 1149, 1162, 1166, 1170, 1173, 1193, 1208, 1212, 1216, 1220, 1233, 1237, 1241, 1246, 1291, 1294, 1296, 1300, 1325, 1331, 1333, 1339, 1345, 1351, 1368, 1379, 1382, 1403, 1407, 1409, 1421, 1423, 1433], "fanci": [437, 686], "far": [681, 878, 900, 941, 1080, 1326], "fast": [21, 1272, 1291, 1326, 1419, 1422, 1433], "faster": [80, 159, 261, 317, 374, 396, 441, 490, 525, 719, 760, 800, 840, 871, 918, 954, 1003, 1044, 1073, 1116, 1153, 1197, 1224, 1250, 1309, 1423], "fastest": [456, 1272, 1326], "faxi": [1291, 1329], "fc": [1287, 1427], "fcc": 1275, "fcompil": 1430, "fe": [64, 65, 66, 565], "featur": [441, 657, 688, 1080, 1417, 1422, 1425, 1429, 1431], "fed": 408, "fetch": 1371, "fetchal": [1342, 1350, 1353, 1357], "few": [481, 516, 661, 1382], "ffect": 437, "ffmt": [98, 144], "fft": [28, 1291, 1325, 1326, 1328, 1329, 1330, 1331, 1423, 1428], "fft_vacf": 1291, "fftconvolv": [1339, 1433], "fftfreq": [1325, 1423], "fftpack": [1325, 1328, 1423], "fftsampl": [1291, 1325], "fftw": 1328, "fget": 461, "fh": [56, 57, 59, 147, 462], "fi": 1411, "fictiti": [19, 634, 635, 636, 639], "field": [10, 577, 1052], "fig": [575, 577, 583, 594, 595, 605, 606, 623, 627, 628, 629, 1301, 1377, 1427, 1433], "fig1": 1301, "fig2": 1301, "fig_ax": [575, 583, 594, 606, 629, 1301, 1433], "fig_ax3d": [577, 583, 628, 629, 1301, 1377, 1433], "figg": 1399, "figur": [575, 583, 623, 627, 677, 1339, 1423], "file": [2, 12, 22, 23, 34, 56, 57, 59, 60, 74, 86, 88, 90, 91, 93, 96, 97, 99, 112, 132, 137, 138, 139, 140, 147, 149, 150, 221, 279, 336, 390, 408, 447, 456, 457, 458, 462, 471, 479, 506, 514, 547, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 576, 695, 706, 726, 735, 777, 817, 857, 878, 887, 900, 905, 926, 935, 941, 961, 969, 978, 1011, 1020, 1052, 1061, 1089, 1124, 1133, 1169, 1215, 1240, 1271, 1273, 1275, 1277, 1278, 1280, 1281, 1282, 1283, 1284, 1285, 1287, 1288, 1341, 1368, 1409, 1418, 1421, 1422, 1424, 1426, 1427, 1428, 1430, 1431, 1433], "file_lik": 59, "file_txt_cont": 462, "file_writ": 1427, "fileiocalcul": [6, 104, 112], "filenam": [0, 21, 34, 36, 37, 38, 60, 90, 91, 93, 133, 139, 408, 456, 457, 458, 459, 547, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 566, 567, 568, 569, 570, 571, 695, 878, 926, 1011, 1052, 1080, 1124, 1206, 1231, 1283, 1284, 1285, 1287, 1288, 1342, 1368, 1409, 1421], "fileobject": 462, "filepars": [21, 79, 260, 316, 373, 395, 489, 524, 717, 758, 798, 838, 869, 916, 952, 1001, 1042, 1071, 1114, 1151, 1195, 1222, 1248], "filepath": 926, "filetempl": [86, 87, 93, 96, 99, 1421], "filev": [91, 1341, 1369, 1370, 1371], "fileval_func": [1369, 1370, 1371], "fill": [61, 62, 406, 499, 1330, 1345, 1351, 1368, 1433], "fill_column": [1343, 1345], "filnam": 21, "filt1": 1325, "filt2": 1325, "filt_nopad": 1325, "filt_pad": 1325, "filter": [427, 437, 1325], "filxsf": 1284, "final": [436, 1080, 1433], "find": [3, 21, 661, 669, 670, 1332, 1364, 1374, 1375, 1417, 1419, 1422, 1425, 1429, 1430], "find_primit": [1373, 1374], "find_sqltyp": 1371, "fine": [10, 97, 151, 574, 1331, 1377, 1423, 1427, 1430], "finer": 423, "finit": [471, 1332, 1431], "fir": 1325, "fire": 158, "first": [61, 62, 70, 215, 273, 330, 386, 408, 417, 437, 446, 447, 462, 467, 474, 509, 537, 542, 643, 677, 688, 695, 699, 730, 772, 812, 852, 882, 930, 973, 1011, 1015, 1056, 1080, 1084, 1124, 1128, 1164, 1210, 1235, 1302, 1304, 1325, 1332, 1351, 1369, 1371, 1382, 1419, 1422, 1426, 1433], "firwin": 1325, "fishi": 1382, "fist": [90, 446], "fit": [14, 437, 471, 481, 497, 502, 503, 506, 516, 643, 645, 646, 647, 648, 650, 651, 654, 655, 656, 659, 660, 662, 679, 681, 682, 1301, 1305, 1318, 1319, 1321, 1323, 1332, 1377, 1381, 1417, 1425, 1428, 1429, 1430, 1431], "fit1": 650, "fit1d": [497, 652, 657], "fit_error": [1319, 1321], "fit_opt": 1425, "fiterror": 1323, "fitfunc": [1377, 1379, 1381, 1431], "fix": [61, 62, 409, 419, 437, 555, 878, 1011, 1272, 1323, 1366], "fix_npt": 1011, "fix_sqltyp": 1365, "fixnan": 1382, "flag": [61, 62, 222, 280, 337, 1430], "flat": [61, 62, 577, 1377, 1425], "flatit": [61, 62], "flatten": [61, 62, 96, 125, 148, 577, 640, 1272, 1357, 1371, 1377], "flavor": 457, "flexiblegett": [21, 382, 506, 707, 737, 779, 819, 858, 889, 937, 980, 1022, 1062, 1093, 1136, 1173, 1216, 1241], "flfrc": [1287, 1427], "flfrq": [1287, 1427], "flib": [1290, 1419], "flip": 1011, "float": [36, 40, 42, 54, 55, 61, 62, 63, 98, 112, 127, 136, 141, 144, 157, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 219, 269, 277, 325, 334, 404, 406, 408, 411, 414, 422, 427, 432, 435, 437, 447, 463, 464, 532, 534, 544, 545, 546, 548, 577, 632, 637, 638, 642, 657, 661, 666, 672, 675, 678, 683, 684, 692, 693, 694, 968, 1205, 1261, 1263, 1266, 1267, 1268, 1270, 1271, 1273, 1291, 1294, 1298, 1301, 1314, 1315, 1316, 1325, 1327, 1329, 1331, 1332, 1333, 1334, 1341, 1342, 1366, 1369, 1370, 1371, 1372, 1382, 1391, 1392, 1393, 1395, 1396, 1397, 1398, 1399, 1400, 1401, 1402], "float32": [219, 277, 334, 456, 458], "float64": [65, 127, 141, 157, 456, 458, 642, 668, 1258, 1259, 1269, 1270, 1271, 1382], "fluctuat": [634, 635], "flush": 1011, "fm": [64, 65, 66, 1433], "fmax": 1331, "fmin": [649, 650, 651, 652, 1323], "fmt": [157, 648, 1271], "fn": [60, 137, 138, 139, 140, 150, 408, 456, 457, 458, 459, 557, 568], "fntype": 408, "fo": 1430, "focu": 1418, "fold": [1319, 1325], "follow": [21, 878, 1124, 1430], "foo": [6, 21, 34, 56, 67, 77, 79, 84, 89, 90, 99, 125, 134, 139, 150, 159, 256, 260, 266, 312, 316, 322, 369, 373, 379, 393, 395, 400, 408, 471, 487, 489, 495, 522, 524, 530, 557, 568, 584, 695, 715, 717, 723, 756, 758, 765, 796, 798, 805, 836, 838, 845, 867, 869, 875, 914, 916, 923, 950, 952, 958, 999, 1001, 1008, 1040, 1042, 1049, 1069, 1071, 1077, 1112, 1114, 1121, 1149, 1151, 1157, 1193, 1195, 1202, 1220, 1222, 1228, 1246, 1248, 1255, 1341, 1342, 1355, 1356, 1368, 1371], "foo_run_1": 90, "foot": 59, "footprint": 1330, "forc": [21, 104, 107, 115, 211, 219, 231, 269, 277, 288, 325, 334, 345, 422, 424, 426, 566, 648, 734, 776, 816, 848, 856, 878, 886, 899, 926, 934, 1088, 1124, 1132, 1139, 1168, 1269, 1271, 1272, 1284, 1366, 1418, 1420, 1422, 1427, 1429, 1430], "forces_rm": 98, "foreground": 585, "forev": 1296, "forget": [219, 277, 334, 416], "forluma": 1275, "form": [90, 159, 577, 679, 1272, 1287, 1420, 1429], "format": [23, 61, 62, 98, 144, 157, 506, 552, 558, 569, 576, 577, 648, 726, 969, 1284, 1347, 1424, 1431], "format_str": 159, "former": 1422, "formula": [10, 1275, 1419], "forth": 1433, "fortran": [36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 61, 62, 136, 457, 1274, 1290, 1326, 1328, 1417, 1429], "forward": [1328, 1431], "found": [21, 96, 97, 112, 159, 441, 672, 688, 1011, 1052, 1124, 1275, 1285, 1304, 1323, 1332, 1374, 1425, 1430, 1433], "fourier": [23, 1331, 1423, 1430], "fouriertransform": [1326, 1328], "fr": [64, 65, 66], "frac": [575, 1314, 1315, 1327, 1334, 1425], "frac2cart": 1, "frac2cart_traj": 1, "fraction": [211, 269, 325, 415, 420, 425, 430, 431, 572, 575, 1095, 1175, 1420, 1422, 1424, 1427, 1429, 1433], "fragment": 1430, "frc": 1426, "free": [627, 1301, 1378, 1379, 1382], "freedom": [634, 635, 639], "freeli": 1422, "freiberg": 418, "frepr": 159, "freq": [575, 634, 635, 636, 639, 1282, 1283, 1284, 1285, 1287, 1288, 1291, 1325, 1377, 1382, 1427], "frequenc": [10, 575, 634, 635, 636, 639, 1283, 1284, 1287, 1288, 1291, 1325, 1331, 1382, 1423, 1424], "frequency_unit": 1331, "frequent": 577, "friedrich": 437, "fritzsch": 437, "from": [3, 6, 10, 14, 19, 21, 23, 53, 54, 55, 56, 57, 59, 61, 62, 63, 64, 65, 86, 89, 90, 95, 96, 97, 99, 112, 125, 147, 152, 163, 211, 233, 251, 268, 269, 289, 307, 324, 325, 346, 364, 381, 402, 404, 406, 409, 412, 418, 422, 423, 427, 428, 429, 437, 446, 450, 452, 456, 457, 458, 459, 471, 481, 497, 506, 516, 541, 565, 575, 577, 583, 584, 585, 587, 588, 589, 590, 592, 593, 594, 599, 600, 601, 602, 603, 604, 630, 631, 640, 648, 657, 677, 686, 687, 688, 691, 703, 725, 767, 807, 847, 877, 905, 925, 926, 960, 969, 1010, 1011, 1051, 1079, 1080, 1091, 1123, 1124, 1159, 1171, 1204, 1230, 1257, 1269, 1275, 1284, 1285, 1287, 1291, 1294, 1301, 1303, 1304, 1313, 1319, 1324, 1325, 1327, 1328, 1332, 1334, 1339, 1340, 1341, 1342, 1344, 1345, 1347, 1351, 1355, 1359, 1368, 1369, 1371, 1373, 1374, 1377, 1379, 1380, 1382, 1399, 1411, 1418, 1419, 1420, 1421, 1422, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1433], "from_scratch": 116, "fromstr": 1269, "ftrajectori": 878, "fuction": 577, "fulfil": 409, "full": [21, 90, 93, 635, 1278, 1281, 1423], "full_faxi": 1291, "full_out": 1291, "full_pdo": 1291, "fulli": [61, 62], "fullout": [420, 422, 423, 427, 428, 664, 672], "fun": 1426, "func": [90, 91, 154, 155, 162, 460, 462, 497, 631, 633, 675, 1312, 1377, 1381, 1399], "function": [0, 1, 15, 23, 25, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 59, 90, 99, 130, 159, 269, 408, 418, 423, 437, 447, 459, 460, 462, 465, 468, 502, 503, 535, 538, 575, 631, 646, 647, 650, 651, 652, 655, 656, 657, 660, 662, 664, 675, 926, 1271, 1273, 1275, 1290, 1301, 1304, 1313, 1318, 1326, 1327, 1329, 1333, 1334, 1339, 1340, 1344, 1357, 1369, 1370, 1373, 1375, 1377, 1381, 1382, 1395, 1398, 1399, 1409, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1420, 1428, 1429, 1433], "functional": [460, 1290], "further": [1418, 1431], "fvacf": [1292, 1430], "fvib": [1378, 1382, 1389, 1431], "fw": 1328, "fx": [108, 1011], "fy": [108, 1011], "fysik": 1431, "fz": [108, 1011], "g": [14, 21, 59, 61, 62, 67, 77, 86, 90, 91, 93, 96, 99, 112, 125, 139, 144, 159, 239, 256, 295, 312, 352, 369, 393, 408, 410, 413, 419, 427, 431, 434, 437, 438, 447, 451, 453, 487, 506, 522, 547, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 568, 575, 577, 583, 585, 595, 596, 597, 598, 622, 625, 629, 648, 650, 667, 679, 681, 686, 689, 715, 756, 796, 836, 867, 878, 914, 950, 999, 1011, 1040, 1069, 1112, 1124, 1149, 1193, 1220, 1246, 1269, 1282, 1285, 1287, 1301, 1304, 1325, 1339, 1341, 1369, 1371, 1373, 1374, 1375, 1377, 1379, 1381, 1423, 1424, 1425, 1426, 1428, 1430, 1431, 1433], "g_opt": 1377, "ga": [64, 65, 66], "gamma": [211, 269, 325, 409, 411, 412, 414, 422, 423, 450, 456, 458, 565, 572, 1278, 1281, 1284, 1327, 1334, 1427, 1431], "garbag": [61, 62], "gather": 1425, "gauss": [1301, 1313, 1332, 1339], "gaussian": [648, 1011, 1314, 1327, 1333, 1334, 1339, 1423, 1425], "gb": [437, 1433], "gd": [64, 65, 66, 598], "ge": [64, 65, 66], "gener": [0, 1, 21, 28, 61, 62, 67, 89, 148, 408, 418, 419, 422, 447, 565, 574, 577, 640, 682, 690, 1275, 1284, 1294, 1296, 1304, 1325, 1326, 1331, 1339, 1377, 1380, 1419, 1421, 1430, 1431], "geo_opt": 808, "geometri": [878, 900, 926, 941], "get": [21, 125, 147, 269, 406, 437, 446, 574, 575, 677, 682, 1011, 1124, 1291, 1294, 1302, 1327, 1331, 1334, 1374, 1377, 1379, 1382, 1403, 1418, 1419, 1422, 1423, 1430, 1433], "get_": [21, 547, 1422, 1433], "get_2d_testdata": 1433, "get_alat": 1124, "get_arrai": 1342, "get_array1d": 1342, "get_ase_atom": [104, 112, 269, 1430, 1433], "get_bar": 67, "get_cel": [1080, 1422], "get_coord": 1080, "get_dcd_file_info": 0, "get_dict": 1368, "get_fake_ase_atom": [222, 269, 280, 337, 1433], "get_foo": [67, 72, 84, 217, 266, 275, 322, 332, 379, 388, 400, 477, 495, 512, 530, 701, 723, 732, 765, 774, 805, 814, 845, 854, 875, 884, 923, 932, 958, 975, 1008, 1017, 1049, 1058, 1077, 1086, 1121, 1130, 1157, 1166, 1202, 1212, 1228, 1237, 1255], "get_grid_help": 627, "get_head": [1344, 1347], "get_list1d": [1342, 1354], "get_max": 643, "get_min": [14, 497, 500, 506, 643, 644, 648, 652, 653, 658, 1377], "get_ord": 1011, "get_path_norm": [575, 1287, 1427], "get_posit": 627, "get_potential_energi": [104, 112], "get_random_struct": [1294, 1299], "get_root": 643, "get_spacegroup": 1375, "get_spglib": 211, "get_spglib_spacegroup": 1433, "get_sql_record": 86, "get_struct": [21, 1124, 1422], "get_traj": [21, 1422, 1433], "get_window": 1325, "getdefaultencod": [53, 163, 691, 1324, 1411], "getter": [21, 67, 82, 84, 263, 266, 269, 319, 322, 376, 379, 398, 400, 492, 495, 527, 530, 721, 723, 762, 765, 802, 805, 842, 845, 873, 875, 920, 923, 956, 958, 1005, 1008, 1046, 1049, 1075, 1077, 1118, 1121, 1124, 1155, 1157, 1199, 1202, 1226, 1228, 1252, 1255], "gfortran": 1430, "gfulian": 1431, "gh": 598, "gibb": 1431, "gibbs_test_data": 1431, "git": 1430, "github": [1430, 1431], "give": [661, 1291, 1368], "given": [53, 54, 55, 61, 62, 63, 66, 163, 211, 269, 325, 422, 423, 437, 455, 574, 583, 596, 597, 598, 621, 622, 624, 625, 648, 651, 661, 691, 1304, 1324, 1325, 1332, 1374, 1375, 1377, 1382, 1411, 1417, 1429], "glenn": 19, "global": [431, 768, 808, 848, 1425], "gmane": 151, "go": [462, 598, 1304, 1339, 1377], "goal": [1418, 1425], "goe": 1425, "gofr": 408, "gohom": 1342, "good": [577, 661, 1309, 1339, 1377, 1382, 1418, 1430], "got": [3, 462], "gov": 10, "gp": [598, 1287, 1427], "gpa": [10, 123, 211, 269, 325, 480, 497, 498, 504, 515, 848, 863, 1377, 1422], "gpaw": 1418, "grad": [1302, 1303], "gradient": 1302, "green": 595, "grep": [21, 151, 900, 941, 1269, 1431], "grid": [96, 112, 422, 423, 574, 577, 591, 640, 649, 1287, 1288, 1377, 1378, 1379, 1380, 1417, 1428, 1429, 1431], "grid_in_cel": 423, "group": [557, 568, 1375, 1377, 1433], "group0": 1377, "group1": 1377, "grundlagen": 437, "guarante": 878, "guess": [112, 649, 651, 661, 1323, 1425], "gui": [408, 1418], "gunzip": [1421, 1427], "gv": 598, "gx": 598, "gz": 1427, "gzip": [147, 1427], "h": [3, 10, 64, 65, 66, 112, 422, 423, 427, 429, 437, 624, 1325, 1373, 1380, 1422, 1426, 1431, 1433], "h5": [557, 568, 1431], "h5l": 1431, "h5py": [568, 1430], "ha": [14, 21, 34, 59, 61, 62, 77, 256, 312, 369, 393, 404, 418, 419, 441, 471, 487, 522, 566, 577, 584, 643, 679, 682, 688, 715, 740, 741, 742, 743, 756, 781, 782, 783, 784, 796, 821, 822, 823, 824, 836, 859, 860, 867, 878, 892, 898, 899, 900, 914, 939, 940, 941, 950, 999, 1040, 1069, 1112, 1149, 1193, 1220, 1246, 1275, 1287, 1291, 1328, 1330, 1337, 1339, 1341, 1361, 1368, 1417, 1418, 1419, 1421, 1422, 1425, 1430, 1431], "haberlandt": 437, "hack": [575, 1382], "hackish": 878, "ham": 1325, "hand": [1422, 1425, 1433], "handi": [22, 1418, 1431], "handl": [56, 57, 132, 136, 151, 425, 437, 506, 568, 584, 652, 672, 677, 681, 1269, 1339, 1377, 1428, 1433], "handler": [53, 163, 691, 1324, 1411], "hann": [441, 1325, 1339, 1433], "happen": [1124, 1425], "happi": 1427, "hard": 1430, "hardcod": [969, 1011], "harmon": [31, 1382, 1417, 1428, 1429], "harmonicthermo": [1377, 1378, 1431], "hartre": [19, 471], "hashabl": [1405, 1406], "hat": 1433, "have": [19, 21, 34, 59, 60, 90, 96, 112, 150, 159, 222, 280, 325, 337, 409, 412, 418, 419, 427, 437, 438, 471, 481, 506, 516, 577, 675, 679, 681, 688, 878, 926, 1011, 1080, 1124, 1260, 1275, 1283, 1323, 1325, 1339, 1342, 1371, 1374, 1377, 1382, 1418, 1419, 1422, 1424, 1425, 1430, 1431, 1433], "haven": 1423, "hb": 625, "hbar": [10, 1424], "hc": 625, "hdf": 568, "hdf5": [15, 568, 1377, 1431], "hdr": [454, 455], "he": [64, 65, 66], "head": 151, "header": [56, 59, 60, 96, 456, 457, 459, 547, 1011, 1269, 1287, 1343, 1344, 1347, 1356, 1365, 1368, 1371, 1430], "header_com": [56, 57, 59], "header_dtyp": 459, "header_maxlin": [56, 57, 59], "heat": [1377, 1382], "height": 1423, "heinzing": 437, "help": [1325, 1424, 1430], "helper": [151, 403, 630, 1403, 1423], "henc": [661, 1419], "here": [3, 12, 23, 27, 34, 61, 62, 96, 159, 422, 436, 437, 447, 575, 657, 681, 688, 695, 985, 1027, 1080, 1124, 1272, 1275, 1327, 1330, 1334, 1339, 1342, 1377, 1379, 1380, 1418, 1419, 1421, 1423, 1424, 1425, 1431, 1433], "hetatm": 1052, "hexagon": [1275, 1377, 1431], "hf": [64, 65, 66], "hg": [64, 65, 66, 625], "hide": 1382, "high": [15, 427, 650, 1124, 1304, 1325, 1399, 1420, 1429], "higher": [1304, 1425], "highest": 60, "highpass": 1325, "hint": [1294, 1377], "hist": [408, 437, 447], "histogram": [406, 408, 437, 447], "histor": 1423, "hk": 625, "hm": [418, 625], "ho": [64, 65, 66], "hold": [21, 90, 406, 424, 657, 679, 1302, 1331, 1377], "hole": 1294, "home": [93, 112, 145, 1421], "homepag": 1275, "homogen": [61, 62], "hoover": 19, "hopefulli": 661, "hostax": [623, 627], "hostaxessubplot": 627, "hostnam": [93, 96, 1421], "how": [61, 62, 97, 269, 427, 437, 438, 441, 575, 661, 1275, 1288, 1330, 1339, 1377, 1420, 1423, 1429, 1431, 1433], "howev": [404, 681, 688, 1124, 1272, 1339, 1418, 1422, 1425, 1426], "hpc": 1430, "hr": 625, "htm": 418, "html": [10, 112, 151, 566, 571, 666, 1326, 1328, 1339, 1424, 1431], "http": [10, 23, 112, 151, 418, 435, 437, 450, 461, 471, 566, 571, 595, 666, 695, 1325, 1326, 1328, 1339, 1424, 1430, 1431], "hubbard": 1124, "huhu": 1342, "hull": 671, "hungri": 441, "hy": 625, "hyper": 1323, "hyperopt": [35, 1425], "hz": [10, 634, 635, 636, 639, 1291, 1325, 1331, 1423], "i": [0, 1, 3, 6, 12, 14, 15, 19, 21, 23, 34, 53, 54, 55, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 72, 77, 80, 84, 86, 87, 89, 90, 91, 95, 96, 97, 98, 99, 104, 112, 129, 130, 131, 132, 136, 139, 140, 144, 149, 150, 151, 159, 163, 164, 211, 213, 217, 219, 222, 233, 249, 256, 261, 266, 269, 271, 275, 277, 280, 289, 305, 312, 317, 322, 325, 328, 332, 334, 337, 346, 362, 369, 374, 379, 384, 388, 393, 396, 400, 404, 406, 408, 409, 410, 411, 412, 414, 415, 417, 418, 419, 420, 422, 423, 424, 425, 427, 428, 431, 434, 436, 437, 438, 440, 441, 446, 447, 451, 455, 462, 467, 471, 472, 477, 481, 487, 490, 495, 502, 503, 506, 507, 512, 516, 522, 525, 530, 537, 565, 568, 574, 575, 577, 579, 582, 583, 585, 587, 588, 589, 590, 592, 593, 596, 597, 598, 599, 600, 601, 602, 603, 604, 621, 622, 624, 625, 627, 628, 636, 640, 643, 646, 647, 648, 651, 655, 656, 657, 660, 661, 662, 664, 665, 669, 670, 671, 672, 673, 679, 681, 683, 684, 686, 687, 688, 690, 691, 695, 697, 701, 715, 719, 723, 726, 728, 732, 756, 760, 765, 770, 774, 796, 800, 805, 810, 814, 836, 840, 845, 848, 850, 854, 867, 871, 875, 878, 880, 884, 914, 918, 923, 926, 928, 932, 950, 954, 958, 969, 971, 975, 985, 999, 1003, 1008, 1011, 1013, 1017, 1027, 1040, 1044, 1049, 1052, 1054, 1058, 1069, 1073, 1077, 1080, 1082, 1086, 1090, 1112, 1116, 1121, 1124, 1126, 1130, 1134, 1149, 1153, 1157, 1162, 1166, 1170, 1193, 1197, 1202, 1208, 1212, 1220, 1224, 1228, 1233, 1237, 1246, 1250, 1255, 1260, 1269, 1271, 1272, 1275, 1284, 1285, 1287, 1290, 1291, 1292, 1294, 1296, 1300, 1301, 1302, 1304, 1306, 1309, 1318, 1319, 1321, 1323, 1324, 1325, 1326, 1327, 1328, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1339, 1341, 1342, 1344, 1345, 1347, 1351, 1353, 1355, 1358, 1368, 1369, 1373, 1374, 1375, 1377, 1379, 1382, 1403, 1405, 1407, 1409, 1411, 1417, 1418, 1419, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1430, 1431, 1433], "i4": [454, 455], "iatom": 1419, "ibrav": [116, 1275], "id": [108, 1011], "idea": [96, 269, 1377, 1418], "ident": [418, 423, 434, 969, 1275, 1339, 1419], "idx": [96, 97, 326, 415, 427, 428, 429, 577, 630, 640, 1341, 1342, 1431], "idx0": [404, 1332], "idx1": 404, "idx2": 404, "idx_lst": 672, "ifft": 1423, "iflatten": 142, "ifort": 1430, "ignor": [6, 59, 136, 151, 565, 583, 1011, 1325, 1332, 1382], "ignore_bad_restart_fil": [105, 113], "ii": [406, 440, 577, 630, 631, 640, 1427], "ij": [665, 673, 1306, 1310, 1425], "illustr": [61, 62], "imag": [61, 62, 406, 408, 420, 421, 425, 435, 437, 447, 1288], "imaginari": [61, 62, 1328], "immedi": 1403, "implement": [21, 23, 28, 67, 438, 458, 471, 506, 640, 682, 688, 878, 961, 1269, 1292, 1302, 1326, 1328, 1330, 1418, 1420, 1422, 1423, 1428, 1429, 1431, 1433], "impli": [61, 62, 1425], "import": [6, 72, 89, 90, 112, 125, 161, 217, 275, 332, 388, 404, 418, 423, 427, 429, 477, 497, 506, 512, 577, 594, 630, 631, 640, 648, 657, 677, 686, 687, 701, 732, 774, 814, 848, 854, 884, 932, 975, 1011, 1017, 1058, 1086, 1130, 1166, 1212, 1237, 1287, 1290, 1291, 1301, 1325, 1328, 1332, 1339, 1377, 1399, 1421, 1422, 1423, 1424, 1426, 1427, 1430, 1433], "improv": 681, "in1d": 672, "inaccur": 648, "inceas": 1425, "includ": [427, 1325, 1425], "incomplet": [96, 1371], "inconsist": 1275, "incorrect": [481, 516], "incorrectli": 1430, "increas": [1294, 1304, 1325, 1339, 1423], "increment": 132, "inctanc": [220, 278, 335], "indefinit": [587, 588, 589, 590, 592, 593, 599, 600, 601, 602, 603, 604], "indenpend": 99, "independ": [412, 438, 1339, 1418, 1431], "index": [3, 10, 415, 427, 436, 437, 595, 672, 673, 686, 687, 1335], "index_hm2": 418, "indic": [97, 404, 410, 427, 431, 451, 672, 686, 1319, 1332], "individu": [125, 1431], "inertia": 19, "inf": 1333, "infile_templ": [101, 106, 114], "infile_templ_kei": [101, 106, 114], "infin": 437, "influenc": 1291, "info": [60, 128, 878], "inform": [21, 61, 62, 454, 1425], "infti": 1425, "inherit": 961, "ini": [56, 57, 60], "init": [83, 89, 264, 320, 377, 399, 493, 528, 722, 763, 803, 843, 874, 921, 957, 1006, 1011, 1047, 1076, 1119, 1156, 1200, 1227, 1253], "initi": [21, 61, 62, 64, 65, 649, 651, 1080, 1313, 1323, 1406], "initio": [481, 516, 1418], "initkwd": 648, "inner": [671, 1292, 1403], "input": [6, 22, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 86, 88, 96, 97, 100, 102, 104, 109, 112, 113, 117, 130, 211, 242, 269, 298, 355, 408, 424, 437, 441, 447, 471, 506, 565, 569, 570, 576, 577, 579, 582, 584, 594, 661, 681, 688, 695, 878, 1011, 1080, 1271, 1273, 1274, 1277, 1278, 1280, 1281, 1284, 1287, 1290, 1296, 1301, 1302, 1303, 1326, 1341, 1371, 1374, 1376, 1418, 1421, 1422, 1424, 1426, 1427, 1428, 1433], "input_pw": [112, 1424], "insensit": 160, "insert": [667, 1294, 1342, 1345, 1351], "insid": [575, 1423], "inspect": [1403, 1431], "instabl": 1425, "instal": [21, 136, 222, 280, 337, 1417, 1427, 1429, 1433], "instanc": [34, 54, 55, 56, 63, 86, 87, 91, 95, 96, 134, 164, 222, 230, 280, 287, 337, 344, 406, 417, 420, 424, 437, 454, 497, 506, 565, 575, 583, 584, 627, 628, 629, 648, 661, 677, 1080, 1300, 1318, 1323, 1342, 1368, 1369, 1372, 1377, 1407, 1409, 1422, 1423, 1425, 1431], "instanti": [61, 62], "instead": [21, 59, 89, 123, 130, 133, 430, 437, 439, 457, 458, 650, 652, 673, 686, 687, 688, 878, 1124, 1260, 1282, 1327, 1334, 1374, 1423, 1425, 1430, 1431, 1433], "instruct": [90, 1417, 1429], "insul": 423, "int": [36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 58, 59, 61, 62, 63, 97, 144, 155, 164, 408, 422, 427, 436, 438, 440, 441, 447, 467, 471, 497, 537, 574, 631, 650, 664, 667, 677, 681, 682, 684, 686, 687, 688, 689, 690, 1269, 1275, 1282, 1283, 1284, 1285, 1288, 1290, 1291, 1292, 1300, 1301, 1325, 1326, 1327, 1332, 1334, 1336, 1337, 1339, 1341, 1351, 1375, 1382, 1395, 1407], "int16": [61, 62], "int_": [61, 62], "int_0": 1395, "integ": [54, 55, 61, 62, 63, 132, 160, 250, 306, 363, 422, 440, 672, 685, 687, 1336, 1341, 1371, 1373], "integr": [19, 408, 437, 447, 675, 1291, 1333, 1382, 1395, 1424], "intel": 1430, "intel64": 1430, "intend": [447, 669, 670], "intens": 1285, "inter": 648, "interact": [21, 34, 61, 62, 108, 669, 670, 1011, 1329, 1368, 1418, 1428], "interfac": [14, 61, 62, 408, 650, 1290, 1342, 1409, 1412, 1413, 1414, 1415, 1416, 1418, 1428, 1430], "intern": [437, 629, 650, 681, 1377, 1382], "interpol": [25, 426, 577, 643, 648, 657, 664, 673, 682, 1291, 1301, 1304, 1321, 1377, 1417, 1420, 1423, 1428, 1429], "interpol2d": [577, 650, 682, 1377, 1433], "interpret": [54, 55, 61, 62, 63], "interv": [661, 669, 670], "introduc": 1326, "intuit": 577, "inv": 1419, "inv_multi": 1313, "invers": [112, 577, 648, 661, 1315, 1419, 1425], "invert": 688, "investig": 1425, "invok": [21, 84, 266, 322, 379, 400, 495, 530, 723, 765, 805, 845, 875, 923, 958, 1008, 1049, 1077, 1121, 1157, 1202, 1228, 1255], "involv": [1339, 1419], "invsibl": 595, "invsplev": [502, 646, 655, 657, 660], "io": [2, 21, 35, 79, 108, 128, 260, 316, 373, 395, 437, 489, 524, 717, 758, 798, 838, 869, 916, 952, 1001, 1011, 1042, 1071, 1080, 1114, 1151, 1195, 1222, 1248, 1417, 1422, 1426, 1427, 1428, 1429, 1431], "ion": [1097, 1178], "ionic": 1124, "ionmov": [19, 634, 635, 639], "ipython": [12, 1418, 1433], "ir": [64, 65, 66, 1285], "irreduc": 1374, "is_mono": 643, "is_same_struct": 1374, "is_seq": 129, "is_set_attr": [67, 68, 72, 213, 217, 271, 275, 328, 332, 384, 388, 472, 477, 507, 512, 697, 701, 728, 732, 770, 774, 810, 814, 850, 854, 880, 884, 928, 932, 971, 975, 1013, 1017, 1054, 1058, 1082, 1086, 1126, 1130, 1162, 1166, 1208, 1212, 1233, 1237], "isam": 1275, "ish": [438, 1430], "isinst": 648, "isochor": 1382, "isochoric_heat_capac": [1383, 1431], "isotop": 10, "isotrop": 634, "ist": [435, 437], "istep": 1419, "item": [61, 62, 152, 417, 1011, 1124], "items": [61, 62], "iter": [61, 62, 64, 65, 66, 97, 149, 455, 587, 588, 589, 590, 592, 593, 596, 597, 598, 599, 600, 601, 602, 603, 604, 621, 622, 624, 625, 631, 640, 1080, 1313, 1342, 1422], "iteritem": 629, "itertool": [96, 406, 577, 587, 588, 589, 590, 592, 593, 599, 600, 601, 602, 603, 604, 1377], "its": [61, 62], "itself": [461, 634, 635, 1319], "ix": 440, "iz": 440, "j": [10, 19, 269, 420, 437, 471, 665, 672, 676, 1124, 1271, 1306, 1328, 1377, 1403, 1422, 1424], "jamesrhest": 695, "jax": [1302, 1303, 1309], "jax_mod": 1309, "jf": 1309, "jit": 1309, "jj": [406, 577, 640, 1339], "jmol": [1409, 1428, 1433], "job": [93, 96, 97, 1421, 1426], "jobfil": 93, "join": 1427, "jump": [61, 62, 1427], "just": [34, 89, 90, 410, 438, 451, 462, 500, 644, 653, 658, 664, 672, 1124, 1318, 1325, 1332, 1377, 1409, 1421, 1422, 1423, 1431, 1433], "k": [64, 65, 66, 112, 211, 246, 269, 302, 325, 359, 422, 423, 437, 481, 494, 516, 529, 571, 572, 573, 574, 575, 577, 596, 597, 598, 622, 625, 634, 635, 636, 639, 657, 664, 665, 679, 750, 790, 830, 908, 909, 1108, 1189, 1278, 1281, 1287, 1306, 1313, 1319, 1328, 1332, 1339, 1377, 1381, 1382, 1417, 1422, 1425, 1427, 1428, 1429, 1430], "k_": 1425, "k_point": [1277, 1278, 1280, 1281, 1341], "kaiser": 1325, "kaiserord": 1325, "kb": [1382, 1386, 1388], "kbar": [10, 905, 946, 1105, 1145, 1186, 1422], "kd": 598, "ke": 1011, "keep": [34, 1330, 1374, 1409], "keepdim": 688, "keepfil": [34, 1409], "kei": [64, 65, 86, 87, 90, 91, 95, 96, 99, 101, 102, 106, 109, 114, 117, 128, 159, 557, 568, 629, 1285, 1301, 1313, 1341, 1355, 1369, 1370, 1371, 1377, 1378, 1379, 1381, 1421, 1431], "kept": 158, "kern": [441, 1339], "kernel": [441, 1336, 1339, 1425], "kernel_ridg": 1425, "kernelridg": 1425, "key1": [90, 1341], "key2": [90, 1341], "keyword": [6, 59, 61, 62, 64, 65, 89, 100, 102, 109, 117, 222, 269, 280, 337, 416, 429, 430, 547, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 568, 575, 583, 628, 629, 648, 650, 651, 657, 664, 688, 878, 1011, 1313, 1342, 1345, 1374, 1375, 1377, 1425], "kg": [10, 19, 233, 269, 289, 346, 1422], "kgrid": [112, 422, 1433], "kh": 598, "khinchin": [1326, 1423], "khinchintheorem": 1326, "kind": [136, 149, 151, 878, 1418, 1424, 1428], "kineng": [985, 1027], "kinet": [1097, 1178], "kjpaw_psl": 112, "kk": [406, 640, 1339], "klein": 19, "knot": 657, "know": [21, 140, 150, 424, 1296, 1325, 1331, 1342, 1418, 1422, 1431, 1433], "known": 1269, "ko": 598, "kortu": 1431, "kp": 598, "kpath": [35, 1287, 1427], "kpoint": [98, 116, 1287], "kpt": [112, 113], "kpts2mp": 112, "kr": [64, 65, 66], "krr": 1425, "ks_frac": [572, 1427], "ks_path": 1427, "kudo": 461, "kv": 598, "kwarg": [59, 64, 65, 96, 139, 156, 471, 480, 515, 575, 585, 628, 657, 1301, 1313, 1348, 1349, 1350, 1353, 1354, 1355, 1357, 1359, 1383, 1384, 1385, 1387], "kwd": [89, 102, 103, 104, 109, 112, 117, 122, 222, 269, 280, 325, 337, 416, 423, 429, 430, 438, 439, 442, 500, 502, 547, 549, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 568, 570, 579, 582, 583, 586, 605, 606, 626, 629, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 658, 659, 660, 663, 688, 695, 712, 726, 748, 752, 768, 788, 792, 808, 828, 832, 848, 864, 878, 906, 911, 926, 947, 969, 991, 995, 1011, 1032, 1036, 1052, 1066, 1080, 1106, 1110, 1124, 1146, 1160, 1187, 1191, 1218, 1243, 1244, 1286, 1289, 1293, 1299, 1312, 1318, 1322, 1323, 1345, 1368, 1374, 1375, 1377], "kx": [573, 598, 648], "ky": 648, "l": [19, 131, 158, 408, 437, 447, 1301, 1302, 1303, 1308, 1327, 1334, 1427], "la": [64, 65, 66], "label": [6, 104, 105, 112, 113, 437, 506, 575, 583, 584, 594, 627, 652, 657, 1301, 1325, 1339, 1423, 1427, 1433], "lag": [1326, 1423], "lala": [90, 130, 144, 583, 1342], "lambda": [90, 427, 631, 1309, 1369, 1370, 1371, 1377, 1399, 1423], "lammp": [12, 21, 35, 239, 295, 352, 456, 457, 458, 558, 559, 569, 969, 985, 1011, 1027, 1417, 1422, 1428, 1433], "lammpsdcdmdoutputfil": [1422, 1433], "lammpsrun": [569, 576], "lammpstextmdoutputfil": [969, 1422], "lanczo": 878, "lapack": [1419, 1430], "larg": [21, 419, 1294, 1325, 1382, 1418, 1425], "last": [97, 98, 408, 418, 431, 436, 446, 447, 640, 677, 688, 1011, 1351, 1374, 1375, 1377, 1405, 1418, 1419, 1422, 1426, 1433], "lat_symbol": 565, "later": [688, 1080, 1342, 1377, 1403, 1422, 1430, 1433], "latter": [21, 34, 1080, 1325, 1409, 1422, 1431], "lattic": [427, 434, 565, 1090, 1124, 1134, 1170, 1275, 1424, 1431], "lazi": 461, "lcao": 1418, "ldd": 1430, "ldisp": 1287, "lead": [6, 557, 568, 1325, 1425], "leak": 1291, "leakag": 1423, "learn": 1430, "least": [422, 423, 682, 1260, 1301, 1304, 1318, 1337, 1425], "leav": [61, 62, 427, 688, 1409], "left": [583, 595, 627, 688, 1314, 1425], "legaxnam": [583, 585], "legend": [583, 584, 594, 652, 657, 1301, 1325, 1339, 1423, 1433], "len": [3, 36, 37, 38, 125, 245, 269, 301, 358, 406, 408, 426, 431, 437, 447, 497, 628, 640, 664, 672, 673, 686, 687, 690, 1325, 1326, 1328, 1332, 1339, 1351, 1377, 1423, 1431, 1433], "length": [10, 19, 96, 129, 250, 268, 269, 306, 324, 325, 363, 381, 402, 404, 408, 418, 419, 423, 434, 437, 447, 481, 516, 565, 566, 567, 571, 636, 639, 649, 661, 664, 725, 767, 807, 847, 877, 886, 925, 934, 960, 1010, 1051, 1079, 1080, 1088, 1123, 1124, 1132, 1159, 1168, 1204, 1230, 1257, 1260, 1275, 1291, 1294, 1318, 1319, 1325, 1335, 1337, 1339, 1377, 1399, 1422, 1424, 1425], "length_range_scal": 1294, "less": [427, 657, 1283, 1342, 1423], "lesser": 1430, "let": [878, 1377, 1430], "lett": 1399, "level": [15, 61, 62, 125, 650, 671, 1420, 1429], "li": [64, 65, 66, 1339], "lib": 1430, "libgomp": 1430, "libiomp": 1430, "liblapack": 1430, "libmkl_cor": 1430, "lie": 661, "light": 10, "like": [2, 3, 34, 90, 93, 126, 136, 147, 149, 151, 212, 222, 269, 270, 280, 325, 327, 337, 383, 404, 408, 418, 424, 425, 427, 437, 438, 447, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 568, 573, 577, 585, 657, 665, 672, 675, 677, 690, 696, 727, 769, 809, 849, 878, 879, 927, 970, 1011, 1012, 1053, 1080, 1081, 1124, 1125, 1161, 1207, 1231, 1232, 1269, 1285, 1288, 1294, 1318, 1325, 1330, 1341, 1342, 1345, 1357, 1374, 1377, 1381, 1382, 1405, 1406, 1418, 1419, 1422, 1423, 1425, 1426, 1430, 1431, 1433], "limit": [67, 159, 575, 1272, 1328, 1380, 1399, 1425], "linalg": [452, 648, 1304, 1419, 1425], "line": [34, 56, 59, 158, 565, 583, 584, 594, 627, 900, 941, 1011, 1288, 1427], "line1": 584, "line2": 584, "linear": [426, 648, 677, 1304, 1318, 1419, 1425], "linearndinterpol": 648, "link": [132, 1430], "linspac": [426, 497, 575, 577, 628, 648, 652, 657, 677, 690, 1301, 1325, 1329, 1332, 1339, 1377, 1399, 1421, 1423, 1433], "linux": [127, 642, 1270], "liquid": 437, "list": [3, 64, 65, 66, 67, 90, 96, 98, 112, 125, 129, 142, 149, 152, 219, 244, 245, 250, 277, 300, 301, 306, 334, 357, 358, 363, 408, 427, 437, 447, 455, 565, 585, 596, 597, 598, 621, 622, 624, 625, 631, 636, 639, 640, 686, 687, 878, 1272, 1287, 1294, 1313, 1325, 1342, 1347, 1355, 1357, 1368, 1369, 1371, 1373, 1377, 1418, 1422, 1424, 1430, 1431], "list_iter": [608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620], "lit": 1326, "liter": [54, 55, 63], "literatur": [418, 1419], "littl": 1272, "live": [86, 90, 575, 1011, 1282, 1430], "ll": 1323, "lmp": [12, 104, 105, 108, 569, 969, 1011, 1433], "lo": 1427, "load": [21, 34, 133, 408, 506, 561, 1422, 1427, 1430], "loadtxt": [59, 1269, 1287, 1427], "loc": [583, 627], "local": [93, 97, 500, 644, 653, 658, 1124], "locat": [627, 1422, 1426, 1430], "log": [408, 969, 1011, 1433], "logfil": [34, 1409, 1433], "logfn": 408, "logic": [437, 1091, 1171], "london": 1124, "long": [34, 437, 446, 1339, 1341, 1419, 1423, 1425, 1433], "longish": 427, "look": [21, 437, 438, 878, 1275, 1285, 1288, 1377, 1430, 1433], "lookup": [502, 646, 655, 657, 660, 661], "looong": 1328, "loop": [12, 96, 125, 404, 418, 419, 428, 438, 441, 577, 630, 631, 640, 1272, 1290, 1292, 1309, 1326, 1328, 1330, 1339, 1377, 1403, 1419, 1431], "loos": 1326, "lorentz": [1327, 1339, 1433], "loss": 1425, "lost": 677, "lot": [1294, 1341], "low": [61, 62, 481, 516, 768, 848, 1124, 1325, 1330, 1425], "lower": [583, 1294, 1425], "lowercas": 577, "lowpass": 1325, "lr": [64, 65, 66], "lst": [152, 417, 433, 470, 540, 1276, 1277, 1278, 1279, 1280, 1281, 1369, 1370], "lst2": 152, "lstsq": [1304, 1425], "lu": [64, 65, 66], "m": [1, 12, 19, 51, 222, 269, 280, 337, 418, 419, 437, 452, 574, 596, 597, 598, 622, 625, 648, 1290, 1291, 1292, 1301, 1302, 1303, 1306, 1309, 1310, 1327, 1334, 1339, 1340, 1371, 1418, 1419, 1422, 1425, 1427, 1430], "m0": [10, 19], "m_x": 665, "m_y": 665, "machin": [86, 96, 97, 1272, 1421], "machineri": 682, "made": [86, 96, 140, 417], "magnet": 10, "magnitud": [675, 1377], "mai": [21, 27, 34, 125, 269, 419, 422, 427, 437, 585, 627, 675, 681, 688, 878, 1011, 1052, 1080, 1124, 1285, 1291, 1296, 1304, 1339, 1371, 1374, 1382, 1409, 1422, 1423, 1424, 1425, 1430, 1433], "mail": [151, 1418], "main": [1339, 1423], "mainli": 848, "major": [61, 62], "make": [112, 212, 270, 327, 383, 424, 506, 595, 627, 628, 677, 696, 727, 769, 809, 849, 879, 927, 970, 1012, 1053, 1081, 1125, 1161, 1207, 1232, 1271, 1273, 1294, 1325, 1339, 1409, 1427, 1430], "make_axes_grid_fig": 627, "makefil": 1430, "manadatori": 1423, "manag": 1430, "mandatori": [1339, 1377], "mani": [21, 61, 62, 90, 409, 418, 419, 427, 428, 575, 661, 1124, 1288, 1290, 1294, 1339, 1377, 1419, 1423, 1425, 1427], "manipul": 1418, "mantissa": [127, 642, 1270], "manual": [34, 1377, 1403, 1422, 1430, 1431], "map": [3, 64, 65, 90, 239, 295, 352, 409, 412, 681, 1011, 1313, 1430], "mape": 3, "mar": 93, "mark": 19, "marker": 1427, "martyna": 19, "mask": [406, 431, 437, 438, 440, 671, 672], "mask_val": [1, 42, 406], "mass": [3, 19, 65, 233, 269, 289, 346, 634, 635, 636, 639, 1273, 1290, 1291, 1292, 1422, 1423], "mass_str": 1427, "mass_uniqu": 1427, "massiv": 1339, "match": [90, 664, 1271, 1272, 1364, 1419], "match_mask": 427, "matdyn": [22, 1276, 1279, 1282, 1287, 1288, 1424, 1427], "matdyn_freq_fn": 1427, "matdyn_in_fn": 1427, "math": [159, 418, 419, 471, 1419], "mathbb": 1301, "mathbf": [1302, 1304, 1306, 1425], "mathcal": 1431, "mathemat": [452, 1423], "mathworld": [666, 1326, 1328], "matmul": 1328, "matplotlib": [148, 575, 595, 627, 1428, 1430], "matric": [418, 1419], "matrix": [404, 409, 412, 418, 425, 434, 435, 452, 666, 679, 681, 689, 1124, 1282, 1283, 1284, 1288, 1301, 1302, 1306, 1309, 1328, 1371, 1419, 1424, 1425], "matter": [96, 437, 471, 574, 1275, 1377, 1419, 1424, 1425], "mawk": [21, 691], "max": [56, 67, 408, 437, 447, 497, 669, 670, 676, 1294, 1338, 1358], "maxdim": [59, 60], "maxim": [435, 437, 1294, 1331, 1433], "maxima": [500, 644, 653, 658, 1332], "maximum": 1325, "maxit": 926, "maxmem": 437, "mayb": [878, 1373, 1403, 1418], "mbar": 10, "md": [2, 21, 23, 34, 64, 65, 66, 104, 219, 222, 277, 280, 334, 337, 408, 418, 419, 431, 435, 436, 437, 447, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 598, 684, 768, 848, 878, 900, 941, 1011, 1080, 1124, 1160, 1231, 1269, 1330, 1417, 1418, 1420, 1422, 1424, 1426, 1428, 1429], "mdtype": 878, "me": 1275, "mean": [54, 55, 63, 436, 565, 648, 688, 1272, 1294, 1301, 1309, 1310, 1320, 1371, 1424, 1425], "meaning": 436, "meant": [34, 1403], "measur": [408, 1425], "mechan": [67, 437], "medium": [848, 1328], "memori": [61, 62, 437, 441, 1328, 1330, 1339, 1342, 1367, 1433], "ment": 1341, "mercer": 1425, "mesh": 423, "meshgrid": [577, 648, 673], "meshgridt": [577, 1433], "messag": 1403, "metal": [108, 423, 1011, 1422], "method": [1, 14, 21, 41, 51, 61, 62, 67, 72, 79, 81, 86, 89, 90, 93, 96, 100, 103, 104, 112, 159, 211, 217, 260, 262, 269, 275, 316, 318, 325, 332, 373, 375, 382, 388, 395, 397, 437, 438, 441, 447, 461, 465, 471, 477, 489, 491, 497, 500, 506, 512, 524, 526, 535, 547, 572, 574, 577, 583, 584, 640, 643, 644, 648, 650, 652, 653, 657, 658, 661, 695, 701, 717, 720, 726, 732, 758, 761, 768, 774, 798, 801, 808, 814, 838, 841, 848, 854, 869, 872, 878, 884, 916, 919, 926, 932, 952, 955, 961, 969, 975, 1001, 1004, 1011, 1017, 1042, 1045, 1052, 1058, 1071, 1074, 1080, 1086, 1114, 1117, 1124, 1130, 1151, 1154, 1160, 1166, 1195, 1198, 1206, 1212, 1222, 1225, 1231, 1237, 1248, 1251, 1289, 1290, 1291, 1292, 1293, 1294, 1301, 1310, 1318, 1322, 1323, 1325, 1326, 1328, 1339, 1341, 1342, 1345, 1377, 1379, 1380, 1382, 1403, 1409, 1418, 1419, 1422, 1423, 1425, 1428, 1431, 1433], "metric": [1318, 1323], "mexican": 1433, "mg": [64, 65, 66], "mh": 598, "michael": 19, "middl": [408, 437, 446, 447, 1339], "might": [3, 575, 675, 682, 808, 1430, 1433], "mimic": [211, 1377], "min": [481, 497, 516, 645, 649, 651, 654, 659, 669, 670, 681, 1294, 1338], "min_v": 1431, "mind": 1433, "minim": [269, 422, 649, 651, 1011, 1379, 1425, 1431, 1433], "minima": [648, 1332], "minimimum": 1425, "minimum": [406, 408, 420, 421, 425, 435, 437, 447, 481, 506, 516, 669, 1325], "minpoint": [422, 423], "mirr": [1291, 1293, 1331, 1423], "mirror": [1291, 1328, 1331, 1339, 1423], "miss": [707, 737, 779, 819, 858, 889, 937, 980, 1022, 1062, 1093, 1136, 1173, 1216, 1241, 1285, 1422, 1433], "mix": 125, "mixing_beta": [112, 113, 116], "mixing_mod": [112, 113, 116], "mkdir": [74, 221, 279, 336, 390, 479, 514, 706, 735, 777, 817, 857, 887, 935, 978, 1020, 1061, 1089, 1133, 1169, 1215, 1240, 1426], "mkl": 1430, "mkl_lib": 1430, "mkl_root": 1430, "mkvirtualenv": 1430, "ml": 1425, "mn": [64, 65, 66], "mo": [64, 65, 66, 598], "mode": [34, 61, 62, 90, 91, 96, 97, 98, 139, 159, 568, 1282, 1284, 1285, 1288, 1325, 1331, 1339, 1368, 1409, 1418, 1421, 1427, 1430], "model": [67, 465, 499, 535, 1301, 1308, 1318, 1319, 1321, 1399, 1425], "model_select": 1318, "modern": 1431, "modifi": [128, 416, 425, 430, 431, 575, 686, 1124, 1369], "modul": [0, 1, 23, 61, 62, 1342, 1422, 1423, 1430], "modulu": [480, 481, 515, 516, 1377, 1380], "mol": [19, 34, 408, 1377], "molecul": 571, "molecular": [59, 878, 1409, 1412, 1413, 1414, 1415, 1416, 1428], "molekulardynamik": 437, "molfil": 571, "molid": 34, "moment": 437, "monkhorst": [1417, 1429], "monkhorst_pack": 423, "monotin": 661, "monoton": [503, 647, 656, 662, 1325], "more": [61, 62, 89, 422, 428, 437, 457, 574, 577, 579, 582, 583, 584, 675, 677, 1011, 1052, 1124, 1294, 1304, 1339, 1373, 1382, 1409, 1417, 1419, 1423, 1425, 1426, 1427, 1429, 1430, 1431], "most": [67, 72, 90, 93, 217, 275, 332, 388, 418, 437, 477, 512, 585, 681, 701, 732, 774, 814, 854, 878, 884, 932, 975, 1017, 1058, 1086, 1124, 1130, 1166, 1212, 1237, 1291, 1405, 1406, 1419, 1422, 1430, 1431], "mostli": [28, 419, 422, 1304, 1326, 1417, 1430], "mothership": 67, "motion": 1426, "move": [61, 62], "mp": [423, 598, 1433], "mpirun": 112, "mpl": [35, 575, 648, 677, 1301, 1325, 1377, 1427, 1428, 1433], "mpl_toolkit": [577, 627], "mplot3d": 577, "mse": 1425, "msg": [533, 1297, 1404, 1405, 1408], "msk": [427, 671], "mt": [64, 65, 66], "mtk": 1011, "mttk": 35, "mu0": 10, "much": [21, 79, 222, 260, 269, 280, 316, 337, 373, 395, 437, 489, 524, 575, 657, 681, 717, 758, 798, 838, 848, 869, 916, 952, 1001, 1042, 1071, 1114, 1151, 1195, 1222, 1248, 1294, 1304, 1339, 1418, 1422, 1423, 1430], "mult": [685, 1328], "multi": 1313, "multidimension": [61, 62], "multipl": [159, 412, 594, 648, 685, 688, 1011, 1342, 1344], "multipli": [1080, 1124], "multiquadr": [648, 1315, 1316, 1425], "murnaghan": 471, "must": [53, 54, 55, 56, 63, 66, 67, 159, 163, 222, 280, 337, 404, 418, 419, 435, 437, 455, 577, 596, 597, 598, 621, 622, 624, 625, 650, 657, 661, 669, 670, 686, 687, 691, 878, 926, 969, 1260, 1269, 1271, 1272, 1301, 1324, 1325, 1339, 1342, 1351, 1377, 1382, 1411, 1423, 1424, 1425, 1430], "mutabl": [66, 455, 461, 596, 597, 598, 621, 622, 624, 625], "mv": [116, 598], "mx": [598, 665], "my": 665, "my_calc": 112, "my_fil": 462, "mycas": 89, "mysuperparsingclass": 67, "n": [64, 65, 66, 104, 105, 108, 112, 116, 238, 239, 245, 250, 253, 254, 269, 294, 295, 301, 306, 309, 310, 351, 352, 358, 363, 366, 367, 418, 427, 438, 440, 480, 506, 515, 567, 574, 575, 607, 630, 648, 664, 665, 677, 679, 689, 1011, 1124, 1269, 1271, 1273, 1301, 1302, 1303, 1306, 1308, 1319, 1328, 1331, 1336, 1339, 1377, 1399, 1411, 1419, 1421, 1422, 1423, 1424, 1427, 1428, 1430, 1431], "n0": 157, "n1": 151, "n2": 1341, "n_repeat": [1318, 1319, 1323], "n_split": [1318, 1319, 1323], "n_volum": 1431, "na": [64, 65, 66, 1377], "nadd": [1325, 1337, 1423], "nal3n2al": 269, "name": [21, 64, 65, 67, 77, 82, 84, 86, 90, 93, 95, 96, 112, 121, 127, 132, 134, 137, 138, 140, 147, 151, 159, 219, 256, 266, 277, 312, 322, 334, 369, 379, 393, 398, 400, 408, 410, 433, 437, 447, 451, 454, 462, 471, 487, 492, 495, 506, 522, 527, 530, 547, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 577, 585, 629, 642, 648, 661, 695, 703, 715, 721, 723, 756, 762, 765, 796, 802, 805, 836, 842, 845, 867, 873, 875, 914, 920, 923, 950, 956, 958, 999, 1005, 1008, 1011, 1040, 1046, 1049, 1069, 1075, 1077, 1112, 1118, 1121, 1149, 1155, 1157, 1193, 1199, 1202, 1220, 1226, 1228, 1246, 1252, 1255, 1270, 1273, 1283, 1313, 1339, 1341, 1342, 1343, 1345, 1351, 1355, 1361, 1362, 1363, 1368, 1369, 1377, 1426, 1430, 1431, 1433], "nan": [61, 62, 1382], "nanfil": 1382, "narrow": 1425, "nat": 116, "natom": [0, 1, 36, 38, 39, 40, 42, 43, 44, 45, 47, 48, 49, 51, 52, 116, 211, 269, 325, 406, 418, 419, 420, 421, 425, 427, 428, 431, 454, 455, 456, 458, 471, 634, 635, 639, 900, 941, 1124, 1269, 1271, 1272, 1273, 1282, 1283, 1284, 1285, 1287, 1288, 1290, 1291, 1292, 1339, 1374, 1382, 1419, 1421, 1423, 1424, 1433], "natom_styl": 108, "natomic_posit": 116, "natomic_speci": 116, "natoms0": 437, "natoms1": 437, "natur": [471, 661, 675, 1422], "natural_unit": 10, "nax0": 1377, "nax1": 1377, "nax2": 1377, "nb": [64, 65, 66, 1377], "nbnd": [575, 1287], "nboundari": 108, "nbyte": [61, 62], "nc": 1377, "ncell_paramet": 116, "nclear": 108, "ncol": 640, "nd": [59, 60, 64, 65, 66, 141, 427, 628, 640, 648, 650, 671, 681, 682, 688, 1337, 1339, 1377, 1425], "ndarrai": [61, 62, 419, 425, 665, 667, 683, 686, 687, 1330, 1339], "ndim": [1, 46, 61, 62, 418, 634, 635, 636, 639, 650, 651, 671, 677, 679, 680, 681, 689, 1301, 1377], "ndimag": 1339, "ndump": 108, "ndump_modifi": 108, "ne": [64, 65, 66], "nearest": [408, 427, 428, 429, 435, 437, 447, 648, 1310, 1339, 1425], "nearest_neighbor": [428, 429], "nearestndinterpol": 648, "neb": 1428, "necessari": [675, 1423, 1424], "need": [21, 34, 60, 61, 62, 89, 93, 96, 112, 222, 280, 337, 404, 423, 436, 437, 471, 574, 650, 1080, 1124, 1272, 1275, 1294, 1301, 1304, 1309, 1331, 1332, 1339, 1341, 1342, 1377, 1379, 1380, 1409, 1418, 1419, 1422, 1423, 1426, 1427, 1430, 1431, 1433], "neg": [123, 440, 688, 1305, 1382, 1423], "neigbor": 437, "neighbor": [408, 427, 428, 429, 435, 437, 447, 1310, 1423, 1425], "neither": [575, 661], "nest": [96, 98, 125, 149, 577, 640, 1371, 1377], "nested_loop": [96, 1371], "net": [3, 23, 471], "network": 1301, "never": 1430, "nevertheless": [1377, 1422, 1425], "new": [34, 53, 64, 65, 66, 96, 97, 159, 163, 403, 404, 418, 419, 455, 481, 516, 568, 579, 582, 596, 597, 598, 621, 622, 624, 625, 627, 667, 681, 691, 1011, 1290, 1313, 1324, 1345, 1351, 1368, 1411, 1419, 1422, 1426, 1433], "new_fixed_axi": 627, "new_point": [648, 650], "new_valu": [568, 648], "new_vec": 574, "newlin": [1278, 1281], "newton": 661, "next": [61, 62, 98, 640, 677, 685, 1288, 1291, 1336, 1337], "nf": [634, 635, 639], "nfi": 878, "nfreq": 1377, "nh": [636, 639], "nhc": [19, 636, 639], "ni": [64, 65, 66, 427], "nice": [157, 657, 1330, 1418, 1427], "nice_bond": 1433, "nicer": 135, "nist": 10, "nitem": [683, 684], "niter": [630, 631], "nk": [572, 573, 575, 1276, 1279, 1287], "nk1": [1276, 1279], "nk2": [1276, 1279], "nk3": [1276, 1279], "nk_point": 116, "nmode": [1283, 1284, 1288], "nn": [1, 50], "nn_dist": 427, "nn_idx": 427, "nno": [636, 639], "no_reset": 926, "nobuild": 1430, "nois": [681, 969, 1304, 1326, 1423, 1425], "noisi": [1304, 1425], "non": [417, 435, 437, 461, 1124, 1423], "none": [21, 34, 59, 61, 62, 67, 72, 76, 77, 80, 81, 82, 83, 84, 86, 90, 93, 105, 111, 113, 119, 130, 144, 155, 157, 161, 211, 217, 219, 251, 255, 256, 261, 262, 264, 266, 269, 275, 277, 307, 311, 312, 317, 318, 320, 322, 332, 334, 364, 368, 369, 374, 375, 377, 379, 388, 392, 393, 396, 397, 398, 399, 400, 404, 408, 415, 418, 419, 422, 424, 425, 427, 428, 433, 437, 447, 467, 477, 486, 487, 490, 491, 492, 493, 495, 500, 502, 505, 506, 512, 521, 522, 525, 526, 527, 528, 530, 533, 537, 547, 572, 575, 577, 583, 585, 595, 623, 627, 628, 634, 635, 639, 640, 644, 645, 646, 648, 649, 651, 653, 654, 655, 658, 659, 660, 661, 664, 672, 686, 687, 688, 695, 701, 714, 715, 719, 720, 721, 722, 723, 732, 755, 756, 760, 761, 762, 763, 765, 774, 795, 796, 800, 801, 802, 803, 805, 814, 835, 836, 840, 841, 842, 843, 845, 854, 866, 867, 871, 872, 873, 874, 875, 878, 884, 913, 914, 918, 919, 920, 921, 923, 932, 949, 950, 954, 955, 956, 957, 958, 975, 998, 999, 1003, 1004, 1005, 1006, 1008, 1011, 1017, 1039, 1040, 1044, 1045, 1046, 1047, 1049, 1052, 1058, 1068, 1069, 1073, 1074, 1075, 1076, 1077, 1080, 1086, 1090, 1111, 1112, 1116, 1117, 1118, 1119, 1121, 1124, 1130, 1134, 1148, 1149, 1153, 1154, 1155, 1156, 1157, 1166, 1170, 1192, 1193, 1197, 1198, 1199, 1200, 1202, 1206, 1212, 1219, 1220, 1224, 1225, 1226, 1227, 1228, 1231, 1237, 1245, 1246, 1250, 1251, 1252, 1253, 1255, 1260, 1271, 1275, 1282, 1283, 1284, 1285, 1288, 1290, 1291, 1292, 1293, 1301, 1304, 1306, 1309, 1318, 1323, 1325, 1332, 1337, 1339, 1341, 1342, 1343, 1344, 1345, 1347, 1351, 1356, 1358, 1361, 1368, 1369, 1371, 1374, 1377, 1379, 1382, 1386, 1388, 1389, 1390, 1406, 1409, 1422, 1425], "nonempti": 140, "nonexist": 568, "nonuniformli": 664, "nonzero": 406, "norm": [1, 41, 572, 573, 575, 681, 1326, 1333, 1339, 1423], "norm_vmd": 437, "normal": [59, 159, 404, 418, 436, 437, 471, 657, 675, 683, 684, 900, 941, 1291, 1304, 1318, 1321, 1326, 1333, 1339, 1382, 1424, 1425], "nornmal": 437, "nose": 19, "noseinert": 19, "nosym": 116, "notat": [444, 1420, 1429], "note": [3, 6, 34, 61, 62, 67, 96, 97, 99, 123, 125, 151, 157, 159, 160, 211, 222, 269, 280, 325, 337, 404, 409, 418, 420, 422, 423, 427, 431, 437, 438, 452, 471, 481, 506, 516, 565, 566, 568, 574, 577, 585, 595, 627, 648, 650, 664, 675, 677, 681, 682, 848, 878, 926, 969, 1011, 1052, 1080, 1124, 1272, 1275, 1284, 1285, 1287, 1288, 1290, 1291, 1301, 1304, 1323, 1325, 1326, 1328, 1331, 1332, 1339, 1341, 1342, 1374, 1375, 1377, 1382, 1406, 1417, 1420, 1422, 1423, 1424, 1425, 1427, 1429], "noth": 21, "nothig": 462, "now": [6, 14, 90, 112, 211, 462, 679, 681, 1287, 1374, 1377, 1419, 1423, 1425, 1426, 1433], "np": [59, 61, 62, 64, 65, 66, 98, 112, 125, 127, 141, 157, 161, 269, 406, 418, 419, 423, 437, 438, 452, 575, 577, 628, 640, 642, 648, 652, 676, 677, 681, 682, 686, 687, 688, 1260, 1269, 1270, 1271, 1287, 1301, 1325, 1328, 1339, 1377, 1382, 1421, 1422, 1423, 1427, 1430, 1431, 1433], "npad": [1289, 1291, 1293], "npair_coeff": 108, "npair_styl": 108, "npoint": [471, 506, 648, 650, 652, 671, 677, 681, 689], "npt": [878, 1011], "nqpoint": [1282, 1288], "nread_data": 108, "nrow": 640, "nrun": 108, "nspeci": 269, "nstep": [0, 1, 36, 38, 39, 40, 41, 44, 45, 49, 51, 52, 211, 249, 269, 305, 325, 362, 417, 418, 419, 421, 426, 431, 436, 441, 443, 445, 446, 449, 456, 457, 458, 667, 1011, 1269, 1290, 1291, 1292, 1325, 1326, 1339, 1395, 1419, 1423, 1433], "nstephdr": [0, 12, 36, 457], "nstom": 325, "ntap": 1325, "nthermo_styl": 108, "nthread": [1, 51, 1290, 1430], "ntitl": [454, 455], "ntyp": 116, "null": [1341, 1351, 1368, 1371, 1411], "num": [35, 132, 427, 428, 577, 623, 1332, 1377, 1399, 1425, 1428, 1433], "num_int": [408, 437, 447], "number": [3, 54, 55, 60, 61, 62, 63, 65, 90, 96, 97, 127, 136, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 236, 238, 239, 245, 253, 254, 292, 294, 295, 301, 309, 310, 349, 351, 352, 358, 366, 367, 406, 408, 418, 422, 425, 426, 427, 432, 436, 437, 447, 463, 464, 471, 497, 506, 532, 534, 544, 545, 546, 548, 565, 627, 631, 632, 634, 635, 636, 637, 638, 639, 642, 667, 678, 679, 681, 683, 684, 692, 693, 694, 878, 900, 941, 968, 1011, 1052, 1124, 1205, 1261, 1263, 1266, 1267, 1268, 1269, 1270, 1272, 1282, 1283, 1285, 1288, 1294, 1298, 1325, 1327, 1331, 1334, 1336, 1339, 1342, 1351, 1358, 1373, 1374, 1375, 1382, 1391, 1392, 1393, 1395, 1396, 1397, 1400, 1401, 1402, 1424, 1428, 1430], "number_dens": [408, 437, 447], "numer": [675, 681, 969, 1304, 1326, 1328, 1382, 1406, 1419, 1420, 1423, 1429], "numpi": [12, 59, 61, 62, 112, 126, 127, 130, 141, 149, 161, 219, 277, 334, 405, 406, 418, 423, 424, 427, 437, 438, 454, 577, 578, 581, 594, 640, 642, 657, 667, 668, 672, 673, 675, 677, 681, 686, 687, 688, 690, 1258, 1259, 1269, 1270, 1272, 1287, 1301, 1309, 1325, 1326, 1328, 1330, 1339, 1353, 1354, 1372, 1417, 1419, 1421, 1422, 1427, 1428, 1430], "nunit": 108, "nve": 1426, "nvplt": 471, "nvt": 1426, "nx": [1, 46, 422, 438, 440, 577, 640, 673], "nxest": 648, "ny": [1, 46, 422, 438, 440, 577, 640, 673], "nyest": 648, "nyq": 1325, "nyquist": [1325, 1331], "nz": [422, 438, 440, 640], "o": [6, 15, 64, 65, 66, 90, 150, 239, 295, 352, 408, 427, 437, 447, 497, 506, 624, 648, 652, 1301, 1304, 1321, 1326, 1371, 1421, 1426, 1431, 1433], "o0": 130, "o2": 1430, "o3": 1430, "ob": 625, "obj": [34, 404, 415, 430, 438, 443, 566, 571, 1409, 1410], "obj_in": 415, "object": [21, 53, 56, 61, 62, 64, 65, 67, 74, 79, 86, 89, 90, 93, 96, 100, 103, 104, 112, 125, 128, 133, 147, 148, 149, 161, 163, 221, 222, 249, 260, 269, 279, 280, 305, 316, 336, 337, 362, 373, 390, 395, 407, 416, 417, 430, 433, 436, 437, 442, 454, 461, 462, 465, 479, 489, 497, 514, 524, 547, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 561, 562, 563, 564, 569, 572, 576, 577, 578, 579, 581, 582, 583, 584, 587, 588, 589, 590, 592, 593, 599, 600, 601, 602, 603, 604, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 640, 643, 648, 650, 686, 687, 691, 706, 707, 717, 735, 737, 758, 777, 779, 798, 817, 819, 838, 857, 858, 869, 887, 889, 916, 935, 937, 952, 961, 978, 980, 1001, 1020, 1022, 1042, 1061, 1062, 1071, 1089, 1093, 1114, 1124, 1133, 1136, 1151, 1169, 1173, 1195, 1215, 1216, 1222, 1240, 1241, 1248, 1290, 1294, 1301, 1313, 1318, 1322, 1324, 1325, 1326, 1341, 1342, 1377, 1381, 1382, 1403, 1409, 1411, 1412, 1413, 1414, 1415, 1416, 1418, 1422, 1428, 1433], "observ": 1425, "obtain": [90, 425, 497, 969, 1124, 1345, 1355, 1379, 1422, 1425], "obvious": [222, 280, 337], "oc": 625, "occup": 116, "occupi": [61, 62], "occur": [462, 1374, 1382], "octob": 151, "odd": [422, 1339], "odii": [878, 926], "odiss": 878, "off": [160, 627, 1422], "offset": [61, 62, 627, 1301, 1326], "often": 1422, "og": 625, "oi": 625, "ok": [130, 219, 277, 334, 404, 625, 1430, 1433], "old": [14, 97, 112, 403, 418, 419, 481, 516, 568, 1290, 1419], "om": 625, "omega": [1288, 1424], "omp": 1430, "omp_num_thread": 1430, "onc": [21, 67, 212, 270, 327, 383, 418, 696, 727, 769, 809, 849, 879, 927, 970, 1012, 1053, 1081, 1125, 1161, 1207, 1232, 1319, 1418, 1419, 1422, 1431], "one": [61, 62, 64, 65, 86, 96, 98, 129, 159, 211, 233, 269, 289, 325, 346, 409, 417, 418, 419, 431, 437, 438, 547, 568, 574, 583, 584, 585, 627, 648, 657, 661, 671, 677, 679, 686, 687, 1011, 1124, 1275, 1282, 1283, 1291, 1313, 1318, 1337, 1341, 1357, 1377, 1379, 1409, 1418, 1419, 1421, 1422, 1423, 1425, 1426, 1427, 1430, 1431, 1433], "ones": [568, 1339, 1422, 1425], "onli": [12, 14, 21, 61, 62, 67, 86, 89, 90, 96, 97, 104, 112, 158, 159, 164, 211, 212, 222, 269, 270, 280, 325, 327, 337, 383, 408, 418, 424, 427, 429, 431, 436, 437, 438, 441, 447, 456, 458, 471, 566, 568, 572, 585, 627, 640, 648, 661, 664, 672, 677, 681, 682, 696, 707, 726, 727, 737, 769, 779, 809, 819, 848, 849, 858, 878, 879, 889, 900, 927, 937, 941, 961, 969, 970, 980, 1012, 1022, 1052, 1053, 1062, 1080, 1081, 1093, 1124, 1125, 1136, 1160, 1161, 1173, 1207, 1216, 1232, 1241, 1269, 1275, 1283, 1290, 1291, 1292, 1294, 1300, 1318, 1323, 1325, 1326, 1328, 1331, 1337, 1339, 1341, 1368, 1374, 1377, 1378, 1379, 1382, 1407, 1418, 1419, 1423, 1424, 1425, 1426, 1430, 1431, 1433], "open": [79, 137, 138, 147, 260, 316, 373, 395, 462, 489, 524, 568, 717, 758, 798, 838, 869, 916, 952, 1001, 1042, 1071, 1114, 1151, 1195, 1222, 1248], "open_fil": 0, "openbabel": 1052, "openmp": [1290, 1417, 1429], "oper": [96, 431, 437, 575, 577, 583, 640], "oppenheim": 1418, "opt": [1377, 1379, 1430, 1431], "opt_kwd": 1323, "optcel": [634, 635], "optim": [649, 651, 878, 926, 1011, 1323, 1377, 1418, 1419, 1425, 1433], "optimum": 1425, "option": [34, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 61, 62, 67, 86, 90, 96, 97, 125, 132, 211, 269, 325, 406, 408, 411, 414, 418, 420, 425, 436, 437, 438, 447, 471, 481, 516, 569, 571, 572, 575, 577, 583, 585, 648, 649, 650, 651, 675, 681, 682, 688, 878, 1011, 1080, 1124, 1277, 1278, 1280, 1281, 1290, 1294, 1296, 1306, 1318, 1319, 1326, 1332, 1341, 1342, 1343, 1344, 1345, 1347, 1351, 1356, 1358, 1361, 1368, 1369, 1371, 1377, 1379, 1382, 1409, 1429, 1433], "orbit": 926, "order": [61, 62, 67, 233, 250, 269, 289, 306, 346, 363, 427, 437, 440, 462, 467, 471, 497, 537, 577, 640, 664, 671, 675, 677, 679, 682, 878, 1011, 1124, 1325, 1326, 1332, 1374, 1377, 1382, 1422, 1423, 1433], "org": [10, 112, 151, 450, 471, 566, 695, 1325, 1328, 1339, 1424], "orient": [404, 409, 412, 1275, 1419], "orig": 98, "origin": [59, 98, 438, 462, 1368], "orthogon": [404, 408, 447], "orthorhomb": 437, "oscil": [661, 1425], "ot": 1290, "other": [3, 21, 23, 67, 80, 90, 96, 211, 261, 269, 317, 325, 374, 396, 417, 419, 490, 525, 719, 760, 800, 840, 871, 918, 954, 1003, 1044, 1073, 1116, 1124, 1153, 1197, 1224, 1250, 1318, 1339, 1340, 1351, 1368, 1373, 1374, 1380, 1418, 1420, 1422, 1423, 1429, 1430, 1433], "otherwis": [53, 163, 164, 422, 577, 691, 1124, 1290, 1300, 1324, 1407, 1411], "otoh": [1275, 1339], "ouput": [551, 552, 553, 554, 555, 556, 558, 559, 562, 563, 564], "our": 1423, "out": [12, 60, 104, 105, 112, 113, 151, 404, 427, 431, 437, 661, 672, 969, 1011, 1080, 1124, 1284, 1285, 1288, 1325, 1422, 1423, 1426, 1427, 1430, 1431, 1433], "outdir": [112, 113, 116], "outer": [577, 1403], "outfil": 506, "outlin": 1423, "output": [22, 23, 34, 59, 112, 151, 408, 447, 567, 570, 577, 768, 848, 878, 926, 969, 1011, 1080, 1124, 1284, 1285, 1409, 1417, 1418, 1420, 1424, 1427, 1428, 1429], "outputfil": [21, 1422], "outsid": [96, 406, 437, 575, 631], "outweight": 67, "over": [21, 96, 404, 418, 436, 437, 441, 461, 640, 688, 1124, 1296, 1330, 1339, 1342, 1377, 1382, 1418, 1419, 1423], "overfit": 1425, "overrid": [67, 1090, 1134, 1170, 1430], "overview": [23, 1417], "overwrit": [418, 568, 1124, 1345, 1351], "overwrite_anglesijk": [1, 42], "overwrite_dist": [1, 45], "overwrite_distsq": [1, 47], "overwrite_distvec": [1, 47], "overwrite_distvecs_frac": [1, 47], "overwritten": [97, 568], "own": [86, 1323, 1428], "owndata": [61, 62], "p": [64, 65, 66, 108, 437, 471, 480, 481, 504, 506, 515, 516, 565, 624, 648, 1011, 1301, 1305, 1307, 1310, 1314, 1315, 1316, 1318, 1319, 1323, 1377, 1379, 1380, 1403, 1420, 1422, 1429, 1430, 1431], "p0": [481, 497, 506, 516], "p1": [471, 1423], "p1941": 471, "p2": 1423, "p235": 471, "p809": 471, "p_": 1425, "pa": [10, 64, 65, 66], "pack": [1294, 1330, 1417, 1423, 1429], "packag": [269, 1275, 1417, 1418, 1430], "pad": [1291, 1325, 1326, 1337, 1339, 1420, 1429], "pad_zero": [1325, 1423], "padd": [1291, 1339], "pair": [64, 65, 90, 91, 437, 1313, 1428], "pair_coeff": [104, 105, 108, 1011], "pair_styl": [104, 105, 108, 1011], "pane": 591, "paper": [19, 1431], "par1": 96, "par2": 96, "par3": 96, "parallelepip": 450, "param": [86, 465, 467, 468, 497, 499, 535, 537, 538, 541, 542, 543, 1318, 1319, 1320, 1321, 1323, 1431], "paramet": [34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 56, 58, 59, 60, 61, 62, 77, 84, 86, 90, 91, 93, 96, 97, 98, 99, 102, 104, 109, 112, 117, 123, 125, 126, 128, 130, 132, 136, 139, 141, 144, 149, 152, 157, 158, 159, 160, 161, 211, 219, 222, 256, 266, 268, 269, 277, 280, 312, 322, 324, 325, 334, 337, 369, 379, 381, 393, 400, 402, 404, 405, 406, 408, 409, 410, 411, 412, 413, 414, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 430, 431, 434, 435, 436, 437, 438, 440, 441, 444, 445, 447, 448, 449, 450, 451, 452, 453, 456, 457, 458, 459, 467, 468, 471, 481, 487, 494, 495, 497, 498, 502, 504, 506, 516, 522, 529, 530, 537, 538, 547, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 583, 584, 585, 595, 606, 627, 628, 629, 631, 634, 635, 636, 639, 640, 645, 646, 648, 649, 650, 651, 652, 654, 655, 657, 659, 660, 661, 664, 665, 666, 667, 669, 670, 671, 672, 673, 675, 677, 679, 681, 682, 683, 684, 686, 687, 688, 689, 690, 695, 707, 715, 723, 725, 737, 756, 765, 767, 779, 796, 805, 807, 819, 836, 845, 847, 858, 867, 875, 877, 878, 889, 914, 923, 925, 937, 950, 958, 960, 980, 999, 1008, 1010, 1011, 1022, 1040, 1049, 1051, 1062, 1069, 1077, 1079, 1090, 1093, 1112, 1121, 1123, 1124, 1134, 1136, 1149, 1157, 1159, 1170, 1173, 1193, 1202, 1204, 1216, 1220, 1228, 1230, 1241, 1246, 1255, 1257, 1269, 1271, 1272, 1273, 1275, 1277, 1278, 1280, 1281, 1282, 1283, 1284, 1285, 1287, 1288, 1290, 1291, 1292, 1294, 1296, 1301, 1302, 1303, 1304, 1306, 1308, 1310, 1314, 1315, 1316, 1318, 1319, 1323, 1325, 1326, 1327, 1328, 1329, 1331, 1332, 1333, 1334, 1336, 1337, 1338, 1339, 1341, 1342, 1343, 1344, 1345, 1347, 1351, 1356, 1358, 1361, 1363, 1364, 1366, 1368, 1369, 1371, 1373, 1374, 1375, 1377, 1378, 1379, 1381, 1382, 1395, 1398, 1399, 1405, 1406, 1409, 1417, 1418, 1420, 1424, 1428, 1429, 1431], "parameter_studi": [96, 1421], "parameterstudi": [86, 99, 1369, 1371, 1421], "params_lst": [96, 99, 1371, 1421], "parasiteax": 627, "parax": 627, "pari": 128, "parrinello": [437, 878], "pars": [23, 27, 35, 67, 79, 260, 316, 373, 395, 462, 489, 524, 547, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 1284, 1285, 1287, 1288, 1417, 1418, 1420, 1426, 1427, 1428, 1429], "parser": [547, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 768, 848, 1052, 1080, 1124, 1206, 1231, 1417, 1418, 1420, 1429, 1433], "part": [61, 62, 157, 428, 1284, 1319, 1325, 1328, 1403, 1418, 1422, 1430, 1433], "partial": [1301, 1302, 1303, 1431], "particl": [636, 639], "pass": [34, 59, 90, 96, 222, 269, 280, 337, 430, 502, 547, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 575, 583, 628, 629, 645, 646, 648, 654, 655, 659, 660, 688, 707, 737, 779, 819, 858, 889, 937, 980, 1022, 1062, 1093, 1124, 1136, 1173, 1216, 1241, 1269, 1290, 1325, 1345, 1368, 1374, 1375, 1377, 1409], "passband": 1325, "path": [6, 14, 21, 90, 104, 112, 145, 150, 151, 506, 572, 573, 574, 575, 1282, 1284, 1287, 1377, 1421, 1427, 1428, 1430, 1431, 1433], "path_norm": [573, 575], "pattern": [151, 437, 438], "pb": [64, 65, 66, 625, 1421], "pbc": [1, 45, 47, 104, 112, 222, 269, 280, 337, 406, 420, 421, 424, 427, 428, 431, 436, 437], "pbc_wrap_coord": 430, "pbe": 112, "pbwithin": 437, "pc": 625, "pchain": 1011, "pd": [64, 65, 66], "pdb": [560, 1052, 1422, 1428], "pdbfile": 1422, "pdf": [583, 1333], "pdo": [23, 1289, 1293, 1330, 1423, 1424], "pdos_method": 1423, "pe": [108, 1011], "peak": [1325, 1327, 1332, 1334, 1339, 1423], "peinel": 437, "penalti": 1305, "peopl": [90, 1124], "per": [12, 96, 112, 236, 292, 349, 467, 468, 497, 498, 504, 537, 538, 1282, 1309, 1377, 1431], "perfect": 1304, "perfectli": 1382, "perform": [688, 1330, 1433], "period": [10, 233, 289, 346, 425, 430, 431, 1291, 1423], "perl": 21, "permut": [125, 406, 440], "perturb": 1418, "pg": 625, "ph": [1276, 1279, 1282, 1283, 1418], "phdo": [575, 1377], "phi": [666, 1425], "phonon": [23, 575, 634, 635, 636, 639, 1276, 1279, 1283, 1284, 1287, 1288, 1291, 1377, 1382, 1417, 1418, 1420, 1424, 1428, 1429, 1431, 1433], "phonon_do": [23, 1423], "phonopi": [1418, 1431], "phy": [19, 471, 1291, 1399, 1431], "physic": 10, "pi": [10, 159, 408, 423, 434, 437, 447, 657, 666, 1272, 1287, 1325, 1328, 1329, 1339, 1382, 1423, 1424, 1427], "pick": 1430, "pickl": [21, 74, 79, 221, 260, 279, 316, 336, 373, 390, 395, 479, 489, 514, 524, 561, 706, 717, 735, 758, 777, 798, 817, 838, 857, 869, 887, 916, 935, 952, 978, 1001, 1020, 1042, 1061, 1071, 1089, 1114, 1133, 1151, 1169, 1195, 1215, 1222, 1240, 1248, 1422, 1433], "pile": 1418, "pip": 1430, "pipe": 151, "pipermail": 151, "pk": [21, 79, 150, 260, 316, 373, 395, 416, 489, 524, 625, 717, 758, 798, 838, 869, 916, 952, 1001, 1042, 1071, 1114, 1151, 1195, 1222, 1248, 1422, 1431, 1433], "pl": 1325, "place": [34, 58, 86, 93, 416, 418, 419, 425, 430, 431, 440, 574, 575, 585, 627, 657, 677, 1325], "placehold": [86, 87, 90, 91, 96, 99, 101, 106, 114, 139, 159, 437, 1342], "plai": 1367, "plain": [113, 1330], "planck": 10, "plane": [404, 409, 440, 1275], "planet": 471, "platform": [127, 642, 1270], "pleas": [222, 280, 337, 454, 1377], "plot": [406, 437, 497, 506, 574, 575, 577, 594, 595, 628, 629, 630, 631, 648, 652, 657, 661, 664, 677, 1011, 1287, 1291, 1294, 1301, 1304, 1325, 1329, 1332, 1339, 1377, 1399, 1422, 1423, 1425, 1426, 1428, 1431, 1433], "plot1": 629, "plot2": 629, "plot_di": [572, 1287, 1427], "plot_dispers": [575, 1287], "plot_surfac": [577, 1433], "plot_wirefram": [577, 1301], "plotband": 573, "plt": [595, 677, 1325, 1427, 1433], "plu": [28, 657], "plugin": 571, "pm": [64, 65, 66, 625], "pmin": 681, "png": [583, 586, 629], "po": [64, 65, 66, 726, 1426], "point": [21, 54, 55, 61, 62, 63, 104, 112, 127, 132, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 422, 423, 432, 437, 446, 463, 464, 471, 481, 497, 506, 516, 532, 534, 544, 545, 546, 548, 554, 556, 572, 573, 574, 575, 577, 627, 632, 637, 638, 642, 648, 649, 650, 651, 652, 657, 661, 664, 665, 671, 677, 678, 679, 681, 682, 689, 690, 692, 693, 694, 926, 968, 1205, 1261, 1263, 1266, 1267, 1268, 1270, 1278, 1281, 1283, 1284, 1287, 1288, 1298, 1301, 1302, 1303, 1304, 1305, 1306, 1308, 1310, 1318, 1319, 1323, 1327, 1331, 1332, 1334, 1339, 1377, 1378, 1380, 1391, 1392, 1393, 1395, 1396, 1397, 1400, 1401, 1402, 1423, 1425, 1427, 1430, 1431], "poirier": 471, "poli": [648, 650, 652, 679, 680, 681, 689, 1433], "polyd": 682, "polyfit": [577, 648, 652, 682, 689, 1301, 1377, 1425, 1433], "polyfit1d": [643, 681, 682, 1377, 1433], "polynomi": [471, 650, 679, 681, 682, 689, 1377, 1425, 1428, 1433], "polyv": [650, 681], "poorli": [481, 516], "pop": 152, "popen": 151, "popul": [96, 707, 737, 779, 819, 858, 889, 937, 980, 1022, 1062, 1093, 1136, 1173, 1216, 1241], "port": 1430, "pos0": 1332, "posit": [123, 222, 269, 280, 337, 404, 565, 1124, 1325, 1332, 1423, 1424], "possibl": [101, 106, 114, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 419, 432, 440, 463, 464, 532, 534, 544, 545, 546, 548, 632, 637, 638, 648, 678, 685, 692, 693, 694, 968, 1205, 1261, 1263, 1266, 1267, 1268, 1291, 1298, 1337, 1341, 1391, 1392, 1393, 1396, 1397, 1400, 1401, 1402, 1403, 1422, 1424], "possibli": [21, 661, 664, 1369], "post": 1431, "postprocess": [22, 1417], "postprocessor": 1418, "poteng": [985, 1027], "potenti": [21, 59, 104, 985, 1027], "potetnti": [985, 1027], "power": [67, 437, 679, 1291, 1337, 1417, 1420, 1429], "pp": [19, 21, 112, 113, 151, 583, 585, 629, 1124, 1422, 1430, 1433], "pr": [64, 65, 66, 625, 1323], "practic": [99, 437, 1339, 1431], "pragma": 1430, "prb": 541, "pre": [428, 631, 669, 670, 1287, 1417, 1418], "preced": [54, 55, 63], "preceed": 1011, "precis": [127, 642, 677, 969, 1124, 1270, 1342], "predefin": 93, "predict": 1301, "preexec_fn": 151, "prefer": 21, "prefix": [6, 56, 57, 90, 96, 112, 116, 132, 1377, 1379], "prepare_plot": 1325, "prepend": 1337, "preprocess": 1425, "present": [97, 426, 878, 1011, 1052, 1285, 1294, 1351, 1422, 1424], "press": [437, 1011], "pressur": [10, 123, 211, 269, 325, 480, 481, 497, 515, 516, 1377, 1426, 1431, 1433], "pretti": [575, 681, 1124, 1377], "prevent": [1124, 1425], "previou": [97, 1377, 1433], "primit": [1275, 1374, 1424, 1431], "principl": 437, "print": [89, 98, 131, 157, 462, 497, 506, 575, 648, 657, 848, 878, 900, 926, 941, 969, 1011, 1080, 1124, 1271, 1273, 1284, 1290, 1294, 1342, 1369, 1370, 1371, 1382, 1403, 1404, 1405, 1424], "print_level": [768, 848], "pro": 21, "probabl": [6, 1373, 1382, 1430], "problem": [1080, 1382, 1422, 1425, 1433], "process": [28, 90, 99, 1296, 1326, 1409, 1428, 1431], "produc": [14, 21, 423, 438, 447, 471, 1283, 1287, 1288, 1422, 1423, 1430, 1431], "product": [96, 452, 577, 1290, 1292, 1318, 1377, 1419, 1425, 1426], "profil": 1403, "program": [21, 34, 565, 1409], "project": [583, 629, 726, 1418, 1426, 1431], "prompt": 151, "pronounc": 1425, "properit": [481, 516], "properli": 1425, "properti": [61, 62, 111, 119, 461, 506, 1372, 1377, 1378, 1379, 1380, 1422, 1428, 1433], "provid": [100, 211, 269, 325, 382, 437, 643, 682, 1124, 1355, 1371, 1379, 1418, 1422, 1425, 1431], "pscale": 681, "pseudo": [112, 1273, 1421], "pseudo_dir": [112, 113, 116], "pseudopotenti": [112, 1273], "psi": 666, "psu": [435, 437], "psweep": 1431, "pt": [3, 64, 66, 1403], "pu": [64, 65, 66], "pull": [86, 431, 672], "pure": [12, 458, 1309], "purg": 97, "purpos": [89, 418], "push": 97, "put": [1325, 1342, 1343], "pv": [471, 480, 494, 506, 515, 529, 1431], "pw": [21, 90, 91, 112, 113, 1080, 1124, 1271, 1273, 1278, 1281, 1341, 1421, 1422, 1424, 1427, 1431, 1433], "pwd": 1430, "pwmdoutputfil": [1124, 1160, 1422], "pwscf": [21, 35, 411, 414, 481, 516, 562, 563, 564, 575, 1080, 1124, 1417, 1418, 1420, 1421, 1422, 1427, 1428, 1429], "pwscfoutputfil": [1080, 1422], "pwstress": 123, "pwtool": [21, 1418, 1421, 1422, 1423, 1425, 1427, 1430, 1431, 1433], "pwtools_dummy_mol_nam": 571, "pwtools_ext_make_target": 1430, "pwtools_use_jax": 163, "pwtools_venv": 1430, "pwvcmdoutputfil": [1080, 1422], "pxx": [108, 123, 1011], "pxy": [108, 123, 1011], "pxz": [108, 123, 1011], "py": [23, 67, 96, 211, 575, 625, 648, 682, 1275, 1287, 1374, 1377, 1423, 1424, 1425, 1427, 1430, 1431, 1433], "pycifrw": [567, 695, 1430], "pydo": [35, 1337, 1423, 1424, 1428, 1430], "pyf": 1430, "pyi": [108, 123, 1011], "pymatgen": 541, "pypi": 1430, "pytest": 1430, "python": [21, 127, 130, 136, 144, 151, 159, 161, 408, 447, 458, 461, 642, 1270, 1290, 1326, 1341, 1342, 1351, 1364, 1417, 1418, 1422, 1426, 1427, 1428, 1429], "python3": [1421, 1427, 1430], "pythonpath": 1430, "pyvacf": 1290, "pyz": [108, 123, 1011], "pzz": [108, 123, 1011], "q": [567, 1283, 1284, 1288, 1427], "q1": 639, "q2r": [1276, 1279, 1427], "q_b": 636, "q_p": 639, "qb1": 636, "qbi": 636, "qe": [22, 573, 1124, 1276, 1279, 1287, 1288, 1427, 1428, 1431, 1433], "qe_pseudo": 1421, "qha": 1428, "qi": 639, "qmass": [19, 639], "qpoint": [1282, 1283, 1284, 1288], "qsingl": 1342, "qsub": [93, 1421, 1426], "quad": 1430, "quadrad": 677, "quadrat": [677, 1304], "quanta": 1431, "quantiti": [3, 98, 506, 1080, 1124, 1418, 1422, 1424], "quantitii": 1124, "quantum": [112, 1417, 1424], "quasi": [31, 1417, 1428, 1429], "quasiharmon": 1377, "queri": [1342, 1431], "question": 461, "quick": [34, 669, 670, 1417, 1429], "quickli": [98, 1371], "quit": [219, 277, 334, 1417], "quot": 1342, "r": [61, 62, 139, 151, 211, 269, 325, 404, 408, 409, 412, 436, 437, 447, 497, 577, 583, 594, 596, 597, 598, 622, 625, 627, 648, 681, 1294, 1301, 1304, 1307, 1314, 1315, 1316, 1318, 1319, 1321, 1323, 1339, 1377, 1379, 1382, 1386, 1388, 1420, 1421, 1429, 1433], "r_": [665, 1306, 1310], "r_x": 1419, "r_y": 1419, "r_y1": 1419, "r_y2": 1419, "r_y3": 1419, "ra": [64, 65, 66], "rad": [408, 437, 447], "radial": [25, 437, 1301, 1417, 1420, 1428, 1429, 1433], "radian": 666, "radii": [3, 1294], "radiu": [10, 408, 427, 437, 447], "radui": [437, 447], "rahman": 878, "rais": [68, 130, 131, 213, 271, 328, 384, 472, 507, 697, 728, 770, 810, 850, 880, 928, 971, 1013, 1054, 1082, 1126, 1162, 1208, 1233, 1294, 1295, 1296], "raman": 1285, "rand": [112, 157, 269, 418, 436, 452, 497, 575, 594, 595, 630, 631, 687, 688, 1260, 1328, 1339, 1419, 1422, 1423, 1430, 1433], "random": [35, 61, 62, 418, 575, 594, 677, 687, 1319, 1328, 1339, 1430, 1433], "random_struct": 1433, "randomli": 1319, "randomstructur": 1299, "randomstructurefail": [1294, 1295, 1296], "rang": [406, 577, 630, 640, 1294, 1339, 1382, 1419, 1431, 1433], "rank": [38, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 418, 1290, 1326], "rate": [1377, 1431], "raw": [577, 677], "raw_slice_get": [80, 261, 317, 374, 396, 490, 525, 719, 760, 800, 840, 871, 918, 954, 1003, 1044, 1073, 1116, 1153, 1197, 1224, 1250], "rb": [64, 65, 66], "rbf": [35, 648, 682, 1420, 1428, 1429, 1433], "rbf_": 648, "rbf_dct": 1301, "rbf_gauss": [648, 1313], "rbf_inv_multi": [648, 1313], "rbf_kwd": [1318, 1319, 1321, 1323], "rbf_multi": [648, 1313, 1433], "rbfi": [1301, 1323], "rbfn": 648, "rcell": 434, "rcell_reduc": 1427, "rcm_to_hz": 1291, "rd": 598, "re": [21, 64, 65, 66, 703, 1342, 1382, 1403, 1418, 1422, 1430], "read": [2, 12, 21, 56, 59, 74, 90, 99, 112, 137, 221, 279, 336, 390, 456, 457, 458, 459, 462, 479, 514, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 562, 563, 564, 568, 569, 576, 706, 735, 777, 817, 857, 887, 935, 961, 978, 1011, 1020, 1061, 1089, 1133, 1169, 1215, 1240, 1269, 1282, 1283, 1284, 1285, 1409, 1423, 1427, 1428, 1431, 1433], "read_": 1422, "read_cif": [1422, 1431], "read_cp2k_md": [437, 1422, 1426, 1433], "read_cp2k_md_dcd": 1422, "read_cp2k_relax": 1422, "read_cp2k_scf": 1422, "read_cpmd_md": 1422, "read_cpmd_scf": 1422, "read_data": [569, 576, 1011], "read_dcd_data": [0, 12, 457, 458], "read_dcd_data_f": 12, "read_dcd_data_from_unit": 0, "read_dcd_data_ref": 12, "read_dcd_header_from_unit": 0, "read_dyn": 1284, "read_dynmat_ir_raman": 1286, "read_h5": [549, 568], "read_lammps_md_dcd": [969, 1422], "read_lammps_md_txt": [969, 1422], "read_matdyn_freq": [575, 1427], "read_matdyn_mod": [1282, 1283], "read_pdb": 1422, "read_pickl": [21, 74, 79, 133, 221, 260, 279, 316, 336, 373, 390, 395, 479, 489, 514, 524, 706, 717, 735, 758, 777, 798, 817, 838, 857, 869, 887, 916, 935, 952, 978, 1001, 1020, 1042, 1061, 1071, 1089, 1114, 1133, 1151, 1169, 1195, 1215, 1222, 1240, 1248, 1422, 1431, 1433], "read_pw_md": [1080, 1422, 1433], "read_pw_scf": [1080, 1422, 1427, 1431, 1433], "read_pw_vcmd": 1422, "readabl": 56, "reader": 22, "readfactori": [550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564], "readlin": 138, "readm": [471, 565, 1430], "readtxt": 60, "real": [61, 62, 136, 423, 578, 581, 674, 681, 1284, 1288, 1341, 1344, 1356, 1366, 1369, 1371, 1423, 1424], "real_002ddata": 1328, "realiz": 1374, "realli": [19, 21, 437, 1011, 1275, 1339, 1377, 1379, 1418, 1430, 1433], "reason": [151, 424, 1374, 1423, 1425], "recalcul": 424, "recent": 1430, "recip": [423, 434, 1326, 1328, 1427], "recip_cel": [423, 1427], "reciproc": [112, 422, 423, 434], "recogn": 1342, "recommend": [79, 260, 316, 373, 395, 489, 524, 717, 758, 798, 838, 869, 916, 952, 1001, 1042, 1071, 1114, 1151, 1195, 1222, 1248, 1291, 1318, 1342, 1382, 1425], "reconstruct": 1269, "record": [1052, 1341, 1342, 1371], "recurs": [67, 677, 1406], "red": [595, 630], "reduc": [126, 1291, 1374, 1423, 1433], "reduct": 688, "redund": [21, 211, 219, 269, 277, 325, 334, 1422], "ref_idx": 436, "refer": [28, 61, 62, 151, 418, 435, 436, 437, 450, 458, 566, 569, 571, 576, 666, 695, 1291, 1292, 1302, 1325, 1326, 1328, 1330, 1339, 1341, 1399, 1417, 1423, 1430], "refin": 1332, "regard": 1418, "regardless": 21, "regex": [21, 35, 1052], "region": [1325, 1382, 1425], "regist": 1430, "regress": [25, 648, 1301, 1417, 1420, 1429, 1433], "regular": [648, 1301, 1304, 1318, 1321, 1420, 1429], "rel": [21, 404, 627, 1284, 1423, 1424], "relat": [61, 62, 112, 460, 1331, 1377, 1379, 1380, 1417, 1419, 1420, 1428, 1429], "relax": [436, 553, 562, 1080, 1417, 1422, 1428, 1429, 1431], "relev": [97, 1124], "reli": [6, 19, 437, 878], "remain": [268, 324, 381, 402, 688, 725, 767, 807, 847, 877, 925, 960, 1010, 1051, 1079, 1123, 1159, 1204, 1230, 1257, 1330, 1339], "remark1": [454, 455], "remark2": [454, 455], "rememb": [90, 1291, 1377], "remov": [152, 419, 471, 591, 671, 703, 1325], "rep": [577, 648], "repeat": [438, 587, 588, 589, 590, 592, 593, 599, 600, 601, 602, 603, 604, 628, 667, 677, 1296, 1319, 1423], "repeatedkfold": [1318, 1319], "repitit": 440, "replac": [3, 10, 86, 90, 91, 96, 99, 101, 106, 114, 131, 139, 159, 461, 1292], "replic": 157, "repr": [53, 144, 163, 691, 1324, 1411], "repres": [54, 55, 61, 62, 63, 86, 90, 96, 136, 161, 230, 269, 287, 344, 461, 640, 1341, 1422, 1431], "represent": [157, 409, 412, 441, 506, 680], "reproduc": 1339, "request": [422, 427], "requir": [61, 62, 67, 441, 1290, 1325, 1326, 1377, 1430], "requirements_doc": 1430, "requirements_opt": 1430, "requirements_test": 1430, "research": 571, "reset": 1406, "reshap": [58, 59, 667, 686, 1301, 1337], "resirict": 418, "resolut": [1291, 1331, 1382, 1423], "resolv": [677, 1377], "respons": 1325, "rest": [428, 1319], "restart": [105, 112, 113, 1433], "restart_file_nam": 1426, "restart_mod": 116, "restor": 60, "restrict": [437, 1425], "result": [53, 72, 96, 97, 98, 163, 217, 275, 332, 388, 408, 422, 437, 438, 447, 477, 512, 648, 661, 681, 688, 691, 701, 732, 774, 814, 854, 884, 932, 975, 1011, 1017, 1058, 1086, 1130, 1166, 1212, 1237, 1291, 1304, 1324, 1337, 1339, 1353, 1371, 1377, 1379, 1380, 1382, 1411, 1419, 1422, 1423, 1425, 1430, 1431, 1433], "ret": [456, 457, 458, 459, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 607, 672, 1339, 1378, 1379], "retriev": 21, "return": [21, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 63, 67, 68, 72, 75, 77, 80, 81, 87, 90, 95, 98, 99, 123, 125, 126, 128, 129, 130, 136, 137, 138, 141, 142, 144, 147, 148, 152, 157, 159, 160, 163, 164, 213, 217, 220, 222, 241, 242, 249, 256, 261, 262, 271, 275, 278, 280, 297, 298, 305, 312, 317, 318, 328, 332, 335, 337, 354, 355, 362, 369, 374, 375, 384, 388, 391, 393, 396, 397, 404, 406, 408, 409, 411, 412, 416, 417, 418, 420, 421, 422, 423, 424, 425, 426, 427, 429, 430, 431, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 447, 448, 449, 450, 452, 456, 457, 458, 459, 462, 472, 477, 481, 482, 487, 490, 491, 502, 503, 506, 507, 512, 516, 517, 522, 525, 526, 533, 547, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 573, 574, 575, 576, 577, 584, 587, 588, 589, 590, 592, 593, 594, 599, 600, 601, 602, 603, 604, 607, 623, 627, 628, 629, 634, 635, 636, 639, 645, 646, 647, 648, 649, 651, 654, 655, 656, 659, 660, 661, 662, 664, 665, 669, 670, 671, 672, 673, 675, 677, 679, 681, 683, 684, 686, 687, 689, 690, 691, 697, 701, 707, 711, 715, 719, 720, 728, 732, 737, 746, 756, 760, 761, 770, 774, 779, 786, 796, 800, 801, 810, 814, 819, 826, 836, 840, 841, 850, 854, 858, 862, 867, 871, 872, 880, 884, 889, 903, 914, 918, 919, 928, 932, 937, 944, 950, 954, 955, 971, 975, 980, 989, 999, 1003, 1004, 1013, 1017, 1022, 1030, 1040, 1044, 1045, 1054, 1058, 1062, 1065, 1069, 1073, 1074, 1082, 1086, 1090, 1091, 1093, 1103, 1112, 1116, 1117, 1124, 1126, 1130, 1134, 1136, 1143, 1149, 1153, 1154, 1162, 1166, 1170, 1171, 1173, 1184, 1193, 1197, 1198, 1208, 1212, 1216, 1217, 1220, 1224, 1225, 1233, 1237, 1241, 1242, 1246, 1250, 1251, 1260, 1271, 1272, 1273, 1274, 1275, 1278, 1281, 1282, 1283, 1284, 1285, 1287, 1288, 1290, 1291, 1292, 1295, 1296, 1297, 1300, 1301, 1302, 1303, 1306, 1307, 1308, 1319, 1321, 1323, 1324, 1326, 1327, 1328, 1329, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1338, 1339, 1347, 1350, 1353, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1364, 1366, 1367, 1368, 1371, 1373, 1374, 1375, 1377, 1378, 1379, 1381, 1407, 1411, 1422, 1423, 1431], "returnd": 427, "reus": 568, "rev": [471, 1291, 1431], "revers": [19, 423, 440, 640, 688], "revis": [96, 97], "rex": 703, "rf": [64, 65, 66], "rg": [64, 65, 66], "rh": [64, 65, 66, 598, 1419], "rhombohedr": 1377, "rid": 1382, "ridg": 1425, "right": [34, 60, 595, 627, 1314, 1368, 1409, 1423, 1425], "rightarrow": [1301, 1425], "rippl": 1325, "rl": 1431, "rm": [436, 684, 1124, 1382, 1424, 1428], "rmax": [408, 435, 437, 447], "rmax_smith": 437, "rms3d": [1124, 1424], "rmsd": 1428, "rn": [64, 65, 66], "ro": [598, 1332], "rock": [427, 1427], "rocksalt": [427, 1431, 1433], "root": [96, 436, 502, 645, 646, 652, 654, 655, 657, 659, 660, 661, 669, 670, 1294], "rot": 1011, "rotat": [404, 666], "round": [422, 685], "routin": [675, 1330], "row": [61, 62, 98, 126, 211, 269, 325, 404, 409, 412, 418, 422, 434, 435, 438, 452, 679, 690, 1271, 1272, 1275, 1288, 1302, 1341, 1351, 1358, 1368, 1371, 1420, 1429], "rowid": [1351, 1358], "rp": 598, "rpdf": [447, 1426, 1430], "rsq": [1314, 1315, 1316], "rst": 23, "rstride": 577, "rsync": 97, "ru": [64, 65, 66], "rug": 1425, "rule": [21, 139, 1427], "run": [70, 72, 97, 104, 112, 151, 158, 215, 217, 273, 275, 330, 332, 386, 388, 418, 436, 437, 474, 477, 509, 512, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 677, 699, 701, 730, 732, 772, 774, 812, 814, 848, 852, 854, 878, 882, 884, 930, 932, 973, 975, 1011, 1015, 1017, 1056, 1058, 1080, 1084, 1086, 1128, 1130, 1164, 1166, 1210, 1212, 1235, 1237, 1296, 1309, 1328, 1417, 1421, 1422, 1424, 1428, 1429, 1433], "run_typ": [768, 808, 848], "rune": 151, "runtest": 1430, "runtim": 1430, "rv": 598, "rx": 598, "ry": [21, 1097, 1098, 1099, 1124, 1138, 1139, 1178, 1179, 1180, 1422], "rydberg": 1424, "s2": 427, "s4": [454, 455], "s80": [454, 455], "s_": [161, 437, 686, 687], "safe": [457, 1374], "safest": 1430, "sai": [90, 418, 424, 481, 516, 1339, 1431, 1433], "said": [130, 1418], "salt": 427, "same": [10, 34, 70, 72, 80, 89, 96, 139, 142, 150, 159, 215, 217, 250, 261, 273, 275, 306, 317, 330, 332, 363, 374, 386, 388, 396, 404, 406, 408, 410, 412, 413, 417, 427, 428, 429, 430, 431, 437, 441, 445, 447, 449, 451, 453, 454, 471, 474, 477, 490, 500, 502, 509, 512, 525, 568, 577, 579, 582, 583, 628, 644, 646, 648, 650, 653, 655, 657, 658, 660, 664, 672, 675, 681, 688, 699, 701, 719, 726, 730, 732, 760, 772, 774, 800, 812, 814, 840, 852, 854, 871, 882, 884, 918, 926, 930, 932, 954, 969, 973, 975, 1003, 1011, 1015, 1017, 1044, 1056, 1058, 1073, 1084, 1086, 1116, 1124, 1128, 1130, 1153, 1164, 1166, 1197, 1210, 1212, 1224, 1235, 1237, 1250, 1275, 1282, 1283, 1284, 1290, 1291, 1303, 1304, 1325, 1327, 1330, 1334, 1337, 1339, 1344, 1347, 1354, 1368, 1369, 1371, 1372, 1377, 1383, 1384, 1385, 1387, 1406, 1419, 1422, 1423, 1431, 1433], "sampl": [664, 1325, 1331, 1417, 1429], "sampler": 1331, "sane": 21, "save": [21, 79, 260, 316, 373, 395, 447, 489, 524, 717, 758, 798, 838, 869, 916, 952, 1001, 1042, 1071, 1114, 1151, 1195, 1222, 1248, 1406, 1433], "savefig": [583, 629], "savetxt": 157, "sb": [64, 65, 66, 625], "sc": [64, 65, 66, 625], "scalar": [325, 454, 467, 468, 497, 498, 502, 504, 537, 538, 577, 634, 635, 636, 639, 645, 646, 652, 654, 655, 659, 660, 661, 672, 683, 1301, 1308, 1319, 1321], "scale": [650, 675, 681, 878, 926, 1294, 1377, 1420, 1424, 1429, 1431], "scale_vand": 681, "scaled_posit": [211, 222, 280, 337], "scalexi": 1011, "scalexz": 1011, "scaleyz": 1011, "scatter": [577, 1301, 1377, 1433], "scell": [427, 439], "scell_mask": 438, "scf": [112, 116, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 848, 900, 941, 1080, 1124, 1417, 1418, 1422, 1427, 1429], "scheme": 1431, "schmerler": [112, 1421, 1431], "scikit": 1430, "scipi": [441, 577, 648, 649, 651, 657, 664, 665, 673, 675, 1301, 1304, 1309, 1310, 1323, 1325, 1327, 1328, 1330, 1334, 1339, 1340, 1377, 1382, 1417, 1423, 1425, 1428, 1430, 1433], "scope": 431, "score": 1425, "scratch": [93, 112, 1421], "script": [34, 96, 97, 408, 447, 1011, 1426, 1427, 1428, 1430, 1433], "script_to_execut": 34, "scriptabl": 408, "scriptfn": 408, "sct": 90, "se": [64, 65, 66], "search": [3, 462, 669, 670], "sec": 1331, "secant": 661, "second": [61, 62, 97, 437, 543, 1328], "section": [61, 62, 128, 926, 1124, 1271, 1273, 1339, 1424, 1426, 1430], "sed": [21, 139], "see": [10, 21, 23, 25, 34, 59, 61, 62, 67, 90, 96, 112, 128, 129, 211, 219, 268, 269, 277, 324, 325, 334, 381, 402, 406, 409, 418, 419, 420, 422, 423, 427, 428, 436, 437, 438, 441, 454, 457, 471, 502, 506, 557, 568, 570, 575, 577, 595, 606, 627, 645, 646, 648, 652, 654, 655, 657, 659, 660, 669, 670, 682, 689, 725, 767, 807, 847, 877, 925, 960, 969, 1010, 1011, 1051, 1079, 1080, 1123, 1124, 1159, 1204, 1230, 1257, 1269, 1275, 1291, 1294, 1301, 1318, 1323, 1325, 1328, 1339, 1341, 1343, 1344, 1351, 1368, 1369, 1371, 1373, 1377, 1417, 1421, 1422, 1423, 1424, 1425, 1427, 1430, 1431, 1433], "seem": [6, 423, 681, 848, 1011, 1374, 1418], "seen": [151, 900, 941], "sel": [408, 437, 447], "sel1": 437, "sel2": 437, "select": [408, 437, 447, 688, 1342, 1355, 1368], "self": [21, 67, 68, 72, 75, 76, 77, 81, 83, 84, 88, 89, 90, 91, 95, 97, 101, 102, 106, 109, 112, 114, 117, 213, 217, 222, 233, 241, 245, 250, 255, 256, 262, 264, 266, 268, 271, 275, 280, 289, 297, 301, 306, 311, 312, 318, 320, 322, 324, 328, 332, 337, 346, 354, 358, 363, 368, 369, 375, 377, 379, 381, 384, 388, 391, 392, 393, 397, 399, 400, 402, 465, 471, 472, 477, 480, 482, 486, 487, 491, 493, 494, 495, 499, 500, 506, 507, 512, 515, 517, 521, 522, 526, 528, 529, 530, 533, 535, 584, 644, 645, 650, 652, 653, 654, 657, 658, 659, 697, 701, 711, 714, 715, 720, 722, 723, 725, 728, 732, 746, 755, 756, 761, 763, 765, 767, 770, 774, 786, 795, 796, 801, 803, 805, 807, 810, 814, 826, 835, 836, 841, 843, 845, 847, 850, 854, 862, 866, 867, 872, 874, 875, 877, 878, 880, 884, 903, 913, 914, 919, 921, 923, 925, 926, 928, 932, 944, 949, 950, 955, 957, 958, 960, 971, 975, 989, 998, 999, 1004, 1006, 1008, 1010, 1013, 1017, 1030, 1039, 1040, 1045, 1047, 1049, 1051, 1052, 1054, 1058, 1065, 1068, 1069, 1074, 1076, 1077, 1079, 1080, 1082, 1086, 1090, 1091, 1094, 1103, 1111, 1112, 1117, 1119, 1121, 1123, 1124, 1126, 1130, 1134, 1135, 1137, 1143, 1148, 1149, 1154, 1156, 1157, 1159, 1162, 1166, 1170, 1171, 1174, 1184, 1192, 1193, 1198, 1200, 1202, 1204, 1208, 1212, 1217, 1219, 1220, 1225, 1227, 1228, 1230, 1233, 1237, 1242, 1245, 1246, 1251, 1253, 1255, 1257, 1297, 1302, 1303, 1304, 1306, 1318, 1319, 1321, 1348, 1349, 1350, 1353, 1357, 1360, 1377, 1378, 1379, 1381, 1405, 1406], "send": 1409, "sens": [409, 412, 1294, 1425], "sensibl": 1296, "sentit": 1341, "sep": [154, 155, 162, 1269], "separ": [96, 425, 1269, 1426], "seq": [142, 148, 149, 154, 162, 1260, 1319], "sequenc": [66, 86, 96, 98, 112, 125, 129, 148, 149, 152, 211, 269, 325, 404, 417, 422, 426, 427, 428, 431, 455, 572, 573, 584, 587, 588, 589, 590, 592, 593, 596, 597, 598, 599, 600, 601, 602, 603, 604, 621, 622, 624, 625, 627, 629, 640, 649, 661, 1271, 1273, 1275, 1277, 1278, 1280, 1281, 1294, 1318, 1344, 1345, 1351, 1369, 1371, 1377, 1422, 1428], "seri": [677, 1423, 1431, 1433], "serial": 1430, "seriou": 1052, "session": 1418, "set": [3, 21, 34, 67, 68, 75, 76, 80, 81, 83, 86, 90, 93, 96, 97, 102, 109, 112, 117, 141, 213, 219, 241, 255, 261, 262, 264, 271, 277, 297, 311, 317, 318, 320, 328, 334, 354, 368, 374, 375, 377, 384, 391, 392, 396, 397, 399, 409, 418, 424, 427, 429, 433, 437, 446, 447, 456, 457, 458, 471, 472, 481, 482, 486, 490, 491, 493, 494, 506, 507, 516, 517, 521, 525, 526, 528, 529, 533, 574, 575, 591, 595, 648, 657, 683, 684, 688, 697, 711, 714, 719, 720, 722, 728, 746, 755, 760, 761, 763, 770, 786, 795, 800, 801, 803, 810, 826, 835, 840, 841, 843, 848, 850, 862, 866, 871, 872, 874, 878, 880, 903, 913, 918, 919, 921, 928, 944, 949, 954, 955, 957, 971, 989, 998, 1003, 1004, 1006, 1013, 1030, 1039, 1044, 1045, 1047, 1054, 1065, 1068, 1073, 1074, 1076, 1082, 1090, 1103, 1111, 1116, 1117, 1119, 1126, 1134, 1143, 1148, 1153, 1154, 1156, 1162, 1170, 1184, 1192, 1197, 1198, 1200, 1208, 1217, 1219, 1224, 1225, 1227, 1233, 1242, 1245, 1250, 1251, 1253, 1296, 1297, 1301, 1318, 1319, 1323, 1342, 1363, 1364, 1368, 1371, 1377, 1382, 1403, 1417, 1418, 1421, 1422, 1425, 1426, 1427, 1428, 1430, 1431], "set_al": [67, 211, 269, 325, 424, 707, 737, 779, 819, 858, 889, 937, 980, 1022, 1062, 1093, 1136, 1173, 1216, 1241, 1422], "set_all_auto": [211, 269, 325], "set_attr_lst": [67, 1433], "set_bv_method": 506, "set_calcul": [104, 112], "set_fitfunc": 1377, "set_pbc": [222, 280, 337], "set_tabl": 1342, "set_titl": [629, 1325], "set_xlabel": 1301, "set_ylabel": [595, 1301], "set_ylim": 1427, "setup": [1342, 1425, 1430], "setuptool": 1430, "sever": [661, 1326, 1431, 1433], "sfft": 1328, "sfmt": 98, "sg": [64, 65, 66, 625], "sgroup": [565, 570, 1374], "sh": [1426, 1430], "shall": [112, 404, 1339], "shalleth": 140, "shallow": 1425, "shamelessli": [3, 688, 1340], "shape": [1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 56, 58, 59, 60, 61, 62, 409, 410, 411, 412, 413, 414, 418, 425, 431, 434, 435, 437, 440, 441, 447, 450, 451, 452, 453, 471, 577, 640, 667, 668, 679, 681, 684, 686, 687, 688, 878, 1124, 1269, 1288, 1290, 1301, 1302, 1303, 1310, 1335, 1337, 1339, 1377, 1419, 1423, 1427, 1431, 1433], "shape_2d_chunk": 58, "share": [112, 627], "sharei": 627, "sharex": 627, "shell": [34, 93, 97, 131, 139, 140, 151, 158, 1409], "shift": [415, 1277, 1278, 1280, 1281, 1339], "shoot": 59, "short": [1345, 1433], "shortcut": [72, 81, 217, 262, 275, 318, 332, 375, 388, 397, 459, 477, 491, 512, 526, 673, 701, 720, 732, 761, 774, 801, 814, 841, 854, 872, 884, 919, 932, 955, 975, 1004, 1017, 1045, 1058, 1074, 1086, 1117, 1130, 1154, 1166, 1198, 1212, 1225, 1237, 1251, 1299, 1357], "shorter": 152, "shorthand": 158, "should": [61, 62, 93, 125, 406, 428, 436, 438, 447, 461, 506, 547, 677, 681, 878, 1124, 1321, 1325, 1326, 1339, 1341, 1371, 1377, 1379, 1382, 1423, 1425, 1430], "shouldn": [130, 1382], "show": [575, 628, 677, 878, 1325, 1339, 1377, 1427, 1433], "show_coord": 575, "shown": [1425, 1431], "shuffl": 677, "shutil": 132, "si": [64, 65, 66, 239, 269, 295, 352, 1294, 1422, 1433], "side": [408, 422, 423, 434, 437, 447, 1291, 1294, 1423], "sigma": 1333, "sign": [56, 123, 127, 642, 1270], "signal": [35, 441, 1291, 1417, 1423, 1428, 1429], "signalsmooth": 1339, "signatur": [34, 664, 1290, 1326, 1377, 1381], "sigpip": 151, "sij": 425, "silenc": 1403, "silent": [150, 1351], "similar": [144, 269, 437, 441, 650, 677, 1304, 1327, 1334, 1425, 1433], "simp": [675, 1382], "simpl": [90, 96, 112, 161, 408, 427, 437, 574, 687, 1052, 1287, 1328, 1329, 1332, 1419, 1422, 1428, 1431, 1433], "simplest": 574, "simpli": [21, 34, 90, 135, 437, 500, 644, 653, 658, 671, 681, 1368, 1404, 1422, 1423, 1430], "simplic": 21, "simplif": 419, "simplifi": 657, "simpson": 675, "simul": [437, 1418, 1422], "sin": [125, 607, 628, 657, 677, 1301, 1325, 1329, 1339, 1423, 1433], "sinc": [21, 159, 423, 848, 1080, 1326, 1339, 1377, 1405, 1418, 1422, 1423, 1425], "singl": [86, 96, 104, 136, 269, 554, 556, 687, 688, 926, 1206, 1341, 1357, 1359, 1409, 1422, 1425, 1428, 1433], "singular": 1425, "site": [1124, 1430], "situat": 6, "size": [61, 62, 422, 423, 688, 1328, 1331, 1339, 1431], "sk": 625, "skeleton": [1327, 1334, 1340], "skip": [61, 62, 150, 427, 428, 429, 437, 568, 900, 941, 1080, 1382], "skipfreq": 1382, "sklearn": [1318, 1425, 1430], "sl": [80, 81, 261, 262, 317, 318, 374, 375, 396, 397, 490, 491, 525, 526, 686, 687, 719, 720, 760, 761, 800, 801, 840, 841, 871, 872, 918, 919, 954, 955, 1003, 1004, 1044, 1045, 1073, 1074, 1116, 1117, 1153, 1154, 1197, 1198, 1224, 1225, 1250, 1251, 1325], "slab": [440, 1433], "slash": [557, 568], "sleep": [97, 1421], "slice": [80, 81, 161, 261, 262, 317, 318, 374, 375, 396, 397, 419, 424, 437, 447, 490, 491, 525, 526, 686, 687, 719, 720, 760, 761, 800, 801, 840, 841, 871, 872, 918, 919, 954, 955, 1003, 1004, 1044, 1045, 1073, 1074, 1116, 1117, 1153, 1154, 1197, 1198, 1224, 1225, 1250, 1251, 1325, 1422, 1423, 1433], "slicefirst": 447, "slightli": [422, 1341], "slow": [21, 34, 419, 458, 1292, 1309, 1326], "slower": [438, 457, 1304], "sm": [64, 65, 66, 625], "small": [123, 427, 437, 1294, 1304, 1325, 1326, 1339, 1374, 1382, 1395, 1425], "smaller": [422, 447, 1325, 1339], "smallest": 649, "smear": [113, 116], "smith": [435, 437, 447], "smooth": [574, 657, 1304, 1330, 1336, 1417, 1420, 1425, 1429], "smooth_color": 631, "smoothli": [630, 677], "smth": [34, 81, 262, 318, 375, 397, 418, 425, 427, 491, 526, 568, 720, 761, 801, 841, 872, 919, 955, 1004, 1045, 1052, 1074, 1117, 1154, 1198, 1225, 1251], "sn": [64, 65, 66], "snippet": 1433, "so": [12, 21, 96, 112, 222, 280, 337, 404, 437, 438, 574, 577, 681, 848, 878, 900, 941, 1080, 1269, 1287, 1319, 1325, 1326, 1331, 1337, 1339, 1382, 1403, 1418, 1419, 1423, 1425, 1426, 1430, 1431, 1433], "soft": 112, "softwar": 96, "sohn": 437, "solut": [151, 1304, 1325, 1419, 1425], "solv": [1, 419, 648, 679, 1304, 1419, 1425], "solver": [1301, 1304, 1318, 1419], "some": [2, 12, 22, 28, 90, 93, 96, 149, 159, 419, 424, 437, 471, 481, 516, 568, 640, 657, 672, 688, 878, 900, 926, 941, 1124, 1275, 1285, 1323, 1325, 1327, 1334, 1339, 1342, 1371, 1373, 1377, 1382, 1403, 1417, 1418, 1422, 1423, 1425, 1430, 1433], "some_more_cod": 1403, "some_more_data": 568, "some_valu": 672, "someinterpolatorclass": 648, "someparsingclass": 21, "someth": [61, 62, 640, 1011, 1423, 1425, 1427], "something_els": 1427, "sometim": [89, 151, 441, 900, 941, 1296, 1382], "sort": [108, 427, 428, 669, 670, 677, 1011], "sould": 1430, "sourc": [23, 34, 56, 57, 58, 59, 60, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 110, 111, 112, 118, 119, 120, 121, 122, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 211, 223, 232, 269, 277, 278, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 319, 325, 326, 337, 344, 355, 362, 382, 383, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 481, 497, 498, 499, 501, 504, 506, 511, 515, 516, 518, 519, 520, 529, 533, 535, 537, 538, 541, 542, 543, 547, 549, 557, 561, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 583, 584, 585, 586, 591, 594, 595, 605, 606, 607, 623, 626, 627, 628, 629, 630, 631, 633, 634, 635, 636, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 657, 661, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 695, 703, 704, 708, 709, 710, 713, 726, 768, 778, 780, 781, 782, 783, 784, 785, 787, 789, 790, 791, 793, 794, 808, 818, 823, 825, 848, 859, 860, 861, 863, 865, 878, 888, 890, 892, 893, 894, 895, 896, 897, 898, 899, 905, 908, 909, 910, 912, 926, 936, 938, 939, 940, 941, 942, 943, 945, 946, 948, 961, 962, 963, 964, 965, 966, 967, 969, 1011, 1021, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1052, 1063, 1064, 1067, 1080, 1091, 1092, 1094, 1095, 1096, 1097, 1098, 1099, 1102, 1105, 1108, 1109, 1124, 1134, 1135, 1137, 1138, 1139, 1140, 1141, 1142, 1144, 1145, 1147, 1160, 1177, 1178, 1189, 1206, 1207, 1216, 1218, 1223, 1231, 1243, 1244, 1258, 1259, 1260, 1262, 1264, 1265, 1269, 1271, 1272, 1273, 1274, 1275, 1276, 1277, 1278, 1282, 1283, 1284, 1285, 1286, 1287, 1288, 1289, 1290, 1291, 1292, 1293, 1294, 1295, 1296, 1297, 1299, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310, 1311, 1312, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1325, 1326, 1328, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1338, 1339, 1340, 1341, 1342, 1343, 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1364, 1365, 1366, 1367, 1368, 1369, 1370, 1371, 1372, 1373, 1374, 1375, 1376, 1377, 1378, 1379, 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, 1390, 1394, 1395, 1398, 1399, 1403, 1404, 1405, 1406, 1408, 1409, 1410, 1430], "sourceforg": 471, "sp": [657, 1427], "sp_point": 1427, "sp_points_1": 1427, "sp_points_2": 1427, "sp_points_frac": 1427, "sp_symbol": 1427, "space": [112, 408, 409, 422, 423, 437, 447, 627, 648, 650, 665, 681, 690, 1269, 1294, 1301, 1375, 1427, 1433], "spacegroup": [1374, 1375, 1417, 1429], "spacial": 412, "span": 404, "spatial": [665, 1275, 1309], "spawn": 1409, "spec": 1052, "speci": [236, 238, 245, 292, 294, 301, 349, 351, 358, 427], "special": [59, 159, 419, 572, 574, 575, 652, 848, 1080, 1124, 1339, 1351, 1417, 1418, 1423, 1427, 1429, 1430], "special_points_path": 575, "specialpointspath": [575, 1427], "specif": [86, 93, 575, 1430], "specifi": [53, 66, 90, 144, 157, 163, 455, 584, 596, 597, 598, 621, 622, 624, 625, 691, 1324, 1325, 1371, 1411, 1424], "spectra": 1423, "spectrum": [23, 1291, 1420, 1429], "speed": [10, 12, 1269, 1272, 1291, 1326, 1430], "spg_num": 1375, "spg_sym": 1375, "spglib": [211, 242, 298, 355, 1373, 1374, 1375, 1376, 1428, 1430], "spglib_get_spacegroup": 1433, "sphere": [437, 447, 1294], "sphinx": 1430, "spine": 595, "spine_invis": 595, "spine_loc": 595, "spl": [577, 1332], "spl_": 506, "spl_bv": [480, 506, 515], "spl_ev": [480, 506, 515], "spl_pv": [480, 506, 515], "splev": 657, "spline": [480, 497, 502, 506, 515, 577, 643, 646, 650, 655, 664, 669, 670, 673, 1332, 1377, 1381, 1428, 1433], "split": [1318, 1319, 1375, 1427], "split_idx": 1291, "splpoint": 497, "splrep": [657, 664], "splrep_kwarg": [657, 664], "spp": 575, "spread": [90, 1327, 1332, 1334, 1339], "sprinkl": 1430, "sql": [35, 86, 90, 91, 96, 1421, 1428], "sql_column": [96, 1370, 1371], "sql_matrix": 1368, "sql_record": 92, "sqlentri": [86, 87, 90, 91, 95, 96, 1343, 1369, 1371, 1421], "sqlile": 1364, "sqlite": [96, 97, 1341, 1342, 1343, 1345, 1351, 1364, 1368, 1369, 1371, 1417, 1429], "sqlite3": [1341, 1342, 1428], "sqlitedb": [1368, 1371, 1433], "sqltype": [1341, 1343, 1345, 1364, 1365, 1366, 1369, 1370, 1371], "sqltype1": [1341, 1347], "sqltype2": [1341, 1347], "sqlval": [90, 96, 1341, 1369, 1370, 1421], "sqlval_func": [1369, 1370, 1371], "sqrt": [10, 418, 1124, 1315, 1316, 1328, 1424, 1425], "squar": [420, 436, 665, 683, 684, 1301, 1304, 1305, 1309, 1314, 1315, 1316, 1318, 1319, 1321, 1325, 1419, 1425], "sr": [64, 65, 66, 625], "src": [132, 1430, 1431], "st": [93, 112, 136, 155, 269, 404, 424, 427, 429, 442, 703, 704, 1080, 1124, 1294, 1366, 1376, 1421, 1422, 1427, 1431, 1433], "st1": [426, 1372, 1422], "st2": [426, 1372, 1422], "st_first": [1422, 1433], "st_last": [1422, 1433], "st_load": 1422, "stabil": [1304, 1420, 1429], "stabl": [436, 1304, 1382, 1419], "stack": 628, "stackoverflow": [461, 595], "stand": 627, "standard": [21, 159, 1124, 1343], "standardscal": 1425, "start": [97, 132, 239, 295, 352, 408, 436, 437, 447, 557, 661, 677, 1080, 1135, 1137, 1337, 1345, 1351, 1377, 1379, 1403, 1409, 1417, 1425, 1429], "startup": 1433, "state": [19, 23, 471, 1052, 1382, 1423, 1424, 1428], "statement": [130, 1343, 1355], "statist": 1403, "std": [1309, 1327, 1333, 1334, 1339], "stderr": [131, 151, 506], "stdout": [151, 506], "step": [61, 62, 108, 408, 418, 436, 437, 447, 566, 677, 878, 1011, 1080, 1109, 1190, 1291, 1329, 1331, 1418, 1419, 1422, 1426, 1431, 1433], "stick": [409, 675], "stiff": [1304, 1425], "still": [21, 149, 1382, 1423, 1431], "stolen": [3, 688, 1325, 1327, 1334, 1340], "stop": [1325, 1351, 1403], "stopband": 1325, "storag": [21, 1405, 1406], "store": [21, 59, 61, 62, 89, 97, 572, 969, 1342, 1379, 1403, 1417, 1418, 1422, 1430, 1431], "str": [34, 53, 77, 86, 90, 91, 93, 96, 97, 98, 112, 126, 130, 132, 139, 144, 154, 157, 158, 159, 162, 163, 256, 312, 369, 393, 408, 427, 447, 456, 457, 458, 459, 471, 481, 487, 494, 506, 516, 522, 529, 547, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 562, 563, 564, 565, 567, 568, 569, 570, 571, 576, 583, 627, 629, 648, 691, 715, 756, 796, 836, 867, 914, 950, 999, 1011, 1040, 1069, 1112, 1149, 1193, 1220, 1246, 1271, 1282, 1283, 1284, 1285, 1288, 1301, 1310, 1323, 1324, 1325, 1339, 1341, 1342, 1343, 1344, 1345, 1347, 1351, 1356, 1358, 1361, 1363, 1364, 1366, 1368, 1369, 1371, 1375, 1377, 1381, 1409, 1411], "str_arr": [1421, 1427], "strace": 151, "straight": [1275, 1431], "straightforward": [1326, 1328], "strain": 471, "stream": 677, "stress": [107, 115, 123, 211, 219, 243, 269, 277, 299, 325, 334, 356, 444, 448, 848, 878, 886, 905, 926, 934, 1011, 1080, 1088, 1105, 1132, 1145, 1168, 1186, 1269, 1422, 1426, 1431, 1433], "strict": [53, 163, 691, 1052, 1324, 1411], "strictli": 661, "stride": [61, 62], "string": [22, 36, 37, 38, 53, 54, 55, 63, 67, 84, 90, 96, 98, 112, 130, 136, 140, 144, 149, 157, 159, 160, 161, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 266, 269, 322, 325, 379, 400, 408, 427, 428, 432, 437, 447, 463, 464, 495, 506, 530, 532, 534, 544, 545, 546, 548, 572, 576, 584, 585, 632, 637, 638, 678, 680, 691, 692, 693, 694, 723, 765, 805, 845, 875, 923, 958, 968, 1008, 1049, 1077, 1121, 1157, 1202, 1205, 1228, 1255, 1261, 1263, 1266, 1267, 1268, 1269, 1271, 1272, 1273, 1274, 1278, 1281, 1294, 1298, 1324, 1325, 1328, 1331, 1337, 1341, 1342, 1360, 1364, 1366, 1368, 1371, 1375, 1377, 1391, 1392, 1393, 1396, 1397, 1400, 1401, 1402, 1405, 1406, 1411, 1425, 1433], "stringio": 147, "strong": 1426, "stronger": 1425, "strongli": 1323, "struck": 1422, "struct": [34, 108, 112, 222, 280, 337, 404, 406, 420, 427, 428, 429, 547, 565, 567, 569, 570, 576, 1011, 1080, 1294, 1296, 1374, 1375, 1409, 1431, 1433], "struct1": 1409, "struct2": 1409, "struct2atom": 1433, "struct_or_traj": 547, "structfil": [34, 108, 1409], "structur": [10, 15, 21, 34, 104, 112, 211, 222, 230, 249, 325, 337, 344, 362, 382, 404, 406, 407, 417, 420, 424, 426, 427, 429, 430, 436, 437, 438, 442, 443, 447, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 565, 566, 567, 569, 570, 571, 575, 576, 1011, 1080, 1124, 1206, 1294, 1296, 1372, 1373, 1374, 1375, 1376, 1382, 1409, 1417, 1418, 1420, 1421, 1428, 1429, 1430, 1431], "structurefilepars": [21, 695, 848, 926, 1052, 1124, 1231], "studi": [90, 96, 98, 99, 1341, 1417, 1418, 1420, 1428, 1429, 1431, 1433], "study_nam": [96, 1421], "stuff": [89, 93, 1011, 1294, 1426, 1427], "stumbl": 1418, "style": [56, 57, 60, 61, 62, 90, 456, 458, 571, 1275, 1430], "sub": 684, "subclass": [89, 164, 878, 1300, 1407], "subcmd": [93, 97, 1421], "subdir": 97, "sublist": [96, 1371], "sublti": 438, "submit": 93, "submitt": 97, "subplot": [595, 623, 627], "subplothost": [623, 627], "subprocess": [151, 158], "subsequ": [97, 1124, 1426], "subset": 1368, "subtract": 1338, "success": 1431, "sudo": 1430, "suffici": [423, 1291, 1331], "suffix": [1287, 1409], "suggest": [1425, 1426], "suit": 1428, "sum": [683, 684, 1124, 1294, 1305, 1309, 1319, 1321, 1328, 1339, 1423], "sum_": [1310, 1425], "sum_ij": [1124, 1424], "sum_j": 1425, "sum_k": 665, "sumfor": [1124, 1424], "summari": [435, 437, 1403, 1424], "super": [89, 1428, 1433], "supercel": [438, 439, 440, 1418, 1431], "suppli": [1418, 1430, 1431], "support": [89, 136, 158, 1290, 1339, 1341, 1422, 1430, 1431, 1433], "suppos": [67, 90, 269, 411, 414, 568, 679, 1325], "sure": [19, 212, 222, 270, 280, 327, 337, 383, 424, 506, 696, 727, 769, 809, 849, 879, 927, 970, 1012, 1053, 1081, 1125, 1161, 1207, 1232, 1325, 1418], "surfac": [648, 1433], "surround": [54, 55, 63], "svib": [1378, 1382, 1388, 1431], "swapax": 418, "switch": [438, 494, 529, 1363, 1419, 1425], "sy": [53, 163, 404, 412, 418, 437, 625, 691, 1324, 1411], "sym": [1327, 1334, 1340], "symbol": [3, 112, 211, 233, 238, 239, 244, 245, 250, 253, 254, 269, 289, 294, 295, 300, 301, 306, 309, 310, 325, 346, 351, 352, 357, 358, 363, 366, 367, 417, 427, 428, 436, 437, 438, 565, 569, 572, 575, 1011, 1124, 1271, 1272, 1273, 1294, 1375, 1421, 1422, 1427], "symbols_uniqu": [239, 245, 269, 295, 301, 352, 358], "symbolsbasenam": 569, "symbolsfilenam": 1011, "symlink": [132, 1421], "symmetr": [123, 1326, 1423, 1431], "symmetri": [35, 211, 427, 565, 570, 1275, 1428, 1431, 1433], "symprec": [1374, 1375, 1433], "sync": 93, "syntax": [89, 159, 437, 1342, 1418, 1424], "system": [19, 34, 116, 418, 878, 926, 1304, 1409, 1419, 1421, 1425, 1427, 1430], "system_chang": [111, 119], "t": [21, 61, 62, 89, 97, 112, 130, 149, 211, 222, 269, 280, 325, 337, 404, 409, 412, 418, 427, 436, 437, 452, 457, 574, 575, 577, 627, 648, 677, 681, 682, 848, 1052, 1124, 1275, 1290, 1291, 1325, 1326, 1329, 1331, 1339, 1368, 1377, 1378, 1379, 1380, 1382, 1395, 1399, 1403, 1405, 1419, 1423, 1425, 1430, 1431, 1433], "ta": [64, 65, 66], "tab": [595, 1433], "tabl": [10, 96, 98, 233, 289, 346, 1341, 1342, 1343, 1344, 1345, 1347, 1351, 1356, 1358, 1359, 1360, 1361, 1362, 1363, 1364, 1368, 1371], "tag": [1403, 1405, 1406], "tail": [21, 1339], "take": [34, 60, 90, 161, 429, 436, 437, 687, 1294, 1433], "taken": [10, 418, 584, 1275, 1325, 1371], "talk": 1342, "tarantola": 471, "target": [58, 90, 91, 97, 422, 566, 571, 648, 1294, 1417, 1430, 1431], "task": 1433, "tau": 1124, "tb": [64, 65, 66, 533, 1297], "tc": [64, 65, 66], "tchain": 1011, "tck": 657, "tcl": [34, 408, 1433], "tcpu": 878, "te": [64, 65, 66], "teatro": 23, "tee": 113, "tell": [159, 1433], "temp": [34, 99, 108, 408, 634, 635, 636, 639, 1011, 1382, 1386, 1388, 1389, 1390, 1399, 1409], "temperatur": [211, 269, 325, 424, 634, 635, 636, 639, 1011, 1108, 1189, 1377, 1382, 1399, 1422, 1426, 1433], "templ": [86, 90, 91, 93, 1421], "templ_dir": 90, "templ_txt": 1427, "templat": [86, 88, 90, 91, 93, 96, 97, 99, 1418, 1421, 1428], "template_replac": [90, 139, 1427], "temporari": 21, "tempp": 878, "tensor": [123, 211, 243, 269, 299, 325, 356, 444, 445, 448, 449, 848, 878, 905, 926, 1105, 1145, 1186, 1422, 1431], "tensor2voigt": 445, "term": [409, 679, 1424, 1425], "tersoff": [104, 105, 1011], "tesst": 1431, "test": [12, 21, 23, 67, 79, 96, 130, 149, 222, 260, 280, 316, 337, 373, 395, 418, 437, 489, 524, 648, 681, 717, 758, 768, 798, 808, 838, 848, 869, 878, 916, 952, 1001, 1011, 1042, 1071, 1080, 1114, 1124, 1151, 1195, 1222, 1248, 1275, 1318, 1319, 1328, 1339, 1342, 1356, 1372, 1377, 1382, 1409, 1417, 1418, 1421, 1423, 1424, 1428, 1429, 1431], "test_f2py_flib_openmp": 1430, "test_gibb": [1377, 1431], "test_gibbs_1d": 1431, "test_gibbs_2d": 1431, "test_gibbs_3d_fake_1d": 1431, "test_ibrav": 1275, "test_interpol": 648, "test_parameter_studi": 96, "test_pdo": [1423, 1424], "test_pdos_coord_tran": 1424, "test_qha": 1431, "text": [2, 34, 56, 59, 90, 159, 551, 553, 559, 726, 969, 1011, 1269, 1284, 1285, 1341, 1342, 1344, 1356, 1371, 1409, 1425], "textblock": 1285, "textbook": [28, 1423], "texttt": [665, 1301, 1302, 1310, 1431], "tfreq": 23, "th": [10, 64, 65, 66, 664, 1419], "than": [14, 89, 135, 422, 437, 441, 657, 1124, 1304, 1309, 1377, 1409, 1423, 1425], "thank": 848, "thart": [21, 753, 793, 833, 910, 1422], "thei": [67, 136, 151, 219, 277, 334, 417, 427, 437, 462, 636, 681, 1124, 1275, 1326, 1371, 1373, 1377, 1418, 1422, 1423], "them": [159, 574, 583, 661, 681, 1382, 1424, 1430], "theo": 1421, "theorem": [1326, 1423], "theori": [21, 23, 1418, 1420, 1429], "therefor": [159, 640, 679, 688, 848, 1080, 1275, 1291, 1374, 1377, 1423, 1424, 1425, 1430, 1431], "thermal": [31, 1377, 1379, 1399, 1431], "thermo": [35, 1011, 1428, 1431], "thermo_modifi": 1011, "thermo_styl": 1011, "thermochemistri": 1431, "thermodynam": [1377, 1382, 1428], "thermostat": [19, 636, 639, 1426], "theta": [666, 1399], "thi": [0, 1, 12, 19, 21, 23, 34, 54, 55, 59, 61, 62, 63, 67, 80, 84, 86, 89, 90, 93, 96, 97, 99, 112, 127, 130, 139, 151, 157, 159, 230, 249, 261, 266, 269, 287, 305, 317, 322, 344, 362, 374, 379, 396, 400, 408, 409, 412, 418, 419, 423, 427, 431, 437, 447, 462, 471, 481, 490, 495, 502, 516, 525, 530, 565, 568, 574, 575, 577, 583, 584, 585, 595, 627, 642, 646, 648, 650, 655, 657, 660, 665, 667, 669, 670, 671, 672, 673, 675, 677, 683, 684, 688, 719, 723, 760, 765, 800, 805, 840, 845, 871, 875, 878, 918, 923, 954, 958, 1003, 1008, 1044, 1049, 1052, 1073, 1077, 1080, 1116, 1121, 1124, 1153, 1157, 1197, 1202, 1224, 1228, 1250, 1255, 1269, 1270, 1271, 1275, 1283, 1285, 1288, 1290, 1291, 1292, 1294, 1296, 1304, 1318, 1323, 1325, 1326, 1327, 1328, 1330, 1334, 1339, 1341, 1342, 1345, 1348, 1349, 1350, 1371, 1373, 1377, 1379, 1382, 1395, 1409, 1418, 1419, 1422, 1423, 1424, 1425, 1427, 1430, 1431, 1433], "thin": 1428, "thing": [151, 408, 462, 585, 627, 1124, 1342, 1374, 1422, 1430, 1433], "think": [3, 471, 574, 636, 1275], "those": [431, 1377, 1380, 1422, 1430], "though": [437, 1422, 1425], "thought": 1339, "thread": [1290, 1418, 1430], "three": [96, 506], "threshold": [404, 657, 672, 1382], "through": 1425, "thru": [462, 480, 506, 515, 669, 670, 1304, 1309], "thu": [21, 34, 96, 112, 422, 679, 1327, 1334, 1342, 1377, 1422, 1431], "thy": 140, "thz": [10, 1285, 1288], "ti": [64, 65, 66], "tick": 627, "tightli": 1294, "tildeslei": 437, "tim": 23, "time": [10, 12, 61, 62, 97, 159, 249, 269, 305, 325, 362, 410, 413, 418, 419, 431, 436, 437, 438, 446, 447, 451, 453, 628, 667, 677, 684, 1109, 1124, 1190, 1272, 1291, 1301, 1319, 1325, 1326, 1329, 1331, 1374, 1375, 1403, 1405, 1406, 1418, 1419, 1422, 1423, 1425, 1426, 1430, 1433], "time_ar_dict": [1405, 1406], "time_step": 404, "time_unit": 1331, "timeaxi": [325, 419, 424, 436, 441, 1124], "timecon": 1426, "timeit": [12, 1309], "timeout": 1430, "timer": 35, "times2": 1433, "times3": 1433, "timestep": [0, 36, 40, 211, 251, 269, 307, 325, 364, 441, 446, 454, 455, 910, 1011, 1291], "timimg": 1403, "timteatro": 23, "titl": [677, 1339, 1423], "tl": [6, 64, 65, 66, 1431], "tm": [64, 65, 66], "tmask": 437, "tmp": [34, 408, 447, 926, 1368, 1409], "tmpdir": [34, 408, 447, 1409], "tobia": 19, "todo": [61, 62], "togeth": [96, 125, 657, 1011, 1275], "tol": 648, "tonext": [1291, 1337], "tonext_min": 1337, "too": [67, 123, 151, 481, 516, 687, 878, 1124, 1374, 1377, 1430], "tool": [2, 21, 22, 28, 31, 112, 506, 565, 570, 1374, 1417, 1418, 1419, 1421, 1428, 1430], "toolchain": [1276, 1279], "top": [56, 96, 585, 595, 627, 1124, 1419], "topic": [1417, 1429, 1431], "total": [19, 61, 62, 211, 229, 269, 286, 325, 343, 497, 985, 1027, 1124, 1138, 1319, 1377, 1420, 1422, 1429, 1431], "toteng": [985, 1027], "toward": [54, 55, 63], "tprnfor": 116, "tr": [34, 404, 416, 417, 424, 426, 436, 441, 1080, 1291, 1422, 1426, 1433], "tr1": [1422, 1426], "tr2": [1422, 1426], "tr_md": 1080, "tr_middl": [1422, 1433], "tr_new": 1422, "tr_smooth": 1433, "trace": 1433, "trail": 565, "train": [1301, 1306, 1319, 1425], "traj": [416, 421, 424, 436, 437, 439, 441, 447, 547, 1433], "trajectori": [15, 21, 23, 34, 211, 219, 249, 269, 277, 305, 404, 408, 410, 416, 417, 418, 419, 421, 424, 426, 430, 431, 436, 437, 438, 439, 441, 443, 445, 446, 447, 449, 451, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 566, 571, 878, 969, 1124, 1269, 1291, 1339, 1409, 1417, 1420, 1423, 1424, 1426, 1428, 1429], "trajectoryfilepars": [768, 878, 1011, 1080], "trajfn": 408, "transform": [407, 418, 419, 442, 443, 577, 640, 1331, 1369, 1373, 1376, 1417, 1420, 1422, 1424, 1428, 1429], "transit": [630, 1325], "translat": 1419, "transpar": [585, 681], "transpos": [61, 62, 577, 673, 1419], "trapezoid": 1382, "trapz": [675, 1382], "trc": 416, "treat": 1431, "tri": [1011, 1294, 1430], "trick": [34, 1272, 1423], "triclin": [1377, 1431], "tripl": [406, 452], "trivial": [418, 1430], "trnew": 404, "troubl": [437, 675], "true": [12, 34, 60, 72, 74, 77, 96, 97, 98, 104, 112, 116, 125, 130, 141, 151, 158, 159, 160, 164, 217, 221, 222, 256, 258, 269, 275, 279, 280, 312, 314, 332, 336, 337, 369, 372, 388, 390, 393, 406, 415, 416, 418, 419, 420, 422, 423, 427, 428, 430, 431, 437, 446, 447, 456, 457, 458, 477, 479, 487, 503, 506, 512, 514, 522, 647, 656, 657, 662, 666, 672, 675, 681, 687, 688, 690, 701, 706, 707, 715, 732, 735, 737, 756, 774, 777, 779, 796, 814, 817, 819, 836, 854, 857, 858, 867, 884, 887, 889, 914, 932, 935, 937, 950, 975, 978, 980, 999, 1017, 1020, 1022, 1040, 1058, 1061, 1062, 1069, 1080, 1086, 1089, 1093, 1112, 1124, 1130, 1133, 1136, 1149, 1166, 1169, 1173, 1193, 1212, 1215, 1216, 1220, 1237, 1240, 1241, 1246, 1278, 1281, 1287, 1291, 1293, 1296, 1300, 1301, 1325, 1326, 1327, 1331, 1334, 1337, 1338, 1339, 1345, 1351, 1368, 1371, 1377, 1378, 1379, 1380, 1382, 1407, 1409, 1423, 1424, 1427, 1431, 1433], "truncat": [54, 55, 63, 1342, 1426], "trust": 457, "try": [21, 147, 661, 677, 682, 1011, 1291, 1294, 1304, 1368, 1422], "try_set_attr": [21, 67, 70, 72, 75, 80, 81, 215, 217, 241, 261, 262, 273, 275, 297, 317, 318, 330, 332, 354, 374, 375, 386, 388, 391, 396, 397, 474, 477, 482, 490, 491, 509, 512, 517, 525, 526, 699, 701, 711, 719, 720, 730, 732, 746, 760, 761, 772, 774, 786, 800, 801, 812, 814, 826, 840, 841, 852, 854, 862, 871, 872, 882, 884, 903, 918, 919, 930, 932, 944, 954, 955, 973, 975, 989, 1003, 1004, 1015, 1017, 1030, 1044, 1045, 1056, 1058, 1065, 1073, 1074, 1084, 1086, 1103, 1116, 1117, 1128, 1130, 1143, 1153, 1154, 1164, 1166, 1184, 1197, 1198, 1210, 1212, 1217, 1224, 1225, 1235, 1237, 1242, 1250, 1251], "tryd": [10, 21, 1109, 1190, 1422], "tstress": 116, "tt": 1403, "tu": 418, "tuckerman": 19, "tune": [97, 1304, 1377, 1425], "tup": 1373, "tupl": [58, 59, 61, 62, 149, 242, 298, 355, 438, 575, 584, 648, 686, 687, 688, 1269, 1325, 1347, 1357, 1373, 1376], "turn": 1422, "tutor": 151, "tutori": [1417, 1429], "tweak": 575, "twice": [457, 1427], "twini": 627, "twinx": [437, 583, 584, 585, 594, 595, 627], "two": [61, 62, 64, 65, 96, 164, 404, 408, 419, 426, 437, 447, 481, 516, 573, 677, 1291, 1300, 1313, 1337, 1339, 1372, 1407, 1422, 1423, 1425, 1427, 1431], "txt": [56, 59, 60, 79, 90, 139, 140, 159, 260, 316, 373, 395, 462, 489, 524, 717, 758, 798, 838, 869, 916, 952, 1001, 1042, 1071, 1114, 1151, 1195, 1222, 1248, 1258, 1259, 1262, 1264, 1265, 1269, 1427, 1430], "tye": 1371, "typat": 269, "type": [34, 37, 41, 42, 43, 44, 45, 46, 48, 49, 50, 51, 52, 56, 58, 59, 61, 62, 108, 112, 123, 125, 126, 127, 128, 136, 141, 152, 157, 159, 160, 239, 250, 295, 306, 352, 363, 404, 406, 408, 409, 411, 412, 417, 418, 421, 423, 424, 425, 426, 427, 431, 434, 435, 436, 438, 440, 441, 444, 445, 448, 449, 450, 452, 454, 456, 457, 458, 459, 471, 502, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 565, 574, 576, 607, 623, 627, 628, 629, 634, 635, 640, 642, 645, 646, 648, 649, 651, 654, 655, 659, 660, 661, 665, 669, 670, 671, 675, 677, 679, 681, 683, 684, 686, 687, 689, 690, 878, 1011, 1270, 1271, 1272, 1273, 1275, 1282, 1290, 1292, 1295, 1296, 1302, 1303, 1306, 1308, 1319, 1323, 1326, 1327, 1328, 1329, 1333, 1334, 1337, 1338, 1339, 1341, 1342, 1343, 1345, 1353, 1364, 1366, 1368, 1369, 1371, 1372, 1373, 1374, 1377, 1378, 1379, 1417, 1426, 1427], "typic": [454, 634, 635, 636, 639, 1380, 1426], "u": [64, 65, 66, 1124, 1272, 1291, 1342, 1368, 1377, 1424], "u32": 1272, "ubuntu": 1430, "ufunc": 125, "uiuc": 571, "unchang": [61, 62, 1374, 1426], "uncov": 595, "und": 437, "undefin": 1422, "under": [1291, 1424], "underli": [595, 661], "underscor": 67, "understand": 1423, "unexpect": 661, "unicod": 1341, "unifi": 1422, "uniformli": 690, "uniqu": [96, 126, 245, 254, 301, 310, 358, 367, 409, 412, 577, 640, 878], "unit": [19, 21, 123, 211, 212, 233, 263, 268, 269, 270, 289, 319, 324, 325, 327, 346, 376, 381, 382, 383, 402, 409, 411, 412, 414, 422, 423, 427, 434, 437, 450, 452, 460, 471, 547, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 565, 567, 627, 696, 725, 727, 767, 769, 807, 809, 847, 849, 877, 879, 925, 927, 960, 970, 1010, 1011, 1012, 1051, 1053, 1079, 1080, 1081, 1091, 1123, 1124, 1125, 1135, 1159, 1161, 1171, 1204, 1206, 1207, 1230, 1231, 1232, 1257, 1275, 1287, 1291, 1325, 1331, 1377, 1417, 1420, 1427, 1428, 1429, 1430, 1431], "unitcel": 969, "uniti": [650, 681, 683, 684, 1338], "unitshandl": [21, 211, 269, 325, 1206], "univariatesplin": 657, "univers": 471, "unix": 21, "unless": [61, 62, 672, 1124], "unlik": 1417, "unnorm": 1124, "unord": [648, 1425], "unpleas": [878, 1419], "unstabl": [1304, 1382], "unstructur": 1377, "unt": [0, 37, 39, 40], "untest": 1431, "until": [132, 587, 588, 589, 590, 592, 593, 599, 600, 601, 602, 603, 604, 1288, 1337], "unus": [219, 277, 334], "unwrap": 1011, "up": [90, 139, 158, 408, 435, 437, 441, 447, 657, 677, 681, 685, 969, 1124, 1291, 1304, 1325, 1330, 1331, 1337, 1339, 1364, 1368, 1418, 1421, 1423, 1428, 1430, 1433], "updat": [102, 109, 117, 222, 268, 280, 324, 337, 381, 402, 568, 725, 767, 807, 847, 877, 925, 960, 1010, 1051, 1079, 1123, 1159, 1204, 1230, 1257, 1301, 1304, 1342, 1381, 1433], "upf": [112, 1273], "upload": 112, "upper": 90, "uppercas": [577, 1366], "upto": 1337, "us": [3, 6, 12, 14, 19, 23, 27, 34, 53, 59, 60, 61, 62, 67, 74, 79, 86, 90, 93, 97, 98, 99, 101, 106, 112, 114, 123, 125, 130, 133, 136, 150, 151, 158, 159, 163, 211, 221, 222, 239, 260, 269, 279, 280, 295, 316, 336, 337, 352, 373, 390, 395, 404, 406, 408, 417, 418, 421, 422, 426, 427, 437, 438, 439, 446, 447, 456, 457, 458, 459, 471, 479, 489, 500, 506, 514, 524, 565, 567, 568, 572, 575, 577, 583, 584, 585, 595, 627, 629, 631, 636, 644, 648, 649, 651, 652, 653, 657, 658, 661, 664, 666, 667, 672, 673, 675, 677, 681, 682, 683, 684, 691, 695, 706, 717, 735, 758, 777, 798, 817, 838, 848, 857, 869, 887, 900, 916, 926, 935, 941, 952, 961, 978, 1001, 1011, 1020, 1042, 1052, 1061, 1071, 1080, 1089, 1114, 1124, 1133, 1151, 1169, 1195, 1215, 1222, 1240, 1248, 1269, 1272, 1275, 1276, 1277, 1279, 1280, 1283, 1287, 1290, 1291, 1292, 1294, 1296, 1301, 1304, 1306, 1318, 1319, 1321, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1332, 1334, 1336, 1337, 1339, 1341, 1342, 1343, 1353, 1357, 1364, 1368, 1371, 1372, 1374, 1375, 1377, 1378, 1379, 1380, 1382, 1403, 1409, 1411, 1417, 1418, 1419, 1420, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431], "usag": [575, 1272, 1430], "use_alat": [1080, 1090, 1124, 1134, 1170], "use_m": [1, 51, 1290], "useful": 67, "useless": [657, 1124], "usepbc": [408, 447], "user": [130, 437, 878, 1418], "usr": [1421, 1427, 1430], "usual": [19, 86, 96, 219, 277, 334, 418, 422, 425, 431, 446, 481, 516, 574, 634, 635, 636, 639, 684, 985, 1027, 1124, 1287, 1288, 1291, 1339, 1377, 1382, 1399, 1409, 1430, 1433], "utf8": 1341, "util": [28, 1431], "uub": [64, 65, 66], "uuh": [64, 65, 66], "uuo": [64, 65, 66], "uup": [64, 65, 66], "uuq": [64, 65, 66], "uut": [64, 65, 66], "v": [1, 41, 51, 52, 64, 65, 66, 418, 434, 446, 465, 467, 471, 480, 481, 497, 498, 499, 504, 506, 515, 516, 537, 541, 542, 543, 624, 1290, 1313, 1326, 1369, 1370, 1377, 1380, 1420, 1423, 1429, 1431], "v0": [404, 467, 468, 471, 481, 497, 501, 506, 516, 537, 538], "v1": [404, 688], "v2": [404, 768], "v_": 1419, "v_i": [418, 1419], "v_x": [418, 1419], "v_x0": 1419, "v_x1": 1419, "v_xn": 1419, "v_y": [418, 1419], "va": [409, 878], "vacf": [1, 1290, 1291, 1292, 1293, 1423, 1430], "vacf_pdo": [1290, 1291, 1423], "vair": 1341, "val": [128, 159, 160, 161, 650, 1301, 1308, 1341, 1364, 1369, 1370], "valid": [54, 55, 63, 80, 261, 317, 374, 396, 406, 490, 525, 719, 760, 800, 840, 871, 918, 954, 1003, 1044, 1073, 1116, 1153, 1197, 1224, 1250, 1318, 1319, 1323, 1377, 1382, 1425], "vallei": 1425, "valu": [21, 64, 65, 89, 90, 91, 98, 102, 109, 117, 125, 136, 141, 144, 157, 159, 160, 406, 408, 422, 426, 427, 431, 437, 446, 447, 497, 547, 568, 577, 628, 640, 648, 649, 650, 651, 672, 676, 681, 1124, 1271, 1291, 1294, 1301, 1304, 1305, 1306, 1313, 1318, 1319, 1323, 1325, 1332, 1339, 1341, 1342, 1345, 1351, 1368, 1369, 1371, 1373, 1374, 1377, 1379, 1382, 1406, 1424, 1425, 1431], "van": 1124, "vandermond": [679, 681, 689], "var": [144, 1430], "vari": [96, 98, 125, 1377, 1421], "variabl": [418, 419, 555, 878, 900, 941, 1124, 1291, 1424, 1431, 1433], "variant": 1339, "variat": [1326, 1377], "variou": [1373, 1433], "vasp": 1431, "vavcf": 1291, "vb": [409, 625], "vc": [409, 562, 564, 625, 1080, 1160, 1431], "vc_relax": 1433, "vdw": 1124, "vec": [404, 419, 435, 574, 1282, 1283, 1284, 1288, 1419], "vect_loop": 1, "vector": [123, 211, 269, 325, 404, 405, 409, 412, 418, 419, 420, 422, 425, 434, 435, 452, 565, 573, 574, 674, 690, 1124, 1275, 1284, 1288, 1290, 1301, 1302, 1304, 1326, 1419, 1424], "vel": [1289, 1290, 1291, 1292, 1293, 1426], "veloc": [23, 211, 251, 269, 307, 325, 364, 424, 446, 1011, 1290, 1291, 1292, 1417, 1420, 1422, 1428, 1429], "velocity_traj": 1423, "venv": 1430, "verbos": [35, 408, 447, 506, 1124, 1294, 1382], "veri": [34, 67, 269, 441, 481, 516, 675, 681, 848, 878, 1052, 1291, 1304, 1339, 1377, 1382, 1418, 1425, 1431, 1433], "verifi": [269, 1422], "verlagsgesellschaft": 437, "versa": 422, "version": [0, 1, 21, 61, 62, 419, 456, 457, 458, 577, 631, 640, 652, 673, 1124, 1272, 1326, 1330, 1417, 1425, 1429, 1431], "vertic": 574, "very_big_fil": 151, "very_small_fil": 416, "vg": 625, "via": [64, 65, 1313, 1430, 1431], "vibrat": [23, 1382, 1423], "vibrational_entropi": 1387, "vibrational_free_energi": 1385, "vibrational_internal_energi": 1384, "vice": 422, "view": [61, 62, 98, 578, 581, 687, 1371, 1417, 1422, 1429], "view_avogadro": [429, 1433], "view_jmol": 1433, "view_vmd_axsf": [34, 1430, 1433], "view_vmd_xyz": [34, 1430], "view_xcrysden": 1433, "viewdoc": [435, 437], "vieweg": 437, "viewer": [1409, 1412, 1413, 1414, 1415, 1416, 1428, 1433], "viewfactori": [34, 1412, 1413, 1414, 1415, 1416], "vim": 1426, "vinet": [14, 465, 471, 497, 541, 542, 543, 1428], "virtual": 1430, "virtualenvwrapp": 1430, "visual": [35, 429, 1418, 1428, 1433], "vk": 625, "vm": 625, "vmap": [1302, 1303], "vmd": [408, 437, 441, 447, 571, 1428, 1430, 1433], "vmd_measure_gofr": 437, "vmd_script": 1433, "vmin": 681, "voigt": [123, 444, 445, 448, 449], "voigt2tensor": 449, "vol": [108, 1011], "vol_range_scal": 1294, "vol_scal": 1294, "volfunc_ax": [1377, 1431], "volum": [211, 269, 325, 434, 437, 450, 452, 465, 467, 468, 480, 481, 497, 498, 504, 506, 515, 516, 535, 537, 538, 1011, 1124, 1294, 1377, 1433], "volume_cc": [451, 1377, 1431], "volume_cel": 453, "vorlesungen": 418, "vr": 625, "vscale": 681, "vv": [497, 506], "vx": 1011, "vy": [625, 1011], "vz": 1011, "w": [56, 61, 62, 64, 65, 66, 96, 97, 150, 211, 269, 325, 404, 409, 410, 412, 435, 436, 437, 451, 568, 627, 634, 648, 649, 681, 900, 941, 1124, 1273, 1301, 1304, 1321, 1325, 1326, 1327, 1334, 1368, 1379, 1421, 1423, 1425, 1431], "w_g": 635, "w_j": 1425, "wa": [21, 98, 640, 1269, 1290, 1330, 1382, 1422, 1430], "waal": 1124, "wai": [61, 62, 96, 404, 454, 575, 969, 1011, 1272, 1418, 1422, 1423, 1430, 1431], "wait": [34, 158, 1409], "waitfor": 34, "walk": 457, "want": [34, 89, 90, 222, 280, 337, 418, 427, 437, 568, 575, 585, 1052, 1124, 1275, 1290, 1296, 1368, 1419, 1422, 1425, 1430, 1433], "warn": [159, 1382, 1430], "warn_mult_found": 159, "warn_not_found": 159, "watch": 1011, "wave": [926, 1418], "wavefunct": [878, 926], "wc": 21, "we": [6, 19, 21, 27, 67, 90, 98, 112, 149, 150, 157, 211, 222, 269, 280, 325, 337, 406, 409, 410, 422, 424, 436, 437, 438, 447, 451, 471, 481, 506, 516, 574, 575, 577, 661, 666, 671, 672, 675, 679, 681, 682, 688, 848, 878, 900, 941, 1011, 1052, 1080, 1124, 1269, 1272, 1275, 1282, 1284, 1290, 1291, 1294, 1301, 1302, 1309, 1323, 1326, 1327, 1332, 1334, 1339, 1351, 1357, 1368, 1374, 1375, 1377, 1382, 1418, 1419, 1422, 1423, 1425, 1427, 1430, 1431, 1433], "weakli": 1426, "weight": [19, 1304, 1423, 1425], "weird": [59, 1382], "welch": [1291, 1339, 1423], "well": [96, 98, 426, 575, 648, 1080, 1430], "went": [462, 1430], "were": 1290, "wether": 140, "wf": 878, "wf_collect": 116, "what": [21, 90, 126, 269, 648, 681, 878, 1124, 1323, 1339, 1350, 1368, 1377, 1381, 1422, 1423, 1430, 1431, 1433], "whatev": [90, 136, 222, 280, 337, 406, 568, 595, 1080], "whath": 140, "whatnot": 159, "when": [19, 21, 97, 150, 164, 436, 506, 1011, 1124, 1269, 1287, 1300, 1301, 1304, 1327, 1334, 1337, 1407, 1425, 1430, 1431, 1433], "where": [21, 34, 61, 62, 86, 90, 91, 96, 98, 112, 132, 141, 157, 249, 305, 362, 406, 408, 409, 411, 412, 419, 425, 427, 428, 431, 435, 437, 447, 450, 502, 506, 584, 585, 627, 640, 645, 646, 648, 649, 654, 655, 659, 660, 661, 671, 672, 673, 679, 681, 1011, 1080, 1269, 1271, 1275, 1282, 1283, 1284, 1287, 1288, 1302, 1306, 1332, 1337, 1339, 1341, 1342, 1355, 1371, 1377, 1382, 1409, 1418, 1419, 1423, 1424, 1425, 1430, 1431], "wherea": 1422, "whether": [61, 62, 150, 408, 417, 447, 547, 657, 1291, 1351], "which": [19, 21, 23, 34, 56, 58, 59, 60, 61, 62, 67, 72, 86, 89, 90, 96, 132, 149, 159, 211, 217, 239, 269, 275, 295, 325, 332, 352, 388, 406, 408, 418, 419, 423, 424, 428, 433, 435, 437, 440, 446, 447, 477, 481, 502, 506, 512, 516, 568, 573, 575, 577, 627, 629, 643, 646, 648, 652, 655, 660, 661, 672, 673, 681, 682, 684, 688, 701, 732, 774, 814, 854, 878, 884, 900, 932, 941, 961, 975, 1011, 1017, 1052, 1058, 1080, 1086, 1124, 1130, 1166, 1212, 1237, 1269, 1275, 1282, 1284, 1294, 1301, 1318, 1325, 1326, 1330, 1337, 1339, 1341, 1342, 1345, 1347, 1351, 1358, 1364, 1368, 1374, 1375, 1377, 1381, 1382, 1405, 1406, 1409, 1411, 1418, 1419, 1421, 1422, 1423, 1425, 1430, 1431, 1433], "while": [112, 151, 848, 1294, 1323, 1339, 1425], "whistl": 159, "white": [591, 1269], "whitespac": [21, 54, 55, 63, 627], "whole": [462, 686, 687, 1371, 1427], "whoos": 21, "whose": [90, 427, 1424], "why": [878, 969, 1419], "wide": 1339, "wider": 1339, "width": [1314, 1315, 1316, 1325, 1327, 1334, 1339], "wien2k": [565, 570, 1374], "wien_sgroup_input": 570, "wiener": [1326, 1423], "wiki": [10, 450, 1339, 1431], "wikipedia": [10, 450], "win": [12, 1325], "window": [441, 1291, 1325, 1327, 1334, 1339, 1340, 1423], "wish": 149, "with_traceback": [533, 1297], "within": [404, 427, 437, 1339], "without": [67, 269, 557, 648, 1326, 1327, 1334, 1339, 1380, 1425, 1430, 1431, 1433], "wolfram": [666, 1326, 1328], "won": [1291, 1325, 1377, 1430, 1433], "work": [6, 34, 59, 67, 90, 97, 112, 410, 451, 457, 627, 640, 648, 657, 661, 669, 670, 676, 688, 808, 878, 1052, 1124, 1371, 1377, 1417, 1423, 1427, 1429, 1430, 1431], "workaround": 1430, "world": 681, "worth": 1423, "would": [21, 84, 266, 322, 379, 400, 406, 422, 431, 437, 495, 530, 675, 723, 765, 805, 845, 875, 923, 958, 1008, 1049, 1077, 1121, 1124, 1157, 1202, 1228, 1255, 1269, 1339, 1371, 1374, 1418, 1423, 1425], "wp": 112, "wrap": [222, 280, 337, 406, 420, 430, 431, 436, 1011, 1342], "wrapper": [36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 161, 406, 416, 420, 421, 447, 457, 657, 665, 1286, 1289, 1293, 1423, 1428], "write": [2, 34, 57, 60, 74, 88, 90, 97, 112, 140, 151, 221, 279, 336, 390, 447, 479, 506, 514, 566, 568, 569, 570, 571, 706, 735, 777, 817, 848, 857, 887, 935, 978, 1020, 1061, 1089, 1124, 1133, 1169, 1215, 1240, 1342, 1345, 1368, 1409, 1421, 1424, 1426, 1427, 1428, 1433], "write_axsf": 1409, "write_cif": 1431, "write_h5": [557, 1431], "write_input": [96, 1421], "write_lammp": 1011, "writeabl": [61, 62], "writearr": 128, "writer": [567, 1409], "writesql": 90, "writetxt": [59, 1269], "written": [23, 34, 60, 86, 96, 97, 99, 108, 112, 133, 408, 447, 506, 557, 561, 576, 878, 926, 1011, 1269, 1287, 1409, 1419, 1426, 1431], "wrong": [437, 661], "wrpap": 424, "wsadd": 627, "wt": 19, "wurtzit": 1431, "www": [23, 112, 418, 566, 571, 1325, 1328, 1424], "wz": 1427, "x": [14, 22, 23, 54, 55, 61, 62, 63, 79, 89, 90, 98, 112, 113, 164, 211, 260, 316, 373, 395, 404, 405, 406, 408, 409, 418, 427, 431, 434, 437, 438, 440, 446, 447, 468, 471, 489, 500, 502, 503, 506, 524, 538, 557, 575, 577, 579, 582, 591, 595, 624, 628, 634, 635, 636, 639, 640, 643, 644, 645, 646, 647, 648, 649, 650, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 666, 669, 670, 673, 675, 677, 679, 681, 685, 717, 758, 798, 838, 869, 916, 952, 1001, 1011, 1042, 1071, 1080, 1114, 1124, 1151, 1195, 1222, 1248, 1271, 1273, 1274, 1275, 1276, 1278, 1279, 1281, 1283, 1284, 1285, 1287, 1288, 1300, 1301, 1302, 1303, 1309, 1325, 1326, 1327, 1329, 1332, 1333, 1334, 1338, 1339, 1341, 1355, 1369, 1370, 1371, 1374, 1377, 1381, 1382, 1394, 1395, 1398, 1399, 1407, 1419, 1423, 1424, 1425, 1426, 1427, 1430, 1431, 1433], "x0": [500, 502, 644, 645, 646, 649, 650, 651, 653, 654, 655, 658, 659, 660, 661, 669, 670, 679, 681, 1332, 1399, 1419], "x0_i": 679, "x1": [650, 679, 681, 1419], "x1_i": 679, "x2": 679, "x86_64": [127, 642, 1270], "x_0": [679, 1327, 1334], "x_1": 679, "x_i": [679, 1302, 1306, 1425], "x_imag": 1288, "x_j": 1425, "x_n": 679, "x_opt": 1377, "x_real": 1288, "x_scale": 1338, "xab": [500, 502, 644, 645, 646, 653, 654, 655, 657, 658, 659, 660, 661], "xaxi": 627, "xb": 625, "xc": [112, 113, 625], "xcrysden": [566, 1409, 1428, 1433], "xd": 664, "xdist": 1430, "xe": [64, 65, 66], "xg": 625, "xi": [577, 1301], "xi_0": 1302, "xi_n": 1302, "xk": 625, "xlabel": 627, "xm": 625, "xmin": 649, "xnew": 664, "xr": 625, "xsf": [34, 408, 447, 566], "xsu": 1011, "xu": [108, 1011], "xx": [1, 50, 64, 65, 66, 79, 98, 260, 316, 373, 395, 444, 448, 489, 502, 524, 577, 579, 582, 645, 646, 648, 652, 654, 655, 657, 659, 660, 661, 717, 758, 798, 838, 869, 916, 952, 1001, 1042, 1071, 1114, 1151, 1195, 1222, 1248, 1301, 1371, 1377, 1433], "xxx": [90, 139, 878], "xxxfnfreq": 1427, "xxxfoo": [90, 99, 159], "xxxk": 1427, "xxxlala": 90, "xxxmass": 1427, "xxxnk": 1427, "xxxone": 159, "xxxpi": 159, "xy": [444, 448, 577, 625, 1011, 1275, 1301, 1377, 1433], "xyz": [34, 571, 878, 1011, 1426, 1428], "xyz_axi": 431, "xyzplugin": 571, "xz": [444, 448, 1011], "y": [64, 65, 66, 89, 98, 404, 405, 406, 409, 418, 431, 502, 557, 577, 579, 582, 591, 595, 596, 597, 598, 622, 625, 628, 634, 635, 636, 639, 640, 643, 645, 646, 648, 649, 652, 654, 655, 657, 659, 660, 661, 664, 669, 670, 673, 675, 679, 681, 1011, 1301, 1328, 1329, 1332, 1339, 1355, 1377, 1381, 1382, 1419, 1433], "y0": [661, 1419], "y1": 1419, "y_i": 679, "y_imag": 1288, "y_real": 1288, "yah": 140, "yaxi": 627, "yb": [64, 65, 66], "yd": [598, 664], "ye": [160, 1011], "yet": 808, "yh": 598, "yi": 577, "yield": 1304, "ykwyad": 1382, "ylabel": 627, "ylim": 575, "ymin": [649, 1332], "yo": 598, "you": [3, 21, 34, 89, 90, 96, 125, 222, 269, 280, 337, 404, 418, 427, 437, 457, 506, 568, 574, 575, 583, 585, 627, 648, 657, 661, 677, 681, 682, 848, 1052, 1080, 1124, 1275, 1291, 1296, 1323, 1325, 1331, 1339, 1342, 1368, 1371, 1374, 1377, 1379, 1382, 1418, 1419, 1421, 1422, 1423, 1424, 1425, 1426, 1430, 1431, 1433], "your": [97, 136, 222, 280, 337, 419, 481, 506, 516, 575, 1080, 1124, 1296, 1323, 1339, 1382, 1418, 1424, 1430, 1433], "yourself": [59, 437, 447], "youself": 1377, "yp": 598, "ysu": 1011, "yu": [108, 1011], "yv": 598, "yx": 598, "yy": [98, 444, 448, 577, 648, 1301, 1377, 1433], "yyi": 139, "yz": [444, 448, 1011], "z": [89, 404, 418, 431, 557, 577, 591, 628, 630, 631, 634, 635, 636, 639, 640, 648, 649, 703, 1011, 1301, 1304, 1355, 1377, 1419, 1425, 1433], "z0": 1419, "z1": 1419, "z_i": 1425, "z_imag": 1288, "z_real": 1288, "za": 703, "zero": [54, 55, 61, 62, 63, 141, 422, 436, 447, 481, 516, 1291, 1321, 1325, 1326, 1337, 1339, 1380, 1382, 1395, 1399, 1423, 1425], "zero_ep": [157, 1271], "zi": 577, "zip": [96, 125, 406, 1368, 1371], "zn": [64, 65, 66], "znucl": [242, 298, 355, 1373, 1376], "znucl_uniqu": 269, "zone": 574, "zr": [64, 65, 66], "zsu": 1011, "zu": [108, 1011], "zz": [444, 448, 577, 1301, 1377, 1433], "\u00b5": [12, 1309]}, "titles": ["_dcd", "_flib", "arrayio", "atomic_data", "base", "batch", "calculators", "comb", "common", "config", "constants", "crys", "dcd", "decorators", "eos", "io", "kpath", "lammps", "mpl", "mttk", "num", "parse", "pwscf", "pydos", "random", "rbf.core", "rbf.hyperopt", "regex", "signal", "sql", "symmetry", "thermo", "timer", "verbose", "visualize", "API Reference", "pwtools._dcd.get_dcd_file_info", "pwtools._dcd.open_file", "pwtools._dcd.read_dcd_data", "pwtools._dcd.read_dcd_data_from_unit", "pwtools._dcd.read_dcd_header_from_unit", "pwtools._flib.acorr", "pwtools._flib.angles", "pwtools._flib.cart2frac", "pwtools._flib.cart2frac_traj", "pwtools._flib.distances_traj", "pwtools._flib.distsq", "pwtools._flib.distsq_frac", "pwtools._flib.frac2cart", "pwtools._flib.frac2cart_traj", "pwtools._flib.solve", "pwtools._flib.vacf", "pwtools._flib.vect_loops", "pwtools.arrayio.HEADER_COMMENT", "pwtools.arrayio.HEADER_MAXLINES", "pwtools.arrayio.TXT_MAXDIM", "pwtools.arrayio._read_header_config", "pwtools.arrayio._write_header_config", "pwtools.arrayio.arr2d_to_3d", "pwtools.arrayio.readtxt", "pwtools.arrayio.writetxt", "pwtools.atomic_data.covalent_radii", "pwtools.atomic_data.masses", "pwtools.atomic_data.missing", "pwtools.atomic_data.numbers", "pwtools.atomic_data.pt", "pwtools.atomic_data.symbols", "pwtools.base.FlexibleGetters", "pwtools.base.FlexibleGetters.assert_attr", "pwtools.base.FlexibleGetters.assert_attr_lst", "pwtools.base.FlexibleGetters.assert_set_attr", "pwtools.base.FlexibleGetters.assert_set_attr_lst", "pwtools.base.FlexibleGetters.check_set_attr", "pwtools.base.FlexibleGetters.check_set_attr_lst", "pwtools.base.FlexibleGetters.dump", "pwtools.base.FlexibleGetters.get_return_attr", "pwtools.base.FlexibleGetters.init_attr_lst", "pwtools.base.FlexibleGetters.is_set_attr", "pwtools.base.FlexibleGetters.is_set_attr_lst", "pwtools.base.FlexibleGetters.load", "pwtools.base.FlexibleGetters.raw_return", "pwtools.base.FlexibleGetters.raw_slice_get", "pwtools.base.FlexibleGetters.set_all", "pwtools.base.FlexibleGetters.set_attr_lst", "pwtools.base.FlexibleGetters.try_set_attr", "pwtools.base.FlexibleGetters.try_set_attr_lst", "pwtools.batch.Calculation", "pwtools.batch.Calculation.get_sql_record", "pwtools.batch.Calculation.write_input", "pwtools.batch.Case", "pwtools.batch.FileTemplate", "pwtools.batch.FileTemplate.write", "pwtools.batch.FileTemplate.writesql", "pwtools.batch.Machine", "pwtools.batch.Machine.get_jobfile_basename", "pwtools.batch.Machine.get_sql_record", "pwtools.batch.ParameterStudy", "pwtools.batch.ParameterStudy.write_input", "pwtools.batch.conv_table", "pwtools.batch.default_repl_keys", "pwtools.calculators.CalculatorBase", "pwtools.calculators.CalculatorBase.fill_infile_templ", "pwtools.calculators.CalculatorBase.init_params_from_input", "pwtools.calculators.FileIOCalculator", "pwtools.calculators.Lammps", "pwtools.calculators.Lammps.default_parameters", "pwtools.calculators.Lammps.fill_infile_templ", "pwtools.calculators.Lammps.implemented_properties", "pwtools.calculators.Lammps.infile_templ", "pwtools.calculators.Lammps.init_params_from_input", "pwtools.calculators.Lammps.read_results", "pwtools.calculators.Lammps.write_input", "pwtools.calculators.Pwscf", "pwtools.calculators.Pwscf.default_parameters", "pwtools.calculators.Pwscf.fill_infile_templ", "pwtools.calculators.Pwscf.implemented_properties", "pwtools.calculators.Pwscf.infile_templ", "pwtools.calculators.Pwscf.init_params_from_input", "pwtools.calculators.Pwscf.read_results", "pwtools.calculators.Pwscf.write_input", "pwtools.calculators._ase_missing", "pwtools.calculators.find_exe", "pwtools.calculators.kpts2mp", "pwtools.calculators.stress_pwtools2ase", "pwtools.comb._ensure_list", "pwtools.comb.nested_loops", "pwtools.comb.unique2d", "pwtools.common.EPS", "pwtools.common.add_to_config", "pwtools.common.asseq", "pwtools.common.assert_cond", "pwtools.common.backtick", "pwtools.common.backup", "pwtools.common.cpickle_load", "pwtools.common.dict2class", "pwtools.common.dict2str", "pwtools.common.ffloat", "pwtools.common.file_read", "pwtools.common.file_readlines", "pwtools.common.file_template_replace", "pwtools.common.file_write", "pwtools.common.fix_eps", "pwtools.common.flatten", "pwtools.common.fpj", "pwtools.common.frepr", "pwtools.common.fullpath", "pwtools.common.fullpathjoin", "pwtools.common.get_filename", "pwtools.common.iflatten", "pwtools.common.is_seq", "pwtools.common.makedirs", "pwtools.common.permit_sigpipe", "pwtools.common.pop_from_list", "pwtools.common.print_dct", "pwtools.common.seq2str", "pwtools.common.str2seq", "pwtools.common.str2tup", "pwtools.common.str_arr", "pwtools.common.system", "pwtools.common.template_replace", "pwtools.common.tobool", "pwtools.common.toslice", "pwtools.common.tup2str", "pwtools.config.name", "pwtools.config.use_jax", "pwtools.constants.Ang", "pwtools.constants.Angstrom", "pwtools.constants.Bohr", "pwtools.constants.Bohr_to_Ang", "pwtools.constants.Eh", "pwtools.constants.Eryd", "pwtools.constants.GPa", "pwtools.constants.Ha", "pwtools.constants.Ha_to_eV", "pwtools.constants.Hartree", "pwtools.constants.J_to_eV", "pwtools.constants.J_to_rcm", "pwtools.constants.R", "pwtools.constants.Ry", "pwtools.constants.Ry_to_Ha", "pwtools.constants.Ry_to_Hz", "pwtools.constants.Ry_to_J", "pwtools.constants.Ry_to_eV", "pwtools.constants.Ry_to_rcm", "pwtools.constants.Rydberg", "pwtools.constants.a0", "pwtools.constants.a0_to_A", "pwtools.constants.alpha", "pwtools.constants.amu", "pwtools.constants.avo", "pwtools.constants.c0", "pwtools.constants.dyn", "pwtools.constants.e0", "pwtools.constants.eV", "pwtools.constants.eV_by_Ang3_to_GPa", "pwtools.constants.eV_by_Ang3_to_Pa", "pwtools.constants.eps0", "pwtools.constants.fs", "pwtools.constants.h", "pwtools.constants.hbar", "pwtools.constants.hplanck", "pwtools.constants.kb", "pwtools.constants.m0", "pwtools.constants.mu0", "pwtools.constants.pi", "pwtools.constants.ps", "pwtools.constants.rcm_to_Hz", "pwtools.constants.th", "pwtools.constants.thart", "pwtools.constants.tryd", "pwtools.crys.Angstrom", "pwtools.crys.FakeASEAtoms", "pwtools.crys.FakeASEAtoms.apply_units", "pwtools.crys.FakeASEAtoms.assert_attr", "pwtools.crys.FakeASEAtoms.assert_attr_lst", "pwtools.crys.FakeASEAtoms.assert_set_attr", "pwtools.crys.FakeASEAtoms.assert_set_attr_lst", "pwtools.crys.FakeASEAtoms.check_set_attr", "pwtools.crys.FakeASEAtoms.check_set_attr_lst", "pwtools.crys.FakeASEAtoms.compress", "pwtools.crys.FakeASEAtoms.copy", "pwtools.crys.FakeASEAtoms.dump", "pwtools.crys.FakeASEAtoms.get_ase_atoms", "pwtools.crys.FakeASEAtoms.get_atomic_numbers", "pwtools.crys.FakeASEAtoms.get_cell", "pwtools.crys.FakeASEAtoms.get_coords", "pwtools.crys.FakeASEAtoms.get_coords_frac", "pwtools.crys.FakeASEAtoms.get_cryst_const", "pwtools.crys.FakeASEAtoms.get_ekin", "pwtools.crys.FakeASEAtoms.get_etot", "pwtools.crys.FakeASEAtoms.get_fake_ase_atoms", "pwtools.crys.FakeASEAtoms.get_forces", "pwtools.crys.FakeASEAtoms.get_magnetic_moments", "pwtools.crys.FakeASEAtoms.get_mass", "pwtools.crys.FakeASEAtoms.get_mass_unique", "pwtools.crys.FakeASEAtoms.get_natoms", "pwtools.crys.FakeASEAtoms.get_nspecies", "pwtools.crys.FakeASEAtoms.get_nstep", "pwtools.crys.FakeASEAtoms.get_ntypat", "pwtools.crys.FakeASEAtoms.get_order", "pwtools.crys.FakeASEAtoms.get_pressure", "pwtools.crys.FakeASEAtoms.get_return_attr", "pwtools.crys.FakeASEAtoms.get_spglib", "pwtools.crys.FakeASEAtoms.get_stress", "pwtools.crys.FakeASEAtoms.get_symbols", "pwtools.crys.FakeASEAtoms.get_symbols_unique", "pwtools.crys.FakeASEAtoms.get_temperature", "pwtools.crys.FakeASEAtoms.get_time", "pwtools.crys.FakeASEAtoms.get_timestep", "pwtools.crys.FakeASEAtoms.get_traj", "pwtools.crys.FakeASEAtoms.get_typat", "pwtools.crys.FakeASEAtoms.get_velocity", "pwtools.crys.FakeASEAtoms.get_volume", "pwtools.crys.FakeASEAtoms.get_znucl", "pwtools.crys.FakeASEAtoms.get_znucl_unique", "pwtools.crys.FakeASEAtoms.init_attr_lst", "pwtools.crys.FakeASEAtoms.is_set_attr", "pwtools.crys.FakeASEAtoms.is_set_attr_lst", "pwtools.crys.FakeASEAtoms.is_struct", "pwtools.crys.FakeASEAtoms.is_traj", "pwtools.crys.FakeASEAtoms.load", "pwtools.crys.FakeASEAtoms.raw_return", "pwtools.crys.FakeASEAtoms.raw_slice_get", "pwtools.crys.FakeASEAtoms.set_all", "pwtools.crys.FakeASEAtoms.set_attr_lst", "pwtools.crys.FakeASEAtoms.timeaxis", "pwtools.crys.FakeASEAtoms.try_set_attr", "pwtools.crys.FakeASEAtoms.try_set_attr_lst", "pwtools.crys.FakeASEAtoms.update_units", "pwtools.crys.Structure", "pwtools.crys.Structure.apply_units", "pwtools.crys.Structure.assert_attr", "pwtools.crys.Structure.assert_attr_lst", "pwtools.crys.Structure.assert_set_attr", "pwtools.crys.Structure.assert_set_attr_lst", "pwtools.crys.Structure.check_set_attr", "pwtools.crys.Structure.check_set_attr_lst", "pwtools.crys.Structure.compress", "pwtools.crys.Structure.copy", "pwtools.crys.Structure.dump", "pwtools.crys.Structure.get_ase_atoms", "pwtools.crys.Structure.get_cell", "pwtools.crys.Structure.get_coords", "pwtools.crys.Structure.get_coords_frac", "pwtools.crys.Structure.get_cryst_const", "pwtools.crys.Structure.get_ekin", "pwtools.crys.Structure.get_etot", "pwtools.crys.Structure.get_fake_ase_atoms", "pwtools.crys.Structure.get_forces", "pwtools.crys.Structure.get_mass", "pwtools.crys.Structure.get_mass_unique", "pwtools.crys.Structure.get_natoms", "pwtools.crys.Structure.get_nspecies", "pwtools.crys.Structure.get_nstep", "pwtools.crys.Structure.get_ntypat", "pwtools.crys.Structure.get_order", "pwtools.crys.Structure.get_pressure", "pwtools.crys.Structure.get_return_attr", "pwtools.crys.Structure.get_spglib", "pwtools.crys.Structure.get_stress", "pwtools.crys.Structure.get_symbols", "pwtools.crys.Structure.get_symbols_unique", "pwtools.crys.Structure.get_temperature", "pwtools.crys.Structure.get_time", "pwtools.crys.Structure.get_timestep", "pwtools.crys.Structure.get_traj", "pwtools.crys.Structure.get_typat", "pwtools.crys.Structure.get_velocity", "pwtools.crys.Structure.get_volume", "pwtools.crys.Structure.get_znucl", "pwtools.crys.Structure.get_znucl_unique", "pwtools.crys.Structure.init_attr_lst", "pwtools.crys.Structure.is_set_attr", "pwtools.crys.Structure.is_set_attr_lst", "pwtools.crys.Structure.is_struct", "pwtools.crys.Structure.is_traj", "pwtools.crys.Structure.load", "pwtools.crys.Structure.raw_return", "pwtools.crys.Structure.raw_slice_get", "pwtools.crys.Structure.set_all", "pwtools.crys.Structure.set_attr_lst", "pwtools.crys.Structure.timeaxis", "pwtools.crys.Structure.try_set_attr", "pwtools.crys.Structure.try_set_attr_lst", "pwtools.crys.Structure.update_units", "pwtools.crys.Trajectory", "pwtools.crys.Trajectory.__getitem__", "pwtools.crys.Trajectory.apply_units", "pwtools.crys.Trajectory.assert_attr", "pwtools.crys.Trajectory.assert_attr_lst", "pwtools.crys.Trajectory.assert_set_attr", "pwtools.crys.Trajectory.assert_set_attr_lst", "pwtools.crys.Trajectory.check_set_attr", "pwtools.crys.Trajectory.check_set_attr_lst", "pwtools.crys.Trajectory.compress", "pwtools.crys.Trajectory.copy", "pwtools.crys.Trajectory.dump", "pwtools.crys.Trajectory.get_ase_atoms", "pwtools.crys.Trajectory.get_cell", "pwtools.crys.Trajectory.get_coords", "pwtools.crys.Trajectory.get_coords_frac", "pwtools.crys.Trajectory.get_cryst_const", "pwtools.crys.Trajectory.get_ekin", "pwtools.crys.Trajectory.get_etot", "pwtools.crys.Trajectory.get_fake_ase_atoms", "pwtools.crys.Trajectory.get_forces", "pwtools.crys.Trajectory.get_mass", "pwtools.crys.Trajectory.get_mass_unique", "pwtools.crys.Trajectory.get_natoms", "pwtools.crys.Trajectory.get_nspecies", "pwtools.crys.Trajectory.get_nstep", "pwtools.crys.Trajectory.get_ntypat", "pwtools.crys.Trajectory.get_order", "pwtools.crys.Trajectory.get_pressure", "pwtools.crys.Trajectory.get_return_attr", "pwtools.crys.Trajectory.get_spglib", "pwtools.crys.Trajectory.get_stress", "pwtools.crys.Trajectory.get_symbols", "pwtools.crys.Trajectory.get_symbols_unique", "pwtools.crys.Trajectory.get_temperature", "pwtools.crys.Trajectory.get_time", "pwtools.crys.Trajectory.get_timestep", "pwtools.crys.Trajectory.get_traj", "pwtools.crys.Trajectory.get_typat", "pwtools.crys.Trajectory.get_velocity", "pwtools.crys.Trajectory.get_volume", "pwtools.crys.Trajectory.get_znucl", "pwtools.crys.Trajectory.get_znucl_unique", "pwtools.crys.Trajectory.init_attr_lst", "pwtools.crys.Trajectory.is_set_attr", "pwtools.crys.Trajectory.is_set_attr_lst", "pwtools.crys.Trajectory.is_struct", "pwtools.crys.Trajectory.is_traj", "pwtools.crys.Trajectory.load", "pwtools.crys.Trajectory.raw_return", "pwtools.crys.Trajectory.raw_slice_get", "pwtools.crys.Trajectory.set_all", "pwtools.crys.Trajectory.set_attr_lst", "pwtools.crys.Trajectory.timeaxis", "pwtools.crys.Trajectory.try_set_attr", "pwtools.crys.Trajectory.try_set_attr_lst", "pwtools.crys.Trajectory.update_units", "pwtools.crys.UnitsHandler", "pwtools.crys.UnitsHandler.apply_units", "pwtools.crys.UnitsHandler.assert_attr", "pwtools.crys.UnitsHandler.assert_attr_lst", "pwtools.crys.UnitsHandler.assert_set_attr", "pwtools.crys.UnitsHandler.assert_set_attr_lst", "pwtools.crys.UnitsHandler.check_set_attr", "pwtools.crys.UnitsHandler.check_set_attr_lst", "pwtools.crys.UnitsHandler.dump", "pwtools.crys.UnitsHandler.get_return_attr", "pwtools.crys.UnitsHandler.init_attr_lst", "pwtools.crys.UnitsHandler.is_set_attr", "pwtools.crys.UnitsHandler.is_set_attr_lst", "pwtools.crys.UnitsHandler.load", "pwtools.crys.UnitsHandler.raw_return", "pwtools.crys.UnitsHandler.raw_slice_get", "pwtools.crys.UnitsHandler.set_all", "pwtools.crys.UnitsHandler.set_attr_lst", "pwtools.crys.UnitsHandler.try_set_attr", "pwtools.crys.UnitsHandler.try_set_attr_lst", "pwtools.crys.UnitsHandler.update_units", "pwtools.crys._trans", "pwtools.crys.align_cart", "pwtools.crys.angle", "pwtools.crys.angles", "pwtools.crys.atoms2struct", "pwtools.crys.call_vmd_measure_gofr", "pwtools.crys.cc2cell", "pwtools.crys.cc2cell3d", "pwtools.crys.cc2celldm", "pwtools.crys.cell2cc", "pwtools.crys.cell2cc3d", "pwtools.crys.celldm2cc", "pwtools.crys.center_on_atom", "pwtools.crys.compress", "pwtools.crys.concatenate", "pwtools.crys.coord_trans", "pwtools.crys.coord_trans3d", "pwtools.crys.distances", "pwtools.crys.distances_traj", "pwtools.crys.grid_in_cell", "pwtools.crys.kgrid", "pwtools.crys.mean", "pwtools.crys.min_image_convention", "pwtools.crys.mix", "pwtools.crys.nearest_neighbors", "pwtools.crys.nearest_neighbors_from_dists", "pwtools.crys.nearest_neighbors_struct", "pwtools.crys.pbc_wrap", "pwtools.crys.pbc_wrap_coords", "pwtools.crys.pi", "pwtools.crys.populated_attrs", "pwtools.crys.recip_cell", "pwtools.crys.rmax_smith", "pwtools.crys.rmsd", "pwtools.crys.rpdf", "pwtools.crys.scell", "pwtools.crys.scell3d", "pwtools.crys.scell_mask", "pwtools.crys.smooth", "pwtools.crys.struct2atoms", "pwtools.crys.struct2traj", "pwtools.crys.tensor2voigt", "pwtools.crys.tensor2voigt3d", "pwtools.crys.velocity_traj", "pwtools.crys.vmd_measure_gofr", "pwtools.crys.voigt2tensor", "pwtools.crys.voigt2tensor3d", "pwtools.crys.volume_cc", "pwtools.crys.volume_cc3d", "pwtools.crys.volume_cell", "pwtools.crys.volume_cell3d", "pwtools.dcd.HEADER_DTYPE", "pwtools.dcd.HEADER_TYPES", "pwtools.dcd.read_dcd_data", "pwtools.dcd.read_dcd_data_f", "pwtools.dcd.read_dcd_data_ref", "pwtools.dcd.read_dcd_header", "pwtools.decorators.crys_add_doc", "pwtools.decorators.lazyprop", "pwtools.decorators.open_and_close", "pwtools.eos.Ang", "pwtools.eos.Bohr", "pwtools.eos.EVFunction", "pwtools.eos.EVFunction.dct2lst", "pwtools.eos.EVFunction.deriv", "pwtools.eos.EVFunction.evaluate", "pwtools.eos.EVFunction.get_min", "pwtools.eos.EVFunction.lst2dct", "pwtools.eos.ElkEOSFit", "pwtools.eos.ElkEOSFit.assert_attr", "pwtools.eos.ElkEOSFit.assert_attr_lst", "pwtools.eos.ElkEOSFit.assert_set_attr", "pwtools.eos.ElkEOSFit.assert_set_attr_lst", "pwtools.eos.ElkEOSFit.calc_bv", "pwtools.eos.ElkEOSFit.check_set_attr", "pwtools.eos.ElkEOSFit.check_set_attr_lst", "pwtools.eos.ElkEOSFit.dump", "pwtools.eos.ElkEOSFit.fit", "pwtools.eos.ElkEOSFit.get_min", "pwtools.eos.ElkEOSFit.get_return_attr", "pwtools.eos.ElkEOSFit.get_spl_bv", "pwtools.eos.ElkEOSFit.get_spl_ev", "pwtools.eos.ElkEOSFit.get_spl_pv", "pwtools.eos.ElkEOSFit.init_attr_lst", "pwtools.eos.ElkEOSFit.is_set_attr", "pwtools.eos.ElkEOSFit.is_set_attr_lst", "pwtools.eos.ElkEOSFit.load", "pwtools.eos.ElkEOSFit.raw_return", "pwtools.eos.ElkEOSFit.raw_slice_get", "pwtools.eos.ElkEOSFit.set_all", "pwtools.eos.ElkEOSFit.set_attr_lst", "pwtools.eos.ElkEOSFit.set_bv_method", "pwtools.eos.ElkEOSFit.try_set_attr", "pwtools.eos.ElkEOSFit.try_set_attr_lst", "pwtools.eos.EosFit", "pwtools.eos.EosFit.bulkmod", "pwtools.eos.EosFit.fit", "pwtools.eos.EosFit.get_max", "pwtools.eos.EosFit.get_min", "pwtools.eos.EosFit.get_root", "pwtools.eos.EosFit.is_mono", "pwtools.eos.EosFit.pressure", "pwtools.eos.EosFit.spl", "pwtools.eos.ExternEOS", "pwtools.eos.ExternEOS.assert_attr", "pwtools.eos.ExternEOS.assert_attr_lst", "pwtools.eos.ExternEOS.assert_set_attr", "pwtools.eos.ExternEOS.assert_set_attr_lst", "pwtools.eos.ExternEOS.calc_bv", "pwtools.eos.ExternEOS.check_set_attr", "pwtools.eos.ExternEOS.check_set_attr_lst", "pwtools.eos.ExternEOS.dump", "pwtools.eos.ExternEOS.fit", "pwtools.eos.ExternEOS.get_min", "pwtools.eos.ExternEOS.get_return_attr", "pwtools.eos.ExternEOS.get_spl_bv", "pwtools.eos.ExternEOS.get_spl_ev", "pwtools.eos.ExternEOS.get_spl_pv", "pwtools.eos.ExternEOS.init_attr_lst", "pwtools.eos.ExternEOS.is_set_attr", "pwtools.eos.ExternEOS.is_set_attr_lst", "pwtools.eos.ExternEOS.load", "pwtools.eos.ExternEOS.raw_return", "pwtools.eos.ExternEOS.raw_slice_get", "pwtools.eos.ExternEOS.set_all", "pwtools.eos.ExternEOS.set_attr_lst", "pwtools.eos.ExternEOS.set_bv_method", "pwtools.eos.ExternEOS.try_set_attr", "pwtools.eos.ExternEOS.try_set_attr_lst", "pwtools.eos.Ha", "pwtools.eos.MaxDerivException", "pwtools.eos.Ry", "pwtools.eos.Vinet", "pwtools.eos.Vinet.dct2lst", "pwtools.eos.Vinet.deriv", "pwtools.eos.Vinet.evaluate", "pwtools.eos.Vinet.get_min", "pwtools.eos.Vinet.lst2dct", "pwtools.eos._vinet", "pwtools.eos._vinet_deriv1", "pwtools.eos._vinet_deriv2", "pwtools.eos.eV", "pwtools.eos.eV_by_Ang3_to_GPa", "pwtools.io.Ha", "pwtools.io.ReadFactory", "pwtools.io.eV", "pwtools.io.load_h5", "pwtools.io.read_cif", "pwtools.io.read_cp2k_md", "pwtools.io.read_cp2k_md_dcd", "pwtools.io.read_cp2k_relax", "pwtools.io.read_cp2k_scf", "pwtools.io.read_cpmd_md", "pwtools.io.read_cpmd_scf", "pwtools.io.read_h5", "pwtools.io.read_lammps_md_dcd", "pwtools.io.read_lammps_md_txt", "pwtools.io.read_pdb", "pwtools.io.read_pickle", "pwtools.io.read_pw_md", "pwtools.io.read_pw_scf", "pwtools.io.read_pw_vcmd", "pwtools.io.wien_sgroup_input", "pwtools.io.write_axsf", "pwtools.io.write_cif", "pwtools.io.write_h5", "pwtools.io.write_lammps", "pwtools.io.write_wien_sgroup", "pwtools.io.write_xyz", "pwtools.kpath.SpecialPointsPath", "pwtools.kpath.get_path_norm", "pwtools.kpath.kpath", "pwtools.kpath.plot_dis", "pwtools.lammps.struct_str", "pwtools.mpl.Data2D", "pwtools.mpl.Data2D.copy", "pwtools.mpl.Data2D.update", "pwtools.mpl.Data3D", "pwtools.mpl.Data3D.copy", "pwtools.mpl.Data3D.update", "pwtools.mpl.Plot", "pwtools.mpl.Plot.collect_legends", "pwtools.mpl.Plot.legend", "pwtools.mpl.Plot.savefig", "pwtools.mpl.cc", "pwtools.mpl.ccl", "pwtools.mpl.ccm", "pwtools.mpl.clc", "pwtools.mpl.clean_ax3d", "pwtools.mpl.cm", "pwtools.mpl.cmc", "pwtools.mpl.collect_legends", "pwtools.mpl.color_ax", "pwtools.mpl.colors", "pwtools.mpl.colors_linestyles", "pwtools.mpl.colors_markers", "pwtools.mpl.cycle_colors", "pwtools.mpl.cycle_colors_linestyles", "pwtools.mpl.cycle_colors_markers", "pwtools.mpl.cycle_linestyles_colors", "pwtools.mpl.cycle_markers", "pwtools.mpl.cycle_markers_colors", "pwtools.mpl.fig_ax", "pwtools.mpl.fig_ax3d", "pwtools.mpl.get_2d_testdata", "pwtools.mpl.ic", "pwtools.mpl.icl", "pwtools.mpl.icm", "pwtools.mpl.ilc", "pwtools.mpl.im", "pwtools.mpl.imc", "pwtools.mpl.iter_colors", "pwtools.mpl.iter_colors_linestyles", "pwtools.mpl.iter_colors_markers", "pwtools.mpl.iter_linestyles", "pwtools.mpl.iter_linestyles_colors", "pwtools.mpl.iter_markers", "pwtools.mpl.iter_markers_colors", "pwtools.mpl.linestyles", "pwtools.mpl.linestyles_colors", "pwtools.mpl.make_axes_grid_fig", "pwtools.mpl.markers", "pwtools.mpl.markers_colors", "pwtools.mpl.meshgridt", "pwtools.mpl.new_axis", "pwtools.mpl.plotlines3d", "pwtools.mpl.prepare_plots", "pwtools.mpl.smooth_color", "pwtools.mpl.smooth_color_func", "pwtools.mttk.a0", "pwtools.mttk.add_doc", "pwtools.mttk.barostat_mass_w", "pwtools.mttk.barostat_mass_wg", "pwtools.mttk.barostat_nhc_masses", "pwtools.mttk.kb", "pwtools.mttk.m0", "pwtools.mttk.particle_nhc_masses", "pwtools.num.DataND", "pwtools.num.DataND.a2_to_an", "pwtools.num.EPS", "pwtools.num.Fit1D", "pwtools.num.Fit1D.get_max", "pwtools.num.Fit1D.get_min", "pwtools.num.Fit1D.get_root", "pwtools.num.Fit1D.is_mono", "pwtools.num.Interpol2D", "pwtools.num.Interpol2D.get_min", "pwtools.num.PolyFit", "pwtools.num.PolyFit.get_min", "pwtools.num.PolyFit1D", "pwtools.num.PolyFit1D.get_max", "pwtools.num.PolyFit1D.get_min", "pwtools.num.PolyFit1D.get_root", "pwtools.num.PolyFit1D.is_mono", "pwtools.num.Spline", "pwtools.num.Spline.get_max", "pwtools.num.Spline.get_min", "pwtools.num.Spline.get_root", "pwtools.num.Spline.invsplev", "pwtools.num.Spline.is_mono", "pwtools.num.Spline.splev", "pwtools.num.deriv_spl", "pwtools.num.distsq", "pwtools.num.euler_matrix", "pwtools.num.extend_array", "pwtools.num.fempty", "pwtools.num.findmin", "pwtools.num.findroot", "pwtools.num.inner_points_mask", "pwtools.num.match_mask", "pwtools.num.meshgridt", "pwtools.num.norm", "pwtools.num.norm_int", "pwtools.num.normalize", "pwtools.num.order_similar", "pwtools.num.pi", "pwtools.num.poly_powers", "pwtools.num.poly_str", "pwtools.num.polyfit", "pwtools.num.polyval", "pwtools.num.rms", "pwtools.num.rms3d", "pwtools.num.round_up_next_multiple", "pwtools.num.sliceput", "pwtools.num.slicetake", "pwtools.num.sum", "pwtools.num.vander", "pwtools.num.vlinspace", "pwtools.parse.AWK", "pwtools.parse.Ang", "pwtools.parse.Angstrom", "pwtools.parse.Bohr", "pwtools.parse.CifFile", "pwtools.parse.CifFile.apply_units", "pwtools.parse.CifFile.assert_attr", "pwtools.parse.CifFile.assert_attr_lst", "pwtools.parse.CifFile.assert_set_attr", "pwtools.parse.CifFile.assert_set_attr_lst", "pwtools.parse.CifFile.check_set_attr", "pwtools.parse.CifFile.check_set_attr_lst", "pwtools.parse.CifFile.cif_clear_atom_symbol", "pwtools.parse.CifFile.cif_str2float", "pwtools.parse.CifFile.default_units", "pwtools.parse.CifFile.dump", "pwtools.parse.CifFile.get_cont", "pwtools.parse.CifFile.get_coords", "pwtools.parse.CifFile.get_coords_frac", "pwtools.parse.CifFile.get_cryst_const", "pwtools.parse.CifFile.get_return_attr", "pwtools.parse.CifFile.get_struct", "pwtools.parse.CifFile.get_symbols", "pwtools.parse.CifFile.init_attr_lst", "pwtools.parse.CifFile.is_set_attr", "pwtools.parse.CifFile.is_set_attr_lst", "pwtools.parse.CifFile.load", "pwtools.parse.CifFile.parse", "pwtools.parse.CifFile.raw_return", "pwtools.parse.CifFile.raw_slice_get", "pwtools.parse.CifFile.set_all", "pwtools.parse.CifFile.set_attr_lst", "pwtools.parse.CifFile.try_set_attr", "pwtools.parse.CifFile.try_set_attr_lst", "pwtools.parse.CifFile.update_units", "pwtools.parse.Cp2kDcdMDOutputFile", "pwtools.parse.Cp2kDcdMDOutputFile.apply_units", "pwtools.parse.Cp2kDcdMDOutputFile.assert_attr", "pwtools.parse.Cp2kDcdMDOutputFile.assert_attr_lst", "pwtools.parse.Cp2kDcdMDOutputFile.assert_set_attr", "pwtools.parse.Cp2kDcdMDOutputFile.assert_set_attr_lst", "pwtools.parse.Cp2kDcdMDOutputFile.check_set_attr", "pwtools.parse.Cp2kDcdMDOutputFile.check_set_attr_lst", "pwtools.parse.Cp2kDcdMDOutputFile.default_units", "pwtools.parse.Cp2kDcdMDOutputFile.dump", "pwtools.parse.Cp2kDcdMDOutputFile.get_cell", "pwtools.parse.Cp2kDcdMDOutputFile.get_cont", "pwtools.parse.Cp2kDcdMDOutputFile.get_coords", "pwtools.parse.Cp2kDcdMDOutputFile.get_cryst_const", "pwtools.parse.Cp2kDcdMDOutputFile.get_econst", "pwtools.parse.Cp2kDcdMDOutputFile.get_ekin", "pwtools.parse.Cp2kDcdMDOutputFile.get_etot", "pwtools.parse.Cp2kDcdMDOutputFile.get_forces", "pwtools.parse.Cp2kDcdMDOutputFile.get_natoms", "pwtools.parse.Cp2kDcdMDOutputFile.get_nstep", "pwtools.parse.Cp2kDcdMDOutputFile.get_return_attr", "pwtools.parse.Cp2kDcdMDOutputFile.get_stress", "pwtools.parse.Cp2kDcdMDOutputFile.get_struct", "pwtools.parse.Cp2kDcdMDOutputFile.get_symbols", "pwtools.parse.Cp2kDcdMDOutputFile.get_temperature", "pwtools.parse.Cp2kDcdMDOutputFile.get_timestep", "pwtools.parse.Cp2kDcdMDOutputFile.get_traj", "pwtools.parse.Cp2kDcdMDOutputFile.get_velocity", "pwtools.parse.Cp2kDcdMDOutputFile.get_volume", "pwtools.parse.Cp2kDcdMDOutputFile.init_attr_lst", "pwtools.parse.Cp2kDcdMDOutputFile.is_set_attr", "pwtools.parse.Cp2kDcdMDOutputFile.is_set_attr_lst", "pwtools.parse.Cp2kDcdMDOutputFile.load", "pwtools.parse.Cp2kDcdMDOutputFile.parse", "pwtools.parse.Cp2kDcdMDOutputFile.raw_return", "pwtools.parse.Cp2kDcdMDOutputFile.raw_slice_get", "pwtools.parse.Cp2kDcdMDOutputFile.set_all", "pwtools.parse.Cp2kDcdMDOutputFile.set_attr_lst", "pwtools.parse.Cp2kDcdMDOutputFile.timeaxis", "pwtools.parse.Cp2kDcdMDOutputFile.try_set_attr", "pwtools.parse.Cp2kDcdMDOutputFile.try_set_attr_lst", "pwtools.parse.Cp2kDcdMDOutputFile.update_units", "pwtools.parse.Cp2kMDOutputFile", "pwtools.parse.Cp2kMDOutputFile.apply_units", "pwtools.parse.Cp2kMDOutputFile.assert_attr", "pwtools.parse.Cp2kMDOutputFile.assert_attr_lst", "pwtools.parse.Cp2kMDOutputFile.assert_set_attr", "pwtools.parse.Cp2kMDOutputFile.assert_set_attr_lst", "pwtools.parse.Cp2kMDOutputFile.check_set_attr", "pwtools.parse.Cp2kMDOutputFile.check_set_attr_lst", "pwtools.parse.Cp2kMDOutputFile.default_units", "pwtools.parse.Cp2kMDOutputFile.dump", "pwtools.parse.Cp2kMDOutputFile.get_cell", "pwtools.parse.Cp2kMDOutputFile.get_cont", "pwtools.parse.Cp2kMDOutputFile.get_coords", "pwtools.parse.Cp2kMDOutputFile.get_econst", "pwtools.parse.Cp2kMDOutputFile.get_ekin", "pwtools.parse.Cp2kMDOutputFile.get_etot", "pwtools.parse.Cp2kMDOutputFile.get_forces", "pwtools.parse.Cp2kMDOutputFile.get_natoms", "pwtools.parse.Cp2kMDOutputFile.get_return_attr", "pwtools.parse.Cp2kMDOutputFile.get_stress", "pwtools.parse.Cp2kMDOutputFile.get_struct", "pwtools.parse.Cp2kMDOutputFile.get_symbols", "pwtools.parse.Cp2kMDOutputFile.get_temperature", "pwtools.parse.Cp2kMDOutputFile.get_timestep", "pwtools.parse.Cp2kMDOutputFile.get_traj", "pwtools.parse.Cp2kMDOutputFile.get_velocity", "pwtools.parse.Cp2kMDOutputFile.get_volume", "pwtools.parse.Cp2kMDOutputFile.init_attr_lst", "pwtools.parse.Cp2kMDOutputFile.is_set_attr", "pwtools.parse.Cp2kMDOutputFile.is_set_attr_lst", "pwtools.parse.Cp2kMDOutputFile.load", "pwtools.parse.Cp2kMDOutputFile.parse", "pwtools.parse.Cp2kMDOutputFile.raw_return", "pwtools.parse.Cp2kMDOutputFile.raw_slice_get", "pwtools.parse.Cp2kMDOutputFile.set_all", "pwtools.parse.Cp2kMDOutputFile.set_attr_lst", "pwtools.parse.Cp2kMDOutputFile.timeaxis", "pwtools.parse.Cp2kMDOutputFile.try_set_attr", "pwtools.parse.Cp2kMDOutputFile.try_set_attr_lst", "pwtools.parse.Cp2kMDOutputFile.update_units", "pwtools.parse.Cp2kRelaxOutputFile", "pwtools.parse.Cp2kRelaxOutputFile.apply_units", "pwtools.parse.Cp2kRelaxOutputFile.assert_attr", "pwtools.parse.Cp2kRelaxOutputFile.assert_attr_lst", "pwtools.parse.Cp2kRelaxOutputFile.assert_set_attr", "pwtools.parse.Cp2kRelaxOutputFile.assert_set_attr_lst", "pwtools.parse.Cp2kRelaxOutputFile.check_set_attr", "pwtools.parse.Cp2kRelaxOutputFile.check_set_attr_lst", "pwtools.parse.Cp2kRelaxOutputFile.default_units", "pwtools.parse.Cp2kRelaxOutputFile.dump", "pwtools.parse.Cp2kRelaxOutputFile.get_cell", "pwtools.parse.Cp2kRelaxOutputFile.get_cont", "pwtools.parse.Cp2kRelaxOutputFile.get_coords", "pwtools.parse.Cp2kRelaxOutputFile.get_econst", "pwtools.parse.Cp2kRelaxOutputFile.get_ekin", "pwtools.parse.Cp2kRelaxOutputFile.get_etot", "pwtools.parse.Cp2kRelaxOutputFile.get_forces", "pwtools.parse.Cp2kRelaxOutputFile.get_natoms", "pwtools.parse.Cp2kRelaxOutputFile.get_return_attr", "pwtools.parse.Cp2kRelaxOutputFile.get_stress", "pwtools.parse.Cp2kRelaxOutputFile.get_struct", "pwtools.parse.Cp2kRelaxOutputFile.get_symbols", "pwtools.parse.Cp2kRelaxOutputFile.get_temperature", "pwtools.parse.Cp2kRelaxOutputFile.get_timestep", "pwtools.parse.Cp2kRelaxOutputFile.get_traj", "pwtools.parse.Cp2kRelaxOutputFile.get_velocity", "pwtools.parse.Cp2kRelaxOutputFile.get_volume", "pwtools.parse.Cp2kRelaxOutputFile.init_attr_lst", "pwtools.parse.Cp2kRelaxOutputFile.is_set_attr", "pwtools.parse.Cp2kRelaxOutputFile.is_set_attr_lst", "pwtools.parse.Cp2kRelaxOutputFile.load", "pwtools.parse.Cp2kRelaxOutputFile.parse", "pwtools.parse.Cp2kRelaxOutputFile.raw_return", "pwtools.parse.Cp2kRelaxOutputFile.raw_slice_get", "pwtools.parse.Cp2kRelaxOutputFile.set_all", "pwtools.parse.Cp2kRelaxOutputFile.set_attr_lst", "pwtools.parse.Cp2kRelaxOutputFile.timeaxis", "pwtools.parse.Cp2kRelaxOutputFile.try_set_attr", "pwtools.parse.Cp2kRelaxOutputFile.try_set_attr_lst", "pwtools.parse.Cp2kRelaxOutputFile.update_units", "pwtools.parse.Cp2kSCFOutputFile", "pwtools.parse.Cp2kSCFOutputFile.apply_units", "pwtools.parse.Cp2kSCFOutputFile.assert_attr", "pwtools.parse.Cp2kSCFOutputFile.assert_attr_lst", "pwtools.parse.Cp2kSCFOutputFile.assert_set_attr", "pwtools.parse.Cp2kSCFOutputFile.assert_set_attr_lst", "pwtools.parse.Cp2kSCFOutputFile.check_set_attr", "pwtools.parse.Cp2kSCFOutputFile.check_set_attr_lst", "pwtools.parse.Cp2kSCFOutputFile.default_units", "pwtools.parse.Cp2kSCFOutputFile.dump", "pwtools.parse.Cp2kSCFOutputFile.get_cont", "pwtools.parse.Cp2kSCFOutputFile.get_etot", "pwtools.parse.Cp2kSCFOutputFile.get_forces", "pwtools.parse.Cp2kSCFOutputFile.get_natoms", "pwtools.parse.Cp2kSCFOutputFile.get_return_attr", "pwtools.parse.Cp2kSCFOutputFile.get_stress", "pwtools.parse.Cp2kSCFOutputFile.get_struct", "pwtools.parse.Cp2kSCFOutputFile.get_symbols", "pwtools.parse.Cp2kSCFOutputFile.init_attr_lst", "pwtools.parse.Cp2kSCFOutputFile.is_set_attr", "pwtools.parse.Cp2kSCFOutputFile.is_set_attr_lst", "pwtools.parse.Cp2kSCFOutputFile.load", "pwtools.parse.Cp2kSCFOutputFile.parse", "pwtools.parse.Cp2kSCFOutputFile.raw_return", "pwtools.parse.Cp2kSCFOutputFile.raw_slice_get", "pwtools.parse.Cp2kSCFOutputFile.set_all", "pwtools.parse.Cp2kSCFOutputFile.set_attr_lst", "pwtools.parse.Cp2kSCFOutputFile.try_set_attr", "pwtools.parse.Cp2kSCFOutputFile.try_set_attr_lst", "pwtools.parse.Cp2kSCFOutputFile.update_units", "pwtools.parse.CpmdMDOutputFile", "pwtools.parse.CpmdMDOutputFile.apply_units", "pwtools.parse.CpmdMDOutputFile.assert_attr", "pwtools.parse.CpmdMDOutputFile.assert_attr_lst", "pwtools.parse.CpmdMDOutputFile.assert_set_attr", "pwtools.parse.CpmdMDOutputFile.assert_set_attr_lst", "pwtools.parse.CpmdMDOutputFile.check_set_attr", "pwtools.parse.CpmdMDOutputFile.check_set_attr_lst", "pwtools.parse.CpmdMDOutputFile.default_units", "pwtools.parse.CpmdMDOutputFile.dump", "pwtools.parse.CpmdMDOutputFile.get_cell", "pwtools.parse.CpmdMDOutputFile.get_cont", "pwtools.parse.CpmdMDOutputFile.get_coords", "pwtools.parse.CpmdMDOutputFile.get_coords_frac", "pwtools.parse.CpmdMDOutputFile.get_econst", "pwtools.parse.CpmdMDOutputFile.get_ekin", "pwtools.parse.CpmdMDOutputFile.get_ekin_cell", "pwtools.parse.CpmdMDOutputFile.get_ekin_elec", "pwtools.parse.CpmdMDOutputFile.get_ekinc", "pwtools.parse.CpmdMDOutputFile.get_ekinh", "pwtools.parse.CpmdMDOutputFile.get_etot", "pwtools.parse.CpmdMDOutputFile.get_forces", "pwtools.parse.CpmdMDOutputFile.get_natoms", "pwtools.parse.CpmdMDOutputFile.get_nkpoints", "pwtools.parse.CpmdMDOutputFile.get_nstep_scf", "pwtools.parse.CpmdMDOutputFile.get_return_attr", "pwtools.parse.CpmdMDOutputFile.get_scf_converged", "pwtools.parse.CpmdMDOutputFile.get_stress", "pwtools.parse.CpmdMDOutputFile.get_struct", "pwtools.parse.CpmdMDOutputFile.get_symbols", "pwtools.parse.CpmdMDOutputFile.get_temperature", "pwtools.parse.CpmdMDOutputFile.get_temperature_cell", "pwtools.parse.CpmdMDOutputFile.get_timestep", "pwtools.parse.CpmdMDOutputFile.get_traj", "pwtools.parse.CpmdMDOutputFile.get_velocity", "pwtools.parse.CpmdMDOutputFile.init_attr_lst", "pwtools.parse.CpmdMDOutputFile.is_set_attr", "pwtools.parse.CpmdMDOutputFile.is_set_attr_lst", "pwtools.parse.CpmdMDOutputFile.load", "pwtools.parse.CpmdMDOutputFile.parse", "pwtools.parse.CpmdMDOutputFile.raw_return", "pwtools.parse.CpmdMDOutputFile.raw_slice_get", "pwtools.parse.CpmdMDOutputFile.set_all", "pwtools.parse.CpmdMDOutputFile.set_attr_lst", "pwtools.parse.CpmdMDOutputFile.timeaxis", "pwtools.parse.CpmdMDOutputFile.try_set_attr", "pwtools.parse.CpmdMDOutputFile.try_set_attr_lst", "pwtools.parse.CpmdMDOutputFile.update_units", "pwtools.parse.CpmdSCFOutputFile", "pwtools.parse.CpmdSCFOutputFile.apply_units", "pwtools.parse.CpmdSCFOutputFile.assert_attr", "pwtools.parse.CpmdSCFOutputFile.assert_attr_lst", "pwtools.parse.CpmdSCFOutputFile.assert_set_attr", "pwtools.parse.CpmdSCFOutputFile.assert_set_attr_lst", "pwtools.parse.CpmdSCFOutputFile.check_set_attr", "pwtools.parse.CpmdSCFOutputFile.check_set_attr_lst", "pwtools.parse.CpmdSCFOutputFile.default_units", "pwtools.parse.CpmdSCFOutputFile.dump", "pwtools.parse.CpmdSCFOutputFile.get_cell", "pwtools.parse.CpmdSCFOutputFile.get_cont", "pwtools.parse.CpmdSCFOutputFile.get_coords_frac", "pwtools.parse.CpmdSCFOutputFile.get_etot", "pwtools.parse.CpmdSCFOutputFile.get_forces", "pwtools.parse.CpmdSCFOutputFile.get_natoms", "pwtools.parse.CpmdSCFOutputFile.get_nkpoints", "pwtools.parse.CpmdSCFOutputFile.get_nstep_scf", "pwtools.parse.CpmdSCFOutputFile.get_return_attr", "pwtools.parse.CpmdSCFOutputFile.get_scf_converged", "pwtools.parse.CpmdSCFOutputFile.get_stress", "pwtools.parse.CpmdSCFOutputFile.get_struct", "pwtools.parse.CpmdSCFOutputFile.get_symbols", "pwtools.parse.CpmdSCFOutputFile.init_attr_lst", "pwtools.parse.CpmdSCFOutputFile.is_set_attr", "pwtools.parse.CpmdSCFOutputFile.is_set_attr_lst", "pwtools.parse.CpmdSCFOutputFile.load", "pwtools.parse.CpmdSCFOutputFile.parse", "pwtools.parse.CpmdSCFOutputFile.raw_return", "pwtools.parse.CpmdSCFOutputFile.raw_slice_get", "pwtools.parse.CpmdSCFOutputFile.set_all", "pwtools.parse.CpmdSCFOutputFile.set_attr_lst", "pwtools.parse.CpmdSCFOutputFile.try_set_attr", "pwtools.parse.CpmdSCFOutputFile.try_set_attr_lst", "pwtools.parse.CpmdSCFOutputFile.update_units", "pwtools.parse.DcdOutputFile", "pwtools.parse.DcdOutputFile.get_cell", "pwtools.parse.DcdOutputFile.get_coords", "pwtools.parse.DcdOutputFile.get_cryst_const", "pwtools.parse.DcdOutputFile.get_natoms", "pwtools.parse.DcdOutputFile.get_nstep", "pwtools.parse.DcdOutputFile.get_volume", "pwtools.parse.Ha", "pwtools.parse.LammpsDcdMDOutputFile", "pwtools.parse.LammpsDcdMDOutputFile.apply_units", "pwtools.parse.LammpsDcdMDOutputFile.assert_attr", "pwtools.parse.LammpsDcdMDOutputFile.assert_attr_lst", "pwtools.parse.LammpsDcdMDOutputFile.assert_set_attr", "pwtools.parse.LammpsDcdMDOutputFile.assert_set_attr_lst", "pwtools.parse.LammpsDcdMDOutputFile.check_set_attr", "pwtools.parse.LammpsDcdMDOutputFile.check_set_attr_lst", "pwtools.parse.LammpsDcdMDOutputFile.default_units", "pwtools.parse.LammpsDcdMDOutputFile.dump", "pwtools.parse.LammpsDcdMDOutputFile.get_cell", "pwtools.parse.LammpsDcdMDOutputFile.get_cont", "pwtools.parse.LammpsDcdMDOutputFile.get_coords", "pwtools.parse.LammpsDcdMDOutputFile.get_coords_frac", "pwtools.parse.LammpsDcdMDOutputFile.get_cryst_const", "pwtools.parse.LammpsDcdMDOutputFile.get_ekin", "pwtools.parse.LammpsDcdMDOutputFile.get_etot", "pwtools.parse.LammpsDcdMDOutputFile.get_forces", "pwtools.parse.LammpsDcdMDOutputFile.get_natoms", "pwtools.parse.LammpsDcdMDOutputFile.get_nstep", "pwtools.parse.LammpsDcdMDOutputFile.get_return_attr", "pwtools.parse.LammpsDcdMDOutputFile.get_stress", "pwtools.parse.LammpsDcdMDOutputFile.get_struct", "pwtools.parse.LammpsDcdMDOutputFile.get_symbols", "pwtools.parse.LammpsDcdMDOutputFile.get_temperature", "pwtools.parse.LammpsDcdMDOutputFile.get_timestep", "pwtools.parse.LammpsDcdMDOutputFile.get_traj", "pwtools.parse.LammpsDcdMDOutputFile.get_velocity", "pwtools.parse.LammpsDcdMDOutputFile.get_volume", "pwtools.parse.LammpsDcdMDOutputFile.init_attr_lst", "pwtools.parse.LammpsDcdMDOutputFile.is_set_attr", "pwtools.parse.LammpsDcdMDOutputFile.is_set_attr_lst", "pwtools.parse.LammpsDcdMDOutputFile.load", "pwtools.parse.LammpsDcdMDOutputFile.parse", "pwtools.parse.LammpsDcdMDOutputFile.raw_return", "pwtools.parse.LammpsDcdMDOutputFile.raw_slice_get", "pwtools.parse.LammpsDcdMDOutputFile.set_all", "pwtools.parse.LammpsDcdMDOutputFile.set_attr_lst", "pwtools.parse.LammpsDcdMDOutputFile.timeaxis", "pwtools.parse.LammpsDcdMDOutputFile.try_set_attr", "pwtools.parse.LammpsDcdMDOutputFile.try_set_attr_lst", "pwtools.parse.LammpsDcdMDOutputFile.update_units", "pwtools.parse.LammpsTextMDOutputFile", "pwtools.parse.LammpsTextMDOutputFile.apply_units", "pwtools.parse.LammpsTextMDOutputFile.assert_attr", "pwtools.parse.LammpsTextMDOutputFile.assert_attr_lst", "pwtools.parse.LammpsTextMDOutputFile.assert_set_attr", "pwtools.parse.LammpsTextMDOutputFile.assert_set_attr_lst", "pwtools.parse.LammpsTextMDOutputFile.check_set_attr", "pwtools.parse.LammpsTextMDOutputFile.check_set_attr_lst", "pwtools.parse.LammpsTextMDOutputFile.default_units", "pwtools.parse.LammpsTextMDOutputFile.dump", "pwtools.parse.LammpsTextMDOutputFile.get_cell", "pwtools.parse.LammpsTextMDOutputFile.get_cont", "pwtools.parse.LammpsTextMDOutputFile.get_coords", "pwtools.parse.LammpsTextMDOutputFile.get_coords_frac", "pwtools.parse.LammpsTextMDOutputFile.get_cryst_const", "pwtools.parse.LammpsTextMDOutputFile.get_ekin", "pwtools.parse.LammpsTextMDOutputFile.get_etot", "pwtools.parse.LammpsTextMDOutputFile.get_forces", "pwtools.parse.LammpsTextMDOutputFile.get_natoms", "pwtools.parse.LammpsTextMDOutputFile.get_return_attr", "pwtools.parse.LammpsTextMDOutputFile.get_stress", "pwtools.parse.LammpsTextMDOutputFile.get_struct", "pwtools.parse.LammpsTextMDOutputFile.get_symbols", "pwtools.parse.LammpsTextMDOutputFile.get_temperature", "pwtools.parse.LammpsTextMDOutputFile.get_timestep", "pwtools.parse.LammpsTextMDOutputFile.get_traj", "pwtools.parse.LammpsTextMDOutputFile.get_velocity", "pwtools.parse.LammpsTextMDOutputFile.get_volume", "pwtools.parse.LammpsTextMDOutputFile.init_attr_lst", "pwtools.parse.LammpsTextMDOutputFile.is_set_attr", "pwtools.parse.LammpsTextMDOutputFile.is_set_attr_lst", "pwtools.parse.LammpsTextMDOutputFile.load", "pwtools.parse.LammpsTextMDOutputFile.parse", "pwtools.parse.LammpsTextMDOutputFile.raw_return", "pwtools.parse.LammpsTextMDOutputFile.raw_slice_get", "pwtools.parse.LammpsTextMDOutputFile.set_all", "pwtools.parse.LammpsTextMDOutputFile.set_attr_lst", "pwtools.parse.LammpsTextMDOutputFile.timeaxis", "pwtools.parse.LammpsTextMDOutputFile.try_set_attr", "pwtools.parse.LammpsTextMDOutputFile.try_set_attr_lst", "pwtools.parse.LammpsTextMDOutputFile.update_units", "pwtools.parse.PDBFile", "pwtools.parse.PDBFile.apply_units", "pwtools.parse.PDBFile.assert_attr", "pwtools.parse.PDBFile.assert_attr_lst", "pwtools.parse.PDBFile.assert_set_attr", "pwtools.parse.PDBFile.assert_set_attr_lst", "pwtools.parse.PDBFile.check_set_attr", "pwtools.parse.PDBFile.check_set_attr_lst", "pwtools.parse.PDBFile.default_units", "pwtools.parse.PDBFile.dump", "pwtools.parse.PDBFile.get_cont", "pwtools.parse.PDBFile.get_coords", "pwtools.parse.PDBFile.get_cryst_const", "pwtools.parse.PDBFile.get_return_attr", "pwtools.parse.PDBFile.get_struct", "pwtools.parse.PDBFile.get_symbols", "pwtools.parse.PDBFile.init_attr_lst", "pwtools.parse.PDBFile.is_set_attr", "pwtools.parse.PDBFile.is_set_attr_lst", "pwtools.parse.PDBFile.load", "pwtools.parse.PDBFile.parse", "pwtools.parse.PDBFile.raw_return", "pwtools.parse.PDBFile.raw_slice_get", "pwtools.parse.PDBFile.set_all", "pwtools.parse.PDBFile.set_attr_lst", "pwtools.parse.PDBFile.try_set_attr", "pwtools.parse.PDBFile.try_set_attr_lst", "pwtools.parse.PDBFile.update_units", "pwtools.parse.PwMDOutputFile", "pwtools.parse.PwMDOutputFile.apply_units", "pwtools.parse.PwMDOutputFile.assert_attr", "pwtools.parse.PwMDOutputFile.assert_attr_lst", "pwtools.parse.PwMDOutputFile.assert_set_attr", "pwtools.parse.PwMDOutputFile.assert_set_attr_lst", "pwtools.parse.PwMDOutputFile.check_set_attr", "pwtools.parse.PwMDOutputFile.check_set_attr_lst", "pwtools.parse.PwMDOutputFile.default_units", "pwtools.parse.PwMDOutputFile.dump", "pwtools.parse.PwMDOutputFile.get_alat", "pwtools.parse.PwMDOutputFile.get_cell", "pwtools.parse.PwMDOutputFile.get_cell_unit", "pwtools.parse.PwMDOutputFile.get_cont", "pwtools.parse.PwMDOutputFile.get_coords", "pwtools.parse.PwMDOutputFile.get_coords_frac", "pwtools.parse.PwMDOutputFile.get_coords_unit", "pwtools.parse.PwMDOutputFile.get_ekin", "pwtools.parse.PwMDOutputFile.get_etot", "pwtools.parse.PwMDOutputFile.get_forces", "pwtools.parse.PwMDOutputFile.get_natoms", "pwtools.parse.PwMDOutputFile.get_nkpoints", "pwtools.parse.PwMDOutputFile.get_nstep_scf", "pwtools.parse.PwMDOutputFile.get_return_attr", "pwtools.parse.PwMDOutputFile.get_scf_converged", "pwtools.parse.PwMDOutputFile.get_stress", "pwtools.parse.PwMDOutputFile.get_struct", "pwtools.parse.PwMDOutputFile.get_symbols", "pwtools.parse.PwMDOutputFile.get_temperature", "pwtools.parse.PwMDOutputFile.get_timestep", "pwtools.parse.PwMDOutputFile.get_traj", "pwtools.parse.PwMDOutputFile.init_attr_lst", "pwtools.parse.PwMDOutputFile.is_set_attr", "pwtools.parse.PwMDOutputFile.is_set_attr_lst", "pwtools.parse.PwMDOutputFile.load", "pwtools.parse.PwMDOutputFile.parse", "pwtools.parse.PwMDOutputFile.raw_return", "pwtools.parse.PwMDOutputFile.raw_slice_get", "pwtools.parse.PwMDOutputFile.set_all", "pwtools.parse.PwMDOutputFile.set_attr_lst", "pwtools.parse.PwMDOutputFile.timeaxis", "pwtools.parse.PwMDOutputFile.try_set_attr", "pwtools.parse.PwMDOutputFile.try_set_attr_lst", "pwtools.parse.PwMDOutputFile.update_units", "pwtools.parse.PwSCFOutputFile", "pwtools.parse.PwSCFOutputFile.apply_units", "pwtools.parse.PwSCFOutputFile.assert_attr", "pwtools.parse.PwSCFOutputFile.assert_attr_lst", "pwtools.parse.PwSCFOutputFile.assert_set_attr", "pwtools.parse.PwSCFOutputFile.assert_set_attr_lst", "pwtools.parse.PwSCFOutputFile.check_set_attr", "pwtools.parse.PwSCFOutputFile.check_set_attr_lst", "pwtools.parse.PwSCFOutputFile.default_units", "pwtools.parse.PwSCFOutputFile.dump", "pwtools.parse.PwSCFOutputFile.get_alat", "pwtools.parse.PwSCFOutputFile.get_cell", "pwtools.parse.PwSCFOutputFile.get_cont", "pwtools.parse.PwSCFOutputFile.get_coords", "pwtools.parse.PwSCFOutputFile.get_etot", "pwtools.parse.PwSCFOutputFile.get_forces", "pwtools.parse.PwSCFOutputFile.get_natoms", "pwtools.parse.PwSCFOutputFile.get_nkpoints", "pwtools.parse.PwSCFOutputFile.get_nstep_scf", "pwtools.parse.PwSCFOutputFile.get_return_attr", "pwtools.parse.PwSCFOutputFile.get_scf_converged", "pwtools.parse.PwSCFOutputFile.get_stress", "pwtools.parse.PwSCFOutputFile.get_struct", "pwtools.parse.PwSCFOutputFile.get_symbols", "pwtools.parse.PwSCFOutputFile.init_attr_lst", "pwtools.parse.PwSCFOutputFile.is_set_attr", "pwtools.parse.PwSCFOutputFile.is_set_attr_lst", "pwtools.parse.PwSCFOutputFile.load", "pwtools.parse.PwSCFOutputFile.parse", "pwtools.parse.PwSCFOutputFile.raw_return", "pwtools.parse.PwSCFOutputFile.raw_slice_get", "pwtools.parse.PwSCFOutputFile.set_all", "pwtools.parse.PwSCFOutputFile.set_attr_lst", "pwtools.parse.PwSCFOutputFile.try_set_attr", "pwtools.parse.PwSCFOutputFile.try_set_attr_lst", "pwtools.parse.PwSCFOutputFile.update_units", "pwtools.parse.PwVCMDOutputFile", "pwtools.parse.PwVCMDOutputFile.apply_units", "pwtools.parse.PwVCMDOutputFile.assert_attr", "pwtools.parse.PwVCMDOutputFile.assert_attr_lst", "pwtools.parse.PwVCMDOutputFile.assert_set_attr", "pwtools.parse.PwVCMDOutputFile.assert_set_attr_lst", "pwtools.parse.PwVCMDOutputFile.check_set_attr", "pwtools.parse.PwVCMDOutputFile.check_set_attr_lst", "pwtools.parse.PwVCMDOutputFile.default_units", "pwtools.parse.PwVCMDOutputFile.dump", "pwtools.parse.PwVCMDOutputFile.get_alat", "pwtools.parse.PwVCMDOutputFile.get_cell", "pwtools.parse.PwVCMDOutputFile.get_cell_unit", "pwtools.parse.PwVCMDOutputFile.get_cont", "pwtools.parse.PwVCMDOutputFile.get_coords", "pwtools.parse.PwVCMDOutputFile.get_coords_frac", "pwtools.parse.PwVCMDOutputFile.get_coords_unit", "pwtools.parse.PwVCMDOutputFile.get_econst", "pwtools.parse.PwVCMDOutputFile.get_ekin", "pwtools.parse.PwVCMDOutputFile.get_etot", "pwtools.parse.PwVCMDOutputFile.get_forces", "pwtools.parse.PwVCMDOutputFile.get_natoms", "pwtools.parse.PwVCMDOutputFile.get_nkpoints", "pwtools.parse.PwVCMDOutputFile.get_nstep_scf", "pwtools.parse.PwVCMDOutputFile.get_return_attr", "pwtools.parse.PwVCMDOutputFile.get_scf_converged", "pwtools.parse.PwVCMDOutputFile.get_stress", "pwtools.parse.PwVCMDOutputFile.get_struct", "pwtools.parse.PwVCMDOutputFile.get_symbols", "pwtools.parse.PwVCMDOutputFile.get_temperature", "pwtools.parse.PwVCMDOutputFile.get_timestep", "pwtools.parse.PwVCMDOutputFile.get_traj", "pwtools.parse.PwVCMDOutputFile.init_attr_lst", "pwtools.parse.PwVCMDOutputFile.is_set_attr", "pwtools.parse.PwVCMDOutputFile.is_set_attr_lst", "pwtools.parse.PwVCMDOutputFile.load", "pwtools.parse.PwVCMDOutputFile.parse", "pwtools.parse.PwVCMDOutputFile.raw_return", "pwtools.parse.PwVCMDOutputFile.raw_slice_get", "pwtools.parse.PwVCMDOutputFile.set_all", "pwtools.parse.PwVCMDOutputFile.set_attr_lst", "pwtools.parse.PwVCMDOutputFile.timeaxis", "pwtools.parse.PwVCMDOutputFile.try_set_attr", "pwtools.parse.PwVCMDOutputFile.try_set_attr_lst", "pwtools.parse.PwVCMDOutputFile.update_units", "pwtools.parse.Ry", "pwtools.parse.StructureFileParser", "pwtools.parse.StructureFileParser.apply_units", "pwtools.parse.StructureFileParser.assert_attr", "pwtools.parse.StructureFileParser.assert_attr_lst", "pwtools.parse.StructureFileParser.assert_set_attr", "pwtools.parse.StructureFileParser.assert_set_attr_lst", "pwtools.parse.StructureFileParser.check_set_attr", "pwtools.parse.StructureFileParser.check_set_attr_lst", "pwtools.parse.StructureFileParser.default_units", "pwtools.parse.StructureFileParser.dump", "pwtools.parse.StructureFileParser.get_cont", "pwtools.parse.StructureFileParser.get_return_attr", "pwtools.parse.StructureFileParser.get_struct", "pwtools.parse.StructureFileParser.init_attr_lst", "pwtools.parse.StructureFileParser.is_set_attr", "pwtools.parse.StructureFileParser.is_set_attr_lst", "pwtools.parse.StructureFileParser.load", "pwtools.parse.StructureFileParser.parse", "pwtools.parse.StructureFileParser.raw_return", "pwtools.parse.StructureFileParser.raw_slice_get", "pwtools.parse.StructureFileParser.set_all", "pwtools.parse.StructureFileParser.set_attr_lst", "pwtools.parse.StructureFileParser.try_set_attr", "pwtools.parse.StructureFileParser.try_set_attr_lst", "pwtools.parse.StructureFileParser.update_units", "pwtools.parse.TrajectoryFileParser", "pwtools.parse.TrajectoryFileParser.apply_units", "pwtools.parse.TrajectoryFileParser.assert_attr", "pwtools.parse.TrajectoryFileParser.assert_attr_lst", "pwtools.parse.TrajectoryFileParser.assert_set_attr", "pwtools.parse.TrajectoryFileParser.assert_set_attr_lst", "pwtools.parse.TrajectoryFileParser.check_set_attr", "pwtools.parse.TrajectoryFileParser.check_set_attr_lst", "pwtools.parse.TrajectoryFileParser.default_units", "pwtools.parse.TrajectoryFileParser.dump", "pwtools.parse.TrajectoryFileParser.get_cont", "pwtools.parse.TrajectoryFileParser.get_return_attr", "pwtools.parse.TrajectoryFileParser.get_struct", "pwtools.parse.TrajectoryFileParser.get_traj", "pwtools.parse.TrajectoryFileParser.init_attr_lst", "pwtools.parse.TrajectoryFileParser.is_set_attr", "pwtools.parse.TrajectoryFileParser.is_set_attr_lst", "pwtools.parse.TrajectoryFileParser.load", "pwtools.parse.TrajectoryFileParser.parse", "pwtools.parse.TrajectoryFileParser.raw_return", "pwtools.parse.TrajectoryFileParser.raw_slice_get", "pwtools.parse.TrajectoryFileParser.set_all", "pwtools.parse.TrajectoryFileParser.set_attr_lst", "pwtools.parse.TrajectoryFileParser.timeaxis", "pwtools.parse.TrajectoryFileParser.try_set_attr", "pwtools.parse.TrajectoryFileParser.try_set_attr_lst", "pwtools.parse.TrajectoryFileParser.update_units", "pwtools.parse.arr1d_from_txt", "pwtools.parse.arr2d_from_txt", "pwtools.parse.axis_lens", "pwtools.parse.eV", "pwtools.parse.float_from_txt", "pwtools.parse.fs", "pwtools.parse.int_from_txt", "pwtools.parse.nstep_from_txt", "pwtools.parse.pi", "pwtools.parse.ps", "pwtools.parse.thart", "pwtools.parse.traj_from_txt", "pwtools.pwscf.EPS", "pwtools.pwscf.atpos_str", "pwtools.pwscf.atpos_str_fast", "pwtools.pwscf.atspec_str", "pwtools.pwscf.bool2str", "pwtools.pwscf.ibrav2cell", "pwtools.pwscf.kpoints_str", "pwtools.pwscf.kpoints_str_pwin", "pwtools.pwscf.kpoints_str_pwin_full", "pwtools.pwscf.kpointstr", "pwtools.pwscf.kpointstr_pwin", "pwtools.pwscf.kpointstr_pwin2", "pwtools.pwscf.read_all_dyn", "pwtools.pwscf.read_dyn", "pwtools.pwscf.read_dynmat", "pwtools.pwscf.read_dynmat_ir_raman", "pwtools.pwscf.read_dynmat_out", "pwtools.pwscf.read_matdyn_freq", "pwtools.pwscf.read_matdyn_modes", "pwtools.pydos.direct_pdos", "pwtools.pydos.fvacf", "pwtools.pydos.pdos", "pwtools.pydos.pyvacf", "pwtools.pydos.vacf_pdos", "pwtools.random.RandomStructure", "pwtools.random.RandomStructure.get_random_cryst_const", "pwtools.random.RandomStructure.get_random_struct", "pwtools.random.RandomStructureFail", "pwtools.random.pi", "pwtools.random.random_struct", "pwtools.rbf.core.JAX_MODE", "pwtools.rbf.core.Rbf", "pwtools.rbf.core.Rbf.deriv", "pwtools.rbf.core.Rbf.deriv_jax", "pwtools.rbf.core.Rbf.fit", "pwtools.rbf.core.Rbf.fit_error", "pwtools.rbf.core.Rbf.get_distsq", "pwtools.rbf.core.Rbf.get_params", "pwtools.rbf.core.Rbf.predict", "pwtools.rbf.core._np_distsq", "pwtools.rbf.core.estimate_p", "pwtools.rbf.core.euclidean_dists", "pwtools.rbf.core.jit", "pwtools.rbf.core.rbf_dct", "pwtools.rbf.core.rbf_gauss", "pwtools.rbf.core.rbf_inv_multi", "pwtools.rbf.core.rbf_multi", "pwtools.rbf.core.squared_dists", "pwtools.rbf.hyperopt.FitError", "pwtools.rbf.hyperopt.FitError.cv", "pwtools.rbf.hyperopt.FitError.err_cv", "pwtools.rbf.hyperopt.FitError.err_direct", "pwtools.rbf.hyperopt.RepeatedKFold", "pwtools.rbf.hyperopt.fit_opt", "pwtools.regex.float_re", "pwtools.signal.FIRFilter", "pwtools.signal.acorr", "pwtools.signal.cauchy", "pwtools.signal.dft", "pwtools.signal.ezfft", "pwtools.signal.fft_1d_loop", "pwtools.signal.fftsample", "pwtools.signal.find_peaks", "pwtools.signal.gauss", "pwtools.signal.lorentz", "pwtools.signal.mirror", "pwtools.signal.odd", "pwtools.signal.pad_zeros", "pwtools.signal.scale", "pwtools.signal.smooth", "pwtools.signal.welch", "pwtools.sql.SQLEntry", "pwtools.sql.SQLiteDB", "pwtools.sql.SQLiteDB.add_column", "pwtools.sql.SQLiteDB.add_columns", "pwtools.sql.SQLiteDB.attach_column", "pwtools.sql.SQLiteDB.commit", "pwtools.sql.SQLiteDB.create_table", "pwtools.sql.SQLiteDB.execute", "pwtools.sql.SQLiteDB.executemany", "pwtools.sql.SQLiteDB.executescript", "pwtools.sql.SQLiteDB.fill_column", "pwtools.sql.SQLiteDB.finish", "pwtools.sql.SQLiteDB.get_array", "pwtools.sql.SQLiteDB.get_array1d", "pwtools.sql.SQLiteDB.get_dict", "pwtools.sql.SQLiteDB.get_header", "pwtools.sql.SQLiteDB.get_list1d", "pwtools.sql.SQLiteDB.get_max_rowid", "pwtools.sql.SQLiteDB.get_single", "pwtools.sql.SQLiteDB.get_table", "pwtools.sql.SQLiteDB.has_column", "pwtools.sql.SQLiteDB.has_table", "pwtools.sql.SQLiteDB.set_table", "pwtools.sql.find_sqltype", "pwtools.sql.fix_sql_header", "pwtools.sql.fix_sqltype", "pwtools.sql.get_test_db", "pwtools.sql.makedb", "pwtools.sql.sql_column", "pwtools.sql.sql_column_old", "pwtools.sql.sql_matrix", "pwtools.symmetry.is_same_struct", "pwtools.symmetry.spglib2struct", "pwtools.symmetry.spglib_get_primitive", "pwtools.symmetry.spglib_get_spacegroup", "pwtools.symmetry.struct2spglib", "pwtools.thermo.Gibbs", "pwtools.thermo.Gibbs.calc_F", "pwtools.thermo.Gibbs.calc_G", "pwtools.thermo.Gibbs.calc_H", "pwtools.thermo.Gibbs.set_fitfunc", "pwtools.thermo.HarmonicThermo", "pwtools.thermo.HarmonicThermo.cv", "pwtools.thermo.HarmonicThermo.evib", "pwtools.thermo.HarmonicThermo.fvib", "pwtools.thermo.HarmonicThermo.isochoric_heat_capacity", "pwtools.thermo.HarmonicThermo.svib", "pwtools.thermo.HarmonicThermo.vibrational_entropy", "pwtools.thermo.HarmonicThermo.vibrational_free_energy", "pwtools.thermo.HarmonicThermo.vibrational_internal_energy", "pwtools.thermo.R", "pwtools.thermo.Ry_to_J", "pwtools.thermo.c0", "pwtools.thermo.coth", "pwtools.thermo.debye_func", "pwtools.thermo.eV", "pwtools.thermo.eV_by_Ang3_to_GPa", "pwtools.thermo.einstein_func", "pwtools.thermo.expansion", "pwtools.thermo.hplanck", "pwtools.thermo.kb", "pwtools.thermo.pi", "pwtools.timer.TagTimer", "pwtools.timer.TagTimer.p", "pwtools.timer.TagTimer.pt", "pwtools.timer.TagTimer.t", "pwtools.verbose.VERBOSE", "pwtools.verbose.verbose", "pwtools.visualize.ViewFactory", "pwtools.visualize.assert_struct", "pwtools.visualize.avogadro_cmd", "pwtools.visualize.view_avogadro", "pwtools.visualize.view_jmol", "pwtools.visualize.view_vmd_axsf", "pwtools.visualize.view_vmd_xyz", "pwtools.visualize.view_xcrysden", "Welcome to the pwtools documentation", "Relation to ASE", "Coordinate transformation", "Background, details, special topics", "Parameter studies", "Parsing code output and using containers", "Velocity autocorrelation function and phonon DOS", "Pwscf", "Radial Basis Function interpolation an regression", "How to do a restart in cp2k", "Phonon dispersion calculation and plotting", "Features", "<no title>", "Installation", "Quasi-harmonic approximation", "<no title>", "Tutorial"], "titleterms": {"1d": 1431, "2d": 1431, "ASE": [1418, 1433], "The": 3, "__getitem__": 326, "_ase_miss": 120, "_dcd": [0, 36, 37, 38, 39, 40], "_ensure_list": 124, "_flib": [1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52], "_np_distsq": 1309, "_read_header_config": 56, "_tran": 403, "_vinet": 541, "_vinet_deriv1": 542, "_vinet_deriv2": 543, "_write_header_config": 57, "a0": [185, 632], "a0_to_a": 186, "a2_to_an": 641, "acorr": [41, 1326], "add_column": [1343, 1344], "add_doc": 633, "add_to_config": 128, "align_cart": 404, "alpha": 187, "amu": 188, "an": 1425, "analysi": 1426, "ang": [165, 463, 692], "angl": [42, 405, 406], "angstrom": [166, 210, 693], "api": 35, "apply_unit": [212, 270, 327, 383, 696, 727, 769, 809, 849, 879, 927, 970, 1012, 1053, 1081, 1125, 1161, 1207, 1232], "approxim": [1431, 1433], "arr1d_from_txt": 1258, "arr2d_from_txt": 1259, "arr2d_to_3d": 58, "arrayio": [2, 53, 54, 55, 56, 57, 58, 59, 60], "asseq": 129, "assert_attr": [68, 213, 271, 328, 384, 472, 507, 697, 728, 770, 810, 850, 880, 928, 971, 1013, 1054, 1082, 1126, 1162, 1208, 1233], "assert_attr_lst": [69, 214, 272, 329, 385, 473, 508, 698, 729, 771, 811, 851, 881, 929, 972, 1014, 1055, 1083, 1127, 1163, 1209, 1234], "assert_cond": 130, "assert_set_attr": [70, 215, 273, 330, 386, 474, 509, 699, 730, 772, 812, 852, 882, 930, 973, 1015, 1056, 1084, 1128, 1164, 1210, 1235], "assert_set_attr_lst": [71, 216, 274, 331, 387, 475, 510, 700, 731, 773, 813, 853, 883, 931, 974, 1016, 1057, 1085, 1129, 1165, 1211, 1236], "assert_struct": 1410, "atom": [10, 1424], "atomic_data": [3, 61, 62, 63, 64, 65, 66], "atoms2struct": 407, "atpos_str": 1271, "atpos_str_fast": 1272, "atspec_str": 1273, "attach_column": 1345, "auto": 1433, "autocorrel": 1423, "avail": 1422, "avo": 189, "avogadro_cmd": 1411, "avoid": 1433, "awk": 691, "axis_len": 1260, "background": 1420, "backtick": 131, "backup": 132, "barostat_mass_w": 634, "barostat_mass_wg": 635, "barostat_nhc_mass": 636, "base": [4, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85], "basi": 1425, "batch": [5, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99], "big": 1433, "binari": 1433, "bohr": [167, 464, 694], "bohr_to_ang": 168, "bool2str": 1274, "bulkmod": 498, "c0": [190, 1393], "calc_bv": [476, 511], "calc_f": 1378, "calc_g": 1379, "calc_h": 1380, "calcul": [6, 86, 87, 88, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 1423, 1427, 1433], "calculatorbas": [100, 101, 102], "call_vmd_measure_gofr": 408, "cart2frac": 43, "cart2frac_traj": 44, "cartesian": 1419, "case": [89, 1419], "cauchi": 1327, "cc": 587, "cc2cell": 409, "cc2cell3d": 410, "cc2celldm": 411, "ccl": 588, "ccm": 589, "cell": 1433, "cell2cc": 412, "cell2cc3d": 413, "celldm2cc": 414, "center_on_atom": 415, "check_set_attr": [72, 217, 275, 332, 388, 477, 512, 701, 732, 774, 814, 854, 884, 932, 975, 1017, 1058, 1086, 1130, 1166, 1212, 1237], "check_set_attr_lst": [73, 218, 276, 333, 389, 478, 513, 702, 733, 775, 815, 855, 885, 933, 976, 1018, 1059, 1087, 1131, 1167, 1213, 1238], "cif_clear_atom_symbol": 703, "cif_str2float": 704, "ciffil": [695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725], "class": [21, 1422], "clc": 590, "clean_ax3d": 591, "cm": 592, "cmc": 593, "code": 1422, "collect_legend": [584, 594], "color": 596, "color_ax": 595, "colors_linestyl": 597, "colors_mark": 598, "column": 1419, "comb": [7, 124, 125, 126], "comment": 1426, "commit": 1346, "common": [8, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162], "compil": 1430, "compress": [219, 277, 334, 416], "concaten": 417, "config": [9, 163, 164], "constant": [10, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209], "contain": 1422, "conv_tabl": 98, "convers": 10, "coord_tran": 418, "coord_trans3d": 419, "coordin": [1419, 1424], "copi": [220, 278, 335, 578, 581], "core": [25, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317], "correl": 1423, "coth": 1394, "covalent_radii": 61, "cp2k": 1426, "cp2kdcdmdoutputfil": [726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767], "cp2kmdoutputfil": [768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807], "cp2krelaxoutputfil": [808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847], "cp2kscfoutputfil": [848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877], "cpickle_load": 133, "cpmdmdoutputfil": [878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925], "cpmdscfoutputfil": [926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960], "create_t": 1347, "cry": [11, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453], "crys_add_doc": 460, "cv": [1319, 1383], "cycle_color": 599, "cycle_colors_linestyl": 600, "cycle_colors_mark": 601, "cycle_linestyles_color": 602, "cycle_mark": 603, "cycle_markers_color": 604, "data": [1423, 1425, 1433], "data2d": [577, 578, 579], "data3d": [580, 581, 582], "databas": 1433, "datand": [640, 641], "dcd": [12, 454, 455, 456, 457, 458, 459], "dcdoutputfil": [961, 962, 963, 964, 965, 966, 967], "dct2lst": [466, 536], "debye_func": 1395, "decor": [13, 460, 461, 462], "default_paramet": [105, 113], "default_repl_kei": 99, "default_unit": [705, 734, 776, 816, 856, 886, 934, 977, 1019, 1060, 1088, 1132, 1168, 1214, 1239], "depend": 1430, "deriv": [467, 537, 1302], "deriv_jax": 1303, "deriv_spl": 664, "detail": [1420, 1430], "determin": 1425, "dft": 1328, "dict2class": 134, "dict2str": 135, "differ": 21, "direct_pdo": 1289, "dispers": 1427, "distanc": 420, "distances_traj": [45, 421], "distsq": [46, 665], "distsq_frac": 47, "do": [1423, 1426], "document": 1417, "dump": [74, 221, 279, 336, 390, 479, 514, 706, 735, 777, 817, 857, 887, 935, 978, 1020, 1061, 1089, 1133, 1169, 1215, 1240], "dyn": 191, "e0": 192, "eh": 169, "einstein_func": 1398, "elkeosfit": [471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496], "eo": [14, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545], "eosfit": [497, 498, 499, 500, 501, 502, 503, 504, 505], "ep": [127, 642, 1270], "eps0": 196, "err_cv": 1320, "err_direct": 1321, "eryd": 170, "estimate_p": 1310, "euclidean_dist": 1311, "euler_matrix": 666, "ev": [193, 544, 548, 1261, 1396], "ev_by_ang3_to_gpa": [194, 545, 1397], "ev_by_ang3_to_pa": 195, "evalu": [468, 538], "evfunct": [465, 466, 467, 468, 469, 470], "evib": 1384, "execut": 1348, "executemani": 1349, "executescript": 1350, "expans": 1399, "extend_arrai": 667, "extens": 1430, "externeo": [506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531], "ezfft": 1329, "f": [197, 1263], "f2py": 1430, "fake": 1431, "fakeaseatom": [211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268], "featur": 1428, "fempti": 668, "ffloat": 136, "fft_1d_loop": 1330, "fftsampl": 1331, "fig_ax": 605, "fig_ax3d": 606, "file": 21, "file_read": 137, "file_readlin": 138, "file_template_replac": 139, "file_writ": 140, "fileiocalcul": 103, "filetempl": [90, 91, 92], "fill_column": 1351, "fill_infile_templ": [101, 106, 114], "find": 1433, "find_ex": 121, "find_peak": 1332, "find_sqltyp": 1364, "findmin": 669, "findroot": 670, "finish": 1352, "firfilt": 1325, "fit": [480, 499, 515, 1304, 1433], "fit1d": [643, 644, 645, 646, 647], "fit_error": 1305, "fit_opt": 1323, "fiterror": [1318, 1319, 1320, 1321], "fix_ep": 141, "fix_sql_head": 1365, "fix_sqltyp": 1366, "flatten": 142, "flexiblegett": [67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85], "float_from_txt": 1262, "float_r": 1324, "forc": 1424, "form": 1419, "format": 21, "fortran": 1430, "fpj": 143, "frac2cart": 48, "frac2cart_traj": 49, "fraction": 1419, "frepr": 144, "from": 1423, "fullpath": 145, "fullpathjoin": 146, "function": [1422, 1423, 1425], "fvacf": 1290, "fvib": 1385, "gauss": 1333, "get_2d_testdata": 607, "get_alat": [1090, 1134, 1170], "get_arrai": 1353, "get_array1d": 1354, "get_ase_atom": [222, 280, 337], "get_atomic_numb": 223, "get_cel": [224, 281, 338, 736, 778, 818, 888, 936, 962, 979, 1021, 1091, 1135, 1171], "get_cell_unit": [1092, 1172], "get_cont": [707, 737, 779, 819, 858, 889, 937, 980, 1022, 1062, 1093, 1136, 1173, 1216, 1241], "get_coord": [225, 282, 339, 708, 738, 780, 820, 890, 963, 981, 1023, 1063, 1094, 1137, 1174], "get_coords_frac": [226, 283, 340, 709, 891, 938, 982, 1024, 1095, 1175], "get_coords_unit": [1096, 1176], "get_cryst_const": [227, 284, 341, 710, 739, 964, 983, 1025, 1064], "get_dcd_file_info": 36, "get_dict": 1355, "get_distsq": 1306, "get_econst": [740, 781, 821, 892, 1177], "get_ekin": [228, 285, 342, 741, 782, 822, 893, 984, 1026, 1097, 1178], "get_ekin_cel": 894, "get_ekin_elec": 895, "get_ekinc": 896, "get_ekinh": 897, "get_etot": [229, 286, 343, 742, 783, 823, 859, 898, 939, 985, 1027, 1098, 1138, 1179], "get_fake_ase_atom": [230, 287, 344], "get_filenam": 147, "get_forc": [231, 288, 345, 743, 784, 824, 860, 899, 940, 986, 1028, 1099, 1139, 1180], "get_head": 1356, "get_jobfile_basenam": 94, "get_list1d": 1357, "get_magnetic_mo": 232, "get_mass": [233, 289, 346], "get_mass_uniqu": [234, 290, 347], "get_max": [500, 644, 653, 658], "get_max_rowid": 1358, "get_min": [469, 481, 501, 516, 539, 645, 649, 651, 654, 659], "get_natom": [235, 291, 348, 744, 785, 825, 861, 900, 941, 965, 987, 1029, 1100, 1140, 1181], "get_nkpoint": [901, 942, 1101, 1141, 1182], "get_nspeci": [236, 292, 349], "get_nstep": [237, 293, 350, 745, 966, 988], "get_nstep_scf": [902, 943, 1102, 1142, 1183], "get_ntypat": [238, 294, 351], "get_ord": [239, 295, 352], "get_param": 1307, "get_path_norm": 573, "get_pressur": [240, 296, 353], "get_random_cryst_const": 1295, "get_random_struct": 1296, "get_return_attr": [75, 241, 297, 354, 391, 482, 517, 711, 746, 786, 826, 862, 903, 944, 989, 1030, 1065, 1103, 1143, 1184, 1217, 1242], "get_root": [502, 646, 655, 660], "get_scf_converg": [904, 945, 1104, 1144, 1185], "get_singl": 1359, "get_spglib": [242, 298, 355], "get_spl_bv": [483, 518], "get_spl_ev": [484, 519], "get_spl_pv": [485, 520], "get_sql_record": [87, 95], "get_stress": [243, 299, 356, 747, 787, 827, 863, 905, 946, 990, 1031, 1105, 1145, 1186], "get_struct": [712, 748, 788, 828, 864, 906, 947, 991, 1032, 1066, 1106, 1146, 1187, 1218, 1243], "get_symbol": [244, 300, 357, 713, 749, 789, 829, 865, 907, 948, 992, 1033, 1067, 1107, 1147, 1188], "get_symbols_uniqu": [245, 301, 358], "get_tabl": 1360, "get_temperatur": [246, 302, 359, 750, 790, 830, 908, 993, 1034, 1108, 1189], "get_temperature_cel": 909, "get_test_db": 1367, "get_tim": [247, 303, 360], "get_timestep": [248, 304, 361, 751, 791, 831, 910, 994, 1035, 1109, 1190], "get_traj": [249, 305, 362, 752, 792, 832, 911, 995, 1036, 1110, 1191, 1244], "get_typat": [250, 306, 363], "get_veloc": [251, 307, 364, 753, 793, 833, 912, 996, 1037], "get_volum": [252, 308, 365, 754, 794, 834, 967, 997, 1038], "get_znucl": [253, 309, 366], "get_znucl_uniqu": [254, 310, 367], "gibb": [1377, 1378, 1379, 1380, 1381], "given": 1433, "gpa": 171, "grid": 1433, "grid_in_cel": 422, "h": 198, "ha": [172, 532, 546, 968], "ha_to_ev": 173, "harmon": [1431, 1433], "harmonicthermo": [1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, 1390], "hartre": [10, 174], "has_column": 1361, "has_tabl": 1362, "hbar": 199, "header_com": 53, "header_dtyp": 454, "header_maxlin": 54, "header_typ": 455, "high": 1422, "how": [1425, 1426], "hplanck": [200, 1400], "hyperopt": [26, 1318, 1319, 1320, 1321, 1322, 1323], "ibrav2cel": 1275, "ic": 608, "icl": 609, "icm": 610, "iflatten": 148, "ilc": 611, "im": 612, "imc": 613, "implement": [1419, 1425], "implemented_properti": [107, 115], "infile_templ": [108, 116], "init_attr_lst": [76, 255, 311, 368, 392, 486, 521, 714, 755, 795, 835, 866, 913, 949, 998, 1039, 1068, 1111, 1148, 1192, 1219, 1245], "init_params_from_input": [102, 109, 117], "inner_points_mask": 671, "input": 21, "instal": 1430, "instruct": 1430, "int_from_txt": 1264, "interfac": 34, "interpol": [1425, 1433], "interpol2d": [648, 649], "invsplev": 661, "io": [15, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 1433], "is_mono": [503, 647, 656, 662], "is_same_struct": 1372, "is_seq": 149, "is_set_attr": [77, 256, 312, 369, 393, 487, 522, 715, 756, 796, 836, 867, 914, 950, 999, 1040, 1069, 1112, 1149, 1193, 1220, 1246], "is_set_attr_lst": [78, 257, 313, 370, 394, 488, 523, 716, 757, 797, 837, 868, 915, 951, 1000, 1041, 1070, 1113, 1150, 1194, 1221, 1247], "is_struct": [258, 314, 371], "is_traj": [259, 315, 372], "isochoric_heat_capac": 1386, "iter_color": 614, "iter_colors_linestyl": 615, "iter_colors_mark": 616, "iter_linestyl": 617, "iter_linestyles_color": 618, "iter_mark": 619, "iter_markers_color": 620, "j_to_ev": 175, "j_to_rcm": 176, "jax_mod": 1300, "jit": 1312, "k": [1431, 1433], "kb": [201, 637, 1401], "kgrid": 423, "kpath": [16, 572, 573, 574, 575], "kpoints_str": 1276, "kpoints_str_pwin": 1277, "kpoints_str_pwin_ful": 1278, "kpointstr": 1279, "kpointstr_pwin": 1280, "kpointstr_pwin2": 1281, "kpts2mp": 122, "lammp": [17, 104, 105, 106, 107, 108, 109, 110, 111, 576], "lammpsdcdmdoutputfil": [969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010], "lammpstextmdoutputfil": [1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051], "lazyprop": 461, "legend": 585, "level": 1422, "linestyl": 621, "linestyles_color": 622, "load": [79, 260, 316, 373, 395, 489, 524, 717, 758, 798, 838, 869, 916, 952, 1001, 1042, 1071, 1114, 1151, 1195, 1222, 1248], "load_h5": 549, "lorentz": 1334, "lst2dct": [470, 540], "m0": [202, 638], "machin": [93, 94, 95], "make_axes_grid_fig": 623, "makedb": 1368, "makedir": 150, "marker": 624, "markers_color": 625, "mass": [10, 62], "match_mask": 672, "maxderivexcept": 533, "md": [1423, 1433], "mean": 424, "meshgridt": [626, 673], "min_image_convent": 425, "mirror": 1335, "miss": 63, "mix": 426, "molecular": 34, "monkhorst": 1433, "more": 1433, "mpl": [18, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631], "mttk": [19, 632, 633, 634, 635, 636, 637, 638, 639], "mu0": 203, "name": 163, "nearest_neighbor": 427, "nearest_neighbors_from_dist": 428, "nearest_neighbors_struct": 429, "nested_loop": 125, "new_axi": 627, "norm": 674, "norm_int": 675, "normal": 676, "notat": 1419, "note": [1419, 1430], "nstep_from_txt": 1265, "num": [20, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690], "number": 64, "numer": 1425, "odd": 1336, "open_and_clos": 462, "open_fil": 37, "openmp": 1430, "option": 1430, "order_similar": 677, "other": [1425, 1431], "output": [21, 1422, 1433], "p": [205, 1267, 1404, 1425], "pack": 1433, "pad": 1423, "pad_zero": 1337, "paramet": [1421, 1425], "parameterstudi": [96, 97], "pars": [21, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218, 1219, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 1229, 1230, 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239, 1240, 1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257, 1258, 1259, 1260, 1261, 1262, 1263, 1264, 1265, 1266, 1267, 1268, 1269, 1422, 1433], "parser": [21, 1422], "particle_nhc_mass": 639, "pbc_wrap": 430, "pbc_wrap_coord": 431, "pdbfile": [1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079], "pdo": 1291, "period": 3, "permit_sigpip": 151, "phonon": [1423, 1427], "pi": [204, 432, 678, 1266, 1298, 1402], "plot": [583, 584, 585, 586, 1427], "plot_di": 575, "plotlines3d": 628, "poly_pow": 679, "poly_str": 680, "polyfit": [650, 651, 681], "polyfit1d": [652, 653, 654, 655, 656], "polyv": 682, "pop_from_list": 152, "populated_attr": 433, "power": 1423, "predict": 1308, "prepare_plot": 629, "pressur": 504, "print_dct": 153, "pt": [65, 1405], "pwmdoutputfil": [1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123], "pwscf": [22, 112, 113, 114, 115, 116, 117, 118, 119, 1270, 1271, 1272, 1273, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1282, 1283, 1284, 1285, 1286, 1287, 1288, 1424], "pwscfoutputfil": [1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159], "pwtool": [36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218, 1219, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 1229, 1230, 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239, 1240, 1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257, 1258, 1259, 1260, 1261, 1262, 1263, 1264, 1265, 1266, 1267, 1268, 1269, 1270, 1271, 1272, 1273, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1282, 1283, 1284, 1285, 1286, 1287, 1288, 1289, 1290, 1291, 1292, 1293, 1294, 1295, 1296, 1297, 1298, 1299, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1338, 1339, 1340, 1341, 1342, 1343, 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1364, 1365, 1366, 1367, 1368, 1369, 1370, 1371, 1372, 1373, 1374, 1375, 1376, 1377, 1378, 1379, 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, 1390, 1391, 1392, 1393, 1394, 1395, 1396, 1397, 1398, 1399, 1400, 1401, 1402, 1403, 1404, 1405, 1406, 1407, 1408, 1409, 1410, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1426], "pwvcmdoutputfil": [1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1203, 1204], "pydo": [23, 1289, 1290, 1291, 1292, 1293], "python": 1430, "pyvacf": 1292, "qha": 1431, "quasi": [1431, 1433], "quick": 1430, "r": [177, 1391, 1425], "radial": 1425, "random": [24, 1294, 1295, 1296, 1297, 1298, 1299], "random_struct": 1299, "randomstructur": [1294, 1295, 1296], "randomstructurefail": 1297, "raw_return": [80, 261, 317, 374, 396, 490, 525, 719, 760, 800, 840, 871, 918, 954, 1003, 1044, 1073, 1116, 1153, 1197, 1224, 1250], "raw_slice_get": [81, 262, 318, 375, 397, 491, 526, 720, 761, 801, 841, 872, 919, 955, 1004, 1045, 1074, 1117, 1154, 1198, 1225, 1251], "rbf": [25, 26, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1425], "rbf_dct": 1313, "rbf_gauss": 1314, "rbf_inv_multi": 1315, "rbf_multi": 1316, "rcm_to_hz": 206, "read_all_dyn": 1282, "read_cif": 550, "read_cp2k_md": 551, "read_cp2k_md_dcd": 552, "read_cp2k_relax": 553, "read_cp2k_scf": 554, "read_cpmd_md": 555, "read_cpmd_scf": 556, "read_dcd_data": [38, 456], "read_dcd_data_f": 457, "read_dcd_data_from_unit": 39, "read_dcd_data_ref": 458, "read_dcd_head": 459, "read_dcd_header_from_unit": 40, "read_dyn": 1283, "read_dynmat": 1284, "read_dynmat_ir_raman": 1285, "read_dynmat_out": 1286, "read_h5": 557, "read_lammps_md_dcd": 558, "read_lammps_md_txt": 559, "read_matdyn_freq": 1287, "read_matdyn_mod": 1288, "read_pdb": 560, "read_pickl": 561, "read_pw_md": 562, "read_pw_scf": 563, "read_pw_vcmd": 564, "read_result": [110, 118], "readfactori": 547, "readtxt": 59, "recip_cel": 434, "refer": 35, "regex": [27, 1324], "regress": 1425, "regular": 1425, "relat": 1418, "relax": 1433, "repeatedkfold": 1322, "restart": 1426, "rm": 683, "rmax_smith": 435, "rms3d": 684, "rmsd": 436, "round_up_next_multipl": 685, "row": 1419, "rpdf": 437, "run": [1426, 1430], "ry": [178, 534, 1205], "ry_to_ev": 182, "ry_to_ha": 179, "ry_to_hz": 180, "ry_to_j": [181, 1392], "ry_to_rcm": 183, "rydberg": [10, 184], "sampl": 1433, "savefig": 586, "scale": [1338, 1425], "scell": 438, "scell3d": 439, "scell_mask": 440, "scf": 1433, "seq2str": 154, "set_al": [82, 263, 319, 376, 398, 492, 527, 721, 762, 802, 842, 873, 920, 956, 1005, 1046, 1075, 1118, 1155, 1199, 1226, 1252], "set_attr_lst": [83, 264, 320, 377, 399, 493, 528, 722, 763, 803, 843, 874, 921, 957, 1006, 1047, 1076, 1119, 1156, 1200, 1227, 1253], "set_bv_method": [494, 529], "set_fitfunc": 1381, "set_tabl": 1363, "signal": [28, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1338, 1339, 1340, 1433], "sliceput": 686, "slicetak": 687, "smooth": [441, 1339, 1423, 1433], "smooth_color": 630, "smooth_color_func": 631, "solv": 50, "some": 1426, "spacegroup": 1433, "special": [1419, 1420], "specialpointspath": 572, "spectrum": 1423, "spglib2struct": 1373, "spglib_get_primit": 1374, "spglib_get_spacegroup": 1375, "spl": 505, "splev": 663, "spline": [657, 658, 659, 660, 661, 662, 663], "sql": [29, 1341, 1342, 1343, 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1364, 1365, 1366, 1367, 1368, 1369, 1370, 1371], "sql_column": 1369, "sql_column_old": 1370, "sql_matrix": 1371, "sqlentri": 1341, "sqlite": 1433, "sqlitedb": [1342, 1343, 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363], "squared_dist": 1317, "stabil": 1425, "start": 1430, "str2seq": 155, "str2tup": 156, "str_arr": 157, "stress_pwtools2as": 123, "struct2atom": 442, "struct2spglib": 1376, "struct2traj": 443, "struct_str": 576, "structur": [269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 1422, 1433], "structurefilepars": [1206, 1207, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218, 1219, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 1229, 1230], "studi": 1421, "sum": 688, "svib": 1387, "symbol": 66, "symmetri": [30, 1372, 1373, 1374, 1375, 1376], "system": 158, "t": 1406, "tabl": 3, "tagtim": [1403, 1404, 1405, 1406], "template_replac": 159, "tensor2voigt": 444, "tensor2voigt3d": 445, "test": 1430, "th": 207, "thart": [208, 1268], "theori": [1419, 1425], "thermo": [31, 1377, 1378, 1379, 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, 1390, 1391, 1392, 1393, 1394, 1395, 1396, 1397, 1398, 1399, 1400, 1401, 1402], "timeaxi": [265, 321, 378, 764, 804, 844, 922, 1007, 1048, 1120, 1201, 1254], "timer": [32, 1403, 1404, 1405, 1406], "tobool": 160, "tool": 1431, "topic": 1420, "toslic": 161, "total": 1424, "traj_from_txt": 1269, "trajectori": [325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 1422, 1433], "trajectoryfilepars": [1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239, 1240, 1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257], "transform": 1419, "try_set_attr": [84, 266, 322, 379, 400, 495, 530, 723, 765, 805, 845, 875, 923, 958, 1008, 1049, 1077, 1121, 1157, 1202, 1228, 1255], "try_set_attr_lst": [85, 267, 323, 380, 401, 496, 531, 724, 766, 806, 846, 876, 924, 959, 1009, 1050, 1078, 1122, 1158, 1203, 1229, 1256], "tryd": 209, "tup2str": 162, "tutori": 1433, "txt_maxdim": 55, "unique2d": 126, "unit": [10, 1422, 1424, 1433], "unitshandl": [382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402], "updat": [579, 582], "update_unit": [268, 324, 381, 402, 725, 767, 807, 847, 877, 925, 960, 1010, 1051, 1079, 1123, 1159, 1204, 1230, 1257], "us": [10, 21, 1422, 1433], "use_jax": 164, "usual": 1431, "v": [1419, 1425], "vacf": 51, "vacf_pdo": 1293, "vander": 689, "vari": 1431, "vect_loop": 52, "veloc": 1423, "velocity_traj": 446, "verbos": [33, 1407, 1408], "version": 1430, "vibrational_entropi": 1388, "vibrational_free_energi": 1389, "vibrational_internal_energi": 1390, "view": 1433, "view_avogadro": 1412, "view_jmol": 1413, "view_vmd_axsf": 1414, "view_vmd_xyz": 1415, "view_xcrysden": 1416, "viewer": 34, "viewfactori": 1409, "vinet": [535, 536, 537, 538, 539, 540], "visual": [34, 1409, 1410, 1411, 1412, 1413, 1414, 1415, 1416], "vlinspac": 690, "vmd": 34, "vmd_measure_gofr": 447, "voigt2tensor": 448, "voigt2tensor3d": 449, "volum": 1431, "volume_cc": 450, "volume_cc3d": 451, "volume_cel": 452, "volume_cell3d": 453, "welch": 1340, "welcom": 1417, "wien_sgroup_input": 565, "work": 1433, "write": 91, "write_axsf": 566, "write_cif": 567, "write_h5": 568, "write_input": [88, 97, 111, 119], "write_lammp": 569, "write_wien_sgroup": 570, "write_xyz": 571, "writesql": 92, "writetxt": 60}}) \ No newline at end of file +Search.setIndex({"alltitles": {"1d": [[1431, "d"]], "2d": [[1431, "id1"]], "API Reference": [[35, null]], "Analysis of runs with pwtools": [[1426, "analysis-of-runs-with-pwtools"]], "Atomic coordinates": [[1424, "atomic-coordinates"]], "Atomic mass unit": [[10, "atomic-mass-unit"]], "Atomic units and constants": [[10, "atomic-units-and-constants"]], "Available parsers": [[1422, "available-parsers"]], "Avoid auto-calculation for big MD data": [[1433, "avoid-auto-calculation-for-big-md-data"]], "Background, details, special topics": [[1420, null]], "Binary IO": [[1433, "binary-io"]], "Calculation of the phonon DOS from MD data": [[1423, "calculation-of-the-phonon-dos-from-md-data"]], "Container classes Structure and Trajectory": [[1422, "container-classes-structure-and-trajectory"]], "Coordinate transformation": [[1419, null]], "Correlation and power spectrum": [[1423, "correlation-and-power-spectrum"]], "Data scaling": [[1425, "data-scaling"]], "Dependencies": [[1430, "dependencies"]], "Detailed instructions": [[1430, "detailed-instructions"]], "Features": [[1428, null]], "Find Monkhorst-Pack k-grid sampling for a given unit cell": [[1433, "find-monkhorst-pack-k-grid-sampling-for-a-given-unit-cell"]], "Find spacegroup": [[1433, "find-spacegroup"]], "Fortran extensions and OpenMP notes": [[1430, "fortran-extensions-and-openmp-notes"]], "Hartree units": [[10, "hartree-units"]], "High-level parsing functions": [[1422, "high-level-parsing-functions"]], "How to determine p and r": [[1425, "how-to-determine-p-and-r"]], "How to do a restart in cp2k": [[1426, null]], "Implementation": [[1419, "implementation"]], "Installation": [[1430, null]], "Interfaces for molecular viewers": [[34, "interfaces-for-molecular-viewers"]], "Interpolation and fitting": [[1433, "interpolation-and-fitting"]], "Interpolation vs. regression, regularization and numerical stability": [[1425, "interpolation-vs-regression-regularization-and-numerical-stability"]], "More": [[1433, "more"]], "Notation": [[1419, "notation"]], "Notes for the special case fractional <-> cartesian": [[1419, "notes-for-the-special-case-fractional-cartesian"]], "OpenMP": [[1430, "openmp"]], "Optional dependencies": [[1430, "optional-dependencies"]], "Other implementations": [[1425, "other-implementations"]], "Other tools": [[1431, "other-tools"]], "Padding and smoothing": [[1423, "padding-and-smoothing"]], "Parameter studies": [[1421, null]], "Parse SCF, relax or MD output": [[1433, "parse-scf-relax-or-md-output"]], "Parser classes for different file formats. Input- and output files.": [[21, "parser-classes-for-different-file-formats-input-and-output-files"]], "Parsing code output and using containers": [[1422, null]], "Phonon dispersion calculation and plotting": [[1427, null]], "Pwscf": [[1424, null]], "Quasi-harmonic approximation": [[1431, null], [1433, "quasi-harmonic-approximation"]], "Quick start": [[1430, "quick-start"]], "RBF parameter p": [[1425, "rbf-parameter-p"]], "Radial Basis Function interpolation an regression": [[1425, null]], "Relation to ASE": [[1418, null]], "Restart": [[1426, "restart"]], "Row vs. column form": [[1419, "row-vs-column-form"]], "Running tests": [[1430, "running-tests"]], "Rydberg units": [[10, "rydberg-units"]], "Smoothing a signal or a Trajectory": [[1433, "smoothing-a-signal-or-a-trajectory"]], "Some comments": [[1426, "some-comments"]], "Tests": [[1430, "tests"]], "The periodic table": [[3, "the-periodic-table"]], "Theory": [[1419, "theory"], [1425, "theory"]], "Total force on atoms": [[1424, "total-force-on-atoms"]], "Tutorial": [[1433, null]], "Units": [[1422, "units"], [1424, "units"]], "Useful conversions": [[10, "useful-conversions"]], "Using ASE?": [[1433, "using-ase"]], "Using Parsing classes": [[21, "using-parsing-classes"]], "VMD": [[34, "vmd"]], "Velocity autocorrelation function and phonon DOS": [[1423, null]], "View a structure or trajectory": [[1433, "view-a-structure-or-trajectory"]], "Welcome to the pwtools documentation": [[1417, null]], "Work with SQLite databases": [[1433, "work-with-sqlite-databases"]], "_dcd": [[0, null]], "_flib": [[1, null]], "arrayio": [[2, null]], "atomic_data": [[3, null]], "base": [[4, null]], "batch": [[5, null]], "calculators": [[6, null]], "comb": [[7, null]], "common": [[8, null]], "config": [[9, null]], "constants": [[10, null]], "crys": [[11, null]], "dcd": [[12, null]], "decorators": [[13, null]], "eos": [[14, null]], "io": [[15, null]], "kpath": [[16, null]], "lammps": [[17, null]], "mpl": [[18, null]], "mttk": [[19, null]], "num": [[20, null]], "parse": [[21, null]], "pwscf": [[22, null]], "pwtools._dcd.get_dcd_file_info": [[36, null]], "pwtools._dcd.open_file": [[37, null]], "pwtools._dcd.read_dcd_data": [[38, null]], "pwtools._dcd.read_dcd_data_from_unit": [[39, null]], "pwtools._dcd.read_dcd_header_from_unit": [[40, null]], "pwtools._flib.acorr": [[41, null]], "pwtools._flib.angles": [[42, null]], "pwtools._flib.cart2frac": [[43, null]], "pwtools._flib.cart2frac_traj": [[44, null]], "pwtools._flib.distances_traj": [[45, null]], "pwtools._flib.distsq": [[46, null]], "pwtools._flib.distsq_frac": [[47, null]], "pwtools._flib.frac2cart": [[48, null]], "pwtools._flib.frac2cart_traj": [[49, null]], "pwtools._flib.solve": [[50, null]], "pwtools._flib.vacf": [[51, null]], "pwtools._flib.vect_loops": [[52, null]], "pwtools.arrayio.HEADER_COMMENT": [[53, null]], "pwtools.arrayio.HEADER_MAXLINES": [[54, null]], "pwtools.arrayio.TXT_MAXDIM": [[55, null]], "pwtools.arrayio._read_header_config": [[56, null]], "pwtools.arrayio._write_header_config": [[57, null]], "pwtools.arrayio.arr2d_to_3d": [[58, null]], "pwtools.arrayio.readtxt": [[59, null]], "pwtools.arrayio.writetxt": [[60, null]], "pwtools.atomic_data.covalent_radii": [[61, null]], "pwtools.atomic_data.masses": [[62, null]], "pwtools.atomic_data.missing": [[63, null]], "pwtools.atomic_data.numbers": [[64, null]], "pwtools.atomic_data.pt": [[65, null]], "pwtools.atomic_data.symbols": [[66, null]], "pwtools.base.FlexibleGetters": [[67, null]], "pwtools.base.FlexibleGetters.assert_attr": [[68, null]], "pwtools.base.FlexibleGetters.assert_attr_lst": [[69, null]], "pwtools.base.FlexibleGetters.assert_set_attr": [[70, null]], "pwtools.base.FlexibleGetters.assert_set_attr_lst": [[71, null]], "pwtools.base.FlexibleGetters.check_set_attr": [[72, null]], "pwtools.base.FlexibleGetters.check_set_attr_lst": [[73, null]], "pwtools.base.FlexibleGetters.dump": [[74, null]], "pwtools.base.FlexibleGetters.get_return_attr": [[75, null]], "pwtools.base.FlexibleGetters.init_attr_lst": [[76, null]], "pwtools.base.FlexibleGetters.is_set_attr": [[77, null]], "pwtools.base.FlexibleGetters.is_set_attr_lst": [[78, null]], "pwtools.base.FlexibleGetters.load": [[79, null]], "pwtools.base.FlexibleGetters.raw_return": [[80, null]], "pwtools.base.FlexibleGetters.raw_slice_get": [[81, null]], "pwtools.base.FlexibleGetters.set_all": [[82, null]], "pwtools.base.FlexibleGetters.set_attr_lst": [[83, null]], "pwtools.base.FlexibleGetters.try_set_attr": [[84, null]], "pwtools.base.FlexibleGetters.try_set_attr_lst": [[85, null]], "pwtools.batch.Calculation": [[86, null]], "pwtools.batch.Calculation.get_sql_record": [[87, null]], "pwtools.batch.Calculation.write_input": [[88, null]], "pwtools.batch.Case": [[89, null]], "pwtools.batch.FileTemplate": [[90, null]], "pwtools.batch.FileTemplate.write": [[91, null]], "pwtools.batch.FileTemplate.writesql": [[92, null]], "pwtools.batch.Machine": [[93, null]], "pwtools.batch.Machine.get_jobfile_basename": [[94, null]], "pwtools.batch.Machine.get_sql_record": [[95, null]], "pwtools.batch.ParameterStudy": [[96, null]], "pwtools.batch.ParameterStudy.write_input": [[97, null]], "pwtools.batch.conv_table": [[98, null]], "pwtools.batch.default_repl_keys": [[99, null]], "pwtools.calculators.CalculatorBase": [[100, null]], "pwtools.calculators.CalculatorBase.fill_infile_templ": [[101, null]], "pwtools.calculators.CalculatorBase.init_params_from_input": [[102, null]], "pwtools.calculators.FileIOCalculator": [[103, null]], "pwtools.calculators.Lammps": [[104, null]], "pwtools.calculators.Lammps.default_parameters": [[105, null]], "pwtools.calculators.Lammps.fill_infile_templ": [[106, null]], "pwtools.calculators.Lammps.implemented_properties": [[107, null]], "pwtools.calculators.Lammps.infile_templ": [[108, null]], "pwtools.calculators.Lammps.init_params_from_input": [[109, null]], "pwtools.calculators.Lammps.read_results": [[110, null]], "pwtools.calculators.Lammps.write_input": [[111, null]], "pwtools.calculators.Pwscf": [[112, null]], "pwtools.calculators.Pwscf.default_parameters": [[113, null]], "pwtools.calculators.Pwscf.fill_infile_templ": [[114, null]], "pwtools.calculators.Pwscf.implemented_properties": [[115, null]], "pwtools.calculators.Pwscf.infile_templ": [[116, null]], "pwtools.calculators.Pwscf.init_params_from_input": [[117, null]], "pwtools.calculators.Pwscf.read_results": [[118, null]], "pwtools.calculators.Pwscf.write_input": [[119, null]], "pwtools.calculators._ase_missing": [[120, null]], "pwtools.calculators.find_exe": [[121, null]], "pwtools.calculators.kpts2mp": [[122, null]], "pwtools.calculators.stress_pwtools2ase": [[123, null]], "pwtools.comb._ensure_list": [[124, null]], "pwtools.comb.nested_loops": [[125, null]], "pwtools.comb.unique2d": [[126, null]], "pwtools.common.EPS": [[127, null]], "pwtools.common.add_to_config": [[128, null]], "pwtools.common.asseq": [[129, null]], "pwtools.common.assert_cond": [[130, null]], "pwtools.common.backtick": [[131, null]], "pwtools.common.backup": [[132, null]], "pwtools.common.cpickle_load": [[133, null]], "pwtools.common.dict2class": [[134, null]], "pwtools.common.dict2str": [[135, null]], "pwtools.common.ffloat": [[136, null]], "pwtools.common.file_read": [[137, null]], "pwtools.common.file_readlines": [[138, null]], "pwtools.common.file_template_replace": [[139, null]], "pwtools.common.file_write": [[140, null]], "pwtools.common.fix_eps": [[141, null]], "pwtools.common.flatten": [[142, null]], "pwtools.common.fpj": [[143, null]], "pwtools.common.frepr": [[144, null]], "pwtools.common.fullpath": [[145, null]], "pwtools.common.fullpathjoin": [[146, null]], "pwtools.common.get_filename": [[147, null]], "pwtools.common.iflatten": [[148, null]], "pwtools.common.is_seq": [[149, null]], "pwtools.common.makedirs": [[150, null]], "pwtools.common.permit_sigpipe": [[151, null]], "pwtools.common.pop_from_list": [[152, null]], "pwtools.common.print_dct": [[153, null]], "pwtools.common.seq2str": [[154, null]], "pwtools.common.str2seq": [[155, null]], "pwtools.common.str2tup": [[156, null]], "pwtools.common.str_arr": [[157, null]], "pwtools.common.system": [[158, null]], "pwtools.common.template_replace": [[159, null]], "pwtools.common.tobool": [[160, null]], "pwtools.common.toslice": [[161, null]], "pwtools.common.tup2str": [[162, null]], "pwtools.config.name": [[163, null]], "pwtools.config.use_jax": [[164, null]], "pwtools.constants.Ang": [[165, null]], "pwtools.constants.Angstrom": [[166, null]], "pwtools.constants.Bohr": [[167, null]], "pwtools.constants.Bohr_to_Ang": [[168, null]], "pwtools.constants.Eh": [[169, null]], "pwtools.constants.Eryd": [[170, null]], "pwtools.constants.GPa": [[171, null]], "pwtools.constants.Ha": [[172, null]], "pwtools.constants.Ha_to_eV": [[173, null]], "pwtools.constants.Hartree": [[174, null]], "pwtools.constants.J_to_eV": [[175, null]], "pwtools.constants.J_to_rcm": [[176, null]], "pwtools.constants.R": [[177, null]], "pwtools.constants.Ry": [[178, null]], "pwtools.constants.Ry_to_Ha": [[179, null]], "pwtools.constants.Ry_to_Hz": [[180, null]], "pwtools.constants.Ry_to_J": [[181, null]], "pwtools.constants.Ry_to_eV": [[182, null]], "pwtools.constants.Ry_to_rcm": [[183, null]], "pwtools.constants.Rydberg": [[184, null]], "pwtools.constants.a0": [[185, null]], "pwtools.constants.a0_to_A": [[186, null]], "pwtools.constants.alpha": [[187, null]], "pwtools.constants.amu": [[188, null]], "pwtools.constants.avo": [[189, null]], "pwtools.constants.c0": [[190, null]], "pwtools.constants.dyn": [[191, null]], "pwtools.constants.e0": [[192, null]], "pwtools.constants.eV": [[193, null]], "pwtools.constants.eV_by_Ang3_to_GPa": [[194, null]], "pwtools.constants.eV_by_Ang3_to_Pa": [[195, null]], "pwtools.constants.eps0": [[196, null]], "pwtools.constants.fs": [[197, null]], "pwtools.constants.h": [[198, null]], "pwtools.constants.hbar": [[199, null]], "pwtools.constants.hplanck": [[200, null]], "pwtools.constants.kb": [[201, null]], "pwtools.constants.m0": [[202, null]], "pwtools.constants.mu0": [[203, null]], "pwtools.constants.pi": [[204, null]], "pwtools.constants.ps": [[205, null]], "pwtools.constants.rcm_to_Hz": [[206, null]], "pwtools.constants.th": [[207, null]], "pwtools.constants.thart": [[208, null]], "pwtools.constants.tryd": [[209, null]], "pwtools.crys.Angstrom": [[210, null]], "pwtools.crys.FakeASEAtoms": [[211, null]], "pwtools.crys.FakeASEAtoms.apply_units": [[212, null]], "pwtools.crys.FakeASEAtoms.assert_attr": [[213, null]], "pwtools.crys.FakeASEAtoms.assert_attr_lst": [[214, null]], "pwtools.crys.FakeASEAtoms.assert_set_attr": [[215, null]], "pwtools.crys.FakeASEAtoms.assert_set_attr_lst": [[216, null]], "pwtools.crys.FakeASEAtoms.check_set_attr": [[217, null]], "pwtools.crys.FakeASEAtoms.check_set_attr_lst": [[218, null]], "pwtools.crys.FakeASEAtoms.compress": [[219, null]], "pwtools.crys.FakeASEAtoms.copy": [[220, null]], "pwtools.crys.FakeASEAtoms.dump": [[221, null]], "pwtools.crys.FakeASEAtoms.get_ase_atoms": [[222, null]], "pwtools.crys.FakeASEAtoms.get_atomic_numbers": [[223, null]], "pwtools.crys.FakeASEAtoms.get_cell": [[224, null]], "pwtools.crys.FakeASEAtoms.get_coords": [[225, null]], "pwtools.crys.FakeASEAtoms.get_coords_frac": [[226, null]], "pwtools.crys.FakeASEAtoms.get_cryst_const": [[227, null]], "pwtools.crys.FakeASEAtoms.get_ekin": [[228, null]], "pwtools.crys.FakeASEAtoms.get_etot": [[229, null]], "pwtools.crys.FakeASEAtoms.get_fake_ase_atoms": [[230, null]], "pwtools.crys.FakeASEAtoms.get_forces": [[231, null]], "pwtools.crys.FakeASEAtoms.get_magnetic_moments": [[232, null]], "pwtools.crys.FakeASEAtoms.get_mass": [[233, null]], "pwtools.crys.FakeASEAtoms.get_mass_unique": [[234, null]], "pwtools.crys.FakeASEAtoms.get_natoms": [[235, null]], "pwtools.crys.FakeASEAtoms.get_nspecies": [[236, null]], "pwtools.crys.FakeASEAtoms.get_nstep": [[237, null]], "pwtools.crys.FakeASEAtoms.get_ntypat": [[238, null]], "pwtools.crys.FakeASEAtoms.get_order": [[239, null]], "pwtools.crys.FakeASEAtoms.get_pressure": [[240, null]], "pwtools.crys.FakeASEAtoms.get_return_attr": [[241, null]], "pwtools.crys.FakeASEAtoms.get_spglib": [[242, null]], "pwtools.crys.FakeASEAtoms.get_stress": [[243, null]], "pwtools.crys.FakeASEAtoms.get_symbols": [[244, null]], "pwtools.crys.FakeASEAtoms.get_symbols_unique": [[245, null]], "pwtools.crys.FakeASEAtoms.get_temperature": [[246, null]], "pwtools.crys.FakeASEAtoms.get_time": [[247, null]], "pwtools.crys.FakeASEAtoms.get_timestep": [[248, null]], "pwtools.crys.FakeASEAtoms.get_traj": [[249, null]], "pwtools.crys.FakeASEAtoms.get_typat": [[250, null]], "pwtools.crys.FakeASEAtoms.get_velocity": [[251, null]], "pwtools.crys.FakeASEAtoms.get_volume": [[252, null]], "pwtools.crys.FakeASEAtoms.get_znucl": [[253, null]], "pwtools.crys.FakeASEAtoms.get_znucl_unique": [[254, null]], "pwtools.crys.FakeASEAtoms.init_attr_lst": [[255, null]], "pwtools.crys.FakeASEAtoms.is_set_attr": [[256, null]], "pwtools.crys.FakeASEAtoms.is_set_attr_lst": [[257, null]], "pwtools.crys.FakeASEAtoms.is_struct": [[258, null]], "pwtools.crys.FakeASEAtoms.is_traj": [[259, null]], "pwtools.crys.FakeASEAtoms.load": [[260, null]], "pwtools.crys.FakeASEAtoms.raw_return": [[261, null]], "pwtools.crys.FakeASEAtoms.raw_slice_get": [[262, null]], "pwtools.crys.FakeASEAtoms.set_all": [[263, null]], "pwtools.crys.FakeASEAtoms.set_attr_lst": [[264, null]], "pwtools.crys.FakeASEAtoms.timeaxis": [[265, null]], "pwtools.crys.FakeASEAtoms.try_set_attr": [[266, null]], "pwtools.crys.FakeASEAtoms.try_set_attr_lst": [[267, null]], "pwtools.crys.FakeASEAtoms.update_units": [[268, null]], "pwtools.crys.Structure": [[269, null]], "pwtools.crys.Structure.apply_units": [[270, null]], "pwtools.crys.Structure.assert_attr": [[271, null]], "pwtools.crys.Structure.assert_attr_lst": [[272, null]], "pwtools.crys.Structure.assert_set_attr": [[273, null]], "pwtools.crys.Structure.assert_set_attr_lst": [[274, null]], "pwtools.crys.Structure.check_set_attr": [[275, null]], "pwtools.crys.Structure.check_set_attr_lst": [[276, null]], "pwtools.crys.Structure.compress": [[277, null]], "pwtools.crys.Structure.copy": [[278, null]], "pwtools.crys.Structure.dump": [[279, null]], "pwtools.crys.Structure.get_ase_atoms": [[280, null]], "pwtools.crys.Structure.get_cell": [[281, null]], "pwtools.crys.Structure.get_coords": [[282, null]], "pwtools.crys.Structure.get_coords_frac": [[283, null]], "pwtools.crys.Structure.get_cryst_const": [[284, null]], "pwtools.crys.Structure.get_ekin": [[285, null]], "pwtools.crys.Structure.get_etot": [[286, null]], "pwtools.crys.Structure.get_fake_ase_atoms": [[287, null]], "pwtools.crys.Structure.get_forces": [[288, null]], "pwtools.crys.Structure.get_mass": [[289, null]], "pwtools.crys.Structure.get_mass_unique": [[290, null]], "pwtools.crys.Structure.get_natoms": [[291, null]], "pwtools.crys.Structure.get_nspecies": [[292, null]], "pwtools.crys.Structure.get_nstep": [[293, null]], "pwtools.crys.Structure.get_ntypat": [[294, null]], "pwtools.crys.Structure.get_order": [[295, null]], "pwtools.crys.Structure.get_pressure": [[296, null]], "pwtools.crys.Structure.get_return_attr": [[297, null]], "pwtools.crys.Structure.get_spglib": [[298, null]], "pwtools.crys.Structure.get_stress": [[299, null]], "pwtools.crys.Structure.get_symbols": [[300, null]], "pwtools.crys.Structure.get_symbols_unique": [[301, null]], "pwtools.crys.Structure.get_temperature": [[302, null]], "pwtools.crys.Structure.get_time": [[303, null]], "pwtools.crys.Structure.get_timestep": [[304, null]], "pwtools.crys.Structure.get_traj": [[305, null]], "pwtools.crys.Structure.get_typat": [[306, null]], "pwtools.crys.Structure.get_velocity": [[307, null]], "pwtools.crys.Structure.get_volume": [[308, null]], "pwtools.crys.Structure.get_znucl": [[309, null]], "pwtools.crys.Structure.get_znucl_unique": [[310, null]], "pwtools.crys.Structure.init_attr_lst": [[311, null]], "pwtools.crys.Structure.is_set_attr": [[312, null]], "pwtools.crys.Structure.is_set_attr_lst": [[313, null]], "pwtools.crys.Structure.is_struct": [[314, null]], "pwtools.crys.Structure.is_traj": [[315, null]], "pwtools.crys.Structure.load": [[316, null]], "pwtools.crys.Structure.raw_return": [[317, null]], "pwtools.crys.Structure.raw_slice_get": [[318, null]], "pwtools.crys.Structure.set_all": [[319, null]], "pwtools.crys.Structure.set_attr_lst": [[320, null]], "pwtools.crys.Structure.timeaxis": [[321, null]], "pwtools.crys.Structure.try_set_attr": [[322, null]], "pwtools.crys.Structure.try_set_attr_lst": [[323, null]], "pwtools.crys.Structure.update_units": [[324, null]], "pwtools.crys.Trajectory": [[325, null]], "pwtools.crys.Trajectory.__getitem__": [[326, null]], "pwtools.crys.Trajectory.apply_units": [[327, null]], "pwtools.crys.Trajectory.assert_attr": [[328, null]], "pwtools.crys.Trajectory.assert_attr_lst": [[329, null]], "pwtools.crys.Trajectory.assert_set_attr": [[330, null]], "pwtools.crys.Trajectory.assert_set_attr_lst": [[331, null]], "pwtools.crys.Trajectory.check_set_attr": [[332, null]], "pwtools.crys.Trajectory.check_set_attr_lst": [[333, null]], "pwtools.crys.Trajectory.compress": [[334, null]], "pwtools.crys.Trajectory.copy": [[335, null]], "pwtools.crys.Trajectory.dump": [[336, null]], "pwtools.crys.Trajectory.get_ase_atoms": [[337, null]], "pwtools.crys.Trajectory.get_cell": [[338, null]], "pwtools.crys.Trajectory.get_coords": [[339, null]], "pwtools.crys.Trajectory.get_coords_frac": [[340, null]], "pwtools.crys.Trajectory.get_cryst_const": [[341, null]], "pwtools.crys.Trajectory.get_ekin": [[342, null]], "pwtools.crys.Trajectory.get_etot": [[343, null]], "pwtools.crys.Trajectory.get_fake_ase_atoms": [[344, null]], "pwtools.crys.Trajectory.get_forces": [[345, null]], "pwtools.crys.Trajectory.get_mass": [[346, null]], "pwtools.crys.Trajectory.get_mass_unique": [[347, null]], "pwtools.crys.Trajectory.get_natoms": [[348, null]], "pwtools.crys.Trajectory.get_nspecies": [[349, null]], "pwtools.crys.Trajectory.get_nstep": [[350, null]], "pwtools.crys.Trajectory.get_ntypat": [[351, null]], "pwtools.crys.Trajectory.get_order": [[352, null]], "pwtools.crys.Trajectory.get_pressure": [[353, null]], "pwtools.crys.Trajectory.get_return_attr": [[354, null]], "pwtools.crys.Trajectory.get_spglib": [[355, null]], "pwtools.crys.Trajectory.get_stress": [[356, null]], "pwtools.crys.Trajectory.get_symbols": [[357, null]], "pwtools.crys.Trajectory.get_symbols_unique": [[358, null]], "pwtools.crys.Trajectory.get_temperature": [[359, null]], "pwtools.crys.Trajectory.get_time": [[360, null]], "pwtools.crys.Trajectory.get_timestep": [[361, null]], "pwtools.crys.Trajectory.get_traj": [[362, null]], "pwtools.crys.Trajectory.get_typat": [[363, null]], "pwtools.crys.Trajectory.get_velocity": [[364, null]], "pwtools.crys.Trajectory.get_volume": [[365, null]], "pwtools.crys.Trajectory.get_znucl": [[366, null]], "pwtools.crys.Trajectory.get_znucl_unique": [[367, null]], "pwtools.crys.Trajectory.init_attr_lst": [[368, null]], "pwtools.crys.Trajectory.is_set_attr": [[369, null]], "pwtools.crys.Trajectory.is_set_attr_lst": [[370, null]], "pwtools.crys.Trajectory.is_struct": [[371, null]], "pwtools.crys.Trajectory.is_traj": [[372, null]], "pwtools.crys.Trajectory.load": [[373, null]], "pwtools.crys.Trajectory.raw_return": [[374, null]], "pwtools.crys.Trajectory.raw_slice_get": [[375, null]], "pwtools.crys.Trajectory.set_all": [[376, null]], "pwtools.crys.Trajectory.set_attr_lst": [[377, null]], "pwtools.crys.Trajectory.timeaxis": [[378, null]], "pwtools.crys.Trajectory.try_set_attr": [[379, null]], "pwtools.crys.Trajectory.try_set_attr_lst": [[380, null]], "pwtools.crys.Trajectory.update_units": [[381, null]], "pwtools.crys.UnitsHandler": [[382, null]], "pwtools.crys.UnitsHandler.apply_units": [[383, null]], "pwtools.crys.UnitsHandler.assert_attr": [[384, null]], "pwtools.crys.UnitsHandler.assert_attr_lst": [[385, null]], "pwtools.crys.UnitsHandler.assert_set_attr": [[386, null]], "pwtools.crys.UnitsHandler.assert_set_attr_lst": [[387, null]], "pwtools.crys.UnitsHandler.check_set_attr": [[388, null]], "pwtools.crys.UnitsHandler.check_set_attr_lst": [[389, null]], "pwtools.crys.UnitsHandler.dump": [[390, null]], "pwtools.crys.UnitsHandler.get_return_attr": [[391, null]], "pwtools.crys.UnitsHandler.init_attr_lst": [[392, null]], "pwtools.crys.UnitsHandler.is_set_attr": [[393, null]], "pwtools.crys.UnitsHandler.is_set_attr_lst": [[394, null]], "pwtools.crys.UnitsHandler.load": [[395, null]], "pwtools.crys.UnitsHandler.raw_return": [[396, null]], "pwtools.crys.UnitsHandler.raw_slice_get": [[397, null]], "pwtools.crys.UnitsHandler.set_all": [[398, null]], "pwtools.crys.UnitsHandler.set_attr_lst": [[399, null]], "pwtools.crys.UnitsHandler.try_set_attr": [[400, null]], "pwtools.crys.UnitsHandler.try_set_attr_lst": [[401, null]], "pwtools.crys.UnitsHandler.update_units": [[402, null]], "pwtools.crys._trans": [[403, null]], "pwtools.crys.align_cart": [[404, null]], "pwtools.crys.angle": [[405, null]], "pwtools.crys.angles": [[406, null]], "pwtools.crys.atoms2struct": [[407, null]], "pwtools.crys.call_vmd_measure_gofr": [[408, null]], "pwtools.crys.cc2cell": [[409, null]], "pwtools.crys.cc2cell3d": [[410, null]], "pwtools.crys.cc2celldm": [[411, null]], "pwtools.crys.cell2cc": [[412, null]], "pwtools.crys.cell2cc3d": [[413, null]], "pwtools.crys.celldm2cc": [[414, null]], "pwtools.crys.center_on_atom": [[415, null]], "pwtools.crys.compress": [[416, null]], "pwtools.crys.concatenate": [[417, null]], "pwtools.crys.coord_trans": [[418, null]], "pwtools.crys.coord_trans3d": [[419, null]], "pwtools.crys.distances": [[420, null]], "pwtools.crys.distances_traj": [[421, null]], "pwtools.crys.grid_in_cell": [[422, null]], "pwtools.crys.kgrid": [[423, null]], "pwtools.crys.mean": [[424, null]], "pwtools.crys.min_image_convention": [[425, null]], "pwtools.crys.mix": [[426, null]], "pwtools.crys.nearest_neighbors": [[427, null]], "pwtools.crys.nearest_neighbors_from_dists": [[428, null]], "pwtools.crys.nearest_neighbors_struct": [[429, null]], "pwtools.crys.pbc_wrap": [[430, null]], "pwtools.crys.pbc_wrap_coords": [[431, null]], "pwtools.crys.pi": [[432, null]], "pwtools.crys.populated_attrs": [[433, null]], "pwtools.crys.recip_cell": [[434, null]], "pwtools.crys.rmax_smith": [[435, null]], "pwtools.crys.rmsd": [[436, null]], "pwtools.crys.rpdf": [[437, null]], "pwtools.crys.scell": [[438, null]], "pwtools.crys.scell3d": [[439, null]], "pwtools.crys.scell_mask": [[440, null]], "pwtools.crys.smooth": [[441, null]], "pwtools.crys.struct2atoms": [[442, null]], "pwtools.crys.struct2traj": [[443, null]], "pwtools.crys.tensor2voigt": [[444, null]], "pwtools.crys.tensor2voigt3d": [[445, null]], "pwtools.crys.velocity_traj": [[446, null]], "pwtools.crys.vmd_measure_gofr": [[447, null]], "pwtools.crys.voigt2tensor": [[448, null]], "pwtools.crys.voigt2tensor3d": [[449, null]], "pwtools.crys.volume_cc": [[450, null]], "pwtools.crys.volume_cc3d": [[451, null]], "pwtools.crys.volume_cell": [[452, null]], "pwtools.crys.volume_cell3d": [[453, null]], "pwtools.dcd.HEADER_DTYPE": [[454, null]], "pwtools.dcd.HEADER_TYPES": [[455, null]], "pwtools.dcd.read_dcd_data": [[456, null]], "pwtools.dcd.read_dcd_data_f": [[457, null]], "pwtools.dcd.read_dcd_data_ref": [[458, null]], "pwtools.dcd.read_dcd_header": [[459, null]], "pwtools.decorators.crys_add_doc": [[460, null]], "pwtools.decorators.lazyprop": [[461, null]], "pwtools.decorators.open_and_close": [[462, null]], "pwtools.eos.Ang": [[463, null]], "pwtools.eos.Bohr": [[464, null]], "pwtools.eos.EVFunction": [[465, null]], "pwtools.eos.EVFunction.dct2lst": [[466, null]], "pwtools.eos.EVFunction.deriv": [[467, null]], "pwtools.eos.EVFunction.evaluate": [[468, null]], "pwtools.eos.EVFunction.get_min": [[469, null]], "pwtools.eos.EVFunction.lst2dct": [[470, null]], "pwtools.eos.ElkEOSFit": [[471, null]], "pwtools.eos.ElkEOSFit.assert_attr": [[472, null]], "pwtools.eos.ElkEOSFit.assert_attr_lst": [[473, null]], "pwtools.eos.ElkEOSFit.assert_set_attr": [[474, null]], "pwtools.eos.ElkEOSFit.assert_set_attr_lst": [[475, null]], "pwtools.eos.ElkEOSFit.calc_bv": [[476, null]], "pwtools.eos.ElkEOSFit.check_set_attr": [[477, null]], "pwtools.eos.ElkEOSFit.check_set_attr_lst": [[478, null]], "pwtools.eos.ElkEOSFit.dump": [[479, null]], "pwtools.eos.ElkEOSFit.fit": [[480, null]], "pwtools.eos.ElkEOSFit.get_min": [[481, null]], "pwtools.eos.ElkEOSFit.get_return_attr": [[482, null]], "pwtools.eos.ElkEOSFit.get_spl_bv": [[483, null]], "pwtools.eos.ElkEOSFit.get_spl_ev": [[484, null]], "pwtools.eos.ElkEOSFit.get_spl_pv": [[485, null]], "pwtools.eos.ElkEOSFit.init_attr_lst": [[486, null]], "pwtools.eos.ElkEOSFit.is_set_attr": [[487, null]], "pwtools.eos.ElkEOSFit.is_set_attr_lst": [[488, null]], "pwtools.eos.ElkEOSFit.load": [[489, null]], "pwtools.eos.ElkEOSFit.raw_return": [[490, null]], "pwtools.eos.ElkEOSFit.raw_slice_get": [[491, null]], "pwtools.eos.ElkEOSFit.set_all": [[492, null]], "pwtools.eos.ElkEOSFit.set_attr_lst": [[493, null]], "pwtools.eos.ElkEOSFit.set_bv_method": [[494, null]], "pwtools.eos.ElkEOSFit.try_set_attr": [[495, null]], "pwtools.eos.ElkEOSFit.try_set_attr_lst": [[496, null]], "pwtools.eos.EosFit": [[497, null]], "pwtools.eos.EosFit.bulkmod": [[498, null]], "pwtools.eos.EosFit.fit": [[499, null]], "pwtools.eos.EosFit.get_max": [[500, null]], "pwtools.eos.EosFit.get_min": [[501, null]], "pwtools.eos.EosFit.get_root": [[502, null]], "pwtools.eos.EosFit.is_mono": [[503, null]], "pwtools.eos.EosFit.pressure": [[504, null]], "pwtools.eos.EosFit.spl": [[505, null]], "pwtools.eos.ExternEOS": [[506, null]], "pwtools.eos.ExternEOS.assert_attr": [[507, null]], "pwtools.eos.ExternEOS.assert_attr_lst": [[508, null]], "pwtools.eos.ExternEOS.assert_set_attr": [[509, null]], "pwtools.eos.ExternEOS.assert_set_attr_lst": [[510, null]], "pwtools.eos.ExternEOS.calc_bv": [[511, null]], "pwtools.eos.ExternEOS.check_set_attr": [[512, null]], "pwtools.eos.ExternEOS.check_set_attr_lst": [[513, null]], "pwtools.eos.ExternEOS.dump": [[514, null]], "pwtools.eos.ExternEOS.fit": [[515, null]], "pwtools.eos.ExternEOS.get_min": [[516, null]], "pwtools.eos.ExternEOS.get_return_attr": [[517, null]], "pwtools.eos.ExternEOS.get_spl_bv": [[518, null]], "pwtools.eos.ExternEOS.get_spl_ev": [[519, null]], "pwtools.eos.ExternEOS.get_spl_pv": [[520, null]], "pwtools.eos.ExternEOS.init_attr_lst": [[521, null]], "pwtools.eos.ExternEOS.is_set_attr": [[522, null]], "pwtools.eos.ExternEOS.is_set_attr_lst": [[523, null]], "pwtools.eos.ExternEOS.load": [[524, null]], "pwtools.eos.ExternEOS.raw_return": [[525, null]], "pwtools.eos.ExternEOS.raw_slice_get": [[526, null]], "pwtools.eos.ExternEOS.set_all": [[527, null]], "pwtools.eos.ExternEOS.set_attr_lst": [[528, null]], "pwtools.eos.ExternEOS.set_bv_method": [[529, null]], "pwtools.eos.ExternEOS.try_set_attr": [[530, null]], "pwtools.eos.ExternEOS.try_set_attr_lst": [[531, null]], "pwtools.eos.Ha": [[532, null]], "pwtools.eos.MaxDerivException": [[533, null]], "pwtools.eos.Ry": [[534, null]], "pwtools.eos.Vinet": [[535, null]], "pwtools.eos.Vinet.dct2lst": [[536, null]], "pwtools.eos.Vinet.deriv": [[537, null]], "pwtools.eos.Vinet.evaluate": [[538, null]], "pwtools.eos.Vinet.get_min": [[539, null]], "pwtools.eos.Vinet.lst2dct": [[540, null]], "pwtools.eos._vinet": [[541, null]], "pwtools.eos._vinet_deriv1": [[542, null]], "pwtools.eos._vinet_deriv2": [[543, null]], "pwtools.eos.eV": [[544, null]], "pwtools.eos.eV_by_Ang3_to_GPa": [[545, null]], "pwtools.io.Ha": [[546, null]], "pwtools.io.ReadFactory": [[547, null]], "pwtools.io.eV": [[548, null]], "pwtools.io.load_h5": [[549, null]], "pwtools.io.read_cif": [[550, null]], "pwtools.io.read_cp2k_md": [[551, null]], "pwtools.io.read_cp2k_md_dcd": [[552, null]], "pwtools.io.read_cp2k_relax": [[553, null]], "pwtools.io.read_cp2k_scf": [[554, null]], "pwtools.io.read_cpmd_md": [[555, null]], "pwtools.io.read_cpmd_scf": [[556, null]], "pwtools.io.read_h5": [[557, null]], "pwtools.io.read_lammps_md_dcd": [[558, null]], "pwtools.io.read_lammps_md_txt": [[559, null]], "pwtools.io.read_pdb": [[560, null]], "pwtools.io.read_pickle": [[561, null]], "pwtools.io.read_pw_md": [[562, null]], "pwtools.io.read_pw_scf": [[563, null]], "pwtools.io.read_pw_vcmd": [[564, null]], "pwtools.io.wien_sgroup_input": [[565, null]], "pwtools.io.write_axsf": [[566, null]], "pwtools.io.write_cif": [[567, null]], "pwtools.io.write_h5": [[568, null]], "pwtools.io.write_lammps": [[569, null]], "pwtools.io.write_wien_sgroup": [[570, null]], "pwtools.io.write_xyz": [[571, null]], "pwtools.kpath.SpecialPointsPath": [[572, null]], "pwtools.kpath.get_path_norm": [[573, null]], "pwtools.kpath.kpath": [[574, null]], "pwtools.kpath.plot_dis": [[575, null]], "pwtools.lammps.struct_str": [[576, null]], "pwtools.mpl.Data2D": [[577, null]], "pwtools.mpl.Data2D.copy": [[578, null]], "pwtools.mpl.Data2D.update": [[579, null]], "pwtools.mpl.Data3D": [[580, null]], "pwtools.mpl.Data3D.copy": [[581, null]], "pwtools.mpl.Data3D.update": [[582, null]], "pwtools.mpl.Plot": [[583, null]], "pwtools.mpl.Plot.collect_legends": [[584, null]], "pwtools.mpl.Plot.legend": [[585, null]], "pwtools.mpl.Plot.savefig": [[586, null]], "pwtools.mpl.cc": [[587, null]], "pwtools.mpl.ccl": [[588, null]], "pwtools.mpl.ccm": [[589, null]], "pwtools.mpl.clc": [[590, null]], "pwtools.mpl.clean_ax3d": [[591, null]], "pwtools.mpl.cm": [[592, null]], "pwtools.mpl.cmc": [[593, null]], "pwtools.mpl.collect_legends": [[594, null]], "pwtools.mpl.color_ax": [[595, null]], "pwtools.mpl.colors": [[596, null]], "pwtools.mpl.colors_linestyles": [[597, null]], "pwtools.mpl.colors_markers": [[598, null]], "pwtools.mpl.cycle_colors": [[599, null]], "pwtools.mpl.cycle_colors_linestyles": [[600, null]], "pwtools.mpl.cycle_colors_markers": [[601, null]], "pwtools.mpl.cycle_linestyles_colors": [[602, null]], "pwtools.mpl.cycle_markers": [[603, null]], "pwtools.mpl.cycle_markers_colors": [[604, null]], "pwtools.mpl.fig_ax": [[605, null]], "pwtools.mpl.fig_ax3d": [[606, null]], "pwtools.mpl.get_2d_testdata": [[607, null]], "pwtools.mpl.ic": [[608, null]], "pwtools.mpl.icl": [[609, null]], "pwtools.mpl.icm": [[610, null]], "pwtools.mpl.ilc": [[611, null]], "pwtools.mpl.im": [[612, null]], "pwtools.mpl.imc": [[613, null]], "pwtools.mpl.iter_colors": [[614, null]], "pwtools.mpl.iter_colors_linestyles": [[615, null]], "pwtools.mpl.iter_colors_markers": [[616, null]], "pwtools.mpl.iter_linestyles": [[617, null]], "pwtools.mpl.iter_linestyles_colors": [[618, null]], "pwtools.mpl.iter_markers": [[619, null]], "pwtools.mpl.iter_markers_colors": [[620, null]], "pwtools.mpl.linestyles": [[621, null]], "pwtools.mpl.linestyles_colors": [[622, null]], "pwtools.mpl.make_axes_grid_fig": [[623, null]], "pwtools.mpl.markers": [[624, null]], "pwtools.mpl.markers_colors": [[625, null]], "pwtools.mpl.meshgridt": [[626, null]], "pwtools.mpl.new_axis": [[627, null]], "pwtools.mpl.plotlines3d": [[628, null]], "pwtools.mpl.prepare_plots": [[629, null]], "pwtools.mpl.smooth_color": [[630, null]], "pwtools.mpl.smooth_color_func": [[631, null]], "pwtools.mttk.a0": [[632, null]], "pwtools.mttk.add_doc": [[633, null]], "pwtools.mttk.barostat_mass_w": [[634, null]], "pwtools.mttk.barostat_mass_wg": [[635, null]], "pwtools.mttk.barostat_nhc_masses": [[636, null]], "pwtools.mttk.kb": [[637, null]], "pwtools.mttk.m0": [[638, null]], "pwtools.mttk.particle_nhc_masses": [[639, null]], "pwtools.num.DataND": [[640, null]], "pwtools.num.DataND.a2_to_an": [[641, null]], "pwtools.num.EPS": [[642, null]], "pwtools.num.Fit1D": [[643, null]], "pwtools.num.Fit1D.get_max": [[644, null]], "pwtools.num.Fit1D.get_min": [[645, null]], "pwtools.num.Fit1D.get_root": [[646, null]], "pwtools.num.Fit1D.is_mono": [[647, null]], "pwtools.num.Interpol2D": [[648, null]], "pwtools.num.Interpol2D.get_min": [[649, null]], "pwtools.num.PolyFit": [[650, null]], "pwtools.num.PolyFit.get_min": [[651, null]], "pwtools.num.PolyFit1D": [[652, null]], "pwtools.num.PolyFit1D.get_max": [[653, null]], "pwtools.num.PolyFit1D.get_min": [[654, null]], "pwtools.num.PolyFit1D.get_root": [[655, null]], "pwtools.num.PolyFit1D.is_mono": [[656, null]], "pwtools.num.Spline": [[657, null]], "pwtools.num.Spline.get_max": [[658, null]], "pwtools.num.Spline.get_min": [[659, null]], "pwtools.num.Spline.get_root": [[660, null]], "pwtools.num.Spline.invsplev": [[661, null]], "pwtools.num.Spline.is_mono": [[662, null]], "pwtools.num.Spline.splev": [[663, null]], "pwtools.num.deriv_spl": [[664, null]], "pwtools.num.distsq": [[665, null]], "pwtools.num.euler_matrix": [[666, null]], "pwtools.num.extend_array": [[667, null]], "pwtools.num.fempty": [[668, null]], "pwtools.num.findmin": [[669, null]], "pwtools.num.findroot": [[670, null]], "pwtools.num.inner_points_mask": [[671, null]], "pwtools.num.match_mask": [[672, null]], "pwtools.num.meshgridt": [[673, null]], "pwtools.num.norm": [[674, null]], "pwtools.num.norm_int": [[675, null]], "pwtools.num.normalize": [[676, null]], "pwtools.num.order_similar": [[677, null]], "pwtools.num.pi": [[678, null]], "pwtools.num.poly_powers": [[679, null]], "pwtools.num.poly_str": [[680, null]], "pwtools.num.polyfit": [[681, null]], "pwtools.num.polyval": [[682, null]], "pwtools.num.rms": [[683, null]], "pwtools.num.rms3d": [[684, null]], "pwtools.num.round_up_next_multiple": [[685, null]], "pwtools.num.sliceput": [[686, null]], "pwtools.num.slicetake": [[687, null]], "pwtools.num.sum": [[688, null]], "pwtools.num.vander": [[689, null]], "pwtools.num.vlinspace": [[690, null]], "pwtools.parse.AWK": [[691, null]], "pwtools.parse.Ang": [[692, null]], "pwtools.parse.Angstrom": [[693, null]], "pwtools.parse.Bohr": [[694, null]], "pwtools.parse.CifFile": [[695, null]], "pwtools.parse.CifFile.apply_units": [[696, null]], "pwtools.parse.CifFile.assert_attr": [[697, null]], "pwtools.parse.CifFile.assert_attr_lst": [[698, null]], "pwtools.parse.CifFile.assert_set_attr": [[699, null]], "pwtools.parse.CifFile.assert_set_attr_lst": [[700, null]], "pwtools.parse.CifFile.check_set_attr": [[701, null]], "pwtools.parse.CifFile.check_set_attr_lst": [[702, null]], "pwtools.parse.CifFile.cif_clear_atom_symbol": [[703, null]], "pwtools.parse.CifFile.cif_str2float": [[704, null]], "pwtools.parse.CifFile.default_units": [[705, null]], "pwtools.parse.CifFile.dump": [[706, null]], "pwtools.parse.CifFile.get_cont": [[707, null]], "pwtools.parse.CifFile.get_coords": [[708, null]], "pwtools.parse.CifFile.get_coords_frac": [[709, null]], "pwtools.parse.CifFile.get_cryst_const": [[710, null]], "pwtools.parse.CifFile.get_return_attr": [[711, null]], "pwtools.parse.CifFile.get_struct": [[712, null]], "pwtools.parse.CifFile.get_symbols": [[713, null]], "pwtools.parse.CifFile.init_attr_lst": [[714, null]], "pwtools.parse.CifFile.is_set_attr": [[715, null]], "pwtools.parse.CifFile.is_set_attr_lst": [[716, null]], "pwtools.parse.CifFile.load": [[717, null]], "pwtools.parse.CifFile.parse": [[718, null]], "pwtools.parse.CifFile.raw_return": [[719, null]], "pwtools.parse.CifFile.raw_slice_get": [[720, null]], "pwtools.parse.CifFile.set_all": [[721, null]], "pwtools.parse.CifFile.set_attr_lst": [[722, null]], "pwtools.parse.CifFile.try_set_attr": [[723, null]], "pwtools.parse.CifFile.try_set_attr_lst": [[724, null]], "pwtools.parse.CifFile.update_units": [[725, null]], "pwtools.parse.Cp2kDcdMDOutputFile": [[726, null]], "pwtools.parse.Cp2kDcdMDOutputFile.apply_units": [[727, null]], "pwtools.parse.Cp2kDcdMDOutputFile.assert_attr": [[728, null]], "pwtools.parse.Cp2kDcdMDOutputFile.assert_attr_lst": [[729, null]], "pwtools.parse.Cp2kDcdMDOutputFile.assert_set_attr": [[730, null]], "pwtools.parse.Cp2kDcdMDOutputFile.assert_set_attr_lst": [[731, null]], "pwtools.parse.Cp2kDcdMDOutputFile.check_set_attr": [[732, null]], "pwtools.parse.Cp2kDcdMDOutputFile.check_set_attr_lst": [[733, null]], "pwtools.parse.Cp2kDcdMDOutputFile.default_units": [[734, null]], "pwtools.parse.Cp2kDcdMDOutputFile.dump": [[735, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_cell": [[736, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_cont": [[737, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_coords": [[738, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_cryst_const": [[739, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_econst": [[740, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_ekin": [[741, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_etot": [[742, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_forces": [[743, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_natoms": [[744, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_nstep": [[745, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_return_attr": [[746, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_stress": [[747, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_struct": [[748, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_symbols": [[749, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_temperature": [[750, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_timestep": [[751, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_traj": [[752, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_velocity": [[753, null]], "pwtools.parse.Cp2kDcdMDOutputFile.get_volume": [[754, null]], "pwtools.parse.Cp2kDcdMDOutputFile.init_attr_lst": [[755, null]], "pwtools.parse.Cp2kDcdMDOutputFile.is_set_attr": [[756, null]], "pwtools.parse.Cp2kDcdMDOutputFile.is_set_attr_lst": [[757, null]], "pwtools.parse.Cp2kDcdMDOutputFile.load": [[758, null]], "pwtools.parse.Cp2kDcdMDOutputFile.parse": [[759, null]], "pwtools.parse.Cp2kDcdMDOutputFile.raw_return": [[760, null]], "pwtools.parse.Cp2kDcdMDOutputFile.raw_slice_get": [[761, null]], "pwtools.parse.Cp2kDcdMDOutputFile.set_all": [[762, null]], "pwtools.parse.Cp2kDcdMDOutputFile.set_attr_lst": [[763, null]], "pwtools.parse.Cp2kDcdMDOutputFile.timeaxis": [[764, null]], "pwtools.parse.Cp2kDcdMDOutputFile.try_set_attr": [[765, null]], "pwtools.parse.Cp2kDcdMDOutputFile.try_set_attr_lst": [[766, null]], "pwtools.parse.Cp2kDcdMDOutputFile.update_units": [[767, null]], "pwtools.parse.Cp2kMDOutputFile": [[768, null]], "pwtools.parse.Cp2kMDOutputFile.apply_units": [[769, null]], "pwtools.parse.Cp2kMDOutputFile.assert_attr": [[770, null]], "pwtools.parse.Cp2kMDOutputFile.assert_attr_lst": [[771, null]], "pwtools.parse.Cp2kMDOutputFile.assert_set_attr": [[772, null]], "pwtools.parse.Cp2kMDOutputFile.assert_set_attr_lst": [[773, null]], "pwtools.parse.Cp2kMDOutputFile.check_set_attr": [[774, null]], "pwtools.parse.Cp2kMDOutputFile.check_set_attr_lst": [[775, null]], "pwtools.parse.Cp2kMDOutputFile.default_units": [[776, null]], "pwtools.parse.Cp2kMDOutputFile.dump": [[777, null]], "pwtools.parse.Cp2kMDOutputFile.get_cell": [[778, null]], "pwtools.parse.Cp2kMDOutputFile.get_cont": [[779, null]], "pwtools.parse.Cp2kMDOutputFile.get_coords": [[780, null]], "pwtools.parse.Cp2kMDOutputFile.get_econst": [[781, null]], "pwtools.parse.Cp2kMDOutputFile.get_ekin": [[782, null]], "pwtools.parse.Cp2kMDOutputFile.get_etot": [[783, null]], "pwtools.parse.Cp2kMDOutputFile.get_forces": [[784, null]], "pwtools.parse.Cp2kMDOutputFile.get_natoms": [[785, null]], "pwtools.parse.Cp2kMDOutputFile.get_return_attr": [[786, null]], "pwtools.parse.Cp2kMDOutputFile.get_stress": [[787, null]], "pwtools.parse.Cp2kMDOutputFile.get_struct": [[788, null]], "pwtools.parse.Cp2kMDOutputFile.get_symbols": [[789, null]], "pwtools.parse.Cp2kMDOutputFile.get_temperature": [[790, null]], "pwtools.parse.Cp2kMDOutputFile.get_timestep": [[791, null]], "pwtools.parse.Cp2kMDOutputFile.get_traj": [[792, null]], "pwtools.parse.Cp2kMDOutputFile.get_velocity": [[793, null]], "pwtools.parse.Cp2kMDOutputFile.get_volume": [[794, null]], "pwtools.parse.Cp2kMDOutputFile.init_attr_lst": [[795, null]], "pwtools.parse.Cp2kMDOutputFile.is_set_attr": [[796, null]], "pwtools.parse.Cp2kMDOutputFile.is_set_attr_lst": [[797, null]], "pwtools.parse.Cp2kMDOutputFile.load": [[798, null]], "pwtools.parse.Cp2kMDOutputFile.parse": [[799, null]], "pwtools.parse.Cp2kMDOutputFile.raw_return": [[800, null]], "pwtools.parse.Cp2kMDOutputFile.raw_slice_get": [[801, null]], "pwtools.parse.Cp2kMDOutputFile.set_all": [[802, null]], "pwtools.parse.Cp2kMDOutputFile.set_attr_lst": [[803, null]], "pwtools.parse.Cp2kMDOutputFile.timeaxis": [[804, null]], "pwtools.parse.Cp2kMDOutputFile.try_set_attr": [[805, null]], "pwtools.parse.Cp2kMDOutputFile.try_set_attr_lst": [[806, null]], "pwtools.parse.Cp2kMDOutputFile.update_units": [[807, null]], "pwtools.parse.Cp2kRelaxOutputFile": [[808, null]], "pwtools.parse.Cp2kRelaxOutputFile.apply_units": [[809, null]], "pwtools.parse.Cp2kRelaxOutputFile.assert_attr": [[810, null]], "pwtools.parse.Cp2kRelaxOutputFile.assert_attr_lst": [[811, null]], "pwtools.parse.Cp2kRelaxOutputFile.assert_set_attr": [[812, null]], "pwtools.parse.Cp2kRelaxOutputFile.assert_set_attr_lst": [[813, null]], "pwtools.parse.Cp2kRelaxOutputFile.check_set_attr": [[814, null]], "pwtools.parse.Cp2kRelaxOutputFile.check_set_attr_lst": [[815, null]], "pwtools.parse.Cp2kRelaxOutputFile.default_units": [[816, null]], "pwtools.parse.Cp2kRelaxOutputFile.dump": [[817, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_cell": [[818, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_cont": [[819, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_coords": [[820, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_econst": [[821, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_ekin": [[822, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_etot": [[823, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_forces": [[824, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_natoms": [[825, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_return_attr": [[826, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_stress": [[827, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_struct": [[828, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_symbols": [[829, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_temperature": [[830, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_timestep": [[831, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_traj": [[832, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_velocity": [[833, null]], "pwtools.parse.Cp2kRelaxOutputFile.get_volume": [[834, null]], "pwtools.parse.Cp2kRelaxOutputFile.init_attr_lst": [[835, null]], "pwtools.parse.Cp2kRelaxOutputFile.is_set_attr": [[836, null]], "pwtools.parse.Cp2kRelaxOutputFile.is_set_attr_lst": [[837, null]], "pwtools.parse.Cp2kRelaxOutputFile.load": [[838, null]], "pwtools.parse.Cp2kRelaxOutputFile.parse": [[839, null]], "pwtools.parse.Cp2kRelaxOutputFile.raw_return": [[840, null]], "pwtools.parse.Cp2kRelaxOutputFile.raw_slice_get": [[841, null]], "pwtools.parse.Cp2kRelaxOutputFile.set_all": [[842, null]], "pwtools.parse.Cp2kRelaxOutputFile.set_attr_lst": [[843, null]], "pwtools.parse.Cp2kRelaxOutputFile.timeaxis": [[844, null]], "pwtools.parse.Cp2kRelaxOutputFile.try_set_attr": [[845, null]], "pwtools.parse.Cp2kRelaxOutputFile.try_set_attr_lst": [[846, null]], "pwtools.parse.Cp2kRelaxOutputFile.update_units": [[847, null]], "pwtools.parse.Cp2kSCFOutputFile": [[848, null]], "pwtools.parse.Cp2kSCFOutputFile.apply_units": [[849, null]], "pwtools.parse.Cp2kSCFOutputFile.assert_attr": [[850, null]], "pwtools.parse.Cp2kSCFOutputFile.assert_attr_lst": [[851, null]], "pwtools.parse.Cp2kSCFOutputFile.assert_set_attr": [[852, null]], "pwtools.parse.Cp2kSCFOutputFile.assert_set_attr_lst": [[853, null]], "pwtools.parse.Cp2kSCFOutputFile.check_set_attr": [[854, null]], "pwtools.parse.Cp2kSCFOutputFile.check_set_attr_lst": [[855, null]], "pwtools.parse.Cp2kSCFOutputFile.default_units": [[856, null]], "pwtools.parse.Cp2kSCFOutputFile.dump": [[857, null]], "pwtools.parse.Cp2kSCFOutputFile.get_cont": [[858, null]], "pwtools.parse.Cp2kSCFOutputFile.get_etot": [[859, null]], "pwtools.parse.Cp2kSCFOutputFile.get_forces": [[860, null]], "pwtools.parse.Cp2kSCFOutputFile.get_natoms": [[861, null]], "pwtools.parse.Cp2kSCFOutputFile.get_return_attr": [[862, null]], "pwtools.parse.Cp2kSCFOutputFile.get_stress": [[863, null]], "pwtools.parse.Cp2kSCFOutputFile.get_struct": [[864, null]], "pwtools.parse.Cp2kSCFOutputFile.get_symbols": [[865, null]], "pwtools.parse.Cp2kSCFOutputFile.init_attr_lst": [[866, null]], "pwtools.parse.Cp2kSCFOutputFile.is_set_attr": [[867, null]], "pwtools.parse.Cp2kSCFOutputFile.is_set_attr_lst": [[868, null]], "pwtools.parse.Cp2kSCFOutputFile.load": [[869, null]], "pwtools.parse.Cp2kSCFOutputFile.parse": [[870, null]], "pwtools.parse.Cp2kSCFOutputFile.raw_return": [[871, null]], "pwtools.parse.Cp2kSCFOutputFile.raw_slice_get": [[872, null]], "pwtools.parse.Cp2kSCFOutputFile.set_all": [[873, null]], "pwtools.parse.Cp2kSCFOutputFile.set_attr_lst": [[874, null]], "pwtools.parse.Cp2kSCFOutputFile.try_set_attr": [[875, null]], "pwtools.parse.Cp2kSCFOutputFile.try_set_attr_lst": [[876, null]], "pwtools.parse.Cp2kSCFOutputFile.update_units": [[877, null]], "pwtools.parse.CpmdMDOutputFile": [[878, null]], "pwtools.parse.CpmdMDOutputFile.apply_units": [[879, null]], "pwtools.parse.CpmdMDOutputFile.assert_attr": [[880, null]], "pwtools.parse.CpmdMDOutputFile.assert_attr_lst": [[881, null]], "pwtools.parse.CpmdMDOutputFile.assert_set_attr": [[882, null]], "pwtools.parse.CpmdMDOutputFile.assert_set_attr_lst": [[883, null]], "pwtools.parse.CpmdMDOutputFile.check_set_attr": [[884, null]], "pwtools.parse.CpmdMDOutputFile.check_set_attr_lst": [[885, null]], "pwtools.parse.CpmdMDOutputFile.default_units": [[886, null]], "pwtools.parse.CpmdMDOutputFile.dump": [[887, null]], "pwtools.parse.CpmdMDOutputFile.get_cell": [[888, null]], "pwtools.parse.CpmdMDOutputFile.get_cont": [[889, null]], "pwtools.parse.CpmdMDOutputFile.get_coords": [[890, null]], "pwtools.parse.CpmdMDOutputFile.get_coords_frac": [[891, null]], "pwtools.parse.CpmdMDOutputFile.get_econst": [[892, null]], "pwtools.parse.CpmdMDOutputFile.get_ekin": [[893, null]], "pwtools.parse.CpmdMDOutputFile.get_ekin_cell": [[894, null]], "pwtools.parse.CpmdMDOutputFile.get_ekin_elec": [[895, null]], "pwtools.parse.CpmdMDOutputFile.get_ekinc": [[896, null]], "pwtools.parse.CpmdMDOutputFile.get_ekinh": [[897, null]], "pwtools.parse.CpmdMDOutputFile.get_etot": [[898, null]], "pwtools.parse.CpmdMDOutputFile.get_forces": [[899, null]], "pwtools.parse.CpmdMDOutputFile.get_natoms": [[900, null]], "pwtools.parse.CpmdMDOutputFile.get_nkpoints": [[901, null]], "pwtools.parse.CpmdMDOutputFile.get_nstep_scf": [[902, null]], "pwtools.parse.CpmdMDOutputFile.get_return_attr": [[903, null]], "pwtools.parse.CpmdMDOutputFile.get_scf_converged": [[904, null]], "pwtools.parse.CpmdMDOutputFile.get_stress": [[905, null]], "pwtools.parse.CpmdMDOutputFile.get_struct": [[906, null]], "pwtools.parse.CpmdMDOutputFile.get_symbols": [[907, null]], "pwtools.parse.CpmdMDOutputFile.get_temperature": [[908, null]], "pwtools.parse.CpmdMDOutputFile.get_temperature_cell": [[909, null]], "pwtools.parse.CpmdMDOutputFile.get_timestep": [[910, null]], "pwtools.parse.CpmdMDOutputFile.get_traj": [[911, null]], "pwtools.parse.CpmdMDOutputFile.get_velocity": [[912, null]], "pwtools.parse.CpmdMDOutputFile.init_attr_lst": [[913, null]], "pwtools.parse.CpmdMDOutputFile.is_set_attr": [[914, null]], "pwtools.parse.CpmdMDOutputFile.is_set_attr_lst": [[915, null]], "pwtools.parse.CpmdMDOutputFile.load": [[916, null]], "pwtools.parse.CpmdMDOutputFile.parse": [[917, null]], "pwtools.parse.CpmdMDOutputFile.raw_return": [[918, null]], "pwtools.parse.CpmdMDOutputFile.raw_slice_get": [[919, null]], "pwtools.parse.CpmdMDOutputFile.set_all": [[920, null]], "pwtools.parse.CpmdMDOutputFile.set_attr_lst": [[921, null]], "pwtools.parse.CpmdMDOutputFile.timeaxis": [[922, null]], "pwtools.parse.CpmdMDOutputFile.try_set_attr": [[923, null]], "pwtools.parse.CpmdMDOutputFile.try_set_attr_lst": [[924, null]], "pwtools.parse.CpmdMDOutputFile.update_units": [[925, null]], "pwtools.parse.CpmdSCFOutputFile": [[926, null]], "pwtools.parse.CpmdSCFOutputFile.apply_units": [[927, null]], "pwtools.parse.CpmdSCFOutputFile.assert_attr": [[928, null]], "pwtools.parse.CpmdSCFOutputFile.assert_attr_lst": [[929, null]], "pwtools.parse.CpmdSCFOutputFile.assert_set_attr": [[930, null]], "pwtools.parse.CpmdSCFOutputFile.assert_set_attr_lst": [[931, null]], "pwtools.parse.CpmdSCFOutputFile.check_set_attr": [[932, null]], "pwtools.parse.CpmdSCFOutputFile.check_set_attr_lst": [[933, null]], "pwtools.parse.CpmdSCFOutputFile.default_units": [[934, null]], "pwtools.parse.CpmdSCFOutputFile.dump": [[935, null]], "pwtools.parse.CpmdSCFOutputFile.get_cell": [[936, null]], "pwtools.parse.CpmdSCFOutputFile.get_cont": [[937, null]], "pwtools.parse.CpmdSCFOutputFile.get_coords_frac": [[938, null]], "pwtools.parse.CpmdSCFOutputFile.get_etot": [[939, null]], "pwtools.parse.CpmdSCFOutputFile.get_forces": [[940, null]], "pwtools.parse.CpmdSCFOutputFile.get_natoms": [[941, null]], "pwtools.parse.CpmdSCFOutputFile.get_nkpoints": [[942, null]], "pwtools.parse.CpmdSCFOutputFile.get_nstep_scf": [[943, null]], "pwtools.parse.CpmdSCFOutputFile.get_return_attr": [[944, null]], "pwtools.parse.CpmdSCFOutputFile.get_scf_converged": [[945, null]], "pwtools.parse.CpmdSCFOutputFile.get_stress": [[946, null]], "pwtools.parse.CpmdSCFOutputFile.get_struct": [[947, null]], "pwtools.parse.CpmdSCFOutputFile.get_symbols": [[948, null]], "pwtools.parse.CpmdSCFOutputFile.init_attr_lst": [[949, null]], "pwtools.parse.CpmdSCFOutputFile.is_set_attr": [[950, null]], "pwtools.parse.CpmdSCFOutputFile.is_set_attr_lst": [[951, null]], "pwtools.parse.CpmdSCFOutputFile.load": [[952, null]], "pwtools.parse.CpmdSCFOutputFile.parse": [[953, null]], "pwtools.parse.CpmdSCFOutputFile.raw_return": [[954, null]], "pwtools.parse.CpmdSCFOutputFile.raw_slice_get": [[955, null]], "pwtools.parse.CpmdSCFOutputFile.set_all": [[956, null]], "pwtools.parse.CpmdSCFOutputFile.set_attr_lst": [[957, null]], "pwtools.parse.CpmdSCFOutputFile.try_set_attr": [[958, null]], "pwtools.parse.CpmdSCFOutputFile.try_set_attr_lst": [[959, null]], "pwtools.parse.CpmdSCFOutputFile.update_units": [[960, null]], "pwtools.parse.DcdOutputFile": [[961, null]], "pwtools.parse.DcdOutputFile.get_cell": [[962, null]], "pwtools.parse.DcdOutputFile.get_coords": [[963, null]], "pwtools.parse.DcdOutputFile.get_cryst_const": [[964, null]], "pwtools.parse.DcdOutputFile.get_natoms": [[965, null]], "pwtools.parse.DcdOutputFile.get_nstep": [[966, null]], "pwtools.parse.DcdOutputFile.get_volume": [[967, null]], "pwtools.parse.Ha": [[968, null]], "pwtools.parse.LammpsDcdMDOutputFile": [[969, null]], "pwtools.parse.LammpsDcdMDOutputFile.apply_units": [[970, null]], "pwtools.parse.LammpsDcdMDOutputFile.assert_attr": [[971, null]], "pwtools.parse.LammpsDcdMDOutputFile.assert_attr_lst": [[972, null]], "pwtools.parse.LammpsDcdMDOutputFile.assert_set_attr": [[973, null]], "pwtools.parse.LammpsDcdMDOutputFile.assert_set_attr_lst": [[974, null]], "pwtools.parse.LammpsDcdMDOutputFile.check_set_attr": [[975, null]], "pwtools.parse.LammpsDcdMDOutputFile.check_set_attr_lst": [[976, null]], "pwtools.parse.LammpsDcdMDOutputFile.default_units": [[977, null]], "pwtools.parse.LammpsDcdMDOutputFile.dump": [[978, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_cell": [[979, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_cont": [[980, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_coords": [[981, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_coords_frac": [[982, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_cryst_const": [[983, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_ekin": [[984, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_etot": [[985, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_forces": [[986, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_natoms": [[987, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_nstep": [[988, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_return_attr": [[989, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_stress": [[990, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_struct": [[991, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_symbols": [[992, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_temperature": [[993, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_timestep": [[994, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_traj": [[995, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_velocity": [[996, null]], "pwtools.parse.LammpsDcdMDOutputFile.get_volume": [[997, null]], "pwtools.parse.LammpsDcdMDOutputFile.init_attr_lst": [[998, null]], "pwtools.parse.LammpsDcdMDOutputFile.is_set_attr": [[999, null]], "pwtools.parse.LammpsDcdMDOutputFile.is_set_attr_lst": [[1000, null]], "pwtools.parse.LammpsDcdMDOutputFile.load": [[1001, null]], "pwtools.parse.LammpsDcdMDOutputFile.parse": [[1002, null]], "pwtools.parse.LammpsDcdMDOutputFile.raw_return": [[1003, null]], "pwtools.parse.LammpsDcdMDOutputFile.raw_slice_get": [[1004, null]], "pwtools.parse.LammpsDcdMDOutputFile.set_all": [[1005, null]], "pwtools.parse.LammpsDcdMDOutputFile.set_attr_lst": [[1006, null]], "pwtools.parse.LammpsDcdMDOutputFile.timeaxis": [[1007, null]], "pwtools.parse.LammpsDcdMDOutputFile.try_set_attr": [[1008, null]], "pwtools.parse.LammpsDcdMDOutputFile.try_set_attr_lst": [[1009, null]], "pwtools.parse.LammpsDcdMDOutputFile.update_units": [[1010, null]], "pwtools.parse.LammpsTextMDOutputFile": [[1011, null]], "pwtools.parse.LammpsTextMDOutputFile.apply_units": [[1012, null]], "pwtools.parse.LammpsTextMDOutputFile.assert_attr": [[1013, null]], "pwtools.parse.LammpsTextMDOutputFile.assert_attr_lst": [[1014, null]], "pwtools.parse.LammpsTextMDOutputFile.assert_set_attr": [[1015, null]], "pwtools.parse.LammpsTextMDOutputFile.assert_set_attr_lst": [[1016, null]], "pwtools.parse.LammpsTextMDOutputFile.check_set_attr": [[1017, null]], "pwtools.parse.LammpsTextMDOutputFile.check_set_attr_lst": [[1018, null]], "pwtools.parse.LammpsTextMDOutputFile.default_units": [[1019, null]], "pwtools.parse.LammpsTextMDOutputFile.dump": [[1020, null]], "pwtools.parse.LammpsTextMDOutputFile.get_cell": [[1021, null]], "pwtools.parse.LammpsTextMDOutputFile.get_cont": [[1022, null]], "pwtools.parse.LammpsTextMDOutputFile.get_coords": [[1023, null]], "pwtools.parse.LammpsTextMDOutputFile.get_coords_frac": [[1024, null]], "pwtools.parse.LammpsTextMDOutputFile.get_cryst_const": [[1025, null]], "pwtools.parse.LammpsTextMDOutputFile.get_ekin": [[1026, null]], "pwtools.parse.LammpsTextMDOutputFile.get_etot": [[1027, null]], "pwtools.parse.LammpsTextMDOutputFile.get_forces": [[1028, null]], "pwtools.parse.LammpsTextMDOutputFile.get_natoms": [[1029, null]], "pwtools.parse.LammpsTextMDOutputFile.get_return_attr": [[1030, null]], "pwtools.parse.LammpsTextMDOutputFile.get_stress": [[1031, null]], "pwtools.parse.LammpsTextMDOutputFile.get_struct": [[1032, null]], "pwtools.parse.LammpsTextMDOutputFile.get_symbols": [[1033, null]], "pwtools.parse.LammpsTextMDOutputFile.get_temperature": [[1034, null]], "pwtools.parse.LammpsTextMDOutputFile.get_timestep": [[1035, null]], "pwtools.parse.LammpsTextMDOutputFile.get_traj": [[1036, null]], "pwtools.parse.LammpsTextMDOutputFile.get_velocity": [[1037, null]], "pwtools.parse.LammpsTextMDOutputFile.get_volume": [[1038, null]], "pwtools.parse.LammpsTextMDOutputFile.init_attr_lst": [[1039, null]], "pwtools.parse.LammpsTextMDOutputFile.is_set_attr": [[1040, null]], "pwtools.parse.LammpsTextMDOutputFile.is_set_attr_lst": [[1041, null]], "pwtools.parse.LammpsTextMDOutputFile.load": [[1042, null]], "pwtools.parse.LammpsTextMDOutputFile.parse": [[1043, null]], "pwtools.parse.LammpsTextMDOutputFile.raw_return": [[1044, null]], "pwtools.parse.LammpsTextMDOutputFile.raw_slice_get": [[1045, null]], "pwtools.parse.LammpsTextMDOutputFile.set_all": [[1046, null]], "pwtools.parse.LammpsTextMDOutputFile.set_attr_lst": [[1047, null]], "pwtools.parse.LammpsTextMDOutputFile.timeaxis": [[1048, null]], "pwtools.parse.LammpsTextMDOutputFile.try_set_attr": [[1049, null]], "pwtools.parse.LammpsTextMDOutputFile.try_set_attr_lst": [[1050, null]], "pwtools.parse.LammpsTextMDOutputFile.update_units": [[1051, null]], "pwtools.parse.PDBFile": [[1052, null]], "pwtools.parse.PDBFile.apply_units": [[1053, null]], "pwtools.parse.PDBFile.assert_attr": [[1054, null]], "pwtools.parse.PDBFile.assert_attr_lst": [[1055, null]], "pwtools.parse.PDBFile.assert_set_attr": [[1056, null]], "pwtools.parse.PDBFile.assert_set_attr_lst": [[1057, null]], "pwtools.parse.PDBFile.check_set_attr": [[1058, null]], "pwtools.parse.PDBFile.check_set_attr_lst": [[1059, null]], "pwtools.parse.PDBFile.default_units": [[1060, null]], "pwtools.parse.PDBFile.dump": [[1061, null]], "pwtools.parse.PDBFile.get_cont": [[1062, null]], "pwtools.parse.PDBFile.get_coords": [[1063, null]], "pwtools.parse.PDBFile.get_cryst_const": [[1064, null]], "pwtools.parse.PDBFile.get_return_attr": [[1065, null]], "pwtools.parse.PDBFile.get_struct": [[1066, null]], "pwtools.parse.PDBFile.get_symbols": [[1067, null]], "pwtools.parse.PDBFile.init_attr_lst": [[1068, null]], "pwtools.parse.PDBFile.is_set_attr": [[1069, null]], "pwtools.parse.PDBFile.is_set_attr_lst": [[1070, null]], "pwtools.parse.PDBFile.load": [[1071, null]], "pwtools.parse.PDBFile.parse": [[1072, null]], "pwtools.parse.PDBFile.raw_return": [[1073, null]], "pwtools.parse.PDBFile.raw_slice_get": [[1074, null]], "pwtools.parse.PDBFile.set_all": [[1075, null]], "pwtools.parse.PDBFile.set_attr_lst": [[1076, null]], "pwtools.parse.PDBFile.try_set_attr": [[1077, null]], "pwtools.parse.PDBFile.try_set_attr_lst": [[1078, null]], "pwtools.parse.PDBFile.update_units": [[1079, null]], "pwtools.parse.PwMDOutputFile": [[1080, null]], "pwtools.parse.PwMDOutputFile.apply_units": [[1081, null]], "pwtools.parse.PwMDOutputFile.assert_attr": [[1082, null]], "pwtools.parse.PwMDOutputFile.assert_attr_lst": [[1083, null]], "pwtools.parse.PwMDOutputFile.assert_set_attr": [[1084, null]], "pwtools.parse.PwMDOutputFile.assert_set_attr_lst": [[1085, null]], "pwtools.parse.PwMDOutputFile.check_set_attr": [[1086, null]], "pwtools.parse.PwMDOutputFile.check_set_attr_lst": [[1087, null]], "pwtools.parse.PwMDOutputFile.default_units": [[1088, null]], "pwtools.parse.PwMDOutputFile.dump": [[1089, null]], "pwtools.parse.PwMDOutputFile.get_alat": [[1090, null]], "pwtools.parse.PwMDOutputFile.get_cell": [[1091, null]], "pwtools.parse.PwMDOutputFile.get_cell_unit": [[1092, null]], "pwtools.parse.PwMDOutputFile.get_cont": [[1093, null]], "pwtools.parse.PwMDOutputFile.get_coords": [[1094, null]], "pwtools.parse.PwMDOutputFile.get_coords_frac": [[1095, null]], "pwtools.parse.PwMDOutputFile.get_coords_unit": [[1096, null]], "pwtools.parse.PwMDOutputFile.get_ekin": [[1097, null]], "pwtools.parse.PwMDOutputFile.get_etot": [[1098, null]], "pwtools.parse.PwMDOutputFile.get_forces": [[1099, null]], "pwtools.parse.PwMDOutputFile.get_natoms": [[1100, null]], "pwtools.parse.PwMDOutputFile.get_nkpoints": [[1101, null]], "pwtools.parse.PwMDOutputFile.get_nstep_scf": [[1102, null]], "pwtools.parse.PwMDOutputFile.get_return_attr": [[1103, null]], "pwtools.parse.PwMDOutputFile.get_scf_converged": [[1104, null]], "pwtools.parse.PwMDOutputFile.get_stress": [[1105, null]], "pwtools.parse.PwMDOutputFile.get_struct": [[1106, null]], "pwtools.parse.PwMDOutputFile.get_symbols": [[1107, null]], "pwtools.parse.PwMDOutputFile.get_temperature": [[1108, null]], "pwtools.parse.PwMDOutputFile.get_timestep": [[1109, null]], "pwtools.parse.PwMDOutputFile.get_traj": [[1110, null]], "pwtools.parse.PwMDOutputFile.init_attr_lst": [[1111, null]], "pwtools.parse.PwMDOutputFile.is_set_attr": [[1112, null]], "pwtools.parse.PwMDOutputFile.is_set_attr_lst": [[1113, null]], "pwtools.parse.PwMDOutputFile.load": [[1114, null]], "pwtools.parse.PwMDOutputFile.parse": [[1115, null]], "pwtools.parse.PwMDOutputFile.raw_return": [[1116, null]], "pwtools.parse.PwMDOutputFile.raw_slice_get": [[1117, null]], "pwtools.parse.PwMDOutputFile.set_all": [[1118, null]], "pwtools.parse.PwMDOutputFile.set_attr_lst": [[1119, null]], "pwtools.parse.PwMDOutputFile.timeaxis": [[1120, null]], "pwtools.parse.PwMDOutputFile.try_set_attr": [[1121, null]], "pwtools.parse.PwMDOutputFile.try_set_attr_lst": [[1122, null]], "pwtools.parse.PwMDOutputFile.update_units": [[1123, null]], "pwtools.parse.PwSCFOutputFile": [[1124, null]], "pwtools.parse.PwSCFOutputFile.apply_units": [[1125, null]], "pwtools.parse.PwSCFOutputFile.assert_attr": [[1126, null]], "pwtools.parse.PwSCFOutputFile.assert_attr_lst": [[1127, null]], "pwtools.parse.PwSCFOutputFile.assert_set_attr": [[1128, null]], "pwtools.parse.PwSCFOutputFile.assert_set_attr_lst": [[1129, null]], "pwtools.parse.PwSCFOutputFile.check_set_attr": [[1130, null]], "pwtools.parse.PwSCFOutputFile.check_set_attr_lst": [[1131, null]], "pwtools.parse.PwSCFOutputFile.default_units": [[1132, null]], "pwtools.parse.PwSCFOutputFile.dump": [[1133, null]], "pwtools.parse.PwSCFOutputFile.get_alat": [[1134, null]], "pwtools.parse.PwSCFOutputFile.get_cell": [[1135, null]], "pwtools.parse.PwSCFOutputFile.get_cont": [[1136, null]], "pwtools.parse.PwSCFOutputFile.get_coords": [[1137, null]], "pwtools.parse.PwSCFOutputFile.get_etot": [[1138, null]], "pwtools.parse.PwSCFOutputFile.get_forces": [[1139, null]], "pwtools.parse.PwSCFOutputFile.get_natoms": [[1140, null]], "pwtools.parse.PwSCFOutputFile.get_nkpoints": [[1141, null]], "pwtools.parse.PwSCFOutputFile.get_nstep_scf": [[1142, null]], "pwtools.parse.PwSCFOutputFile.get_return_attr": [[1143, null]], "pwtools.parse.PwSCFOutputFile.get_scf_converged": [[1144, null]], "pwtools.parse.PwSCFOutputFile.get_stress": [[1145, null]], "pwtools.parse.PwSCFOutputFile.get_struct": [[1146, null]], "pwtools.parse.PwSCFOutputFile.get_symbols": [[1147, null]], "pwtools.parse.PwSCFOutputFile.init_attr_lst": [[1148, null]], "pwtools.parse.PwSCFOutputFile.is_set_attr": [[1149, null]], "pwtools.parse.PwSCFOutputFile.is_set_attr_lst": [[1150, null]], "pwtools.parse.PwSCFOutputFile.load": [[1151, null]], "pwtools.parse.PwSCFOutputFile.parse": [[1152, null]], "pwtools.parse.PwSCFOutputFile.raw_return": [[1153, null]], "pwtools.parse.PwSCFOutputFile.raw_slice_get": [[1154, null]], "pwtools.parse.PwSCFOutputFile.set_all": [[1155, null]], "pwtools.parse.PwSCFOutputFile.set_attr_lst": [[1156, null]], "pwtools.parse.PwSCFOutputFile.try_set_attr": [[1157, null]], "pwtools.parse.PwSCFOutputFile.try_set_attr_lst": [[1158, null]], "pwtools.parse.PwSCFOutputFile.update_units": [[1159, null]], "pwtools.parse.PwVCMDOutputFile": [[1160, null]], "pwtools.parse.PwVCMDOutputFile.apply_units": [[1161, null]], "pwtools.parse.PwVCMDOutputFile.assert_attr": [[1162, null]], "pwtools.parse.PwVCMDOutputFile.assert_attr_lst": [[1163, null]], "pwtools.parse.PwVCMDOutputFile.assert_set_attr": [[1164, null]], "pwtools.parse.PwVCMDOutputFile.assert_set_attr_lst": [[1165, null]], "pwtools.parse.PwVCMDOutputFile.check_set_attr": [[1166, null]], "pwtools.parse.PwVCMDOutputFile.check_set_attr_lst": [[1167, null]], "pwtools.parse.PwVCMDOutputFile.default_units": [[1168, null]], "pwtools.parse.PwVCMDOutputFile.dump": [[1169, null]], "pwtools.parse.PwVCMDOutputFile.get_alat": [[1170, null]], "pwtools.parse.PwVCMDOutputFile.get_cell": [[1171, null]], "pwtools.parse.PwVCMDOutputFile.get_cell_unit": [[1172, null]], "pwtools.parse.PwVCMDOutputFile.get_cont": [[1173, null]], "pwtools.parse.PwVCMDOutputFile.get_coords": [[1174, null]], "pwtools.parse.PwVCMDOutputFile.get_coords_frac": [[1175, null]], "pwtools.parse.PwVCMDOutputFile.get_coords_unit": [[1176, null]], "pwtools.parse.PwVCMDOutputFile.get_econst": [[1177, null]], "pwtools.parse.PwVCMDOutputFile.get_ekin": [[1178, null]], "pwtools.parse.PwVCMDOutputFile.get_etot": [[1179, null]], "pwtools.parse.PwVCMDOutputFile.get_forces": [[1180, null]], "pwtools.parse.PwVCMDOutputFile.get_natoms": [[1181, null]], "pwtools.parse.PwVCMDOutputFile.get_nkpoints": [[1182, null]], "pwtools.parse.PwVCMDOutputFile.get_nstep_scf": [[1183, null]], "pwtools.parse.PwVCMDOutputFile.get_return_attr": [[1184, null]], "pwtools.parse.PwVCMDOutputFile.get_scf_converged": [[1185, null]], "pwtools.parse.PwVCMDOutputFile.get_stress": [[1186, null]], "pwtools.parse.PwVCMDOutputFile.get_struct": [[1187, null]], "pwtools.parse.PwVCMDOutputFile.get_symbols": [[1188, null]], "pwtools.parse.PwVCMDOutputFile.get_temperature": [[1189, null]], "pwtools.parse.PwVCMDOutputFile.get_timestep": [[1190, null]], "pwtools.parse.PwVCMDOutputFile.get_traj": [[1191, null]], "pwtools.parse.PwVCMDOutputFile.init_attr_lst": [[1192, null]], "pwtools.parse.PwVCMDOutputFile.is_set_attr": [[1193, null]], "pwtools.parse.PwVCMDOutputFile.is_set_attr_lst": [[1194, null]], "pwtools.parse.PwVCMDOutputFile.load": [[1195, null]], "pwtools.parse.PwVCMDOutputFile.parse": [[1196, null]], "pwtools.parse.PwVCMDOutputFile.raw_return": [[1197, null]], "pwtools.parse.PwVCMDOutputFile.raw_slice_get": [[1198, null]], "pwtools.parse.PwVCMDOutputFile.set_all": [[1199, null]], "pwtools.parse.PwVCMDOutputFile.set_attr_lst": [[1200, null]], "pwtools.parse.PwVCMDOutputFile.timeaxis": [[1201, null]], "pwtools.parse.PwVCMDOutputFile.try_set_attr": [[1202, null]], "pwtools.parse.PwVCMDOutputFile.try_set_attr_lst": [[1203, null]], "pwtools.parse.PwVCMDOutputFile.update_units": [[1204, null]], "pwtools.parse.Ry": [[1205, null]], "pwtools.parse.StructureFileParser": [[1206, null]], "pwtools.parse.StructureFileParser.apply_units": [[1207, null]], "pwtools.parse.StructureFileParser.assert_attr": [[1208, null]], "pwtools.parse.StructureFileParser.assert_attr_lst": [[1209, null]], "pwtools.parse.StructureFileParser.assert_set_attr": [[1210, null]], "pwtools.parse.StructureFileParser.assert_set_attr_lst": [[1211, null]], "pwtools.parse.StructureFileParser.check_set_attr": [[1212, null]], "pwtools.parse.StructureFileParser.check_set_attr_lst": [[1213, null]], "pwtools.parse.StructureFileParser.default_units": [[1214, null]], "pwtools.parse.StructureFileParser.dump": [[1215, null]], "pwtools.parse.StructureFileParser.get_cont": [[1216, null]], "pwtools.parse.StructureFileParser.get_return_attr": [[1217, null]], "pwtools.parse.StructureFileParser.get_struct": [[1218, null]], "pwtools.parse.StructureFileParser.init_attr_lst": [[1219, null]], "pwtools.parse.StructureFileParser.is_set_attr": [[1220, null]], "pwtools.parse.StructureFileParser.is_set_attr_lst": [[1221, null]], "pwtools.parse.StructureFileParser.load": [[1222, null]], "pwtools.parse.StructureFileParser.parse": [[1223, null]], "pwtools.parse.StructureFileParser.raw_return": [[1224, null]], "pwtools.parse.StructureFileParser.raw_slice_get": [[1225, null]], "pwtools.parse.StructureFileParser.set_all": [[1226, null]], "pwtools.parse.StructureFileParser.set_attr_lst": [[1227, null]], "pwtools.parse.StructureFileParser.try_set_attr": [[1228, null]], "pwtools.parse.StructureFileParser.try_set_attr_lst": [[1229, null]], "pwtools.parse.StructureFileParser.update_units": [[1230, null]], "pwtools.parse.TrajectoryFileParser": [[1231, null]], "pwtools.parse.TrajectoryFileParser.apply_units": [[1232, null]], "pwtools.parse.TrajectoryFileParser.assert_attr": [[1233, null]], "pwtools.parse.TrajectoryFileParser.assert_attr_lst": [[1234, null]], "pwtools.parse.TrajectoryFileParser.assert_set_attr": [[1235, null]], "pwtools.parse.TrajectoryFileParser.assert_set_attr_lst": [[1236, null]], "pwtools.parse.TrajectoryFileParser.check_set_attr": [[1237, null]], "pwtools.parse.TrajectoryFileParser.check_set_attr_lst": [[1238, null]], "pwtools.parse.TrajectoryFileParser.default_units": [[1239, null]], "pwtools.parse.TrajectoryFileParser.dump": [[1240, null]], "pwtools.parse.TrajectoryFileParser.get_cont": [[1241, null]], "pwtools.parse.TrajectoryFileParser.get_return_attr": [[1242, null]], "pwtools.parse.TrajectoryFileParser.get_struct": [[1243, null]], "pwtools.parse.TrajectoryFileParser.get_traj": [[1244, null]], "pwtools.parse.TrajectoryFileParser.init_attr_lst": [[1245, null]], "pwtools.parse.TrajectoryFileParser.is_set_attr": [[1246, null]], "pwtools.parse.TrajectoryFileParser.is_set_attr_lst": [[1247, null]], "pwtools.parse.TrajectoryFileParser.load": [[1248, null]], "pwtools.parse.TrajectoryFileParser.parse": [[1249, null]], "pwtools.parse.TrajectoryFileParser.raw_return": [[1250, null]], "pwtools.parse.TrajectoryFileParser.raw_slice_get": [[1251, null]], "pwtools.parse.TrajectoryFileParser.set_all": [[1252, null]], "pwtools.parse.TrajectoryFileParser.set_attr_lst": [[1253, null]], "pwtools.parse.TrajectoryFileParser.timeaxis": [[1254, null]], "pwtools.parse.TrajectoryFileParser.try_set_attr": [[1255, null]], "pwtools.parse.TrajectoryFileParser.try_set_attr_lst": [[1256, null]], "pwtools.parse.TrajectoryFileParser.update_units": [[1257, null]], "pwtools.parse.arr1d_from_txt": [[1258, null]], "pwtools.parse.arr2d_from_txt": [[1259, null]], "pwtools.parse.axis_lens": [[1260, null]], "pwtools.parse.eV": [[1261, null]], "pwtools.parse.float_from_txt": [[1262, null]], "pwtools.parse.fs": [[1263, null]], "pwtools.parse.int_from_txt": [[1264, null]], "pwtools.parse.nstep_from_txt": [[1265, null]], "pwtools.parse.pi": [[1266, null]], "pwtools.parse.ps": [[1267, null]], "pwtools.parse.thart": [[1268, null]], "pwtools.parse.traj_from_txt": [[1269, null]], "pwtools.pwscf.EPS": [[1270, null]], "pwtools.pwscf.atpos_str": [[1271, null]], "pwtools.pwscf.atpos_str_fast": [[1272, null]], "pwtools.pwscf.atspec_str": [[1273, null]], "pwtools.pwscf.bool2str": [[1274, null]], "pwtools.pwscf.ibrav2cell": [[1275, null]], "pwtools.pwscf.kpoints_str": [[1276, null]], "pwtools.pwscf.kpoints_str_pwin": [[1277, null]], "pwtools.pwscf.kpoints_str_pwin_full": [[1278, null]], "pwtools.pwscf.kpointstr": [[1279, null]], "pwtools.pwscf.kpointstr_pwin": [[1280, null]], "pwtools.pwscf.kpointstr_pwin2": [[1281, null]], "pwtools.pwscf.read_all_dyn": [[1282, null]], "pwtools.pwscf.read_dyn": [[1283, null]], "pwtools.pwscf.read_dynmat": [[1284, null]], "pwtools.pwscf.read_dynmat_ir_raman": [[1285, null]], "pwtools.pwscf.read_dynmat_out": [[1286, null]], "pwtools.pwscf.read_matdyn_freq": [[1287, null]], "pwtools.pwscf.read_matdyn_modes": [[1288, null]], "pwtools.pydos.direct_pdos": [[1289, null]], "pwtools.pydos.fvacf": [[1290, null]], "pwtools.pydos.pdos": [[1291, null]], "pwtools.pydos.pyvacf": [[1292, null]], "pwtools.pydos.vacf_pdos": [[1293, null]], "pwtools.random.RandomStructure": [[1294, null]], "pwtools.random.RandomStructure.get_random_cryst_const": [[1295, null]], "pwtools.random.RandomStructure.get_random_struct": [[1296, null]], "pwtools.random.RandomStructureFail": [[1297, null]], "pwtools.random.pi": [[1298, null]], "pwtools.random.random_struct": [[1299, null]], "pwtools.rbf.core.JAX_MODE": [[1300, null]], "pwtools.rbf.core.Rbf": [[1301, null]], "pwtools.rbf.core.Rbf.deriv": [[1302, null]], "pwtools.rbf.core.Rbf.deriv_jax": [[1303, null]], "pwtools.rbf.core.Rbf.fit": [[1304, null]], "pwtools.rbf.core.Rbf.fit_error": [[1305, null]], "pwtools.rbf.core.Rbf.get_distsq": [[1306, null]], "pwtools.rbf.core.Rbf.get_params": [[1307, null]], "pwtools.rbf.core.Rbf.predict": [[1308, null]], "pwtools.rbf.core._np_distsq": [[1309, null]], "pwtools.rbf.core.estimate_p": [[1310, null]], "pwtools.rbf.core.euclidean_dists": [[1311, null]], "pwtools.rbf.core.jit": [[1312, null]], "pwtools.rbf.core.rbf_dct": [[1313, null]], "pwtools.rbf.core.rbf_gauss": [[1314, null]], "pwtools.rbf.core.rbf_inv_multi": [[1315, null]], "pwtools.rbf.core.rbf_multi": [[1316, null]], "pwtools.rbf.core.squared_dists": [[1317, null]], "pwtools.rbf.hyperopt.FitError": [[1318, null]], "pwtools.rbf.hyperopt.FitError.cv": [[1319, null]], "pwtools.rbf.hyperopt.FitError.err_cv": [[1320, null]], "pwtools.rbf.hyperopt.FitError.err_direct": [[1321, null]], "pwtools.rbf.hyperopt.RepeatedKFold": [[1322, null]], "pwtools.rbf.hyperopt.fit_opt": [[1323, null]], "pwtools.regex.float_re": [[1324, null]], "pwtools.signal.FIRFilter": [[1325, null]], "pwtools.signal.acorr": [[1326, null]], "pwtools.signal.cauchy": [[1327, null]], "pwtools.signal.dft": [[1328, null]], "pwtools.signal.ezfft": [[1329, null]], "pwtools.signal.fft_1d_loop": [[1330, null]], "pwtools.signal.fftsample": [[1331, null]], "pwtools.signal.find_peaks": [[1332, null]], "pwtools.signal.gauss": [[1333, null]], "pwtools.signal.lorentz": [[1334, null]], "pwtools.signal.mirror": [[1335, null]], "pwtools.signal.odd": [[1336, null]], "pwtools.signal.pad_zeros": [[1337, null]], "pwtools.signal.scale": [[1338, null]], "pwtools.signal.smooth": [[1339, null]], "pwtools.signal.welch": [[1340, null]], "pwtools.sql.SQLEntry": [[1341, null]], "pwtools.sql.SQLiteDB": [[1342, null]], "pwtools.sql.SQLiteDB.add_column": [[1343, null]], "pwtools.sql.SQLiteDB.add_columns": [[1344, null]], "pwtools.sql.SQLiteDB.attach_column": [[1345, null]], "pwtools.sql.SQLiteDB.commit": [[1346, null]], "pwtools.sql.SQLiteDB.create_table": [[1347, null]], "pwtools.sql.SQLiteDB.execute": [[1348, null]], "pwtools.sql.SQLiteDB.executemany": [[1349, null]], "pwtools.sql.SQLiteDB.executescript": [[1350, null]], "pwtools.sql.SQLiteDB.fill_column": [[1351, null]], "pwtools.sql.SQLiteDB.finish": [[1352, null]], "pwtools.sql.SQLiteDB.get_array": [[1353, null]], "pwtools.sql.SQLiteDB.get_array1d": [[1354, null]], "pwtools.sql.SQLiteDB.get_dict": [[1355, null]], "pwtools.sql.SQLiteDB.get_header": [[1356, null]], "pwtools.sql.SQLiteDB.get_list1d": [[1357, null]], "pwtools.sql.SQLiteDB.get_max_rowid": [[1358, null]], "pwtools.sql.SQLiteDB.get_single": [[1359, null]], "pwtools.sql.SQLiteDB.get_table": [[1360, null]], "pwtools.sql.SQLiteDB.has_column": [[1361, null]], "pwtools.sql.SQLiteDB.has_table": [[1362, null]], "pwtools.sql.SQLiteDB.set_table": [[1363, null]], "pwtools.sql.find_sqltype": [[1364, null]], "pwtools.sql.fix_sql_header": [[1365, null]], "pwtools.sql.fix_sqltype": [[1366, null]], "pwtools.sql.get_test_db": [[1367, null]], "pwtools.sql.makedb": [[1368, null]], "pwtools.sql.sql_column": [[1369, null]], "pwtools.sql.sql_column_old": [[1370, null]], "pwtools.sql.sql_matrix": [[1371, null]], "pwtools.symmetry.is_same_struct": [[1372, null]], "pwtools.symmetry.spglib2struct": [[1373, null]], "pwtools.symmetry.spglib_get_primitive": [[1374, null]], "pwtools.symmetry.spglib_get_spacegroup": [[1375, null]], "pwtools.symmetry.struct2spglib": [[1376, null]], "pwtools.thermo.Gibbs": [[1377, null]], "pwtools.thermo.Gibbs.calc_F": [[1378, null]], "pwtools.thermo.Gibbs.calc_G": [[1379, null]], "pwtools.thermo.Gibbs.calc_H": [[1380, null]], "pwtools.thermo.Gibbs.set_fitfunc": [[1381, null]], "pwtools.thermo.HarmonicThermo": [[1382, null]], "pwtools.thermo.HarmonicThermo.cv": [[1383, null]], "pwtools.thermo.HarmonicThermo.evib": [[1384, null]], "pwtools.thermo.HarmonicThermo.fvib": [[1385, null]], "pwtools.thermo.HarmonicThermo.isochoric_heat_capacity": [[1386, null]], "pwtools.thermo.HarmonicThermo.svib": [[1387, null]], "pwtools.thermo.HarmonicThermo.vibrational_entropy": [[1388, null]], "pwtools.thermo.HarmonicThermo.vibrational_free_energy": [[1389, null]], "pwtools.thermo.HarmonicThermo.vibrational_internal_energy": [[1390, null]], "pwtools.thermo.R": [[1391, null]], "pwtools.thermo.Ry_to_J": [[1392, null]], "pwtools.thermo.c0": [[1393, null]], "pwtools.thermo.coth": [[1394, null]], "pwtools.thermo.debye_func": [[1395, null]], "pwtools.thermo.eV": [[1396, null]], "pwtools.thermo.eV_by_Ang3_to_GPa": [[1397, null]], "pwtools.thermo.einstein_func": [[1398, null]], "pwtools.thermo.expansion": [[1399, null]], "pwtools.thermo.hplanck": [[1400, null]], "pwtools.thermo.kb": [[1401, null]], "pwtools.thermo.pi": [[1402, null]], "pwtools.timer.TagTimer": [[1403, null]], "pwtools.timer.TagTimer.p": [[1404, null]], "pwtools.timer.TagTimer.pt": [[1405, null]], "pwtools.timer.TagTimer.t": [[1406, null]], "pwtools.verbose.VERBOSE": [[1407, null]], "pwtools.verbose.verbose": [[1408, null]], "pwtools.visualize.ViewFactory": [[1409, null]], "pwtools.visualize.assert_struct": [[1410, null]], "pwtools.visualize.avogadro_cmd": [[1411, null]], "pwtools.visualize.view_avogadro": [[1412, null]], "pwtools.visualize.view_jmol": [[1413, null]], "pwtools.visualize.view_vmd_axsf": [[1414, null]], "pwtools.visualize.view_vmd_xyz": [[1415, null]], "pwtools.visualize.view_xcrysden": [[1416, null]], "pydos": [[23, null]], "random": [[24, null]], "rbf.core": [[25, null]], "rbf.hyperopt": [[26, null]], "regex": [[27, null]], "signal": [[28, null]], "sql": [[29, null]], "symmetry": [[30, null]], "thermo": [[31, null]], "timer": [[32, null]], "verbose": [[33, null]], "visualize": [[34, null]], "\u201cFake\u201d 1d a.k.a. usual QHA with varying volume": [[1431, "fake-1d-a-k-a-usual-qha-with-varying-volume"]]}, "docnames": ["generated/api/__sphinx_autodoc_module__pwtools._dcd", "generated/api/__sphinx_autodoc_module__pwtools._flib", "generated/api/__sphinx_autodoc_module__pwtools.arrayio", "generated/api/__sphinx_autodoc_module__pwtools.atomic_data", "generated/api/__sphinx_autodoc_module__pwtools.base", "generated/api/__sphinx_autodoc_module__pwtools.batch", "generated/api/__sphinx_autodoc_module__pwtools.calculators", "generated/api/__sphinx_autodoc_module__pwtools.comb", "generated/api/__sphinx_autodoc_module__pwtools.common", "generated/api/__sphinx_autodoc_module__pwtools.config", "generated/api/__sphinx_autodoc_module__pwtools.constants", "generated/api/__sphinx_autodoc_module__pwtools.crys", "generated/api/__sphinx_autodoc_module__pwtools.dcd", "generated/api/__sphinx_autodoc_module__pwtools.decorators", "generated/api/__sphinx_autodoc_module__pwtools.eos", "generated/api/__sphinx_autodoc_module__pwtools.io", "generated/api/__sphinx_autodoc_module__pwtools.kpath", "generated/api/__sphinx_autodoc_module__pwtools.lammps", "generated/api/__sphinx_autodoc_module__pwtools.mpl", "generated/api/__sphinx_autodoc_module__pwtools.mttk", "generated/api/__sphinx_autodoc_module__pwtools.num", "generated/api/__sphinx_autodoc_module__pwtools.parse", "generated/api/__sphinx_autodoc_module__pwtools.pwscf", "generated/api/__sphinx_autodoc_module__pwtools.pydos", "generated/api/__sphinx_autodoc_module__pwtools.random", "generated/api/__sphinx_autodoc_module__pwtools.rbf.core", "generated/api/__sphinx_autodoc_module__pwtools.rbf.hyperopt", "generated/api/__sphinx_autodoc_module__pwtools.regex", "generated/api/__sphinx_autodoc_module__pwtools.signal", "generated/api/__sphinx_autodoc_module__pwtools.sql", "generated/api/__sphinx_autodoc_module__pwtools.symmetry", "generated/api/__sphinx_autodoc_module__pwtools.thermo", "generated/api/__sphinx_autodoc_module__pwtools.timer", "generated/api/__sphinx_autodoc_module__pwtools.verbose", "generated/api/__sphinx_autodoc_module__pwtools.visualize", "generated/api/index", "generated/api/pwtools._dcd.get_dcd_file_info", "generated/api/pwtools._dcd.open_file", "generated/api/pwtools._dcd.read_dcd_data", "generated/api/pwtools._dcd.read_dcd_data_from_unit", "generated/api/pwtools._dcd.read_dcd_header_from_unit", "generated/api/pwtools._flib.acorr", "generated/api/pwtools._flib.angles", "generated/api/pwtools._flib.cart2frac", "generated/api/pwtools._flib.cart2frac_traj", "generated/api/pwtools._flib.distances_traj", "generated/api/pwtools._flib.distsq", "generated/api/pwtools._flib.distsq_frac", "generated/api/pwtools._flib.frac2cart", "generated/api/pwtools._flib.frac2cart_traj", "generated/api/pwtools._flib.solve", "generated/api/pwtools._flib.vacf", "generated/api/pwtools._flib.vect_loops", "generated/api/pwtools.arrayio.HEADER_COMMENT", "generated/api/pwtools.arrayio.HEADER_MAXLINES", "generated/api/pwtools.arrayio.TXT_MAXDIM", "generated/api/pwtools.arrayio._read_header_config", "generated/api/pwtools.arrayio._write_header_config", "generated/api/pwtools.arrayio.arr2d_to_3d", "generated/api/pwtools.arrayio.readtxt", "generated/api/pwtools.arrayio.writetxt", "generated/api/pwtools.atomic_data.covalent_radii", "generated/api/pwtools.atomic_data.masses", "generated/api/pwtools.atomic_data.missing", "generated/api/pwtools.atomic_data.numbers", "generated/api/pwtools.atomic_data.pt", "generated/api/pwtools.atomic_data.symbols", "generated/api/pwtools.base.FlexibleGetters", "generated/api/pwtools.base.FlexibleGetters.assert_attr", "generated/api/pwtools.base.FlexibleGetters.assert_attr_lst", "generated/api/pwtools.base.FlexibleGetters.assert_set_attr", "generated/api/pwtools.base.FlexibleGetters.assert_set_attr_lst", "generated/api/pwtools.base.FlexibleGetters.check_set_attr", "generated/api/pwtools.base.FlexibleGetters.check_set_attr_lst", "generated/api/pwtools.base.FlexibleGetters.dump", "generated/api/pwtools.base.FlexibleGetters.get_return_attr", "generated/api/pwtools.base.FlexibleGetters.init_attr_lst", "generated/api/pwtools.base.FlexibleGetters.is_set_attr", "generated/api/pwtools.base.FlexibleGetters.is_set_attr_lst", "generated/api/pwtools.base.FlexibleGetters.load", "generated/api/pwtools.base.FlexibleGetters.raw_return", "generated/api/pwtools.base.FlexibleGetters.raw_slice_get", "generated/api/pwtools.base.FlexibleGetters.set_all", "generated/api/pwtools.base.FlexibleGetters.set_attr_lst", "generated/api/pwtools.base.FlexibleGetters.try_set_attr", "generated/api/pwtools.base.FlexibleGetters.try_set_attr_lst", "generated/api/pwtools.batch.Calculation", "generated/api/pwtools.batch.Calculation.get_sql_record", "generated/api/pwtools.batch.Calculation.write_input", "generated/api/pwtools.batch.Case", "generated/api/pwtools.batch.FileTemplate", "generated/api/pwtools.batch.FileTemplate.write", "generated/api/pwtools.batch.FileTemplate.writesql", "generated/api/pwtools.batch.Machine", "generated/api/pwtools.batch.Machine.get_jobfile_basename", "generated/api/pwtools.batch.Machine.get_sql_record", "generated/api/pwtools.batch.ParameterStudy", "generated/api/pwtools.batch.ParameterStudy.write_input", "generated/api/pwtools.batch.conv_table", "generated/api/pwtools.batch.default_repl_keys", "generated/api/pwtools.calculators.CalculatorBase", "generated/api/pwtools.calculators.CalculatorBase.fill_infile_templ", "generated/api/pwtools.calculators.CalculatorBase.init_params_from_input", "generated/api/pwtools.calculators.FileIOCalculator", "generated/api/pwtools.calculators.Lammps", "generated/api/pwtools.calculators.Lammps.default_parameters", "generated/api/pwtools.calculators.Lammps.fill_infile_templ", "generated/api/pwtools.calculators.Lammps.implemented_properties", "generated/api/pwtools.calculators.Lammps.infile_templ", "generated/api/pwtools.calculators.Lammps.init_params_from_input", "generated/api/pwtools.calculators.Lammps.read_results", "generated/api/pwtools.calculators.Lammps.write_input", "generated/api/pwtools.calculators.Pwscf", "generated/api/pwtools.calculators.Pwscf.default_parameters", "generated/api/pwtools.calculators.Pwscf.fill_infile_templ", "generated/api/pwtools.calculators.Pwscf.implemented_properties", "generated/api/pwtools.calculators.Pwscf.infile_templ", "generated/api/pwtools.calculators.Pwscf.init_params_from_input", "generated/api/pwtools.calculators.Pwscf.read_results", "generated/api/pwtools.calculators.Pwscf.write_input", "generated/api/pwtools.calculators._ase_missing", "generated/api/pwtools.calculators.find_exe", "generated/api/pwtools.calculators.kpts2mp", "generated/api/pwtools.calculators.stress_pwtools2ase", "generated/api/pwtools.comb._ensure_list", "generated/api/pwtools.comb.nested_loops", "generated/api/pwtools.comb.unique2d", "generated/api/pwtools.common.EPS", "generated/api/pwtools.common.add_to_config", "generated/api/pwtools.common.asseq", "generated/api/pwtools.common.assert_cond", "generated/api/pwtools.common.backtick", "generated/api/pwtools.common.backup", "generated/api/pwtools.common.cpickle_load", "generated/api/pwtools.common.dict2class", "generated/api/pwtools.common.dict2str", "generated/api/pwtools.common.ffloat", "generated/api/pwtools.common.file_read", "generated/api/pwtools.common.file_readlines", "generated/api/pwtools.common.file_template_replace", "generated/api/pwtools.common.file_write", "generated/api/pwtools.common.fix_eps", "generated/api/pwtools.common.flatten", "generated/api/pwtools.common.fpj", "generated/api/pwtools.common.frepr", "generated/api/pwtools.common.fullpath", "generated/api/pwtools.common.fullpathjoin", "generated/api/pwtools.common.get_filename", "generated/api/pwtools.common.iflatten", "generated/api/pwtools.common.is_seq", "generated/api/pwtools.common.makedirs", "generated/api/pwtools.common.permit_sigpipe", "generated/api/pwtools.common.pop_from_list", "generated/api/pwtools.common.print_dct", "generated/api/pwtools.common.seq2str", "generated/api/pwtools.common.str2seq", "generated/api/pwtools.common.str2tup", "generated/api/pwtools.common.str_arr", "generated/api/pwtools.common.system", "generated/api/pwtools.common.template_replace", "generated/api/pwtools.common.tobool", "generated/api/pwtools.common.toslice", "generated/api/pwtools.common.tup2str", "generated/api/pwtools.config.name", "generated/api/pwtools.config.use_jax", "generated/api/pwtools.constants.Ang", "generated/api/pwtools.constants.Angstrom", "generated/api/pwtools.constants.Bohr", "generated/api/pwtools.constants.Bohr_to_Ang", "generated/api/pwtools.constants.Eh", "generated/api/pwtools.constants.Eryd", "generated/api/pwtools.constants.GPa", "generated/api/pwtools.constants.Ha", "generated/api/pwtools.constants.Ha_to_eV", "generated/api/pwtools.constants.Hartree", "generated/api/pwtools.constants.J_to_eV", "generated/api/pwtools.constants.J_to_rcm", "generated/api/pwtools.constants.R", "generated/api/pwtools.constants.Ry", "generated/api/pwtools.constants.Ry_to_Ha", "generated/api/pwtools.constants.Ry_to_Hz", "generated/api/pwtools.constants.Ry_to_J", "generated/api/pwtools.constants.Ry_to_eV", "generated/api/pwtools.constants.Ry_to_rcm", "generated/api/pwtools.constants.Rydberg", "generated/api/pwtools.constants.a0", "generated/api/pwtools.constants.a0_to_A", "generated/api/pwtools.constants.alpha", "generated/api/pwtools.constants.amu", "generated/api/pwtools.constants.avo", "generated/api/pwtools.constants.c0", "generated/api/pwtools.constants.dyn", "generated/api/pwtools.constants.e0", "generated/api/pwtools.constants.eV", "generated/api/pwtools.constants.eV_by_Ang3_to_GPa", "generated/api/pwtools.constants.eV_by_Ang3_to_Pa", "generated/api/pwtools.constants.eps0", "generated/api/pwtools.constants.fs", "generated/api/pwtools.constants.h", "generated/api/pwtools.constants.hbar", "generated/api/pwtools.constants.hplanck", "generated/api/pwtools.constants.kb", "generated/api/pwtools.constants.m0", "generated/api/pwtools.constants.mu0", "generated/api/pwtools.constants.pi", "generated/api/pwtools.constants.ps", "generated/api/pwtools.constants.rcm_to_Hz", "generated/api/pwtools.constants.th", "generated/api/pwtools.constants.thart", "generated/api/pwtools.constants.tryd", "generated/api/pwtools.crys.Angstrom", "generated/api/pwtools.crys.FakeASEAtoms", "generated/api/pwtools.crys.FakeASEAtoms.apply_units", "generated/api/pwtools.crys.FakeASEAtoms.assert_attr", "generated/api/pwtools.crys.FakeASEAtoms.assert_attr_lst", "generated/api/pwtools.crys.FakeASEAtoms.assert_set_attr", "generated/api/pwtools.crys.FakeASEAtoms.assert_set_attr_lst", "generated/api/pwtools.crys.FakeASEAtoms.check_set_attr", "generated/api/pwtools.crys.FakeASEAtoms.check_set_attr_lst", "generated/api/pwtools.crys.FakeASEAtoms.compress", "generated/api/pwtools.crys.FakeASEAtoms.copy", "generated/api/pwtools.crys.FakeASEAtoms.dump", "generated/api/pwtools.crys.FakeASEAtoms.get_ase_atoms", "generated/api/pwtools.crys.FakeASEAtoms.get_atomic_numbers", "generated/api/pwtools.crys.FakeASEAtoms.get_cell", "generated/api/pwtools.crys.FakeASEAtoms.get_coords", "generated/api/pwtools.crys.FakeASEAtoms.get_coords_frac", "generated/api/pwtools.crys.FakeASEAtoms.get_cryst_const", "generated/api/pwtools.crys.FakeASEAtoms.get_ekin", "generated/api/pwtools.crys.FakeASEAtoms.get_etot", "generated/api/pwtools.crys.FakeASEAtoms.get_fake_ase_atoms", "generated/api/pwtools.crys.FakeASEAtoms.get_forces", "generated/api/pwtools.crys.FakeASEAtoms.get_magnetic_moments", "generated/api/pwtools.crys.FakeASEAtoms.get_mass", "generated/api/pwtools.crys.FakeASEAtoms.get_mass_unique", "generated/api/pwtools.crys.FakeASEAtoms.get_natoms", "generated/api/pwtools.crys.FakeASEAtoms.get_nspecies", "generated/api/pwtools.crys.FakeASEAtoms.get_nstep", "generated/api/pwtools.crys.FakeASEAtoms.get_ntypat", "generated/api/pwtools.crys.FakeASEAtoms.get_order", "generated/api/pwtools.crys.FakeASEAtoms.get_pressure", "generated/api/pwtools.crys.FakeASEAtoms.get_return_attr", "generated/api/pwtools.crys.FakeASEAtoms.get_spglib", "generated/api/pwtools.crys.FakeASEAtoms.get_stress", "generated/api/pwtools.crys.FakeASEAtoms.get_symbols", "generated/api/pwtools.crys.FakeASEAtoms.get_symbols_unique", "generated/api/pwtools.crys.FakeASEAtoms.get_temperature", "generated/api/pwtools.crys.FakeASEAtoms.get_time", "generated/api/pwtools.crys.FakeASEAtoms.get_timestep", "generated/api/pwtools.crys.FakeASEAtoms.get_traj", "generated/api/pwtools.crys.FakeASEAtoms.get_typat", "generated/api/pwtools.crys.FakeASEAtoms.get_velocity", "generated/api/pwtools.crys.FakeASEAtoms.get_volume", "generated/api/pwtools.crys.FakeASEAtoms.get_znucl", "generated/api/pwtools.crys.FakeASEAtoms.get_znucl_unique", "generated/api/pwtools.crys.FakeASEAtoms.init_attr_lst", "generated/api/pwtools.crys.FakeASEAtoms.is_set_attr", "generated/api/pwtools.crys.FakeASEAtoms.is_set_attr_lst", "generated/api/pwtools.crys.FakeASEAtoms.is_struct", "generated/api/pwtools.crys.FakeASEAtoms.is_traj", "generated/api/pwtools.crys.FakeASEAtoms.load", "generated/api/pwtools.crys.FakeASEAtoms.raw_return", "generated/api/pwtools.crys.FakeASEAtoms.raw_slice_get", "generated/api/pwtools.crys.FakeASEAtoms.set_all", "generated/api/pwtools.crys.FakeASEAtoms.set_attr_lst", "generated/api/pwtools.crys.FakeASEAtoms.timeaxis", "generated/api/pwtools.crys.FakeASEAtoms.try_set_attr", "generated/api/pwtools.crys.FakeASEAtoms.try_set_attr_lst", "generated/api/pwtools.crys.FakeASEAtoms.update_units", "generated/api/pwtools.crys.Structure", "generated/api/pwtools.crys.Structure.apply_units", "generated/api/pwtools.crys.Structure.assert_attr", "generated/api/pwtools.crys.Structure.assert_attr_lst", "generated/api/pwtools.crys.Structure.assert_set_attr", "generated/api/pwtools.crys.Structure.assert_set_attr_lst", "generated/api/pwtools.crys.Structure.check_set_attr", "generated/api/pwtools.crys.Structure.check_set_attr_lst", "generated/api/pwtools.crys.Structure.compress", "generated/api/pwtools.crys.Structure.copy", "generated/api/pwtools.crys.Structure.dump", "generated/api/pwtools.crys.Structure.get_ase_atoms", "generated/api/pwtools.crys.Structure.get_cell", "generated/api/pwtools.crys.Structure.get_coords", "generated/api/pwtools.crys.Structure.get_coords_frac", "generated/api/pwtools.crys.Structure.get_cryst_const", "generated/api/pwtools.crys.Structure.get_ekin", "generated/api/pwtools.crys.Structure.get_etot", "generated/api/pwtools.crys.Structure.get_fake_ase_atoms", "generated/api/pwtools.crys.Structure.get_forces", "generated/api/pwtools.crys.Structure.get_mass", "generated/api/pwtools.crys.Structure.get_mass_unique", "generated/api/pwtools.crys.Structure.get_natoms", "generated/api/pwtools.crys.Structure.get_nspecies", "generated/api/pwtools.crys.Structure.get_nstep", "generated/api/pwtools.crys.Structure.get_ntypat", "generated/api/pwtools.crys.Structure.get_order", "generated/api/pwtools.crys.Structure.get_pressure", "generated/api/pwtools.crys.Structure.get_return_attr", "generated/api/pwtools.crys.Structure.get_spglib", "generated/api/pwtools.crys.Structure.get_stress", "generated/api/pwtools.crys.Structure.get_symbols", "generated/api/pwtools.crys.Structure.get_symbols_unique", "generated/api/pwtools.crys.Structure.get_temperature", "generated/api/pwtools.crys.Structure.get_time", "generated/api/pwtools.crys.Structure.get_timestep", "generated/api/pwtools.crys.Structure.get_traj", "generated/api/pwtools.crys.Structure.get_typat", "generated/api/pwtools.crys.Structure.get_velocity", "generated/api/pwtools.crys.Structure.get_volume", "generated/api/pwtools.crys.Structure.get_znucl", "generated/api/pwtools.crys.Structure.get_znucl_unique", "generated/api/pwtools.crys.Structure.init_attr_lst", "generated/api/pwtools.crys.Structure.is_set_attr", "generated/api/pwtools.crys.Structure.is_set_attr_lst", "generated/api/pwtools.crys.Structure.is_struct", "generated/api/pwtools.crys.Structure.is_traj", "generated/api/pwtools.crys.Structure.load", "generated/api/pwtools.crys.Structure.raw_return", "generated/api/pwtools.crys.Structure.raw_slice_get", "generated/api/pwtools.crys.Structure.set_all", "generated/api/pwtools.crys.Structure.set_attr_lst", "generated/api/pwtools.crys.Structure.timeaxis", "generated/api/pwtools.crys.Structure.try_set_attr", "generated/api/pwtools.crys.Structure.try_set_attr_lst", "generated/api/pwtools.crys.Structure.update_units", "generated/api/pwtools.crys.Trajectory", "generated/api/pwtools.crys.Trajectory.__getitem__", "generated/api/pwtools.crys.Trajectory.apply_units", "generated/api/pwtools.crys.Trajectory.assert_attr", "generated/api/pwtools.crys.Trajectory.assert_attr_lst", "generated/api/pwtools.crys.Trajectory.assert_set_attr", "generated/api/pwtools.crys.Trajectory.assert_set_attr_lst", "generated/api/pwtools.crys.Trajectory.check_set_attr", "generated/api/pwtools.crys.Trajectory.check_set_attr_lst", "generated/api/pwtools.crys.Trajectory.compress", "generated/api/pwtools.crys.Trajectory.copy", "generated/api/pwtools.crys.Trajectory.dump", "generated/api/pwtools.crys.Trajectory.get_ase_atoms", "generated/api/pwtools.crys.Trajectory.get_cell", "generated/api/pwtools.crys.Trajectory.get_coords", "generated/api/pwtools.crys.Trajectory.get_coords_frac", "generated/api/pwtools.crys.Trajectory.get_cryst_const", "generated/api/pwtools.crys.Trajectory.get_ekin", "generated/api/pwtools.crys.Trajectory.get_etot", "generated/api/pwtools.crys.Trajectory.get_fake_ase_atoms", "generated/api/pwtools.crys.Trajectory.get_forces", "generated/api/pwtools.crys.Trajectory.get_mass", "generated/api/pwtools.crys.Trajectory.get_mass_unique", "generated/api/pwtools.crys.Trajectory.get_natoms", "generated/api/pwtools.crys.Trajectory.get_nspecies", "generated/api/pwtools.crys.Trajectory.get_nstep", "generated/api/pwtools.crys.Trajectory.get_ntypat", "generated/api/pwtools.crys.Trajectory.get_order", "generated/api/pwtools.crys.Trajectory.get_pressure", "generated/api/pwtools.crys.Trajectory.get_return_attr", "generated/api/pwtools.crys.Trajectory.get_spglib", "generated/api/pwtools.crys.Trajectory.get_stress", "generated/api/pwtools.crys.Trajectory.get_symbols", "generated/api/pwtools.crys.Trajectory.get_symbols_unique", "generated/api/pwtools.crys.Trajectory.get_temperature", "generated/api/pwtools.crys.Trajectory.get_time", "generated/api/pwtools.crys.Trajectory.get_timestep", "generated/api/pwtools.crys.Trajectory.get_traj", "generated/api/pwtools.crys.Trajectory.get_typat", "generated/api/pwtools.crys.Trajectory.get_velocity", "generated/api/pwtools.crys.Trajectory.get_volume", "generated/api/pwtools.crys.Trajectory.get_znucl", "generated/api/pwtools.crys.Trajectory.get_znucl_unique", "generated/api/pwtools.crys.Trajectory.init_attr_lst", "generated/api/pwtools.crys.Trajectory.is_set_attr", "generated/api/pwtools.crys.Trajectory.is_set_attr_lst", "generated/api/pwtools.crys.Trajectory.is_struct", "generated/api/pwtools.crys.Trajectory.is_traj", "generated/api/pwtools.crys.Trajectory.load", "generated/api/pwtools.crys.Trajectory.raw_return", "generated/api/pwtools.crys.Trajectory.raw_slice_get", "generated/api/pwtools.crys.Trajectory.set_all", "generated/api/pwtools.crys.Trajectory.set_attr_lst", "generated/api/pwtools.crys.Trajectory.timeaxis", "generated/api/pwtools.crys.Trajectory.try_set_attr", "generated/api/pwtools.crys.Trajectory.try_set_attr_lst", "generated/api/pwtools.crys.Trajectory.update_units", "generated/api/pwtools.crys.UnitsHandler", "generated/api/pwtools.crys.UnitsHandler.apply_units", "generated/api/pwtools.crys.UnitsHandler.assert_attr", "generated/api/pwtools.crys.UnitsHandler.assert_attr_lst", "generated/api/pwtools.crys.UnitsHandler.assert_set_attr", "generated/api/pwtools.crys.UnitsHandler.assert_set_attr_lst", "generated/api/pwtools.crys.UnitsHandler.check_set_attr", "generated/api/pwtools.crys.UnitsHandler.check_set_attr_lst", "generated/api/pwtools.crys.UnitsHandler.dump", "generated/api/pwtools.crys.UnitsHandler.get_return_attr", "generated/api/pwtools.crys.UnitsHandler.init_attr_lst", "generated/api/pwtools.crys.UnitsHandler.is_set_attr", "generated/api/pwtools.crys.UnitsHandler.is_set_attr_lst", "generated/api/pwtools.crys.UnitsHandler.load", "generated/api/pwtools.crys.UnitsHandler.raw_return", "generated/api/pwtools.crys.UnitsHandler.raw_slice_get", "generated/api/pwtools.crys.UnitsHandler.set_all", "generated/api/pwtools.crys.UnitsHandler.set_attr_lst", "generated/api/pwtools.crys.UnitsHandler.try_set_attr", "generated/api/pwtools.crys.UnitsHandler.try_set_attr_lst", "generated/api/pwtools.crys.UnitsHandler.update_units", "generated/api/pwtools.crys._trans", "generated/api/pwtools.crys.align_cart", "generated/api/pwtools.crys.angle", "generated/api/pwtools.crys.angles", "generated/api/pwtools.crys.atoms2struct", "generated/api/pwtools.crys.call_vmd_measure_gofr", "generated/api/pwtools.crys.cc2cell", "generated/api/pwtools.crys.cc2cell3d", "generated/api/pwtools.crys.cc2celldm", "generated/api/pwtools.crys.cell2cc", "generated/api/pwtools.crys.cell2cc3d", "generated/api/pwtools.crys.celldm2cc", "generated/api/pwtools.crys.center_on_atom", "generated/api/pwtools.crys.compress", "generated/api/pwtools.crys.concatenate", "generated/api/pwtools.crys.coord_trans", "generated/api/pwtools.crys.coord_trans3d", "generated/api/pwtools.crys.distances", "generated/api/pwtools.crys.distances_traj", "generated/api/pwtools.crys.grid_in_cell", "generated/api/pwtools.crys.kgrid", "generated/api/pwtools.crys.mean", "generated/api/pwtools.crys.min_image_convention", "generated/api/pwtools.crys.mix", "generated/api/pwtools.crys.nearest_neighbors", "generated/api/pwtools.crys.nearest_neighbors_from_dists", "generated/api/pwtools.crys.nearest_neighbors_struct", "generated/api/pwtools.crys.pbc_wrap", "generated/api/pwtools.crys.pbc_wrap_coords", "generated/api/pwtools.crys.pi", "generated/api/pwtools.crys.populated_attrs", "generated/api/pwtools.crys.recip_cell", "generated/api/pwtools.crys.rmax_smith", "generated/api/pwtools.crys.rmsd", "generated/api/pwtools.crys.rpdf", "generated/api/pwtools.crys.scell", "generated/api/pwtools.crys.scell3d", "generated/api/pwtools.crys.scell_mask", "generated/api/pwtools.crys.smooth", "generated/api/pwtools.crys.struct2atoms", "generated/api/pwtools.crys.struct2traj", "generated/api/pwtools.crys.tensor2voigt", "generated/api/pwtools.crys.tensor2voigt3d", "generated/api/pwtools.crys.velocity_traj", "generated/api/pwtools.crys.vmd_measure_gofr", "generated/api/pwtools.crys.voigt2tensor", "generated/api/pwtools.crys.voigt2tensor3d", "generated/api/pwtools.crys.volume_cc", "generated/api/pwtools.crys.volume_cc3d", "generated/api/pwtools.crys.volume_cell", "generated/api/pwtools.crys.volume_cell3d", "generated/api/pwtools.dcd.HEADER_DTYPE", "generated/api/pwtools.dcd.HEADER_TYPES", "generated/api/pwtools.dcd.read_dcd_data", "generated/api/pwtools.dcd.read_dcd_data_f", "generated/api/pwtools.dcd.read_dcd_data_ref", "generated/api/pwtools.dcd.read_dcd_header", "generated/api/pwtools.decorators.crys_add_doc", "generated/api/pwtools.decorators.lazyprop", "generated/api/pwtools.decorators.open_and_close", "generated/api/pwtools.eos.Ang", "generated/api/pwtools.eos.Bohr", "generated/api/pwtools.eos.EVFunction", "generated/api/pwtools.eos.EVFunction.dct2lst", "generated/api/pwtools.eos.EVFunction.deriv", "generated/api/pwtools.eos.EVFunction.evaluate", "generated/api/pwtools.eos.EVFunction.get_min", "generated/api/pwtools.eos.EVFunction.lst2dct", "generated/api/pwtools.eos.ElkEOSFit", "generated/api/pwtools.eos.ElkEOSFit.assert_attr", "generated/api/pwtools.eos.ElkEOSFit.assert_attr_lst", "generated/api/pwtools.eos.ElkEOSFit.assert_set_attr", "generated/api/pwtools.eos.ElkEOSFit.assert_set_attr_lst", "generated/api/pwtools.eos.ElkEOSFit.calc_bv", "generated/api/pwtools.eos.ElkEOSFit.check_set_attr", "generated/api/pwtools.eos.ElkEOSFit.check_set_attr_lst", "generated/api/pwtools.eos.ElkEOSFit.dump", "generated/api/pwtools.eos.ElkEOSFit.fit", "generated/api/pwtools.eos.ElkEOSFit.get_min", "generated/api/pwtools.eos.ElkEOSFit.get_return_attr", "generated/api/pwtools.eos.ElkEOSFit.get_spl_bv", "generated/api/pwtools.eos.ElkEOSFit.get_spl_ev", "generated/api/pwtools.eos.ElkEOSFit.get_spl_pv", "generated/api/pwtools.eos.ElkEOSFit.init_attr_lst", "generated/api/pwtools.eos.ElkEOSFit.is_set_attr", "generated/api/pwtools.eos.ElkEOSFit.is_set_attr_lst", "generated/api/pwtools.eos.ElkEOSFit.load", "generated/api/pwtools.eos.ElkEOSFit.raw_return", "generated/api/pwtools.eos.ElkEOSFit.raw_slice_get", "generated/api/pwtools.eos.ElkEOSFit.set_all", "generated/api/pwtools.eos.ElkEOSFit.set_attr_lst", "generated/api/pwtools.eos.ElkEOSFit.set_bv_method", "generated/api/pwtools.eos.ElkEOSFit.try_set_attr", "generated/api/pwtools.eos.ElkEOSFit.try_set_attr_lst", "generated/api/pwtools.eos.EosFit", "generated/api/pwtools.eos.EosFit.bulkmod", "generated/api/pwtools.eos.EosFit.fit", "generated/api/pwtools.eos.EosFit.get_max", "generated/api/pwtools.eos.EosFit.get_min", "generated/api/pwtools.eos.EosFit.get_root", "generated/api/pwtools.eos.EosFit.is_mono", "generated/api/pwtools.eos.EosFit.pressure", "generated/api/pwtools.eos.EosFit.spl", "generated/api/pwtools.eos.ExternEOS", "generated/api/pwtools.eos.ExternEOS.assert_attr", "generated/api/pwtools.eos.ExternEOS.assert_attr_lst", "generated/api/pwtools.eos.ExternEOS.assert_set_attr", "generated/api/pwtools.eos.ExternEOS.assert_set_attr_lst", "generated/api/pwtools.eos.ExternEOS.calc_bv", "generated/api/pwtools.eos.ExternEOS.check_set_attr", "generated/api/pwtools.eos.ExternEOS.check_set_attr_lst", "generated/api/pwtools.eos.ExternEOS.dump", "generated/api/pwtools.eos.ExternEOS.fit", "generated/api/pwtools.eos.ExternEOS.get_min", "generated/api/pwtools.eos.ExternEOS.get_return_attr", "generated/api/pwtools.eos.ExternEOS.get_spl_bv", "generated/api/pwtools.eos.ExternEOS.get_spl_ev", "generated/api/pwtools.eos.ExternEOS.get_spl_pv", "generated/api/pwtools.eos.ExternEOS.init_attr_lst", "generated/api/pwtools.eos.ExternEOS.is_set_attr", "generated/api/pwtools.eos.ExternEOS.is_set_attr_lst", "generated/api/pwtools.eos.ExternEOS.load", "generated/api/pwtools.eos.ExternEOS.raw_return", "generated/api/pwtools.eos.ExternEOS.raw_slice_get", "generated/api/pwtools.eos.ExternEOS.set_all", "generated/api/pwtools.eos.ExternEOS.set_attr_lst", "generated/api/pwtools.eos.ExternEOS.set_bv_method", "generated/api/pwtools.eos.ExternEOS.try_set_attr", "generated/api/pwtools.eos.ExternEOS.try_set_attr_lst", "generated/api/pwtools.eos.Ha", "generated/api/pwtools.eos.MaxDerivException", "generated/api/pwtools.eos.Ry", "generated/api/pwtools.eos.Vinet", "generated/api/pwtools.eos.Vinet.dct2lst", "generated/api/pwtools.eos.Vinet.deriv", "generated/api/pwtools.eos.Vinet.evaluate", "generated/api/pwtools.eos.Vinet.get_min", "generated/api/pwtools.eos.Vinet.lst2dct", "generated/api/pwtools.eos._vinet", "generated/api/pwtools.eos._vinet_deriv1", "generated/api/pwtools.eos._vinet_deriv2", "generated/api/pwtools.eos.eV", "generated/api/pwtools.eos.eV_by_Ang3_to_GPa", "generated/api/pwtools.io.Ha", "generated/api/pwtools.io.ReadFactory", "generated/api/pwtools.io.eV", "generated/api/pwtools.io.load_h5", "generated/api/pwtools.io.read_cif", "generated/api/pwtools.io.read_cp2k_md", "generated/api/pwtools.io.read_cp2k_md_dcd", "generated/api/pwtools.io.read_cp2k_relax", "generated/api/pwtools.io.read_cp2k_scf", "generated/api/pwtools.io.read_cpmd_md", "generated/api/pwtools.io.read_cpmd_scf", "generated/api/pwtools.io.read_h5", "generated/api/pwtools.io.read_lammps_md_dcd", "generated/api/pwtools.io.read_lammps_md_txt", "generated/api/pwtools.io.read_pdb", "generated/api/pwtools.io.read_pickle", "generated/api/pwtools.io.read_pw_md", "generated/api/pwtools.io.read_pw_scf", "generated/api/pwtools.io.read_pw_vcmd", "generated/api/pwtools.io.wien_sgroup_input", "generated/api/pwtools.io.write_axsf", "generated/api/pwtools.io.write_cif", "generated/api/pwtools.io.write_h5", "generated/api/pwtools.io.write_lammps", "generated/api/pwtools.io.write_wien_sgroup", "generated/api/pwtools.io.write_xyz", "generated/api/pwtools.kpath.SpecialPointsPath", "generated/api/pwtools.kpath.get_path_norm", "generated/api/pwtools.kpath.kpath", "generated/api/pwtools.kpath.plot_dis", "generated/api/pwtools.lammps.struct_str", "generated/api/pwtools.mpl.Data2D", "generated/api/pwtools.mpl.Data2D.copy", "generated/api/pwtools.mpl.Data2D.update", "generated/api/pwtools.mpl.Data3D", "generated/api/pwtools.mpl.Data3D.copy", "generated/api/pwtools.mpl.Data3D.update", "generated/api/pwtools.mpl.Plot", "generated/api/pwtools.mpl.Plot.collect_legends", "generated/api/pwtools.mpl.Plot.legend", "generated/api/pwtools.mpl.Plot.savefig", "generated/api/pwtools.mpl.cc", "generated/api/pwtools.mpl.ccl", "generated/api/pwtools.mpl.ccm", "generated/api/pwtools.mpl.clc", "generated/api/pwtools.mpl.clean_ax3d", "generated/api/pwtools.mpl.cm", "generated/api/pwtools.mpl.cmc", "generated/api/pwtools.mpl.collect_legends", "generated/api/pwtools.mpl.color_ax", "generated/api/pwtools.mpl.colors", "generated/api/pwtools.mpl.colors_linestyles", "generated/api/pwtools.mpl.colors_markers", "generated/api/pwtools.mpl.cycle_colors", "generated/api/pwtools.mpl.cycle_colors_linestyles", "generated/api/pwtools.mpl.cycle_colors_markers", "generated/api/pwtools.mpl.cycle_linestyles_colors", "generated/api/pwtools.mpl.cycle_markers", "generated/api/pwtools.mpl.cycle_markers_colors", "generated/api/pwtools.mpl.fig_ax", "generated/api/pwtools.mpl.fig_ax3d", "generated/api/pwtools.mpl.get_2d_testdata", "generated/api/pwtools.mpl.ic", "generated/api/pwtools.mpl.icl", "generated/api/pwtools.mpl.icm", "generated/api/pwtools.mpl.ilc", "generated/api/pwtools.mpl.im", "generated/api/pwtools.mpl.imc", "generated/api/pwtools.mpl.iter_colors", "generated/api/pwtools.mpl.iter_colors_linestyles", "generated/api/pwtools.mpl.iter_colors_markers", "generated/api/pwtools.mpl.iter_linestyles", "generated/api/pwtools.mpl.iter_linestyles_colors", "generated/api/pwtools.mpl.iter_markers", "generated/api/pwtools.mpl.iter_markers_colors", "generated/api/pwtools.mpl.linestyles", "generated/api/pwtools.mpl.linestyles_colors", "generated/api/pwtools.mpl.make_axes_grid_fig", "generated/api/pwtools.mpl.markers", "generated/api/pwtools.mpl.markers_colors", "generated/api/pwtools.mpl.meshgridt", "generated/api/pwtools.mpl.new_axis", "generated/api/pwtools.mpl.plotlines3d", "generated/api/pwtools.mpl.prepare_plots", "generated/api/pwtools.mpl.smooth_color", "generated/api/pwtools.mpl.smooth_color_func", "generated/api/pwtools.mttk.a0", "generated/api/pwtools.mttk.add_doc", "generated/api/pwtools.mttk.barostat_mass_w", "generated/api/pwtools.mttk.barostat_mass_wg", "generated/api/pwtools.mttk.barostat_nhc_masses", "generated/api/pwtools.mttk.kb", "generated/api/pwtools.mttk.m0", "generated/api/pwtools.mttk.particle_nhc_masses", "generated/api/pwtools.num.DataND", "generated/api/pwtools.num.DataND.a2_to_an", "generated/api/pwtools.num.EPS", "generated/api/pwtools.num.Fit1D", "generated/api/pwtools.num.Fit1D.get_max", "generated/api/pwtools.num.Fit1D.get_min", "generated/api/pwtools.num.Fit1D.get_root", "generated/api/pwtools.num.Fit1D.is_mono", "generated/api/pwtools.num.Interpol2D", "generated/api/pwtools.num.Interpol2D.get_min", "generated/api/pwtools.num.PolyFit", "generated/api/pwtools.num.PolyFit.get_min", "generated/api/pwtools.num.PolyFit1D", "generated/api/pwtools.num.PolyFit1D.get_max", "generated/api/pwtools.num.PolyFit1D.get_min", "generated/api/pwtools.num.PolyFit1D.get_root", "generated/api/pwtools.num.PolyFit1D.is_mono", "generated/api/pwtools.num.Spline", "generated/api/pwtools.num.Spline.get_max", "generated/api/pwtools.num.Spline.get_min", "generated/api/pwtools.num.Spline.get_root", "generated/api/pwtools.num.Spline.invsplev", "generated/api/pwtools.num.Spline.is_mono", "generated/api/pwtools.num.Spline.splev", "generated/api/pwtools.num.deriv_spl", "generated/api/pwtools.num.distsq", "generated/api/pwtools.num.euler_matrix", "generated/api/pwtools.num.extend_array", "generated/api/pwtools.num.fempty", "generated/api/pwtools.num.findmin", "generated/api/pwtools.num.findroot", "generated/api/pwtools.num.inner_points_mask", "generated/api/pwtools.num.match_mask", "generated/api/pwtools.num.meshgridt", "generated/api/pwtools.num.norm", "generated/api/pwtools.num.norm_int", "generated/api/pwtools.num.normalize", "generated/api/pwtools.num.order_similar", "generated/api/pwtools.num.pi", "generated/api/pwtools.num.poly_powers", "generated/api/pwtools.num.poly_str", "generated/api/pwtools.num.polyfit", "generated/api/pwtools.num.polyval", "generated/api/pwtools.num.rms", "generated/api/pwtools.num.rms3d", "generated/api/pwtools.num.round_up_next_multiple", "generated/api/pwtools.num.sliceput", "generated/api/pwtools.num.slicetake", "generated/api/pwtools.num.sum", "generated/api/pwtools.num.vander", "generated/api/pwtools.num.vlinspace", "generated/api/pwtools.parse.AWK", "generated/api/pwtools.parse.Ang", "generated/api/pwtools.parse.Angstrom", "generated/api/pwtools.parse.Bohr", "generated/api/pwtools.parse.CifFile", "generated/api/pwtools.parse.CifFile.apply_units", "generated/api/pwtools.parse.CifFile.assert_attr", "generated/api/pwtools.parse.CifFile.assert_attr_lst", "generated/api/pwtools.parse.CifFile.assert_set_attr", "generated/api/pwtools.parse.CifFile.assert_set_attr_lst", "generated/api/pwtools.parse.CifFile.check_set_attr", "generated/api/pwtools.parse.CifFile.check_set_attr_lst", "generated/api/pwtools.parse.CifFile.cif_clear_atom_symbol", "generated/api/pwtools.parse.CifFile.cif_str2float", "generated/api/pwtools.parse.CifFile.default_units", "generated/api/pwtools.parse.CifFile.dump", "generated/api/pwtools.parse.CifFile.get_cont", "generated/api/pwtools.parse.CifFile.get_coords", "generated/api/pwtools.parse.CifFile.get_coords_frac", "generated/api/pwtools.parse.CifFile.get_cryst_const", "generated/api/pwtools.parse.CifFile.get_return_attr", "generated/api/pwtools.parse.CifFile.get_struct", "generated/api/pwtools.parse.CifFile.get_symbols", "generated/api/pwtools.parse.CifFile.init_attr_lst", "generated/api/pwtools.parse.CifFile.is_set_attr", "generated/api/pwtools.parse.CifFile.is_set_attr_lst", "generated/api/pwtools.parse.CifFile.load", "generated/api/pwtools.parse.CifFile.parse", "generated/api/pwtools.parse.CifFile.raw_return", "generated/api/pwtools.parse.CifFile.raw_slice_get", "generated/api/pwtools.parse.CifFile.set_all", "generated/api/pwtools.parse.CifFile.set_attr_lst", "generated/api/pwtools.parse.CifFile.try_set_attr", "generated/api/pwtools.parse.CifFile.try_set_attr_lst", "generated/api/pwtools.parse.CifFile.update_units", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.apply_units", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.assert_attr", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.assert_attr_lst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.assert_set_attr", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.assert_set_attr_lst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.check_set_attr", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.check_set_attr_lst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.default_units", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.dump", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_cell", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_cont", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_coords", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_cryst_const", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_econst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_ekin", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_etot", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_forces", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_natoms", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_nstep", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_return_attr", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_stress", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_struct", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_symbols", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_temperature", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_timestep", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_traj", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_velocity", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_volume", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.init_attr_lst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.is_set_attr", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.is_set_attr_lst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.load", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.parse", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.raw_return", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.raw_slice_get", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.set_all", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.set_attr_lst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.timeaxis", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.try_set_attr", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.try_set_attr_lst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.update_units", "generated/api/pwtools.parse.Cp2kMDOutputFile", "generated/api/pwtools.parse.Cp2kMDOutputFile.apply_units", "generated/api/pwtools.parse.Cp2kMDOutputFile.assert_attr", "generated/api/pwtools.parse.Cp2kMDOutputFile.assert_attr_lst", "generated/api/pwtools.parse.Cp2kMDOutputFile.assert_set_attr", "generated/api/pwtools.parse.Cp2kMDOutputFile.assert_set_attr_lst", "generated/api/pwtools.parse.Cp2kMDOutputFile.check_set_attr", "generated/api/pwtools.parse.Cp2kMDOutputFile.check_set_attr_lst", "generated/api/pwtools.parse.Cp2kMDOutputFile.default_units", "generated/api/pwtools.parse.Cp2kMDOutputFile.dump", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_cell", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_cont", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_coords", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_econst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_ekin", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_etot", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_forces", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_natoms", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_return_attr", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_stress", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_struct", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_symbols", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_temperature", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_timestep", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_traj", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_velocity", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_volume", "generated/api/pwtools.parse.Cp2kMDOutputFile.init_attr_lst", "generated/api/pwtools.parse.Cp2kMDOutputFile.is_set_attr", "generated/api/pwtools.parse.Cp2kMDOutputFile.is_set_attr_lst", "generated/api/pwtools.parse.Cp2kMDOutputFile.load", "generated/api/pwtools.parse.Cp2kMDOutputFile.parse", "generated/api/pwtools.parse.Cp2kMDOutputFile.raw_return", "generated/api/pwtools.parse.Cp2kMDOutputFile.raw_slice_get", "generated/api/pwtools.parse.Cp2kMDOutputFile.set_all", "generated/api/pwtools.parse.Cp2kMDOutputFile.set_attr_lst", "generated/api/pwtools.parse.Cp2kMDOutputFile.timeaxis", "generated/api/pwtools.parse.Cp2kMDOutputFile.try_set_attr", "generated/api/pwtools.parse.Cp2kMDOutputFile.try_set_attr_lst", "generated/api/pwtools.parse.Cp2kMDOutputFile.update_units", "generated/api/pwtools.parse.Cp2kRelaxOutputFile", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.apply_units", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.assert_attr", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.assert_attr_lst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.assert_set_attr", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.assert_set_attr_lst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.check_set_attr", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.check_set_attr_lst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.default_units", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.dump", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_cell", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_cont", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_coords", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_econst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_ekin", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_etot", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_forces", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_natoms", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_return_attr", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_stress", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_struct", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_symbols", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_temperature", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_timestep", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_traj", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_velocity", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_volume", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.init_attr_lst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.is_set_attr", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.is_set_attr_lst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.load", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.parse", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.raw_return", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.raw_slice_get", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.set_all", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.set_attr_lst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.timeaxis", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.try_set_attr", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.try_set_attr_lst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.update_units", "generated/api/pwtools.parse.Cp2kSCFOutputFile", "generated/api/pwtools.parse.Cp2kSCFOutputFile.apply_units", "generated/api/pwtools.parse.Cp2kSCFOutputFile.assert_attr", "generated/api/pwtools.parse.Cp2kSCFOutputFile.assert_attr_lst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.assert_set_attr", "generated/api/pwtools.parse.Cp2kSCFOutputFile.assert_set_attr_lst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.check_set_attr", "generated/api/pwtools.parse.Cp2kSCFOutputFile.check_set_attr_lst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.default_units", "generated/api/pwtools.parse.Cp2kSCFOutputFile.dump", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_cont", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_etot", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_forces", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_natoms", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_return_attr", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_stress", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_struct", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_symbols", "generated/api/pwtools.parse.Cp2kSCFOutputFile.init_attr_lst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.is_set_attr", "generated/api/pwtools.parse.Cp2kSCFOutputFile.is_set_attr_lst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.load", "generated/api/pwtools.parse.Cp2kSCFOutputFile.parse", "generated/api/pwtools.parse.Cp2kSCFOutputFile.raw_return", "generated/api/pwtools.parse.Cp2kSCFOutputFile.raw_slice_get", "generated/api/pwtools.parse.Cp2kSCFOutputFile.set_all", "generated/api/pwtools.parse.Cp2kSCFOutputFile.set_attr_lst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.try_set_attr", "generated/api/pwtools.parse.Cp2kSCFOutputFile.try_set_attr_lst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.update_units", "generated/api/pwtools.parse.CpmdMDOutputFile", "generated/api/pwtools.parse.CpmdMDOutputFile.apply_units", "generated/api/pwtools.parse.CpmdMDOutputFile.assert_attr", "generated/api/pwtools.parse.CpmdMDOutputFile.assert_attr_lst", "generated/api/pwtools.parse.CpmdMDOutputFile.assert_set_attr", "generated/api/pwtools.parse.CpmdMDOutputFile.assert_set_attr_lst", "generated/api/pwtools.parse.CpmdMDOutputFile.check_set_attr", "generated/api/pwtools.parse.CpmdMDOutputFile.check_set_attr_lst", "generated/api/pwtools.parse.CpmdMDOutputFile.default_units", "generated/api/pwtools.parse.CpmdMDOutputFile.dump", "generated/api/pwtools.parse.CpmdMDOutputFile.get_cell", "generated/api/pwtools.parse.CpmdMDOutputFile.get_cont", "generated/api/pwtools.parse.CpmdMDOutputFile.get_coords", "generated/api/pwtools.parse.CpmdMDOutputFile.get_coords_frac", "generated/api/pwtools.parse.CpmdMDOutputFile.get_econst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_ekin", "generated/api/pwtools.parse.CpmdMDOutputFile.get_ekin_cell", "generated/api/pwtools.parse.CpmdMDOutputFile.get_ekin_elec", "generated/api/pwtools.parse.CpmdMDOutputFile.get_ekinc", "generated/api/pwtools.parse.CpmdMDOutputFile.get_ekinh", "generated/api/pwtools.parse.CpmdMDOutputFile.get_etot", "generated/api/pwtools.parse.CpmdMDOutputFile.get_forces", "generated/api/pwtools.parse.CpmdMDOutputFile.get_natoms", "generated/api/pwtools.parse.CpmdMDOutputFile.get_nkpoints", "generated/api/pwtools.parse.CpmdMDOutputFile.get_nstep_scf", "generated/api/pwtools.parse.CpmdMDOutputFile.get_return_attr", "generated/api/pwtools.parse.CpmdMDOutputFile.get_scf_converged", "generated/api/pwtools.parse.CpmdMDOutputFile.get_stress", "generated/api/pwtools.parse.CpmdMDOutputFile.get_struct", "generated/api/pwtools.parse.CpmdMDOutputFile.get_symbols", "generated/api/pwtools.parse.CpmdMDOutputFile.get_temperature", "generated/api/pwtools.parse.CpmdMDOutputFile.get_temperature_cell", "generated/api/pwtools.parse.CpmdMDOutputFile.get_timestep", "generated/api/pwtools.parse.CpmdMDOutputFile.get_traj", "generated/api/pwtools.parse.CpmdMDOutputFile.get_velocity", "generated/api/pwtools.parse.CpmdMDOutputFile.init_attr_lst", "generated/api/pwtools.parse.CpmdMDOutputFile.is_set_attr", "generated/api/pwtools.parse.CpmdMDOutputFile.is_set_attr_lst", "generated/api/pwtools.parse.CpmdMDOutputFile.load", "generated/api/pwtools.parse.CpmdMDOutputFile.parse", "generated/api/pwtools.parse.CpmdMDOutputFile.raw_return", "generated/api/pwtools.parse.CpmdMDOutputFile.raw_slice_get", "generated/api/pwtools.parse.CpmdMDOutputFile.set_all", "generated/api/pwtools.parse.CpmdMDOutputFile.set_attr_lst", "generated/api/pwtools.parse.CpmdMDOutputFile.timeaxis", "generated/api/pwtools.parse.CpmdMDOutputFile.try_set_attr", "generated/api/pwtools.parse.CpmdMDOutputFile.try_set_attr_lst", "generated/api/pwtools.parse.CpmdMDOutputFile.update_units", "generated/api/pwtools.parse.CpmdSCFOutputFile", "generated/api/pwtools.parse.CpmdSCFOutputFile.apply_units", "generated/api/pwtools.parse.CpmdSCFOutputFile.assert_attr", "generated/api/pwtools.parse.CpmdSCFOutputFile.assert_attr_lst", "generated/api/pwtools.parse.CpmdSCFOutputFile.assert_set_attr", "generated/api/pwtools.parse.CpmdSCFOutputFile.assert_set_attr_lst", "generated/api/pwtools.parse.CpmdSCFOutputFile.check_set_attr", "generated/api/pwtools.parse.CpmdSCFOutputFile.check_set_attr_lst", "generated/api/pwtools.parse.CpmdSCFOutputFile.default_units", "generated/api/pwtools.parse.CpmdSCFOutputFile.dump", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_cell", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_cont", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_coords_frac", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_etot", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_forces", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_natoms", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_nkpoints", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_nstep_scf", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_return_attr", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_scf_converged", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_stress", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_struct", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_symbols", "generated/api/pwtools.parse.CpmdSCFOutputFile.init_attr_lst", "generated/api/pwtools.parse.CpmdSCFOutputFile.is_set_attr", "generated/api/pwtools.parse.CpmdSCFOutputFile.is_set_attr_lst", "generated/api/pwtools.parse.CpmdSCFOutputFile.load", "generated/api/pwtools.parse.CpmdSCFOutputFile.parse", "generated/api/pwtools.parse.CpmdSCFOutputFile.raw_return", "generated/api/pwtools.parse.CpmdSCFOutputFile.raw_slice_get", "generated/api/pwtools.parse.CpmdSCFOutputFile.set_all", "generated/api/pwtools.parse.CpmdSCFOutputFile.set_attr_lst", "generated/api/pwtools.parse.CpmdSCFOutputFile.try_set_attr", "generated/api/pwtools.parse.CpmdSCFOutputFile.try_set_attr_lst", "generated/api/pwtools.parse.CpmdSCFOutputFile.update_units", "generated/api/pwtools.parse.DcdOutputFile", "generated/api/pwtools.parse.DcdOutputFile.get_cell", "generated/api/pwtools.parse.DcdOutputFile.get_coords", "generated/api/pwtools.parse.DcdOutputFile.get_cryst_const", "generated/api/pwtools.parse.DcdOutputFile.get_natoms", "generated/api/pwtools.parse.DcdOutputFile.get_nstep", "generated/api/pwtools.parse.DcdOutputFile.get_volume", "generated/api/pwtools.parse.Ha", "generated/api/pwtools.parse.LammpsDcdMDOutputFile", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.apply_units", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.assert_attr", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.assert_attr_lst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.assert_set_attr", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.assert_set_attr_lst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.check_set_attr", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.check_set_attr_lst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.default_units", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.dump", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_cell", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_cont", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_coords", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_coords_frac", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_cryst_const", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_ekin", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_etot", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_forces", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_natoms", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_nstep", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_return_attr", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_stress", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_struct", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_symbols", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_temperature", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_timestep", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_traj", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_velocity", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_volume", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.init_attr_lst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.is_set_attr", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.is_set_attr_lst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.load", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.parse", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.raw_return", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.raw_slice_get", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.set_all", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.set_attr_lst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.timeaxis", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.try_set_attr", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.try_set_attr_lst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.update_units", "generated/api/pwtools.parse.LammpsTextMDOutputFile", "generated/api/pwtools.parse.LammpsTextMDOutputFile.apply_units", "generated/api/pwtools.parse.LammpsTextMDOutputFile.assert_attr", "generated/api/pwtools.parse.LammpsTextMDOutputFile.assert_attr_lst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.assert_set_attr", "generated/api/pwtools.parse.LammpsTextMDOutputFile.assert_set_attr_lst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.check_set_attr", "generated/api/pwtools.parse.LammpsTextMDOutputFile.check_set_attr_lst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.default_units", "generated/api/pwtools.parse.LammpsTextMDOutputFile.dump", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_cell", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_cont", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_coords", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_coords_frac", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_cryst_const", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_ekin", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_etot", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_forces", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_natoms", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_return_attr", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_stress", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_struct", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_symbols", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_temperature", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_timestep", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_traj", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_velocity", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_volume", "generated/api/pwtools.parse.LammpsTextMDOutputFile.init_attr_lst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.is_set_attr", "generated/api/pwtools.parse.LammpsTextMDOutputFile.is_set_attr_lst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.load", "generated/api/pwtools.parse.LammpsTextMDOutputFile.parse", "generated/api/pwtools.parse.LammpsTextMDOutputFile.raw_return", "generated/api/pwtools.parse.LammpsTextMDOutputFile.raw_slice_get", "generated/api/pwtools.parse.LammpsTextMDOutputFile.set_all", "generated/api/pwtools.parse.LammpsTextMDOutputFile.set_attr_lst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.timeaxis", "generated/api/pwtools.parse.LammpsTextMDOutputFile.try_set_attr", "generated/api/pwtools.parse.LammpsTextMDOutputFile.try_set_attr_lst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.update_units", "generated/api/pwtools.parse.PDBFile", "generated/api/pwtools.parse.PDBFile.apply_units", "generated/api/pwtools.parse.PDBFile.assert_attr", "generated/api/pwtools.parse.PDBFile.assert_attr_lst", "generated/api/pwtools.parse.PDBFile.assert_set_attr", "generated/api/pwtools.parse.PDBFile.assert_set_attr_lst", "generated/api/pwtools.parse.PDBFile.check_set_attr", "generated/api/pwtools.parse.PDBFile.check_set_attr_lst", "generated/api/pwtools.parse.PDBFile.default_units", "generated/api/pwtools.parse.PDBFile.dump", "generated/api/pwtools.parse.PDBFile.get_cont", "generated/api/pwtools.parse.PDBFile.get_coords", "generated/api/pwtools.parse.PDBFile.get_cryst_const", "generated/api/pwtools.parse.PDBFile.get_return_attr", "generated/api/pwtools.parse.PDBFile.get_struct", "generated/api/pwtools.parse.PDBFile.get_symbols", "generated/api/pwtools.parse.PDBFile.init_attr_lst", "generated/api/pwtools.parse.PDBFile.is_set_attr", "generated/api/pwtools.parse.PDBFile.is_set_attr_lst", "generated/api/pwtools.parse.PDBFile.load", "generated/api/pwtools.parse.PDBFile.parse", "generated/api/pwtools.parse.PDBFile.raw_return", "generated/api/pwtools.parse.PDBFile.raw_slice_get", "generated/api/pwtools.parse.PDBFile.set_all", "generated/api/pwtools.parse.PDBFile.set_attr_lst", "generated/api/pwtools.parse.PDBFile.try_set_attr", "generated/api/pwtools.parse.PDBFile.try_set_attr_lst", "generated/api/pwtools.parse.PDBFile.update_units", "generated/api/pwtools.parse.PwMDOutputFile", "generated/api/pwtools.parse.PwMDOutputFile.apply_units", "generated/api/pwtools.parse.PwMDOutputFile.assert_attr", "generated/api/pwtools.parse.PwMDOutputFile.assert_attr_lst", "generated/api/pwtools.parse.PwMDOutputFile.assert_set_attr", "generated/api/pwtools.parse.PwMDOutputFile.assert_set_attr_lst", "generated/api/pwtools.parse.PwMDOutputFile.check_set_attr", "generated/api/pwtools.parse.PwMDOutputFile.check_set_attr_lst", "generated/api/pwtools.parse.PwMDOutputFile.default_units", "generated/api/pwtools.parse.PwMDOutputFile.dump", "generated/api/pwtools.parse.PwMDOutputFile.get_alat", "generated/api/pwtools.parse.PwMDOutputFile.get_cell", "generated/api/pwtools.parse.PwMDOutputFile.get_cell_unit", "generated/api/pwtools.parse.PwMDOutputFile.get_cont", "generated/api/pwtools.parse.PwMDOutputFile.get_coords", "generated/api/pwtools.parse.PwMDOutputFile.get_coords_frac", "generated/api/pwtools.parse.PwMDOutputFile.get_coords_unit", "generated/api/pwtools.parse.PwMDOutputFile.get_ekin", "generated/api/pwtools.parse.PwMDOutputFile.get_etot", "generated/api/pwtools.parse.PwMDOutputFile.get_forces", "generated/api/pwtools.parse.PwMDOutputFile.get_natoms", "generated/api/pwtools.parse.PwMDOutputFile.get_nkpoints", "generated/api/pwtools.parse.PwMDOutputFile.get_nstep_scf", "generated/api/pwtools.parse.PwMDOutputFile.get_return_attr", "generated/api/pwtools.parse.PwMDOutputFile.get_scf_converged", "generated/api/pwtools.parse.PwMDOutputFile.get_stress", "generated/api/pwtools.parse.PwMDOutputFile.get_struct", "generated/api/pwtools.parse.PwMDOutputFile.get_symbols", "generated/api/pwtools.parse.PwMDOutputFile.get_temperature", "generated/api/pwtools.parse.PwMDOutputFile.get_timestep", "generated/api/pwtools.parse.PwMDOutputFile.get_traj", "generated/api/pwtools.parse.PwMDOutputFile.init_attr_lst", "generated/api/pwtools.parse.PwMDOutputFile.is_set_attr", "generated/api/pwtools.parse.PwMDOutputFile.is_set_attr_lst", "generated/api/pwtools.parse.PwMDOutputFile.load", "generated/api/pwtools.parse.PwMDOutputFile.parse", "generated/api/pwtools.parse.PwMDOutputFile.raw_return", "generated/api/pwtools.parse.PwMDOutputFile.raw_slice_get", "generated/api/pwtools.parse.PwMDOutputFile.set_all", "generated/api/pwtools.parse.PwMDOutputFile.set_attr_lst", "generated/api/pwtools.parse.PwMDOutputFile.timeaxis", "generated/api/pwtools.parse.PwMDOutputFile.try_set_attr", "generated/api/pwtools.parse.PwMDOutputFile.try_set_attr_lst", "generated/api/pwtools.parse.PwMDOutputFile.update_units", "generated/api/pwtools.parse.PwSCFOutputFile", "generated/api/pwtools.parse.PwSCFOutputFile.apply_units", "generated/api/pwtools.parse.PwSCFOutputFile.assert_attr", "generated/api/pwtools.parse.PwSCFOutputFile.assert_attr_lst", "generated/api/pwtools.parse.PwSCFOutputFile.assert_set_attr", "generated/api/pwtools.parse.PwSCFOutputFile.assert_set_attr_lst", "generated/api/pwtools.parse.PwSCFOutputFile.check_set_attr", "generated/api/pwtools.parse.PwSCFOutputFile.check_set_attr_lst", "generated/api/pwtools.parse.PwSCFOutputFile.default_units", "generated/api/pwtools.parse.PwSCFOutputFile.dump", "generated/api/pwtools.parse.PwSCFOutputFile.get_alat", "generated/api/pwtools.parse.PwSCFOutputFile.get_cell", "generated/api/pwtools.parse.PwSCFOutputFile.get_cont", "generated/api/pwtools.parse.PwSCFOutputFile.get_coords", "generated/api/pwtools.parse.PwSCFOutputFile.get_etot", "generated/api/pwtools.parse.PwSCFOutputFile.get_forces", "generated/api/pwtools.parse.PwSCFOutputFile.get_natoms", "generated/api/pwtools.parse.PwSCFOutputFile.get_nkpoints", "generated/api/pwtools.parse.PwSCFOutputFile.get_nstep_scf", "generated/api/pwtools.parse.PwSCFOutputFile.get_return_attr", "generated/api/pwtools.parse.PwSCFOutputFile.get_scf_converged", "generated/api/pwtools.parse.PwSCFOutputFile.get_stress", "generated/api/pwtools.parse.PwSCFOutputFile.get_struct", "generated/api/pwtools.parse.PwSCFOutputFile.get_symbols", "generated/api/pwtools.parse.PwSCFOutputFile.init_attr_lst", "generated/api/pwtools.parse.PwSCFOutputFile.is_set_attr", "generated/api/pwtools.parse.PwSCFOutputFile.is_set_attr_lst", "generated/api/pwtools.parse.PwSCFOutputFile.load", "generated/api/pwtools.parse.PwSCFOutputFile.parse", "generated/api/pwtools.parse.PwSCFOutputFile.raw_return", "generated/api/pwtools.parse.PwSCFOutputFile.raw_slice_get", "generated/api/pwtools.parse.PwSCFOutputFile.set_all", "generated/api/pwtools.parse.PwSCFOutputFile.set_attr_lst", "generated/api/pwtools.parse.PwSCFOutputFile.try_set_attr", "generated/api/pwtools.parse.PwSCFOutputFile.try_set_attr_lst", "generated/api/pwtools.parse.PwSCFOutputFile.update_units", "generated/api/pwtools.parse.PwVCMDOutputFile", "generated/api/pwtools.parse.PwVCMDOutputFile.apply_units", "generated/api/pwtools.parse.PwVCMDOutputFile.assert_attr", "generated/api/pwtools.parse.PwVCMDOutputFile.assert_attr_lst", "generated/api/pwtools.parse.PwVCMDOutputFile.assert_set_attr", "generated/api/pwtools.parse.PwVCMDOutputFile.assert_set_attr_lst", "generated/api/pwtools.parse.PwVCMDOutputFile.check_set_attr", "generated/api/pwtools.parse.PwVCMDOutputFile.check_set_attr_lst", "generated/api/pwtools.parse.PwVCMDOutputFile.default_units", "generated/api/pwtools.parse.PwVCMDOutputFile.dump", "generated/api/pwtools.parse.PwVCMDOutputFile.get_alat", "generated/api/pwtools.parse.PwVCMDOutputFile.get_cell", "generated/api/pwtools.parse.PwVCMDOutputFile.get_cell_unit", "generated/api/pwtools.parse.PwVCMDOutputFile.get_cont", "generated/api/pwtools.parse.PwVCMDOutputFile.get_coords", "generated/api/pwtools.parse.PwVCMDOutputFile.get_coords_frac", "generated/api/pwtools.parse.PwVCMDOutputFile.get_coords_unit", "generated/api/pwtools.parse.PwVCMDOutputFile.get_econst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_ekin", "generated/api/pwtools.parse.PwVCMDOutputFile.get_etot", "generated/api/pwtools.parse.PwVCMDOutputFile.get_forces", "generated/api/pwtools.parse.PwVCMDOutputFile.get_natoms", "generated/api/pwtools.parse.PwVCMDOutputFile.get_nkpoints", "generated/api/pwtools.parse.PwVCMDOutputFile.get_nstep_scf", "generated/api/pwtools.parse.PwVCMDOutputFile.get_return_attr", "generated/api/pwtools.parse.PwVCMDOutputFile.get_scf_converged", "generated/api/pwtools.parse.PwVCMDOutputFile.get_stress", "generated/api/pwtools.parse.PwVCMDOutputFile.get_struct", "generated/api/pwtools.parse.PwVCMDOutputFile.get_symbols", "generated/api/pwtools.parse.PwVCMDOutputFile.get_temperature", "generated/api/pwtools.parse.PwVCMDOutputFile.get_timestep", "generated/api/pwtools.parse.PwVCMDOutputFile.get_traj", "generated/api/pwtools.parse.PwVCMDOutputFile.init_attr_lst", "generated/api/pwtools.parse.PwVCMDOutputFile.is_set_attr", "generated/api/pwtools.parse.PwVCMDOutputFile.is_set_attr_lst", "generated/api/pwtools.parse.PwVCMDOutputFile.load", "generated/api/pwtools.parse.PwVCMDOutputFile.parse", "generated/api/pwtools.parse.PwVCMDOutputFile.raw_return", "generated/api/pwtools.parse.PwVCMDOutputFile.raw_slice_get", "generated/api/pwtools.parse.PwVCMDOutputFile.set_all", "generated/api/pwtools.parse.PwVCMDOutputFile.set_attr_lst", "generated/api/pwtools.parse.PwVCMDOutputFile.timeaxis", "generated/api/pwtools.parse.PwVCMDOutputFile.try_set_attr", "generated/api/pwtools.parse.PwVCMDOutputFile.try_set_attr_lst", "generated/api/pwtools.parse.PwVCMDOutputFile.update_units", "generated/api/pwtools.parse.Ry", "generated/api/pwtools.parse.StructureFileParser", "generated/api/pwtools.parse.StructureFileParser.apply_units", "generated/api/pwtools.parse.StructureFileParser.assert_attr", "generated/api/pwtools.parse.StructureFileParser.assert_attr_lst", "generated/api/pwtools.parse.StructureFileParser.assert_set_attr", "generated/api/pwtools.parse.StructureFileParser.assert_set_attr_lst", "generated/api/pwtools.parse.StructureFileParser.check_set_attr", "generated/api/pwtools.parse.StructureFileParser.check_set_attr_lst", "generated/api/pwtools.parse.StructureFileParser.default_units", "generated/api/pwtools.parse.StructureFileParser.dump", "generated/api/pwtools.parse.StructureFileParser.get_cont", "generated/api/pwtools.parse.StructureFileParser.get_return_attr", "generated/api/pwtools.parse.StructureFileParser.get_struct", "generated/api/pwtools.parse.StructureFileParser.init_attr_lst", "generated/api/pwtools.parse.StructureFileParser.is_set_attr", "generated/api/pwtools.parse.StructureFileParser.is_set_attr_lst", "generated/api/pwtools.parse.StructureFileParser.load", "generated/api/pwtools.parse.StructureFileParser.parse", "generated/api/pwtools.parse.StructureFileParser.raw_return", "generated/api/pwtools.parse.StructureFileParser.raw_slice_get", "generated/api/pwtools.parse.StructureFileParser.set_all", "generated/api/pwtools.parse.StructureFileParser.set_attr_lst", "generated/api/pwtools.parse.StructureFileParser.try_set_attr", "generated/api/pwtools.parse.StructureFileParser.try_set_attr_lst", "generated/api/pwtools.parse.StructureFileParser.update_units", "generated/api/pwtools.parse.TrajectoryFileParser", "generated/api/pwtools.parse.TrajectoryFileParser.apply_units", "generated/api/pwtools.parse.TrajectoryFileParser.assert_attr", "generated/api/pwtools.parse.TrajectoryFileParser.assert_attr_lst", "generated/api/pwtools.parse.TrajectoryFileParser.assert_set_attr", "generated/api/pwtools.parse.TrajectoryFileParser.assert_set_attr_lst", "generated/api/pwtools.parse.TrajectoryFileParser.check_set_attr", "generated/api/pwtools.parse.TrajectoryFileParser.check_set_attr_lst", "generated/api/pwtools.parse.TrajectoryFileParser.default_units", "generated/api/pwtools.parse.TrajectoryFileParser.dump", "generated/api/pwtools.parse.TrajectoryFileParser.get_cont", "generated/api/pwtools.parse.TrajectoryFileParser.get_return_attr", "generated/api/pwtools.parse.TrajectoryFileParser.get_struct", "generated/api/pwtools.parse.TrajectoryFileParser.get_traj", "generated/api/pwtools.parse.TrajectoryFileParser.init_attr_lst", "generated/api/pwtools.parse.TrajectoryFileParser.is_set_attr", "generated/api/pwtools.parse.TrajectoryFileParser.is_set_attr_lst", "generated/api/pwtools.parse.TrajectoryFileParser.load", "generated/api/pwtools.parse.TrajectoryFileParser.parse", "generated/api/pwtools.parse.TrajectoryFileParser.raw_return", "generated/api/pwtools.parse.TrajectoryFileParser.raw_slice_get", "generated/api/pwtools.parse.TrajectoryFileParser.set_all", "generated/api/pwtools.parse.TrajectoryFileParser.set_attr_lst", "generated/api/pwtools.parse.TrajectoryFileParser.timeaxis", "generated/api/pwtools.parse.TrajectoryFileParser.try_set_attr", "generated/api/pwtools.parse.TrajectoryFileParser.try_set_attr_lst", "generated/api/pwtools.parse.TrajectoryFileParser.update_units", "generated/api/pwtools.parse.arr1d_from_txt", "generated/api/pwtools.parse.arr2d_from_txt", "generated/api/pwtools.parse.axis_lens", "generated/api/pwtools.parse.eV", "generated/api/pwtools.parse.float_from_txt", "generated/api/pwtools.parse.fs", "generated/api/pwtools.parse.int_from_txt", "generated/api/pwtools.parse.nstep_from_txt", "generated/api/pwtools.parse.pi", "generated/api/pwtools.parse.ps", "generated/api/pwtools.parse.thart", "generated/api/pwtools.parse.traj_from_txt", "generated/api/pwtools.pwscf.EPS", "generated/api/pwtools.pwscf.atpos_str", "generated/api/pwtools.pwscf.atpos_str_fast", "generated/api/pwtools.pwscf.atspec_str", "generated/api/pwtools.pwscf.bool2str", "generated/api/pwtools.pwscf.ibrav2cell", "generated/api/pwtools.pwscf.kpoints_str", "generated/api/pwtools.pwscf.kpoints_str_pwin", "generated/api/pwtools.pwscf.kpoints_str_pwin_full", "generated/api/pwtools.pwscf.kpointstr", "generated/api/pwtools.pwscf.kpointstr_pwin", "generated/api/pwtools.pwscf.kpointstr_pwin2", "generated/api/pwtools.pwscf.read_all_dyn", "generated/api/pwtools.pwscf.read_dyn", "generated/api/pwtools.pwscf.read_dynmat", "generated/api/pwtools.pwscf.read_dynmat_ir_raman", "generated/api/pwtools.pwscf.read_dynmat_out", "generated/api/pwtools.pwscf.read_matdyn_freq", "generated/api/pwtools.pwscf.read_matdyn_modes", "generated/api/pwtools.pydos.direct_pdos", "generated/api/pwtools.pydos.fvacf", "generated/api/pwtools.pydos.pdos", "generated/api/pwtools.pydos.pyvacf", "generated/api/pwtools.pydos.vacf_pdos", "generated/api/pwtools.random.RandomStructure", "generated/api/pwtools.random.RandomStructure.get_random_cryst_const", "generated/api/pwtools.random.RandomStructure.get_random_struct", "generated/api/pwtools.random.RandomStructureFail", "generated/api/pwtools.random.pi", "generated/api/pwtools.random.random_struct", "generated/api/pwtools.rbf.core.JAX_MODE", "generated/api/pwtools.rbf.core.Rbf", "generated/api/pwtools.rbf.core.Rbf.deriv", "generated/api/pwtools.rbf.core.Rbf.deriv_jax", "generated/api/pwtools.rbf.core.Rbf.fit", "generated/api/pwtools.rbf.core.Rbf.fit_error", "generated/api/pwtools.rbf.core.Rbf.get_distsq", "generated/api/pwtools.rbf.core.Rbf.get_params", "generated/api/pwtools.rbf.core.Rbf.predict", "generated/api/pwtools.rbf.core._np_distsq", "generated/api/pwtools.rbf.core.estimate_p", "generated/api/pwtools.rbf.core.euclidean_dists", "generated/api/pwtools.rbf.core.jit", "generated/api/pwtools.rbf.core.rbf_dct", "generated/api/pwtools.rbf.core.rbf_gauss", "generated/api/pwtools.rbf.core.rbf_inv_multi", "generated/api/pwtools.rbf.core.rbf_multi", "generated/api/pwtools.rbf.core.squared_dists", "generated/api/pwtools.rbf.hyperopt.FitError", "generated/api/pwtools.rbf.hyperopt.FitError.cv", "generated/api/pwtools.rbf.hyperopt.FitError.err_cv", "generated/api/pwtools.rbf.hyperopt.FitError.err_direct", "generated/api/pwtools.rbf.hyperopt.RepeatedKFold", "generated/api/pwtools.rbf.hyperopt.fit_opt", "generated/api/pwtools.regex.float_re", "generated/api/pwtools.signal.FIRFilter", "generated/api/pwtools.signal.acorr", "generated/api/pwtools.signal.cauchy", "generated/api/pwtools.signal.dft", "generated/api/pwtools.signal.ezfft", "generated/api/pwtools.signal.fft_1d_loop", "generated/api/pwtools.signal.fftsample", "generated/api/pwtools.signal.find_peaks", "generated/api/pwtools.signal.gauss", "generated/api/pwtools.signal.lorentz", "generated/api/pwtools.signal.mirror", "generated/api/pwtools.signal.odd", "generated/api/pwtools.signal.pad_zeros", "generated/api/pwtools.signal.scale", "generated/api/pwtools.signal.smooth", "generated/api/pwtools.signal.welch", "generated/api/pwtools.sql.SQLEntry", "generated/api/pwtools.sql.SQLiteDB", "generated/api/pwtools.sql.SQLiteDB.add_column", "generated/api/pwtools.sql.SQLiteDB.add_columns", "generated/api/pwtools.sql.SQLiteDB.attach_column", "generated/api/pwtools.sql.SQLiteDB.commit", "generated/api/pwtools.sql.SQLiteDB.create_table", "generated/api/pwtools.sql.SQLiteDB.execute", "generated/api/pwtools.sql.SQLiteDB.executemany", "generated/api/pwtools.sql.SQLiteDB.executescript", "generated/api/pwtools.sql.SQLiteDB.fill_column", "generated/api/pwtools.sql.SQLiteDB.finish", "generated/api/pwtools.sql.SQLiteDB.get_array", "generated/api/pwtools.sql.SQLiteDB.get_array1d", "generated/api/pwtools.sql.SQLiteDB.get_dict", "generated/api/pwtools.sql.SQLiteDB.get_header", "generated/api/pwtools.sql.SQLiteDB.get_list1d", "generated/api/pwtools.sql.SQLiteDB.get_max_rowid", "generated/api/pwtools.sql.SQLiteDB.get_single", "generated/api/pwtools.sql.SQLiteDB.get_table", "generated/api/pwtools.sql.SQLiteDB.has_column", "generated/api/pwtools.sql.SQLiteDB.has_table", "generated/api/pwtools.sql.SQLiteDB.set_table", "generated/api/pwtools.sql.find_sqltype", "generated/api/pwtools.sql.fix_sql_header", "generated/api/pwtools.sql.fix_sqltype", "generated/api/pwtools.sql.get_test_db", "generated/api/pwtools.sql.makedb", "generated/api/pwtools.sql.sql_column", "generated/api/pwtools.sql.sql_column_old", "generated/api/pwtools.sql.sql_matrix", "generated/api/pwtools.symmetry.is_same_struct", "generated/api/pwtools.symmetry.spglib2struct", "generated/api/pwtools.symmetry.spglib_get_primitive", "generated/api/pwtools.symmetry.spglib_get_spacegroup", "generated/api/pwtools.symmetry.struct2spglib", "generated/api/pwtools.thermo.Gibbs", "generated/api/pwtools.thermo.Gibbs.calc_F", "generated/api/pwtools.thermo.Gibbs.calc_G", "generated/api/pwtools.thermo.Gibbs.calc_H", "generated/api/pwtools.thermo.Gibbs.set_fitfunc", "generated/api/pwtools.thermo.HarmonicThermo", "generated/api/pwtools.thermo.HarmonicThermo.cv", "generated/api/pwtools.thermo.HarmonicThermo.evib", "generated/api/pwtools.thermo.HarmonicThermo.fvib", "generated/api/pwtools.thermo.HarmonicThermo.isochoric_heat_capacity", "generated/api/pwtools.thermo.HarmonicThermo.svib", "generated/api/pwtools.thermo.HarmonicThermo.vibrational_entropy", "generated/api/pwtools.thermo.HarmonicThermo.vibrational_free_energy", "generated/api/pwtools.thermo.HarmonicThermo.vibrational_internal_energy", "generated/api/pwtools.thermo.R", "generated/api/pwtools.thermo.Ry_to_J", "generated/api/pwtools.thermo.c0", "generated/api/pwtools.thermo.coth", "generated/api/pwtools.thermo.debye_func", "generated/api/pwtools.thermo.eV", "generated/api/pwtools.thermo.eV_by_Ang3_to_GPa", "generated/api/pwtools.thermo.einstein_func", "generated/api/pwtools.thermo.expansion", "generated/api/pwtools.thermo.hplanck", "generated/api/pwtools.thermo.kb", "generated/api/pwtools.thermo.pi", "generated/api/pwtools.timer.TagTimer", "generated/api/pwtools.timer.TagTimer.p", "generated/api/pwtools.timer.TagTimer.pt", "generated/api/pwtools.timer.TagTimer.t", "generated/api/pwtools.verbose.VERBOSE", "generated/api/pwtools.verbose.verbose", "generated/api/pwtools.visualize.ViewFactory", "generated/api/pwtools.visualize.assert_struct", "generated/api/pwtools.visualize.avogadro_cmd", "generated/api/pwtools.visualize.view_avogadro", "generated/api/pwtools.visualize.view_jmol", "generated/api/pwtools.visualize.view_vmd_axsf", "generated/api/pwtools.visualize.view_vmd_xyz", "generated/api/pwtools.visualize.view_xcrysden", "index", "written/background/ase", "written/background/coord_trans", "written/background/index", "written/background/param_study", "written/background/parsing", "written/background/phonon_dos", "written/background/pwscf", "written/background/rbf", "written/cp2k_restart", "written/dispersion_example", "written/features", "written/index", "written/install", "written/qha", "written/refs", "written/tutorial"], "envversion": {"sphinx": 62, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1}, "filenames": ["generated/api/__sphinx_autodoc_module__pwtools._dcd.rst", "generated/api/__sphinx_autodoc_module__pwtools._flib.rst", "generated/api/__sphinx_autodoc_module__pwtools.arrayio.rst", "generated/api/__sphinx_autodoc_module__pwtools.atomic_data.rst", "generated/api/__sphinx_autodoc_module__pwtools.base.rst", "generated/api/__sphinx_autodoc_module__pwtools.batch.rst", "generated/api/__sphinx_autodoc_module__pwtools.calculators.rst", "generated/api/__sphinx_autodoc_module__pwtools.comb.rst", "generated/api/__sphinx_autodoc_module__pwtools.common.rst", "generated/api/__sphinx_autodoc_module__pwtools.config.rst", "generated/api/__sphinx_autodoc_module__pwtools.constants.rst", "generated/api/__sphinx_autodoc_module__pwtools.crys.rst", "generated/api/__sphinx_autodoc_module__pwtools.dcd.rst", "generated/api/__sphinx_autodoc_module__pwtools.decorators.rst", "generated/api/__sphinx_autodoc_module__pwtools.eos.rst", "generated/api/__sphinx_autodoc_module__pwtools.io.rst", "generated/api/__sphinx_autodoc_module__pwtools.kpath.rst", "generated/api/__sphinx_autodoc_module__pwtools.lammps.rst", "generated/api/__sphinx_autodoc_module__pwtools.mpl.rst", "generated/api/__sphinx_autodoc_module__pwtools.mttk.rst", "generated/api/__sphinx_autodoc_module__pwtools.num.rst", "generated/api/__sphinx_autodoc_module__pwtools.parse.rst", "generated/api/__sphinx_autodoc_module__pwtools.pwscf.rst", "generated/api/__sphinx_autodoc_module__pwtools.pydos.rst", "generated/api/__sphinx_autodoc_module__pwtools.random.rst", "generated/api/__sphinx_autodoc_module__pwtools.rbf.core.rst", "generated/api/__sphinx_autodoc_module__pwtools.rbf.hyperopt.rst", "generated/api/__sphinx_autodoc_module__pwtools.regex.rst", "generated/api/__sphinx_autodoc_module__pwtools.signal.rst", "generated/api/__sphinx_autodoc_module__pwtools.sql.rst", "generated/api/__sphinx_autodoc_module__pwtools.symmetry.rst", "generated/api/__sphinx_autodoc_module__pwtools.thermo.rst", "generated/api/__sphinx_autodoc_module__pwtools.timer.rst", "generated/api/__sphinx_autodoc_module__pwtools.verbose.rst", "generated/api/__sphinx_autodoc_module__pwtools.visualize.rst", "generated/api/index.rst", "generated/api/pwtools._dcd.get_dcd_file_info.rst", "generated/api/pwtools._dcd.open_file.rst", "generated/api/pwtools._dcd.read_dcd_data.rst", "generated/api/pwtools._dcd.read_dcd_data_from_unit.rst", "generated/api/pwtools._dcd.read_dcd_header_from_unit.rst", "generated/api/pwtools._flib.acorr.rst", "generated/api/pwtools._flib.angles.rst", "generated/api/pwtools._flib.cart2frac.rst", "generated/api/pwtools._flib.cart2frac_traj.rst", "generated/api/pwtools._flib.distances_traj.rst", "generated/api/pwtools._flib.distsq.rst", "generated/api/pwtools._flib.distsq_frac.rst", "generated/api/pwtools._flib.frac2cart.rst", "generated/api/pwtools._flib.frac2cart_traj.rst", "generated/api/pwtools._flib.solve.rst", "generated/api/pwtools._flib.vacf.rst", "generated/api/pwtools._flib.vect_loops.rst", "generated/api/pwtools.arrayio.HEADER_COMMENT.rst", "generated/api/pwtools.arrayio.HEADER_MAXLINES.rst", "generated/api/pwtools.arrayio.TXT_MAXDIM.rst", "generated/api/pwtools.arrayio._read_header_config.rst", "generated/api/pwtools.arrayio._write_header_config.rst", "generated/api/pwtools.arrayio.arr2d_to_3d.rst", "generated/api/pwtools.arrayio.readtxt.rst", "generated/api/pwtools.arrayio.writetxt.rst", "generated/api/pwtools.atomic_data.covalent_radii.rst", "generated/api/pwtools.atomic_data.masses.rst", "generated/api/pwtools.atomic_data.missing.rst", "generated/api/pwtools.atomic_data.numbers.rst", "generated/api/pwtools.atomic_data.pt.rst", "generated/api/pwtools.atomic_data.symbols.rst", "generated/api/pwtools.base.FlexibleGetters.rst", "generated/api/pwtools.base.FlexibleGetters.assert_attr.rst", "generated/api/pwtools.base.FlexibleGetters.assert_attr_lst.rst", "generated/api/pwtools.base.FlexibleGetters.assert_set_attr.rst", "generated/api/pwtools.base.FlexibleGetters.assert_set_attr_lst.rst", "generated/api/pwtools.base.FlexibleGetters.check_set_attr.rst", "generated/api/pwtools.base.FlexibleGetters.check_set_attr_lst.rst", "generated/api/pwtools.base.FlexibleGetters.dump.rst", "generated/api/pwtools.base.FlexibleGetters.get_return_attr.rst", "generated/api/pwtools.base.FlexibleGetters.init_attr_lst.rst", "generated/api/pwtools.base.FlexibleGetters.is_set_attr.rst", "generated/api/pwtools.base.FlexibleGetters.is_set_attr_lst.rst", "generated/api/pwtools.base.FlexibleGetters.load.rst", "generated/api/pwtools.base.FlexibleGetters.raw_return.rst", "generated/api/pwtools.base.FlexibleGetters.raw_slice_get.rst", "generated/api/pwtools.base.FlexibleGetters.set_all.rst", "generated/api/pwtools.base.FlexibleGetters.set_attr_lst.rst", "generated/api/pwtools.base.FlexibleGetters.try_set_attr.rst", "generated/api/pwtools.base.FlexibleGetters.try_set_attr_lst.rst", "generated/api/pwtools.batch.Calculation.rst", "generated/api/pwtools.batch.Calculation.get_sql_record.rst", "generated/api/pwtools.batch.Calculation.write_input.rst", "generated/api/pwtools.batch.Case.rst", "generated/api/pwtools.batch.FileTemplate.rst", "generated/api/pwtools.batch.FileTemplate.write.rst", "generated/api/pwtools.batch.FileTemplate.writesql.rst", "generated/api/pwtools.batch.Machine.rst", "generated/api/pwtools.batch.Machine.get_jobfile_basename.rst", "generated/api/pwtools.batch.Machine.get_sql_record.rst", "generated/api/pwtools.batch.ParameterStudy.rst", "generated/api/pwtools.batch.ParameterStudy.write_input.rst", "generated/api/pwtools.batch.conv_table.rst", "generated/api/pwtools.batch.default_repl_keys.rst", "generated/api/pwtools.calculators.CalculatorBase.rst", "generated/api/pwtools.calculators.CalculatorBase.fill_infile_templ.rst", "generated/api/pwtools.calculators.CalculatorBase.init_params_from_input.rst", "generated/api/pwtools.calculators.FileIOCalculator.rst", "generated/api/pwtools.calculators.Lammps.rst", "generated/api/pwtools.calculators.Lammps.default_parameters.rst", "generated/api/pwtools.calculators.Lammps.fill_infile_templ.rst", "generated/api/pwtools.calculators.Lammps.implemented_properties.rst", "generated/api/pwtools.calculators.Lammps.infile_templ.rst", "generated/api/pwtools.calculators.Lammps.init_params_from_input.rst", "generated/api/pwtools.calculators.Lammps.read_results.rst", "generated/api/pwtools.calculators.Lammps.write_input.rst", "generated/api/pwtools.calculators.Pwscf.rst", "generated/api/pwtools.calculators.Pwscf.default_parameters.rst", "generated/api/pwtools.calculators.Pwscf.fill_infile_templ.rst", "generated/api/pwtools.calculators.Pwscf.implemented_properties.rst", "generated/api/pwtools.calculators.Pwscf.infile_templ.rst", "generated/api/pwtools.calculators.Pwscf.init_params_from_input.rst", "generated/api/pwtools.calculators.Pwscf.read_results.rst", "generated/api/pwtools.calculators.Pwscf.write_input.rst", "generated/api/pwtools.calculators._ase_missing.rst", "generated/api/pwtools.calculators.find_exe.rst", "generated/api/pwtools.calculators.kpts2mp.rst", "generated/api/pwtools.calculators.stress_pwtools2ase.rst", "generated/api/pwtools.comb._ensure_list.rst", "generated/api/pwtools.comb.nested_loops.rst", "generated/api/pwtools.comb.unique2d.rst", "generated/api/pwtools.common.EPS.rst", "generated/api/pwtools.common.add_to_config.rst", "generated/api/pwtools.common.asseq.rst", "generated/api/pwtools.common.assert_cond.rst", "generated/api/pwtools.common.backtick.rst", "generated/api/pwtools.common.backup.rst", "generated/api/pwtools.common.cpickle_load.rst", "generated/api/pwtools.common.dict2class.rst", "generated/api/pwtools.common.dict2str.rst", "generated/api/pwtools.common.ffloat.rst", "generated/api/pwtools.common.file_read.rst", "generated/api/pwtools.common.file_readlines.rst", "generated/api/pwtools.common.file_template_replace.rst", "generated/api/pwtools.common.file_write.rst", "generated/api/pwtools.common.fix_eps.rst", "generated/api/pwtools.common.flatten.rst", "generated/api/pwtools.common.fpj.rst", "generated/api/pwtools.common.frepr.rst", "generated/api/pwtools.common.fullpath.rst", "generated/api/pwtools.common.fullpathjoin.rst", "generated/api/pwtools.common.get_filename.rst", "generated/api/pwtools.common.iflatten.rst", "generated/api/pwtools.common.is_seq.rst", "generated/api/pwtools.common.makedirs.rst", "generated/api/pwtools.common.permit_sigpipe.rst", "generated/api/pwtools.common.pop_from_list.rst", "generated/api/pwtools.common.print_dct.rst", "generated/api/pwtools.common.seq2str.rst", "generated/api/pwtools.common.str2seq.rst", "generated/api/pwtools.common.str2tup.rst", "generated/api/pwtools.common.str_arr.rst", "generated/api/pwtools.common.system.rst", "generated/api/pwtools.common.template_replace.rst", "generated/api/pwtools.common.tobool.rst", "generated/api/pwtools.common.toslice.rst", "generated/api/pwtools.common.tup2str.rst", "generated/api/pwtools.config.name.rst", "generated/api/pwtools.config.use_jax.rst", "generated/api/pwtools.constants.Ang.rst", "generated/api/pwtools.constants.Angstrom.rst", "generated/api/pwtools.constants.Bohr.rst", "generated/api/pwtools.constants.Bohr_to_Ang.rst", "generated/api/pwtools.constants.Eh.rst", "generated/api/pwtools.constants.Eryd.rst", "generated/api/pwtools.constants.GPa.rst", "generated/api/pwtools.constants.Ha.rst", "generated/api/pwtools.constants.Ha_to_eV.rst", "generated/api/pwtools.constants.Hartree.rst", "generated/api/pwtools.constants.J_to_eV.rst", "generated/api/pwtools.constants.J_to_rcm.rst", "generated/api/pwtools.constants.R.rst", "generated/api/pwtools.constants.Ry.rst", "generated/api/pwtools.constants.Ry_to_Ha.rst", "generated/api/pwtools.constants.Ry_to_Hz.rst", "generated/api/pwtools.constants.Ry_to_J.rst", "generated/api/pwtools.constants.Ry_to_eV.rst", "generated/api/pwtools.constants.Ry_to_rcm.rst", "generated/api/pwtools.constants.Rydberg.rst", "generated/api/pwtools.constants.a0.rst", "generated/api/pwtools.constants.a0_to_A.rst", "generated/api/pwtools.constants.alpha.rst", "generated/api/pwtools.constants.amu.rst", "generated/api/pwtools.constants.avo.rst", "generated/api/pwtools.constants.c0.rst", "generated/api/pwtools.constants.dyn.rst", "generated/api/pwtools.constants.e0.rst", "generated/api/pwtools.constants.eV.rst", "generated/api/pwtools.constants.eV_by_Ang3_to_GPa.rst", "generated/api/pwtools.constants.eV_by_Ang3_to_Pa.rst", "generated/api/pwtools.constants.eps0.rst", "generated/api/pwtools.constants.fs.rst", "generated/api/pwtools.constants.h.rst", "generated/api/pwtools.constants.hbar.rst", "generated/api/pwtools.constants.hplanck.rst", "generated/api/pwtools.constants.kb.rst", "generated/api/pwtools.constants.m0.rst", "generated/api/pwtools.constants.mu0.rst", "generated/api/pwtools.constants.pi.rst", "generated/api/pwtools.constants.ps.rst", "generated/api/pwtools.constants.rcm_to_Hz.rst", "generated/api/pwtools.constants.th.rst", "generated/api/pwtools.constants.thart.rst", "generated/api/pwtools.constants.tryd.rst", "generated/api/pwtools.crys.Angstrom.rst", "generated/api/pwtools.crys.FakeASEAtoms.rst", "generated/api/pwtools.crys.FakeASEAtoms.apply_units.rst", "generated/api/pwtools.crys.FakeASEAtoms.assert_attr.rst", "generated/api/pwtools.crys.FakeASEAtoms.assert_attr_lst.rst", "generated/api/pwtools.crys.FakeASEAtoms.assert_set_attr.rst", "generated/api/pwtools.crys.FakeASEAtoms.assert_set_attr_lst.rst", "generated/api/pwtools.crys.FakeASEAtoms.check_set_attr.rst", "generated/api/pwtools.crys.FakeASEAtoms.check_set_attr_lst.rst", "generated/api/pwtools.crys.FakeASEAtoms.compress.rst", "generated/api/pwtools.crys.FakeASEAtoms.copy.rst", "generated/api/pwtools.crys.FakeASEAtoms.dump.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_ase_atoms.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_atomic_numbers.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_cell.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_coords.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_coords_frac.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_cryst_const.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_ekin.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_etot.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_fake_ase_atoms.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_forces.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_magnetic_moments.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_mass.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_mass_unique.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_natoms.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_nspecies.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_nstep.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_ntypat.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_order.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_pressure.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_return_attr.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_spglib.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_stress.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_symbols.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_symbols_unique.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_temperature.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_time.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_timestep.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_traj.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_typat.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_velocity.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_volume.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_znucl.rst", "generated/api/pwtools.crys.FakeASEAtoms.get_znucl_unique.rst", "generated/api/pwtools.crys.FakeASEAtoms.init_attr_lst.rst", "generated/api/pwtools.crys.FakeASEAtoms.is_set_attr.rst", "generated/api/pwtools.crys.FakeASEAtoms.is_set_attr_lst.rst", "generated/api/pwtools.crys.FakeASEAtoms.is_struct.rst", "generated/api/pwtools.crys.FakeASEAtoms.is_traj.rst", "generated/api/pwtools.crys.FakeASEAtoms.load.rst", "generated/api/pwtools.crys.FakeASEAtoms.raw_return.rst", "generated/api/pwtools.crys.FakeASEAtoms.raw_slice_get.rst", "generated/api/pwtools.crys.FakeASEAtoms.set_all.rst", "generated/api/pwtools.crys.FakeASEAtoms.set_attr_lst.rst", "generated/api/pwtools.crys.FakeASEAtoms.timeaxis.rst", "generated/api/pwtools.crys.FakeASEAtoms.try_set_attr.rst", "generated/api/pwtools.crys.FakeASEAtoms.try_set_attr_lst.rst", "generated/api/pwtools.crys.FakeASEAtoms.update_units.rst", "generated/api/pwtools.crys.Structure.rst", "generated/api/pwtools.crys.Structure.apply_units.rst", "generated/api/pwtools.crys.Structure.assert_attr.rst", "generated/api/pwtools.crys.Structure.assert_attr_lst.rst", "generated/api/pwtools.crys.Structure.assert_set_attr.rst", "generated/api/pwtools.crys.Structure.assert_set_attr_lst.rst", "generated/api/pwtools.crys.Structure.check_set_attr.rst", "generated/api/pwtools.crys.Structure.check_set_attr_lst.rst", "generated/api/pwtools.crys.Structure.compress.rst", "generated/api/pwtools.crys.Structure.copy.rst", "generated/api/pwtools.crys.Structure.dump.rst", "generated/api/pwtools.crys.Structure.get_ase_atoms.rst", "generated/api/pwtools.crys.Structure.get_cell.rst", "generated/api/pwtools.crys.Structure.get_coords.rst", "generated/api/pwtools.crys.Structure.get_coords_frac.rst", "generated/api/pwtools.crys.Structure.get_cryst_const.rst", "generated/api/pwtools.crys.Structure.get_ekin.rst", "generated/api/pwtools.crys.Structure.get_etot.rst", "generated/api/pwtools.crys.Structure.get_fake_ase_atoms.rst", "generated/api/pwtools.crys.Structure.get_forces.rst", "generated/api/pwtools.crys.Structure.get_mass.rst", "generated/api/pwtools.crys.Structure.get_mass_unique.rst", "generated/api/pwtools.crys.Structure.get_natoms.rst", "generated/api/pwtools.crys.Structure.get_nspecies.rst", "generated/api/pwtools.crys.Structure.get_nstep.rst", "generated/api/pwtools.crys.Structure.get_ntypat.rst", "generated/api/pwtools.crys.Structure.get_order.rst", "generated/api/pwtools.crys.Structure.get_pressure.rst", "generated/api/pwtools.crys.Structure.get_return_attr.rst", "generated/api/pwtools.crys.Structure.get_spglib.rst", "generated/api/pwtools.crys.Structure.get_stress.rst", "generated/api/pwtools.crys.Structure.get_symbols.rst", "generated/api/pwtools.crys.Structure.get_symbols_unique.rst", "generated/api/pwtools.crys.Structure.get_temperature.rst", "generated/api/pwtools.crys.Structure.get_time.rst", "generated/api/pwtools.crys.Structure.get_timestep.rst", "generated/api/pwtools.crys.Structure.get_traj.rst", "generated/api/pwtools.crys.Structure.get_typat.rst", "generated/api/pwtools.crys.Structure.get_velocity.rst", "generated/api/pwtools.crys.Structure.get_volume.rst", "generated/api/pwtools.crys.Structure.get_znucl.rst", "generated/api/pwtools.crys.Structure.get_znucl_unique.rst", "generated/api/pwtools.crys.Structure.init_attr_lst.rst", "generated/api/pwtools.crys.Structure.is_set_attr.rst", "generated/api/pwtools.crys.Structure.is_set_attr_lst.rst", "generated/api/pwtools.crys.Structure.is_struct.rst", "generated/api/pwtools.crys.Structure.is_traj.rst", "generated/api/pwtools.crys.Structure.load.rst", "generated/api/pwtools.crys.Structure.raw_return.rst", "generated/api/pwtools.crys.Structure.raw_slice_get.rst", "generated/api/pwtools.crys.Structure.set_all.rst", "generated/api/pwtools.crys.Structure.set_attr_lst.rst", "generated/api/pwtools.crys.Structure.timeaxis.rst", "generated/api/pwtools.crys.Structure.try_set_attr.rst", "generated/api/pwtools.crys.Structure.try_set_attr_lst.rst", "generated/api/pwtools.crys.Structure.update_units.rst", "generated/api/pwtools.crys.Trajectory.rst", "generated/api/pwtools.crys.Trajectory.__getitem__.rst", "generated/api/pwtools.crys.Trajectory.apply_units.rst", "generated/api/pwtools.crys.Trajectory.assert_attr.rst", "generated/api/pwtools.crys.Trajectory.assert_attr_lst.rst", "generated/api/pwtools.crys.Trajectory.assert_set_attr.rst", "generated/api/pwtools.crys.Trajectory.assert_set_attr_lst.rst", "generated/api/pwtools.crys.Trajectory.check_set_attr.rst", "generated/api/pwtools.crys.Trajectory.check_set_attr_lst.rst", "generated/api/pwtools.crys.Trajectory.compress.rst", "generated/api/pwtools.crys.Trajectory.copy.rst", "generated/api/pwtools.crys.Trajectory.dump.rst", "generated/api/pwtools.crys.Trajectory.get_ase_atoms.rst", "generated/api/pwtools.crys.Trajectory.get_cell.rst", "generated/api/pwtools.crys.Trajectory.get_coords.rst", "generated/api/pwtools.crys.Trajectory.get_coords_frac.rst", "generated/api/pwtools.crys.Trajectory.get_cryst_const.rst", "generated/api/pwtools.crys.Trajectory.get_ekin.rst", "generated/api/pwtools.crys.Trajectory.get_etot.rst", "generated/api/pwtools.crys.Trajectory.get_fake_ase_atoms.rst", "generated/api/pwtools.crys.Trajectory.get_forces.rst", "generated/api/pwtools.crys.Trajectory.get_mass.rst", "generated/api/pwtools.crys.Trajectory.get_mass_unique.rst", "generated/api/pwtools.crys.Trajectory.get_natoms.rst", "generated/api/pwtools.crys.Trajectory.get_nspecies.rst", "generated/api/pwtools.crys.Trajectory.get_nstep.rst", "generated/api/pwtools.crys.Trajectory.get_ntypat.rst", "generated/api/pwtools.crys.Trajectory.get_order.rst", "generated/api/pwtools.crys.Trajectory.get_pressure.rst", "generated/api/pwtools.crys.Trajectory.get_return_attr.rst", "generated/api/pwtools.crys.Trajectory.get_spglib.rst", "generated/api/pwtools.crys.Trajectory.get_stress.rst", "generated/api/pwtools.crys.Trajectory.get_symbols.rst", "generated/api/pwtools.crys.Trajectory.get_symbols_unique.rst", "generated/api/pwtools.crys.Trajectory.get_temperature.rst", "generated/api/pwtools.crys.Trajectory.get_time.rst", "generated/api/pwtools.crys.Trajectory.get_timestep.rst", "generated/api/pwtools.crys.Trajectory.get_traj.rst", "generated/api/pwtools.crys.Trajectory.get_typat.rst", "generated/api/pwtools.crys.Trajectory.get_velocity.rst", "generated/api/pwtools.crys.Trajectory.get_volume.rst", "generated/api/pwtools.crys.Trajectory.get_znucl.rst", "generated/api/pwtools.crys.Trajectory.get_znucl_unique.rst", "generated/api/pwtools.crys.Trajectory.init_attr_lst.rst", "generated/api/pwtools.crys.Trajectory.is_set_attr.rst", "generated/api/pwtools.crys.Trajectory.is_set_attr_lst.rst", "generated/api/pwtools.crys.Trajectory.is_struct.rst", "generated/api/pwtools.crys.Trajectory.is_traj.rst", "generated/api/pwtools.crys.Trajectory.load.rst", "generated/api/pwtools.crys.Trajectory.raw_return.rst", "generated/api/pwtools.crys.Trajectory.raw_slice_get.rst", "generated/api/pwtools.crys.Trajectory.set_all.rst", "generated/api/pwtools.crys.Trajectory.set_attr_lst.rst", "generated/api/pwtools.crys.Trajectory.timeaxis.rst", "generated/api/pwtools.crys.Trajectory.try_set_attr.rst", "generated/api/pwtools.crys.Trajectory.try_set_attr_lst.rst", "generated/api/pwtools.crys.Trajectory.update_units.rst", "generated/api/pwtools.crys.UnitsHandler.rst", "generated/api/pwtools.crys.UnitsHandler.apply_units.rst", "generated/api/pwtools.crys.UnitsHandler.assert_attr.rst", "generated/api/pwtools.crys.UnitsHandler.assert_attr_lst.rst", "generated/api/pwtools.crys.UnitsHandler.assert_set_attr.rst", "generated/api/pwtools.crys.UnitsHandler.assert_set_attr_lst.rst", "generated/api/pwtools.crys.UnitsHandler.check_set_attr.rst", "generated/api/pwtools.crys.UnitsHandler.check_set_attr_lst.rst", "generated/api/pwtools.crys.UnitsHandler.dump.rst", "generated/api/pwtools.crys.UnitsHandler.get_return_attr.rst", "generated/api/pwtools.crys.UnitsHandler.init_attr_lst.rst", "generated/api/pwtools.crys.UnitsHandler.is_set_attr.rst", "generated/api/pwtools.crys.UnitsHandler.is_set_attr_lst.rst", "generated/api/pwtools.crys.UnitsHandler.load.rst", "generated/api/pwtools.crys.UnitsHandler.raw_return.rst", "generated/api/pwtools.crys.UnitsHandler.raw_slice_get.rst", "generated/api/pwtools.crys.UnitsHandler.set_all.rst", "generated/api/pwtools.crys.UnitsHandler.set_attr_lst.rst", "generated/api/pwtools.crys.UnitsHandler.try_set_attr.rst", "generated/api/pwtools.crys.UnitsHandler.try_set_attr_lst.rst", "generated/api/pwtools.crys.UnitsHandler.update_units.rst", "generated/api/pwtools.crys._trans.rst", "generated/api/pwtools.crys.align_cart.rst", "generated/api/pwtools.crys.angle.rst", "generated/api/pwtools.crys.angles.rst", "generated/api/pwtools.crys.atoms2struct.rst", "generated/api/pwtools.crys.call_vmd_measure_gofr.rst", "generated/api/pwtools.crys.cc2cell.rst", "generated/api/pwtools.crys.cc2cell3d.rst", "generated/api/pwtools.crys.cc2celldm.rst", "generated/api/pwtools.crys.cell2cc.rst", "generated/api/pwtools.crys.cell2cc3d.rst", "generated/api/pwtools.crys.celldm2cc.rst", "generated/api/pwtools.crys.center_on_atom.rst", "generated/api/pwtools.crys.compress.rst", "generated/api/pwtools.crys.concatenate.rst", "generated/api/pwtools.crys.coord_trans.rst", "generated/api/pwtools.crys.coord_trans3d.rst", "generated/api/pwtools.crys.distances.rst", "generated/api/pwtools.crys.distances_traj.rst", "generated/api/pwtools.crys.grid_in_cell.rst", "generated/api/pwtools.crys.kgrid.rst", "generated/api/pwtools.crys.mean.rst", "generated/api/pwtools.crys.min_image_convention.rst", "generated/api/pwtools.crys.mix.rst", "generated/api/pwtools.crys.nearest_neighbors.rst", "generated/api/pwtools.crys.nearest_neighbors_from_dists.rst", "generated/api/pwtools.crys.nearest_neighbors_struct.rst", "generated/api/pwtools.crys.pbc_wrap.rst", "generated/api/pwtools.crys.pbc_wrap_coords.rst", "generated/api/pwtools.crys.pi.rst", "generated/api/pwtools.crys.populated_attrs.rst", "generated/api/pwtools.crys.recip_cell.rst", "generated/api/pwtools.crys.rmax_smith.rst", "generated/api/pwtools.crys.rmsd.rst", "generated/api/pwtools.crys.rpdf.rst", "generated/api/pwtools.crys.scell.rst", "generated/api/pwtools.crys.scell3d.rst", "generated/api/pwtools.crys.scell_mask.rst", "generated/api/pwtools.crys.smooth.rst", "generated/api/pwtools.crys.struct2atoms.rst", "generated/api/pwtools.crys.struct2traj.rst", "generated/api/pwtools.crys.tensor2voigt.rst", "generated/api/pwtools.crys.tensor2voigt3d.rst", "generated/api/pwtools.crys.velocity_traj.rst", "generated/api/pwtools.crys.vmd_measure_gofr.rst", "generated/api/pwtools.crys.voigt2tensor.rst", "generated/api/pwtools.crys.voigt2tensor3d.rst", "generated/api/pwtools.crys.volume_cc.rst", "generated/api/pwtools.crys.volume_cc3d.rst", "generated/api/pwtools.crys.volume_cell.rst", "generated/api/pwtools.crys.volume_cell3d.rst", "generated/api/pwtools.dcd.HEADER_DTYPE.rst", "generated/api/pwtools.dcd.HEADER_TYPES.rst", "generated/api/pwtools.dcd.read_dcd_data.rst", "generated/api/pwtools.dcd.read_dcd_data_f.rst", "generated/api/pwtools.dcd.read_dcd_data_ref.rst", "generated/api/pwtools.dcd.read_dcd_header.rst", "generated/api/pwtools.decorators.crys_add_doc.rst", "generated/api/pwtools.decorators.lazyprop.rst", "generated/api/pwtools.decorators.open_and_close.rst", "generated/api/pwtools.eos.Ang.rst", "generated/api/pwtools.eos.Bohr.rst", "generated/api/pwtools.eos.EVFunction.rst", "generated/api/pwtools.eos.EVFunction.dct2lst.rst", "generated/api/pwtools.eos.EVFunction.deriv.rst", "generated/api/pwtools.eos.EVFunction.evaluate.rst", "generated/api/pwtools.eos.EVFunction.get_min.rst", "generated/api/pwtools.eos.EVFunction.lst2dct.rst", "generated/api/pwtools.eos.ElkEOSFit.rst", "generated/api/pwtools.eos.ElkEOSFit.assert_attr.rst", "generated/api/pwtools.eos.ElkEOSFit.assert_attr_lst.rst", "generated/api/pwtools.eos.ElkEOSFit.assert_set_attr.rst", "generated/api/pwtools.eos.ElkEOSFit.assert_set_attr_lst.rst", "generated/api/pwtools.eos.ElkEOSFit.calc_bv.rst", "generated/api/pwtools.eos.ElkEOSFit.check_set_attr.rst", "generated/api/pwtools.eos.ElkEOSFit.check_set_attr_lst.rst", "generated/api/pwtools.eos.ElkEOSFit.dump.rst", "generated/api/pwtools.eos.ElkEOSFit.fit.rst", "generated/api/pwtools.eos.ElkEOSFit.get_min.rst", "generated/api/pwtools.eos.ElkEOSFit.get_return_attr.rst", "generated/api/pwtools.eos.ElkEOSFit.get_spl_bv.rst", "generated/api/pwtools.eos.ElkEOSFit.get_spl_ev.rst", "generated/api/pwtools.eos.ElkEOSFit.get_spl_pv.rst", "generated/api/pwtools.eos.ElkEOSFit.init_attr_lst.rst", "generated/api/pwtools.eos.ElkEOSFit.is_set_attr.rst", "generated/api/pwtools.eos.ElkEOSFit.is_set_attr_lst.rst", "generated/api/pwtools.eos.ElkEOSFit.load.rst", "generated/api/pwtools.eos.ElkEOSFit.raw_return.rst", "generated/api/pwtools.eos.ElkEOSFit.raw_slice_get.rst", "generated/api/pwtools.eos.ElkEOSFit.set_all.rst", "generated/api/pwtools.eos.ElkEOSFit.set_attr_lst.rst", "generated/api/pwtools.eos.ElkEOSFit.set_bv_method.rst", "generated/api/pwtools.eos.ElkEOSFit.try_set_attr.rst", "generated/api/pwtools.eos.ElkEOSFit.try_set_attr_lst.rst", "generated/api/pwtools.eos.EosFit.rst", "generated/api/pwtools.eos.EosFit.bulkmod.rst", "generated/api/pwtools.eos.EosFit.fit.rst", "generated/api/pwtools.eos.EosFit.get_max.rst", "generated/api/pwtools.eos.EosFit.get_min.rst", "generated/api/pwtools.eos.EosFit.get_root.rst", "generated/api/pwtools.eos.EosFit.is_mono.rst", "generated/api/pwtools.eos.EosFit.pressure.rst", "generated/api/pwtools.eos.EosFit.spl.rst", "generated/api/pwtools.eos.ExternEOS.rst", "generated/api/pwtools.eos.ExternEOS.assert_attr.rst", "generated/api/pwtools.eos.ExternEOS.assert_attr_lst.rst", "generated/api/pwtools.eos.ExternEOS.assert_set_attr.rst", "generated/api/pwtools.eos.ExternEOS.assert_set_attr_lst.rst", "generated/api/pwtools.eos.ExternEOS.calc_bv.rst", "generated/api/pwtools.eos.ExternEOS.check_set_attr.rst", "generated/api/pwtools.eos.ExternEOS.check_set_attr_lst.rst", "generated/api/pwtools.eos.ExternEOS.dump.rst", "generated/api/pwtools.eos.ExternEOS.fit.rst", "generated/api/pwtools.eos.ExternEOS.get_min.rst", "generated/api/pwtools.eos.ExternEOS.get_return_attr.rst", "generated/api/pwtools.eos.ExternEOS.get_spl_bv.rst", "generated/api/pwtools.eos.ExternEOS.get_spl_ev.rst", "generated/api/pwtools.eos.ExternEOS.get_spl_pv.rst", "generated/api/pwtools.eos.ExternEOS.init_attr_lst.rst", "generated/api/pwtools.eos.ExternEOS.is_set_attr.rst", "generated/api/pwtools.eos.ExternEOS.is_set_attr_lst.rst", "generated/api/pwtools.eos.ExternEOS.load.rst", "generated/api/pwtools.eos.ExternEOS.raw_return.rst", "generated/api/pwtools.eos.ExternEOS.raw_slice_get.rst", "generated/api/pwtools.eos.ExternEOS.set_all.rst", "generated/api/pwtools.eos.ExternEOS.set_attr_lst.rst", "generated/api/pwtools.eos.ExternEOS.set_bv_method.rst", "generated/api/pwtools.eos.ExternEOS.try_set_attr.rst", "generated/api/pwtools.eos.ExternEOS.try_set_attr_lst.rst", "generated/api/pwtools.eos.Ha.rst", "generated/api/pwtools.eos.MaxDerivException.rst", "generated/api/pwtools.eos.Ry.rst", "generated/api/pwtools.eos.Vinet.rst", "generated/api/pwtools.eos.Vinet.dct2lst.rst", "generated/api/pwtools.eos.Vinet.deriv.rst", "generated/api/pwtools.eos.Vinet.evaluate.rst", "generated/api/pwtools.eos.Vinet.get_min.rst", "generated/api/pwtools.eos.Vinet.lst2dct.rst", "generated/api/pwtools.eos._vinet.rst", "generated/api/pwtools.eos._vinet_deriv1.rst", "generated/api/pwtools.eos._vinet_deriv2.rst", "generated/api/pwtools.eos.eV.rst", "generated/api/pwtools.eos.eV_by_Ang3_to_GPa.rst", "generated/api/pwtools.io.Ha.rst", "generated/api/pwtools.io.ReadFactory.rst", "generated/api/pwtools.io.eV.rst", "generated/api/pwtools.io.load_h5.rst", "generated/api/pwtools.io.read_cif.rst", "generated/api/pwtools.io.read_cp2k_md.rst", "generated/api/pwtools.io.read_cp2k_md_dcd.rst", "generated/api/pwtools.io.read_cp2k_relax.rst", "generated/api/pwtools.io.read_cp2k_scf.rst", "generated/api/pwtools.io.read_cpmd_md.rst", "generated/api/pwtools.io.read_cpmd_scf.rst", "generated/api/pwtools.io.read_h5.rst", "generated/api/pwtools.io.read_lammps_md_dcd.rst", "generated/api/pwtools.io.read_lammps_md_txt.rst", "generated/api/pwtools.io.read_pdb.rst", "generated/api/pwtools.io.read_pickle.rst", "generated/api/pwtools.io.read_pw_md.rst", "generated/api/pwtools.io.read_pw_scf.rst", "generated/api/pwtools.io.read_pw_vcmd.rst", "generated/api/pwtools.io.wien_sgroup_input.rst", "generated/api/pwtools.io.write_axsf.rst", "generated/api/pwtools.io.write_cif.rst", "generated/api/pwtools.io.write_h5.rst", "generated/api/pwtools.io.write_lammps.rst", "generated/api/pwtools.io.write_wien_sgroup.rst", "generated/api/pwtools.io.write_xyz.rst", "generated/api/pwtools.kpath.SpecialPointsPath.rst", "generated/api/pwtools.kpath.get_path_norm.rst", "generated/api/pwtools.kpath.kpath.rst", "generated/api/pwtools.kpath.plot_dis.rst", "generated/api/pwtools.lammps.struct_str.rst", "generated/api/pwtools.mpl.Data2D.rst", "generated/api/pwtools.mpl.Data2D.copy.rst", "generated/api/pwtools.mpl.Data2D.update.rst", "generated/api/pwtools.mpl.Data3D.rst", "generated/api/pwtools.mpl.Data3D.copy.rst", "generated/api/pwtools.mpl.Data3D.update.rst", "generated/api/pwtools.mpl.Plot.rst", "generated/api/pwtools.mpl.Plot.collect_legends.rst", "generated/api/pwtools.mpl.Plot.legend.rst", "generated/api/pwtools.mpl.Plot.savefig.rst", "generated/api/pwtools.mpl.cc.rst", "generated/api/pwtools.mpl.ccl.rst", "generated/api/pwtools.mpl.ccm.rst", "generated/api/pwtools.mpl.clc.rst", "generated/api/pwtools.mpl.clean_ax3d.rst", "generated/api/pwtools.mpl.cm.rst", "generated/api/pwtools.mpl.cmc.rst", "generated/api/pwtools.mpl.collect_legends.rst", "generated/api/pwtools.mpl.color_ax.rst", "generated/api/pwtools.mpl.colors.rst", "generated/api/pwtools.mpl.colors_linestyles.rst", "generated/api/pwtools.mpl.colors_markers.rst", "generated/api/pwtools.mpl.cycle_colors.rst", "generated/api/pwtools.mpl.cycle_colors_linestyles.rst", "generated/api/pwtools.mpl.cycle_colors_markers.rst", "generated/api/pwtools.mpl.cycle_linestyles_colors.rst", "generated/api/pwtools.mpl.cycle_markers.rst", "generated/api/pwtools.mpl.cycle_markers_colors.rst", "generated/api/pwtools.mpl.fig_ax.rst", "generated/api/pwtools.mpl.fig_ax3d.rst", "generated/api/pwtools.mpl.get_2d_testdata.rst", "generated/api/pwtools.mpl.ic.rst", "generated/api/pwtools.mpl.icl.rst", "generated/api/pwtools.mpl.icm.rst", "generated/api/pwtools.mpl.ilc.rst", "generated/api/pwtools.mpl.im.rst", "generated/api/pwtools.mpl.imc.rst", "generated/api/pwtools.mpl.iter_colors.rst", "generated/api/pwtools.mpl.iter_colors_linestyles.rst", "generated/api/pwtools.mpl.iter_colors_markers.rst", "generated/api/pwtools.mpl.iter_linestyles.rst", "generated/api/pwtools.mpl.iter_linestyles_colors.rst", "generated/api/pwtools.mpl.iter_markers.rst", "generated/api/pwtools.mpl.iter_markers_colors.rst", "generated/api/pwtools.mpl.linestyles.rst", "generated/api/pwtools.mpl.linestyles_colors.rst", "generated/api/pwtools.mpl.make_axes_grid_fig.rst", "generated/api/pwtools.mpl.markers.rst", "generated/api/pwtools.mpl.markers_colors.rst", "generated/api/pwtools.mpl.meshgridt.rst", "generated/api/pwtools.mpl.new_axis.rst", "generated/api/pwtools.mpl.plotlines3d.rst", "generated/api/pwtools.mpl.prepare_plots.rst", "generated/api/pwtools.mpl.smooth_color.rst", "generated/api/pwtools.mpl.smooth_color_func.rst", "generated/api/pwtools.mttk.a0.rst", "generated/api/pwtools.mttk.add_doc.rst", "generated/api/pwtools.mttk.barostat_mass_w.rst", "generated/api/pwtools.mttk.barostat_mass_wg.rst", "generated/api/pwtools.mttk.barostat_nhc_masses.rst", "generated/api/pwtools.mttk.kb.rst", "generated/api/pwtools.mttk.m0.rst", "generated/api/pwtools.mttk.particle_nhc_masses.rst", "generated/api/pwtools.num.DataND.rst", "generated/api/pwtools.num.DataND.a2_to_an.rst", "generated/api/pwtools.num.EPS.rst", "generated/api/pwtools.num.Fit1D.rst", "generated/api/pwtools.num.Fit1D.get_max.rst", "generated/api/pwtools.num.Fit1D.get_min.rst", "generated/api/pwtools.num.Fit1D.get_root.rst", "generated/api/pwtools.num.Fit1D.is_mono.rst", "generated/api/pwtools.num.Interpol2D.rst", "generated/api/pwtools.num.Interpol2D.get_min.rst", "generated/api/pwtools.num.PolyFit.rst", "generated/api/pwtools.num.PolyFit.get_min.rst", "generated/api/pwtools.num.PolyFit1D.rst", "generated/api/pwtools.num.PolyFit1D.get_max.rst", "generated/api/pwtools.num.PolyFit1D.get_min.rst", "generated/api/pwtools.num.PolyFit1D.get_root.rst", "generated/api/pwtools.num.PolyFit1D.is_mono.rst", "generated/api/pwtools.num.Spline.rst", "generated/api/pwtools.num.Spline.get_max.rst", "generated/api/pwtools.num.Spline.get_min.rst", "generated/api/pwtools.num.Spline.get_root.rst", "generated/api/pwtools.num.Spline.invsplev.rst", "generated/api/pwtools.num.Spline.is_mono.rst", "generated/api/pwtools.num.Spline.splev.rst", "generated/api/pwtools.num.deriv_spl.rst", "generated/api/pwtools.num.distsq.rst", "generated/api/pwtools.num.euler_matrix.rst", "generated/api/pwtools.num.extend_array.rst", "generated/api/pwtools.num.fempty.rst", "generated/api/pwtools.num.findmin.rst", "generated/api/pwtools.num.findroot.rst", "generated/api/pwtools.num.inner_points_mask.rst", "generated/api/pwtools.num.match_mask.rst", "generated/api/pwtools.num.meshgridt.rst", "generated/api/pwtools.num.norm.rst", "generated/api/pwtools.num.norm_int.rst", "generated/api/pwtools.num.normalize.rst", "generated/api/pwtools.num.order_similar.rst", "generated/api/pwtools.num.pi.rst", "generated/api/pwtools.num.poly_powers.rst", "generated/api/pwtools.num.poly_str.rst", "generated/api/pwtools.num.polyfit.rst", "generated/api/pwtools.num.polyval.rst", "generated/api/pwtools.num.rms.rst", "generated/api/pwtools.num.rms3d.rst", "generated/api/pwtools.num.round_up_next_multiple.rst", "generated/api/pwtools.num.sliceput.rst", "generated/api/pwtools.num.slicetake.rst", "generated/api/pwtools.num.sum.rst", "generated/api/pwtools.num.vander.rst", "generated/api/pwtools.num.vlinspace.rst", "generated/api/pwtools.parse.AWK.rst", "generated/api/pwtools.parse.Ang.rst", "generated/api/pwtools.parse.Angstrom.rst", "generated/api/pwtools.parse.Bohr.rst", "generated/api/pwtools.parse.CifFile.rst", "generated/api/pwtools.parse.CifFile.apply_units.rst", "generated/api/pwtools.parse.CifFile.assert_attr.rst", "generated/api/pwtools.parse.CifFile.assert_attr_lst.rst", "generated/api/pwtools.parse.CifFile.assert_set_attr.rst", "generated/api/pwtools.parse.CifFile.assert_set_attr_lst.rst", "generated/api/pwtools.parse.CifFile.check_set_attr.rst", "generated/api/pwtools.parse.CifFile.check_set_attr_lst.rst", "generated/api/pwtools.parse.CifFile.cif_clear_atom_symbol.rst", "generated/api/pwtools.parse.CifFile.cif_str2float.rst", "generated/api/pwtools.parse.CifFile.default_units.rst", "generated/api/pwtools.parse.CifFile.dump.rst", "generated/api/pwtools.parse.CifFile.get_cont.rst", "generated/api/pwtools.parse.CifFile.get_coords.rst", "generated/api/pwtools.parse.CifFile.get_coords_frac.rst", "generated/api/pwtools.parse.CifFile.get_cryst_const.rst", "generated/api/pwtools.parse.CifFile.get_return_attr.rst", "generated/api/pwtools.parse.CifFile.get_struct.rst", "generated/api/pwtools.parse.CifFile.get_symbols.rst", "generated/api/pwtools.parse.CifFile.init_attr_lst.rst", "generated/api/pwtools.parse.CifFile.is_set_attr.rst", "generated/api/pwtools.parse.CifFile.is_set_attr_lst.rst", "generated/api/pwtools.parse.CifFile.load.rst", "generated/api/pwtools.parse.CifFile.parse.rst", "generated/api/pwtools.parse.CifFile.raw_return.rst", "generated/api/pwtools.parse.CifFile.raw_slice_get.rst", "generated/api/pwtools.parse.CifFile.set_all.rst", "generated/api/pwtools.parse.CifFile.set_attr_lst.rst", "generated/api/pwtools.parse.CifFile.try_set_attr.rst", "generated/api/pwtools.parse.CifFile.try_set_attr_lst.rst", "generated/api/pwtools.parse.CifFile.update_units.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.apply_units.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.assert_attr.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.assert_attr_lst.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.assert_set_attr.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.assert_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.check_set_attr.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.check_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.default_units.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.dump.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_cell.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_cont.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_coords.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_cryst_const.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_econst.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_ekin.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_etot.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_forces.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_natoms.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_nstep.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_return_attr.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_stress.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_struct.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_symbols.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_temperature.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_timestep.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_traj.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_velocity.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.get_volume.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.init_attr_lst.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.is_set_attr.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.is_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.load.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.parse.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.raw_return.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.raw_slice_get.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.set_all.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.timeaxis.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.try_set_attr.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.try_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kDcdMDOutputFile.update_units.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.apply_units.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.assert_attr.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.assert_attr_lst.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.assert_set_attr.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.assert_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.check_set_attr.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.check_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.default_units.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.dump.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_cell.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_cont.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_coords.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_econst.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_ekin.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_etot.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_forces.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_natoms.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_return_attr.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_stress.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_struct.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_symbols.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_temperature.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_timestep.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_traj.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_velocity.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.get_volume.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.init_attr_lst.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.is_set_attr.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.is_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.load.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.parse.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.raw_return.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.raw_slice_get.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.set_all.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.timeaxis.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.try_set_attr.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.try_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kMDOutputFile.update_units.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.apply_units.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.assert_attr.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.assert_attr_lst.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.assert_set_attr.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.assert_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.check_set_attr.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.check_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.default_units.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.dump.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_cell.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_cont.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_coords.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_econst.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_ekin.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_etot.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_forces.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_natoms.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_return_attr.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_stress.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_struct.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_symbols.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_temperature.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_timestep.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_traj.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_velocity.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.get_volume.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.init_attr_lst.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.is_set_attr.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.is_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.load.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.parse.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.raw_return.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.raw_slice_get.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.set_all.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.timeaxis.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.try_set_attr.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.try_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kRelaxOutputFile.update_units.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.apply_units.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.assert_attr.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.assert_attr_lst.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.assert_set_attr.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.assert_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.check_set_attr.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.check_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.default_units.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.dump.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_cont.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_etot.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_forces.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_natoms.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_return_attr.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_stress.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_struct.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.get_symbols.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.init_attr_lst.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.is_set_attr.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.is_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.load.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.parse.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.raw_return.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.raw_slice_get.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.set_all.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.try_set_attr.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.try_set_attr_lst.rst", "generated/api/pwtools.parse.Cp2kSCFOutputFile.update_units.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.apply_units.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.assert_attr.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.assert_attr_lst.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.assert_set_attr.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.assert_set_attr_lst.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.check_set_attr.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.check_set_attr_lst.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.default_units.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.dump.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_cell.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_cont.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_coords.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_coords_frac.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_econst.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_ekin.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_ekin_cell.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_ekin_elec.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_ekinc.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_ekinh.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_etot.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_forces.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_natoms.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_nkpoints.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_nstep_scf.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_return_attr.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_scf_converged.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_stress.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_struct.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_symbols.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_temperature.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_temperature_cell.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_timestep.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_traj.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.get_velocity.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.init_attr_lst.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.is_set_attr.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.is_set_attr_lst.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.load.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.parse.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.raw_return.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.raw_slice_get.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.set_all.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.set_attr_lst.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.timeaxis.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.try_set_attr.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.try_set_attr_lst.rst", "generated/api/pwtools.parse.CpmdMDOutputFile.update_units.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.apply_units.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.assert_attr.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.assert_attr_lst.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.assert_set_attr.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.assert_set_attr_lst.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.check_set_attr.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.check_set_attr_lst.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.default_units.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.dump.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_cell.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_cont.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_coords_frac.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_etot.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_forces.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_natoms.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_nkpoints.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_nstep_scf.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_return_attr.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_scf_converged.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_stress.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_struct.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.get_symbols.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.init_attr_lst.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.is_set_attr.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.is_set_attr_lst.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.load.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.parse.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.raw_return.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.raw_slice_get.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.set_all.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.set_attr_lst.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.try_set_attr.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.try_set_attr_lst.rst", "generated/api/pwtools.parse.CpmdSCFOutputFile.update_units.rst", "generated/api/pwtools.parse.DcdOutputFile.rst", "generated/api/pwtools.parse.DcdOutputFile.get_cell.rst", "generated/api/pwtools.parse.DcdOutputFile.get_coords.rst", "generated/api/pwtools.parse.DcdOutputFile.get_cryst_const.rst", "generated/api/pwtools.parse.DcdOutputFile.get_natoms.rst", "generated/api/pwtools.parse.DcdOutputFile.get_nstep.rst", "generated/api/pwtools.parse.DcdOutputFile.get_volume.rst", "generated/api/pwtools.parse.Ha.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.apply_units.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.assert_attr.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.assert_attr_lst.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.assert_set_attr.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.assert_set_attr_lst.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.check_set_attr.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.check_set_attr_lst.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.default_units.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.dump.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_cell.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_cont.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_coords.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_coords_frac.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_cryst_const.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_ekin.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_etot.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_forces.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_natoms.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_nstep.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_return_attr.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_stress.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_struct.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_symbols.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_temperature.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_timestep.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_traj.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_velocity.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.get_volume.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.init_attr_lst.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.is_set_attr.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.is_set_attr_lst.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.load.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.parse.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.raw_return.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.raw_slice_get.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.set_all.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.set_attr_lst.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.timeaxis.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.try_set_attr.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.try_set_attr_lst.rst", "generated/api/pwtools.parse.LammpsDcdMDOutputFile.update_units.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.apply_units.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.assert_attr.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.assert_attr_lst.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.assert_set_attr.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.assert_set_attr_lst.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.check_set_attr.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.check_set_attr_lst.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.default_units.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.dump.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_cell.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_cont.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_coords.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_coords_frac.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_cryst_const.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_ekin.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_etot.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_forces.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_natoms.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_return_attr.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_stress.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_struct.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_symbols.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_temperature.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_timestep.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_traj.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_velocity.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.get_volume.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.init_attr_lst.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.is_set_attr.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.is_set_attr_lst.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.load.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.parse.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.raw_return.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.raw_slice_get.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.set_all.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.set_attr_lst.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.timeaxis.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.try_set_attr.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.try_set_attr_lst.rst", "generated/api/pwtools.parse.LammpsTextMDOutputFile.update_units.rst", "generated/api/pwtools.parse.PDBFile.rst", "generated/api/pwtools.parse.PDBFile.apply_units.rst", "generated/api/pwtools.parse.PDBFile.assert_attr.rst", "generated/api/pwtools.parse.PDBFile.assert_attr_lst.rst", "generated/api/pwtools.parse.PDBFile.assert_set_attr.rst", "generated/api/pwtools.parse.PDBFile.assert_set_attr_lst.rst", "generated/api/pwtools.parse.PDBFile.check_set_attr.rst", "generated/api/pwtools.parse.PDBFile.check_set_attr_lst.rst", "generated/api/pwtools.parse.PDBFile.default_units.rst", "generated/api/pwtools.parse.PDBFile.dump.rst", "generated/api/pwtools.parse.PDBFile.get_cont.rst", "generated/api/pwtools.parse.PDBFile.get_coords.rst", "generated/api/pwtools.parse.PDBFile.get_cryst_const.rst", "generated/api/pwtools.parse.PDBFile.get_return_attr.rst", "generated/api/pwtools.parse.PDBFile.get_struct.rst", "generated/api/pwtools.parse.PDBFile.get_symbols.rst", "generated/api/pwtools.parse.PDBFile.init_attr_lst.rst", "generated/api/pwtools.parse.PDBFile.is_set_attr.rst", "generated/api/pwtools.parse.PDBFile.is_set_attr_lst.rst", "generated/api/pwtools.parse.PDBFile.load.rst", "generated/api/pwtools.parse.PDBFile.parse.rst", "generated/api/pwtools.parse.PDBFile.raw_return.rst", "generated/api/pwtools.parse.PDBFile.raw_slice_get.rst", "generated/api/pwtools.parse.PDBFile.set_all.rst", "generated/api/pwtools.parse.PDBFile.set_attr_lst.rst", "generated/api/pwtools.parse.PDBFile.try_set_attr.rst", "generated/api/pwtools.parse.PDBFile.try_set_attr_lst.rst", "generated/api/pwtools.parse.PDBFile.update_units.rst", "generated/api/pwtools.parse.PwMDOutputFile.rst", "generated/api/pwtools.parse.PwMDOutputFile.apply_units.rst", "generated/api/pwtools.parse.PwMDOutputFile.assert_attr.rst", "generated/api/pwtools.parse.PwMDOutputFile.assert_attr_lst.rst", "generated/api/pwtools.parse.PwMDOutputFile.assert_set_attr.rst", "generated/api/pwtools.parse.PwMDOutputFile.assert_set_attr_lst.rst", "generated/api/pwtools.parse.PwMDOutputFile.check_set_attr.rst", "generated/api/pwtools.parse.PwMDOutputFile.check_set_attr_lst.rst", "generated/api/pwtools.parse.PwMDOutputFile.default_units.rst", "generated/api/pwtools.parse.PwMDOutputFile.dump.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_alat.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_cell.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_cell_unit.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_cont.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_coords.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_coords_frac.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_coords_unit.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_ekin.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_etot.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_forces.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_natoms.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_nkpoints.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_nstep_scf.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_return_attr.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_scf_converged.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_stress.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_struct.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_symbols.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_temperature.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_timestep.rst", "generated/api/pwtools.parse.PwMDOutputFile.get_traj.rst", "generated/api/pwtools.parse.PwMDOutputFile.init_attr_lst.rst", "generated/api/pwtools.parse.PwMDOutputFile.is_set_attr.rst", "generated/api/pwtools.parse.PwMDOutputFile.is_set_attr_lst.rst", "generated/api/pwtools.parse.PwMDOutputFile.load.rst", "generated/api/pwtools.parse.PwMDOutputFile.parse.rst", "generated/api/pwtools.parse.PwMDOutputFile.raw_return.rst", "generated/api/pwtools.parse.PwMDOutputFile.raw_slice_get.rst", "generated/api/pwtools.parse.PwMDOutputFile.set_all.rst", "generated/api/pwtools.parse.PwMDOutputFile.set_attr_lst.rst", "generated/api/pwtools.parse.PwMDOutputFile.timeaxis.rst", "generated/api/pwtools.parse.PwMDOutputFile.try_set_attr.rst", "generated/api/pwtools.parse.PwMDOutputFile.try_set_attr_lst.rst", "generated/api/pwtools.parse.PwMDOutputFile.update_units.rst", "generated/api/pwtools.parse.PwSCFOutputFile.rst", "generated/api/pwtools.parse.PwSCFOutputFile.apply_units.rst", "generated/api/pwtools.parse.PwSCFOutputFile.assert_attr.rst", "generated/api/pwtools.parse.PwSCFOutputFile.assert_attr_lst.rst", "generated/api/pwtools.parse.PwSCFOutputFile.assert_set_attr.rst", "generated/api/pwtools.parse.PwSCFOutputFile.assert_set_attr_lst.rst", "generated/api/pwtools.parse.PwSCFOutputFile.check_set_attr.rst", "generated/api/pwtools.parse.PwSCFOutputFile.check_set_attr_lst.rst", "generated/api/pwtools.parse.PwSCFOutputFile.default_units.rst", "generated/api/pwtools.parse.PwSCFOutputFile.dump.rst", "generated/api/pwtools.parse.PwSCFOutputFile.get_alat.rst", "generated/api/pwtools.parse.PwSCFOutputFile.get_cell.rst", "generated/api/pwtools.parse.PwSCFOutputFile.get_cont.rst", "generated/api/pwtools.parse.PwSCFOutputFile.get_coords.rst", "generated/api/pwtools.parse.PwSCFOutputFile.get_etot.rst", "generated/api/pwtools.parse.PwSCFOutputFile.get_forces.rst", "generated/api/pwtools.parse.PwSCFOutputFile.get_natoms.rst", "generated/api/pwtools.parse.PwSCFOutputFile.get_nkpoints.rst", "generated/api/pwtools.parse.PwSCFOutputFile.get_nstep_scf.rst", "generated/api/pwtools.parse.PwSCFOutputFile.get_return_attr.rst", "generated/api/pwtools.parse.PwSCFOutputFile.get_scf_converged.rst", "generated/api/pwtools.parse.PwSCFOutputFile.get_stress.rst", "generated/api/pwtools.parse.PwSCFOutputFile.get_struct.rst", "generated/api/pwtools.parse.PwSCFOutputFile.get_symbols.rst", "generated/api/pwtools.parse.PwSCFOutputFile.init_attr_lst.rst", "generated/api/pwtools.parse.PwSCFOutputFile.is_set_attr.rst", "generated/api/pwtools.parse.PwSCFOutputFile.is_set_attr_lst.rst", "generated/api/pwtools.parse.PwSCFOutputFile.load.rst", "generated/api/pwtools.parse.PwSCFOutputFile.parse.rst", "generated/api/pwtools.parse.PwSCFOutputFile.raw_return.rst", "generated/api/pwtools.parse.PwSCFOutputFile.raw_slice_get.rst", "generated/api/pwtools.parse.PwSCFOutputFile.set_all.rst", "generated/api/pwtools.parse.PwSCFOutputFile.set_attr_lst.rst", "generated/api/pwtools.parse.PwSCFOutputFile.try_set_attr.rst", "generated/api/pwtools.parse.PwSCFOutputFile.try_set_attr_lst.rst", "generated/api/pwtools.parse.PwSCFOutputFile.update_units.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.apply_units.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.assert_attr.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.assert_attr_lst.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.assert_set_attr.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.assert_set_attr_lst.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.check_set_attr.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.check_set_attr_lst.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.default_units.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.dump.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_alat.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_cell.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_cell_unit.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_cont.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_coords.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_coords_frac.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_coords_unit.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_econst.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_ekin.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_etot.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_forces.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_natoms.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_nkpoints.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_nstep_scf.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_return_attr.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_scf_converged.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_stress.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_struct.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_symbols.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_temperature.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_timestep.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.get_traj.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.init_attr_lst.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.is_set_attr.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.is_set_attr_lst.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.load.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.parse.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.raw_return.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.raw_slice_get.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.set_all.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.set_attr_lst.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.timeaxis.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.try_set_attr.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.try_set_attr_lst.rst", "generated/api/pwtools.parse.PwVCMDOutputFile.update_units.rst", "generated/api/pwtools.parse.Ry.rst", "generated/api/pwtools.parse.StructureFileParser.rst", "generated/api/pwtools.parse.StructureFileParser.apply_units.rst", "generated/api/pwtools.parse.StructureFileParser.assert_attr.rst", "generated/api/pwtools.parse.StructureFileParser.assert_attr_lst.rst", "generated/api/pwtools.parse.StructureFileParser.assert_set_attr.rst", "generated/api/pwtools.parse.StructureFileParser.assert_set_attr_lst.rst", "generated/api/pwtools.parse.StructureFileParser.check_set_attr.rst", "generated/api/pwtools.parse.StructureFileParser.check_set_attr_lst.rst", "generated/api/pwtools.parse.StructureFileParser.default_units.rst", "generated/api/pwtools.parse.StructureFileParser.dump.rst", "generated/api/pwtools.parse.StructureFileParser.get_cont.rst", "generated/api/pwtools.parse.StructureFileParser.get_return_attr.rst", "generated/api/pwtools.parse.StructureFileParser.get_struct.rst", "generated/api/pwtools.parse.StructureFileParser.init_attr_lst.rst", "generated/api/pwtools.parse.StructureFileParser.is_set_attr.rst", "generated/api/pwtools.parse.StructureFileParser.is_set_attr_lst.rst", "generated/api/pwtools.parse.StructureFileParser.load.rst", "generated/api/pwtools.parse.StructureFileParser.parse.rst", "generated/api/pwtools.parse.StructureFileParser.raw_return.rst", "generated/api/pwtools.parse.StructureFileParser.raw_slice_get.rst", "generated/api/pwtools.parse.StructureFileParser.set_all.rst", "generated/api/pwtools.parse.StructureFileParser.set_attr_lst.rst", "generated/api/pwtools.parse.StructureFileParser.try_set_attr.rst", "generated/api/pwtools.parse.StructureFileParser.try_set_attr_lst.rst", "generated/api/pwtools.parse.StructureFileParser.update_units.rst", "generated/api/pwtools.parse.TrajectoryFileParser.rst", "generated/api/pwtools.parse.TrajectoryFileParser.apply_units.rst", "generated/api/pwtools.parse.TrajectoryFileParser.assert_attr.rst", "generated/api/pwtools.parse.TrajectoryFileParser.assert_attr_lst.rst", "generated/api/pwtools.parse.TrajectoryFileParser.assert_set_attr.rst", "generated/api/pwtools.parse.TrajectoryFileParser.assert_set_attr_lst.rst", "generated/api/pwtools.parse.TrajectoryFileParser.check_set_attr.rst", "generated/api/pwtools.parse.TrajectoryFileParser.check_set_attr_lst.rst", "generated/api/pwtools.parse.TrajectoryFileParser.default_units.rst", "generated/api/pwtools.parse.TrajectoryFileParser.dump.rst", "generated/api/pwtools.parse.TrajectoryFileParser.get_cont.rst", "generated/api/pwtools.parse.TrajectoryFileParser.get_return_attr.rst", "generated/api/pwtools.parse.TrajectoryFileParser.get_struct.rst", "generated/api/pwtools.parse.TrajectoryFileParser.get_traj.rst", "generated/api/pwtools.parse.TrajectoryFileParser.init_attr_lst.rst", "generated/api/pwtools.parse.TrajectoryFileParser.is_set_attr.rst", "generated/api/pwtools.parse.TrajectoryFileParser.is_set_attr_lst.rst", "generated/api/pwtools.parse.TrajectoryFileParser.load.rst", "generated/api/pwtools.parse.TrajectoryFileParser.parse.rst", "generated/api/pwtools.parse.TrajectoryFileParser.raw_return.rst", "generated/api/pwtools.parse.TrajectoryFileParser.raw_slice_get.rst", "generated/api/pwtools.parse.TrajectoryFileParser.set_all.rst", "generated/api/pwtools.parse.TrajectoryFileParser.set_attr_lst.rst", "generated/api/pwtools.parse.TrajectoryFileParser.timeaxis.rst", "generated/api/pwtools.parse.TrajectoryFileParser.try_set_attr.rst", "generated/api/pwtools.parse.TrajectoryFileParser.try_set_attr_lst.rst", "generated/api/pwtools.parse.TrajectoryFileParser.update_units.rst", "generated/api/pwtools.parse.arr1d_from_txt.rst", "generated/api/pwtools.parse.arr2d_from_txt.rst", "generated/api/pwtools.parse.axis_lens.rst", "generated/api/pwtools.parse.eV.rst", "generated/api/pwtools.parse.float_from_txt.rst", "generated/api/pwtools.parse.fs.rst", "generated/api/pwtools.parse.int_from_txt.rst", "generated/api/pwtools.parse.nstep_from_txt.rst", "generated/api/pwtools.parse.pi.rst", "generated/api/pwtools.parse.ps.rst", "generated/api/pwtools.parse.thart.rst", "generated/api/pwtools.parse.traj_from_txt.rst", "generated/api/pwtools.pwscf.EPS.rst", "generated/api/pwtools.pwscf.atpos_str.rst", "generated/api/pwtools.pwscf.atpos_str_fast.rst", "generated/api/pwtools.pwscf.atspec_str.rst", "generated/api/pwtools.pwscf.bool2str.rst", "generated/api/pwtools.pwscf.ibrav2cell.rst", "generated/api/pwtools.pwscf.kpoints_str.rst", "generated/api/pwtools.pwscf.kpoints_str_pwin.rst", "generated/api/pwtools.pwscf.kpoints_str_pwin_full.rst", "generated/api/pwtools.pwscf.kpointstr.rst", "generated/api/pwtools.pwscf.kpointstr_pwin.rst", "generated/api/pwtools.pwscf.kpointstr_pwin2.rst", "generated/api/pwtools.pwscf.read_all_dyn.rst", "generated/api/pwtools.pwscf.read_dyn.rst", "generated/api/pwtools.pwscf.read_dynmat.rst", "generated/api/pwtools.pwscf.read_dynmat_ir_raman.rst", "generated/api/pwtools.pwscf.read_dynmat_out.rst", "generated/api/pwtools.pwscf.read_matdyn_freq.rst", "generated/api/pwtools.pwscf.read_matdyn_modes.rst", "generated/api/pwtools.pydos.direct_pdos.rst", "generated/api/pwtools.pydos.fvacf.rst", "generated/api/pwtools.pydos.pdos.rst", "generated/api/pwtools.pydos.pyvacf.rst", "generated/api/pwtools.pydos.vacf_pdos.rst", "generated/api/pwtools.random.RandomStructure.rst", "generated/api/pwtools.random.RandomStructure.get_random_cryst_const.rst", "generated/api/pwtools.random.RandomStructure.get_random_struct.rst", "generated/api/pwtools.random.RandomStructureFail.rst", "generated/api/pwtools.random.pi.rst", "generated/api/pwtools.random.random_struct.rst", "generated/api/pwtools.rbf.core.JAX_MODE.rst", "generated/api/pwtools.rbf.core.Rbf.rst", "generated/api/pwtools.rbf.core.Rbf.deriv.rst", "generated/api/pwtools.rbf.core.Rbf.deriv_jax.rst", "generated/api/pwtools.rbf.core.Rbf.fit.rst", "generated/api/pwtools.rbf.core.Rbf.fit_error.rst", "generated/api/pwtools.rbf.core.Rbf.get_distsq.rst", "generated/api/pwtools.rbf.core.Rbf.get_params.rst", "generated/api/pwtools.rbf.core.Rbf.predict.rst", "generated/api/pwtools.rbf.core._np_distsq.rst", "generated/api/pwtools.rbf.core.estimate_p.rst", "generated/api/pwtools.rbf.core.euclidean_dists.rst", "generated/api/pwtools.rbf.core.jit.rst", "generated/api/pwtools.rbf.core.rbf_dct.rst", "generated/api/pwtools.rbf.core.rbf_gauss.rst", "generated/api/pwtools.rbf.core.rbf_inv_multi.rst", "generated/api/pwtools.rbf.core.rbf_multi.rst", "generated/api/pwtools.rbf.core.squared_dists.rst", "generated/api/pwtools.rbf.hyperopt.FitError.rst", "generated/api/pwtools.rbf.hyperopt.FitError.cv.rst", "generated/api/pwtools.rbf.hyperopt.FitError.err_cv.rst", "generated/api/pwtools.rbf.hyperopt.FitError.err_direct.rst", "generated/api/pwtools.rbf.hyperopt.RepeatedKFold.rst", "generated/api/pwtools.rbf.hyperopt.fit_opt.rst", "generated/api/pwtools.regex.float_re.rst", "generated/api/pwtools.signal.FIRFilter.rst", "generated/api/pwtools.signal.acorr.rst", "generated/api/pwtools.signal.cauchy.rst", "generated/api/pwtools.signal.dft.rst", "generated/api/pwtools.signal.ezfft.rst", "generated/api/pwtools.signal.fft_1d_loop.rst", "generated/api/pwtools.signal.fftsample.rst", "generated/api/pwtools.signal.find_peaks.rst", "generated/api/pwtools.signal.gauss.rst", "generated/api/pwtools.signal.lorentz.rst", "generated/api/pwtools.signal.mirror.rst", "generated/api/pwtools.signal.odd.rst", "generated/api/pwtools.signal.pad_zeros.rst", "generated/api/pwtools.signal.scale.rst", "generated/api/pwtools.signal.smooth.rst", "generated/api/pwtools.signal.welch.rst", "generated/api/pwtools.sql.SQLEntry.rst", "generated/api/pwtools.sql.SQLiteDB.rst", "generated/api/pwtools.sql.SQLiteDB.add_column.rst", "generated/api/pwtools.sql.SQLiteDB.add_columns.rst", "generated/api/pwtools.sql.SQLiteDB.attach_column.rst", "generated/api/pwtools.sql.SQLiteDB.commit.rst", "generated/api/pwtools.sql.SQLiteDB.create_table.rst", "generated/api/pwtools.sql.SQLiteDB.execute.rst", "generated/api/pwtools.sql.SQLiteDB.executemany.rst", "generated/api/pwtools.sql.SQLiteDB.executescript.rst", "generated/api/pwtools.sql.SQLiteDB.fill_column.rst", "generated/api/pwtools.sql.SQLiteDB.finish.rst", "generated/api/pwtools.sql.SQLiteDB.get_array.rst", "generated/api/pwtools.sql.SQLiteDB.get_array1d.rst", "generated/api/pwtools.sql.SQLiteDB.get_dict.rst", "generated/api/pwtools.sql.SQLiteDB.get_header.rst", "generated/api/pwtools.sql.SQLiteDB.get_list1d.rst", "generated/api/pwtools.sql.SQLiteDB.get_max_rowid.rst", "generated/api/pwtools.sql.SQLiteDB.get_single.rst", "generated/api/pwtools.sql.SQLiteDB.get_table.rst", "generated/api/pwtools.sql.SQLiteDB.has_column.rst", "generated/api/pwtools.sql.SQLiteDB.has_table.rst", "generated/api/pwtools.sql.SQLiteDB.set_table.rst", "generated/api/pwtools.sql.find_sqltype.rst", "generated/api/pwtools.sql.fix_sql_header.rst", "generated/api/pwtools.sql.fix_sqltype.rst", "generated/api/pwtools.sql.get_test_db.rst", "generated/api/pwtools.sql.makedb.rst", "generated/api/pwtools.sql.sql_column.rst", "generated/api/pwtools.sql.sql_column_old.rst", "generated/api/pwtools.sql.sql_matrix.rst", "generated/api/pwtools.symmetry.is_same_struct.rst", "generated/api/pwtools.symmetry.spglib2struct.rst", "generated/api/pwtools.symmetry.spglib_get_primitive.rst", "generated/api/pwtools.symmetry.spglib_get_spacegroup.rst", "generated/api/pwtools.symmetry.struct2spglib.rst", "generated/api/pwtools.thermo.Gibbs.rst", "generated/api/pwtools.thermo.Gibbs.calc_F.rst", "generated/api/pwtools.thermo.Gibbs.calc_G.rst", "generated/api/pwtools.thermo.Gibbs.calc_H.rst", "generated/api/pwtools.thermo.Gibbs.set_fitfunc.rst", "generated/api/pwtools.thermo.HarmonicThermo.rst", "generated/api/pwtools.thermo.HarmonicThermo.cv.rst", "generated/api/pwtools.thermo.HarmonicThermo.evib.rst", "generated/api/pwtools.thermo.HarmonicThermo.fvib.rst", "generated/api/pwtools.thermo.HarmonicThermo.isochoric_heat_capacity.rst", "generated/api/pwtools.thermo.HarmonicThermo.svib.rst", "generated/api/pwtools.thermo.HarmonicThermo.vibrational_entropy.rst", "generated/api/pwtools.thermo.HarmonicThermo.vibrational_free_energy.rst", "generated/api/pwtools.thermo.HarmonicThermo.vibrational_internal_energy.rst", "generated/api/pwtools.thermo.R.rst", "generated/api/pwtools.thermo.Ry_to_J.rst", "generated/api/pwtools.thermo.c0.rst", "generated/api/pwtools.thermo.coth.rst", "generated/api/pwtools.thermo.debye_func.rst", "generated/api/pwtools.thermo.eV.rst", "generated/api/pwtools.thermo.eV_by_Ang3_to_GPa.rst", "generated/api/pwtools.thermo.einstein_func.rst", "generated/api/pwtools.thermo.expansion.rst", "generated/api/pwtools.thermo.hplanck.rst", "generated/api/pwtools.thermo.kb.rst", "generated/api/pwtools.thermo.pi.rst", "generated/api/pwtools.timer.TagTimer.rst", "generated/api/pwtools.timer.TagTimer.p.rst", "generated/api/pwtools.timer.TagTimer.pt.rst", "generated/api/pwtools.timer.TagTimer.t.rst", "generated/api/pwtools.verbose.VERBOSE.rst", "generated/api/pwtools.verbose.verbose.rst", "generated/api/pwtools.visualize.ViewFactory.rst", "generated/api/pwtools.visualize.assert_struct.rst", "generated/api/pwtools.visualize.avogadro_cmd.rst", "generated/api/pwtools.visualize.view_avogadro.rst", "generated/api/pwtools.visualize.view_jmol.rst", "generated/api/pwtools.visualize.view_vmd_axsf.rst", "generated/api/pwtools.visualize.view_vmd_xyz.rst", "generated/api/pwtools.visualize.view_xcrysden.rst", "index.rst", "written/background/ase.rst", "written/background/coord_trans.rst", "written/background/index.rst", "written/background/param_study.rst", "written/background/parsing.rst", "written/background/phonon_dos.rst", "written/background/pwscf.rst", "written/background/rbf.rst", "written/cp2k_restart.rst", "written/dispersion_example.rst", "written/features.rst", "written/index.rst", "written/install.rst", "written/qha.md", "written/refs.rst", "written/tutorial.rst"], "indexentries": {"__call__() (pwtools.eos.eosfit method)": [[497, "pwtools.eos.EosFit.__call__", false]], "__call__() (pwtools.eos.evfunction method)": [[465, "pwtools.eos.EVFunction.__call__", false]], "__call__() (pwtools.eos.vinet method)": [[535, "pwtools.eos.Vinet.__call__", false]], "__call__() (pwtools.io.readfactory method)": [[547, "pwtools.io.ReadFactory.__call__", false]], "__call__() (pwtools.num.interpol2d method)": [[648, "pwtools.num.Interpol2D.__call__", false]], "__call__() (pwtools.num.polyfit method)": [[650, "pwtools.num.PolyFit.__call__", false]], "__call__() (pwtools.num.polyfit1d method)": [[652, "pwtools.num.PolyFit1D.__call__", false]], "__call__() (pwtools.num.spline method)": [[657, "pwtools.num.Spline.__call__", false]], "__call__() (pwtools.rbf.core.rbf method)": [[1301, "pwtools.rbf.core.Rbf.__call__", false]], "__call__() (pwtools.rbf.hyperopt.fiterror method)": [[1318, "pwtools.rbf.hyperopt.FitError.__call__", false]], "__call__() (pwtools.signal.firfilter method)": [[1325, "pwtools.signal.FIRFilter.__call__", false]], "__call__() (pwtools.visualize.viewfactory method)": [[34, "pwtools.visualize.ViewFactory.__call__", false], [1409, "pwtools.visualize.ViewFactory.__call__", false]], "__getitem__() (pwtools.crys.trajectory method)": [[326, "pwtools.crys.Trajectory.__getitem__", false]], "__init__() (pwtools.base.flexiblegetters method)": [[67, "pwtools.base.FlexibleGetters.__init__", false]], "__init__() (pwtools.batch.calculation method)": [[86, "pwtools.batch.Calculation.__init__", false]], "__init__() (pwtools.batch.case method)": [[89, "pwtools.batch.Case.__init__", false]], "__init__() (pwtools.batch.filetemplate method)": [[90, "pwtools.batch.FileTemplate.__init__", false]], "__init__() (pwtools.batch.machine method)": [[93, "pwtools.batch.Machine.__init__", false]], "__init__() (pwtools.batch.parameterstudy method)": [[96, "pwtools.batch.ParameterStudy.__init__", false]], "__init__() (pwtools.calculators.calculatorbase method)": [[100, "pwtools.calculators.CalculatorBase.__init__", false]], "__init__() (pwtools.calculators.fileiocalculator method)": [[103, "pwtools.calculators.FileIOCalculator.__init__", false]], "__init__() (pwtools.calculators.lammps method)": [[104, "pwtools.calculators.Lammps.__init__", false]], "__init__() (pwtools.calculators.pwscf method)": [[112, "pwtools.calculators.Pwscf.__init__", false]], "__init__() (pwtools.crys.fakeaseatoms method)": [[211, "pwtools.crys.FakeASEAtoms.__init__", false]], "__init__() (pwtools.crys.structure method)": [[269, "pwtools.crys.Structure.__init__", false]], "__init__() (pwtools.crys.trajectory method)": [[325, "pwtools.crys.Trajectory.__init__", false]], "__init__() (pwtools.crys.unitshandler method)": [[382, "pwtools.crys.UnitsHandler.__init__", false]], "__init__() (pwtools.decorators.lazyprop method)": [[461, "pwtools.decorators.lazyprop.__init__", false]], "__init__() (pwtools.eos.elkeosfit method)": [[471, "pwtools.eos.ElkEOSFit.__init__", false]], "__init__() (pwtools.eos.eosfit method)": [[497, "pwtools.eos.EosFit.__init__", false]], "__init__() (pwtools.eos.evfunction method)": [[465, "pwtools.eos.EVFunction.__init__", false]], "__init__() (pwtools.eos.externeos method)": [[506, "pwtools.eos.ExternEOS.__init__", false]], "__init__() (pwtools.eos.vinet method)": [[535, "pwtools.eos.Vinet.__init__", false]], "__init__() (pwtools.io.readfactory method)": [[547, "pwtools.io.ReadFactory.__init__", false]], "__init__() (pwtools.kpath.specialpointspath method)": [[572, "pwtools.kpath.SpecialPointsPath.__init__", false]], "__init__() (pwtools.mpl.data2d method)": [[577, "pwtools.mpl.Data2D.__init__", false]], "__init__() (pwtools.mpl.plot method)": [[583, "pwtools.mpl.Plot.__init__", false]], "__init__() (pwtools.num.datand method)": [[640, "pwtools.num.DataND.__init__", false]], "__init__() (pwtools.num.fit1d method)": [[643, "pwtools.num.Fit1D.__init__", false]], "__init__() (pwtools.num.interpol2d method)": [[648, "pwtools.num.Interpol2D.__init__", false]], "__init__() (pwtools.num.polyfit method)": [[650, "pwtools.num.PolyFit.__init__", false]], "__init__() (pwtools.num.polyfit1d method)": [[652, "pwtools.num.PolyFit1D.__init__", false]], "__init__() (pwtools.num.spline method)": [[657, "pwtools.num.Spline.__init__", false]], "__init__() (pwtools.parse.ciffile method)": [[695, "pwtools.parse.CifFile.__init__", false]], "__init__() (pwtools.parse.cp2kdcdmdoutputfile method)": [[726, "pwtools.parse.Cp2kDcdMDOutputFile.__init__", false]], "__init__() (pwtools.parse.cp2kmdoutputfile method)": [[768, "pwtools.parse.Cp2kMDOutputFile.__init__", false]], "__init__() (pwtools.parse.cp2krelaxoutputfile method)": [[808, "pwtools.parse.Cp2kRelaxOutputFile.__init__", false]], "__init__() (pwtools.parse.cp2kscfoutputfile method)": [[848, "pwtools.parse.Cp2kSCFOutputFile.__init__", false]], "__init__() (pwtools.parse.cpmdmdoutputfile method)": [[878, "pwtools.parse.CpmdMDOutputFile.__init__", false]], "__init__() (pwtools.parse.cpmdscfoutputfile method)": [[926, "pwtools.parse.CpmdSCFOutputFile.__init__", false]], "__init__() (pwtools.parse.dcdoutputfile method)": [[961, "pwtools.parse.DcdOutputFile.__init__", false]], "__init__() (pwtools.parse.lammpsdcdmdoutputfile method)": [[969, "pwtools.parse.LammpsDcdMDOutputFile.__init__", false]], "__init__() (pwtools.parse.lammpstextmdoutputfile method)": [[1011, "pwtools.parse.LammpsTextMDOutputFile.__init__", false]], "__init__() (pwtools.parse.pdbfile method)": [[1052, "pwtools.parse.PDBFile.__init__", false]], "__init__() (pwtools.parse.pwmdoutputfile method)": [[1080, "pwtools.parse.PwMDOutputFile.__init__", false]], "__init__() (pwtools.parse.pwscfoutputfile method)": [[1124, "pwtools.parse.PwSCFOutputFile.__init__", false]], "__init__() (pwtools.parse.pwvcmdoutputfile method)": [[1160, "pwtools.parse.PwVCMDOutputFile.__init__", false]], "__init__() (pwtools.parse.structurefileparser method)": [[1206, "pwtools.parse.StructureFileParser.__init__", false]], "__init__() (pwtools.parse.trajectoryfileparser method)": [[1231, "pwtools.parse.TrajectoryFileParser.__init__", false]], "__init__() (pwtools.random.randomstructure method)": [[1294, "pwtools.random.RandomStructure.__init__", false]], "__init__() (pwtools.rbf.core.rbf method)": [[1301, "pwtools.rbf.core.Rbf.__init__", false]], "__init__() (pwtools.rbf.hyperopt.fiterror method)": [[1318, "pwtools.rbf.hyperopt.FitError.__init__", false]], "__init__() (pwtools.rbf.hyperopt.repeatedkfold method)": [[1322, "pwtools.rbf.hyperopt.RepeatedKFold.__init__", false]], "__init__() (pwtools.signal.firfilter method)": [[1325, "pwtools.signal.FIRFilter.__init__", false]], "__init__() (pwtools.sql.sqlentry method)": [[1341, "pwtools.sql.SQLEntry.__init__", false]], "__init__() (pwtools.sql.sqlitedb method)": [[1342, "pwtools.sql.SQLiteDB.__init__", false]], "__init__() (pwtools.thermo.gibbs method)": [[1377, "pwtools.thermo.Gibbs.__init__", false]], "__init__() (pwtools.thermo.harmonicthermo method)": [[1382, "pwtools.thermo.HarmonicThermo.__init__", false]], "__init__() (pwtools.timer.tagtimer method)": [[1403, "pwtools.timer.TagTimer.__init__", false]], "__init__() (pwtools.visualize.viewfactory method)": [[1409, "pwtools.visualize.ViewFactory.__init__", false]], "_ase_missing() (in module pwtools.calculators)": [[120, "pwtools.calculators._ase_missing", false]], "_ensure_list() (in module pwtools.comb)": [[124, "pwtools.comb._ensure_list", false]], "_np_distsq() (in module pwtools.rbf.core)": [[1309, "pwtools.rbf.core._np_distsq", false]], "_read_header_config() (in module pwtools.arrayio)": [[56, "pwtools.arrayio._read_header_config", false]], "_trans() (in module pwtools.crys)": [[403, "pwtools.crys._trans", false]], "_vinet() (in module pwtools.eos)": [[541, "pwtools.eos._vinet", false]], "_vinet_deriv1() (in module pwtools.eos)": [[542, "pwtools.eos._vinet_deriv1", false]], "_vinet_deriv2() (in module pwtools.eos)": [[543, "pwtools.eos._vinet_deriv2", false]], "_write_header_config() (in module pwtools.arrayio)": [[57, "pwtools.arrayio._write_header_config", false]], "a0 (in module pwtools.constants)": [[185, "pwtools.constants.a0", false]], "a0 (in module pwtools.mttk)": [[632, "pwtools.mttk.a0", false]], "a0_to_a (in module pwtools.constants)": [[186, "pwtools.constants.a0_to_A", false]], "a2_to_an() (pwtools.num.datand method)": [[641, "pwtools.num.DataND.a2_to_an", false]], "acorr (in module pwtools._flib)": [[41, "pwtools._flib.acorr", false]], "acorr() (in module pwtools.signal)": [[1326, "pwtools.signal.acorr", false]], "add_column() (pwtools.sql.sqlitedb method)": [[1343, "pwtools.sql.SQLiteDB.add_column", false]], "add_columns() (pwtools.sql.sqlitedb method)": [[1344, "pwtools.sql.SQLiteDB.add_columns", false]], "add_doc() (in module pwtools.mttk)": [[633, "pwtools.mttk.add_doc", false]], "add_to_config() (in module pwtools.common)": [[128, "pwtools.common.add_to_config", false]], "align_cart() (in module pwtools.crys)": [[404, "pwtools.crys.align_cart", false]], "alpha (in module pwtools.constants)": [[187, "pwtools.constants.alpha", false]], "amu (in module pwtools.constants)": [[188, "pwtools.constants.amu", false]], "ang (in module pwtools.constants)": [[165, "pwtools.constants.Ang", false]], "ang (in module pwtools.eos)": [[463, "pwtools.eos.Ang", false]], "ang (in module pwtools.parse)": [[692, "pwtools.parse.Ang", false]], "angle() (in module pwtools.crys)": [[405, "pwtools.crys.angle", false]], "angles (in module pwtools._flib)": [[42, "pwtools._flib.angles", false]], "angles() (in module pwtools.crys)": [[406, "pwtools.crys.angles", false]], "angstrom (in module pwtools.constants)": [[166, "pwtools.constants.Angstrom", false]], "angstrom (in module pwtools.crys)": [[210, "pwtools.crys.Angstrom", false]], "angstrom (in module pwtools.parse)": [[693, "pwtools.parse.Angstrom", false]], "apply_units() (pwtools.crys.fakeaseatoms method)": [[212, "pwtools.crys.FakeASEAtoms.apply_units", false]], "apply_units() (pwtools.crys.structure method)": [[270, "pwtools.crys.Structure.apply_units", false]], "apply_units() (pwtools.crys.trajectory method)": [[327, "pwtools.crys.Trajectory.apply_units", false]], "apply_units() (pwtools.crys.unitshandler method)": [[383, "pwtools.crys.UnitsHandler.apply_units", false]], "apply_units() (pwtools.parse.ciffile method)": [[696, "pwtools.parse.CifFile.apply_units", false]], "apply_units() (pwtools.parse.cp2kdcdmdoutputfile method)": [[727, "pwtools.parse.Cp2kDcdMDOutputFile.apply_units", false]], "apply_units() (pwtools.parse.cp2kmdoutputfile method)": [[769, "pwtools.parse.Cp2kMDOutputFile.apply_units", false]], "apply_units() (pwtools.parse.cp2krelaxoutputfile method)": [[809, "pwtools.parse.Cp2kRelaxOutputFile.apply_units", false]], "apply_units() (pwtools.parse.cp2kscfoutputfile method)": [[849, "pwtools.parse.Cp2kSCFOutputFile.apply_units", false]], "apply_units() (pwtools.parse.cpmdmdoutputfile method)": [[879, "pwtools.parse.CpmdMDOutputFile.apply_units", false]], "apply_units() (pwtools.parse.cpmdscfoutputfile method)": [[927, "pwtools.parse.CpmdSCFOutputFile.apply_units", false]], "apply_units() (pwtools.parse.lammpsdcdmdoutputfile method)": [[970, "pwtools.parse.LammpsDcdMDOutputFile.apply_units", false]], "apply_units() (pwtools.parse.lammpstextmdoutputfile method)": [[1012, "pwtools.parse.LammpsTextMDOutputFile.apply_units", false]], "apply_units() (pwtools.parse.pdbfile method)": [[1053, "pwtools.parse.PDBFile.apply_units", false]], "apply_units() (pwtools.parse.pwmdoutputfile method)": [[1081, "pwtools.parse.PwMDOutputFile.apply_units", false]], "apply_units() (pwtools.parse.pwscfoutputfile method)": [[1125, "pwtools.parse.PwSCFOutputFile.apply_units", false]], "apply_units() (pwtools.parse.pwvcmdoutputfile method)": [[1161, "pwtools.parse.PwVCMDOutputFile.apply_units", false]], "apply_units() (pwtools.parse.structurefileparser method)": [[1207, "pwtools.parse.StructureFileParser.apply_units", false]], "apply_units() (pwtools.parse.trajectoryfileparser method)": [[1232, "pwtools.parse.TrajectoryFileParser.apply_units", false]], "arr1d_from_txt() (in module pwtools.parse)": [[1258, "pwtools.parse.arr1d_from_txt", false]], "arr2d_from_txt() (in module pwtools.parse)": [[1259, "pwtools.parse.arr2d_from_txt", false]], "arr2d_to_3d() (in module pwtools.arrayio)": [[58, "pwtools.arrayio.arr2d_to_3d", false]], "asseq() (in module pwtools.common)": [[129, "pwtools.common.asseq", false]], "assert_attr() (pwtools.base.flexiblegetters method)": [[68, "pwtools.base.FlexibleGetters.assert_attr", false]], "assert_attr() (pwtools.crys.fakeaseatoms method)": [[213, "pwtools.crys.FakeASEAtoms.assert_attr", false]], "assert_attr() (pwtools.crys.structure method)": [[271, "pwtools.crys.Structure.assert_attr", false]], "assert_attr() (pwtools.crys.trajectory method)": [[328, "pwtools.crys.Trajectory.assert_attr", false]], "assert_attr() (pwtools.crys.unitshandler method)": [[384, "pwtools.crys.UnitsHandler.assert_attr", false]], "assert_attr() (pwtools.eos.elkeosfit method)": [[472, "pwtools.eos.ElkEOSFit.assert_attr", false]], "assert_attr() (pwtools.eos.externeos method)": [[507, "pwtools.eos.ExternEOS.assert_attr", false]], "assert_attr() (pwtools.parse.ciffile method)": [[697, "pwtools.parse.CifFile.assert_attr", false]], "assert_attr() (pwtools.parse.cp2kdcdmdoutputfile method)": [[728, "pwtools.parse.Cp2kDcdMDOutputFile.assert_attr", false]], "assert_attr() (pwtools.parse.cp2kmdoutputfile method)": [[770, "pwtools.parse.Cp2kMDOutputFile.assert_attr", false]], "assert_attr() (pwtools.parse.cp2krelaxoutputfile method)": [[810, "pwtools.parse.Cp2kRelaxOutputFile.assert_attr", false]], "assert_attr() (pwtools.parse.cp2kscfoutputfile method)": [[850, "pwtools.parse.Cp2kSCFOutputFile.assert_attr", false]], "assert_attr() (pwtools.parse.cpmdmdoutputfile method)": [[880, "pwtools.parse.CpmdMDOutputFile.assert_attr", false]], "assert_attr() (pwtools.parse.cpmdscfoutputfile method)": [[928, "pwtools.parse.CpmdSCFOutputFile.assert_attr", false]], "assert_attr() (pwtools.parse.lammpsdcdmdoutputfile method)": [[971, "pwtools.parse.LammpsDcdMDOutputFile.assert_attr", false]], "assert_attr() (pwtools.parse.lammpstextmdoutputfile method)": [[1013, "pwtools.parse.LammpsTextMDOutputFile.assert_attr", false]], "assert_attr() (pwtools.parse.pdbfile method)": [[1054, "pwtools.parse.PDBFile.assert_attr", false]], "assert_attr() (pwtools.parse.pwmdoutputfile method)": [[1082, "pwtools.parse.PwMDOutputFile.assert_attr", false]], "assert_attr() (pwtools.parse.pwscfoutputfile method)": [[1126, "pwtools.parse.PwSCFOutputFile.assert_attr", false]], "assert_attr() (pwtools.parse.pwvcmdoutputfile method)": [[1162, "pwtools.parse.PwVCMDOutputFile.assert_attr", false]], "assert_attr() (pwtools.parse.structurefileparser method)": [[1208, "pwtools.parse.StructureFileParser.assert_attr", false]], "assert_attr() (pwtools.parse.trajectoryfileparser method)": [[1233, "pwtools.parse.TrajectoryFileParser.assert_attr", false]], "assert_attr_lst() (pwtools.base.flexiblegetters method)": [[69, "pwtools.base.FlexibleGetters.assert_attr_lst", false]], "assert_attr_lst() (pwtools.crys.fakeaseatoms method)": [[214, "pwtools.crys.FakeASEAtoms.assert_attr_lst", false]], "assert_attr_lst() (pwtools.crys.structure method)": [[272, "pwtools.crys.Structure.assert_attr_lst", false]], "assert_attr_lst() (pwtools.crys.trajectory method)": [[329, "pwtools.crys.Trajectory.assert_attr_lst", false]], "assert_attr_lst() (pwtools.crys.unitshandler method)": [[385, "pwtools.crys.UnitsHandler.assert_attr_lst", false]], "assert_attr_lst() (pwtools.eos.elkeosfit method)": [[473, "pwtools.eos.ElkEOSFit.assert_attr_lst", false]], "assert_attr_lst() (pwtools.eos.externeos method)": [[508, "pwtools.eos.ExternEOS.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.ciffile method)": [[698, "pwtools.parse.CifFile.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.cp2kdcdmdoutputfile method)": [[729, "pwtools.parse.Cp2kDcdMDOutputFile.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.cp2kmdoutputfile method)": [[771, "pwtools.parse.Cp2kMDOutputFile.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.cp2krelaxoutputfile method)": [[811, "pwtools.parse.Cp2kRelaxOutputFile.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.cp2kscfoutputfile method)": [[851, "pwtools.parse.Cp2kSCFOutputFile.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.cpmdmdoutputfile method)": [[881, "pwtools.parse.CpmdMDOutputFile.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.cpmdscfoutputfile method)": [[929, "pwtools.parse.CpmdSCFOutputFile.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.lammpsdcdmdoutputfile method)": [[972, "pwtools.parse.LammpsDcdMDOutputFile.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.lammpstextmdoutputfile method)": [[1014, "pwtools.parse.LammpsTextMDOutputFile.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.pdbfile method)": [[1055, "pwtools.parse.PDBFile.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.pwmdoutputfile method)": [[1083, "pwtools.parse.PwMDOutputFile.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.pwscfoutputfile method)": [[1127, "pwtools.parse.PwSCFOutputFile.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.pwvcmdoutputfile method)": [[1163, "pwtools.parse.PwVCMDOutputFile.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.structurefileparser method)": [[1209, "pwtools.parse.StructureFileParser.assert_attr_lst", false]], "assert_attr_lst() (pwtools.parse.trajectoryfileparser method)": [[1234, "pwtools.parse.TrajectoryFileParser.assert_attr_lst", false]], "assert_cond() (in module pwtools.common)": [[130, "pwtools.common.assert_cond", false]], "assert_set_attr() (pwtools.base.flexiblegetters method)": [[70, "pwtools.base.FlexibleGetters.assert_set_attr", false]], "assert_set_attr() (pwtools.crys.fakeaseatoms method)": [[215, "pwtools.crys.FakeASEAtoms.assert_set_attr", false]], "assert_set_attr() (pwtools.crys.structure method)": [[273, "pwtools.crys.Structure.assert_set_attr", false]], "assert_set_attr() (pwtools.crys.trajectory method)": [[330, "pwtools.crys.Trajectory.assert_set_attr", false]], "assert_set_attr() (pwtools.crys.unitshandler method)": [[386, "pwtools.crys.UnitsHandler.assert_set_attr", false]], "assert_set_attr() (pwtools.eos.elkeosfit method)": [[474, "pwtools.eos.ElkEOSFit.assert_set_attr", false]], "assert_set_attr() (pwtools.eos.externeos method)": [[509, "pwtools.eos.ExternEOS.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.ciffile method)": [[699, "pwtools.parse.CifFile.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.cp2kdcdmdoutputfile method)": [[730, "pwtools.parse.Cp2kDcdMDOutputFile.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.cp2kmdoutputfile method)": [[772, "pwtools.parse.Cp2kMDOutputFile.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.cp2krelaxoutputfile method)": [[812, "pwtools.parse.Cp2kRelaxOutputFile.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.cp2kscfoutputfile method)": [[852, "pwtools.parse.Cp2kSCFOutputFile.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.cpmdmdoutputfile method)": [[882, "pwtools.parse.CpmdMDOutputFile.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.cpmdscfoutputfile method)": [[930, "pwtools.parse.CpmdSCFOutputFile.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.lammpsdcdmdoutputfile method)": [[973, "pwtools.parse.LammpsDcdMDOutputFile.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.lammpstextmdoutputfile method)": [[1015, "pwtools.parse.LammpsTextMDOutputFile.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.pdbfile method)": [[1056, "pwtools.parse.PDBFile.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.pwmdoutputfile method)": [[1084, "pwtools.parse.PwMDOutputFile.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.pwscfoutputfile method)": [[1128, "pwtools.parse.PwSCFOutputFile.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.pwvcmdoutputfile method)": [[1164, "pwtools.parse.PwVCMDOutputFile.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.structurefileparser method)": [[1210, "pwtools.parse.StructureFileParser.assert_set_attr", false]], "assert_set_attr() (pwtools.parse.trajectoryfileparser method)": [[1235, "pwtools.parse.TrajectoryFileParser.assert_set_attr", false]], "assert_set_attr_lst() (pwtools.base.flexiblegetters method)": [[71, "pwtools.base.FlexibleGetters.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.crys.fakeaseatoms method)": [[216, "pwtools.crys.FakeASEAtoms.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.crys.structure method)": [[274, "pwtools.crys.Structure.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.crys.trajectory method)": [[331, "pwtools.crys.Trajectory.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.crys.unitshandler method)": [[387, "pwtools.crys.UnitsHandler.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.eos.elkeosfit method)": [[475, "pwtools.eos.ElkEOSFit.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.eos.externeos method)": [[510, "pwtools.eos.ExternEOS.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.ciffile method)": [[700, "pwtools.parse.CifFile.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.cp2kdcdmdoutputfile method)": [[731, "pwtools.parse.Cp2kDcdMDOutputFile.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.cp2kmdoutputfile method)": [[773, "pwtools.parse.Cp2kMDOutputFile.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.cp2krelaxoutputfile method)": [[813, "pwtools.parse.Cp2kRelaxOutputFile.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.cp2kscfoutputfile method)": [[853, "pwtools.parse.Cp2kSCFOutputFile.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.cpmdmdoutputfile method)": [[883, "pwtools.parse.CpmdMDOutputFile.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.cpmdscfoutputfile method)": [[931, "pwtools.parse.CpmdSCFOutputFile.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.lammpsdcdmdoutputfile method)": [[974, "pwtools.parse.LammpsDcdMDOutputFile.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.lammpstextmdoutputfile method)": [[1016, "pwtools.parse.LammpsTextMDOutputFile.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.pdbfile method)": [[1057, "pwtools.parse.PDBFile.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.pwmdoutputfile method)": [[1085, "pwtools.parse.PwMDOutputFile.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.pwscfoutputfile method)": [[1129, "pwtools.parse.PwSCFOutputFile.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.pwvcmdoutputfile method)": [[1165, "pwtools.parse.PwVCMDOutputFile.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.structurefileparser method)": [[1211, "pwtools.parse.StructureFileParser.assert_set_attr_lst", false]], "assert_set_attr_lst() (pwtools.parse.trajectoryfileparser method)": [[1236, "pwtools.parse.TrajectoryFileParser.assert_set_attr_lst", false]], "assert_struct() (in module pwtools.visualize)": [[1410, "pwtools.visualize.assert_struct", false]], "atoms2struct() (in module pwtools.crys)": [[407, "pwtools.crys.atoms2struct", false]], "atpos_str() (in module pwtools.pwscf)": [[1271, "pwtools.pwscf.atpos_str", false]], "atpos_str_fast() (in module pwtools.pwscf)": [[1272, "pwtools.pwscf.atpos_str_fast", false]], "atspec_str() (in module pwtools.pwscf)": [[1273, "pwtools.pwscf.atspec_str", false]], "attach_column() (pwtools.sql.sqlitedb method)": [[1345, "pwtools.sql.SQLiteDB.attach_column", false]], "avo (in module pwtools.constants)": [[189, "pwtools.constants.avo", false]], "avogadro_cmd (in module pwtools.visualize)": [[1411, "pwtools.visualize.avogadro_cmd", false]], "awk (in module pwtools.parse)": [[691, "pwtools.parse.AWK", false]], "axes (pwtools.num.datand attribute)": [[640, "pwtools.num.DataND.axes", false]], "axis_lens() (in module pwtools.parse)": [[1260, "pwtools.parse.axis_lens", false]], "backtick() (in module pwtools.common)": [[131, "pwtools.common.backtick", false]], "backup() (in module pwtools.common)": [[132, "pwtools.common.backup", false]], "barostat_mass_w() (in module pwtools.mttk)": [[634, "pwtools.mttk.barostat_mass_w", false]], "barostat_mass_wg() (in module pwtools.mttk)": [[635, "pwtools.mttk.barostat_mass_wg", false]], "barostat_nhc_masses() (in module pwtools.mttk)": [[636, "pwtools.mttk.barostat_nhc_masses", false]], "base (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.base", false], [62, "pwtools.atomic_data.base", false]], "bohr (in module pwtools.constants)": [[167, "pwtools.constants.Bohr", false]], "bohr (in module pwtools.eos)": [[464, "pwtools.eos.Bohr", false]], "bohr (in module pwtools.parse)": [[694, "pwtools.parse.Bohr", false]], "bohr_to_ang (in module pwtools.constants)": [[168, "pwtools.constants.Bohr_to_Ang", false]], "bool2str() (in module pwtools.pwscf)": [[1274, "pwtools.pwscf.bool2str", false]], "bulkmod() (pwtools.eos.eosfit method)": [[498, "pwtools.eos.EosFit.bulkmod", false]], "c0 (in module pwtools.constants)": [[190, "pwtools.constants.c0", false]], "c0 (in module pwtools.thermo)": [[1393, "pwtools.thermo.c0", false]], "calc_bv() (pwtools.eos.elkeosfit method)": [[476, "pwtools.eos.ElkEOSFit.calc_bv", false]], "calc_bv() (pwtools.eos.externeos method)": [[511, "pwtools.eos.ExternEOS.calc_bv", false]], "calc_f() (pwtools.thermo.gibbs method)": [[1378, "pwtools.thermo.Gibbs.calc_F", false]], "calc_g() (pwtools.thermo.gibbs method)": [[1379, "pwtools.thermo.Gibbs.calc_G", false]], "calc_h() (pwtools.thermo.gibbs method)": [[1380, "pwtools.thermo.Gibbs.calc_H", false]], "calculation (class in pwtools.batch)": [[86, "pwtools.batch.Calculation", false]], "calculatorbase (class in pwtools.calculators)": [[100, "pwtools.calculators.CalculatorBase", false]], "call_vmd_measure_gofr() (in module pwtools.crys)": [[408, "pwtools.crys.call_vmd_measure_gofr", false]], "cart2frac (in module pwtools._flib)": [[43, "pwtools._flib.cart2frac", false]], "cart2frac_traj (in module pwtools._flib)": [[44, "pwtools._flib.cart2frac_traj", false]], "case (class in pwtools.batch)": [[89, "pwtools.batch.Case", false]], "cauchy() (in module pwtools.signal)": [[1327, "pwtools.signal.cauchy", false]], "cc (in module pwtools.mpl)": [[587, "pwtools.mpl.cc", false]], "cc2cell() (in module pwtools.crys)": [[409, "pwtools.crys.cc2cell", false]], "cc2cell3d() (in module pwtools.crys)": [[410, "pwtools.crys.cc2cell3d", false]], "cc2celldm() (in module pwtools.crys)": [[411, "pwtools.crys.cc2celldm", false]], "ccl (in module pwtools.mpl)": [[588, "pwtools.mpl.ccl", false]], "ccm (in module pwtools.mpl)": [[589, "pwtools.mpl.ccm", false]], "cell2cc() (in module pwtools.crys)": [[412, "pwtools.crys.cell2cc", false]], "cell2cc3d() (in module pwtools.crys)": [[413, "pwtools.crys.cell2cc3d", false]], "celldm2cc() (in module pwtools.crys)": [[414, "pwtools.crys.celldm2cc", false]], "center_on_atom() (in module pwtools.crys)": [[415, "pwtools.crys.center_on_atom", false]], "check_set_attr() (pwtools.base.flexiblegetters method)": [[72, "pwtools.base.FlexibleGetters.check_set_attr", false]], "check_set_attr() (pwtools.crys.fakeaseatoms method)": [[217, "pwtools.crys.FakeASEAtoms.check_set_attr", false]], "check_set_attr() (pwtools.crys.structure method)": [[275, "pwtools.crys.Structure.check_set_attr", false]], "check_set_attr() (pwtools.crys.trajectory method)": [[332, "pwtools.crys.Trajectory.check_set_attr", false]], "check_set_attr() (pwtools.crys.unitshandler method)": [[388, "pwtools.crys.UnitsHandler.check_set_attr", false]], "check_set_attr() (pwtools.eos.elkeosfit method)": [[477, "pwtools.eos.ElkEOSFit.check_set_attr", false]], "check_set_attr() (pwtools.eos.externeos method)": [[512, "pwtools.eos.ExternEOS.check_set_attr", false]], "check_set_attr() (pwtools.parse.ciffile method)": [[701, "pwtools.parse.CifFile.check_set_attr", false]], "check_set_attr() (pwtools.parse.cp2kdcdmdoutputfile method)": [[732, "pwtools.parse.Cp2kDcdMDOutputFile.check_set_attr", false]], "check_set_attr() (pwtools.parse.cp2kmdoutputfile method)": [[774, "pwtools.parse.Cp2kMDOutputFile.check_set_attr", false]], "check_set_attr() (pwtools.parse.cp2krelaxoutputfile method)": [[814, "pwtools.parse.Cp2kRelaxOutputFile.check_set_attr", false]], "check_set_attr() (pwtools.parse.cp2kscfoutputfile method)": [[854, "pwtools.parse.Cp2kSCFOutputFile.check_set_attr", false]], "check_set_attr() (pwtools.parse.cpmdmdoutputfile method)": [[884, "pwtools.parse.CpmdMDOutputFile.check_set_attr", false]], "check_set_attr() (pwtools.parse.cpmdscfoutputfile method)": [[932, "pwtools.parse.CpmdSCFOutputFile.check_set_attr", false]], "check_set_attr() (pwtools.parse.lammpsdcdmdoutputfile method)": [[975, "pwtools.parse.LammpsDcdMDOutputFile.check_set_attr", false]], "check_set_attr() (pwtools.parse.lammpstextmdoutputfile method)": [[1017, "pwtools.parse.LammpsTextMDOutputFile.check_set_attr", false]], "check_set_attr() (pwtools.parse.pdbfile method)": [[1058, "pwtools.parse.PDBFile.check_set_attr", false]], "check_set_attr() (pwtools.parse.pwmdoutputfile method)": [[1086, "pwtools.parse.PwMDOutputFile.check_set_attr", false]], "check_set_attr() (pwtools.parse.pwscfoutputfile method)": [[1130, "pwtools.parse.PwSCFOutputFile.check_set_attr", false]], "check_set_attr() (pwtools.parse.pwvcmdoutputfile method)": [[1166, "pwtools.parse.PwVCMDOutputFile.check_set_attr", false]], "check_set_attr() (pwtools.parse.structurefileparser method)": [[1212, "pwtools.parse.StructureFileParser.check_set_attr", false]], "check_set_attr() (pwtools.parse.trajectoryfileparser method)": [[1237, "pwtools.parse.TrajectoryFileParser.check_set_attr", false]], "check_set_attr_lst() (pwtools.base.flexiblegetters method)": [[73, "pwtools.base.FlexibleGetters.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.crys.fakeaseatoms method)": [[218, "pwtools.crys.FakeASEAtoms.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.crys.structure method)": [[276, "pwtools.crys.Structure.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.crys.trajectory method)": [[333, "pwtools.crys.Trajectory.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.crys.unitshandler method)": [[389, "pwtools.crys.UnitsHandler.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.eos.elkeosfit method)": [[478, "pwtools.eos.ElkEOSFit.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.eos.externeos method)": [[513, "pwtools.eos.ExternEOS.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.ciffile method)": [[702, "pwtools.parse.CifFile.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.cp2kdcdmdoutputfile method)": [[733, "pwtools.parse.Cp2kDcdMDOutputFile.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.cp2kmdoutputfile method)": [[775, "pwtools.parse.Cp2kMDOutputFile.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.cp2krelaxoutputfile method)": [[815, "pwtools.parse.Cp2kRelaxOutputFile.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.cp2kscfoutputfile method)": [[855, "pwtools.parse.Cp2kSCFOutputFile.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.cpmdmdoutputfile method)": [[885, "pwtools.parse.CpmdMDOutputFile.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.cpmdscfoutputfile method)": [[933, "pwtools.parse.CpmdSCFOutputFile.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.lammpsdcdmdoutputfile method)": [[976, "pwtools.parse.LammpsDcdMDOutputFile.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.lammpstextmdoutputfile method)": [[1018, "pwtools.parse.LammpsTextMDOutputFile.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.pdbfile method)": [[1059, "pwtools.parse.PDBFile.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.pwmdoutputfile method)": [[1087, "pwtools.parse.PwMDOutputFile.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.pwscfoutputfile method)": [[1131, "pwtools.parse.PwSCFOutputFile.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.pwvcmdoutputfile method)": [[1167, "pwtools.parse.PwVCMDOutputFile.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.structurefileparser method)": [[1213, "pwtools.parse.StructureFileParser.check_set_attr_lst", false]], "check_set_attr_lst() (pwtools.parse.trajectoryfileparser method)": [[1238, "pwtools.parse.TrajectoryFileParser.check_set_attr_lst", false]], "cif_clear_atom_symbol() (pwtools.parse.ciffile method)": [[703, "pwtools.parse.CifFile.cif_clear_atom_symbol", false]], "cif_str2float() (pwtools.parse.ciffile method)": [[704, "pwtools.parse.CifFile.cif_str2float", false]], "ciffile (class in pwtools.parse)": [[695, "pwtools.parse.CifFile", false]], "clc (in module pwtools.mpl)": [[590, "pwtools.mpl.clc", false]], "clean_ax3d() (in module pwtools.mpl)": [[591, "pwtools.mpl.clean_ax3d", false]], "cm (in module pwtools.mpl)": [[592, "pwtools.mpl.cm", false]], "cmc (in module pwtools.mpl)": [[593, "pwtools.mpl.cmc", false]], "collect_legends() (in module pwtools.mpl)": [[594, "pwtools.mpl.collect_legends", false]], "collect_legends() (pwtools.mpl.plot method)": [[584, "pwtools.mpl.Plot.collect_legends", false]], "color_ax() (in module pwtools.mpl)": [[595, "pwtools.mpl.color_ax", false]], "colors (in module pwtools.mpl)": [[596, "pwtools.mpl.colors", false]], "colors_linestyles (in module pwtools.mpl)": [[597, "pwtools.mpl.colors_linestyles", false]], "colors_markers (in module pwtools.mpl)": [[598, "pwtools.mpl.colors_markers", false]], "commit() (pwtools.sql.sqlitedb method)": [[1346, "pwtools.sql.SQLiteDB.commit", false]], "compress() (in module pwtools.crys)": [[416, "pwtools.crys.compress", false]], "compress() (pwtools.crys.fakeaseatoms method)": [[219, "pwtools.crys.FakeASEAtoms.compress", false]], "compress() (pwtools.crys.structure method)": [[277, "pwtools.crys.Structure.compress", false]], "compress() (pwtools.crys.trajectory method)": [[334, "pwtools.crys.Trajectory.compress", false]], "concatenate() (in module pwtools.crys)": [[417, "pwtools.crys.concatenate", false]], "conv_table() (in module pwtools.batch)": [[98, "pwtools.batch.conv_table", false]], "coord_trans() (in module pwtools.crys)": [[418, "pwtools.crys.coord_trans", false]], "coord_trans3d() (in module pwtools.crys)": [[419, "pwtools.crys.coord_trans3d", false]], "copy() (pwtools.crys.fakeaseatoms method)": [[220, "pwtools.crys.FakeASEAtoms.copy", false]], "copy() (pwtools.crys.structure method)": [[278, "pwtools.crys.Structure.copy", false]], "copy() (pwtools.crys.trajectory method)": [[335, "pwtools.crys.Trajectory.copy", false]], "copy() (pwtools.mpl.data2d method)": [[578, "pwtools.mpl.Data2D.copy", false]], "copy() (pwtools.mpl.data3d method)": [[581, "pwtools.mpl.Data3D.copy", false]], "coth() (in module pwtools.thermo)": [[1394, "pwtools.thermo.coth", false]], "covalent_radii (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.covalent_radii", false]], "cp2kdcdmdoutputfile (class in pwtools.parse)": [[726, "pwtools.parse.Cp2kDcdMDOutputFile", false]], "cp2kmdoutputfile (class in pwtools.parse)": [[768, "pwtools.parse.Cp2kMDOutputFile", false]], "cp2krelaxoutputfile (class in pwtools.parse)": [[808, "pwtools.parse.Cp2kRelaxOutputFile", false]], "cp2kscfoutputfile (class in pwtools.parse)": [[848, "pwtools.parse.Cp2kSCFOutputFile", false]], "cpickle_load() (in module pwtools.common)": [[133, "pwtools.common.cpickle_load", false]], "cpmdmdoutputfile (class in pwtools.parse)": [[878, "pwtools.parse.CpmdMDOutputFile", false]], "cpmdscfoutputfile (class in pwtools.parse)": [[926, "pwtools.parse.CpmdSCFOutputFile", false]], "create_table() (pwtools.sql.sqlitedb method)": [[1347, "pwtools.sql.SQLiteDB.create_table", false]], "crys_add_doc() (in module pwtools.decorators)": [[460, "pwtools.decorators.crys_add_doc", false]], "ctypes (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.ctypes", false], [62, "pwtools.atomic_data.ctypes", false]], "cv() (pwtools.rbf.hyperopt.fiterror method)": [[1319, "pwtools.rbf.hyperopt.FitError.cv", false]], "cv() (pwtools.thermo.harmonicthermo method)": [[1383, "pwtools.thermo.HarmonicThermo.cv", false]], "cycle_colors (in module pwtools.mpl)": [[599, "pwtools.mpl.cycle_colors", false]], "cycle_colors_linestyles (in module pwtools.mpl)": [[600, "pwtools.mpl.cycle_colors_linestyles", false]], "cycle_colors_markers (in module pwtools.mpl)": [[601, "pwtools.mpl.cycle_colors_markers", false]], "cycle_linestyles_colors (in module pwtools.mpl)": [[602, "pwtools.mpl.cycle_linestyles_colors", false]], "cycle_markers (in module pwtools.mpl)": [[603, "pwtools.mpl.cycle_markers", false]], "cycle_markers_colors (in module pwtools.mpl)": [[604, "pwtools.mpl.cycle_markers_colors", false]], "data (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.data", false], [62, "pwtools.atomic_data.data", false]], "data2d (class in pwtools.mpl)": [[577, "pwtools.mpl.Data2D", false]], "data3d (in module pwtools.mpl)": [[580, "pwtools.mpl.Data3D", false]], "datand (class in pwtools.num)": [[640, "pwtools.num.DataND", false]], "dcdoutputfile (class in pwtools.parse)": [[961, "pwtools.parse.DcdOutputFile", false]], "dct2lst() (pwtools.eos.evfunction method)": [[466, "pwtools.eos.EVFunction.dct2lst", false]], "dct2lst() (pwtools.eos.vinet method)": [[536, "pwtools.eos.Vinet.dct2lst", false]], "debye_func() (in module pwtools.thermo)": [[1395, "pwtools.thermo.debye_func", false]], "default_parameters (pwtools.calculators.lammps attribute)": [[105, "pwtools.calculators.Lammps.default_parameters", false]], "default_parameters (pwtools.calculators.pwscf attribute)": [[113, "pwtools.calculators.Pwscf.default_parameters", false]], "default_repl_keys() (in module pwtools.batch)": [[99, "pwtools.batch.default_repl_keys", false]], "default_units (pwtools.parse.ciffile attribute)": [[705, "pwtools.parse.CifFile.default_units", false]], "default_units (pwtools.parse.cp2kdcdmdoutputfile attribute)": [[734, "pwtools.parse.Cp2kDcdMDOutputFile.default_units", false]], "default_units (pwtools.parse.cp2kmdoutputfile attribute)": [[776, "pwtools.parse.Cp2kMDOutputFile.default_units", false]], "default_units (pwtools.parse.cp2krelaxoutputfile attribute)": [[816, "pwtools.parse.Cp2kRelaxOutputFile.default_units", false]], "default_units (pwtools.parse.cp2kscfoutputfile attribute)": [[856, "pwtools.parse.Cp2kSCFOutputFile.default_units", false]], "default_units (pwtools.parse.cpmdmdoutputfile attribute)": [[886, "pwtools.parse.CpmdMDOutputFile.default_units", false]], "default_units (pwtools.parse.cpmdscfoutputfile attribute)": [[934, "pwtools.parse.CpmdSCFOutputFile.default_units", false]], "default_units (pwtools.parse.lammpsdcdmdoutputfile attribute)": [[977, "pwtools.parse.LammpsDcdMDOutputFile.default_units", false]], "default_units (pwtools.parse.lammpstextmdoutputfile attribute)": [[1019, "pwtools.parse.LammpsTextMDOutputFile.default_units", false]], "default_units (pwtools.parse.pdbfile attribute)": [[1060, "pwtools.parse.PDBFile.default_units", false]], "default_units (pwtools.parse.pwmdoutputfile attribute)": [[1088, "pwtools.parse.PwMDOutputFile.default_units", false]], "default_units (pwtools.parse.pwscfoutputfile attribute)": [[1132, "pwtools.parse.PwSCFOutputFile.default_units", false]], "default_units (pwtools.parse.pwvcmdoutputfile attribute)": [[1168, "pwtools.parse.PwVCMDOutputFile.default_units", false]], "default_units (pwtools.parse.structurefileparser attribute)": [[1214, "pwtools.parse.StructureFileParser.default_units", false]], "default_units (pwtools.parse.trajectoryfileparser attribute)": [[1239, "pwtools.parse.TrajectoryFileParser.default_units", false]], "deriv() (pwtools.eos.evfunction method)": [[467, "pwtools.eos.EVFunction.deriv", false]], "deriv() (pwtools.eos.vinet method)": [[537, "pwtools.eos.Vinet.deriv", false]], "deriv() (pwtools.rbf.core.rbf method)": [[1302, "pwtools.rbf.core.Rbf.deriv", false]], "deriv_jax() (pwtools.rbf.core.rbf method)": [[1303, "pwtools.rbf.core.Rbf.deriv_jax", false]], "deriv_spl() (in module pwtools.num)": [[664, "pwtools.num.deriv_spl", false]], "dft() (in module pwtools.signal)": [[1328, "pwtools.signal.dft", false]], "dict2class() (in module pwtools.common)": [[134, "pwtools.common.dict2class", false]], "dict2str() (in module pwtools.common)": [[135, "pwtools.common.dict2str", false]], "direct_pdos() (in module pwtools.pydos)": [[1289, "pwtools.pydos.direct_pdos", false]], "distances() (in module pwtools.crys)": [[420, "pwtools.crys.distances", false]], "distances_traj (in module pwtools._flib)": [[45, "pwtools._flib.distances_traj", false]], "distances_traj() (in module pwtools.crys)": [[421, "pwtools.crys.distances_traj", false]], "distsq (in module pwtools._flib)": [[46, "pwtools._flib.distsq", false]], "distsq() (in module pwtools.num)": [[665, "pwtools.num.distsq", false]], "distsq_frac (in module pwtools._flib)": [[47, "pwtools._flib.distsq_frac", false]], "dtype (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.dtype", false], [62, "pwtools.atomic_data.dtype", false]], "dump() (pwtools.base.flexiblegetters method)": [[74, "pwtools.base.FlexibleGetters.dump", false]], "dump() (pwtools.crys.fakeaseatoms method)": [[221, "pwtools.crys.FakeASEAtoms.dump", false]], "dump() (pwtools.crys.structure method)": [[279, "pwtools.crys.Structure.dump", false]], "dump() (pwtools.crys.trajectory method)": [[336, "pwtools.crys.Trajectory.dump", false]], "dump() (pwtools.crys.unitshandler method)": [[390, "pwtools.crys.UnitsHandler.dump", false]], "dump() (pwtools.eos.elkeosfit method)": [[479, "pwtools.eos.ElkEOSFit.dump", false]], "dump() (pwtools.eos.externeos method)": [[514, "pwtools.eos.ExternEOS.dump", false]], "dump() (pwtools.parse.ciffile method)": [[706, "pwtools.parse.CifFile.dump", false]], "dump() (pwtools.parse.cp2kdcdmdoutputfile method)": [[735, "pwtools.parse.Cp2kDcdMDOutputFile.dump", false]], "dump() (pwtools.parse.cp2kmdoutputfile method)": [[777, "pwtools.parse.Cp2kMDOutputFile.dump", false]], "dump() (pwtools.parse.cp2krelaxoutputfile method)": [[817, "pwtools.parse.Cp2kRelaxOutputFile.dump", false]], "dump() (pwtools.parse.cp2kscfoutputfile method)": [[857, "pwtools.parse.Cp2kSCFOutputFile.dump", false]], "dump() (pwtools.parse.cpmdmdoutputfile method)": [[887, "pwtools.parse.CpmdMDOutputFile.dump", false]], "dump() (pwtools.parse.cpmdscfoutputfile method)": [[935, "pwtools.parse.CpmdSCFOutputFile.dump", false]], "dump() (pwtools.parse.lammpsdcdmdoutputfile method)": [[978, "pwtools.parse.LammpsDcdMDOutputFile.dump", false]], "dump() (pwtools.parse.lammpstextmdoutputfile method)": [[1020, "pwtools.parse.LammpsTextMDOutputFile.dump", false]], "dump() (pwtools.parse.pdbfile method)": [[1061, "pwtools.parse.PDBFile.dump", false]], "dump() (pwtools.parse.pwmdoutputfile method)": [[1089, "pwtools.parse.PwMDOutputFile.dump", false]], "dump() (pwtools.parse.pwscfoutputfile method)": [[1133, "pwtools.parse.PwSCFOutputFile.dump", false]], "dump() (pwtools.parse.pwvcmdoutputfile method)": [[1169, "pwtools.parse.PwVCMDOutputFile.dump", false]], "dump() (pwtools.parse.structurefileparser method)": [[1215, "pwtools.parse.StructureFileParser.dump", false]], "dump() (pwtools.parse.trajectoryfileparser method)": [[1240, "pwtools.parse.TrajectoryFileParser.dump", false]], "dyn (in module pwtools.constants)": [[191, "pwtools.constants.dyn", false]], "e0 (in module pwtools.constants)": [[192, "pwtools.constants.e0", false]], "eh (in module pwtools.constants)": [[169, "pwtools.constants.Eh", false]], "einstein_func() (in module pwtools.thermo)": [[1398, "pwtools.thermo.einstein_func", false]], "elkeosfit (class in pwtools.eos)": [[471, "pwtools.eos.ElkEOSFit", false]], "eosfit (class in pwtools.eos)": [[497, "pwtools.eos.EosFit", false]], "eps (in module pwtools.common)": [[127, "pwtools.common.EPS", false]], "eps (in module pwtools.num)": [[642, "pwtools.num.EPS", false]], "eps (in module pwtools.pwscf)": [[1270, "pwtools.pwscf.EPS", false]], "eps0 (in module pwtools.constants)": [[196, "pwtools.constants.eps0", false]], "err_cv() (pwtools.rbf.hyperopt.fiterror method)": [[1320, "pwtools.rbf.hyperopt.FitError.err_cv", false]], "err_direct() (pwtools.rbf.hyperopt.fiterror method)": [[1321, "pwtools.rbf.hyperopt.FitError.err_direct", false]], "eryd (in module pwtools.constants)": [[170, "pwtools.constants.Eryd", false]], "estimate_p() (in module pwtools.rbf.core)": [[1310, "pwtools.rbf.core.estimate_p", false]], "euclidean_dists() (in module pwtools.rbf.core)": [[1311, "pwtools.rbf.core.euclidean_dists", false]], "euler_matrix() (in module pwtools.num)": [[666, "pwtools.num.euler_matrix", false]], "ev (in module pwtools.constants)": [[193, "pwtools.constants.eV", false]], "ev (in module pwtools.eos)": [[544, "pwtools.eos.eV", false]], "ev (in module pwtools.io)": [[548, "pwtools.io.eV", false]], "ev (in module pwtools.parse)": [[1261, "pwtools.parse.eV", false]], "ev (in module pwtools.thermo)": [[1396, "pwtools.thermo.eV", false]], "ev_by_ang3_to_gpa (in module pwtools.constants)": [[194, "pwtools.constants.eV_by_Ang3_to_GPa", false]], "ev_by_ang3_to_gpa (in module pwtools.eos)": [[545, "pwtools.eos.eV_by_Ang3_to_GPa", false]], "ev_by_ang3_to_gpa (in module pwtools.thermo)": [[1397, "pwtools.thermo.eV_by_Ang3_to_GPa", false]], "ev_by_ang3_to_pa (in module pwtools.constants)": [[195, "pwtools.constants.eV_by_Ang3_to_Pa", false]], "evaluate() (pwtools.eos.evfunction method)": [[468, "pwtools.eos.EVFunction.evaluate", false]], "evaluate() (pwtools.eos.vinet method)": [[538, "pwtools.eos.Vinet.evaluate", false]], "evfunction (class in pwtools.eos)": [[465, "pwtools.eos.EVFunction", false]], "evib() (pwtools.thermo.harmonicthermo method)": [[1384, "pwtools.thermo.HarmonicThermo.evib", false]], "execute() (pwtools.sql.sqlitedb method)": [[1348, "pwtools.sql.SQLiteDB.execute", false]], "executemany() (pwtools.sql.sqlitedb method)": [[1349, "pwtools.sql.SQLiteDB.executemany", false]], "executescript() (pwtools.sql.sqlitedb method)": [[1350, "pwtools.sql.SQLiteDB.executescript", false]], "expansion() (in module pwtools.thermo)": [[1399, "pwtools.thermo.expansion", false]], "extend_array() (in module pwtools.num)": [[667, "pwtools.num.extend_array", false]], "externeos (class in pwtools.eos)": [[506, "pwtools.eos.ExternEOS", false]], "ezfft() (in module pwtools.signal)": [[1329, "pwtools.signal.ezfft", false]], "fakeaseatoms (class in pwtools.crys)": [[211, "pwtools.crys.FakeASEAtoms", false]], "fempty() (in module pwtools.num)": [[668, "pwtools.num.fempty", false]], "ffloat() (in module pwtools.common)": [[136, "pwtools.common.ffloat", false]], "fft_1d_loop() (in module pwtools.signal)": [[1330, "pwtools.signal.fft_1d_loop", false]], "fftsample() (in module pwtools.signal)": [[1331, "pwtools.signal.fftsample", false]], "fig_ax() (in module pwtools.mpl)": [[605, "pwtools.mpl.fig_ax", false]], "fig_ax3d() (in module pwtools.mpl)": [[606, "pwtools.mpl.fig_ax3d", false]], "file_read() (in module pwtools.common)": [[137, "pwtools.common.file_read", false]], "file_readlines() (in module pwtools.common)": [[138, "pwtools.common.file_readlines", false]], "file_template_replace() (in module pwtools.common)": [[139, "pwtools.common.file_template_replace", false]], "file_write() (in module pwtools.common)": [[140, "pwtools.common.file_write", false]], "fileiocalculator (class in pwtools.calculators)": [[103, "pwtools.calculators.FileIOCalculator", false]], "filetemplate (class in pwtools.batch)": [[90, "pwtools.batch.FileTemplate", false]], "fill_column() (pwtools.sql.sqlitedb method)": [[1351, "pwtools.sql.SQLiteDB.fill_column", false]], "fill_infile_templ() (pwtools.calculators.calculatorbase method)": [[101, "pwtools.calculators.CalculatorBase.fill_infile_templ", false]], "fill_infile_templ() (pwtools.calculators.lammps method)": [[106, "pwtools.calculators.Lammps.fill_infile_templ", false]], "fill_infile_templ() (pwtools.calculators.pwscf method)": [[114, "pwtools.calculators.Pwscf.fill_infile_templ", false]], "find_exe() (in module pwtools.calculators)": [[121, "pwtools.calculators.find_exe", false]], "find_peaks() (in module pwtools.signal)": [[1332, "pwtools.signal.find_peaks", false]], "find_sqltype() (in module pwtools.sql)": [[1364, "pwtools.sql.find_sqltype", false]], "findmin() (in module pwtools.num)": [[669, "pwtools.num.findmin", false]], "findroot() (in module pwtools.num)": [[670, "pwtools.num.findroot", false]], "finish() (pwtools.sql.sqlitedb method)": [[1352, "pwtools.sql.SQLiteDB.finish", false]], "firfilter (class in pwtools.signal)": [[1325, "pwtools.signal.FIRFilter", false]], "fit() (pwtools.eos.elkeosfit method)": [[480, "pwtools.eos.ElkEOSFit.fit", false]], "fit() (pwtools.eos.eosfit method)": [[499, "pwtools.eos.EosFit.fit", false]], "fit() (pwtools.eos.externeos method)": [[515, "pwtools.eos.ExternEOS.fit", false]], "fit() (pwtools.rbf.core.rbf method)": [[1304, "pwtools.rbf.core.Rbf.fit", false]], "fit1d (class in pwtools.num)": [[643, "pwtools.num.Fit1D", false]], "fit_error() (pwtools.rbf.core.rbf method)": [[1305, "pwtools.rbf.core.Rbf.fit_error", false]], "fit_opt() (in module pwtools.rbf.hyperopt)": [[1323, "pwtools.rbf.hyperopt.fit_opt", false]], "fiterror (class in pwtools.rbf.hyperopt)": [[1318, "pwtools.rbf.hyperopt.FitError", false]], "fix_eps() (in module pwtools.common)": [[141, "pwtools.common.fix_eps", false]], "fix_sql_header() (in module pwtools.sql)": [[1365, "pwtools.sql.fix_sql_header", false]], "fix_sqltype() (in module pwtools.sql)": [[1366, "pwtools.sql.fix_sqltype", false]], "flags (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.flags", false], [62, "pwtools.atomic_data.flags", false]], "flat (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.flat", false], [62, "pwtools.atomic_data.flat", false]], "flatten() (in module pwtools.common)": [[142, "pwtools.common.flatten", false]], "flexiblegetters (class in pwtools.base)": [[67, "pwtools.base.FlexibleGetters", false]], "float_from_txt() (in module pwtools.parse)": [[1262, "pwtools.parse.float_from_txt", false]], "float_re (in module pwtools.regex)": [[1324, "pwtools.regex.float_re", false]], "fpj() (in module pwtools.common)": [[143, "pwtools.common.fpj", false]], "frac2cart (in module pwtools._flib)": [[48, "pwtools._flib.frac2cart", false]], "frac2cart_traj (in module pwtools._flib)": [[49, "pwtools._flib.frac2cart_traj", false]], "frepr() (in module pwtools.common)": [[144, "pwtools.common.frepr", false]], "fs (in module pwtools.constants)": [[197, "pwtools.constants.fs", false]], "fs (in module pwtools.parse)": [[1263, "pwtools.parse.fs", false]], "fullpath() (in module pwtools.common)": [[145, "pwtools.common.fullpath", false]], "fullpathjoin() (in module pwtools.common)": [[146, "pwtools.common.fullpathjoin", false]], "fvacf() (in module pwtools.pydos)": [[1290, "pwtools.pydos.fvacf", false]], "fvib() (pwtools.thermo.harmonicthermo method)": [[1385, "pwtools.thermo.HarmonicThermo.fvib", false]], "gauss() (in module pwtools.signal)": [[1333, "pwtools.signal.gauss", false]], "get_2d_testdata() (in module pwtools.mpl)": [[607, "pwtools.mpl.get_2d_testdata", false]], "get_alat() (pwtools.parse.pwmdoutputfile method)": [[1090, "pwtools.parse.PwMDOutputFile.get_alat", false]], "get_alat() (pwtools.parse.pwscfoutputfile method)": [[1134, "pwtools.parse.PwSCFOutputFile.get_alat", false]], "get_alat() (pwtools.parse.pwvcmdoutputfile method)": [[1170, "pwtools.parse.PwVCMDOutputFile.get_alat", false]], "get_array() (pwtools.sql.sqlitedb method)": [[1353, "pwtools.sql.SQLiteDB.get_array", false]], "get_array1d() (pwtools.sql.sqlitedb method)": [[1354, "pwtools.sql.SQLiteDB.get_array1d", false]], "get_ase_atoms() (pwtools.crys.fakeaseatoms method)": [[222, "pwtools.crys.FakeASEAtoms.get_ase_atoms", false]], "get_ase_atoms() (pwtools.crys.structure method)": [[280, "pwtools.crys.Structure.get_ase_atoms", false]], "get_ase_atoms() (pwtools.crys.trajectory method)": [[337, "pwtools.crys.Trajectory.get_ase_atoms", false]], "get_atomic_numbers() (pwtools.crys.fakeaseatoms method)": [[223, "pwtools.crys.FakeASEAtoms.get_atomic_numbers", false]], "get_cell() (pwtools.crys.fakeaseatoms method)": [[224, "pwtools.crys.FakeASEAtoms.get_cell", false]], "get_cell() (pwtools.crys.structure method)": [[281, "pwtools.crys.Structure.get_cell", false]], "get_cell() (pwtools.crys.trajectory method)": [[338, "pwtools.crys.Trajectory.get_cell", false]], "get_cell() (pwtools.parse.cp2kdcdmdoutputfile method)": [[736, "pwtools.parse.Cp2kDcdMDOutputFile.get_cell", false]], "get_cell() (pwtools.parse.cp2kmdoutputfile method)": [[778, "pwtools.parse.Cp2kMDOutputFile.get_cell", false]], "get_cell() (pwtools.parse.cp2krelaxoutputfile method)": [[818, "pwtools.parse.Cp2kRelaxOutputFile.get_cell", false]], "get_cell() (pwtools.parse.cpmdmdoutputfile method)": [[888, "pwtools.parse.CpmdMDOutputFile.get_cell", false]], "get_cell() (pwtools.parse.cpmdscfoutputfile method)": [[936, "pwtools.parse.CpmdSCFOutputFile.get_cell", false]], "get_cell() (pwtools.parse.dcdoutputfile method)": [[962, "pwtools.parse.DcdOutputFile.get_cell", false]], "get_cell() (pwtools.parse.lammpsdcdmdoutputfile method)": [[979, "pwtools.parse.LammpsDcdMDOutputFile.get_cell", false]], "get_cell() (pwtools.parse.lammpstextmdoutputfile method)": [[1021, "pwtools.parse.LammpsTextMDOutputFile.get_cell", false]], "get_cell() (pwtools.parse.pwmdoutputfile method)": [[1091, "pwtools.parse.PwMDOutputFile.get_cell", false]], "get_cell() (pwtools.parse.pwscfoutputfile method)": [[1135, "pwtools.parse.PwSCFOutputFile.get_cell", false]], "get_cell() (pwtools.parse.pwvcmdoutputfile method)": [[1171, "pwtools.parse.PwVCMDOutputFile.get_cell", false]], "get_cell_unit() (pwtools.parse.pwmdoutputfile method)": [[1092, "pwtools.parse.PwMDOutputFile.get_cell_unit", false]], "get_cell_unit() (pwtools.parse.pwvcmdoutputfile method)": [[1172, "pwtools.parse.PwVCMDOutputFile.get_cell_unit", false]], "get_cont() (pwtools.parse.ciffile method)": [[707, "pwtools.parse.CifFile.get_cont", false]], "get_cont() (pwtools.parse.cp2kdcdmdoutputfile method)": [[737, "pwtools.parse.Cp2kDcdMDOutputFile.get_cont", false]], "get_cont() (pwtools.parse.cp2kmdoutputfile method)": [[779, "pwtools.parse.Cp2kMDOutputFile.get_cont", false]], "get_cont() (pwtools.parse.cp2krelaxoutputfile method)": [[819, "pwtools.parse.Cp2kRelaxOutputFile.get_cont", false]], "get_cont() (pwtools.parse.cp2kscfoutputfile method)": [[858, "pwtools.parse.Cp2kSCFOutputFile.get_cont", false]], "get_cont() (pwtools.parse.cpmdmdoutputfile method)": [[889, "pwtools.parse.CpmdMDOutputFile.get_cont", false]], "get_cont() (pwtools.parse.cpmdscfoutputfile method)": [[937, "pwtools.parse.CpmdSCFOutputFile.get_cont", false]], "get_cont() (pwtools.parse.lammpsdcdmdoutputfile method)": [[980, "pwtools.parse.LammpsDcdMDOutputFile.get_cont", false]], "get_cont() (pwtools.parse.lammpstextmdoutputfile method)": [[1022, "pwtools.parse.LammpsTextMDOutputFile.get_cont", false]], "get_cont() (pwtools.parse.pdbfile method)": [[1062, "pwtools.parse.PDBFile.get_cont", false]], "get_cont() (pwtools.parse.pwmdoutputfile method)": [[1093, "pwtools.parse.PwMDOutputFile.get_cont", false]], "get_cont() (pwtools.parse.pwscfoutputfile method)": [[1136, "pwtools.parse.PwSCFOutputFile.get_cont", false]], "get_cont() (pwtools.parse.pwvcmdoutputfile method)": [[1173, "pwtools.parse.PwVCMDOutputFile.get_cont", false]], "get_cont() (pwtools.parse.structurefileparser method)": [[1216, "pwtools.parse.StructureFileParser.get_cont", false]], "get_cont() (pwtools.parse.trajectoryfileparser method)": [[1241, "pwtools.parse.TrajectoryFileParser.get_cont", false]], "get_coords() (pwtools.crys.fakeaseatoms method)": [[225, "pwtools.crys.FakeASEAtoms.get_coords", false]], "get_coords() (pwtools.crys.structure method)": [[282, "pwtools.crys.Structure.get_coords", false]], "get_coords() (pwtools.crys.trajectory method)": [[339, "pwtools.crys.Trajectory.get_coords", false]], "get_coords() (pwtools.parse.ciffile method)": [[708, "pwtools.parse.CifFile.get_coords", false]], "get_coords() (pwtools.parse.cp2kdcdmdoutputfile method)": [[738, "pwtools.parse.Cp2kDcdMDOutputFile.get_coords", false]], "get_coords() (pwtools.parse.cp2kmdoutputfile method)": [[780, "pwtools.parse.Cp2kMDOutputFile.get_coords", false]], "get_coords() (pwtools.parse.cp2krelaxoutputfile method)": [[820, "pwtools.parse.Cp2kRelaxOutputFile.get_coords", false]], "get_coords() (pwtools.parse.cpmdmdoutputfile method)": [[890, "pwtools.parse.CpmdMDOutputFile.get_coords", false]], "get_coords() (pwtools.parse.dcdoutputfile method)": [[963, "pwtools.parse.DcdOutputFile.get_coords", false]], "get_coords() (pwtools.parse.lammpsdcdmdoutputfile method)": [[981, "pwtools.parse.LammpsDcdMDOutputFile.get_coords", false]], "get_coords() (pwtools.parse.lammpstextmdoutputfile method)": [[1023, "pwtools.parse.LammpsTextMDOutputFile.get_coords", false]], "get_coords() (pwtools.parse.pdbfile method)": [[1063, "pwtools.parse.PDBFile.get_coords", false]], "get_coords() (pwtools.parse.pwmdoutputfile method)": [[1094, "pwtools.parse.PwMDOutputFile.get_coords", false]], "get_coords() (pwtools.parse.pwscfoutputfile method)": [[1137, "pwtools.parse.PwSCFOutputFile.get_coords", false]], "get_coords() (pwtools.parse.pwvcmdoutputfile method)": [[1174, "pwtools.parse.PwVCMDOutputFile.get_coords", false]], "get_coords_frac() (pwtools.crys.fakeaseatoms method)": [[226, "pwtools.crys.FakeASEAtoms.get_coords_frac", false]], "get_coords_frac() (pwtools.crys.structure method)": [[283, "pwtools.crys.Structure.get_coords_frac", false]], "get_coords_frac() (pwtools.crys.trajectory method)": [[340, "pwtools.crys.Trajectory.get_coords_frac", false]], "get_coords_frac() (pwtools.parse.ciffile method)": [[709, "pwtools.parse.CifFile.get_coords_frac", false]], "get_coords_frac() (pwtools.parse.cpmdmdoutputfile method)": [[891, "pwtools.parse.CpmdMDOutputFile.get_coords_frac", false]], "get_coords_frac() (pwtools.parse.cpmdscfoutputfile method)": [[938, "pwtools.parse.CpmdSCFOutputFile.get_coords_frac", false]], "get_coords_frac() (pwtools.parse.lammpsdcdmdoutputfile method)": [[982, "pwtools.parse.LammpsDcdMDOutputFile.get_coords_frac", false]], "get_coords_frac() (pwtools.parse.lammpstextmdoutputfile method)": [[1024, "pwtools.parse.LammpsTextMDOutputFile.get_coords_frac", false]], "get_coords_frac() (pwtools.parse.pwmdoutputfile method)": [[1095, "pwtools.parse.PwMDOutputFile.get_coords_frac", false]], "get_coords_frac() (pwtools.parse.pwvcmdoutputfile method)": [[1175, "pwtools.parse.PwVCMDOutputFile.get_coords_frac", false]], "get_coords_unit() (pwtools.parse.pwmdoutputfile method)": [[1096, "pwtools.parse.PwMDOutputFile.get_coords_unit", false]], "get_coords_unit() (pwtools.parse.pwvcmdoutputfile method)": [[1176, "pwtools.parse.PwVCMDOutputFile.get_coords_unit", false]], "get_cryst_const() (pwtools.crys.fakeaseatoms method)": [[227, "pwtools.crys.FakeASEAtoms.get_cryst_const", false]], "get_cryst_const() (pwtools.crys.structure method)": [[284, "pwtools.crys.Structure.get_cryst_const", false]], "get_cryst_const() (pwtools.crys.trajectory method)": [[341, "pwtools.crys.Trajectory.get_cryst_const", false]], "get_cryst_const() (pwtools.parse.ciffile method)": [[710, "pwtools.parse.CifFile.get_cryst_const", false]], "get_cryst_const() (pwtools.parse.cp2kdcdmdoutputfile method)": [[739, "pwtools.parse.Cp2kDcdMDOutputFile.get_cryst_const", false]], "get_cryst_const() (pwtools.parse.dcdoutputfile method)": [[964, "pwtools.parse.DcdOutputFile.get_cryst_const", false]], "get_cryst_const() (pwtools.parse.lammpsdcdmdoutputfile method)": [[983, "pwtools.parse.LammpsDcdMDOutputFile.get_cryst_const", false]], "get_cryst_const() (pwtools.parse.lammpstextmdoutputfile method)": [[1025, "pwtools.parse.LammpsTextMDOutputFile.get_cryst_const", false]], "get_cryst_const() (pwtools.parse.pdbfile method)": [[1064, "pwtools.parse.PDBFile.get_cryst_const", false]], "get_dcd_file_info (in module pwtools._dcd)": [[36, "pwtools._dcd.get_dcd_file_info", false]], "get_dict() (pwtools.sql.sqlitedb method)": [[1355, "pwtools.sql.SQLiteDB.get_dict", false]], "get_distsq() (pwtools.rbf.core.rbf method)": [[1306, "pwtools.rbf.core.Rbf.get_distsq", false]], "get_econst() (pwtools.parse.cp2kdcdmdoutputfile method)": [[740, "pwtools.parse.Cp2kDcdMDOutputFile.get_econst", false]], "get_econst() (pwtools.parse.cp2kmdoutputfile method)": [[781, "pwtools.parse.Cp2kMDOutputFile.get_econst", false]], "get_econst() (pwtools.parse.cp2krelaxoutputfile method)": [[821, "pwtools.parse.Cp2kRelaxOutputFile.get_econst", false]], "get_econst() (pwtools.parse.cpmdmdoutputfile method)": [[892, "pwtools.parse.CpmdMDOutputFile.get_econst", false]], "get_econst() (pwtools.parse.pwvcmdoutputfile method)": [[1177, "pwtools.parse.PwVCMDOutputFile.get_econst", false]], "get_ekin() (pwtools.crys.fakeaseatoms method)": [[228, "pwtools.crys.FakeASEAtoms.get_ekin", false]], "get_ekin() (pwtools.crys.structure method)": [[285, "pwtools.crys.Structure.get_ekin", false]], "get_ekin() (pwtools.crys.trajectory method)": [[342, "pwtools.crys.Trajectory.get_ekin", false]], "get_ekin() (pwtools.parse.cp2kdcdmdoutputfile method)": [[741, "pwtools.parse.Cp2kDcdMDOutputFile.get_ekin", false]], "get_ekin() (pwtools.parse.cp2kmdoutputfile method)": [[782, "pwtools.parse.Cp2kMDOutputFile.get_ekin", false]], "get_ekin() (pwtools.parse.cp2krelaxoutputfile method)": [[822, "pwtools.parse.Cp2kRelaxOutputFile.get_ekin", false]], "get_ekin() (pwtools.parse.cpmdmdoutputfile method)": [[893, "pwtools.parse.CpmdMDOutputFile.get_ekin", false]], "get_ekin() (pwtools.parse.lammpsdcdmdoutputfile method)": [[984, "pwtools.parse.LammpsDcdMDOutputFile.get_ekin", false]], "get_ekin() (pwtools.parse.lammpstextmdoutputfile method)": [[1026, "pwtools.parse.LammpsTextMDOutputFile.get_ekin", false]], "get_ekin() (pwtools.parse.pwmdoutputfile method)": [[1097, "pwtools.parse.PwMDOutputFile.get_ekin", false]], "get_ekin() (pwtools.parse.pwvcmdoutputfile method)": [[1178, "pwtools.parse.PwVCMDOutputFile.get_ekin", false]], "get_ekin_cell() (pwtools.parse.cpmdmdoutputfile method)": [[894, "pwtools.parse.CpmdMDOutputFile.get_ekin_cell", false]], "get_ekin_elec() (pwtools.parse.cpmdmdoutputfile method)": [[895, "pwtools.parse.CpmdMDOutputFile.get_ekin_elec", false]], "get_ekinc() (pwtools.parse.cpmdmdoutputfile method)": [[896, "pwtools.parse.CpmdMDOutputFile.get_ekinc", false]], "get_ekinh() (pwtools.parse.cpmdmdoutputfile method)": [[897, "pwtools.parse.CpmdMDOutputFile.get_ekinh", false]], "get_etot() (pwtools.crys.fakeaseatoms method)": [[229, "pwtools.crys.FakeASEAtoms.get_etot", false]], "get_etot() (pwtools.crys.structure method)": [[286, "pwtools.crys.Structure.get_etot", false]], "get_etot() (pwtools.crys.trajectory method)": [[343, "pwtools.crys.Trajectory.get_etot", false]], "get_etot() (pwtools.parse.cp2kdcdmdoutputfile method)": [[742, "pwtools.parse.Cp2kDcdMDOutputFile.get_etot", false]], "get_etot() (pwtools.parse.cp2kmdoutputfile method)": [[783, "pwtools.parse.Cp2kMDOutputFile.get_etot", false]], "get_etot() (pwtools.parse.cp2krelaxoutputfile method)": [[823, "pwtools.parse.Cp2kRelaxOutputFile.get_etot", false]], "get_etot() (pwtools.parse.cp2kscfoutputfile method)": [[859, "pwtools.parse.Cp2kSCFOutputFile.get_etot", false]], "get_etot() (pwtools.parse.cpmdmdoutputfile method)": [[898, "pwtools.parse.CpmdMDOutputFile.get_etot", false]], "get_etot() (pwtools.parse.cpmdscfoutputfile method)": [[939, "pwtools.parse.CpmdSCFOutputFile.get_etot", false]], "get_etot() (pwtools.parse.lammpsdcdmdoutputfile method)": [[985, "pwtools.parse.LammpsDcdMDOutputFile.get_etot", false]], "get_etot() (pwtools.parse.lammpstextmdoutputfile method)": [[1027, "pwtools.parse.LammpsTextMDOutputFile.get_etot", false]], "get_etot() (pwtools.parse.pwmdoutputfile method)": [[1098, "pwtools.parse.PwMDOutputFile.get_etot", false]], "get_etot() (pwtools.parse.pwscfoutputfile method)": [[1138, "pwtools.parse.PwSCFOutputFile.get_etot", false]], "get_etot() (pwtools.parse.pwvcmdoutputfile method)": [[1179, "pwtools.parse.PwVCMDOutputFile.get_etot", false]], "get_fake_ase_atoms() (pwtools.crys.fakeaseatoms method)": [[230, "pwtools.crys.FakeASEAtoms.get_fake_ase_atoms", false]], "get_fake_ase_atoms() (pwtools.crys.structure method)": [[287, "pwtools.crys.Structure.get_fake_ase_atoms", false]], "get_fake_ase_atoms() (pwtools.crys.trajectory method)": [[344, "pwtools.crys.Trajectory.get_fake_ase_atoms", false]], "get_filename() (in module pwtools.common)": [[147, "pwtools.common.get_filename", false]], "get_forces() (pwtools.crys.fakeaseatoms method)": [[231, "pwtools.crys.FakeASEAtoms.get_forces", false]], "get_forces() (pwtools.crys.structure method)": [[288, "pwtools.crys.Structure.get_forces", false]], "get_forces() (pwtools.crys.trajectory method)": [[345, "pwtools.crys.Trajectory.get_forces", false]], "get_forces() (pwtools.parse.cp2kdcdmdoutputfile method)": [[743, "pwtools.parse.Cp2kDcdMDOutputFile.get_forces", false]], "get_forces() (pwtools.parse.cp2kmdoutputfile method)": [[784, "pwtools.parse.Cp2kMDOutputFile.get_forces", false]], "get_forces() (pwtools.parse.cp2krelaxoutputfile method)": [[824, "pwtools.parse.Cp2kRelaxOutputFile.get_forces", false]], "get_forces() (pwtools.parse.cp2kscfoutputfile method)": [[860, "pwtools.parse.Cp2kSCFOutputFile.get_forces", false]], "get_forces() (pwtools.parse.cpmdmdoutputfile method)": [[899, "pwtools.parse.CpmdMDOutputFile.get_forces", false]], "get_forces() (pwtools.parse.cpmdscfoutputfile method)": [[940, "pwtools.parse.CpmdSCFOutputFile.get_forces", false]], "get_forces() (pwtools.parse.lammpsdcdmdoutputfile method)": [[986, "pwtools.parse.LammpsDcdMDOutputFile.get_forces", false]], "get_forces() (pwtools.parse.lammpstextmdoutputfile method)": [[1028, "pwtools.parse.LammpsTextMDOutputFile.get_forces", false]], "get_forces() (pwtools.parse.pwmdoutputfile method)": [[1099, "pwtools.parse.PwMDOutputFile.get_forces", false]], "get_forces() (pwtools.parse.pwscfoutputfile method)": [[1139, "pwtools.parse.PwSCFOutputFile.get_forces", false]], "get_forces() (pwtools.parse.pwvcmdoutputfile method)": [[1180, "pwtools.parse.PwVCMDOutputFile.get_forces", false]], "get_header() (pwtools.sql.sqlitedb method)": [[1356, "pwtools.sql.SQLiteDB.get_header", false]], "get_jobfile_basename() (pwtools.batch.machine method)": [[94, "pwtools.batch.Machine.get_jobfile_basename", false]], "get_list1d() (pwtools.sql.sqlitedb method)": [[1357, "pwtools.sql.SQLiteDB.get_list1d", false]], "get_magnetic_moments() (pwtools.crys.fakeaseatoms method)": [[232, "pwtools.crys.FakeASEAtoms.get_magnetic_moments", false]], "get_mass() (pwtools.crys.fakeaseatoms method)": [[233, "pwtools.crys.FakeASEAtoms.get_mass", false]], "get_mass() (pwtools.crys.structure method)": [[289, "pwtools.crys.Structure.get_mass", false]], "get_mass() (pwtools.crys.trajectory method)": [[346, "pwtools.crys.Trajectory.get_mass", false]], "get_mass_unique() (pwtools.crys.fakeaseatoms method)": [[234, "pwtools.crys.FakeASEAtoms.get_mass_unique", false]], "get_mass_unique() (pwtools.crys.structure method)": [[290, "pwtools.crys.Structure.get_mass_unique", false]], "get_mass_unique() (pwtools.crys.trajectory method)": [[347, "pwtools.crys.Trajectory.get_mass_unique", false]], "get_max() (pwtools.eos.eosfit method)": [[500, "pwtools.eos.EosFit.get_max", false]], "get_max() (pwtools.num.fit1d method)": [[644, "pwtools.num.Fit1D.get_max", false]], "get_max() (pwtools.num.polyfit1d method)": [[653, "pwtools.num.PolyFit1D.get_max", false]], "get_max() (pwtools.num.spline method)": [[658, "pwtools.num.Spline.get_max", false]], "get_max_rowid() (pwtools.sql.sqlitedb method)": [[1358, "pwtools.sql.SQLiteDB.get_max_rowid", false]], "get_min() (pwtools.eos.elkeosfit method)": [[481, "pwtools.eos.ElkEOSFit.get_min", false]], "get_min() (pwtools.eos.eosfit method)": [[501, "pwtools.eos.EosFit.get_min", false]], "get_min() (pwtools.eos.evfunction method)": [[469, "pwtools.eos.EVFunction.get_min", false]], "get_min() (pwtools.eos.externeos method)": [[516, "pwtools.eos.ExternEOS.get_min", false]], "get_min() (pwtools.eos.vinet method)": [[539, "pwtools.eos.Vinet.get_min", false]], "get_min() (pwtools.num.fit1d method)": [[645, "pwtools.num.Fit1D.get_min", false]], "get_min() (pwtools.num.interpol2d method)": [[649, "pwtools.num.Interpol2D.get_min", false]], "get_min() (pwtools.num.polyfit method)": [[651, "pwtools.num.PolyFit.get_min", false]], "get_min() (pwtools.num.polyfit1d method)": [[654, "pwtools.num.PolyFit1D.get_min", false]], "get_min() (pwtools.num.spline method)": [[659, "pwtools.num.Spline.get_min", false]], "get_natoms() (pwtools.crys.fakeaseatoms method)": [[235, "pwtools.crys.FakeASEAtoms.get_natoms", false]], "get_natoms() (pwtools.crys.structure method)": [[291, "pwtools.crys.Structure.get_natoms", false]], "get_natoms() (pwtools.crys.trajectory method)": [[348, "pwtools.crys.Trajectory.get_natoms", false]], "get_natoms() (pwtools.parse.cp2kdcdmdoutputfile method)": [[744, "pwtools.parse.Cp2kDcdMDOutputFile.get_natoms", false]], "get_natoms() (pwtools.parse.cp2kmdoutputfile method)": [[785, "pwtools.parse.Cp2kMDOutputFile.get_natoms", false]], "get_natoms() (pwtools.parse.cp2krelaxoutputfile method)": [[825, "pwtools.parse.Cp2kRelaxOutputFile.get_natoms", false]], "get_natoms() (pwtools.parse.cp2kscfoutputfile method)": [[861, "pwtools.parse.Cp2kSCFOutputFile.get_natoms", false]], "get_natoms() (pwtools.parse.cpmdmdoutputfile method)": [[900, "pwtools.parse.CpmdMDOutputFile.get_natoms", false]], "get_natoms() (pwtools.parse.cpmdscfoutputfile method)": [[941, "pwtools.parse.CpmdSCFOutputFile.get_natoms", false]], "get_natoms() (pwtools.parse.dcdoutputfile method)": [[965, "pwtools.parse.DcdOutputFile.get_natoms", false]], "get_natoms() (pwtools.parse.lammpsdcdmdoutputfile method)": [[987, "pwtools.parse.LammpsDcdMDOutputFile.get_natoms", false]], "get_natoms() (pwtools.parse.lammpstextmdoutputfile method)": [[1029, "pwtools.parse.LammpsTextMDOutputFile.get_natoms", false]], "get_natoms() (pwtools.parse.pwmdoutputfile method)": [[1100, "pwtools.parse.PwMDOutputFile.get_natoms", false]], "get_natoms() (pwtools.parse.pwscfoutputfile method)": [[1140, "pwtools.parse.PwSCFOutputFile.get_natoms", false]], "get_natoms() (pwtools.parse.pwvcmdoutputfile method)": [[1181, "pwtools.parse.PwVCMDOutputFile.get_natoms", false]], "get_nkpoints() (pwtools.parse.cpmdmdoutputfile method)": [[901, "pwtools.parse.CpmdMDOutputFile.get_nkpoints", false]], "get_nkpoints() (pwtools.parse.cpmdscfoutputfile method)": [[942, "pwtools.parse.CpmdSCFOutputFile.get_nkpoints", false]], "get_nkpoints() (pwtools.parse.pwmdoutputfile method)": [[1101, "pwtools.parse.PwMDOutputFile.get_nkpoints", false]], "get_nkpoints() (pwtools.parse.pwscfoutputfile method)": [[1141, "pwtools.parse.PwSCFOutputFile.get_nkpoints", false]], "get_nkpoints() (pwtools.parse.pwvcmdoutputfile method)": [[1182, "pwtools.parse.PwVCMDOutputFile.get_nkpoints", false]], "get_nspecies() (pwtools.crys.fakeaseatoms method)": [[236, "pwtools.crys.FakeASEAtoms.get_nspecies", false]], "get_nspecies() (pwtools.crys.structure method)": [[292, "pwtools.crys.Structure.get_nspecies", false]], "get_nspecies() (pwtools.crys.trajectory method)": [[349, "pwtools.crys.Trajectory.get_nspecies", false]], "get_nstep() (pwtools.crys.fakeaseatoms method)": [[237, "pwtools.crys.FakeASEAtoms.get_nstep", false]], "get_nstep() (pwtools.crys.structure method)": [[293, "pwtools.crys.Structure.get_nstep", false]], "get_nstep() (pwtools.crys.trajectory method)": [[350, "pwtools.crys.Trajectory.get_nstep", false]], "get_nstep() (pwtools.parse.cp2kdcdmdoutputfile method)": [[745, "pwtools.parse.Cp2kDcdMDOutputFile.get_nstep", false]], "get_nstep() (pwtools.parse.dcdoutputfile method)": [[966, "pwtools.parse.DcdOutputFile.get_nstep", false]], "get_nstep() (pwtools.parse.lammpsdcdmdoutputfile method)": [[988, "pwtools.parse.LammpsDcdMDOutputFile.get_nstep", false]], "get_nstep_scf() (pwtools.parse.cpmdmdoutputfile method)": [[902, "pwtools.parse.CpmdMDOutputFile.get_nstep_scf", false]], "get_nstep_scf() (pwtools.parse.cpmdscfoutputfile method)": [[943, "pwtools.parse.CpmdSCFOutputFile.get_nstep_scf", false]], "get_nstep_scf() (pwtools.parse.pwmdoutputfile method)": [[1102, "pwtools.parse.PwMDOutputFile.get_nstep_scf", false]], "get_nstep_scf() (pwtools.parse.pwscfoutputfile method)": [[1142, "pwtools.parse.PwSCFOutputFile.get_nstep_scf", false]], "get_nstep_scf() (pwtools.parse.pwvcmdoutputfile method)": [[1183, "pwtools.parse.PwVCMDOutputFile.get_nstep_scf", false]], "get_ntypat() (pwtools.crys.fakeaseatoms method)": [[238, "pwtools.crys.FakeASEAtoms.get_ntypat", false]], "get_ntypat() (pwtools.crys.structure method)": [[294, "pwtools.crys.Structure.get_ntypat", false]], "get_ntypat() (pwtools.crys.trajectory method)": [[351, "pwtools.crys.Trajectory.get_ntypat", false]], "get_order() (pwtools.crys.fakeaseatoms method)": [[239, "pwtools.crys.FakeASEAtoms.get_order", false]], "get_order() (pwtools.crys.structure method)": [[295, "pwtools.crys.Structure.get_order", false]], "get_order() (pwtools.crys.trajectory method)": [[352, "pwtools.crys.Trajectory.get_order", false]], "get_params() (pwtools.rbf.core.rbf method)": [[1307, "pwtools.rbf.core.Rbf.get_params", false]], "get_path_norm() (in module pwtools.kpath)": [[573, "pwtools.kpath.get_path_norm", false]], "get_pressure() (pwtools.crys.fakeaseatoms method)": [[240, "pwtools.crys.FakeASEAtoms.get_pressure", false]], "get_pressure() (pwtools.crys.structure method)": [[296, "pwtools.crys.Structure.get_pressure", false]], "get_pressure() (pwtools.crys.trajectory method)": [[353, "pwtools.crys.Trajectory.get_pressure", false]], "get_random_cryst_const() (pwtools.random.randomstructure method)": [[1295, "pwtools.random.RandomStructure.get_random_cryst_const", false]], "get_random_struct() (pwtools.random.randomstructure method)": [[1296, "pwtools.random.RandomStructure.get_random_struct", false]], "get_return_attr() (pwtools.base.flexiblegetters method)": [[75, "pwtools.base.FlexibleGetters.get_return_attr", false]], "get_return_attr() (pwtools.crys.fakeaseatoms method)": [[241, "pwtools.crys.FakeASEAtoms.get_return_attr", false]], "get_return_attr() (pwtools.crys.structure method)": [[297, "pwtools.crys.Structure.get_return_attr", false]], "get_return_attr() (pwtools.crys.trajectory method)": [[354, "pwtools.crys.Trajectory.get_return_attr", false]], "get_return_attr() (pwtools.crys.unitshandler method)": [[391, "pwtools.crys.UnitsHandler.get_return_attr", false]], "get_return_attr() (pwtools.eos.elkeosfit method)": [[482, "pwtools.eos.ElkEOSFit.get_return_attr", false]], "get_return_attr() (pwtools.eos.externeos method)": [[517, "pwtools.eos.ExternEOS.get_return_attr", false]], "get_return_attr() (pwtools.parse.ciffile method)": [[711, "pwtools.parse.CifFile.get_return_attr", false]], "get_return_attr() (pwtools.parse.cp2kdcdmdoutputfile method)": [[746, "pwtools.parse.Cp2kDcdMDOutputFile.get_return_attr", false]], "get_return_attr() (pwtools.parse.cp2kmdoutputfile method)": [[786, "pwtools.parse.Cp2kMDOutputFile.get_return_attr", false]], "get_return_attr() (pwtools.parse.cp2krelaxoutputfile method)": [[826, "pwtools.parse.Cp2kRelaxOutputFile.get_return_attr", false]], "get_return_attr() (pwtools.parse.cp2kscfoutputfile method)": [[862, "pwtools.parse.Cp2kSCFOutputFile.get_return_attr", false]], "get_return_attr() (pwtools.parse.cpmdmdoutputfile method)": [[903, "pwtools.parse.CpmdMDOutputFile.get_return_attr", false]], "get_return_attr() (pwtools.parse.cpmdscfoutputfile method)": [[944, "pwtools.parse.CpmdSCFOutputFile.get_return_attr", false]], "get_return_attr() (pwtools.parse.lammpsdcdmdoutputfile method)": [[989, "pwtools.parse.LammpsDcdMDOutputFile.get_return_attr", false]], "get_return_attr() (pwtools.parse.lammpstextmdoutputfile method)": [[1030, "pwtools.parse.LammpsTextMDOutputFile.get_return_attr", false]], "get_return_attr() (pwtools.parse.pdbfile method)": [[1065, "pwtools.parse.PDBFile.get_return_attr", false]], "get_return_attr() (pwtools.parse.pwmdoutputfile method)": [[1103, "pwtools.parse.PwMDOutputFile.get_return_attr", false]], "get_return_attr() (pwtools.parse.pwscfoutputfile method)": [[1143, "pwtools.parse.PwSCFOutputFile.get_return_attr", false]], "get_return_attr() (pwtools.parse.pwvcmdoutputfile method)": [[1184, "pwtools.parse.PwVCMDOutputFile.get_return_attr", false]], "get_return_attr() (pwtools.parse.structurefileparser method)": [[1217, "pwtools.parse.StructureFileParser.get_return_attr", false]], "get_return_attr() (pwtools.parse.trajectoryfileparser method)": [[1242, "pwtools.parse.TrajectoryFileParser.get_return_attr", false]], "get_root() (pwtools.eos.eosfit method)": [[502, "pwtools.eos.EosFit.get_root", false]], "get_root() (pwtools.num.fit1d method)": [[646, "pwtools.num.Fit1D.get_root", false]], "get_root() (pwtools.num.polyfit1d method)": [[655, "pwtools.num.PolyFit1D.get_root", false]], "get_root() (pwtools.num.spline method)": [[660, "pwtools.num.Spline.get_root", false]], "get_scf_converged() (pwtools.parse.cpmdmdoutputfile method)": [[904, "pwtools.parse.CpmdMDOutputFile.get_scf_converged", false]], "get_scf_converged() (pwtools.parse.cpmdscfoutputfile method)": [[945, "pwtools.parse.CpmdSCFOutputFile.get_scf_converged", false]], "get_scf_converged() (pwtools.parse.pwmdoutputfile method)": [[1104, "pwtools.parse.PwMDOutputFile.get_scf_converged", false]], "get_scf_converged() (pwtools.parse.pwscfoutputfile method)": [[1144, "pwtools.parse.PwSCFOutputFile.get_scf_converged", false]], "get_scf_converged() (pwtools.parse.pwvcmdoutputfile method)": [[1185, "pwtools.parse.PwVCMDOutputFile.get_scf_converged", false]], "get_single() (pwtools.sql.sqlitedb method)": [[1359, "pwtools.sql.SQLiteDB.get_single", false]], "get_spglib() (pwtools.crys.fakeaseatoms method)": [[242, "pwtools.crys.FakeASEAtoms.get_spglib", false]], "get_spglib() (pwtools.crys.structure method)": [[298, "pwtools.crys.Structure.get_spglib", false]], "get_spglib() (pwtools.crys.trajectory method)": [[355, "pwtools.crys.Trajectory.get_spglib", false]], "get_spl_bv() (pwtools.eos.elkeosfit method)": [[483, "pwtools.eos.ElkEOSFit.get_spl_bv", false]], "get_spl_bv() (pwtools.eos.externeos method)": [[518, "pwtools.eos.ExternEOS.get_spl_bv", false]], "get_spl_ev() (pwtools.eos.elkeosfit method)": [[484, "pwtools.eos.ElkEOSFit.get_spl_ev", false]], "get_spl_ev() (pwtools.eos.externeos method)": [[519, "pwtools.eos.ExternEOS.get_spl_ev", false]], "get_spl_pv() (pwtools.eos.elkeosfit method)": [[485, "pwtools.eos.ElkEOSFit.get_spl_pv", false]], "get_spl_pv() (pwtools.eos.externeos method)": [[520, "pwtools.eos.ExternEOS.get_spl_pv", false]], "get_sql_record() (pwtools.batch.calculation method)": [[87, "pwtools.batch.Calculation.get_sql_record", false]], "get_sql_record() (pwtools.batch.machine method)": [[95, "pwtools.batch.Machine.get_sql_record", false]], "get_stress() (pwtools.crys.fakeaseatoms method)": [[243, "pwtools.crys.FakeASEAtoms.get_stress", false]], "get_stress() (pwtools.crys.structure method)": [[299, "pwtools.crys.Structure.get_stress", false]], "get_stress() (pwtools.crys.trajectory method)": [[356, "pwtools.crys.Trajectory.get_stress", false]], "get_stress() (pwtools.parse.cp2kdcdmdoutputfile method)": [[747, "pwtools.parse.Cp2kDcdMDOutputFile.get_stress", false]], "get_stress() (pwtools.parse.cp2kmdoutputfile method)": [[787, "pwtools.parse.Cp2kMDOutputFile.get_stress", false]], "get_stress() (pwtools.parse.cp2krelaxoutputfile method)": [[827, "pwtools.parse.Cp2kRelaxOutputFile.get_stress", false]], "get_stress() (pwtools.parse.cp2kscfoutputfile method)": [[863, "pwtools.parse.Cp2kSCFOutputFile.get_stress", false]], "get_stress() (pwtools.parse.cpmdmdoutputfile method)": [[905, "pwtools.parse.CpmdMDOutputFile.get_stress", false]], "get_stress() (pwtools.parse.cpmdscfoutputfile method)": [[946, "pwtools.parse.CpmdSCFOutputFile.get_stress", false]], "get_stress() (pwtools.parse.lammpsdcdmdoutputfile method)": [[990, "pwtools.parse.LammpsDcdMDOutputFile.get_stress", false]], "get_stress() (pwtools.parse.lammpstextmdoutputfile method)": [[1031, "pwtools.parse.LammpsTextMDOutputFile.get_stress", false]], "get_stress() (pwtools.parse.pwmdoutputfile method)": [[1105, "pwtools.parse.PwMDOutputFile.get_stress", false]], "get_stress() (pwtools.parse.pwscfoutputfile method)": [[1145, "pwtools.parse.PwSCFOutputFile.get_stress", false]], "get_stress() (pwtools.parse.pwvcmdoutputfile method)": [[1186, "pwtools.parse.PwVCMDOutputFile.get_stress", false]], "get_struct() (pwtools.parse.ciffile method)": [[712, "pwtools.parse.CifFile.get_struct", false]], "get_struct() (pwtools.parse.cp2kdcdmdoutputfile method)": [[748, "pwtools.parse.Cp2kDcdMDOutputFile.get_struct", false]], "get_struct() (pwtools.parse.cp2kmdoutputfile method)": [[788, "pwtools.parse.Cp2kMDOutputFile.get_struct", false]], "get_struct() (pwtools.parse.cp2krelaxoutputfile method)": [[828, "pwtools.parse.Cp2kRelaxOutputFile.get_struct", false]], "get_struct() (pwtools.parse.cp2kscfoutputfile method)": [[864, "pwtools.parse.Cp2kSCFOutputFile.get_struct", false]], "get_struct() (pwtools.parse.cpmdmdoutputfile method)": [[906, "pwtools.parse.CpmdMDOutputFile.get_struct", false]], "get_struct() (pwtools.parse.cpmdscfoutputfile method)": [[947, "pwtools.parse.CpmdSCFOutputFile.get_struct", false]], "get_struct() (pwtools.parse.lammpsdcdmdoutputfile method)": [[991, "pwtools.parse.LammpsDcdMDOutputFile.get_struct", false]], "get_struct() (pwtools.parse.lammpstextmdoutputfile method)": [[1032, "pwtools.parse.LammpsTextMDOutputFile.get_struct", false]], "get_struct() (pwtools.parse.pdbfile method)": [[1066, "pwtools.parse.PDBFile.get_struct", false]], "get_struct() (pwtools.parse.pwmdoutputfile method)": [[1106, "pwtools.parse.PwMDOutputFile.get_struct", false]], "get_struct() (pwtools.parse.pwscfoutputfile method)": [[1146, "pwtools.parse.PwSCFOutputFile.get_struct", false]], "get_struct() (pwtools.parse.pwvcmdoutputfile method)": [[1187, "pwtools.parse.PwVCMDOutputFile.get_struct", false]], "get_struct() (pwtools.parse.structurefileparser method)": [[1218, "pwtools.parse.StructureFileParser.get_struct", false]], "get_struct() (pwtools.parse.trajectoryfileparser method)": [[1243, "pwtools.parse.TrajectoryFileParser.get_struct", false]], "get_symbols() (pwtools.crys.fakeaseatoms method)": [[244, "pwtools.crys.FakeASEAtoms.get_symbols", false]], "get_symbols() (pwtools.crys.structure method)": [[300, "pwtools.crys.Structure.get_symbols", false]], "get_symbols() (pwtools.crys.trajectory method)": [[357, "pwtools.crys.Trajectory.get_symbols", false]], "get_symbols() (pwtools.parse.ciffile method)": [[713, "pwtools.parse.CifFile.get_symbols", false]], "get_symbols() (pwtools.parse.cp2kdcdmdoutputfile method)": [[749, "pwtools.parse.Cp2kDcdMDOutputFile.get_symbols", false]], "get_symbols() (pwtools.parse.cp2kmdoutputfile method)": [[789, "pwtools.parse.Cp2kMDOutputFile.get_symbols", false]], "get_symbols() (pwtools.parse.cp2krelaxoutputfile method)": [[829, "pwtools.parse.Cp2kRelaxOutputFile.get_symbols", false]], "get_symbols() (pwtools.parse.cp2kscfoutputfile method)": [[865, "pwtools.parse.Cp2kSCFOutputFile.get_symbols", false]], "get_symbols() (pwtools.parse.cpmdmdoutputfile method)": [[907, "pwtools.parse.CpmdMDOutputFile.get_symbols", false]], "get_symbols() (pwtools.parse.cpmdscfoutputfile method)": [[948, "pwtools.parse.CpmdSCFOutputFile.get_symbols", false]], "get_symbols() (pwtools.parse.lammpsdcdmdoutputfile method)": [[992, "pwtools.parse.LammpsDcdMDOutputFile.get_symbols", false]], "get_symbols() (pwtools.parse.lammpstextmdoutputfile method)": [[1033, "pwtools.parse.LammpsTextMDOutputFile.get_symbols", false]], "get_symbols() (pwtools.parse.pdbfile method)": [[1067, "pwtools.parse.PDBFile.get_symbols", false]], "get_symbols() (pwtools.parse.pwmdoutputfile method)": [[1107, "pwtools.parse.PwMDOutputFile.get_symbols", false]], "get_symbols() (pwtools.parse.pwscfoutputfile method)": [[1147, "pwtools.parse.PwSCFOutputFile.get_symbols", false]], "get_symbols() (pwtools.parse.pwvcmdoutputfile method)": [[1188, "pwtools.parse.PwVCMDOutputFile.get_symbols", false]], "get_symbols_unique() (pwtools.crys.fakeaseatoms method)": [[245, "pwtools.crys.FakeASEAtoms.get_symbols_unique", false]], "get_symbols_unique() (pwtools.crys.structure method)": [[301, "pwtools.crys.Structure.get_symbols_unique", false]], "get_symbols_unique() (pwtools.crys.trajectory method)": [[358, "pwtools.crys.Trajectory.get_symbols_unique", false]], "get_table() (pwtools.sql.sqlitedb method)": [[1360, "pwtools.sql.SQLiteDB.get_table", false]], "get_temperature() (pwtools.crys.fakeaseatoms method)": [[246, "pwtools.crys.FakeASEAtoms.get_temperature", false]], "get_temperature() (pwtools.crys.structure method)": [[302, "pwtools.crys.Structure.get_temperature", false]], "get_temperature() (pwtools.crys.trajectory method)": [[359, "pwtools.crys.Trajectory.get_temperature", false]], "get_temperature() (pwtools.parse.cp2kdcdmdoutputfile method)": [[750, "pwtools.parse.Cp2kDcdMDOutputFile.get_temperature", false]], "get_temperature() (pwtools.parse.cp2kmdoutputfile method)": [[790, "pwtools.parse.Cp2kMDOutputFile.get_temperature", false]], "get_temperature() (pwtools.parse.cp2krelaxoutputfile method)": [[830, "pwtools.parse.Cp2kRelaxOutputFile.get_temperature", false]], "get_temperature() (pwtools.parse.cpmdmdoutputfile method)": [[908, "pwtools.parse.CpmdMDOutputFile.get_temperature", false]], "get_temperature() (pwtools.parse.lammpsdcdmdoutputfile method)": [[993, "pwtools.parse.LammpsDcdMDOutputFile.get_temperature", false]], "get_temperature() (pwtools.parse.lammpstextmdoutputfile method)": [[1034, "pwtools.parse.LammpsTextMDOutputFile.get_temperature", false]], "get_temperature() (pwtools.parse.pwmdoutputfile method)": [[1108, "pwtools.parse.PwMDOutputFile.get_temperature", false]], "get_temperature() (pwtools.parse.pwvcmdoutputfile method)": [[1189, "pwtools.parse.PwVCMDOutputFile.get_temperature", false]], "get_temperature_cell() (pwtools.parse.cpmdmdoutputfile method)": [[909, "pwtools.parse.CpmdMDOutputFile.get_temperature_cell", false]], "get_test_db() (in module pwtools.sql)": [[1367, "pwtools.sql.get_test_db", false]], "get_time() (pwtools.crys.fakeaseatoms method)": [[247, "pwtools.crys.FakeASEAtoms.get_time", false]], "get_time() (pwtools.crys.structure method)": [[303, "pwtools.crys.Structure.get_time", false]], "get_time() (pwtools.crys.trajectory method)": [[360, "pwtools.crys.Trajectory.get_time", false]], "get_timestep() (pwtools.crys.fakeaseatoms method)": [[248, "pwtools.crys.FakeASEAtoms.get_timestep", false]], "get_timestep() (pwtools.crys.structure method)": [[304, "pwtools.crys.Structure.get_timestep", false]], "get_timestep() (pwtools.crys.trajectory method)": [[361, "pwtools.crys.Trajectory.get_timestep", false]], "get_timestep() (pwtools.parse.cp2kdcdmdoutputfile method)": [[751, "pwtools.parse.Cp2kDcdMDOutputFile.get_timestep", false]], "get_timestep() (pwtools.parse.cp2kmdoutputfile method)": [[791, "pwtools.parse.Cp2kMDOutputFile.get_timestep", false]], "get_timestep() (pwtools.parse.cp2krelaxoutputfile method)": [[831, "pwtools.parse.Cp2kRelaxOutputFile.get_timestep", false]], "get_timestep() (pwtools.parse.cpmdmdoutputfile method)": [[910, "pwtools.parse.CpmdMDOutputFile.get_timestep", false]], "get_timestep() (pwtools.parse.lammpsdcdmdoutputfile method)": [[994, "pwtools.parse.LammpsDcdMDOutputFile.get_timestep", false]], "get_timestep() (pwtools.parse.lammpstextmdoutputfile method)": [[1035, "pwtools.parse.LammpsTextMDOutputFile.get_timestep", false]], "get_timestep() (pwtools.parse.pwmdoutputfile method)": [[1109, "pwtools.parse.PwMDOutputFile.get_timestep", false]], "get_timestep() (pwtools.parse.pwvcmdoutputfile method)": [[1190, "pwtools.parse.PwVCMDOutputFile.get_timestep", false]], "get_traj() (pwtools.crys.fakeaseatoms method)": [[249, "pwtools.crys.FakeASEAtoms.get_traj", false]], "get_traj() (pwtools.crys.structure method)": [[305, "pwtools.crys.Structure.get_traj", false]], "get_traj() (pwtools.crys.trajectory method)": [[362, "pwtools.crys.Trajectory.get_traj", false]], "get_traj() (pwtools.parse.cp2kdcdmdoutputfile method)": [[752, "pwtools.parse.Cp2kDcdMDOutputFile.get_traj", false]], "get_traj() (pwtools.parse.cp2kmdoutputfile method)": [[792, "pwtools.parse.Cp2kMDOutputFile.get_traj", false]], "get_traj() (pwtools.parse.cp2krelaxoutputfile method)": [[832, "pwtools.parse.Cp2kRelaxOutputFile.get_traj", false]], "get_traj() (pwtools.parse.cpmdmdoutputfile method)": [[911, "pwtools.parse.CpmdMDOutputFile.get_traj", false]], "get_traj() (pwtools.parse.lammpsdcdmdoutputfile method)": [[995, "pwtools.parse.LammpsDcdMDOutputFile.get_traj", false]], "get_traj() (pwtools.parse.lammpstextmdoutputfile method)": [[1036, "pwtools.parse.LammpsTextMDOutputFile.get_traj", false]], "get_traj() (pwtools.parse.pwmdoutputfile method)": [[1110, "pwtools.parse.PwMDOutputFile.get_traj", false]], "get_traj() (pwtools.parse.pwvcmdoutputfile method)": [[1191, "pwtools.parse.PwVCMDOutputFile.get_traj", false]], "get_traj() (pwtools.parse.trajectoryfileparser method)": [[1244, "pwtools.parse.TrajectoryFileParser.get_traj", false]], "get_typat() (pwtools.crys.fakeaseatoms method)": [[250, "pwtools.crys.FakeASEAtoms.get_typat", false]], "get_typat() (pwtools.crys.structure method)": [[306, "pwtools.crys.Structure.get_typat", false]], "get_typat() (pwtools.crys.trajectory method)": [[363, "pwtools.crys.Trajectory.get_typat", false]], "get_velocity() (pwtools.crys.fakeaseatoms method)": [[251, "pwtools.crys.FakeASEAtoms.get_velocity", false]], "get_velocity() (pwtools.crys.structure method)": [[307, "pwtools.crys.Structure.get_velocity", false]], "get_velocity() (pwtools.crys.trajectory method)": [[364, "pwtools.crys.Trajectory.get_velocity", false]], "get_velocity() (pwtools.parse.cp2kdcdmdoutputfile method)": [[753, "pwtools.parse.Cp2kDcdMDOutputFile.get_velocity", false]], "get_velocity() (pwtools.parse.cp2kmdoutputfile method)": [[793, "pwtools.parse.Cp2kMDOutputFile.get_velocity", false]], "get_velocity() (pwtools.parse.cp2krelaxoutputfile method)": [[833, "pwtools.parse.Cp2kRelaxOutputFile.get_velocity", false]], "get_velocity() (pwtools.parse.cpmdmdoutputfile method)": [[912, "pwtools.parse.CpmdMDOutputFile.get_velocity", false]], "get_velocity() (pwtools.parse.lammpsdcdmdoutputfile method)": [[996, "pwtools.parse.LammpsDcdMDOutputFile.get_velocity", false]], "get_velocity() (pwtools.parse.lammpstextmdoutputfile method)": [[1037, "pwtools.parse.LammpsTextMDOutputFile.get_velocity", false]], "get_volume() (pwtools.crys.fakeaseatoms method)": [[252, "pwtools.crys.FakeASEAtoms.get_volume", false]], "get_volume() (pwtools.crys.structure method)": [[308, "pwtools.crys.Structure.get_volume", false]], "get_volume() (pwtools.crys.trajectory method)": [[365, "pwtools.crys.Trajectory.get_volume", false]], "get_volume() (pwtools.parse.cp2kdcdmdoutputfile method)": [[754, "pwtools.parse.Cp2kDcdMDOutputFile.get_volume", false]], "get_volume() (pwtools.parse.cp2kmdoutputfile method)": [[794, "pwtools.parse.Cp2kMDOutputFile.get_volume", false]], "get_volume() (pwtools.parse.cp2krelaxoutputfile method)": [[834, "pwtools.parse.Cp2kRelaxOutputFile.get_volume", false]], "get_volume() (pwtools.parse.dcdoutputfile method)": [[967, "pwtools.parse.DcdOutputFile.get_volume", false]], "get_volume() (pwtools.parse.lammpsdcdmdoutputfile method)": [[997, "pwtools.parse.LammpsDcdMDOutputFile.get_volume", false]], "get_volume() (pwtools.parse.lammpstextmdoutputfile method)": [[1038, "pwtools.parse.LammpsTextMDOutputFile.get_volume", false]], "get_znucl() (pwtools.crys.fakeaseatoms method)": [[253, "pwtools.crys.FakeASEAtoms.get_znucl", false]], "get_znucl() (pwtools.crys.structure method)": [[309, "pwtools.crys.Structure.get_znucl", false]], "get_znucl() (pwtools.crys.trajectory method)": [[366, "pwtools.crys.Trajectory.get_znucl", false]], "get_znucl_unique() (pwtools.crys.fakeaseatoms method)": [[254, "pwtools.crys.FakeASEAtoms.get_znucl_unique", false]], "get_znucl_unique() (pwtools.crys.structure method)": [[310, "pwtools.crys.Structure.get_znucl_unique", false]], "get_znucl_unique() (pwtools.crys.trajectory method)": [[367, "pwtools.crys.Trajectory.get_znucl_unique", false]], "gibbs (class in pwtools.thermo)": [[1377, "pwtools.thermo.Gibbs", false]], "gpa (in module pwtools.constants)": [[171, "pwtools.constants.GPa", false]], "grid_in_cell() (in module pwtools.crys)": [[422, "pwtools.crys.grid_in_cell", false]], "h (in module pwtools.constants)": [[198, "pwtools.constants.h", false]], "ha (in module pwtools.constants)": [[172, "pwtools.constants.Ha", false]], "ha (in module pwtools.eos)": [[532, "pwtools.eos.Ha", false]], "ha (in module pwtools.io)": [[546, "pwtools.io.Ha", false]], "ha (in module pwtools.parse)": [[968, "pwtools.parse.Ha", false]], "ha_to_ev (in module pwtools.constants)": [[173, "pwtools.constants.Ha_to_eV", false]], "harmonicthermo (class in pwtools.thermo)": [[1382, "pwtools.thermo.HarmonicThermo", false]], "hartree (in module pwtools.constants)": [[174, "pwtools.constants.Hartree", false]], "has_column() (pwtools.sql.sqlitedb method)": [[1361, "pwtools.sql.SQLiteDB.has_column", false]], "has_table() (pwtools.sql.sqlitedb method)": [[1362, "pwtools.sql.SQLiteDB.has_table", false]], "hbar (in module pwtools.constants)": [[199, "pwtools.constants.hbar", false]], "header_comment (in module pwtools.arrayio)": [[53, "pwtools.arrayio.HEADER_COMMENT", false]], "header_dtype (in module pwtools.dcd)": [[454, "pwtools.dcd.HEADER_DTYPE", false]], "header_maxlines (in module pwtools.arrayio)": [[54, "pwtools.arrayio.HEADER_MAXLINES", false]], "header_types (in module pwtools.dcd)": [[455, "pwtools.dcd.HEADER_TYPES", false]], "hplanck (in module pwtools.constants)": [[200, "pwtools.constants.hplanck", false]], "hplanck (in module pwtools.thermo)": [[1400, "pwtools.thermo.hplanck", false]], "ibrav2cell() (in module pwtools.pwscf)": [[1275, "pwtools.pwscf.ibrav2cell", false]], "ic (in module pwtools.mpl)": [[608, "pwtools.mpl.ic", false]], "icl (in module pwtools.mpl)": [[609, "pwtools.mpl.icl", false]], "icm (in module pwtools.mpl)": [[610, "pwtools.mpl.icm", false]], "iflatten() (in module pwtools.common)": [[148, "pwtools.common.iflatten", false]], "ilc (in module pwtools.mpl)": [[611, "pwtools.mpl.ilc", false]], "im (in module pwtools.mpl)": [[612, "pwtools.mpl.im", false]], "imag (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.imag", false], [62, "pwtools.atomic_data.imag", false]], "imc (in module pwtools.mpl)": [[613, "pwtools.mpl.imc", false]], "implemented_properties (pwtools.calculators.lammps attribute)": [[107, "pwtools.calculators.Lammps.implemented_properties", false]], "implemented_properties (pwtools.calculators.pwscf attribute)": [[115, "pwtools.calculators.Pwscf.implemented_properties", false]], "infile_templ (pwtools.calculators.lammps attribute)": [[108, "pwtools.calculators.Lammps.infile_templ", false]], "infile_templ (pwtools.calculators.pwscf attribute)": [[116, "pwtools.calculators.Pwscf.infile_templ", false]], "init_attr_lst() (pwtools.base.flexiblegetters method)": [[76, "pwtools.base.FlexibleGetters.init_attr_lst", false]], "init_attr_lst() (pwtools.crys.fakeaseatoms method)": [[255, "pwtools.crys.FakeASEAtoms.init_attr_lst", false]], "init_attr_lst() (pwtools.crys.structure method)": [[311, "pwtools.crys.Structure.init_attr_lst", false]], "init_attr_lst() (pwtools.crys.trajectory method)": [[368, "pwtools.crys.Trajectory.init_attr_lst", false]], "init_attr_lst() (pwtools.crys.unitshandler method)": [[392, "pwtools.crys.UnitsHandler.init_attr_lst", false]], "init_attr_lst() (pwtools.eos.elkeosfit method)": [[486, "pwtools.eos.ElkEOSFit.init_attr_lst", false]], "init_attr_lst() (pwtools.eos.externeos method)": [[521, "pwtools.eos.ExternEOS.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.ciffile method)": [[714, "pwtools.parse.CifFile.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.cp2kdcdmdoutputfile method)": [[755, "pwtools.parse.Cp2kDcdMDOutputFile.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.cp2kmdoutputfile method)": [[795, "pwtools.parse.Cp2kMDOutputFile.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.cp2krelaxoutputfile method)": [[835, "pwtools.parse.Cp2kRelaxOutputFile.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.cp2kscfoutputfile method)": [[866, "pwtools.parse.Cp2kSCFOutputFile.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.cpmdmdoutputfile method)": [[913, "pwtools.parse.CpmdMDOutputFile.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.cpmdscfoutputfile method)": [[949, "pwtools.parse.CpmdSCFOutputFile.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.lammpsdcdmdoutputfile method)": [[998, "pwtools.parse.LammpsDcdMDOutputFile.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.lammpstextmdoutputfile method)": [[1039, "pwtools.parse.LammpsTextMDOutputFile.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.pdbfile method)": [[1068, "pwtools.parse.PDBFile.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.pwmdoutputfile method)": [[1111, "pwtools.parse.PwMDOutputFile.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.pwscfoutputfile method)": [[1148, "pwtools.parse.PwSCFOutputFile.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.pwvcmdoutputfile method)": [[1192, "pwtools.parse.PwVCMDOutputFile.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.structurefileparser method)": [[1219, "pwtools.parse.StructureFileParser.init_attr_lst", false]], "init_attr_lst() (pwtools.parse.trajectoryfileparser method)": [[1245, "pwtools.parse.TrajectoryFileParser.init_attr_lst", false]], "init_params_from_input() (pwtools.calculators.calculatorbase method)": [[102, "pwtools.calculators.CalculatorBase.init_params_from_input", false]], "init_params_from_input() (pwtools.calculators.lammps method)": [[109, "pwtools.calculators.Lammps.init_params_from_input", false]], "init_params_from_input() (pwtools.calculators.pwscf method)": [[117, "pwtools.calculators.Pwscf.init_params_from_input", false]], "inner_points_mask() (in module pwtools.num)": [[671, "pwtools.num.inner_points_mask", false]], "int_from_txt() (in module pwtools.parse)": [[1264, "pwtools.parse.int_from_txt", false]], "interpol2d (class in pwtools.num)": [[648, "pwtools.num.Interpol2D", false]], "invsplev() (pwtools.num.spline method)": [[661, "pwtools.num.Spline.invsplev", false]], "is_mono() (pwtools.eos.eosfit method)": [[503, "pwtools.eos.EosFit.is_mono", false]], "is_mono() (pwtools.num.fit1d method)": [[647, "pwtools.num.Fit1D.is_mono", false]], "is_mono() (pwtools.num.polyfit1d method)": [[656, "pwtools.num.PolyFit1D.is_mono", false]], "is_mono() (pwtools.num.spline method)": [[662, "pwtools.num.Spline.is_mono", false]], "is_same_struct() (in module pwtools.symmetry)": [[1372, "pwtools.symmetry.is_same_struct", false]], "is_seq() (in module pwtools.common)": [[149, "pwtools.common.is_seq", false]], "is_set_attr() (pwtools.base.flexiblegetters method)": [[77, "pwtools.base.FlexibleGetters.is_set_attr", false]], "is_set_attr() (pwtools.crys.fakeaseatoms method)": [[256, "pwtools.crys.FakeASEAtoms.is_set_attr", false]], "is_set_attr() (pwtools.crys.structure method)": [[312, "pwtools.crys.Structure.is_set_attr", false]], "is_set_attr() (pwtools.crys.trajectory method)": [[369, "pwtools.crys.Trajectory.is_set_attr", false]], "is_set_attr() (pwtools.crys.unitshandler method)": [[393, "pwtools.crys.UnitsHandler.is_set_attr", false]], "is_set_attr() (pwtools.eos.elkeosfit method)": [[487, "pwtools.eos.ElkEOSFit.is_set_attr", false]], "is_set_attr() (pwtools.eos.externeos method)": [[522, "pwtools.eos.ExternEOS.is_set_attr", false]], "is_set_attr() (pwtools.parse.ciffile method)": [[715, "pwtools.parse.CifFile.is_set_attr", false]], "is_set_attr() (pwtools.parse.cp2kdcdmdoutputfile method)": [[756, "pwtools.parse.Cp2kDcdMDOutputFile.is_set_attr", false]], "is_set_attr() (pwtools.parse.cp2kmdoutputfile method)": [[796, "pwtools.parse.Cp2kMDOutputFile.is_set_attr", false]], "is_set_attr() (pwtools.parse.cp2krelaxoutputfile method)": [[836, "pwtools.parse.Cp2kRelaxOutputFile.is_set_attr", false]], "is_set_attr() (pwtools.parse.cp2kscfoutputfile method)": [[867, "pwtools.parse.Cp2kSCFOutputFile.is_set_attr", false]], "is_set_attr() (pwtools.parse.cpmdmdoutputfile method)": [[914, "pwtools.parse.CpmdMDOutputFile.is_set_attr", false]], "is_set_attr() (pwtools.parse.cpmdscfoutputfile method)": [[950, "pwtools.parse.CpmdSCFOutputFile.is_set_attr", false]], "is_set_attr() (pwtools.parse.lammpsdcdmdoutputfile method)": [[999, "pwtools.parse.LammpsDcdMDOutputFile.is_set_attr", false]], "is_set_attr() (pwtools.parse.lammpstextmdoutputfile method)": [[1040, "pwtools.parse.LammpsTextMDOutputFile.is_set_attr", false]], "is_set_attr() (pwtools.parse.pdbfile method)": [[1069, "pwtools.parse.PDBFile.is_set_attr", false]], "is_set_attr() (pwtools.parse.pwmdoutputfile method)": [[1112, "pwtools.parse.PwMDOutputFile.is_set_attr", false]], "is_set_attr() (pwtools.parse.pwscfoutputfile method)": [[1149, "pwtools.parse.PwSCFOutputFile.is_set_attr", false]], "is_set_attr() (pwtools.parse.pwvcmdoutputfile method)": [[1193, "pwtools.parse.PwVCMDOutputFile.is_set_attr", false]], "is_set_attr() (pwtools.parse.structurefileparser method)": [[1220, "pwtools.parse.StructureFileParser.is_set_attr", false]], "is_set_attr() (pwtools.parse.trajectoryfileparser method)": [[1246, "pwtools.parse.TrajectoryFileParser.is_set_attr", false]], "is_set_attr_lst() (pwtools.base.flexiblegetters method)": [[78, "pwtools.base.FlexibleGetters.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.crys.fakeaseatoms method)": [[257, "pwtools.crys.FakeASEAtoms.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.crys.structure method)": [[313, "pwtools.crys.Structure.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.crys.trajectory method)": [[370, "pwtools.crys.Trajectory.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.crys.unitshandler method)": [[394, "pwtools.crys.UnitsHandler.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.eos.elkeosfit method)": [[488, "pwtools.eos.ElkEOSFit.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.eos.externeos method)": [[523, "pwtools.eos.ExternEOS.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.ciffile method)": [[716, "pwtools.parse.CifFile.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.cp2kdcdmdoutputfile method)": [[757, "pwtools.parse.Cp2kDcdMDOutputFile.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.cp2kmdoutputfile method)": [[797, "pwtools.parse.Cp2kMDOutputFile.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.cp2krelaxoutputfile method)": [[837, "pwtools.parse.Cp2kRelaxOutputFile.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.cp2kscfoutputfile method)": [[868, "pwtools.parse.Cp2kSCFOutputFile.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.cpmdmdoutputfile method)": [[915, "pwtools.parse.CpmdMDOutputFile.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.cpmdscfoutputfile method)": [[951, "pwtools.parse.CpmdSCFOutputFile.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.lammpsdcdmdoutputfile method)": [[1000, "pwtools.parse.LammpsDcdMDOutputFile.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.lammpstextmdoutputfile method)": [[1041, "pwtools.parse.LammpsTextMDOutputFile.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.pdbfile method)": [[1070, "pwtools.parse.PDBFile.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.pwmdoutputfile method)": [[1113, "pwtools.parse.PwMDOutputFile.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.pwscfoutputfile method)": [[1150, "pwtools.parse.PwSCFOutputFile.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.pwvcmdoutputfile method)": [[1194, "pwtools.parse.PwVCMDOutputFile.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.structurefileparser method)": [[1221, "pwtools.parse.StructureFileParser.is_set_attr_lst", false]], "is_set_attr_lst() (pwtools.parse.trajectoryfileparser method)": [[1247, "pwtools.parse.TrajectoryFileParser.is_set_attr_lst", false]], "is_struct (pwtools.crys.fakeaseatoms attribute)": [[258, "pwtools.crys.FakeASEAtoms.is_struct", false]], "is_struct (pwtools.crys.structure attribute)": [[314, "pwtools.crys.Structure.is_struct", false]], "is_struct (pwtools.crys.trajectory attribute)": [[371, "pwtools.crys.Trajectory.is_struct", false]], "is_traj (pwtools.crys.fakeaseatoms attribute)": [[259, "pwtools.crys.FakeASEAtoms.is_traj", false]], "is_traj (pwtools.crys.structure attribute)": [[315, "pwtools.crys.Structure.is_traj", false]], "is_traj (pwtools.crys.trajectory attribute)": [[372, "pwtools.crys.Trajectory.is_traj", false]], "isochoric_heat_capacity() (pwtools.thermo.harmonicthermo method)": [[1386, "pwtools.thermo.HarmonicThermo.isochoric_heat_capacity", false]], "itemsize (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.itemsize", false], [62, "pwtools.atomic_data.itemsize", false]], "iter_colors (in module pwtools.mpl)": [[614, "pwtools.mpl.iter_colors", false]], "iter_colors_linestyles (in module pwtools.mpl)": [[615, "pwtools.mpl.iter_colors_linestyles", false]], "iter_colors_markers (in module pwtools.mpl)": [[616, "pwtools.mpl.iter_colors_markers", false]], "iter_linestyles (in module pwtools.mpl)": [[617, "pwtools.mpl.iter_linestyles", false]], "iter_linestyles_colors (in module pwtools.mpl)": [[618, "pwtools.mpl.iter_linestyles_colors", false]], "iter_markers (in module pwtools.mpl)": [[619, "pwtools.mpl.iter_markers", false]], "iter_markers_colors (in module pwtools.mpl)": [[620, "pwtools.mpl.iter_markers_colors", false]], "j_to_ev (in module pwtools.constants)": [[175, "pwtools.constants.J_to_eV", false]], "j_to_rcm (in module pwtools.constants)": [[176, "pwtools.constants.J_to_rcm", false]], "jax_mode (in module pwtools.rbf.core)": [[1300, "pwtools.rbf.core.JAX_MODE", false]], "jit() (in module pwtools.rbf.core)": [[1312, "pwtools.rbf.core.jit", false]], "kb (in module pwtools.constants)": [[201, "pwtools.constants.kb", false]], "kb (in module pwtools.mttk)": [[637, "pwtools.mttk.kb", false]], "kb (in module pwtools.thermo)": [[1401, "pwtools.thermo.kb", false]], "kgrid() (in module pwtools.crys)": [[423, "pwtools.crys.kgrid", false]], "kpath() (in module pwtools.kpath)": [[574, "pwtools.kpath.kpath", false]], "kpoints_str() (in module pwtools.pwscf)": [[1276, "pwtools.pwscf.kpoints_str", false]], "kpoints_str_pwin() (in module pwtools.pwscf)": [[1277, "pwtools.pwscf.kpoints_str_pwin", false]], "kpoints_str_pwin_full() (in module pwtools.pwscf)": [[1278, "pwtools.pwscf.kpoints_str_pwin_full", false]], "kpointstr() (in module pwtools.pwscf)": [[1279, "pwtools.pwscf.kpointstr", false]], "kpointstr_pwin() (in module pwtools.pwscf)": [[1280, "pwtools.pwscf.kpointstr_pwin", false]], "kpointstr_pwin2() (in module pwtools.pwscf)": [[1281, "pwtools.pwscf.kpointstr_pwin2", false]], "kpts2mp() (in module pwtools.calculators)": [[122, "pwtools.calculators.kpts2mp", false]], "lammps (class in pwtools.calculators)": [[104, "pwtools.calculators.Lammps", false]], "lammpsdcdmdoutputfile (class in pwtools.parse)": [[969, "pwtools.parse.LammpsDcdMDOutputFile", false]], "lammpstextmdoutputfile (class in pwtools.parse)": [[1011, "pwtools.parse.LammpsTextMDOutputFile", false]], "lazyprop (class in pwtools.decorators)": [[461, "pwtools.decorators.lazyprop", false]], "legend() (pwtools.mpl.plot method)": [[585, "pwtools.mpl.Plot.legend", false]], "linestyles (in module pwtools.mpl)": [[621, "pwtools.mpl.linestyles", false]], "linestyles_colors (in module pwtools.mpl)": [[622, "pwtools.mpl.linestyles_colors", false]], "load() (pwtools.base.flexiblegetters method)": [[79, "pwtools.base.FlexibleGetters.load", false]], "load() (pwtools.crys.fakeaseatoms method)": [[260, "pwtools.crys.FakeASEAtoms.load", false]], "load() (pwtools.crys.structure method)": [[316, "pwtools.crys.Structure.load", false]], "load() (pwtools.crys.trajectory method)": [[373, "pwtools.crys.Trajectory.load", false]], "load() (pwtools.crys.unitshandler method)": [[395, "pwtools.crys.UnitsHandler.load", false]], "load() (pwtools.eos.elkeosfit method)": [[489, "pwtools.eos.ElkEOSFit.load", false]], "load() (pwtools.eos.externeos method)": [[524, "pwtools.eos.ExternEOS.load", false]], "load() (pwtools.parse.ciffile method)": [[717, "pwtools.parse.CifFile.load", false]], "load() (pwtools.parse.cp2kdcdmdoutputfile method)": [[758, "pwtools.parse.Cp2kDcdMDOutputFile.load", false]], "load() (pwtools.parse.cp2kmdoutputfile method)": [[798, "pwtools.parse.Cp2kMDOutputFile.load", false]], "load() (pwtools.parse.cp2krelaxoutputfile method)": [[838, "pwtools.parse.Cp2kRelaxOutputFile.load", false]], "load() (pwtools.parse.cp2kscfoutputfile method)": [[869, "pwtools.parse.Cp2kSCFOutputFile.load", false]], "load() (pwtools.parse.cpmdmdoutputfile method)": [[916, "pwtools.parse.CpmdMDOutputFile.load", false]], "load() (pwtools.parse.cpmdscfoutputfile method)": [[952, "pwtools.parse.CpmdSCFOutputFile.load", false]], "load() (pwtools.parse.lammpsdcdmdoutputfile method)": [[1001, "pwtools.parse.LammpsDcdMDOutputFile.load", false]], "load() (pwtools.parse.lammpstextmdoutputfile method)": [[1042, "pwtools.parse.LammpsTextMDOutputFile.load", false]], "load() (pwtools.parse.pdbfile method)": [[1071, "pwtools.parse.PDBFile.load", false]], "load() (pwtools.parse.pwmdoutputfile method)": [[1114, "pwtools.parse.PwMDOutputFile.load", false]], "load() (pwtools.parse.pwscfoutputfile method)": [[1151, "pwtools.parse.PwSCFOutputFile.load", false]], "load() (pwtools.parse.pwvcmdoutputfile method)": [[1195, "pwtools.parse.PwVCMDOutputFile.load", false]], "load() (pwtools.parse.structurefileparser method)": [[1222, "pwtools.parse.StructureFileParser.load", false]], "load() (pwtools.parse.trajectoryfileparser method)": [[1248, "pwtools.parse.TrajectoryFileParser.load", false]], "load_h5() (in module pwtools.io)": [[549, "pwtools.io.load_h5", false]], "lorentz() (in module pwtools.signal)": [[1334, "pwtools.signal.lorentz", false]], "lst2dct() (pwtools.eos.evfunction method)": [[470, "pwtools.eos.EVFunction.lst2dct", false]], "lst2dct() (pwtools.eos.vinet method)": [[540, "pwtools.eos.Vinet.lst2dct", false]], "m0 (in module pwtools.constants)": [[202, "pwtools.constants.m0", false]], "m0 (in module pwtools.mttk)": [[638, "pwtools.mttk.m0", false]], "machine (class in pwtools.batch)": [[93, "pwtools.batch.Machine", false]], "make_axes_grid_fig() (in module pwtools.mpl)": [[623, "pwtools.mpl.make_axes_grid_fig", false]], "makedb() (in module pwtools.sql)": [[1368, "pwtools.sql.makedb", false]], "makedirs() (in module pwtools.common)": [[150, "pwtools.common.makedirs", false]], "markers (in module pwtools.mpl)": [[624, "pwtools.mpl.markers", false]], "markers_colors (in module pwtools.mpl)": [[625, "pwtools.mpl.markers_colors", false]], "masses (in module pwtools.atomic_data)": [[62, "pwtools.atomic_data.masses", false]], "match_mask() (in module pwtools.num)": [[672, "pwtools.num.match_mask", false]], "maxderivexception": [[533, "pwtools.eos.MaxDerivException", false]], "mean() (in module pwtools.crys)": [[424, "pwtools.crys.mean", false]], "meshgridt() (in module pwtools.mpl)": [[626, "pwtools.mpl.meshgridt", false]], "meshgridt() (in module pwtools.num)": [[673, "pwtools.num.meshgridt", false]], "min_image_convention() (in module pwtools.crys)": [[425, "pwtools.crys.min_image_convention", false]], "mirror() (in module pwtools.signal)": [[1335, "pwtools.signal.mirror", false]], "missing (in module pwtools.atomic_data)": [[63, "pwtools.atomic_data.missing", false]], "mix() (in module pwtools.crys)": [[426, "pwtools.crys.mix", false]], "module": [[0, "module-pwtools._dcd", false], [1, "module-pwtools._flib", false], [2, "module-pwtools.arrayio", false], [3, "module-pwtools.atomic_data", false], [4, "module-pwtools.base", false], [5, "module-pwtools.batch", false], [6, "module-pwtools.calculators", false], [7, "module-pwtools.comb", false], [8, "module-pwtools.common", false], [9, "module-pwtools.config", false], [10, "module-pwtools.constants", false], [11, "module-pwtools.crys", false], [12, "module-pwtools.dcd", false], [13, "module-pwtools.decorators", false], [14, "module-pwtools.eos", false], [15, "module-pwtools.io", false], [16, "module-pwtools.kpath", false], [17, "module-pwtools.lammps", false], [18, "module-pwtools.mpl", false], [19, "module-pwtools.mttk", false], [20, "module-pwtools.num", false], [21, "module-pwtools.parse", false], [22, "module-pwtools.pwscf", false], [23, "module-pwtools.pydos", false], [24, "module-pwtools.random", false], [25, "module-pwtools.rbf.core", false], [26, "module-pwtools.rbf.hyperopt", false], [27, "module-pwtools.regex", false], [28, "module-pwtools.signal", false], [29, "module-pwtools.sql", false], [30, "module-pwtools.symmetry", false], [31, "module-pwtools.thermo", false], [32, "module-pwtools.timer", false], [33, "module-pwtools.verbose", false], [34, "module-pwtools.visualize", false]], "mu0 (in module pwtools.constants)": [[203, "pwtools.constants.mu0", false]], "name (in module pwtools.config)": [[163, "pwtools.config.name", false]], "nbytes (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.nbytes", false], [62, "pwtools.atomic_data.nbytes", false]], "nd (pwtools.num.datand attribute)": [[640, "pwtools.num.DataND.nd", false]], "ndim (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.ndim", false], [62, "pwtools.atomic_data.ndim", false]], "nearest_neighbors() (in module pwtools.crys)": [[427, "pwtools.crys.nearest_neighbors", false]], "nearest_neighbors_from_dists() (in module pwtools.crys)": [[428, "pwtools.crys.nearest_neighbors_from_dists", false]], "nearest_neighbors_struct() (in module pwtools.crys)": [[429, "pwtools.crys.nearest_neighbors_struct", false]], "nested_loops() (in module pwtools.comb)": [[125, "pwtools.comb.nested_loops", false]], "new_axis() (in module pwtools.mpl)": [[627, "pwtools.mpl.new_axis", false]], "norm() (in module pwtools.num)": [[674, "pwtools.num.norm", false]], "norm_int() (in module pwtools.num)": [[675, "pwtools.num.norm_int", false]], "normalize() (in module pwtools.num)": [[676, "pwtools.num.normalize", false]], "nstep_from_txt() (in module pwtools.parse)": [[1265, "pwtools.parse.nstep_from_txt", false]], "numbers (in module pwtools.atomic_data)": [[64, "pwtools.atomic_data.numbers", false]], "odd() (in module pwtools.signal)": [[1336, "pwtools.signal.odd", false]], "open_and_close() (in module pwtools.decorators)": [[462, "pwtools.decorators.open_and_close", false]], "open_file (in module pwtools._dcd)": [[37, "pwtools._dcd.open_file", false]], "order_similar() (in module pwtools.num)": [[677, "pwtools.num.order_similar", false]], "p() (pwtools.timer.tagtimer method)": [[1404, "pwtools.timer.TagTimer.p", false]], "pad_zeros() (in module pwtools.signal)": [[1337, "pwtools.signal.pad_zeros", false]], "parameterstudy (class in pwtools.batch)": [[96, "pwtools.batch.ParameterStudy", false]], "parse() (pwtools.parse.ciffile method)": [[718, "pwtools.parse.CifFile.parse", false]], "parse() (pwtools.parse.cp2kdcdmdoutputfile method)": [[759, "pwtools.parse.Cp2kDcdMDOutputFile.parse", false]], "parse() (pwtools.parse.cp2kmdoutputfile method)": [[799, "pwtools.parse.Cp2kMDOutputFile.parse", false]], "parse() (pwtools.parse.cp2krelaxoutputfile method)": [[839, "pwtools.parse.Cp2kRelaxOutputFile.parse", false]], "parse() (pwtools.parse.cp2kscfoutputfile method)": [[870, "pwtools.parse.Cp2kSCFOutputFile.parse", false]], "parse() (pwtools.parse.cpmdmdoutputfile method)": [[917, "pwtools.parse.CpmdMDOutputFile.parse", false]], "parse() (pwtools.parse.cpmdscfoutputfile method)": [[953, "pwtools.parse.CpmdSCFOutputFile.parse", false]], "parse() (pwtools.parse.lammpsdcdmdoutputfile method)": [[1002, "pwtools.parse.LammpsDcdMDOutputFile.parse", false]], "parse() (pwtools.parse.lammpstextmdoutputfile method)": [[1043, "pwtools.parse.LammpsTextMDOutputFile.parse", false]], "parse() (pwtools.parse.pdbfile method)": [[1072, "pwtools.parse.PDBFile.parse", false]], "parse() (pwtools.parse.pwmdoutputfile method)": [[1115, "pwtools.parse.PwMDOutputFile.parse", false]], "parse() (pwtools.parse.pwscfoutputfile method)": [[1152, "pwtools.parse.PwSCFOutputFile.parse", false]], "parse() (pwtools.parse.pwvcmdoutputfile method)": [[1196, "pwtools.parse.PwVCMDOutputFile.parse", false]], "parse() (pwtools.parse.structurefileparser method)": [[1223, "pwtools.parse.StructureFileParser.parse", false]], "parse() (pwtools.parse.trajectoryfileparser method)": [[1249, "pwtools.parse.TrajectoryFileParser.parse", false]], "particle_nhc_masses() (in module pwtools.mttk)": [[639, "pwtools.mttk.particle_nhc_masses", false]], "pbc_wrap() (in module pwtools.crys)": [[430, "pwtools.crys.pbc_wrap", false]], "pbc_wrap_coords() (in module pwtools.crys)": [[431, "pwtools.crys.pbc_wrap_coords", false]], "pdbfile (class in pwtools.parse)": [[1052, "pwtools.parse.PDBFile", false]], "pdos() (in module pwtools.pydos)": [[1291, "pwtools.pydos.pdos", false]], "permit_sigpipe() (in module pwtools.common)": [[151, "pwtools.common.permit_sigpipe", false]], "pi (in module pwtools.constants)": [[204, "pwtools.constants.pi", false]], "pi (in module pwtools.crys)": [[432, "pwtools.crys.pi", false]], "pi (in module pwtools.num)": [[678, "pwtools.num.pi", false]], "pi (in module pwtools.parse)": [[1266, "pwtools.parse.pi", false]], "pi (in module pwtools.random)": [[1298, "pwtools.random.pi", false]], "pi (in module pwtools.thermo)": [[1402, "pwtools.thermo.pi", false]], "plot (class in pwtools.mpl)": [[583, "pwtools.mpl.Plot", false]], "plot_dis() (in module pwtools.kpath)": [[575, "pwtools.kpath.plot_dis", false]], "plotlines3d() (in module pwtools.mpl)": [[628, "pwtools.mpl.plotlines3d", false]], "poly_powers() (in module pwtools.num)": [[679, "pwtools.num.poly_powers", false]], "poly_str() (in module pwtools.num)": [[680, "pwtools.num.poly_str", false]], "polyfit (class in pwtools.num)": [[650, "pwtools.num.PolyFit", false]], "polyfit() (in module pwtools.num)": [[681, "pwtools.num.polyfit", false]], "polyfit1d (class in pwtools.num)": [[652, "pwtools.num.PolyFit1D", false]], "polyval() (in module pwtools.num)": [[682, "pwtools.num.polyval", false]], "pop_from_list() (in module pwtools.common)": [[152, "pwtools.common.pop_from_list", false]], "populated_attrs() (in module pwtools.crys)": [[433, "pwtools.crys.populated_attrs", false]], "predict() (pwtools.rbf.core.rbf method)": [[1308, "pwtools.rbf.core.Rbf.predict", false]], "prepare_plots() (in module pwtools.mpl)": [[629, "pwtools.mpl.prepare_plots", false]], "pressure() (pwtools.eos.eosfit method)": [[504, "pwtools.eos.EosFit.pressure", false]], "print_dct() (in module pwtools.common)": [[153, "pwtools.common.print_dct", false]], "ps (in module pwtools.constants)": [[205, "pwtools.constants.ps", false]], "ps (in module pwtools.parse)": [[1267, "pwtools.parse.ps", false]], "pt (in module pwtools.atomic_data)": [[65, "pwtools.atomic_data.pt", false]], "pt() (pwtools.timer.tagtimer method)": [[1405, "pwtools.timer.TagTimer.pt", false]], "pwmdoutputfile (class in pwtools.parse)": [[1080, "pwtools.parse.PwMDOutputFile", false]], "pwscf (class in pwtools.calculators)": [[112, "pwtools.calculators.Pwscf", false]], "pwscfoutputfile (class in pwtools.parse)": [[1124, "pwtools.parse.PwSCFOutputFile", false]], "pwtools._dcd": [[0, "module-pwtools._dcd", false]], "pwtools._flib": [[1, "module-pwtools._flib", false]], "pwtools.arrayio": [[2, "module-pwtools.arrayio", false]], "pwtools.atomic_data": [[3, "module-pwtools.atomic_data", false]], "pwtools.base": [[4, "module-pwtools.base", false]], "pwtools.batch": [[5, "module-pwtools.batch", false]], "pwtools.calculators": [[6, "module-pwtools.calculators", false]], "pwtools.comb": [[7, "module-pwtools.comb", false]], "pwtools.common": [[8, "module-pwtools.common", false]], "pwtools.config": [[9, "module-pwtools.config", false]], "pwtools.constants": [[10, "module-pwtools.constants", false]], "pwtools.crys": [[11, "module-pwtools.crys", false]], "pwtools.dcd": [[12, "module-pwtools.dcd", false]], "pwtools.decorators": [[13, "module-pwtools.decorators", false]], "pwtools.eos": [[14, "module-pwtools.eos", false]], "pwtools.io": [[15, "module-pwtools.io", false]], "pwtools.kpath": [[16, "module-pwtools.kpath", false]], "pwtools.lammps": [[17, "module-pwtools.lammps", false]], "pwtools.mpl": [[18, "module-pwtools.mpl", false]], "pwtools.mttk": [[19, "module-pwtools.mttk", false]], "pwtools.num": [[20, "module-pwtools.num", false]], "pwtools.parse": [[21, "module-pwtools.parse", false]], "pwtools.pwscf": [[22, "module-pwtools.pwscf", false]], "pwtools.pydos": [[23, "module-pwtools.pydos", false]], "pwtools.random": [[24, "module-pwtools.random", false]], "pwtools.rbf.core": [[25, "module-pwtools.rbf.core", false]], "pwtools.rbf.hyperopt": [[26, "module-pwtools.rbf.hyperopt", false]], "pwtools.regex": [[27, "module-pwtools.regex", false]], "pwtools.signal": [[28, "module-pwtools.signal", false]], "pwtools.sql": [[29, "module-pwtools.sql", false]], "pwtools.symmetry": [[30, "module-pwtools.symmetry", false]], "pwtools.thermo": [[31, "module-pwtools.thermo", false]], "pwtools.timer": [[32, "module-pwtools.timer", false]], "pwtools.verbose": [[33, "module-pwtools.verbose", false]], "pwtools.visualize": [[34, "module-pwtools.visualize", false]], "pwvcmdoutputfile (class in pwtools.parse)": [[1160, "pwtools.parse.PwVCMDOutputFile", false]], "pyvacf() (in module pwtools.pydos)": [[1292, "pwtools.pydos.pyvacf", false]], "r (in module pwtools.constants)": [[177, "pwtools.constants.R", false]], "r (in module pwtools.thermo)": [[1391, "pwtools.thermo.R", false]], "random_struct() (in module pwtools.random)": [[1299, "pwtools.random.random_struct", false]], "randomstructure (class in pwtools.random)": [[1294, "pwtools.random.RandomStructure", false]], "randomstructurefail": [[1297, "pwtools.random.RandomStructureFail", false]], "raw_return() (pwtools.base.flexiblegetters method)": [[80, "pwtools.base.FlexibleGetters.raw_return", false]], "raw_return() (pwtools.crys.fakeaseatoms method)": [[261, "pwtools.crys.FakeASEAtoms.raw_return", false]], "raw_return() (pwtools.crys.structure method)": [[317, "pwtools.crys.Structure.raw_return", false]], "raw_return() (pwtools.crys.trajectory method)": [[374, "pwtools.crys.Trajectory.raw_return", false]], "raw_return() (pwtools.crys.unitshandler method)": [[396, "pwtools.crys.UnitsHandler.raw_return", false]], "raw_return() (pwtools.eos.elkeosfit method)": [[490, "pwtools.eos.ElkEOSFit.raw_return", false]], "raw_return() (pwtools.eos.externeos method)": [[525, "pwtools.eos.ExternEOS.raw_return", false]], "raw_return() (pwtools.parse.ciffile method)": [[719, "pwtools.parse.CifFile.raw_return", false]], "raw_return() (pwtools.parse.cp2kdcdmdoutputfile method)": [[760, "pwtools.parse.Cp2kDcdMDOutputFile.raw_return", false]], "raw_return() (pwtools.parse.cp2kmdoutputfile method)": [[800, "pwtools.parse.Cp2kMDOutputFile.raw_return", false]], "raw_return() (pwtools.parse.cp2krelaxoutputfile method)": [[840, "pwtools.parse.Cp2kRelaxOutputFile.raw_return", false]], "raw_return() (pwtools.parse.cp2kscfoutputfile method)": [[871, "pwtools.parse.Cp2kSCFOutputFile.raw_return", false]], "raw_return() (pwtools.parse.cpmdmdoutputfile method)": [[918, "pwtools.parse.CpmdMDOutputFile.raw_return", false]], "raw_return() (pwtools.parse.cpmdscfoutputfile method)": [[954, "pwtools.parse.CpmdSCFOutputFile.raw_return", false]], "raw_return() (pwtools.parse.lammpsdcdmdoutputfile method)": [[1003, "pwtools.parse.LammpsDcdMDOutputFile.raw_return", false]], "raw_return() (pwtools.parse.lammpstextmdoutputfile method)": [[1044, "pwtools.parse.LammpsTextMDOutputFile.raw_return", false]], "raw_return() (pwtools.parse.pdbfile method)": [[1073, "pwtools.parse.PDBFile.raw_return", false]], "raw_return() (pwtools.parse.pwmdoutputfile method)": [[1116, "pwtools.parse.PwMDOutputFile.raw_return", false]], "raw_return() (pwtools.parse.pwscfoutputfile method)": [[1153, "pwtools.parse.PwSCFOutputFile.raw_return", false]], "raw_return() (pwtools.parse.pwvcmdoutputfile method)": [[1197, "pwtools.parse.PwVCMDOutputFile.raw_return", false]], "raw_return() (pwtools.parse.structurefileparser method)": [[1224, "pwtools.parse.StructureFileParser.raw_return", false]], "raw_return() (pwtools.parse.trajectoryfileparser method)": [[1250, "pwtools.parse.TrajectoryFileParser.raw_return", false]], "raw_slice_get() (pwtools.base.flexiblegetters method)": [[81, "pwtools.base.FlexibleGetters.raw_slice_get", false]], "raw_slice_get() (pwtools.crys.fakeaseatoms method)": [[262, "pwtools.crys.FakeASEAtoms.raw_slice_get", false]], "raw_slice_get() (pwtools.crys.structure method)": [[318, "pwtools.crys.Structure.raw_slice_get", false]], "raw_slice_get() (pwtools.crys.trajectory method)": [[375, "pwtools.crys.Trajectory.raw_slice_get", false]], "raw_slice_get() (pwtools.crys.unitshandler method)": [[397, "pwtools.crys.UnitsHandler.raw_slice_get", false]], "raw_slice_get() (pwtools.eos.elkeosfit method)": [[491, "pwtools.eos.ElkEOSFit.raw_slice_get", false]], "raw_slice_get() (pwtools.eos.externeos method)": [[526, "pwtools.eos.ExternEOS.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.ciffile method)": [[720, "pwtools.parse.CifFile.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.cp2kdcdmdoutputfile method)": [[761, "pwtools.parse.Cp2kDcdMDOutputFile.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.cp2kmdoutputfile method)": [[801, "pwtools.parse.Cp2kMDOutputFile.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.cp2krelaxoutputfile method)": [[841, "pwtools.parse.Cp2kRelaxOutputFile.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.cp2kscfoutputfile method)": [[872, "pwtools.parse.Cp2kSCFOutputFile.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.cpmdmdoutputfile method)": [[919, "pwtools.parse.CpmdMDOutputFile.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.cpmdscfoutputfile method)": [[955, "pwtools.parse.CpmdSCFOutputFile.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.lammpsdcdmdoutputfile method)": [[1004, "pwtools.parse.LammpsDcdMDOutputFile.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.lammpstextmdoutputfile method)": [[1045, "pwtools.parse.LammpsTextMDOutputFile.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.pdbfile method)": [[1074, "pwtools.parse.PDBFile.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.pwmdoutputfile method)": [[1117, "pwtools.parse.PwMDOutputFile.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.pwscfoutputfile method)": [[1154, "pwtools.parse.PwSCFOutputFile.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.pwvcmdoutputfile method)": [[1198, "pwtools.parse.PwVCMDOutputFile.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.structurefileparser method)": [[1225, "pwtools.parse.StructureFileParser.raw_slice_get", false]], "raw_slice_get() (pwtools.parse.trajectoryfileparser method)": [[1251, "pwtools.parse.TrajectoryFileParser.raw_slice_get", false]], "rbf (class in pwtools.rbf.core)": [[1301, "pwtools.rbf.core.Rbf", false]], "rbf_dct (in module pwtools.rbf.core)": [[1313, "pwtools.rbf.core.rbf_dct", false]], "rbf_gauss() (in module pwtools.rbf.core)": [[1314, "pwtools.rbf.core.rbf_gauss", false]], "rbf_inv_multi() (in module pwtools.rbf.core)": [[1315, "pwtools.rbf.core.rbf_inv_multi", false]], "rbf_multi() (in module pwtools.rbf.core)": [[1316, "pwtools.rbf.core.rbf_multi", false]], "rcm_to_hz (in module pwtools.constants)": [[206, "pwtools.constants.rcm_to_Hz", false]], "read_all_dyn() (in module pwtools.pwscf)": [[1282, "pwtools.pwscf.read_all_dyn", false]], "read_cif (in module pwtools.io)": [[550, "pwtools.io.read_cif", false]], "read_cp2k_md (in module pwtools.io)": [[551, "pwtools.io.read_cp2k_md", false]], "read_cp2k_md_dcd (in module pwtools.io)": [[552, "pwtools.io.read_cp2k_md_dcd", false]], "read_cp2k_relax (in module pwtools.io)": [[553, "pwtools.io.read_cp2k_relax", false]], "read_cp2k_scf (in module pwtools.io)": [[554, "pwtools.io.read_cp2k_scf", false]], "read_cpmd_md (in module pwtools.io)": [[555, "pwtools.io.read_cpmd_md", false]], "read_cpmd_scf (in module pwtools.io)": [[556, "pwtools.io.read_cpmd_scf", false]], "read_dcd_data (in module pwtools._dcd)": [[38, "pwtools._dcd.read_dcd_data", false]], "read_dcd_data() (in module pwtools.dcd)": [[456, "pwtools.dcd.read_dcd_data", false]], "read_dcd_data_f() (in module pwtools.dcd)": [[457, "pwtools.dcd.read_dcd_data_f", false]], "read_dcd_data_from_unit (in module pwtools._dcd)": [[39, "pwtools._dcd.read_dcd_data_from_unit", false]], "read_dcd_data_ref() (in module pwtools.dcd)": [[458, "pwtools.dcd.read_dcd_data_ref", false]], "read_dcd_header() (in module pwtools.dcd)": [[459, "pwtools.dcd.read_dcd_header", false]], "read_dcd_header_from_unit (in module pwtools._dcd)": [[40, "pwtools._dcd.read_dcd_header_from_unit", false]], "read_dyn() (in module pwtools.pwscf)": [[1283, "pwtools.pwscf.read_dyn", false]], "read_dynmat() (in module pwtools.pwscf)": [[1284, "pwtools.pwscf.read_dynmat", false]], "read_dynmat_ir_raman() (in module pwtools.pwscf)": [[1285, "pwtools.pwscf.read_dynmat_ir_raman", false]], "read_dynmat_out() (in module pwtools.pwscf)": [[1286, "pwtools.pwscf.read_dynmat_out", false]], "read_h5() (in module pwtools.io)": [[557, "pwtools.io.read_h5", false]], "read_lammps_md_dcd (in module pwtools.io)": [[558, "pwtools.io.read_lammps_md_dcd", false]], "read_lammps_md_txt (in module pwtools.io)": [[559, "pwtools.io.read_lammps_md_txt", false]], "read_matdyn_freq() (in module pwtools.pwscf)": [[1287, "pwtools.pwscf.read_matdyn_freq", false]], "read_matdyn_modes() (in module pwtools.pwscf)": [[1288, "pwtools.pwscf.read_matdyn_modes", false]], "read_pdb (in module pwtools.io)": [[560, "pwtools.io.read_pdb", false]], "read_pickle() (in module pwtools.io)": [[561, "pwtools.io.read_pickle", false]], "read_pw_md (in module pwtools.io)": [[562, "pwtools.io.read_pw_md", false]], "read_pw_scf (in module pwtools.io)": [[563, "pwtools.io.read_pw_scf", false]], "read_pw_vcmd (in module pwtools.io)": [[564, "pwtools.io.read_pw_vcmd", false]], "read_results() (pwtools.calculators.lammps method)": [[110, "pwtools.calculators.Lammps.read_results", false]], "read_results() (pwtools.calculators.pwscf method)": [[118, "pwtools.calculators.Pwscf.read_results", false]], "readfactory (class in pwtools.io)": [[547, "pwtools.io.ReadFactory", false]], "readtxt() (in module pwtools.arrayio)": [[59, "pwtools.arrayio.readtxt", false]], "real (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.real", false], [62, "pwtools.atomic_data.real", false]], "recip_cell() (in module pwtools.crys)": [[434, "pwtools.crys.recip_cell", false]], "repeatedkfold (class in pwtools.rbf.hyperopt)": [[1322, "pwtools.rbf.hyperopt.RepeatedKFold", false]], "rmax_smith() (in module pwtools.crys)": [[435, "pwtools.crys.rmax_smith", false]], "rms() (in module pwtools.num)": [[683, "pwtools.num.rms", false]], "rms3d() (in module pwtools.num)": [[684, "pwtools.num.rms3d", false]], "rmsd() (in module pwtools.crys)": [[436, "pwtools.crys.rmsd", false]], "round_up_next_multiple() (in module pwtools.num)": [[685, "pwtools.num.round_up_next_multiple", false]], "rpdf() (in module pwtools.crys)": [[437, "pwtools.crys.rpdf", false]], "ry (in module pwtools.constants)": [[178, "pwtools.constants.Ry", false]], "ry (in module pwtools.eos)": [[534, "pwtools.eos.Ry", false]], "ry (in module pwtools.parse)": [[1205, "pwtools.parse.Ry", false]], "ry_to_ev (in module pwtools.constants)": [[182, "pwtools.constants.Ry_to_eV", false]], "ry_to_ha (in module pwtools.constants)": [[179, "pwtools.constants.Ry_to_Ha", false]], "ry_to_hz (in module pwtools.constants)": [[180, "pwtools.constants.Ry_to_Hz", false]], "ry_to_j (in module pwtools.constants)": [[181, "pwtools.constants.Ry_to_J", false]], "ry_to_j (in module pwtools.thermo)": [[1392, "pwtools.thermo.Ry_to_J", false]], "ry_to_rcm (in module pwtools.constants)": [[183, "pwtools.constants.Ry_to_rcm", false]], "rydberg (in module pwtools.constants)": [[184, "pwtools.constants.Rydberg", false]], "savefig() (pwtools.mpl.plot method)": [[586, "pwtools.mpl.Plot.savefig", false]], "scale() (in module pwtools.signal)": [[1338, "pwtools.signal.scale", false]], "scell() (in module pwtools.crys)": [[438, "pwtools.crys.scell", false]], "scell3d() (in module pwtools.crys)": [[439, "pwtools.crys.scell3d", false]], "scell_mask() (in module pwtools.crys)": [[440, "pwtools.crys.scell_mask", false]], "seq2str() (in module pwtools.common)": [[154, "pwtools.common.seq2str", false]], "set_all() (pwtools.base.flexiblegetters method)": [[82, "pwtools.base.FlexibleGetters.set_all", false]], "set_all() (pwtools.crys.fakeaseatoms method)": [[263, "pwtools.crys.FakeASEAtoms.set_all", false]], "set_all() (pwtools.crys.structure method)": [[319, "pwtools.crys.Structure.set_all", false]], "set_all() (pwtools.crys.trajectory method)": [[376, "pwtools.crys.Trajectory.set_all", false]], "set_all() (pwtools.crys.unitshandler method)": [[398, "pwtools.crys.UnitsHandler.set_all", false]], "set_all() (pwtools.eos.elkeosfit method)": [[492, "pwtools.eos.ElkEOSFit.set_all", false]], "set_all() (pwtools.eos.externeos method)": [[527, "pwtools.eos.ExternEOS.set_all", false]], "set_all() (pwtools.parse.ciffile method)": [[721, "pwtools.parse.CifFile.set_all", false]], "set_all() (pwtools.parse.cp2kdcdmdoutputfile method)": [[762, "pwtools.parse.Cp2kDcdMDOutputFile.set_all", false]], "set_all() (pwtools.parse.cp2kmdoutputfile method)": [[802, "pwtools.parse.Cp2kMDOutputFile.set_all", false]], "set_all() (pwtools.parse.cp2krelaxoutputfile method)": [[842, "pwtools.parse.Cp2kRelaxOutputFile.set_all", false]], "set_all() (pwtools.parse.cp2kscfoutputfile method)": [[873, "pwtools.parse.Cp2kSCFOutputFile.set_all", false]], "set_all() (pwtools.parse.cpmdmdoutputfile method)": [[920, "pwtools.parse.CpmdMDOutputFile.set_all", false]], "set_all() (pwtools.parse.cpmdscfoutputfile method)": [[956, "pwtools.parse.CpmdSCFOutputFile.set_all", false]], "set_all() (pwtools.parse.lammpsdcdmdoutputfile method)": [[1005, "pwtools.parse.LammpsDcdMDOutputFile.set_all", false]], "set_all() (pwtools.parse.lammpstextmdoutputfile method)": [[1046, "pwtools.parse.LammpsTextMDOutputFile.set_all", false]], "set_all() (pwtools.parse.pdbfile method)": [[1075, "pwtools.parse.PDBFile.set_all", false]], "set_all() (pwtools.parse.pwmdoutputfile method)": [[1118, "pwtools.parse.PwMDOutputFile.set_all", false]], "set_all() (pwtools.parse.pwscfoutputfile method)": [[1155, "pwtools.parse.PwSCFOutputFile.set_all", false]], "set_all() (pwtools.parse.pwvcmdoutputfile method)": [[1199, "pwtools.parse.PwVCMDOutputFile.set_all", false]], "set_all() (pwtools.parse.structurefileparser method)": [[1226, "pwtools.parse.StructureFileParser.set_all", false]], "set_all() (pwtools.parse.trajectoryfileparser method)": [[1252, "pwtools.parse.TrajectoryFileParser.set_all", false]], "set_attr_lst() (pwtools.base.flexiblegetters method)": [[83, "pwtools.base.FlexibleGetters.set_attr_lst", false]], "set_attr_lst() (pwtools.crys.fakeaseatoms method)": [[264, "pwtools.crys.FakeASEAtoms.set_attr_lst", false]], "set_attr_lst() (pwtools.crys.structure method)": [[320, "pwtools.crys.Structure.set_attr_lst", false]], "set_attr_lst() (pwtools.crys.trajectory method)": [[377, "pwtools.crys.Trajectory.set_attr_lst", false]], "set_attr_lst() (pwtools.crys.unitshandler method)": [[399, "pwtools.crys.UnitsHandler.set_attr_lst", false]], "set_attr_lst() (pwtools.eos.elkeosfit method)": [[493, "pwtools.eos.ElkEOSFit.set_attr_lst", false]], "set_attr_lst() (pwtools.eos.externeos method)": [[528, "pwtools.eos.ExternEOS.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.ciffile method)": [[722, "pwtools.parse.CifFile.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.cp2kdcdmdoutputfile method)": [[763, "pwtools.parse.Cp2kDcdMDOutputFile.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.cp2kmdoutputfile method)": [[803, "pwtools.parse.Cp2kMDOutputFile.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.cp2krelaxoutputfile method)": [[843, "pwtools.parse.Cp2kRelaxOutputFile.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.cp2kscfoutputfile method)": [[874, "pwtools.parse.Cp2kSCFOutputFile.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.cpmdmdoutputfile method)": [[921, "pwtools.parse.CpmdMDOutputFile.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.cpmdscfoutputfile method)": [[957, "pwtools.parse.CpmdSCFOutputFile.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.lammpsdcdmdoutputfile method)": [[1006, "pwtools.parse.LammpsDcdMDOutputFile.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.lammpstextmdoutputfile method)": [[1047, "pwtools.parse.LammpsTextMDOutputFile.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.pdbfile method)": [[1076, "pwtools.parse.PDBFile.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.pwmdoutputfile method)": [[1119, "pwtools.parse.PwMDOutputFile.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.pwscfoutputfile method)": [[1156, "pwtools.parse.PwSCFOutputFile.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.pwvcmdoutputfile method)": [[1200, "pwtools.parse.PwVCMDOutputFile.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.structurefileparser method)": [[1227, "pwtools.parse.StructureFileParser.set_attr_lst", false]], "set_attr_lst() (pwtools.parse.trajectoryfileparser method)": [[1253, "pwtools.parse.TrajectoryFileParser.set_attr_lst", false]], "set_bv_method() (pwtools.eos.elkeosfit method)": [[494, "pwtools.eos.ElkEOSFit.set_bv_method", false]], "set_bv_method() (pwtools.eos.externeos method)": [[529, "pwtools.eos.ExternEOS.set_bv_method", false]], "set_fitfunc() (pwtools.thermo.gibbs method)": [[1381, "pwtools.thermo.Gibbs.set_fitfunc", false]], "set_table() (pwtools.sql.sqlitedb method)": [[1363, "pwtools.sql.SQLiteDB.set_table", false]], "shape (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.shape", false], [62, "pwtools.atomic_data.shape", false]], "size (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.size", false], [62, "pwtools.atomic_data.size", false]], "sliceput() (in module pwtools.num)": [[686, "pwtools.num.sliceput", false]], "slicetake() (in module pwtools.num)": [[687, "pwtools.num.slicetake", false]], "smooth() (in module pwtools.crys)": [[441, "pwtools.crys.smooth", false]], "smooth() (in module pwtools.signal)": [[1339, "pwtools.signal.smooth", false]], "smooth_color() (in module pwtools.mpl)": [[630, "pwtools.mpl.smooth_color", false]], "smooth_color_func() (in module pwtools.mpl)": [[631, "pwtools.mpl.smooth_color_func", false]], "solve (in module pwtools._flib)": [[50, "pwtools._flib.solve", false]], "specialpointspath (class in pwtools.kpath)": [[572, "pwtools.kpath.SpecialPointsPath", false]], "spglib2struct() (in module pwtools.symmetry)": [[1373, "pwtools.symmetry.spglib2struct", false]], "spglib_get_primitive() (in module pwtools.symmetry)": [[1374, "pwtools.symmetry.spglib_get_primitive", false]], "spglib_get_spacegroup() (in module pwtools.symmetry)": [[1375, "pwtools.symmetry.spglib_get_spacegroup", false]], "spl (pwtools.eos.eosfit attribute)": [[505, "pwtools.eos.EosFit.spl", false]], "splev() (pwtools.num.spline method)": [[663, "pwtools.num.Spline.splev", false]], "spline (class in pwtools.num)": [[657, "pwtools.num.Spline", false]], "sql_column() (in module pwtools.sql)": [[1369, "pwtools.sql.sql_column", false]], "sql_column_old() (in module pwtools.sql)": [[1370, "pwtools.sql.sql_column_old", false]], "sql_matrix() (in module pwtools.sql)": [[1371, "pwtools.sql.sql_matrix", false]], "sqlentry (class in pwtools.sql)": [[1341, "pwtools.sql.SQLEntry", false]], "sqlitedb (class in pwtools.sql)": [[1342, "pwtools.sql.SQLiteDB", false]], "squared_dists() (in module pwtools.rbf.core)": [[1317, "pwtools.rbf.core.squared_dists", false]], "str2seq() (in module pwtools.common)": [[155, "pwtools.common.str2seq", false]], "str2tup() (in module pwtools.common)": [[156, "pwtools.common.str2tup", false]], "str_arr() (in module pwtools.common)": [[157, "pwtools.common.str_arr", false]], "stress_pwtools2ase() (in module pwtools.calculators)": [[123, "pwtools.calculators.stress_pwtools2ase", false]], "strides (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.strides", false], [62, "pwtools.atomic_data.strides", false]], "struct2atoms() (in module pwtools.crys)": [[442, "pwtools.crys.struct2atoms", false]], "struct2spglib() (in module pwtools.symmetry)": [[1376, "pwtools.symmetry.struct2spglib", false]], "struct2traj() (in module pwtools.crys)": [[443, "pwtools.crys.struct2traj", false]], "struct_str() (in module pwtools.lammps)": [[576, "pwtools.lammps.struct_str", false]], "structure (class in pwtools.crys)": [[269, "pwtools.crys.Structure", false]], "structurefileparser (class in pwtools.parse)": [[1206, "pwtools.parse.StructureFileParser", false]], "sum() (in module pwtools.num)": [[688, "pwtools.num.sum", false]], "svib() (pwtools.thermo.harmonicthermo method)": [[1387, "pwtools.thermo.HarmonicThermo.svib", false]], "symbols (in module pwtools.atomic_data)": [[66, "pwtools.atomic_data.symbols", false]], "system() (in module pwtools.common)": [[158, "pwtools.common.system", false]], "t (in module pwtools.atomic_data)": [[61, "pwtools.atomic_data.T", false], [62, "pwtools.atomic_data.T", false]], "t() (pwtools.timer.tagtimer method)": [[1406, "pwtools.timer.TagTimer.t", false]], "tagtimer (class in pwtools.timer)": [[1403, "pwtools.timer.TagTimer", false]], "template_replace() (in module pwtools.common)": [[159, "pwtools.common.template_replace", false]], "tensor2voigt() (in module pwtools.crys)": [[444, "pwtools.crys.tensor2voigt", false]], "tensor2voigt3d() (in module pwtools.crys)": [[445, "pwtools.crys.tensor2voigt3d", false]], "th (in module pwtools.constants)": [[207, "pwtools.constants.th", false]], "thart (in module pwtools.constants)": [[208, "pwtools.constants.thart", false]], "thart (in module pwtools.parse)": [[1268, "pwtools.parse.thart", false]], "timeaxis (pwtools.crys.fakeaseatoms attribute)": [[265, "pwtools.crys.FakeASEAtoms.timeaxis", false]], "timeaxis (pwtools.crys.structure attribute)": [[321, "pwtools.crys.Structure.timeaxis", false]], "timeaxis (pwtools.crys.trajectory attribute)": [[378, "pwtools.crys.Trajectory.timeaxis", false]], "timeaxis (pwtools.parse.cp2kdcdmdoutputfile attribute)": [[764, "pwtools.parse.Cp2kDcdMDOutputFile.timeaxis", false]], "timeaxis (pwtools.parse.cp2kmdoutputfile attribute)": [[804, "pwtools.parse.Cp2kMDOutputFile.timeaxis", false]], "timeaxis (pwtools.parse.cp2krelaxoutputfile attribute)": [[844, "pwtools.parse.Cp2kRelaxOutputFile.timeaxis", false]], "timeaxis (pwtools.parse.cpmdmdoutputfile attribute)": [[922, "pwtools.parse.CpmdMDOutputFile.timeaxis", false]], "timeaxis (pwtools.parse.lammpsdcdmdoutputfile attribute)": [[1007, "pwtools.parse.LammpsDcdMDOutputFile.timeaxis", false]], "timeaxis (pwtools.parse.lammpstextmdoutputfile attribute)": [[1048, "pwtools.parse.LammpsTextMDOutputFile.timeaxis", false]], "timeaxis (pwtools.parse.pwmdoutputfile attribute)": [[1120, "pwtools.parse.PwMDOutputFile.timeaxis", false]], "timeaxis (pwtools.parse.pwvcmdoutputfile attribute)": [[1201, "pwtools.parse.PwVCMDOutputFile.timeaxis", false]], "timeaxis (pwtools.parse.trajectoryfileparser attribute)": [[1254, "pwtools.parse.TrajectoryFileParser.timeaxis", false]], "tobool() (in module pwtools.common)": [[160, "pwtools.common.tobool", false]], "toslice() (in module pwtools.common)": [[161, "pwtools.common.toslice", false]], "traj_from_txt() (in module pwtools.parse)": [[1269, "pwtools.parse.traj_from_txt", false]], "trajectory (class in pwtools.crys)": [[325, "pwtools.crys.Trajectory", false]], "trajectoryfileparser (class in pwtools.parse)": [[1231, "pwtools.parse.TrajectoryFileParser", false]], "try_set_attr() (pwtools.base.flexiblegetters method)": [[84, "pwtools.base.FlexibleGetters.try_set_attr", false]], "try_set_attr() (pwtools.crys.fakeaseatoms method)": [[266, "pwtools.crys.FakeASEAtoms.try_set_attr", false]], "try_set_attr() (pwtools.crys.structure method)": [[322, "pwtools.crys.Structure.try_set_attr", false]], "try_set_attr() (pwtools.crys.trajectory method)": [[379, "pwtools.crys.Trajectory.try_set_attr", false]], "try_set_attr() (pwtools.crys.unitshandler method)": [[400, "pwtools.crys.UnitsHandler.try_set_attr", false]], "try_set_attr() (pwtools.eos.elkeosfit method)": [[495, "pwtools.eos.ElkEOSFit.try_set_attr", false]], "try_set_attr() (pwtools.eos.externeos method)": [[530, "pwtools.eos.ExternEOS.try_set_attr", false]], "try_set_attr() (pwtools.parse.ciffile method)": [[723, "pwtools.parse.CifFile.try_set_attr", false]], "try_set_attr() (pwtools.parse.cp2kdcdmdoutputfile method)": [[765, "pwtools.parse.Cp2kDcdMDOutputFile.try_set_attr", false]], "try_set_attr() (pwtools.parse.cp2kmdoutputfile method)": [[805, "pwtools.parse.Cp2kMDOutputFile.try_set_attr", false]], "try_set_attr() (pwtools.parse.cp2krelaxoutputfile method)": [[845, "pwtools.parse.Cp2kRelaxOutputFile.try_set_attr", false]], "try_set_attr() (pwtools.parse.cp2kscfoutputfile method)": [[875, "pwtools.parse.Cp2kSCFOutputFile.try_set_attr", false]], "try_set_attr() (pwtools.parse.cpmdmdoutputfile method)": [[923, "pwtools.parse.CpmdMDOutputFile.try_set_attr", false]], "try_set_attr() (pwtools.parse.cpmdscfoutputfile method)": [[958, "pwtools.parse.CpmdSCFOutputFile.try_set_attr", false]], "try_set_attr() (pwtools.parse.lammpsdcdmdoutputfile method)": [[1008, "pwtools.parse.LammpsDcdMDOutputFile.try_set_attr", false]], "try_set_attr() (pwtools.parse.lammpstextmdoutputfile method)": [[1049, "pwtools.parse.LammpsTextMDOutputFile.try_set_attr", false]], "try_set_attr() (pwtools.parse.pdbfile method)": [[1077, "pwtools.parse.PDBFile.try_set_attr", false]], "try_set_attr() (pwtools.parse.pwmdoutputfile method)": [[1121, "pwtools.parse.PwMDOutputFile.try_set_attr", false]], "try_set_attr() (pwtools.parse.pwscfoutputfile method)": [[1157, "pwtools.parse.PwSCFOutputFile.try_set_attr", false]], "try_set_attr() (pwtools.parse.pwvcmdoutputfile method)": [[1202, "pwtools.parse.PwVCMDOutputFile.try_set_attr", false]], "try_set_attr() (pwtools.parse.structurefileparser method)": [[1228, "pwtools.parse.StructureFileParser.try_set_attr", false]], "try_set_attr() (pwtools.parse.trajectoryfileparser method)": [[1255, "pwtools.parse.TrajectoryFileParser.try_set_attr", false]], "try_set_attr_lst() (pwtools.base.flexiblegetters method)": [[85, "pwtools.base.FlexibleGetters.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.crys.fakeaseatoms method)": [[267, "pwtools.crys.FakeASEAtoms.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.crys.structure method)": [[323, "pwtools.crys.Structure.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.crys.trajectory method)": [[380, "pwtools.crys.Trajectory.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.crys.unitshandler method)": [[401, "pwtools.crys.UnitsHandler.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.eos.elkeosfit method)": [[496, "pwtools.eos.ElkEOSFit.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.eos.externeos method)": [[531, "pwtools.eos.ExternEOS.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.ciffile method)": [[724, "pwtools.parse.CifFile.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.cp2kdcdmdoutputfile method)": [[766, "pwtools.parse.Cp2kDcdMDOutputFile.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.cp2kmdoutputfile method)": [[806, "pwtools.parse.Cp2kMDOutputFile.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.cp2krelaxoutputfile method)": [[846, "pwtools.parse.Cp2kRelaxOutputFile.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.cp2kscfoutputfile method)": [[876, "pwtools.parse.Cp2kSCFOutputFile.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.cpmdmdoutputfile method)": [[924, "pwtools.parse.CpmdMDOutputFile.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.cpmdscfoutputfile method)": [[959, "pwtools.parse.CpmdSCFOutputFile.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.lammpsdcdmdoutputfile method)": [[1009, "pwtools.parse.LammpsDcdMDOutputFile.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.lammpstextmdoutputfile method)": [[1050, "pwtools.parse.LammpsTextMDOutputFile.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.pdbfile method)": [[1078, "pwtools.parse.PDBFile.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.pwmdoutputfile method)": [[1122, "pwtools.parse.PwMDOutputFile.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.pwscfoutputfile method)": [[1158, "pwtools.parse.PwSCFOutputFile.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.pwvcmdoutputfile method)": [[1203, "pwtools.parse.PwVCMDOutputFile.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.structurefileparser method)": [[1229, "pwtools.parse.StructureFileParser.try_set_attr_lst", false]], "try_set_attr_lst() (pwtools.parse.trajectoryfileparser method)": [[1256, "pwtools.parse.TrajectoryFileParser.try_set_attr_lst", false]], "tryd (in module pwtools.constants)": [[209, "pwtools.constants.tryd", false]], "tup2str() (in module pwtools.common)": [[162, "pwtools.common.tup2str", false]], "txt_maxdim (in module pwtools.arrayio)": [[55, "pwtools.arrayio.TXT_MAXDIM", false]], "unique2d() (in module pwtools.comb)": [[126, "pwtools.comb.unique2d", false]], "unitshandler (class in pwtools.crys)": [[382, "pwtools.crys.UnitsHandler", false]], "update() (pwtools.mpl.data2d method)": [[579, "pwtools.mpl.Data2D.update", false]], "update() (pwtools.mpl.data3d method)": [[582, "pwtools.mpl.Data3D.update", false]], "update_units() (pwtools.crys.fakeaseatoms method)": [[268, "pwtools.crys.FakeASEAtoms.update_units", false]], "update_units() (pwtools.crys.structure method)": [[324, "pwtools.crys.Structure.update_units", false]], "update_units() (pwtools.crys.trajectory method)": [[381, "pwtools.crys.Trajectory.update_units", false]], "update_units() (pwtools.crys.unitshandler method)": [[402, "pwtools.crys.UnitsHandler.update_units", false]], "update_units() (pwtools.parse.ciffile method)": [[725, "pwtools.parse.CifFile.update_units", false]], "update_units() (pwtools.parse.cp2kdcdmdoutputfile method)": [[767, "pwtools.parse.Cp2kDcdMDOutputFile.update_units", false]], "update_units() (pwtools.parse.cp2kmdoutputfile method)": [[807, "pwtools.parse.Cp2kMDOutputFile.update_units", false]], "update_units() (pwtools.parse.cp2krelaxoutputfile method)": [[847, "pwtools.parse.Cp2kRelaxOutputFile.update_units", false]], "update_units() (pwtools.parse.cp2kscfoutputfile method)": [[877, "pwtools.parse.Cp2kSCFOutputFile.update_units", false]], "update_units() (pwtools.parse.cpmdmdoutputfile method)": [[925, "pwtools.parse.CpmdMDOutputFile.update_units", false]], "update_units() (pwtools.parse.cpmdscfoutputfile method)": [[960, "pwtools.parse.CpmdSCFOutputFile.update_units", false]], "update_units() (pwtools.parse.lammpsdcdmdoutputfile method)": [[1010, "pwtools.parse.LammpsDcdMDOutputFile.update_units", false]], "update_units() (pwtools.parse.lammpstextmdoutputfile method)": [[1051, "pwtools.parse.LammpsTextMDOutputFile.update_units", false]], "update_units() (pwtools.parse.pdbfile method)": [[1079, "pwtools.parse.PDBFile.update_units", false]], "update_units() (pwtools.parse.pwmdoutputfile method)": [[1123, "pwtools.parse.PwMDOutputFile.update_units", false]], "update_units() (pwtools.parse.pwscfoutputfile method)": [[1159, "pwtools.parse.PwSCFOutputFile.update_units", false]], "update_units() (pwtools.parse.pwvcmdoutputfile method)": [[1204, "pwtools.parse.PwVCMDOutputFile.update_units", false]], "update_units() (pwtools.parse.structurefileparser method)": [[1230, "pwtools.parse.StructureFileParser.update_units", false]], "update_units() (pwtools.parse.trajectoryfileparser method)": [[1257, "pwtools.parse.TrajectoryFileParser.update_units", false]], "use_jax (in module pwtools.config)": [[164, "pwtools.config.use_jax", false]], "vacf (in module pwtools._flib)": [[51, "pwtools._flib.vacf", false]], "vacf_pdos() (in module pwtools.pydos)": [[1293, "pwtools.pydos.vacf_pdos", false]], "vander() (in module pwtools.num)": [[689, "pwtools.num.vander", false]], "vect_loops (in module pwtools._flib)": [[52, "pwtools._flib.vect_loops", false]], "velocity_traj() (in module pwtools.crys)": [[446, "pwtools.crys.velocity_traj", false]], "verbose (in module pwtools.verbose)": [[1407, "pwtools.verbose.VERBOSE", false]], "verbose() (in module pwtools.verbose)": [[1408, "pwtools.verbose.verbose", false]], "vibrational_entropy() (pwtools.thermo.harmonicthermo method)": [[1388, "pwtools.thermo.HarmonicThermo.vibrational_entropy", false]], "vibrational_free_energy() (pwtools.thermo.harmonicthermo method)": [[1389, "pwtools.thermo.HarmonicThermo.vibrational_free_energy", false]], "vibrational_internal_energy() (pwtools.thermo.harmonicthermo method)": [[1390, "pwtools.thermo.HarmonicThermo.vibrational_internal_energy", false]], "view_avogadro (in module pwtools.visualize)": [[1412, "pwtools.visualize.view_avogadro", false]], "view_jmol (in module pwtools.visualize)": [[1413, "pwtools.visualize.view_jmol", false]], "view_vmd_axsf (in module pwtools.visualize)": [[1414, "pwtools.visualize.view_vmd_axsf", false]], "view_vmd_xyz (in module pwtools.visualize)": [[1415, "pwtools.visualize.view_vmd_xyz", false]], "view_xcrysden (in module pwtools.visualize)": [[1416, "pwtools.visualize.view_xcrysden", false]], "viewfactory (class in pwtools.visualize)": [[1409, "pwtools.visualize.ViewFactory", false]], "vinet (class in pwtools.eos)": [[535, "pwtools.eos.Vinet", false]], "vlinspace() (in module pwtools.num)": [[690, "pwtools.num.vlinspace", false]], "vmd_measure_gofr() (in module pwtools.crys)": [[447, "pwtools.crys.vmd_measure_gofr", false]], "voigt2tensor() (in module pwtools.crys)": [[448, "pwtools.crys.voigt2tensor", false]], "voigt2tensor3d() (in module pwtools.crys)": [[449, "pwtools.crys.voigt2tensor3d", false]], "volume_cc() (in module pwtools.crys)": [[450, "pwtools.crys.volume_cc", false]], "volume_cc3d() (in module pwtools.crys)": [[451, "pwtools.crys.volume_cc3d", false]], "volume_cell() (in module pwtools.crys)": [[452, "pwtools.crys.volume_cell", false]], "volume_cell3d() (in module pwtools.crys)": [[453, "pwtools.crys.volume_cell3d", false]], "welch() (in module pwtools.signal)": [[1340, "pwtools.signal.welch", false]], "wien_sgroup_input() (in module pwtools.io)": [[565, "pwtools.io.wien_sgroup_input", false]], "with_traceback() (pwtools.eos.maxderivexception method)": [[533, "pwtools.eos.MaxDerivException.with_traceback", false]], "with_traceback() (pwtools.random.randomstructurefail method)": [[1297, "pwtools.random.RandomStructureFail.with_traceback", false]], "write() (pwtools.batch.filetemplate method)": [[91, "pwtools.batch.FileTemplate.write", false]], "write_axsf() (in module pwtools.io)": [[566, "pwtools.io.write_axsf", false]], "write_cif() (in module pwtools.io)": [[567, "pwtools.io.write_cif", false]], "write_h5() (in module pwtools.io)": [[568, "pwtools.io.write_h5", false]], "write_input() (pwtools.batch.calculation method)": [[88, "pwtools.batch.Calculation.write_input", false]], "write_input() (pwtools.batch.parameterstudy method)": [[97, "pwtools.batch.ParameterStudy.write_input", false]], "write_input() (pwtools.calculators.lammps method)": [[111, "pwtools.calculators.Lammps.write_input", false]], "write_input() (pwtools.calculators.pwscf method)": [[119, "pwtools.calculators.Pwscf.write_input", false]], "write_lammps() (in module pwtools.io)": [[569, "pwtools.io.write_lammps", false]], "write_wien_sgroup() (in module pwtools.io)": [[570, "pwtools.io.write_wien_sgroup", false]], "write_xyz() (in module pwtools.io)": [[571, "pwtools.io.write_xyz", false]], "writesql() (pwtools.batch.filetemplate method)": [[92, "pwtools.batch.FileTemplate.writesql", false]], "writetxt() (in module pwtools.arrayio)": [[60, "pwtools.arrayio.writetxt", false]]}, "objects": {"pwtools": [[0, 0, 0, "-", "_dcd"], [1, 0, 0, "-", "_flib"], [2, 0, 0, "-", "arrayio"], [3, 0, 0, "-", "atomic_data"], [4, 0, 0, "-", "base"], [5, 0, 0, "-", "batch"], [6, 0, 0, "-", "calculators"], [7, 0, 0, "-", "comb"], [8, 0, 0, "-", "common"], [9, 0, 0, "-", "config"], [10, 0, 0, "-", "constants"], [11, 0, 0, "-", "crys"], [12, 0, 0, "-", "dcd"], [13, 0, 0, "-", "decorators"], [14, 0, 0, "-", "eos"], [15, 0, 0, "-", "io"], [16, 0, 0, "-", "kpath"], [17, 0, 0, "-", "lammps"], [18, 0, 0, "-", "mpl"], [19, 0, 0, "-", "mttk"], [20, 0, 0, "-", "num"], [21, 0, 0, "-", "parse"], [22, 0, 0, "-", "pwscf"], [23, 0, 0, "-", "pydos"], [24, 0, 0, "-", "random"], [27, 0, 0, "-", "regex"], [28, 0, 0, "-", "signal"], [29, 0, 0, "-", "sql"], [30, 0, 0, "-", "symmetry"], [31, 0, 0, "-", "thermo"], [32, 0, 0, "-", "timer"], [33, 0, 0, "-", "verbose"], [34, 0, 0, "-", "visualize"]], "pwtools._dcd": [[36, 1, 1, "", "get_dcd_file_info"], [37, 1, 1, "", "open_file"], [38, 1, 1, "", "read_dcd_data"], [39, 1, 1, "", "read_dcd_data_from_unit"], [40, 1, 1, "", "read_dcd_header_from_unit"]], "pwtools._flib": [[41, 1, 1, "", "acorr"], [42, 1, 1, "", "angles"], [43, 1, 1, "", "cart2frac"], [44, 1, 1, "", "cart2frac_traj"], [45, 1, 1, "", "distances_traj"], [46, 1, 1, "", "distsq"], [47, 1, 1, "", "distsq_frac"], [48, 1, 1, "", "frac2cart"], [49, 1, 1, "", "frac2cart_traj"], [50, 1, 1, "", "solve"], [51, 1, 1, "", "vacf"], [52, 1, 1, "", "vect_loops"]], "pwtools.arrayio": [[53, 1, 1, "", "HEADER_COMMENT"], [54, 1, 1, "", "HEADER_MAXLINES"], [55, 1, 1, "", "TXT_MAXDIM"], [56, 2, 1, "", "_read_header_config"], [57, 2, 1, "", "_write_header_config"], [58, 2, 1, "", "arr2d_to_3d"], [59, 2, 1, "", "readtxt"], [60, 2, 1, "", "writetxt"]], "pwtools.atomic_data": [[62, 3, 1, "", "T"], [62, 3, 1, "", "base"], [61, 1, 1, "", "covalent_radii"], [62, 3, 1, "", "ctypes"], [62, 3, 1, "", "data"], [62, 3, 1, "", "dtype"], [62, 3, 1, "", "flags"], [62, 3, 1, "", "flat"], [62, 3, 1, "", "imag"], [62, 3, 1, "", "itemsize"], [62, 1, 1, "", "masses"], [63, 1, 1, "", "missing"], [62, 3, 1, "", "nbytes"], [62, 3, 1, "", "ndim"], [64, 1, 1, "", "numbers"], [65, 1, 1, "", "pt"], [62, 3, 1, "", "real"], [62, 3, 1, "", "shape"], [62, 3, 1, "", "size"], [62, 3, 1, "", "strides"], [66, 1, 1, "", "symbols"]], "pwtools.base": [[67, 4, 1, "", "FlexibleGetters"]], "pwtools.base.FlexibleGetters": [[67, 5, 1, "", "__init__"], [68, 5, 1, "", "assert_attr"], [69, 5, 1, "", "assert_attr_lst"], [70, 5, 1, "", "assert_set_attr"], [71, 5, 1, "", "assert_set_attr_lst"], [72, 5, 1, "", "check_set_attr"], [73, 5, 1, "", "check_set_attr_lst"], [74, 5, 1, "", "dump"], [75, 5, 1, "", "get_return_attr"], [76, 5, 1, "", "init_attr_lst"], [77, 5, 1, "", "is_set_attr"], [78, 5, 1, "", "is_set_attr_lst"], [79, 5, 1, "", "load"], [80, 5, 1, "", "raw_return"], [81, 5, 1, "", "raw_slice_get"], [82, 5, 1, "", "set_all"], [83, 5, 1, "", "set_attr_lst"], [84, 5, 1, "", "try_set_attr"], [85, 5, 1, "", "try_set_attr_lst"]], "pwtools.batch": [[86, 4, 1, "", "Calculation"], [89, 4, 1, "", "Case"], [90, 4, 1, "", "FileTemplate"], [93, 4, 1, "", "Machine"], [96, 4, 1, "", "ParameterStudy"], [98, 2, 1, "", "conv_table"], [99, 2, 1, "", "default_repl_keys"]], "pwtools.batch.Calculation": [[86, 5, 1, "", "__init__"], [87, 5, 1, "", "get_sql_record"], [88, 5, 1, "", "write_input"]], "pwtools.batch.Case": [[89, 5, 1, "", "__init__"]], "pwtools.batch.FileTemplate": [[90, 5, 1, "", "__init__"], [91, 5, 1, "", "write"], [92, 5, 1, "", "writesql"]], "pwtools.batch.Machine": [[93, 5, 1, "", "__init__"], [94, 5, 1, "", "get_jobfile_basename"], [95, 5, 1, "", "get_sql_record"]], "pwtools.batch.ParameterStudy": [[96, 5, 1, "", "__init__"], [97, 5, 1, "", "write_input"]], "pwtools.calculators": [[100, 4, 1, "", "CalculatorBase"], [103, 4, 1, "", "FileIOCalculator"], [104, 4, 1, "", "Lammps"], [112, 4, 1, "", "Pwscf"], [120, 2, 1, "", "_ase_missing"], [121, 2, 1, "", "find_exe"], [122, 2, 1, "", "kpts2mp"], [123, 2, 1, "", "stress_pwtools2ase"]], "pwtools.calculators.CalculatorBase": [[100, 5, 1, "", "__init__"], [101, 5, 1, "", "fill_infile_templ"], [102, 5, 1, "", "init_params_from_input"]], "pwtools.calculators.FileIOCalculator": [[103, 5, 1, "", "__init__"]], "pwtools.calculators.Lammps": [[104, 5, 1, "", "__init__"], [105, 3, 1, "", "default_parameters"], [106, 5, 1, "", "fill_infile_templ"], [107, 3, 1, "", "implemented_properties"], [108, 3, 1, "", "infile_templ"], [109, 5, 1, "", "init_params_from_input"], [110, 5, 1, "", "read_results"], [111, 5, 1, "", "write_input"]], "pwtools.calculators.Pwscf": [[112, 5, 1, "", "__init__"], [113, 3, 1, "", "default_parameters"], [114, 5, 1, "", "fill_infile_templ"], [115, 3, 1, "", "implemented_properties"], [116, 3, 1, "", "infile_templ"], [117, 5, 1, "", "init_params_from_input"], [118, 5, 1, "", "read_results"], [119, 5, 1, "", "write_input"]], "pwtools.comb": [[124, 2, 1, "", "_ensure_list"], [125, 2, 1, "", "nested_loops"], [126, 2, 1, "", "unique2d"]], "pwtools.common": [[127, 1, 1, "", "EPS"], [128, 2, 1, "", "add_to_config"], [129, 2, 1, "", "asseq"], [130, 2, 1, "", "assert_cond"], [131, 2, 1, "", "backtick"], [132, 2, 1, "", "backup"], [133, 2, 1, "", "cpickle_load"], [134, 2, 1, "", "dict2class"], [135, 2, 1, "", "dict2str"], [136, 2, 1, "", "ffloat"], [137, 2, 1, "", "file_read"], [138, 2, 1, "", "file_readlines"], [139, 2, 1, "", "file_template_replace"], [140, 2, 1, "", "file_write"], [141, 2, 1, "", "fix_eps"], [142, 2, 1, "", "flatten"], [143, 2, 1, "", "fpj"], [144, 2, 1, "", "frepr"], [145, 2, 1, "", "fullpath"], [146, 2, 1, "", "fullpathjoin"], [147, 2, 1, "", "get_filename"], [148, 2, 1, "", "iflatten"], [149, 2, 1, "", "is_seq"], [150, 2, 1, "", "makedirs"], [151, 2, 1, "", "permit_sigpipe"], [152, 2, 1, "", "pop_from_list"], [153, 2, 1, "", "print_dct"], [154, 2, 1, "", "seq2str"], [155, 2, 1, "", "str2seq"], [156, 2, 1, "", "str2tup"], [157, 2, 1, "", "str_arr"], [158, 2, 1, "", "system"], [159, 2, 1, "", "template_replace"], [160, 2, 1, "", "tobool"], [161, 2, 1, "", "toslice"], [162, 2, 1, "", "tup2str"]], "pwtools.config": [[163, 1, 1, "", "name"], [164, 1, 1, "", "use_jax"]], "pwtools.constants": [[165, 1, 1, "", "Ang"], [166, 1, 1, "", "Angstrom"], [167, 1, 1, "", "Bohr"], [168, 1, 1, "", "Bohr_to_Ang"], [169, 1, 1, "", "Eh"], [170, 1, 1, "", "Eryd"], [171, 1, 1, "", "GPa"], [172, 1, 1, "", "Ha"], [173, 1, 1, "", "Ha_to_eV"], [174, 1, 1, "", "Hartree"], [175, 1, 1, "", "J_to_eV"], [176, 1, 1, "", "J_to_rcm"], [177, 1, 1, "", "R"], [178, 1, 1, "", "Ry"], [179, 1, 1, "", "Ry_to_Ha"], [180, 1, 1, "", "Ry_to_Hz"], [181, 1, 1, "", "Ry_to_J"], [182, 1, 1, "", "Ry_to_eV"], [183, 1, 1, "", "Ry_to_rcm"], [184, 1, 1, "", "Rydberg"], [185, 1, 1, "", "a0"], [186, 1, 1, "", "a0_to_A"], [187, 1, 1, "", "alpha"], [188, 1, 1, "", "amu"], [189, 1, 1, "", "avo"], [190, 1, 1, "", "c0"], [191, 1, 1, "", "dyn"], [192, 1, 1, "", "e0"], [193, 1, 1, "", "eV"], [194, 1, 1, "", "eV_by_Ang3_to_GPa"], [195, 1, 1, "", "eV_by_Ang3_to_Pa"], [196, 1, 1, "", "eps0"], [197, 1, 1, "", "fs"], [198, 1, 1, "", "h"], [199, 1, 1, "", "hbar"], [200, 1, 1, "", "hplanck"], [201, 1, 1, "", "kb"], [202, 1, 1, "", "m0"], [203, 1, 1, "", "mu0"], [204, 1, 1, "", "pi"], [205, 1, 1, "", "ps"], [206, 1, 1, "", "rcm_to_Hz"], [207, 1, 1, "", "th"], [208, 1, 1, "", "thart"], [209, 1, 1, "", "tryd"]], "pwtools.crys": [[210, 1, 1, "", "Angstrom"], [211, 4, 1, "", "FakeASEAtoms"], [269, 4, 1, "", "Structure"], [325, 4, 1, "", "Trajectory"], [382, 4, 1, "", "UnitsHandler"], [403, 2, 1, "", "_trans"], [404, 2, 1, "", "align_cart"], [405, 2, 1, "", "angle"], [406, 2, 1, "", "angles"], [407, 2, 1, "", "atoms2struct"], [408, 2, 1, "", "call_vmd_measure_gofr"], [409, 2, 1, "", "cc2cell"], [410, 2, 1, "", "cc2cell3d"], [411, 2, 1, "", "cc2celldm"], [412, 2, 1, "", "cell2cc"], [413, 2, 1, "", "cell2cc3d"], [414, 2, 1, "", "celldm2cc"], [415, 2, 1, "", "center_on_atom"], [416, 2, 1, "", "compress"], [417, 2, 1, "", "concatenate"], [418, 2, 1, "", "coord_trans"], [419, 2, 1, "", "coord_trans3d"], [420, 2, 1, "", "distances"], [421, 2, 1, "", "distances_traj"], [422, 2, 1, "", "grid_in_cell"], [423, 2, 1, "", "kgrid"], [424, 2, 1, "", "mean"], [425, 2, 1, "", "min_image_convention"], [426, 2, 1, "", "mix"], [427, 2, 1, "", "nearest_neighbors"], [428, 2, 1, "", "nearest_neighbors_from_dists"], [429, 2, 1, "", "nearest_neighbors_struct"], [430, 2, 1, "", "pbc_wrap"], [431, 2, 1, "", "pbc_wrap_coords"], [432, 1, 1, "", "pi"], [433, 2, 1, "", "populated_attrs"], [434, 2, 1, "", "recip_cell"], [435, 2, 1, "", "rmax_smith"], [436, 2, 1, "", "rmsd"], [437, 2, 1, "", "rpdf"], [438, 2, 1, "", "scell"], [439, 2, 1, "", "scell3d"], [440, 2, 1, "", "scell_mask"], [441, 2, 1, "", "smooth"], [442, 2, 1, "", "struct2atoms"], [443, 2, 1, "", "struct2traj"], [444, 2, 1, "", "tensor2voigt"], [445, 2, 1, "", "tensor2voigt3d"], [446, 2, 1, "", "velocity_traj"], [447, 2, 1, "", "vmd_measure_gofr"], [448, 2, 1, "", "voigt2tensor"], [449, 2, 1, "", "voigt2tensor3d"], [450, 2, 1, "", "volume_cc"], [451, 2, 1, "", "volume_cc3d"], [452, 2, 1, "", "volume_cell"], [453, 2, 1, "", "volume_cell3d"]], "pwtools.crys.FakeASEAtoms": [[211, 5, 1, "", "__init__"], [212, 5, 1, "", "apply_units"], [213, 5, 1, "", "assert_attr"], [214, 5, 1, "", "assert_attr_lst"], [215, 5, 1, "", "assert_set_attr"], [216, 5, 1, "", "assert_set_attr_lst"], [217, 5, 1, "", "check_set_attr"], [218, 5, 1, "", "check_set_attr_lst"], [219, 5, 1, "", "compress"], [220, 5, 1, "", "copy"], [221, 5, 1, "", "dump"], [222, 5, 1, "", "get_ase_atoms"], [223, 5, 1, "", "get_atomic_numbers"], [224, 5, 1, "", "get_cell"], [225, 5, 1, "", "get_coords"], [226, 5, 1, "", "get_coords_frac"], [227, 5, 1, "", "get_cryst_const"], [228, 5, 1, "", "get_ekin"], [229, 5, 1, "", "get_etot"], [230, 5, 1, "", "get_fake_ase_atoms"], [231, 5, 1, "", "get_forces"], [232, 5, 1, "", "get_magnetic_moments"], [233, 5, 1, "", "get_mass"], [234, 5, 1, "", "get_mass_unique"], [235, 5, 1, "", "get_natoms"], [236, 5, 1, "", "get_nspecies"], [237, 5, 1, "", "get_nstep"], [238, 5, 1, "", "get_ntypat"], [239, 5, 1, "", "get_order"], [240, 5, 1, "", "get_pressure"], [241, 5, 1, "", "get_return_attr"], [242, 5, 1, "", "get_spglib"], [243, 5, 1, "", "get_stress"], [244, 5, 1, "", "get_symbols"], [245, 5, 1, "", "get_symbols_unique"], [246, 5, 1, "", "get_temperature"], [247, 5, 1, "", "get_time"], [248, 5, 1, "", "get_timestep"], [249, 5, 1, "", "get_traj"], [250, 5, 1, "", "get_typat"], [251, 5, 1, "", "get_velocity"], [252, 5, 1, "", "get_volume"], [253, 5, 1, "", "get_znucl"], [254, 5, 1, "", "get_znucl_unique"], [255, 5, 1, "", "init_attr_lst"], [256, 5, 1, "", "is_set_attr"], [257, 5, 1, "", "is_set_attr_lst"], [258, 3, 1, "", "is_struct"], [259, 3, 1, "", "is_traj"], [260, 5, 1, "", "load"], [261, 5, 1, "", "raw_return"], [262, 5, 1, "", "raw_slice_get"], [263, 5, 1, "", "set_all"], [264, 5, 1, "", "set_attr_lst"], [265, 3, 1, "", "timeaxis"], [266, 5, 1, "", "try_set_attr"], [267, 5, 1, "", "try_set_attr_lst"], [268, 5, 1, "", "update_units"]], "pwtools.crys.Structure": [[269, 5, 1, "", "__init__"], [270, 5, 1, "", "apply_units"], [271, 5, 1, "", "assert_attr"], [272, 5, 1, "", "assert_attr_lst"], [273, 5, 1, "", "assert_set_attr"], [274, 5, 1, "", "assert_set_attr_lst"], [275, 5, 1, "", "check_set_attr"], [276, 5, 1, "", "check_set_attr_lst"], [277, 5, 1, "", "compress"], [278, 5, 1, "", "copy"], [279, 5, 1, "", "dump"], [280, 5, 1, "", "get_ase_atoms"], [281, 5, 1, "", "get_cell"], [282, 5, 1, "", "get_coords"], [283, 5, 1, "", "get_coords_frac"], [284, 5, 1, "", "get_cryst_const"], [285, 5, 1, "", "get_ekin"], [286, 5, 1, "", "get_etot"], [287, 5, 1, "", "get_fake_ase_atoms"], [288, 5, 1, "", "get_forces"], [289, 5, 1, "", "get_mass"], [290, 5, 1, "", "get_mass_unique"], [291, 5, 1, "", "get_natoms"], [292, 5, 1, "", "get_nspecies"], [293, 5, 1, "", "get_nstep"], [294, 5, 1, "", "get_ntypat"], [295, 5, 1, "", "get_order"], [296, 5, 1, "", "get_pressure"], [297, 5, 1, "", "get_return_attr"], [298, 5, 1, "", "get_spglib"], [299, 5, 1, "", "get_stress"], [300, 5, 1, "", "get_symbols"], [301, 5, 1, "", "get_symbols_unique"], [302, 5, 1, "", "get_temperature"], [303, 5, 1, "", "get_time"], [304, 5, 1, "", "get_timestep"], [305, 5, 1, "", "get_traj"], [306, 5, 1, "", "get_typat"], [307, 5, 1, "", "get_velocity"], [308, 5, 1, "", "get_volume"], [309, 5, 1, "", "get_znucl"], [310, 5, 1, "", "get_znucl_unique"], [311, 5, 1, "", "init_attr_lst"], [312, 5, 1, "", "is_set_attr"], [313, 5, 1, "", "is_set_attr_lst"], [314, 3, 1, "", "is_struct"], [315, 3, 1, "", "is_traj"], [316, 5, 1, "", "load"], [317, 5, 1, "", "raw_return"], [318, 5, 1, "", "raw_slice_get"], [319, 5, 1, "", "set_all"], [320, 5, 1, "", "set_attr_lst"], [321, 3, 1, "", "timeaxis"], [322, 5, 1, "", "try_set_attr"], [323, 5, 1, "", "try_set_attr_lst"], [324, 5, 1, "", "update_units"]], "pwtools.crys.Trajectory": [[326, 5, 1, "", "__getitem__"], [325, 5, 1, "", "__init__"], [327, 5, 1, "", "apply_units"], [328, 5, 1, "", "assert_attr"], [329, 5, 1, "", "assert_attr_lst"], [330, 5, 1, "", "assert_set_attr"], [331, 5, 1, "", "assert_set_attr_lst"], [332, 5, 1, "", "check_set_attr"], [333, 5, 1, "", "check_set_attr_lst"], [334, 5, 1, "", "compress"], [335, 5, 1, "", "copy"], [336, 5, 1, "", "dump"], [337, 5, 1, "", "get_ase_atoms"], [338, 5, 1, "", "get_cell"], [339, 5, 1, "", "get_coords"], [340, 5, 1, "", "get_coords_frac"], [341, 5, 1, "", "get_cryst_const"], [342, 5, 1, "", "get_ekin"], [343, 5, 1, "", "get_etot"], [344, 5, 1, "", "get_fake_ase_atoms"], [345, 5, 1, "", "get_forces"], [346, 5, 1, "", "get_mass"], [347, 5, 1, "", "get_mass_unique"], [348, 5, 1, "", "get_natoms"], [349, 5, 1, "", "get_nspecies"], [350, 5, 1, "", "get_nstep"], [351, 5, 1, "", "get_ntypat"], [352, 5, 1, "", "get_order"], [353, 5, 1, "", "get_pressure"], [354, 5, 1, "", "get_return_attr"], [355, 5, 1, "", "get_spglib"], [356, 5, 1, "", "get_stress"], [357, 5, 1, "", "get_symbols"], [358, 5, 1, "", "get_symbols_unique"], [359, 5, 1, "", "get_temperature"], [360, 5, 1, "", "get_time"], [361, 5, 1, "", "get_timestep"], [362, 5, 1, "", "get_traj"], [363, 5, 1, "", "get_typat"], [364, 5, 1, "", "get_velocity"], [365, 5, 1, "", "get_volume"], [366, 5, 1, "", "get_znucl"], [367, 5, 1, "", "get_znucl_unique"], [368, 5, 1, "", "init_attr_lst"], [369, 5, 1, "", "is_set_attr"], [370, 5, 1, "", "is_set_attr_lst"], [371, 3, 1, "", "is_struct"], [372, 3, 1, "", "is_traj"], [373, 5, 1, "", "load"], [374, 5, 1, "", "raw_return"], [375, 5, 1, "", "raw_slice_get"], [376, 5, 1, "", "set_all"], [377, 5, 1, "", "set_attr_lst"], [378, 3, 1, "", "timeaxis"], [379, 5, 1, "", "try_set_attr"], [380, 5, 1, "", "try_set_attr_lst"], [381, 5, 1, "", "update_units"]], "pwtools.crys.UnitsHandler": [[382, 5, 1, "", "__init__"], [383, 5, 1, "", "apply_units"], [384, 5, 1, "", "assert_attr"], [385, 5, 1, "", "assert_attr_lst"], [386, 5, 1, "", "assert_set_attr"], [387, 5, 1, "", "assert_set_attr_lst"], [388, 5, 1, "", "check_set_attr"], [389, 5, 1, "", "check_set_attr_lst"], [390, 5, 1, "", "dump"], [391, 5, 1, "", "get_return_attr"], [392, 5, 1, "", "init_attr_lst"], [393, 5, 1, "", "is_set_attr"], [394, 5, 1, "", "is_set_attr_lst"], [395, 5, 1, "", "load"], [396, 5, 1, "", "raw_return"], [397, 5, 1, "", "raw_slice_get"], [398, 5, 1, "", "set_all"], [399, 5, 1, "", "set_attr_lst"], [400, 5, 1, "", "try_set_attr"], [401, 5, 1, "", "try_set_attr_lst"], [402, 5, 1, "", "update_units"]], "pwtools.dcd": [[454, 1, 1, "", "HEADER_DTYPE"], [455, 1, 1, "", "HEADER_TYPES"], [456, 2, 1, "", "read_dcd_data"], [457, 2, 1, "", "read_dcd_data_f"], [458, 2, 1, "", "read_dcd_data_ref"], [459, 2, 1, "", "read_dcd_header"]], "pwtools.decorators": [[460, 2, 1, "", "crys_add_doc"], [461, 4, 1, "", "lazyprop"], [462, 2, 1, "", "open_and_close"]], "pwtools.decorators.lazyprop": [[461, 5, 1, "", "__init__"]], "pwtools.eos": [[463, 1, 1, "", "Ang"], [464, 1, 1, "", "Bohr"], [465, 4, 1, "", "EVFunction"], [471, 4, 1, "", "ElkEOSFit"], [497, 4, 1, "", "EosFit"], [506, 4, 1, "", "ExternEOS"], [532, 1, 1, "", "Ha"], [533, 6, 1, "", "MaxDerivException"], [534, 1, 1, "", "Ry"], [535, 4, 1, "", "Vinet"], [541, 2, 1, "", "_vinet"], [542, 2, 1, "", "_vinet_deriv1"], [543, 2, 1, "", "_vinet_deriv2"], [544, 1, 1, "", "eV"], [545, 1, 1, "", "eV_by_Ang3_to_GPa"]], "pwtools.eos.EVFunction": [[465, 5, 1, "", "__call__"], [465, 5, 1, "", "__init__"], [466, 5, 1, "", "dct2lst"], [467, 5, 1, "", "deriv"], [468, 5, 1, "", "evaluate"], [469, 5, 1, "", "get_min"], [470, 5, 1, "", "lst2dct"]], "pwtools.eos.ElkEOSFit": [[471, 5, 1, "", "__init__"], [472, 5, 1, "", "assert_attr"], [473, 5, 1, "", "assert_attr_lst"], [474, 5, 1, "", "assert_set_attr"], [475, 5, 1, "", "assert_set_attr_lst"], [476, 5, 1, "", "calc_bv"], [477, 5, 1, "", "check_set_attr"], [478, 5, 1, "", "check_set_attr_lst"], [479, 5, 1, "", "dump"], [480, 5, 1, "", "fit"], [481, 5, 1, "", "get_min"], [482, 5, 1, "", "get_return_attr"], [483, 5, 1, "", "get_spl_bv"], [484, 5, 1, "", "get_spl_ev"], [485, 5, 1, "", "get_spl_pv"], [486, 5, 1, "", "init_attr_lst"], [487, 5, 1, "", "is_set_attr"], [488, 5, 1, "", "is_set_attr_lst"], [489, 5, 1, "", "load"], [490, 5, 1, "", "raw_return"], [491, 5, 1, "", "raw_slice_get"], [492, 5, 1, "", "set_all"], [493, 5, 1, "", "set_attr_lst"], [494, 5, 1, "", "set_bv_method"], [495, 5, 1, "", "try_set_attr"], [496, 5, 1, "", "try_set_attr_lst"]], "pwtools.eos.EosFit": [[497, 5, 1, "", "__call__"], [497, 5, 1, "", "__init__"], [498, 5, 1, "", "bulkmod"], [499, 5, 1, "", "fit"], [500, 5, 1, "", "get_max"], [501, 5, 1, "", "get_min"], [502, 5, 1, "", "get_root"], [503, 5, 1, "", "is_mono"], [504, 5, 1, "", "pressure"], [505, 3, 1, "", "spl"]], "pwtools.eos.ExternEOS": [[506, 5, 1, "", "__init__"], [507, 5, 1, "", "assert_attr"], [508, 5, 1, "", "assert_attr_lst"], [509, 5, 1, "", "assert_set_attr"], [510, 5, 1, "", "assert_set_attr_lst"], [511, 5, 1, "", "calc_bv"], [512, 5, 1, "", "check_set_attr"], [513, 5, 1, "", "check_set_attr_lst"], [514, 5, 1, "", "dump"], [515, 5, 1, "", "fit"], [516, 5, 1, "", "get_min"], [517, 5, 1, "", "get_return_attr"], [518, 5, 1, "", "get_spl_bv"], [519, 5, 1, "", "get_spl_ev"], [520, 5, 1, "", "get_spl_pv"], [521, 5, 1, "", "init_attr_lst"], [522, 5, 1, "", "is_set_attr"], [523, 5, 1, "", "is_set_attr_lst"], [524, 5, 1, "", "load"], [525, 5, 1, "", "raw_return"], [526, 5, 1, "", "raw_slice_get"], [527, 5, 1, "", "set_all"], [528, 5, 1, "", "set_attr_lst"], [529, 5, 1, "", "set_bv_method"], [530, 5, 1, "", "try_set_attr"], [531, 5, 1, "", "try_set_attr_lst"]], "pwtools.eos.MaxDerivException": [[533, 5, 1, "", "with_traceback"]], "pwtools.eos.Vinet": [[535, 5, 1, "", "__call__"], [535, 5, 1, "", "__init__"], [536, 5, 1, "", "dct2lst"], [537, 5, 1, "", "deriv"], [538, 5, 1, "", "evaluate"], [539, 5, 1, "", "get_min"], [540, 5, 1, "", "lst2dct"]], "pwtools.io": [[546, 1, 1, "", "Ha"], [547, 4, 1, "", "ReadFactory"], [548, 1, 1, "", "eV"], [549, 2, 1, "", "load_h5"], [550, 1, 1, "", "read_cif"], [551, 1, 1, "", "read_cp2k_md"], [552, 1, 1, "", "read_cp2k_md_dcd"], [553, 1, 1, "", "read_cp2k_relax"], [554, 1, 1, "", "read_cp2k_scf"], [555, 1, 1, "", "read_cpmd_md"], [556, 1, 1, "", "read_cpmd_scf"], [557, 2, 1, "", "read_h5"], [558, 1, 1, "", "read_lammps_md_dcd"], [559, 1, 1, "", "read_lammps_md_txt"], [560, 1, 1, "", "read_pdb"], [561, 2, 1, "", "read_pickle"], [562, 1, 1, "", "read_pw_md"], [563, 1, 1, "", "read_pw_scf"], [564, 1, 1, "", "read_pw_vcmd"], [565, 2, 1, "", "wien_sgroup_input"], [566, 2, 1, "", "write_axsf"], [567, 2, 1, "", "write_cif"], [568, 2, 1, "", "write_h5"], [569, 2, 1, "", "write_lammps"], [570, 2, 1, "", "write_wien_sgroup"], [571, 2, 1, "", "write_xyz"]], "pwtools.io.ReadFactory": [[547, 5, 1, "", "__call__"], [547, 5, 1, "", "__init__"]], "pwtools.kpath": [[572, 4, 1, "", "SpecialPointsPath"], [573, 2, 1, "", "get_path_norm"], [574, 2, 1, "", "kpath"], [575, 2, 1, "", "plot_dis"]], "pwtools.kpath.SpecialPointsPath": [[572, 5, 1, "", "__init__"]], "pwtools.lammps": [[576, 2, 1, "", "struct_str"]], "pwtools.mpl": [[577, 4, 1, "", "Data2D"], [580, 3, 1, "", "Data3D"], [583, 4, 1, "", "Plot"], [587, 1, 1, "", "cc"], [588, 1, 1, "", "ccl"], [589, 1, 1, "", "ccm"], [590, 1, 1, "", "clc"], [591, 2, 1, "", "clean_ax3d"], [592, 1, 1, "", "cm"], [593, 1, 1, "", "cmc"], [594, 2, 1, "", "collect_legends"], [595, 2, 1, "", "color_ax"], [596, 1, 1, "", "colors"], [597, 1, 1, "", "colors_linestyles"], [598, 1, 1, "", "colors_markers"], [599, 1, 1, "", "cycle_colors"], [600, 1, 1, "", "cycle_colors_linestyles"], [601, 1, 1, "", "cycle_colors_markers"], [602, 1, 1, "", "cycle_linestyles_colors"], [603, 1, 1, "", "cycle_markers"], [604, 1, 1, "", "cycle_markers_colors"], [605, 2, 1, "", "fig_ax"], [606, 2, 1, "", "fig_ax3d"], [607, 2, 1, "", "get_2d_testdata"], [608, 1, 1, "", "ic"], [609, 1, 1, "", "icl"], [610, 1, 1, "", "icm"], [611, 1, 1, "", "ilc"], [612, 1, 1, "", "im"], [613, 1, 1, "", "imc"], [614, 1, 1, "", "iter_colors"], [615, 1, 1, "", "iter_colors_linestyles"], [616, 1, 1, "", "iter_colors_markers"], [617, 1, 1, "", "iter_linestyles"], [618, 1, 1, "", "iter_linestyles_colors"], [619, 1, 1, "", "iter_markers"], [620, 1, 1, "", "iter_markers_colors"], [621, 1, 1, "", "linestyles"], [622, 1, 1, "", "linestyles_colors"], [623, 2, 1, "", "make_axes_grid_fig"], [624, 1, 1, "", "markers"], [625, 1, 1, "", "markers_colors"], [626, 2, 1, "", "meshgridt"], [627, 2, 1, "", "new_axis"], [628, 2, 1, "", "plotlines3d"], [629, 2, 1, "", "prepare_plots"], [630, 2, 1, "", "smooth_color"], [631, 2, 1, "", "smooth_color_func"]], "pwtools.mpl.Data2D": [[577, 5, 1, "", "__init__"], [578, 5, 1, "", "copy"], [579, 5, 1, "", "update"]], "pwtools.mpl.Data3D": [[581, 5, 1, "", "copy"], [582, 5, 1, "", "update"]], "pwtools.mpl.Plot": [[583, 5, 1, "", "__init__"], [584, 5, 1, "", "collect_legends"], [585, 5, 1, "", "legend"], [586, 5, 1, "", "savefig"]], "pwtools.mttk": [[632, 1, 1, "", "a0"], [633, 2, 1, "", "add_doc"], [634, 2, 1, "", "barostat_mass_w"], [635, 2, 1, "", "barostat_mass_wg"], [636, 2, 1, "", "barostat_nhc_masses"], [637, 1, 1, "", "kb"], [638, 1, 1, "", "m0"], [639, 2, 1, "", "particle_nhc_masses"]], "pwtools.num": [[640, 4, 1, "", "DataND"], [642, 1, 1, "", "EPS"], [643, 4, 1, "", "Fit1D"], [648, 4, 1, "", "Interpol2D"], [650, 4, 1, "", "PolyFit"], [652, 4, 1, "", "PolyFit1D"], [657, 4, 1, "", "Spline"], [664, 2, 1, "", "deriv_spl"], [665, 2, 1, "", "distsq"], [666, 2, 1, "", "euler_matrix"], [667, 2, 1, "", "extend_array"], [668, 2, 1, "", "fempty"], [669, 2, 1, "", "findmin"], [670, 2, 1, "", "findroot"], [671, 2, 1, "", "inner_points_mask"], [672, 2, 1, "", "match_mask"], [673, 2, 1, "", "meshgridt"], [674, 2, 1, "", "norm"], [675, 2, 1, "", "norm_int"], [676, 2, 1, "", "normalize"], [677, 2, 1, "", "order_similar"], [678, 1, 1, "", "pi"], [679, 2, 1, "", "poly_powers"], [680, 2, 1, "", "poly_str"], [681, 2, 1, "", "polyfit"], [682, 2, 1, "", "polyval"], [683, 2, 1, "", "rms"], [684, 2, 1, "", "rms3d"], [685, 2, 1, "", "round_up_next_multiple"], [686, 2, 1, "", "sliceput"], [687, 2, 1, "", "slicetake"], [688, 2, 1, "", "sum"], [689, 2, 1, "", "vander"], [690, 2, 1, "", "vlinspace"]], "pwtools.num.DataND": [[640, 5, 1, "", "__init__"], [641, 5, 1, "", "a2_to_an"], [640, 3, 1, "", "axes"], [640, 3, 1, "", "nd"]], "pwtools.num.Fit1D": [[643, 5, 1, "", "__init__"], [644, 5, 1, "", "get_max"], [645, 5, 1, "", "get_min"], [646, 5, 1, "", "get_root"], [647, 5, 1, "", "is_mono"]], "pwtools.num.Interpol2D": [[648, 5, 1, "", "__call__"], [648, 5, 1, "", "__init__"], [649, 5, 1, "", "get_min"]], "pwtools.num.PolyFit": [[650, 5, 1, "", "__call__"], [650, 5, 1, "", "__init__"], [651, 5, 1, "", "get_min"]], "pwtools.num.PolyFit1D": [[652, 5, 1, "", "__call__"], [652, 5, 1, "", "__init__"], [653, 5, 1, "", "get_max"], [654, 5, 1, "", "get_min"], [655, 5, 1, "", "get_root"], [656, 5, 1, "", "is_mono"]], "pwtools.num.Spline": [[657, 5, 1, "", "__call__"], [657, 5, 1, "", "__init__"], [658, 5, 1, "", "get_max"], [659, 5, 1, "", "get_min"], [660, 5, 1, "", "get_root"], [661, 5, 1, "", "invsplev"], [662, 5, 1, "", "is_mono"], [663, 5, 1, "", "splev"]], "pwtools.parse": [[691, 1, 1, "", "AWK"], [692, 1, 1, "", "Ang"], [693, 1, 1, "", "Angstrom"], [694, 1, 1, "", "Bohr"], [695, 4, 1, "", "CifFile"], [726, 4, 1, "", "Cp2kDcdMDOutputFile"], [768, 4, 1, "", "Cp2kMDOutputFile"], [808, 4, 1, "", "Cp2kRelaxOutputFile"], [848, 4, 1, "", "Cp2kSCFOutputFile"], [878, 4, 1, "", "CpmdMDOutputFile"], [926, 4, 1, "", "CpmdSCFOutputFile"], [961, 4, 1, "", "DcdOutputFile"], [968, 1, 1, "", "Ha"], [969, 4, 1, "", "LammpsDcdMDOutputFile"], [1011, 4, 1, "", "LammpsTextMDOutputFile"], [1052, 4, 1, "", "PDBFile"], [1080, 4, 1, "", "PwMDOutputFile"], [1124, 4, 1, "", "PwSCFOutputFile"], [1160, 4, 1, "", "PwVCMDOutputFile"], [1205, 1, 1, "", "Ry"], [1206, 4, 1, "", "StructureFileParser"], [1231, 4, 1, "", "TrajectoryFileParser"], [1258, 2, 1, "", "arr1d_from_txt"], [1259, 2, 1, "", "arr2d_from_txt"], [1260, 2, 1, "", "axis_lens"], [1261, 1, 1, "", "eV"], [1262, 2, 1, "", "float_from_txt"], [1263, 1, 1, "", "fs"], [1264, 2, 1, "", "int_from_txt"], [1265, 2, 1, "", "nstep_from_txt"], [1266, 1, 1, "", "pi"], [1267, 1, 1, "", "ps"], [1268, 1, 1, "", "thart"], [1269, 2, 1, "", "traj_from_txt"]], "pwtools.parse.CifFile": [[695, 5, 1, "", "__init__"], [696, 5, 1, "", "apply_units"], [697, 5, 1, "", "assert_attr"], [698, 5, 1, "", "assert_attr_lst"], [699, 5, 1, "", "assert_set_attr"], [700, 5, 1, "", "assert_set_attr_lst"], [701, 5, 1, "", "check_set_attr"], [702, 5, 1, "", "check_set_attr_lst"], [703, 5, 1, "", "cif_clear_atom_symbol"], [704, 5, 1, "", "cif_str2float"], [705, 3, 1, "", "default_units"], [706, 5, 1, "", "dump"], [707, 5, 1, "", "get_cont"], [708, 5, 1, "", "get_coords"], [709, 5, 1, "", "get_coords_frac"], [710, 5, 1, "", "get_cryst_const"], [711, 5, 1, "", "get_return_attr"], [712, 5, 1, "", "get_struct"], [713, 5, 1, "", "get_symbols"], [714, 5, 1, "", "init_attr_lst"], [715, 5, 1, "", "is_set_attr"], [716, 5, 1, "", "is_set_attr_lst"], [717, 5, 1, "", "load"], [718, 5, 1, "", "parse"], [719, 5, 1, "", "raw_return"], [720, 5, 1, "", "raw_slice_get"], [721, 5, 1, "", "set_all"], [722, 5, 1, "", "set_attr_lst"], [723, 5, 1, "", "try_set_attr"], [724, 5, 1, "", "try_set_attr_lst"], [725, 5, 1, "", "update_units"]], "pwtools.parse.Cp2kDcdMDOutputFile": [[726, 5, 1, "", "__init__"], [727, 5, 1, "", "apply_units"], [728, 5, 1, "", "assert_attr"], [729, 5, 1, "", "assert_attr_lst"], [730, 5, 1, "", "assert_set_attr"], [731, 5, 1, "", "assert_set_attr_lst"], [732, 5, 1, "", "check_set_attr"], [733, 5, 1, "", "check_set_attr_lst"], [734, 3, 1, "", "default_units"], [735, 5, 1, "", "dump"], [736, 5, 1, "", "get_cell"], [737, 5, 1, "", "get_cont"], [738, 5, 1, "", "get_coords"], [739, 5, 1, "", "get_cryst_const"], [740, 5, 1, "", "get_econst"], [741, 5, 1, "", "get_ekin"], [742, 5, 1, "", "get_etot"], [743, 5, 1, "", "get_forces"], [744, 5, 1, "", "get_natoms"], [745, 5, 1, "", "get_nstep"], [746, 5, 1, "", "get_return_attr"], [747, 5, 1, "", "get_stress"], [748, 5, 1, "", "get_struct"], [749, 5, 1, "", "get_symbols"], [750, 5, 1, "", "get_temperature"], [751, 5, 1, "", "get_timestep"], [752, 5, 1, "", "get_traj"], [753, 5, 1, "", "get_velocity"], [754, 5, 1, "", "get_volume"], [755, 5, 1, "", "init_attr_lst"], [756, 5, 1, "", "is_set_attr"], [757, 5, 1, "", "is_set_attr_lst"], [758, 5, 1, "", "load"], [759, 5, 1, "", "parse"], [760, 5, 1, "", "raw_return"], [761, 5, 1, "", "raw_slice_get"], [762, 5, 1, "", "set_all"], [763, 5, 1, "", "set_attr_lst"], [764, 3, 1, "", "timeaxis"], [765, 5, 1, "", "try_set_attr"], [766, 5, 1, "", "try_set_attr_lst"], [767, 5, 1, "", "update_units"]], "pwtools.parse.Cp2kMDOutputFile": [[768, 5, 1, "", "__init__"], [769, 5, 1, "", "apply_units"], [770, 5, 1, "", "assert_attr"], [771, 5, 1, "", "assert_attr_lst"], [772, 5, 1, "", "assert_set_attr"], [773, 5, 1, "", "assert_set_attr_lst"], [774, 5, 1, "", "check_set_attr"], [775, 5, 1, "", "check_set_attr_lst"], [776, 3, 1, "", "default_units"], [777, 5, 1, "", "dump"], [778, 5, 1, "", "get_cell"], [779, 5, 1, "", "get_cont"], [780, 5, 1, "", "get_coords"], [781, 5, 1, "", "get_econst"], [782, 5, 1, "", "get_ekin"], [783, 5, 1, "", "get_etot"], [784, 5, 1, "", "get_forces"], [785, 5, 1, "", "get_natoms"], [786, 5, 1, "", "get_return_attr"], [787, 5, 1, "", "get_stress"], [788, 5, 1, "", "get_struct"], [789, 5, 1, "", "get_symbols"], [790, 5, 1, "", "get_temperature"], [791, 5, 1, "", "get_timestep"], [792, 5, 1, "", "get_traj"], [793, 5, 1, "", "get_velocity"], [794, 5, 1, "", "get_volume"], [795, 5, 1, "", "init_attr_lst"], [796, 5, 1, "", "is_set_attr"], [797, 5, 1, "", "is_set_attr_lst"], [798, 5, 1, "", "load"], [799, 5, 1, "", "parse"], [800, 5, 1, "", "raw_return"], [801, 5, 1, "", "raw_slice_get"], [802, 5, 1, "", "set_all"], [803, 5, 1, "", "set_attr_lst"], [804, 3, 1, "", "timeaxis"], [805, 5, 1, "", "try_set_attr"], [806, 5, 1, "", "try_set_attr_lst"], [807, 5, 1, "", "update_units"]], "pwtools.parse.Cp2kRelaxOutputFile": [[808, 5, 1, "", "__init__"], [809, 5, 1, "", "apply_units"], [810, 5, 1, "", "assert_attr"], [811, 5, 1, "", "assert_attr_lst"], [812, 5, 1, "", "assert_set_attr"], [813, 5, 1, "", "assert_set_attr_lst"], [814, 5, 1, "", "check_set_attr"], [815, 5, 1, "", "check_set_attr_lst"], [816, 3, 1, "", "default_units"], [817, 5, 1, "", "dump"], [818, 5, 1, "", "get_cell"], [819, 5, 1, "", "get_cont"], [820, 5, 1, "", "get_coords"], [821, 5, 1, "", "get_econst"], [822, 5, 1, "", "get_ekin"], [823, 5, 1, "", "get_etot"], [824, 5, 1, "", "get_forces"], [825, 5, 1, "", "get_natoms"], [826, 5, 1, "", "get_return_attr"], [827, 5, 1, "", "get_stress"], [828, 5, 1, "", "get_struct"], [829, 5, 1, "", "get_symbols"], [830, 5, 1, "", "get_temperature"], [831, 5, 1, "", "get_timestep"], [832, 5, 1, "", "get_traj"], [833, 5, 1, "", "get_velocity"], [834, 5, 1, "", "get_volume"], [835, 5, 1, "", "init_attr_lst"], [836, 5, 1, "", "is_set_attr"], [837, 5, 1, "", "is_set_attr_lst"], [838, 5, 1, "", "load"], [839, 5, 1, "", "parse"], [840, 5, 1, "", "raw_return"], [841, 5, 1, "", "raw_slice_get"], [842, 5, 1, "", "set_all"], [843, 5, 1, "", "set_attr_lst"], [844, 3, 1, "", "timeaxis"], [845, 5, 1, "", "try_set_attr"], [846, 5, 1, "", "try_set_attr_lst"], [847, 5, 1, "", "update_units"]], "pwtools.parse.Cp2kSCFOutputFile": [[848, 5, 1, "", "__init__"], [849, 5, 1, "", "apply_units"], [850, 5, 1, "", "assert_attr"], [851, 5, 1, "", "assert_attr_lst"], [852, 5, 1, "", "assert_set_attr"], [853, 5, 1, "", "assert_set_attr_lst"], [854, 5, 1, "", "check_set_attr"], [855, 5, 1, "", "check_set_attr_lst"], [856, 3, 1, "", "default_units"], [857, 5, 1, "", "dump"], [858, 5, 1, "", "get_cont"], [859, 5, 1, "", "get_etot"], [860, 5, 1, "", "get_forces"], [861, 5, 1, "", "get_natoms"], [862, 5, 1, "", "get_return_attr"], [863, 5, 1, "", "get_stress"], [864, 5, 1, "", "get_struct"], [865, 5, 1, "", "get_symbols"], [866, 5, 1, "", "init_attr_lst"], [867, 5, 1, "", "is_set_attr"], [868, 5, 1, "", "is_set_attr_lst"], [869, 5, 1, "", "load"], [870, 5, 1, "", "parse"], [871, 5, 1, "", "raw_return"], [872, 5, 1, "", "raw_slice_get"], [873, 5, 1, "", "set_all"], [874, 5, 1, "", "set_attr_lst"], [875, 5, 1, "", "try_set_attr"], [876, 5, 1, "", "try_set_attr_lst"], [877, 5, 1, "", "update_units"]], "pwtools.parse.CpmdMDOutputFile": [[878, 5, 1, "", "__init__"], [879, 5, 1, "", "apply_units"], [880, 5, 1, "", "assert_attr"], [881, 5, 1, "", "assert_attr_lst"], [882, 5, 1, "", "assert_set_attr"], [883, 5, 1, "", "assert_set_attr_lst"], [884, 5, 1, "", "check_set_attr"], [885, 5, 1, "", "check_set_attr_lst"], [886, 3, 1, "", "default_units"], [887, 5, 1, "", "dump"], [888, 5, 1, "", "get_cell"], [889, 5, 1, "", "get_cont"], [890, 5, 1, "", "get_coords"], [891, 5, 1, "", "get_coords_frac"], [892, 5, 1, "", "get_econst"], [893, 5, 1, "", "get_ekin"], [894, 5, 1, "", "get_ekin_cell"], [895, 5, 1, "", "get_ekin_elec"], [896, 5, 1, "", "get_ekinc"], [897, 5, 1, "", "get_ekinh"], [898, 5, 1, "", "get_etot"], [899, 5, 1, "", "get_forces"], [900, 5, 1, "", "get_natoms"], [901, 5, 1, "", "get_nkpoints"], [902, 5, 1, "", "get_nstep_scf"], [903, 5, 1, "", "get_return_attr"], [904, 5, 1, "", "get_scf_converged"], [905, 5, 1, "", "get_stress"], [906, 5, 1, "", "get_struct"], [907, 5, 1, "", "get_symbols"], [908, 5, 1, "", "get_temperature"], [909, 5, 1, "", "get_temperature_cell"], [910, 5, 1, "", "get_timestep"], [911, 5, 1, "", "get_traj"], [912, 5, 1, "", "get_velocity"], [913, 5, 1, "", "init_attr_lst"], [914, 5, 1, "", "is_set_attr"], [915, 5, 1, "", "is_set_attr_lst"], [916, 5, 1, "", "load"], [917, 5, 1, "", "parse"], [918, 5, 1, "", "raw_return"], [919, 5, 1, "", "raw_slice_get"], [920, 5, 1, "", "set_all"], [921, 5, 1, "", "set_attr_lst"], [922, 3, 1, "", "timeaxis"], [923, 5, 1, "", "try_set_attr"], [924, 5, 1, "", "try_set_attr_lst"], [925, 5, 1, "", "update_units"]], "pwtools.parse.CpmdSCFOutputFile": [[926, 5, 1, "", "__init__"], [927, 5, 1, "", "apply_units"], [928, 5, 1, "", "assert_attr"], [929, 5, 1, "", "assert_attr_lst"], [930, 5, 1, "", "assert_set_attr"], [931, 5, 1, "", "assert_set_attr_lst"], [932, 5, 1, "", "check_set_attr"], [933, 5, 1, "", "check_set_attr_lst"], [934, 3, 1, "", "default_units"], [935, 5, 1, "", "dump"], [936, 5, 1, "", "get_cell"], [937, 5, 1, "", "get_cont"], [938, 5, 1, "", "get_coords_frac"], [939, 5, 1, "", "get_etot"], [940, 5, 1, "", "get_forces"], [941, 5, 1, "", "get_natoms"], [942, 5, 1, "", "get_nkpoints"], [943, 5, 1, "", "get_nstep_scf"], [944, 5, 1, "", "get_return_attr"], [945, 5, 1, "", "get_scf_converged"], [946, 5, 1, "", "get_stress"], [947, 5, 1, "", "get_struct"], [948, 5, 1, "", "get_symbols"], [949, 5, 1, "", "init_attr_lst"], [950, 5, 1, "", "is_set_attr"], [951, 5, 1, "", "is_set_attr_lst"], [952, 5, 1, "", "load"], [953, 5, 1, "", "parse"], [954, 5, 1, "", "raw_return"], [955, 5, 1, "", "raw_slice_get"], [956, 5, 1, "", "set_all"], [957, 5, 1, "", "set_attr_lst"], [958, 5, 1, "", "try_set_attr"], [959, 5, 1, "", "try_set_attr_lst"], [960, 5, 1, "", "update_units"]], "pwtools.parse.DcdOutputFile": [[961, 5, 1, "", "__init__"], [962, 5, 1, "", "get_cell"], [963, 5, 1, "", "get_coords"], [964, 5, 1, "", "get_cryst_const"], [965, 5, 1, "", "get_natoms"], [966, 5, 1, "", "get_nstep"], [967, 5, 1, "", "get_volume"]], "pwtools.parse.LammpsDcdMDOutputFile": [[969, 5, 1, "", "__init__"], [970, 5, 1, "", "apply_units"], [971, 5, 1, "", "assert_attr"], [972, 5, 1, "", "assert_attr_lst"], [973, 5, 1, "", "assert_set_attr"], [974, 5, 1, "", "assert_set_attr_lst"], [975, 5, 1, "", "check_set_attr"], [976, 5, 1, "", "check_set_attr_lst"], [977, 3, 1, "", "default_units"], [978, 5, 1, "", "dump"], [979, 5, 1, "", "get_cell"], [980, 5, 1, "", "get_cont"], [981, 5, 1, "", "get_coords"], [982, 5, 1, "", "get_coords_frac"], [983, 5, 1, "", "get_cryst_const"], [984, 5, 1, "", "get_ekin"], [985, 5, 1, "", "get_etot"], [986, 5, 1, "", "get_forces"], [987, 5, 1, "", "get_natoms"], [988, 5, 1, "", "get_nstep"], [989, 5, 1, "", "get_return_attr"], [990, 5, 1, "", "get_stress"], [991, 5, 1, "", "get_struct"], [992, 5, 1, "", "get_symbols"], [993, 5, 1, "", "get_temperature"], [994, 5, 1, "", "get_timestep"], [995, 5, 1, "", "get_traj"], [996, 5, 1, "", "get_velocity"], [997, 5, 1, "", "get_volume"], [998, 5, 1, "", "init_attr_lst"], [999, 5, 1, "", "is_set_attr"], [1000, 5, 1, "", "is_set_attr_lst"], [1001, 5, 1, "", "load"], [1002, 5, 1, "", "parse"], [1003, 5, 1, "", "raw_return"], [1004, 5, 1, "", "raw_slice_get"], [1005, 5, 1, "", "set_all"], [1006, 5, 1, "", "set_attr_lst"], [1007, 3, 1, "", "timeaxis"], [1008, 5, 1, "", "try_set_attr"], [1009, 5, 1, "", "try_set_attr_lst"], [1010, 5, 1, "", "update_units"]], "pwtools.parse.LammpsTextMDOutputFile": [[1011, 5, 1, "", "__init__"], [1012, 5, 1, "", "apply_units"], [1013, 5, 1, "", "assert_attr"], [1014, 5, 1, "", "assert_attr_lst"], [1015, 5, 1, "", "assert_set_attr"], [1016, 5, 1, "", "assert_set_attr_lst"], [1017, 5, 1, "", "check_set_attr"], [1018, 5, 1, "", "check_set_attr_lst"], [1019, 3, 1, "", "default_units"], [1020, 5, 1, "", "dump"], [1021, 5, 1, "", "get_cell"], [1022, 5, 1, "", "get_cont"], [1023, 5, 1, "", "get_coords"], [1024, 5, 1, "", "get_coords_frac"], [1025, 5, 1, "", "get_cryst_const"], [1026, 5, 1, "", "get_ekin"], [1027, 5, 1, "", "get_etot"], [1028, 5, 1, "", "get_forces"], [1029, 5, 1, "", "get_natoms"], [1030, 5, 1, "", "get_return_attr"], [1031, 5, 1, "", "get_stress"], [1032, 5, 1, "", "get_struct"], [1033, 5, 1, "", "get_symbols"], [1034, 5, 1, "", "get_temperature"], [1035, 5, 1, "", "get_timestep"], [1036, 5, 1, "", "get_traj"], [1037, 5, 1, "", "get_velocity"], [1038, 5, 1, "", "get_volume"], [1039, 5, 1, "", "init_attr_lst"], [1040, 5, 1, "", "is_set_attr"], [1041, 5, 1, "", "is_set_attr_lst"], [1042, 5, 1, "", "load"], [1043, 5, 1, "", "parse"], [1044, 5, 1, "", "raw_return"], [1045, 5, 1, "", "raw_slice_get"], [1046, 5, 1, "", "set_all"], [1047, 5, 1, "", "set_attr_lst"], [1048, 3, 1, "", "timeaxis"], [1049, 5, 1, "", "try_set_attr"], [1050, 5, 1, "", "try_set_attr_lst"], [1051, 5, 1, "", "update_units"]], "pwtools.parse.PDBFile": [[1052, 5, 1, "", "__init__"], [1053, 5, 1, "", "apply_units"], [1054, 5, 1, "", "assert_attr"], [1055, 5, 1, "", "assert_attr_lst"], [1056, 5, 1, "", "assert_set_attr"], [1057, 5, 1, "", "assert_set_attr_lst"], [1058, 5, 1, "", "check_set_attr"], [1059, 5, 1, "", "check_set_attr_lst"], [1060, 3, 1, "", "default_units"], [1061, 5, 1, "", "dump"], [1062, 5, 1, "", "get_cont"], [1063, 5, 1, "", "get_coords"], [1064, 5, 1, "", "get_cryst_const"], [1065, 5, 1, "", "get_return_attr"], [1066, 5, 1, "", "get_struct"], [1067, 5, 1, "", "get_symbols"], [1068, 5, 1, "", "init_attr_lst"], [1069, 5, 1, "", "is_set_attr"], [1070, 5, 1, "", "is_set_attr_lst"], [1071, 5, 1, "", "load"], [1072, 5, 1, "", "parse"], [1073, 5, 1, "", "raw_return"], [1074, 5, 1, "", "raw_slice_get"], [1075, 5, 1, "", "set_all"], [1076, 5, 1, "", "set_attr_lst"], [1077, 5, 1, "", "try_set_attr"], [1078, 5, 1, "", "try_set_attr_lst"], [1079, 5, 1, "", "update_units"]], "pwtools.parse.PwMDOutputFile": [[1080, 5, 1, "", "__init__"], [1081, 5, 1, "", "apply_units"], [1082, 5, 1, "", "assert_attr"], [1083, 5, 1, "", "assert_attr_lst"], [1084, 5, 1, "", "assert_set_attr"], [1085, 5, 1, "", "assert_set_attr_lst"], [1086, 5, 1, "", "check_set_attr"], [1087, 5, 1, "", "check_set_attr_lst"], [1088, 3, 1, "", "default_units"], [1089, 5, 1, "", "dump"], [1090, 5, 1, "", "get_alat"], [1091, 5, 1, "", "get_cell"], [1092, 5, 1, "", "get_cell_unit"], [1093, 5, 1, "", "get_cont"], [1094, 5, 1, "", "get_coords"], [1095, 5, 1, "", "get_coords_frac"], [1096, 5, 1, "", "get_coords_unit"], [1097, 5, 1, "", "get_ekin"], [1098, 5, 1, "", "get_etot"], [1099, 5, 1, "", "get_forces"], [1100, 5, 1, "", "get_natoms"], [1101, 5, 1, "", "get_nkpoints"], [1102, 5, 1, "", "get_nstep_scf"], [1103, 5, 1, "", "get_return_attr"], [1104, 5, 1, "", "get_scf_converged"], [1105, 5, 1, "", "get_stress"], [1106, 5, 1, "", "get_struct"], [1107, 5, 1, "", "get_symbols"], [1108, 5, 1, "", "get_temperature"], [1109, 5, 1, "", "get_timestep"], [1110, 5, 1, "", "get_traj"], [1111, 5, 1, "", "init_attr_lst"], [1112, 5, 1, "", "is_set_attr"], [1113, 5, 1, "", "is_set_attr_lst"], [1114, 5, 1, "", "load"], [1115, 5, 1, "", "parse"], [1116, 5, 1, "", "raw_return"], [1117, 5, 1, "", "raw_slice_get"], [1118, 5, 1, "", "set_all"], [1119, 5, 1, "", "set_attr_lst"], [1120, 3, 1, "", "timeaxis"], [1121, 5, 1, "", "try_set_attr"], [1122, 5, 1, "", "try_set_attr_lst"], [1123, 5, 1, "", "update_units"]], "pwtools.parse.PwSCFOutputFile": [[1124, 5, 1, "", "__init__"], [1125, 5, 1, "", "apply_units"], [1126, 5, 1, "", "assert_attr"], [1127, 5, 1, "", "assert_attr_lst"], [1128, 5, 1, "", "assert_set_attr"], [1129, 5, 1, "", "assert_set_attr_lst"], [1130, 5, 1, "", "check_set_attr"], [1131, 5, 1, "", "check_set_attr_lst"], [1132, 3, 1, "", "default_units"], [1133, 5, 1, "", "dump"], [1134, 5, 1, "", "get_alat"], [1135, 5, 1, "", "get_cell"], [1136, 5, 1, "", "get_cont"], [1137, 5, 1, "", "get_coords"], [1138, 5, 1, "", "get_etot"], [1139, 5, 1, "", "get_forces"], [1140, 5, 1, "", "get_natoms"], [1141, 5, 1, "", "get_nkpoints"], [1142, 5, 1, "", "get_nstep_scf"], [1143, 5, 1, "", "get_return_attr"], [1144, 5, 1, "", "get_scf_converged"], [1145, 5, 1, "", "get_stress"], [1146, 5, 1, "", "get_struct"], [1147, 5, 1, "", "get_symbols"], [1148, 5, 1, "", "init_attr_lst"], [1149, 5, 1, "", "is_set_attr"], [1150, 5, 1, "", "is_set_attr_lst"], [1151, 5, 1, "", "load"], [1152, 5, 1, "", "parse"], [1153, 5, 1, "", "raw_return"], [1154, 5, 1, "", "raw_slice_get"], [1155, 5, 1, "", "set_all"], [1156, 5, 1, "", "set_attr_lst"], [1157, 5, 1, "", "try_set_attr"], [1158, 5, 1, "", "try_set_attr_lst"], [1159, 5, 1, "", "update_units"]], "pwtools.parse.PwVCMDOutputFile": [[1160, 5, 1, "", "__init__"], [1161, 5, 1, "", "apply_units"], [1162, 5, 1, "", "assert_attr"], [1163, 5, 1, "", "assert_attr_lst"], [1164, 5, 1, "", "assert_set_attr"], [1165, 5, 1, "", "assert_set_attr_lst"], [1166, 5, 1, "", "check_set_attr"], [1167, 5, 1, "", "check_set_attr_lst"], [1168, 3, 1, "", "default_units"], [1169, 5, 1, "", "dump"], [1170, 5, 1, "", "get_alat"], [1171, 5, 1, "", "get_cell"], [1172, 5, 1, "", "get_cell_unit"], [1173, 5, 1, "", "get_cont"], [1174, 5, 1, "", "get_coords"], [1175, 5, 1, "", "get_coords_frac"], [1176, 5, 1, "", "get_coords_unit"], [1177, 5, 1, "", "get_econst"], [1178, 5, 1, "", "get_ekin"], [1179, 5, 1, "", "get_etot"], [1180, 5, 1, "", "get_forces"], [1181, 5, 1, "", "get_natoms"], [1182, 5, 1, "", "get_nkpoints"], [1183, 5, 1, "", "get_nstep_scf"], [1184, 5, 1, "", "get_return_attr"], [1185, 5, 1, "", "get_scf_converged"], [1186, 5, 1, "", "get_stress"], [1187, 5, 1, "", "get_struct"], [1188, 5, 1, "", "get_symbols"], [1189, 5, 1, "", "get_temperature"], [1190, 5, 1, "", "get_timestep"], [1191, 5, 1, "", "get_traj"], [1192, 5, 1, "", "init_attr_lst"], [1193, 5, 1, "", "is_set_attr"], [1194, 5, 1, "", "is_set_attr_lst"], [1195, 5, 1, "", "load"], [1196, 5, 1, "", "parse"], [1197, 5, 1, "", "raw_return"], [1198, 5, 1, "", "raw_slice_get"], [1199, 5, 1, "", "set_all"], [1200, 5, 1, "", "set_attr_lst"], [1201, 3, 1, "", "timeaxis"], [1202, 5, 1, "", "try_set_attr"], [1203, 5, 1, "", "try_set_attr_lst"], [1204, 5, 1, "", "update_units"]], "pwtools.parse.StructureFileParser": [[1206, 5, 1, "", "__init__"], [1207, 5, 1, "", "apply_units"], [1208, 5, 1, "", "assert_attr"], [1209, 5, 1, "", "assert_attr_lst"], [1210, 5, 1, "", "assert_set_attr"], [1211, 5, 1, "", "assert_set_attr_lst"], [1212, 5, 1, "", "check_set_attr"], [1213, 5, 1, "", "check_set_attr_lst"], [1214, 3, 1, "", "default_units"], [1215, 5, 1, "", "dump"], [1216, 5, 1, "", "get_cont"], [1217, 5, 1, "", "get_return_attr"], [1218, 5, 1, "", "get_struct"], [1219, 5, 1, "", "init_attr_lst"], [1220, 5, 1, "", "is_set_attr"], [1221, 5, 1, "", "is_set_attr_lst"], [1222, 5, 1, "", "load"], [1223, 5, 1, "", "parse"], [1224, 5, 1, "", "raw_return"], [1225, 5, 1, "", "raw_slice_get"], [1226, 5, 1, "", "set_all"], [1227, 5, 1, "", "set_attr_lst"], [1228, 5, 1, "", "try_set_attr"], [1229, 5, 1, "", "try_set_attr_lst"], [1230, 5, 1, "", "update_units"]], "pwtools.parse.TrajectoryFileParser": [[1231, 5, 1, "", "__init__"], [1232, 5, 1, "", "apply_units"], [1233, 5, 1, "", "assert_attr"], [1234, 5, 1, "", "assert_attr_lst"], [1235, 5, 1, "", "assert_set_attr"], [1236, 5, 1, "", "assert_set_attr_lst"], [1237, 5, 1, "", "check_set_attr"], [1238, 5, 1, "", "check_set_attr_lst"], [1239, 3, 1, "", "default_units"], [1240, 5, 1, "", "dump"], [1241, 5, 1, "", "get_cont"], [1242, 5, 1, "", "get_return_attr"], [1243, 5, 1, "", "get_struct"], [1244, 5, 1, "", "get_traj"], [1245, 5, 1, "", "init_attr_lst"], [1246, 5, 1, "", "is_set_attr"], [1247, 5, 1, "", "is_set_attr_lst"], [1248, 5, 1, "", "load"], [1249, 5, 1, "", "parse"], [1250, 5, 1, "", "raw_return"], [1251, 5, 1, "", "raw_slice_get"], [1252, 5, 1, "", "set_all"], [1253, 5, 1, "", "set_attr_lst"], [1254, 3, 1, "", "timeaxis"], [1255, 5, 1, "", "try_set_attr"], [1256, 5, 1, "", "try_set_attr_lst"], [1257, 5, 1, "", "update_units"]], "pwtools.pwscf": [[1270, 1, 1, "", "EPS"], [1271, 2, 1, "", "atpos_str"], [1272, 2, 1, "", "atpos_str_fast"], [1273, 2, 1, "", "atspec_str"], [1274, 2, 1, "", "bool2str"], [1275, 2, 1, "", "ibrav2cell"], [1276, 2, 1, "", "kpoints_str"], [1277, 2, 1, "", "kpoints_str_pwin"], [1278, 2, 1, "", "kpoints_str_pwin_full"], [1279, 2, 1, "", "kpointstr"], [1280, 2, 1, "", "kpointstr_pwin"], [1281, 2, 1, "", "kpointstr_pwin2"], [1282, 2, 1, "", "read_all_dyn"], [1283, 2, 1, "", "read_dyn"], [1284, 2, 1, "", "read_dynmat"], [1285, 2, 1, "", "read_dynmat_ir_raman"], [1286, 2, 1, "", "read_dynmat_out"], [1287, 2, 1, "", "read_matdyn_freq"], [1288, 2, 1, "", "read_matdyn_modes"]], "pwtools.pydos": [[1289, 2, 1, "", "direct_pdos"], [1290, 2, 1, "", "fvacf"], [1291, 2, 1, "", "pdos"], [1292, 2, 1, "", "pyvacf"], [1293, 2, 1, "", "vacf_pdos"]], "pwtools.random": [[1294, 4, 1, "", "RandomStructure"], [1297, 6, 1, "", "RandomStructureFail"], [1298, 1, 1, "", "pi"], [1299, 2, 1, "", "random_struct"]], "pwtools.random.RandomStructure": [[1294, 5, 1, "", "__init__"], [1295, 5, 1, "", "get_random_cryst_const"], [1296, 5, 1, "", "get_random_struct"]], "pwtools.random.RandomStructureFail": [[1297, 5, 1, "", "with_traceback"]], "pwtools.rbf": [[25, 0, 0, "-", "core"], [26, 0, 0, "-", "hyperopt"]], "pwtools.rbf.core": [[1300, 1, 1, "", "JAX_MODE"], [1301, 4, 1, "", "Rbf"], [1309, 2, 1, "", "_np_distsq"], [1310, 2, 1, "", "estimate_p"], [1311, 2, 1, "", "euclidean_dists"], [1312, 2, 1, "", "jit"], [1313, 1, 1, "", "rbf_dct"], [1314, 2, 1, "", "rbf_gauss"], [1315, 2, 1, "", "rbf_inv_multi"], [1316, 2, 1, "", "rbf_multi"], [1317, 2, 1, "", "squared_dists"]], "pwtools.rbf.core.Rbf": [[1301, 5, 1, "", "__call__"], [1301, 5, 1, "", "__init__"], [1302, 5, 1, "", "deriv"], [1303, 5, 1, "", "deriv_jax"], [1304, 5, 1, "", "fit"], [1305, 5, 1, "", "fit_error"], [1306, 5, 1, "", "get_distsq"], [1307, 5, 1, "", "get_params"], [1308, 5, 1, "", "predict"]], "pwtools.rbf.hyperopt": [[1318, 4, 1, "", "FitError"], [1322, 4, 1, "", "RepeatedKFold"], [1323, 2, 1, "", "fit_opt"]], "pwtools.rbf.hyperopt.FitError": [[1318, 5, 1, "", "__call__"], [1318, 5, 1, "", "__init__"], [1319, 5, 1, "", "cv"], [1320, 5, 1, "", "err_cv"], [1321, 5, 1, "", "err_direct"]], "pwtools.rbf.hyperopt.RepeatedKFold": [[1322, 5, 1, "", "__init__"]], "pwtools.regex": [[1324, 1, 1, "", "float_re"]], "pwtools.signal": [[1325, 4, 1, "", "FIRFilter"], [1326, 2, 1, "", "acorr"], [1327, 2, 1, "", "cauchy"], [1328, 2, 1, "", "dft"], [1329, 2, 1, "", "ezfft"], [1330, 2, 1, "", "fft_1d_loop"], [1331, 2, 1, "", "fftsample"], [1332, 2, 1, "", "find_peaks"], [1333, 2, 1, "", "gauss"], [1334, 2, 1, "", "lorentz"], [1335, 2, 1, "", "mirror"], [1336, 2, 1, "", "odd"], [1337, 2, 1, "", "pad_zeros"], [1338, 2, 1, "", "scale"], [1339, 2, 1, "", "smooth"], [1340, 2, 1, "", "welch"]], "pwtools.signal.FIRFilter": [[1325, 5, 1, "", "__call__"], [1325, 5, 1, "", "__init__"]], "pwtools.sql": [[1341, 4, 1, "", "SQLEntry"], [1342, 4, 1, "", "SQLiteDB"], [1364, 2, 1, "", "find_sqltype"], [1365, 2, 1, "", "fix_sql_header"], [1366, 2, 1, "", "fix_sqltype"], [1367, 2, 1, "", "get_test_db"], [1368, 2, 1, "", "makedb"], [1369, 2, 1, "", "sql_column"], [1370, 2, 1, "", "sql_column_old"], [1371, 2, 1, "", "sql_matrix"]], "pwtools.sql.SQLEntry": [[1341, 5, 1, "", "__init__"]], "pwtools.sql.SQLiteDB": [[1342, 5, 1, "", "__init__"], [1343, 5, 1, "", "add_column"], [1344, 5, 1, "", "add_columns"], [1345, 5, 1, "", "attach_column"], [1346, 5, 1, "", "commit"], [1347, 5, 1, "", "create_table"], [1348, 5, 1, "", "execute"], [1349, 5, 1, "", "executemany"], [1350, 5, 1, "", "executescript"], [1351, 5, 1, "", "fill_column"], [1352, 5, 1, "", "finish"], [1353, 5, 1, "", "get_array"], [1354, 5, 1, "", "get_array1d"], [1355, 5, 1, "", "get_dict"], [1356, 5, 1, "", "get_header"], [1357, 5, 1, "", "get_list1d"], [1358, 5, 1, "", "get_max_rowid"], [1359, 5, 1, "", "get_single"], [1360, 5, 1, "", "get_table"], [1361, 5, 1, "", "has_column"], [1362, 5, 1, "", "has_table"], [1363, 5, 1, "", "set_table"]], "pwtools.symmetry": [[1372, 2, 1, "", "is_same_struct"], [1373, 2, 1, "", "spglib2struct"], [1374, 2, 1, "", "spglib_get_primitive"], [1375, 2, 1, "", "spglib_get_spacegroup"], [1376, 2, 1, "", "struct2spglib"]], "pwtools.thermo": [[1377, 4, 1, "", "Gibbs"], [1382, 4, 1, "", "HarmonicThermo"], [1391, 1, 1, "", "R"], [1392, 1, 1, "", "Ry_to_J"], [1393, 1, 1, "", "c0"], [1394, 2, 1, "", "coth"], [1395, 2, 1, "", "debye_func"], [1396, 1, 1, "", "eV"], [1397, 1, 1, "", "eV_by_Ang3_to_GPa"], [1398, 2, 1, "", "einstein_func"], [1399, 2, 1, "", "expansion"], [1400, 1, 1, "", "hplanck"], [1401, 1, 1, "", "kb"], [1402, 1, 1, "", "pi"]], "pwtools.thermo.Gibbs": [[1377, 5, 1, "", "__init__"], [1378, 5, 1, "", "calc_F"], [1379, 5, 1, "", "calc_G"], [1380, 5, 1, "", "calc_H"], [1381, 5, 1, "", "set_fitfunc"]], "pwtools.thermo.HarmonicThermo": [[1382, 5, 1, "", "__init__"], [1383, 5, 1, "", "cv"], [1384, 5, 1, "", "evib"], [1385, 5, 1, "", "fvib"], [1386, 5, 1, "", "isochoric_heat_capacity"], [1387, 5, 1, "", "svib"], [1388, 5, 1, "", "vibrational_entropy"], [1389, 5, 1, "", "vibrational_free_energy"], [1390, 5, 1, "", "vibrational_internal_energy"]], "pwtools.timer": [[1403, 4, 1, "", "TagTimer"]], "pwtools.timer.TagTimer": [[1403, 5, 1, "", "__init__"], [1404, 5, 1, "", "p"], [1405, 5, 1, "", "pt"], [1406, 5, 1, "", "t"]], "pwtools.verbose": [[1407, 1, 1, "", "VERBOSE"], [1408, 2, 1, "", "verbose"]], "pwtools.visualize": [[1409, 4, 1, "", "ViewFactory"], [1410, 2, 1, "", "assert_struct"], [1411, 1, 1, "", "avogadro_cmd"], [1412, 1, 1, "", "view_avogadro"], [1413, 1, 1, "", "view_jmol"], [1414, 1, 1, "", "view_vmd_axsf"], [1415, 1, 1, "", "view_vmd_xyz"], [1416, 1, 1, "", "view_xcrysden"]], "pwtools.visualize.ViewFactory": [[1409, 5, 1, "", "__call__"], [1409, 5, 1, "", "__init__"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "data", "Python data"], "2": ["py", "function", "Python function"], "3": ["py", "attribute", "Python attribute"], "4": ["py", "class", "Python class"], "5": ["py", "method", "Python method"], "6": ["py", "exception", "Python exception"]}, "objtypes": {"0": "py:module", "1": "py:data", "2": "py:function", "3": "py:attribute", "4": "py:class", "5": "py:method", "6": "py:exception"}, "terms": {"": [6, 10, 21, 34, 61, 62, 64, 65, 66, 86, 90, 96, 97, 112, 130, 139, 144, 145, 159, 269, 408, 427, 437, 547, 565, 570, 573, 584, 624, 627, 640, 645, 648, 652, 654, 657, 659, 661, 664, 666, 676, 682, 688, 969, 1080, 1124, 1275, 1276, 1279, 1287, 1288, 1290, 1291, 1301, 1313, 1323, 1325, 1328, 1331, 1337, 1342, 1369, 1370, 1374, 1380, 1403, 1409, 1418, 1419, 1422, 1425, 1426, 1427, 1428, 1430, 1431, 1433], "0": [0, 1, 3, 10, 34, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 61, 62, 63, 64, 65, 67, 80, 86, 90, 91, 96, 97, 98, 108, 112, 113, 116, 132, 144, 157, 160, 168, 171, 179, 180, 186, 187, 190, 195, 206, 261, 265, 268, 269, 317, 321, 324, 325, 374, 378, 381, 396, 402, 404, 406, 408, 410, 411, 413, 414, 415, 418, 419, 422, 423, 424, 426, 427, 431, 434, 436, 437, 440, 446, 447, 451, 452, 453, 454, 455, 465, 471, 490, 497, 502, 506, 525, 535, 565, 575, 577, 627, 628, 630, 631, 640, 646, 648, 652, 655, 657, 660, 661, 664, 665, 666, 667, 669, 670, 672, 675, 676, 677, 679, 681, 682, 684, 686, 688, 703, 719, 725, 760, 764, 767, 800, 804, 807, 840, 844, 847, 871, 877, 878, 886, 918, 922, 925, 934, 954, 960, 1003, 1007, 1010, 1011, 1044, 1048, 1051, 1073, 1079, 1080, 1088, 1090, 1116, 1120, 1123, 1124, 1132, 1134, 1153, 1159, 1168, 1170, 1197, 1201, 1204, 1224, 1230, 1250, 1254, 1257, 1260, 1269, 1271, 1275, 1277, 1278, 1280, 1281, 1284, 1285, 1287, 1288, 1290, 1291, 1294, 1301, 1304, 1309, 1310, 1318, 1319, 1321, 1324, 1325, 1326, 1327, 1328, 1329, 1331, 1332, 1333, 1334, 1335, 1337, 1339, 1341, 1342, 1345, 1369, 1371, 1377, 1380, 1382, 1393, 1395, 1399, 1405, 1406, 1419, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1431, 1433], "00": [144, 159, 269, 1285, 1433], "000": [61, 62], "0000": [98, 1285, 1287, 1288], "000000": [1287, 1288], "0000000": 1124, "00000000": 676, "0000000000": 1271, "0000000000000009": 652, "000000000000000e": 144, "00000000e": [269, 1331], "00000005": 648, "00000051": 648, "00000352": 648, "0000050": 1124, "00001397": 1433, "000061": 1288, "000096": 1288, "000180": 1288, "000202": 1288, "000231296097065": 1332, "000238": 1288, "000464": 1288, "0005": 1285, "0007122565950572": 1332, "00121567": 1433, "0018": 1285, "002602": [62, 65], "003782": 1288, "005": [116, 1331], "0067": [62, 65], "00674": 1287, "0072973525698": 187, "0073": 1285, "00794": [62, 65], "0079400000000001": 3, "008336": 1288, "01": [61, 65, 1011, 1433], "0107": [62, 65], "010832": 1288, "010856": 648, "012182": [3, 62, 65], "01385042": 648, "01616479": 1433, "018304": 1288, "02": [61, 65, 1331, 1433], "02214179e": 189, "025643": 1288, "026063": 1288, "0265": 1285, "02891": [62, 65], "02974457": 269, "02998": 10, "03": [61, 65, 1309, 1331], "031584": 1288, "034117471638147e": 176, "03588": [62, 65], "03617668": 269, "03671913": 1422, "037500": 1287, "03806": [62, 65], "04": [61, 65], "05": [61, 65, 191, 404, 437, 447], "054": [62, 65], "054571628e": 199, "058042": 151, "06": [61, 65, 203], "061497": 1288, "06161700e": 269, "064109": 1431, "065": [62, 65], "066513": 1288, "06793023": 1433, "06925208": 648, "07": [61, 62, 65], "073636268676152": 688, "0762": 1285, "078": [62, 65], "08": 1395, "084": [62, 65], "085499": 1288, "0855": [62, 65], "086633": 1288, "086854": 1288, "0872": 1285, "089511": 1288, "09": 23, "0983": [62, 65], "0b100": [54, 55, 63], "0d": 926, "0d5_10": 136, "0e": [61, 62], "0j": 676, "0x2c52320": 56, "0x3615ab8": 134, "0x3615b48": 134, "1": [1, 3, 10, 19, 23, 34, 41, 42, 44, 45, 46, 47, 49, 50, 51, 52, 56, 58, 60, 61, 62, 63, 64, 65, 79, 80, 89, 90, 96, 97, 98, 104, 108, 112, 125, 126, 129, 130, 134, 144, 151, 154, 155, 159, 160, 161, 162, 188, 192, 193, 199, 201, 203, 211, 222, 233, 239, 250, 260, 261, 268, 269, 280, 289, 295, 306, 316, 317, 324, 337, 346, 352, 363, 373, 374, 381, 395, 396, 402, 406, 408, 411, 414, 418, 419, 422, 423, 426, 427, 431, 434, 435, 436, 437, 438, 440, 441, 443, 446, 447, 450, 452, 454, 455, 467, 468, 471, 489, 490, 500, 506, 524, 525, 537, 538, 544, 548, 565, 566, 574, 575, 577, 583, 594, 627, 628, 629, 630, 631, 634, 637, 640, 643, 644, 645, 648, 650, 652, 653, 654, 657, 658, 659, 661, 664, 665, 666, 667, 669, 670, 671, 672, 675, 676, 677, 679, 681, 686, 687, 688, 689, 695, 717, 719, 725, 726, 758, 760, 767, 798, 800, 807, 838, 840, 847, 869, 871, 877, 878, 886, 916, 918, 925, 926, 934, 952, 954, 960, 1001, 1003, 1010, 1011, 1042, 1044, 1051, 1071, 1073, 1079, 1080, 1088, 1090, 1114, 1116, 1123, 1124, 1132, 1134, 1151, 1153, 1159, 1168, 1170, 1195, 1197, 1204, 1222, 1224, 1230, 1248, 1250, 1257, 1260, 1261, 1271, 1272, 1273, 1275, 1278, 1281, 1283, 1284, 1285, 1287, 1288, 1289, 1290, 1291, 1292, 1294, 1301, 1302, 1309, 1310, 1313, 1315, 1318, 1319, 1323, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1339, 1340, 1342, 1345, 1351, 1353, 1355, 1357, 1368, 1371, 1373, 1374, 1377, 1382, 1395, 1396, 1398, 1399, 1401, 1403, 1405, 1406, 1419, 1422, 1423, 1424, 1425, 1426, 1427, 1431, 1433], "10": [54, 55, 62, 63, 64, 65, 98, 113, 165, 166, 210, 239, 245, 250, 269, 295, 301, 306, 352, 358, 363, 418, 423, 427, 435, 436, 437, 454, 455, 463, 481, 516, 574, 577, 595, 630, 631, 640, 648, 652, 657, 677, 686, 687, 692, 693, 926, 1285, 1301, 1304, 1309, 1325, 1329, 1332, 1337, 1339, 1422, 1423, 1425, 1426, 1433], "100": [10, 12, 64, 65, 406, 410, 413, 418, 437, 451, 453, 575, 628, 640, 657, 686, 926, 1260, 1294, 1301, 1309, 1325, 1328, 1331, 1339, 1371, 1377, 1395, 1399, 1419, 1421, 1422, 1423, 1433], "1000": [12, 58, 98, 1011, 1294, 1325, 1422, 1426, 1430], "10000": [12, 1433], "100000": 1426, "1000000000": 171, "100th": 437, "101": [62, 64, 65, 441, 1287, 1339], "1016541": 269, "101915": 1399, "102": [62, 64, 65], "1024": [36, 37, 38], "103": [64, 65], "104": [64, 65], "105": [64, 65], "106": [62, 64, 65], "107": [62, 64, 65], "107383": 1288, "108": [64, 65], "108966": 1288, "109": [64, 65, 471], "10938215e": [202, 638], "109737": 183, "10int": [454, 455], "10x": 1304, "11": [61, 64, 65, 89, 127, 167, 185, 427, 464, 632, 640, 642, 686, 694, 1270, 1285, 1339, 1425], "110": [64, 65], "111": [64, 65], "1117": 19, "112": [62, 64, 65], "113": [64, 65], "114": [12, 62, 64, 65], "115": [64, 65], "11533691": 269, "116": [62, 64, 65], "116601": 1288, "117": [64, 65], "118": [62, 65], "11844733769775123": 452, "11844733769775125": 452, "11844733769775126": 452, "12": [10, 62, 64, 65, 98, 196, 205, 427, 640, 686, 688, 1267, 1275, 1285, 1328, 1430], "120": [1294, 1325, 1433], "1200": 1399, "121": [62, 65], "121991": 1288, "123": 1011, "123456": 1433, "126": [62, 65], "12697068": 1433, "127": [62, 65], "128": [441, 1337], "13": [64, 65, 157, 182, 253, 254, 269, 309, 310, 366, 367, 427, 634, 635, 639, 640, 1088, 1132, 1168, 1275, 1326, 1425], "130217": 1288, "131": [62, 65], "1311": 1285, "13154023": 269, "132": [62, 65], "137": [62, 65], "138": [62, 65], "13850416": 648, "14": [62, 64, 65, 427, 640, 1275, 1287, 1288], "140": [62, 65], "14000000e": 1433, "14159265": 423, "141592653589793": [204, 432, 678, 1266, 1272, 1298, 1402], "1415926535897931e": 159, "144": [62, 65], "145": [62, 65], "15": [61, 62, 64, 65, 98, 197, 269, 640, 648, 878, 1263, 1288, 1339, 1422], "150": [62, 65], "151": [62, 65, 1433], "1512203": 1433, "157": [62, 65], "158": [62, 65], "16": [61, 64, 65, 112, 127, 141, 157, 269, 640, 642, 1270, 1271, 1285, 1288, 1326, 1337, 1342, 1382], "160": [194, 545, 1397], "160217648700": 195, "16196033": 269, "162": [62, 65], "164": [62, 65], "167": [62, 65], "168": [62, 65], "1696": [435, 437], "16e": [144, 157, 159, 1271], "17": [64, 65, 207, 208, 209, 640, 1268, 1382], "172149": 1288, "173": [62, 65], "174": [62, 65], "178": [62, 65], "17807": 1422, "17808": 1422, "17810": 1422, "17811": 1422, "17812": 1422, "179": 1332, "1797": [62, 65], "179871969961165e": [181, 1392], "17987197e": [170, 178, 184, 534, 1205], "18": [62, 64, 65, 169, 170, 172, 174, 175, 178, 181, 184, 532, 534, 546, 640, 968, 1205, 1285, 1392], "180": [62, 65, 406, 657], "18088339": 269, "183": [62, 65], "186": [62, 65], "19": [61, 64, 65, 192, 193, 269, 544, 548, 640, 1261, 1285, 1396, 1422], "190": [62, 65], "192": [62, 65], "1937": 471, "1947": 471, "195": [62, 65], "19512195j": 676, "196": [62, 65], "1989": [435, 437, 471], "1992": 1328, "1993": 1291, "1995": 437, "1996": 19, "1998": 471, "1_0": 1302, "1_1": 1302, "1_n": 1302, "1d": [3, 60, 98, 157, 233, 289, 346, 405, 406, 408, 418, 422, 426, 427, 436, 437, 441, 444, 447, 448, 467, 468, 497, 498, 504, 506, 537, 538, 577, 628, 640, 643, 648, 649, 650, 651, 652, 657, 664, 669, 670, 671, 672, 673, 675, 677, 681, 682, 684, 690, 1283, 1284, 1285, 1290, 1291, 1292, 1295, 1301, 1302, 1303, 1308, 1319, 1325, 1326, 1328, 1329, 1330, 1332, 1333, 1337, 1339, 1377, 1378, 1382, 1395, 1398, 1419, 1423, 1428], "1e": [10, 112, 113, 165, 166, 191, 197, 205, 210, 269, 404, 463, 481, 516, 648, 657, 692, 693, 969, 1263, 1267, 1301, 1304, 1318, 1326, 1382, 1395, 1399, 1422, 1425, 1433], "1e5": [441, 1339], "1j": 1328, "1st": [462, 636, 639, 645, 652, 654, 657, 659, 669, 682, 1288, 1301, 1382, 1406], "2": [0, 1, 10, 19, 23, 38, 39, 42, 43, 46, 47, 48, 50, 54, 55, 56, 61, 62, 63, 64, 65, 67, 72, 79, 89, 96, 97, 98, 104, 125, 126, 127, 130, 134, 141, 151, 154, 155, 157, 161, 162, 170, 178, 181, 184, 207, 208, 217, 238, 239, 250, 260, 269, 275, 294, 295, 306, 316, 332, 351, 352, 363, 373, 388, 395, 406, 408, 418, 422, 423, 427, 431, 434, 437, 438, 440, 441, 446, 447, 452, 471, 477, 480, 489, 497, 506, 512, 515, 524, 534, 543, 565, 574, 575, 577, 583, 594, 629, 635, 640, 642, 648, 649, 652, 657, 661, 665, 666, 667, 672, 674, 677, 679, 686, 687, 688, 701, 717, 732, 758, 774, 798, 814, 838, 854, 869, 884, 916, 932, 952, 975, 1001, 1011, 1017, 1042, 1058, 1071, 1086, 1114, 1124, 1130, 1151, 1166, 1195, 1205, 1212, 1222, 1237, 1248, 1260, 1268, 1270, 1271, 1272, 1273, 1275, 1285, 1287, 1288, 1290, 1291, 1292, 1294, 1301, 1309, 1310, 1313, 1314, 1315, 1316, 1318, 1319, 1325, 1326, 1327, 1328, 1329, 1331, 1332, 1334, 1335, 1337, 1339, 1341, 1342, 1355, 1357, 1368, 1371, 1374, 1377, 1382, 1392, 1403, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1430, 1431, 1433], "20": [6, 54, 56, 57, 59, 62, 64, 65, 239, 295, 352, 427, 497, 574, 607, 630, 631, 640, 648, 687, 926, 1285, 1301, 1325, 1329, 1339, 1377, 1422, 1430, 1433], "200": [62, 65, 418, 424, 437, 497, 677, 686, 1294, 1329, 1331, 1339, 1371, 1431], "2000": [98, 437], "20000": 437, "2007": 151, "2009": 1399, "200th": 437, "200x21": 1431, "2010": 23, "204": [62, 65], "207": [62, 65], "208": [62, 65], "209": [62, 65], "21": [61, 64, 65, 640, 1339, 1431, 1433], "210": [62, 65], "21088541": 269, "21138386": 173, "211383860484776": [734, 776, 816, 856, 886, 934], "217": [62, 65], "2176487": [194, 545, 1397], "218314": 1288, "22": [61, 62, 64, 65, 89, 157, 176, 640, 1285], "22033082": 269, "220446049250313e": [127, 141, 157, 642, 1270, 1271], "222": [62, 65], "22244653": 1433, "223": [62, 65], "224": [62, 65], "22400000e": 1433, "224107": 541, "225": 1433, "225020": 1288, "226": [62, 65], "227": [3, 62, 65], "23": [62, 64, 65, 90, 189, 201, 427, 637, 640, 1273, 1287, 1369, 1401], "231": [62, 65], "232": [62, 65], "2338": 1287, "23456789": 1124, "237": [62, 65], "238": [62, 65], "2385": 1287, "24": [61, 62, 64, 65, 640, 1288], "241": 12, "241509647120417e": 175, "242": [62, 65], "243": [62, 65], "244": [62, 65], "24555934": 269, "247": [62, 65], "25": [62, 64, 65, 1088, 1132, 1168, 1309, 1369, 1370, 1433], "2500": [1377, 1399], "251": [62, 65], "252": [62, 65, 1285], "256": 1337, "2566370614359173e": 203, "257": [62, 65], "258": [62, 65, 1422, 1433], "25804864": 1433, "259": [62, 65], "26": [61, 62, 64, 65, 157, 1287, 1288], "262": [62, 65], "263": 1431, "2647": 1285, "26524368": 1433, "267": [62, 65], "268": [62, 65], "27": [64, 65, 173, 188, 233, 269, 289, 346, 734, 776, 816, 856, 886, 934, 1285, 1288, 1422], "270": [62, 65], "271": [62, 65], "272": [62, 65], "276": [62, 65], "28": [61, 62, 64, 65], "280": [62, 65], "281": [62, 65], "28147351": 269, "28318531": 423, "284": [62, 65], "285": [62, 65], "288": [62, 65], "28800000e": 1433, "2886722": 1124, "289": [62, 65], "29": [23, 64, 65, 648], "2917720859e": [167, 185, 464, 632, 694], "293": [62, 65], "294": [62, 65], "29849056": 269, "29944506": 1433, "299792458": [190, 1393], "29979245800": 206, "2d": [58, 59, 60, 96, 98, 126, 157, 410, 418, 419, 420, 428, 431, 440, 451, 480, 506, 515, 577, 583, 607, 628, 629, 640, 648, 665, 667, 673, 677, 679, 682, 689, 878, 888, 936, 1091, 1171, 1260, 1269, 1288, 1301, 1302, 1303, 1308, 1337, 1353, 1377, 1378, 1419, 1433], "2e": [543, 1382], "2e3": 1331, "2f": 157, "2g": 1377, "2nd": [437, 636, 639, 1326, 1406], "2x2x1": 440, "2x2x2": 440, "3": [3, 6, 12, 23, 38, 39, 42, 43, 44, 45, 47, 48, 49, 51, 52, 55, 56, 58, 59, 60, 61, 62, 64, 65, 96, 97, 98, 112, 113, 123, 125, 126, 136, 154, 155, 157, 159, 161, 162, 204, 211, 239, 269, 295, 325, 352, 404, 406, 408, 409, 412, 413, 418, 419, 420, 422, 423, 425, 427, 429, 431, 432, 434, 435, 436, 437, 440, 444, 445, 447, 448, 449, 450, 452, 453, 456, 458, 467, 468, 480, 497, 498, 501, 504, 506, 515, 537, 538, 565, 569, 572, 573, 574, 575, 576, 583, 594, 631, 634, 635, 636, 639, 640, 648, 650, 657, 664, 667, 672, 676, 677, 678, 681, 686, 688, 689, 754, 794, 834, 878, 900, 941, 1011, 1124, 1260, 1266, 1269, 1271, 1272, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1283, 1284, 1285, 1287, 1288, 1290, 1291, 1292, 1294, 1298, 1301, 1309, 1326, 1328, 1331, 1332, 1337, 1339, 1355, 1368, 1373, 1377, 1382, 1395, 1399, 1402, 1419, 1421, 1422, 1423, 1424, 1426, 1427, 1430, 1431, 1433], "30": [62, 64, 65, 268, 324, 381, 402, 418, 497, 575, 648, 725, 767, 807, 847, 877, 925, 960, 1010, 1051, 1079, 1123, 1159, 1204, 1230, 1257, 1421], "300": [98, 471, 686, 1011, 1332, 1339, 1377, 1433], "3000": [98, 437], "30000000e": 1433, "3012421": 461, "3033": 1287, "305": [62, 65], "31": [3, 61, 64, 65, 202, 638, 1285], "310": 98, "312": 98, "314472": [177, 1391], "31569915768": 183, "32": [61, 62, 64, 65, 1272, 1285, 1337], "323": [61, 62], "327": [62, 65], "3289841960777247": 180, "33": [64, 65, 648], "330246": 1288, "3306690738754696e": 1382, "33081055": 1433, "33333333e": 1433, "34": [64, 65, 198, 199, 200, 1273, 1400], "35": [12, 62, 64, 65, 112, 157, 1285], "35355339": 418, "35974394e": [169, 172, 174, 532, 546, 968], "36": [54, 55, 61, 62, 63, 64, 65], "36208784": 269, "37": [64, 65, 1287], "3776": 1287, "3782": 704, "38": [61, 62, 64, 65], "3806504e": [201, 637, 1401], "38315829": 1422, "3833": [62, 65], "39": [61, 62, 64, 65, 157, 1309], "39269908": 423, "39398397": 269, "3d": [2, 58, 59, 60, 96, 406, 410, 413, 418, 419, 431, 440, 441, 451, 453, 629, 684, 878, 1091, 1171, 1269, 1283, 1284, 1290, 1291, 1292, 1377, 1378, 1419, 1422, 1423, 1431], "3m": 1433, "3rd": [471, 636, 639, 1294, 1406], "4": [10, 54, 55, 61, 62, 63, 64, 65, 98, 112, 125, 126, 169, 172, 174, 209, 239, 269, 295, 352, 404, 408, 422, 423, 427, 437, 440, 447, 481, 516, 532, 546, 565, 628, 636, 639, 640, 648, 667, 672, 676, 686, 688, 768, 968, 1011, 1124, 1275, 1285, 1294, 1309, 1319, 1326, 1332, 1337, 1421, 1427, 1430, 1433], "40": [62, 64, 65, 497, 1309], "402992": 1288, "40594891": 269, "41": [61, 64, 65], "411": [62, 65], "41219704": 269, "41887902": 423, "418884326505e": [207, 208, 1268], "42": [61, 62, 64, 65], "4209142": 1124, "422063193140694": [734, 776, 816, 856, 886, 934], "43": [64, 65, 1309], "4314": 1377, "438": 1309, "44": [61, 62, 64, 65, 1285], "4419": 1285, "45": [61, 64, 65], "453": [62, 65], "455": [12, 1287], "456": 1287, "4562947": 269, "457": 1287, "46": [61, 64, 65], "4678": [62, 65], "47": [61, 62, 64, 65, 1291], "47241757": 269, "4762002": 595, "47879679": 269, "48": [61, 64, 65], "4863": 1291, "49": [62, 64, 65, 471, 1433], "49245281": 269, "49846847": 269, "49969369": 269, "4d": 1288, "4f": 98, "4j": 676, "4th": 471, "5": [19, 61, 62, 64, 65, 112, 113, 125, 161, 167, 176, 179, 185, 239, 268, 269, 295, 324, 352, 381, 402, 406, 415, 418, 422, 423, 427, 434, 464, 497, 575, 577, 628, 631, 632, 640, 648, 652, 657, 672, 676, 677, 686, 687, 694, 725, 767, 807, 847, 877, 925, 960, 1010, 1051, 1079, 1123, 1124, 1159, 1204, 1230, 1257, 1260, 1282, 1285, 1287, 1291, 1318, 1319, 1323, 1326, 1327, 1331, 1332, 1334, 1337, 1342, 1377, 1381, 1382, 1399, 1419, 1421, 1422, 1423, 1426, 1427, 1433], "50": [58, 62, 64, 65, 426, 437, 497, 577, 627, 652, 1294, 1301, 1325, 1339, 1369, 1370, 1426, 1427, 1431, 1433], "500": [113, 424, 436, 497, 575, 1339, 1422, 1423, 1427, 1433], "5000": [1288, 1430], "5000050": 1124, "50th": 437, "51": [61, 62, 64, 65, 734, 776, 816, 856, 886, 934, 1431, 1433], "512": 1337, "52": [64, 65, 127, 642, 1270], "52833103": 269, "52917720859": [168, 186, 886, 934, 1088, 1132, 1168, 1424], "53": [61, 64, 65, 1309], "53186403": 595, "54": [61, 62, 64, 65, 157, 1287, 1433], "544": 1288, "546": [62, 65], "548": 1285, "55": [62, 64, 65], "56": [64, 65], "5627": 1285, "57": [61, 64, 65, 435, 437], "5712": 1285, "57441444": 269, "57668453": 269, "5773532": 1124, "57943468": 269, "58": [61, 62, 64, 65], "58148870118305": [1422, 1433], "59": [62, 64, 65], "59033133": 1433, "5931": 1287, "59727965": 269, "5e": [61, 62, 1011, 1331, 1399], "5k": 1380, "5th": [1422, 1433], "6": [38, 39, 61, 62, 64, 65, 112, 123, 125, 175, 189, 198, 200, 211, 269, 325, 409, 410, 411, 412, 414, 418, 422, 423, 427, 445, 449, 450, 451, 456, 458, 640, 648, 686, 900, 941, 969, 1275, 1285, 1287, 1295, 1326, 1328, 1332, 1337, 1339, 1399, 1400, 1425, 1431, 1433], "60": [64, 65, 1294, 1325, 1332, 1421, 1422], "60203333e": 1433, "602176487e": [192, 193, 269, 544, 548, 1261, 1396, 1422], "603": 1285, "60569193": 182, "605691930242388": [1088, 1132, 1168], "61": [64, 65], "62": [61, 62, 64, 65], "6201379367036871e": 269, "6208499": 1124, "62606896e": [198, 200, 1400], "62630805": 269, "63": [62, 64, 65], "63239207": 269, "64": [61, 62, 64, 65, 127, 642, 1270, 1285, 1309, 1337], "64588604295": 269, "64911187": 269, "65": [62, 64, 65], "656": 1285, "66": [61, 64, 65, 157], "6600": 1285, "6605387820000001e": [269, 1422], "660538782e": [188, 233, 289, 346], "663631": 1288, "669": 1285, "67": [64, 65, 1285], "68": [64, 65], "68243941": 269, "68611164": 1433, "69": [61, 62, 64, 65], "6910": 1285, "6934": [62, 65], "7": [10, 61, 64, 65, 125, 161, 253, 254, 269, 309, 310, 366, 367, 640, 672, 688, 704, 926, 1285, 1294, 1309, 1326, 1332, 1337, 1339, 1433], "70": [64, 65, 541, 1325], "71": [61, 62, 64, 65, 471], "711031596570347": [1088, 1132, 1168], "71536701": 1422, "718372": 1288, "72": [62, 64, 65], "723": [62, 65], "72534409": 269, "73": [64, 65], "7306": 1285, "7366": 1285, "738": 1285, "74": [62, 64, 65], "7414": 1285, "7434": 1285, "74506882": 269, "7465": 1285, "74763576": 1433, "74831561": 1422, "75": [61, 64, 65, 157, 1369, 1370], "7500": 1285, "75609756": 676, "7569": 1287, "76": [61, 62, 64, 65, 1421], "76776695": 418, "77": [64, 65], "777": 1371, "78": [62, 64, 65], "79": [62, 64, 65], "798": [62, 65], "8": [19, 61, 62, 64, 65, 98, 112, 177, 196, 423, 427, 569, 576, 640, 648, 1285, 1288, 1318, 1337, 1342, 1374, 1377, 1391, 1399, 1421, 1425, 1433], "80": [64, 65, 112, 113, 1325], "80000000e": 1433, "8000643": 1124, "81": [64, 65], "811": [62, 65], "81153398": 1433, "818": [62, 65], "82": [64, 65, 1285], "82271468": 648, "825": 1433, "82842712": 427, "829": 1288, "83": [62, 64, 65], "83776865301e": 209, "84": [61, 62, 64, 65], "84217708": 269, "845": [62, 65], "85": [62, 64, 65], "854187817620389e": 196, "86": [64, 65], "867": [62, 65], "8682": [62, 65], "869": 1287, "87": [19, 61, 62, 64, 65], "871": 1287, "87207221": 269, "8789": 1124, "88": [62, 64, 65], "8811": 1287, "881828": 1288, "8832": 1287, "88798": 151, "888": 1371, "889": 1288, "89": [61, 64, 65, 1431], "89717342": 269, "9": [3, 6, 61, 62, 64, 65, 202, 211, 427, 452, 454, 455, 638, 640, 672, 679, 686, 703, 1285, 1291, 1309, 1337, 1433], "90": [64, 65, 269, 565, 1332, 1377, 1433], "90318748": 269, "904": [62, 65], "90413645": 1422, "90447": [62, 65], "9045": 1285, "9054519": [62, 65], "90547": [62, 65], "9055": [62, 65], "90566621": 269, "90585": [62, 65], "90638": [62, 65], "9075": 1285, "90765": [62, 65], "91": [62, 64, 65, 565], "92": [61, 62, 64, 65, 565], "9216": [62, 65], "922": 1285, "92535": [62, 65], "93": [64, 65], "93032": [62, 65], "93127985": 269, "9317": 1285, "933195": [62, 65], "93421": [62, 65], "938045": [62, 65], "94": [61, 64, 65, 1399], "941": [62, 65], "9415": [62, 65], "94788": [62, 65], "948": [62, 65], "95": [61, 62, 64, 65], "955912": [62, 65], "96": [61, 62, 64, 65], "96259264": 1422, "964": [62, 65], "966569": [62, 65], "9668": [62, 65], "968443": 1288, "97": [64, 65, 157], "973762": [62, 65], "98": [61, 62, 64, 65], "9804": [62, 65], "9806375": 269, "981538": 1287, "9815386": [62, 65], "98625597": 269, "98639824": 269, "98976928": [62, 65], "99": [61, 64, 65], "9961": [62, 65], "99762256": 648, "9984032": [62, 65], "998e10": 10, "999": 406, "9994": [62, 65], "99999798": 648, "999998055132549": 1332, "99999808": 648, "99999959": 648, "9eedd": 1324, "9int": [454, 455], "A": [6, 86, 90, 96, 161, 438, 441, 471, 565, 575, 666, 673, 679, 687, 878, 1080, 1341, 1377, 1419, 1422, 1424, 1427], "ASE": [6, 112, 123, 222, 269, 280, 337, 407, 427, 442, 569, 576, 1417, 1420, 1428, 1429, 1431], "AT": [408, 437, 447], "As": [19, 21, 64, 65, 66, 1325, 1425], "At": [64, 65, 66, 1431], "BUT": 1309, "Be": [64, 65, 66], "But": [89, 93, 418, 577, 677, 1275, 1330, 1339, 1377, 1382, 1423, 1424, 1431], "By": [96, 222, 280, 337, 672, 1368, 1422, 1423], "For": [21, 23, 54, 55, 61, 62, 63, 64, 65, 67, 88, 96, 97, 102, 109, 117, 408, 417, 422, 427, 431, 436, 437, 447, 506, 574, 577, 585, 661, 669, 670, 671, 679, 682, 878, 1080, 1275, 1287, 1291, 1292, 1294, 1301, 1302, 1304, 1313, 1319, 1339, 1341, 1342, 1355, 1368, 1371, 1377, 1422, 1423, 1424, 1425, 1426, 1431, 1433], "If": [21, 34, 53, 54, 55, 59, 60, 61, 62, 63, 66, 84, 90, 96, 97, 99, 112, 125, 129, 144, 147, 157, 159, 163, 211, 222, 266, 269, 280, 322, 325, 337, 379, 400, 404, 418, 427, 431, 437, 455, 481, 495, 516, 530, 568, 575, 583, 584, 585, 596, 597, 598, 621, 622, 624, 625, 649, 651, 661, 677, 688, 691, 695, 723, 765, 805, 845, 875, 923, 958, 1008, 1011, 1049, 1052, 1077, 1090, 1094, 1121, 1124, 1134, 1157, 1170, 1174, 1202, 1228, 1255, 1260, 1271, 1275, 1278, 1281, 1285, 1290, 1296, 1301, 1306, 1324, 1331, 1332, 1341, 1351, 1357, 1368, 1371, 1374, 1377, 1379, 1382, 1409, 1411, 1418, 1419, 1423, 1425, 1430, 1431, 1433], "In": [10, 21, 34, 64, 65, 66, 90, 96, 112, 132, 149, 404, 418, 431, 437, 447, 502, 568, 646, 655, 660, 681, 878, 985, 1027, 1080, 1124, 1287, 1325, 1331, 1339, 1368, 1374, 1418, 1419, 1422, 1423, 1424, 1425, 1430, 1431, 1433], "It": [67, 130, 419, 575, 643, 657, 686, 687, 848, 1080, 1124, 1291, 1342, 1403, 1417, 1418, 1419, 1422, 1423, 1430, 1433], "NO": 636, "NOT": [21, 97, 136, 159, 409, 418, 1080, 1382, 1423, 1424, 1430], "No": [61, 62, 64, 65, 66, 140, 1433], "Not": [90, 158], "OF": [900, 941], "ON": [878, 926], "OR": [437, 1325], "Of": 1433, "On": [591, 1430], "One": [67, 1381, 1425], "Or": [34, 661, 1318, 1433], "THE": 1424, "TO": 1427, "That": [404, 437, 569, 969, 1339, 1368, 1382, 1419, 1433], "The": [6, 21, 34, 54, 55, 61, 62, 63, 66, 67, 86, 90, 96, 97, 125, 136, 150, 151, 159, 164, 233, 289, 346, 404, 418, 429, 434, 435, 436, 437, 438, 441, 455, 461, 471, 481, 506, 516, 568, 574, 576, 577, 585, 596, 597, 598, 621, 622, 624, 625, 627, 640, 643, 648, 661, 675, 677, 679, 681, 684, 686, 687, 688, 878, 926, 969, 1011, 1124, 1269, 1272, 1275, 1283, 1284, 1285, 1288, 1290, 1294, 1300, 1304, 1325, 1326, 1327, 1328, 1331, 1334, 1335, 1339, 1341, 1351, 1353, 1368, 1371, 1375, 1377, 1380, 1382, 1406, 1407, 1409, 1418, 1419, 1422, 1423, 1424, 1425, 1426, 1430, 1431, 1433], "Then": [14, 89, 90, 96, 409, 418, 427, 587, 588, 589, 590, 592, 593, 599, 600, 601, 602, 603, 604, 677, 1080, 1124, 1294, 1304, 1339, 1377, 1419, 1425, 1430, 1431], "There": [61, 62, 636, 661, 1275, 1341, 1342, 1423, 1430], "These": [61, 62, 462, 577, 1331, 1422], "To": [34, 61, 62, 151, 446, 568, 577, 679, 926, 1124, 1325, 1332, 1343, 1351, 1409, 1423, 1424, 1426, 1430, 1433], "Will": [1304, 1377, 1409], "With": [672, 1291, 1345, 1418, 1419, 1424], "_": [21, 80, 81, 96, 261, 262, 317, 318, 374, 375, 396, 397, 418, 490, 491, 525, 526, 719, 720, 760, 761, 800, 801, 840, 841, 871, 872, 918, 919, 954, 955, 1003, 1004, 1044, 1045, 1073, 1074, 1116, 1117, 1153, 1154, 1197, 1198, 1224, 1225, 1250, 1251], "_10": 136, "__call__": [34, 465, 497, 535, 547, 643, 648, 650, 652, 657, 1301, 1318, 1325, 1377, 1409], "__debug__": 130, "__dict__": 134, "__doc__": 1290, "__f": 1411, "__file__": 1433, "__init__": [61, 62, 67, 86, 89, 90, 93, 96, 100, 103, 104, 112, 211, 269, 325, 382, 461, 465, 471, 497, 506, 535, 547, 572, 577, 583, 640, 643, 648, 650, 652, 657, 695, 726, 768, 808, 848, 878, 926, 961, 969, 1011, 1052, 1080, 1124, 1160, 1206, 1231, 1294, 1301, 1318, 1322, 1325, 1341, 1342, 1377, 1382, 1403, 1409], "__int__": [54, 55, 63], "__new__": [61, 62], "__repr__": 135, "__str__": [53, 163, 691, 1324, 1411], "__traceback__": [533, 1297], "_apply_units_raw": [212, 270, 327, 383, 696, 727, 769, 809, 849, 879, 927, 970, 1012, 1053, 1081, 1125, 1161, 1207, 1232], "_atoms_too_clos": 1294, "_baz": 67, "_cell_2d": [1091, 1135, 1171], "_dcd": [35, 1430], "_default_fit_": 1377, "_default_unit": [268, 324, 381, 402, 725, 767, 807, 847, 877, 925, 960, 1010, 1051, 1079, 1123, 1159, 1204, 1230, 1257], "_different_": 1380, "_dump_dct": 1011, "_ext_src": 1430, "_extend_arrays_apply_unit": [707, 737, 779, 819, 858, 889, 937, 980, 1022, 1062, 1093, 1136, 1173, 1216, 1241], "_findroot": [502, 645, 646, 654, 655, 659, 660], "_fit": 506, "_flib": [35, 406, 420, 421, 665, 1290, 1326, 1430], "_foo": [84, 266, 322, 379, 400, 495, 530, 723, 765, 805, 845, 875, 923, 958, 1008, 1049, 1077, 1121, 1157, 1202, 1228, 1255], "_forces_raw": 1124, "_get_": [21, 1124], "_get_baz": 67, "_get_foo": [84, 266, 322, 379, 400, 495, 530, 723, 765, 805, 845, 875, 923, 958, 1008, 1049, 1077, 1121, 1157, 1202, 1228, 1255], "_get_forces_raw": 1124, "_get_header_config": 56, "_not_": [77, 256, 312, 369, 393, 487, 522, 715, 756, 796, 836, 867, 914, 950, 999, 1040, 1069, 1112, 1149, 1193, 1220, 1246], "_p": 1431, "_pdo": 1424, "_raw": [21, 80, 81, 261, 262, 317, 318, 374, 375, 396, 397, 490, 491, 525, 526, 719, 720, 760, 761, 800, 801, 840, 841, 871, 872, 918, 919, 954, 955, 1003, 1004, 1044, 1045, 1073, 1074, 1116, 1117, 1124, 1153, 1154, 1197, 1198, 1224, 1225, 1250, 1251], "_run": 96, "_scale": 1296, "_thermo_dct": 1011, "_val": 1370, "a0": [10, 19, 679, 1377, 1424], "a1": [679, 1377], "a2": [640, 679, 1377], "a3": 679, "a4": 679, "a5": 679, "a6": 679, "a7": 679, "a8": 679, "a_0": 1124, "a_smooth": 1433, "aa": [1, 50, 677, 1309, 1311, 1317], "ab": [141, 157, 481, 516, 1271, 1325, 1329, 1418, 1423], "abc": 144, "abil": 437, "abinit": [19, 21, 634, 635, 636, 639, 1418], "abl": 1377, "about": [431, 969, 1272, 1339, 1423, 1433], "abov": [61, 62, 269, 577, 878, 1332, 1419, 1422, 1423, 1425, 1431, 1433], "absdiff": 98, "absolut": [6, 98, 145, 506, 1296], "abstact": 1342, "abstract": 1422, "abtract": 1418, "ac": [64, 65, 66], "accept": [222, 280, 337, 406, 408, 428, 430, 447, 595, 631, 686, 687, 1318, 1377, 1409], "access": [21, 89, 1418, 1422, 1428, 1431, 1433], "accord": [438, 1124, 1399, 1424], "accordingli": [59, 1422], "account": [437, 1080], "accur": [648, 1080, 1382, 1431], "accuraci": [657, 1433], "acf": 1326, "acorr": [1, 1291, 1423], "across": 90, "act": [1124, 1424], "activ": 1430, "actual": [34, 61, 62, 90, 150, 151, 575, 648, 664, 1080, 1275, 1330, 1339, 1341, 1342, 1343, 1419, 1423, 1425, 1430, 1431], "ad": [96, 1368, 1377], "adapt": [688, 1290], "add": [86, 128, 159, 269, 422, 460, 568, 583, 623, 627, 667, 1271, 1272, 1336, 1342, 1343, 1344, 1345, 1351, 1379, 1426, 1433], "add_column": [1342, 1345], "addit": [96, 222, 280, 325, 337, 454, 628, 900, 941, 1345, 1379, 1409, 1431], "addition": 1080, "adjac": 573, "advanc": 1433, "advis": 1323, "afaik": 1287, "affect": [437, 1423], "after": [21, 34, 61, 62, 148, 438, 480, 515, 707, 737, 779, 819, 858, 889, 937, 980, 1022, 1062, 1093, 1124, 1136, 1173, 1216, 1241, 1275, 1291, 1342, 1368, 1382, 1406, 1409, 1423, 1424, 1426], "ag": [64, 65, 66], "again": [21, 1011, 1423], "against": [628, 1430], "agrument": 90, "ahead": [1091, 1171], "ai": 677, "ak": 679, "aka": 1363, "al": [64, 65, 66, 104, 105, 112, 238, 239, 245, 250, 253, 254, 269, 294, 295, 301, 306, 309, 310, 351, 352, 358, 363, 366, 367, 427, 471, 565, 703, 1011, 1124, 1271, 1273, 1399, 1421, 1422], "al1": [565, 703], "alat": [1080, 1090, 1094, 1124, 1134, 1135, 1137, 1170, 1174, 1275, 1287, 1422, 1424, 1427], "alawi": 1284, "algo": [677, 1328], "algorithm": [677, 1332], "alia": [34, 61, 62, 127, 549, 580, 642, 1270, 1409], "alias": 1325, "align": [58, 404, 419, 969, 1011, 1425], "all": [10, 19, 21, 34, 61, 62, 90, 96, 97, 101, 104, 106, 108, 112, 114, 152, 157, 160, 253, 263, 268, 269, 309, 319, 324, 325, 366, 376, 381, 402, 404, 406, 408, 415, 418, 419, 420, 427, 431, 433, 437, 440, 447, 457, 462, 471, 551, 553, 557, 559, 568, 577, 583, 584, 585, 627, 648, 661, 665, 671, 672, 677, 679, 683, 684, 687, 688, 725, 726, 767, 807, 847, 877, 878, 925, 960, 1010, 1011, 1051, 1079, 1123, 1124, 1159, 1204, 1230, 1257, 1260, 1272, 1275, 1282, 1283, 1288, 1291, 1294, 1296, 1302, 1304, 1318, 1326, 1332, 1339, 1342, 1351, 1369, 1371, 1377, 1378, 1379, 1382, 1418, 1419, 1422, 1423, 1424, 1425, 1426, 1430, 1431, 1433], "allclos": [1287, 1339, 1372, 1419], "allen": 437, "alloc": [61, 62], "allow": [6, 60, 61, 62, 67, 408, 437, 447, 565, 688, 1294, 1345, 1368, 1377, 1424, 1431], "almost": [144, 1309, 1325, 1417], "aln": [104, 105, 427, 1011, 1421, 1427, 1431, 1433], "alon": [419, 1294], "along": [58, 60, 81, 96, 262, 318, 325, 375, 397, 409, 418, 419, 421, 422, 424, 436, 441, 446, 491, 526, 574, 575, 628, 667, 684, 688, 690, 720, 761, 801, 841, 872, 919, 955, 1004, 1045, 1074, 1117, 1124, 1154, 1198, 1225, 1251, 1269, 1275, 1291, 1319, 1330, 1335, 1337, 1339, 1378, 1405, 1419, 1423], "alpha": [10, 211, 269, 325, 409, 411, 412, 414, 426, 450, 456, 458, 565, 1377, 1399, 1431, 1433], "alpha_": 1377, "alpha_a": 1431, "alpha_ax0": 1431, "alpha_ax1": 1431, "alpha_ax2": 1431, "alpha_c": 1431, "alpha_v": 1431, "alpha_x": [1377, 1379, 1399], "alreadi": [21, 96, 97, 129, 1294, 1351, 1361, 1362, 1368, 1374, 1425], "also": [3, 10, 14, 21, 61, 62, 67, 96, 97, 325, 406, 418, 419, 422, 425, 431, 437, 440, 506, 575, 577, 636, 640, 648, 652, 657, 672, 673, 676, 687, 688, 808, 878, 1124, 1269, 1271, 1272, 1275, 1294, 1325, 1331, 1332, 1339, 1342, 1371, 1374, 1377, 1378, 1379, 1418, 1421, 1422, 1423, 1424, 1425, 1426, 1430, 1431, 1433], "altern": 1430, "alwai": [67, 150, 437, 438, 447, 506, 574, 661, 878, 1011, 1124, 1275, 1287, 1304, 1339, 1351, 1374, 1377, 1419, 1422, 1425, 1431], "am": [64, 65, 66, 471], "amask": [437, 1426], "amass": [1287, 1427], "amu": [3, 10, 233, 269, 289, 346, 1422], "an": [14, 19, 21, 25, 34, 54, 55, 61, 62, 63, 66, 67, 84, 86, 88, 91, 96, 132, 148, 266, 269, 322, 379, 400, 418, 422, 425, 427, 430, 431, 436, 446, 455, 495, 506, 530, 596, 597, 598, 621, 622, 623, 624, 625, 627, 640, 648, 657, 661, 667, 672, 682, 687, 723, 765, 805, 845, 875, 923, 958, 1008, 1049, 1077, 1080, 1121, 1124, 1157, 1202, 1228, 1255, 1260, 1275, 1319, 1325, 1330, 1337, 1339, 1341, 1371, 1377, 1409, 1417, 1418, 1419, 1420, 1422, 1423, 1424, 1429, 1430, 1431, 1433], "analysi": [565, 570, 1428], "analyt": [682, 1302], "andf": 1433, "anergi": [229, 286, 343], "ang": [21, 123, 211, 222, 269, 280, 325, 337, 423, 434, 437, 467, 468, 480, 497, 498, 501, 504, 506, 515, 537, 538, 566, 736, 738, 754, 778, 780, 794, 818, 820, 834, 1080, 1124, 1377, 1433], "angl": [1, 12, 409, 411, 412, 450, 456, 458, 565, 666, 1294, 1431], "angle_rang": 1294, "angle_toler": [1374, 1375], "angleidx": 406, "angleidx2": 406, "angleidx3": 406, "angles1d": 406, "anglesijk": [1, 42, 406], "angstrom": [116, 269, 408, 427, 434, 437, 447, 456, 458, 566, 567, 571, 1080, 1124, 1275, 1422, 1424, 1433], "angsttom": 3, "angular": [1423, 1424], "ani": [21, 61, 62, 80, 99, 261, 317, 374, 396, 411, 414, 437, 447, 490, 525, 565, 575, 584, 719, 760, 800, 840, 871, 918, 954, 1003, 1044, 1073, 1116, 1153, 1197, 1224, 1250, 1341, 1364, 1365, 1374, 1377, 1380, 1418, 1423, 1428], "anim": 566, "anoth": [14, 61, 62, 89, 123, 419, 438, 494, 529, 688, 1124, 1291, 1294, 1304, 1339, 1341, 1363, 1423, 1430, 1431, 1433], "anwendungen": 437, "anymor": [211, 1430], "anyth": [21, 97, 144, 159, 437, 585, 1318, 1341, 1405, 1406, 1430, 1431], "anywai": [1330, 1431], "anywher": [19, 1275], "apart": 1425, "api": [14, 269, 643, 648, 1301, 1303, 1318, 1374, 1417, 1422, 1428, 1433], "app": [14, 471, 506], "appar": [900, 941], "appart": [1418, 1423], "appear": [1304, 1342], "append": [96, 97, 406, 568, 1337, 1368, 1421, 1431], "appl": 1399, "appli": [212, 263, 269, 270, 319, 327, 376, 383, 404, 406, 420, 425, 427, 430, 431, 437, 438, 696, 727, 769, 809, 849, 879, 927, 970, 1012, 1053, 1080, 1081, 1125, 1135, 1161, 1207, 1232, 1325, 1339, 1365, 1373, 1382, 1433], "applic": [14, 1080, 1369], "approach": 1377, "appropir": [84, 266, 322, 379, 400, 495, 530, 723, 765, 805, 845, 875, 923, 958, 1008, 1049, 1077, 1121, 1157, 1202, 1228, 1255], "appropri": 1422, "approxim": [31, 1377, 1382, 1395, 1417, 1428, 1429], "apt": 1430, "ar": [12, 19, 21, 23, 34, 54, 55, 58, 59, 60, 61, 62, 63, 64, 65, 66, 75, 86, 90, 91, 96, 97, 99, 112, 132, 136, 149, 157, 159, 160, 164, 212, 241, 269, 270, 297, 325, 327, 354, 383, 391, 408, 409, 417, 418, 419, 425, 426, 427, 433, 435, 436, 437, 446, 447, 471, 480, 482, 506, 515, 517, 557, 565, 566, 568, 574, 577, 578, 579, 581, 582, 584, 585, 627, 628, 629, 640, 648, 650, 661, 664, 671, 672, 677, 681, 688, 696, 711, 726, 727, 746, 769, 786, 809, 826, 848, 849, 862, 878, 879, 900, 903, 926, 927, 941, 944, 970, 989, 1011, 1012, 1030, 1053, 1065, 1081, 1103, 1124, 1125, 1143, 1161, 1184, 1207, 1217, 1232, 1242, 1275, 1284, 1294, 1296, 1300, 1304, 1323, 1325, 1326, 1328, 1339, 1341, 1342, 1351, 1355, 1368, 1371, 1372, 1377, 1379, 1382, 1407, 1409, 1418, 1419, 1422, 1423, 1424, 1425, 1426, 1427, 1430, 1431, 1433], "arang": [427, 628, 640, 664, 667, 686, 1260, 1337], "arbitrari": [67, 149, 159, 409, 418, 419, 425, 462, 682, 688, 1369, 1371], "arbitrarili": 409, "arch": 1272, "area": [675, 1291, 1382, 1424], "arg": [59, 89, 103, 122, 124, 129, 143, 146, 156, 269, 325, 420, 431, 462, 480, 515, 547, 549, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 579, 582, 626, 628, 650, 652, 657, 663, 664, 695, 726, 768, 808, 848, 878, 926, 969, 1052, 1160, 1286, 1289, 1293, 1299, 1301, 1312, 1348, 1349, 1350, 1353, 1354, 1355, 1357, 1359, 1383, 1384, 1385, 1387, 1409, 1430], "argsort": 427, "argument": [54, 55, 63, 64, 65, 66, 102, 109, 117, 161, 164, 269, 429, 455, 462, 596, 597, 598, 621, 622, 624, 625, 650, 675, 1290, 1300, 1313, 1326, 1407, 1423], "around": [161, 269, 437, 657, 1325, 1326, 1332, 1367, 1423, 1425], "arr": [58, 60, 126, 141, 157, 418, 446, 640, 667, 672, 677, 683, 684, 688, 1330, 1335, 1337, 1339], "arr2": 677, "arr3d": 58, "arrai": [2, 3, 21, 38, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 56, 58, 59, 60, 61, 62, 98, 112, 126, 141, 149, 157, 219, 233, 263, 269, 277, 289, 319, 334, 346, 376, 404, 405, 406, 408, 409, 410, 412, 413, 418, 419, 420, 422, 423, 424, 427, 428, 430, 431, 434, 435, 436, 437, 440, 441, 444, 446, 447, 448, 451, 452, 453, 456, 458, 467, 468, 480, 481, 497, 498, 504, 506, 515, 516, 537, 538, 568, 573, 574, 575, 577, 578, 581, 628, 640, 648, 649, 650, 651, 657, 664, 665, 667, 669, 670, 671, 672, 673, 675, 676, 677, 679, 681, 683, 684, 686, 687, 688, 689, 690, 878, 1091, 1171, 1260, 1269, 1271, 1272, 1275, 1283, 1284, 1285, 1287, 1288, 1290, 1291, 1292, 1295, 1301, 1302, 1303, 1306, 1308, 1319, 1325, 1326, 1328, 1329, 1331, 1333, 1335, 1337, 1339, 1342, 1353, 1354, 1377, 1382, 1395, 1398, 1405, 1406, 1419, 1421, 1422, 1423, 1427, 1431, 1433], "array_lik": [157, 409, 411, 412, 414, 431, 450, 1325, 1332, 1333, 1338, 1399], "arrayio": [35, 1269], "arri": [1, 46, 640, 665], "arrx": [1, 46, 665], "articl": 151, "ase": [3, 6, 112, 211, 222, 269, 280, 337, 423, 427, 569, 576, 1422, 1430, 1431, 1433], "ask": 112, "asr": [1287, 1427], "ass": 1406, "assembl": 96, "assert": [129, 130, 422, 1272, 1419, 1431], "assert_almost_equ": 418, "assert_array_almost_equ": 1328, "assert_attr": [70, 215, 273, 330, 386, 474, 509, 699, 730, 772, 812, 852, 882, 930, 973, 1015, 1056, 1084, 1128, 1164, 1210, 1235], "assert_cmd": 1409, "assertionerror": [68, 213, 271, 328, 384, 472, 507, 697, 728, 770, 810, 850, 880, 928, 971, 1013, 1054, 1082, 1126, 1162, 1208, 1233], "assign": [61, 62, 1406], "associ": [61, 62, 1405, 1406], "assum": [21, 90, 98, 269, 431, 437, 567, 577, 643, 671, 672, 926, 1124, 1275, 1284, 1339, 1342, 1382, 1419, 1423, 1425, 1430, 1431], "assumpt": 1339, "assur": [67, 462, 1339], "astyp": 1272, "atla": 1430, "atm": [112, 640], "atom": [3, 19, 105, 108, 111, 112, 113, 119, 211, 222, 233, 236, 238, 239, 244, 245, 250, 253, 254, 269, 280, 289, 292, 294, 295, 300, 301, 306, 309, 310, 325, 337, 346, 349, 351, 352, 357, 358, 363, 366, 367, 404, 406, 407, 408, 415, 420, 427, 428, 429, 430, 431, 436, 437, 438, 441, 442, 446, 447, 467, 468, 471, 497, 498, 504, 537, 538, 565, 569, 639, 703, 900, 941, 1011, 1052, 1124, 1271, 1272, 1273, 1283, 1285, 1288, 1290, 1291, 1292, 1294, 1296, 1339, 1373, 1374, 1418, 1419, 1420, 1422, 1423, 1426, 1427, 1429, 1433], "atom1": 1339, "atom2": 1339, "atom_maxtri": [1294, 1296], "atom_styl": 1011, "atom_symbol": 112, "atomic_data": [35, 1294, 1373], "atomic_posit": [1080, 1124, 1271, 1422, 1424], "atomic_speci": 1273, "atomic_unit": 10, "atomist": [1417, 1422], "atoms2struct": [427, 1422, 1431, 1433], "atpo": [116, 1421], "atpos_str": [1272, 1421], "atspec": 116, "attach": [584, 627, 1342, 1345], "attach_column": [1343, 1351], "attempt": [86, 96, 1294, 1341], "attr": [21, 67, 68, 70, 72, 76, 77, 82, 83, 84, 95, 213, 215, 217, 219, 255, 256, 264, 266, 271, 273, 275, 277, 311, 312, 320, 322, 325, 328, 330, 332, 334, 368, 369, 377, 379, 384, 386, 388, 392, 393, 398, 399, 400, 417, 424, 433, 472, 474, 477, 480, 486, 487, 492, 493, 495, 507, 509, 512, 515, 521, 522, 527, 528, 530, 697, 699, 701, 714, 715, 721, 722, 723, 728, 730, 732, 755, 756, 762, 763, 765, 770, 772, 774, 795, 796, 802, 803, 805, 810, 812, 814, 835, 836, 842, 843, 845, 850, 852, 854, 866, 867, 873, 874, 875, 878, 880, 882, 884, 913, 914, 920, 921, 923, 928, 930, 932, 949, 950, 956, 957, 958, 971, 973, 975, 998, 999, 1005, 1006, 1008, 1013, 1015, 1017, 1039, 1040, 1046, 1047, 1049, 1054, 1056, 1058, 1068, 1069, 1075, 1076, 1077, 1082, 1084, 1086, 1111, 1112, 1118, 1119, 1121, 1124, 1126, 1128, 1130, 1148, 1149, 1155, 1156, 1157, 1162, 1164, 1166, 1192, 1193, 1199, 1200, 1202, 1208, 1210, 1212, 1219, 1220, 1226, 1227, 1228, 1233, 1235, 1237, 1245, 1246, 1252, 1253, 1255], "attr_lst": [21, 67, 69, 71, 73, 76, 78, 82, 83, 85, 95, 214, 216, 218, 255, 257, 264, 267, 272, 274, 276, 311, 313, 320, 323, 329, 331, 333, 368, 370, 377, 380, 385, 387, 389, 392, 394, 398, 399, 401, 473, 475, 478, 486, 488, 492, 493, 496, 508, 510, 513, 521, 523, 527, 528, 531, 698, 700, 702, 714, 716, 721, 722, 724, 729, 731, 733, 755, 757, 762, 763, 766, 771, 773, 775, 795, 797, 802, 803, 806, 811, 813, 815, 835, 837, 842, 843, 846, 851, 853, 855, 866, 868, 873, 874, 876, 881, 883, 885, 913, 915, 920, 921, 924, 929, 931, 933, 949, 951, 956, 957, 959, 972, 974, 976, 998, 1000, 1005, 1006, 1009, 1014, 1016, 1018, 1039, 1041, 1046, 1047, 1050, 1055, 1057, 1059, 1068, 1070, 1075, 1076, 1078, 1083, 1085, 1087, 1111, 1113, 1118, 1119, 1122, 1127, 1129, 1131, 1148, 1150, 1155, 1156, 1158, 1163, 1165, 1167, 1192, 1194, 1199, 1200, 1203, 1209, 1211, 1213, 1219, 1221, 1226, 1227, 1229, 1234, 1236, 1238, 1245, 1247, 1252, 1253, 1256], "attr_nam": [75, 80, 81, 241, 261, 262, 297, 317, 318, 354, 374, 375, 391, 396, 397, 482, 490, 491, 517, 525, 526, 711, 719, 720, 746, 760, 761, 786, 800, 801, 826, 840, 841, 862, 871, 872, 903, 918, 919, 944, 954, 955, 989, 1003, 1004, 1030, 1044, 1045, 1065, 1073, 1074, 1103, 1116, 1117, 1143, 1153, 1154, 1184, 1197, 1198, 1217, 1224, 1225, 1242, 1250, 1251], "attribut": [21, 61, 62, 67, 77, 86, 89, 96, 104, 112, 147, 211, 219, 256, 269, 277, 312, 325, 334, 369, 393, 487, 497, 522, 695, 707, 715, 726, 737, 756, 768, 779, 796, 808, 819, 836, 848, 858, 867, 878, 889, 914, 926, 937, 950, 969, 980, 999, 1011, 1022, 1040, 1052, 1062, 1069, 1080, 1093, 1112, 1124, 1136, 1149, 1160, 1173, 1193, 1206, 1216, 1220, 1231, 1241, 1246, 1355, 1377, 1422, 1425, 1433], "attrs_nstep": [325, 441], "attrs_only_traj": 325, "attrubiut": [77, 256, 312, 369, 393, 487, 522, 715, 756, 796, 836, 867, 914, 950, 999, 1040, 1069, 1112, 1149, 1193, 1220, 1246], "au": [64, 65, 66], "auto": [0, 1, 408, 437, 447, 707, 737, 779, 819, 858, 889, 937, 980, 1022, 1062, 1093, 1136, 1173, 1216, 1241, 1417, 1422, 1429], "auto_calc": [707, 737, 779, 819, 858, 889, 937, 980, 1022, 1062, 1093, 1136, 1173, 1216, 1241, 1433], "autocorrel": [23, 1326, 1417, 1420, 1428, 1429], "automag": 1011, "automat": [89, 96, 100, 116, 159, 441, 575, 577, 1124, 1272, 1278, 1281, 1341, 1342, 1371, 1421, 1422, 1425], "avail": [480, 515, 878, 905, 1339, 1420, 1429, 1430], "averag": [408, 424, 437, 447, 1423], "aviod": 1342, "avogadro": [1411, 1428, 1433], "avogadro2": 1411, "avoid": [6, 222, 280, 337, 675, 1272, 1325, 1417, 1429], "awai": [682, 1339, 1342, 1368, 1418, 1422, 1433], "awar": 437, "awk": 21, "ax": [419, 575, 577, 583, 584, 585, 591, 594, 595, 605, 627, 628, 629, 640, 684, 688, 1124, 1301, 1325, 1330, 1377, 1378, 1419, 1427, 1431, 1433], "ax0": [1377, 1378, 1379, 1431], "ax0_i": 1377, "ax1": [1301, 1377, 1378, 1379, 1431], "ax1_i": 1377, "ax2": [583, 585, 594, 595, 1301, 1377, 1378, 1379, 1431], "ax3d": [577, 606, 628], "axdo": [575, 1427], "axes3d": 628, "axes3dsubplot": 591, "axes_flat": [1377, 1378, 1431], "axes_grid": [623, 627], "axessubplot": [575, 595], "axi": [56, 58, 59, 60, 80, 81, 96, 112, 261, 262, 317, 318, 325, 374, 375, 396, 397, 408, 409, 410, 413, 418, 419, 422, 424, 431, 436, 437, 446, 447, 451, 453, 468, 490, 491, 525, 526, 538, 575, 583, 584, 585, 595, 627, 628, 664, 667, 684, 686, 687, 688, 719, 720, 760, 761, 800, 801, 840, 841, 871, 872, 918, 919, 954, 955, 1003, 1004, 1044, 1045, 1073, 1074, 1116, 1117, 1124, 1153, 1154, 1197, 1198, 1224, 1225, 1250, 1251, 1260, 1269, 1291, 1319, 1325, 1326, 1330, 1332, 1335, 1337, 1339, 1377, 1378, 1382, 1399, 1419, 1423, 1424, 1431], "axnam": [584, 585], "axsf": [34, 408, 1284, 1409, 1428], "b": [10, 21, 34, 64, 65, 66, 96, 125, 130, 134, 211, 269, 325, 409, 411, 412, 414, 422, 434, 438, 450, 452, 456, 458, 462, 471, 480, 481, 498, 506, 515, 516, 557, 565, 568, 575, 577, 595, 596, 597, 598, 622, 625, 666, 686, 690, 878, 1124, 1272, 1275, 1290, 1291, 1294, 1301, 1309, 1325, 1331, 1339, 1342, 1344, 1356, 1368, 1374, 1377, 1379, 1380, 1382, 1409, 1419, 1423, 1424, 1426, 1431], "b0": [467, 468, 481, 497, 506, 516, 537, 538], "b1": [467, 468, 497, 537, 538, 687], "b2": 687, "b3": 687, "ba": [64, 65, 66], "back": [74, 125, 139, 221, 279, 336, 390, 479, 514, 706, 735, 777, 817, 857, 887, 935, 978, 1020, 1061, 1089, 1133, 1169, 1215, 1240, 1269, 1325, 1433], "backend": [1418, 1428, 1430], "background": [23, 34, 1409, 1417, 1425, 1429, 1430], "backtick": 1269, "backup": [97, 105, 112, 113, 139, 1421], "backward": [158, 423, 1286, 1328], "bad": [481, 516, 661], "bak": 139, "band": [575, 677, 1325, 1427], "bandpass": 1325, "bandstop": 1325, "bar": [67, 72, 90, 125, 134, 139, 217, 275, 332, 388, 477, 512, 568, 584, 594, 701, 732, 747, 774, 787, 814, 827, 848, 854, 884, 932, 975, 1017, 1058, 1086, 1130, 1166, 1212, 1237, 1341, 1342, 1355, 1371, 1422], "barostat": [19, 634, 635, 636], "bartlett": 1340, "base": [6, 14, 35, 54, 55, 61, 62, 63, 86, 89, 90, 93, 96, 97, 100, 103, 104, 112, 149, 211, 269, 325, 382, 426, 438, 447, 461, 465, 471, 497, 506, 533, 535, 547, 572, 577, 583, 586, 640, 643, 648, 650, 652, 657, 695, 726, 768, 808, 848, 878, 926, 961, 969, 1011, 1052, 1080, 1124, 1160, 1206, 1231, 1272, 1276, 1279, 1282, 1294, 1297, 1301, 1318, 1322, 1325, 1326, 1341, 1342, 1368, 1371, 1377, 1382, 1403, 1409, 1418, 1423, 1428, 1430, 1433], "basecrossvalid": 1318, "basedir": [969, 1011], "basenam": [6, 90, 96, 112, 506, 1282, 1421], "bash": [97, 151], "basi": [25, 409, 412, 418, 434, 435, 452, 481, 516, 565, 1301, 1417, 1419, 1420, 1428, 1429, 1433], "basic": [21, 67, 96, 211, 657, 1425, 1428, 1433], "batch": [35, 1418, 1421, 1428, 1431], "baz": 125, "bb": [1, 50, 1309, 1311, 1317], "bd": 598, "becaus": [61, 62, 481, 516, 577, 681, 1325, 1380], "becom": [99, 112, 1425], "bee": 130, "been": [21, 130, 159, 1011, 1325, 1368, 1377, 1431], "befor": [21, 97, 431, 650, 661, 667, 675, 681, 688, 1124, 1290, 1291, 1294, 1325, 1331, 1338, 1339, 1377, 1382, 1423, 1424, 1426, 1430], "beforehand": 150, "begin": 1425, "behav": [481, 516, 585, 672, 1304, 1325, 1345, 1433], "behavior": [211, 1124, 1425], "being": [1382, 1425], "belief": 19, "bell": 159, "belong": 446, "below": [61, 62, 409, 420, 422, 427, 437, 471, 568, 595, 878, 1124, 1339, 1341, 1377, 1424, 1425, 1427, 1430, 1431], "besid": 1326, "best": [12, 1418, 1433], "beta": [211, 269, 325, 409, 411, 412, 414, 450, 456, 458, 565, 1431], "better": [21, 677, 1291, 1309, 1339, 1377, 1418, 1425, 1431], "between": [93, 405, 406, 426, 437, 438, 456, 574, 577, 661, 665, 690, 1080, 1271, 1275, 1294, 1325, 1328, 1331, 1418, 1422, 1425], "bewar": [67, 1091, 1171], "beyond": 1431, "bg": [34, 1409], "bh": [64, 65, 66, 598], "bi": [64, 65, 66], "bia": 1425, "big": [21, 34, 422, 423, 437, 441, 1294, 1330, 1339, 1417, 1422, 1425, 1429], "bigger": [422, 657, 1339, 1425], "biggest": 437, "bin": [406, 408, 437, 447, 575, 1287, 1421, 1427, 1430], "binari": [74, 221, 279, 336, 390, 479, 514, 552, 706, 726, 735, 777, 817, 857, 887, 935, 969, 978, 1020, 1061, 1089, 1133, 1169, 1215, 1240, 1417, 1422, 1429], "bind": 90, "biopython": 1052, "birch": 471, "bispl": [577, 648], "bisplev": [577, 673], "bisplin": 682, "bisplrep": [577, 1425], "bit": [127, 642, 1270, 1309, 1425], "bitbucket": 695, "bk": [64, 65, 66], "bla": 139, "blame": 1275, "blk0": [454, 455], "blk1": [454, 455], "blk2": [454, 455], "blob": 1341, "block": [695, 1080, 1124, 1285], "blue": 630, "bmass": [19, 634, 635], "bo": [555, 598, 878], "bohr": [10, 19, 21, 411, 414, 743, 753, 784, 793, 824, 833, 860, 888, 899, 936, 940, 1080, 1090, 1091, 1094, 1099, 1124, 1134, 1135, 1137, 1139, 1170, 1171, 1174, 1180, 1275, 1422, 1424, 1433], "bool": [34, 60, 97, 98, 112, 125, 130, 141, 158, 159, 160, 164, 211, 269, 325, 406, 408, 416, 418, 420, 421, 422, 425, 427, 430, 431, 437, 447, 456, 457, 458, 506, 606, 627, 650, 657, 664, 666, 671, 672, 675, 681, 687, 688, 707, 737, 779, 819, 858, 889, 937, 980, 1022, 1062, 1090, 1093, 1134, 1136, 1170, 1173, 1216, 1241, 1274, 1278, 1281, 1291, 1294, 1296, 1300, 1301, 1326, 1327, 1331, 1333, 1334, 1337, 1338, 1339, 1351, 1368, 1378, 1379, 1382, 1407, 1409], "boolean": 160, "born": 1418, "both": [132, 159, 211, 269, 325, 417, 595, 1291, 1323, 1339, 1342, 1423, 1425, 1427, 1430], "bother": 848, "bottleneck": 1294, "bottom": [595, 627, 1368], "bound": [38, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 86, 627, 1011, 1290, 1294, 1323, 1326], "boundari": [430, 431, 1011], "box": [408, 437, 447, 627, 1011, 1430], "bp": 598, "br": [64, 65, 66], "bracket": 661, "brent": 661, "brillouin": 574, "broadcast": [441, 667, 688, 1419], "broken": [151, 1430], "brute": 1323, "bsub": 93, "buffer": [53, 61, 62, 163, 691, 1324, 1341, 1411], "bug": 6, "build": [22, 112, 427, 438, 440, 679, 1011, 1318, 1319, 1321, 1325, 1368, 1422, 1428, 1430, 1433], "built": [66, 96, 455, 596, 597, 598, 621, 622, 624, 625, 1422], "builtin": [164, 1300, 1407], "bulk": [427, 480, 481, 515, 516, 1377, 1380, 1433], "bulkmod": 497, "bv": [471, 480, 506, 515, 598], "bv_method": [494, 506, 529], "bw": 1328, "bx": 598, "byte": [54, 55, 61, 62, 63, 456, 1342], "bytearrai": [54, 55, 63], "bytes_or_buff": [53, 163, 691, 1324, 1411], "bz": [574, 1287, 1427], "c": [1, 6, 10, 21, 34, 41, 51, 52, 61, 62, 64, 65, 66, 127, 130, 211, 269, 325, 409, 411, 412, 414, 422, 434, 438, 450, 452, 456, 458, 462, 471, 557, 565, 568, 575, 596, 597, 598, 622, 625, 642, 666, 878, 900, 941, 1124, 1270, 1272, 1290, 1291, 1292, 1294, 1309, 1325, 1326, 1339, 1342, 1368, 1377, 1382, 1409, 1419, 1423, 1424, 1430, 1431], "c0": 10, "c1": 1423, "c2": 1423, "c3": 1423, "c_contigu": [61, 62], "c_j": [1306, 1425], "c_new": 418, "c_old": 418, "c_old2": 418, "c_p": 1431, "c_v": 1431, "ca": [64, 65, 66, 408, 427, 447], "ca_salt": 34, "calc": [86, 90, 91, 92, 93, 96, 97, 104, 112, 900, 941, 1341, 1342, 1355, 1368, 1421, 1426, 1431], "calc_al": [1377, 1378, 1379, 1380, 1431], "calc_baz": 67, "calc_bv": 506, "calc_dir": [86, 88, 90, 91, 92, 96, 97], "calc_dir_prefix": 96, "calc_dir_root": 96, "calc_f": [1377, 1379], "calc_foo": [86, 96, 97], "calc_g": [1377, 1378, 1380, 1431], "calc_h": [1377, 1379], "calc_nam": [96, 112, 113, 116], "calc_root": [96, 97], "calc_stuff": 67, "calc_theo": 1421, "calcul": [23, 35, 96, 97, 211, 251, 269, 307, 325, 364, 406, 420, 422, 423, 428, 435, 437, 446, 447, 452, 456, 467, 481, 497, 502, 506, 516, 537, 569, 572, 575, 576, 577, 631, 643, 645, 646, 654, 655, 659, 660, 661, 669, 670, 671, 707, 737, 779, 819, 858, 889, 926, 937, 969, 980, 1022, 1062, 1080, 1093, 1124, 1136, 1160, 1173, 1216, 1241, 1287, 1290, 1292, 1339, 1377, 1378, 1379, 1380, 1382, 1399, 1417, 1418, 1419, 1420, 1422, 1424, 1428, 1429, 1430, 1431], "calculatorbas": [104, 112], "calcut": 506, "call": [14, 21, 34, 67, 75, 80, 81, 82, 89, 96, 99, 131, 149, 151, 158, 211, 241, 261, 262, 263, 269, 297, 317, 318, 319, 325, 354, 374, 375, 376, 391, 396, 397, 398, 408, 418, 424, 429, 447, 462, 465, 480, 482, 490, 491, 492, 506, 515, 517, 525, 526, 527, 535, 583, 585, 645, 650, 652, 654, 657, 659, 675, 707, 711, 719, 720, 721, 737, 746, 760, 761, 762, 779, 786, 800, 801, 802, 819, 826, 840, 841, 842, 858, 862, 871, 872, 873, 889, 903, 918, 919, 920, 937, 944, 954, 955, 956, 980, 985, 989, 1003, 1004, 1005, 1022, 1027, 1030, 1044, 1045, 1046, 1062, 1065, 1073, 1074, 1075, 1080, 1093, 1103, 1116, 1117, 1118, 1124, 1136, 1143, 1153, 1154, 1155, 1173, 1184, 1197, 1198, 1199, 1216, 1217, 1224, 1225, 1226, 1241, 1242, 1250, 1251, 1252, 1294, 1301, 1318, 1331, 1348, 1349, 1350, 1357, 1379, 1382, 1405, 1406, 1409, 1419, 1422, 1424, 1427, 1430, 1431, 1433], "call_vmd_measure_gofr": [447, 1430], "callabl": [34, 90, 547, 631, 675, 1301, 1369, 1377, 1381, 1382, 1399, 1409], "callkwd": 648, "can": [21, 34, 54, 55, 60, 61, 62, 63, 67, 93, 96, 97, 99, 151, 159, 222, 239, 269, 280, 295, 337, 352, 404, 406, 409, 418, 424, 428, 437, 440, 441, 447, 452, 462, 471, 506, 565, 568, 569, 574, 575, 576, 583, 627, 631, 648, 650, 657, 661, 664, 672, 677, 681, 688, 1080, 1124, 1269, 1271, 1272, 1275, 1325, 1336, 1339, 1342, 1364, 1368, 1371, 1374, 1377, 1379, 1382, 1418, 1419, 1421, 1422, 1425, 1426, 1430, 1431, 1433], "candid": 87, "cannot": [21, 164, 269, 568, 681, 1300, 1309, 1374, 1382, 1407, 1419], "canon": [127, 642, 1270], "capabl": 437, "capac": [1377, 1382], "car": 437, "card": [1277, 1278, 1280, 1281], "care": [59, 1325, 1433], "cart": [404, 575], "cart2frac": 1, "cart2frac_traj": 1, "cartesian": [211, 269, 325, 404, 412, 420, 421, 428, 436, 456, 458, 572, 575, 738, 780, 820, 899, 1094, 1124, 1137, 1174, 1420, 1422, 1424, 1427, 1429], "case": [34, 59, 67, 90, 132, 149, 150, 159, 160, 222, 280, 337, 404, 418, 419, 425, 437, 440, 447, 462, 575, 584, 648, 652, 672, 688, 848, 878, 900, 941, 1080, 1124, 1275, 1291, 1304, 1323, 1325, 1330, 1339, 1341, 1368, 1374, 1377, 1380, 1403, 1420, 1423, 1425, 1429, 1430, 1431], "case1": 89, "case2": 89, "cast": [219, 277, 334, 1377], "cat": 56, "catch": 149, "cauchi": 1334, "caus": [643, 661, 1382], "caveat": [661, 1342], "cbook": 148, "cc": [12, 456, 457, 458], "cc2cell": [211, 269, 325, 410, 1275], "cd": [64, 65, 66, 598, 1426, 1430], "cdist": [665, 1309], "ce": [64, 65, 66], "cell": [1, 21, 43, 44, 45, 47, 48, 49, 112, 116, 123, 211, 222, 242, 269, 280, 298, 325, 337, 355, 409, 412, 413, 415, 418, 419, 422, 423, 426, 430, 431, 434, 435, 436, 437, 438, 440, 447, 450, 452, 453, 460, 471, 555, 565, 634, 635, 848, 878, 888, 900, 936, 941, 969, 1011, 1080, 1091, 1124, 1135, 1171, 1269, 1275, 1283, 1285, 1294, 1373, 1374, 1376, 1377, 1417, 1421, 1422, 1424, 1426, 1427, 1428, 1429, 1431], "cell2cc": [211, 269, 325, 413], "cell_maxtri": [1294, 1296], "cell_opt": 808, "cell_paramet": [1080, 1091, 1171, 1424], "cella": [108, 1011], "cellalpha": [108, 1011], "cellb": [108, 1011], "cellbeta": [108, 1011], "cellc": [108, 1011], "celldm": [411, 414, 1275, 1287, 1424], "celldm1": 1124, "celldm2cc": 1275, "cellgamma": [108, 1011], "center": [415, 440, 1304, 1306, 1425], "central": [427, 429, 446], "certain": [427, 437, 1371, 1425, 1433], "cf": [64, 65, 66], "ch": [418, 598, 1326], "chain": [19, 636, 639], "chang": [96, 97, 404, 437, 595, 627, 630, 1124, 1290, 1346, 1366, 1377, 1426, 1430, 1431], "char": 1272, "charact": [21, 127, 565, 642, 1270], "charg": [10, 113, 1373], "check": [67, 77, 140, 158, 256, 312, 369, 393, 404, 417, 419, 487, 522, 657, 715, 756, 796, 836, 867, 914, 950, 999, 1040, 1052, 1069, 1112, 1124, 1149, 1193, 1220, 1246, 1361, 1362, 1374, 1375, 1380, 1418, 1430, 1433], "check_depend": 1430, "check_set_attr": 67, "check_set_attr_lst": 67, "checkep": 657, "chemic": 3, "choic": [565, 1339, 1377], "choke": 151, "choos": [409, 441, 585, 1377], "chunk": [58, 60, 1269, 1339], "cif": [550, 567, 695, 1275, 1422, 1424, 1428, 1431], "ciffil": 1422, "citeseerx": [435, 437], "ckeck": 657, "ckeckep": 657, "cl": [64, 65, 66, 427, 437], "clarendon": 437, "class": [6, 14, 61, 62, 67, 86, 89, 90, 93, 96, 100, 103, 104, 112, 134, 154, 155, 162, 164, 211, 219, 269, 277, 325, 334, 382, 454, 461, 465, 471, 497, 506, 535, 547, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 572, 577, 583, 640, 643, 648, 650, 652, 657, 668, 695, 726, 768, 808, 848, 878, 926, 961, 969, 1011, 1052, 1080, 1124, 1160, 1206, 1231, 1258, 1259, 1269, 1294, 1300, 1301, 1318, 1322, 1325, 1341, 1342, 1377, 1382, 1403, 1407, 1409, 1420, 1428, 1429, 1433], "clean": [606, 1430, 1433], "clean_ax3d": 606, "clear": 1011, "clone": 1430, "close": [462, 481, 516, 1294, 1352, 1368, 1382], "close_scal": 1294, "cloughtocher2dinterpol": 648, "cluster": [97, 1430], "cm": [10, 64, 65, 66, 1283, 1284, 1285, 1288, 1291, 1382, 1424], "cmd": [34, 151, 1342, 1409], "co": [12, 64, 65, 66, 125, 411, 414, 456, 457, 458, 598, 607, 677, 1301, 1339], "codata": 10, "code": [23, 59, 67, 127, 437, 471, 481, 516, 642, 1269, 1270, 1403, 1417, 1418, 1419, 1420, 1423, 1425, 1428, 1429, 1430, 1433], "coeff": [679, 681, 1325, 1399], "coeffici": [681, 1325], "col": [126, 452, 679, 1285, 1343, 1345, 1351, 1361], "col0": [1368, 1371], "col1": [1368, 1371], "col2": 1371, "collect": [584, 585, 594, 1433], "colnam": [1368, 1371], "colname1": 1347, "colname2": 1347, "color": [577, 591, 595, 630, 631, 1301, 1339, 1427, 1433], "color_left": 595, "color_right": 595, "colum": [408, 447], "column": [61, 62, 86, 96, 418, 437, 628, 640, 679, 681, 878, 900, 941, 1011, 1052, 1271, 1285, 1341, 1343, 1344, 1345, 1351, 1353, 1355, 1357, 1361, 1368, 1369, 1371, 1420, 1429], "colunm": [900, 941], "com": [461, 595, 666, 1326, 1328, 1430, 1431], "comb": [35, 96, 1371], "combin": 1425, "commamd": 158, "command": [34, 84, 93, 104, 105, 112, 113, 266, 322, 379, 400, 408, 495, 530, 723, 765, 805, 845, 875, 923, 958, 1008, 1011, 1049, 1077, 1121, 1157, 1202, 1228, 1255, 1342, 1409], "comment": [56, 59, 60, 437, 565, 878, 1269, 1427], "commit": 1352, "commmand": 97, "common": [34, 35, 56, 90, 409, 437, 460, 648, 1269, 1409, 1421, 1422, 1425, 1427, 1428, 1433], "commonli": [93, 1357, 1422], "commun": 151, "comp": 151, "compact": 1426, "compar": [436, 497, 672, 681, 1283, 1327, 1334, 1374, 1423], "comparison": 1328, "compat": [127, 158, 423, 642, 1270, 1286, 1433], "compil": [14, 96, 703, 1290, 1430], "complain": [34, 1409], "complementari": [437, 447], "complet": [96, 145, 437, 627, 688, 1080, 1325, 1377, 1418, 1433], "completli": 585, "complex": [96, 676, 1283, 1288, 1291, 1328], "complic": [437, 1052, 1091, 1171], "composit": 1294, "compress": [21, 1431], "comput": [437, 684, 1418, 1419, 1423, 1428], "con": 21, "concaten": [404, 1080, 1422, 1426, 1433], "cond": 130, "conden": 471, "condit": [430, 431, 681], "config": [35, 57, 128], "configpars": [56, 128], "configur": 436, "confus": [675, 677], "conj": 1423, "connect": [90, 573, 574, 690, 1342, 1346, 1368], "consecut": 59, "consid": 1331, "consist": 679, "const": 1425, "constant": [35, 98, 409, 412, 436, 450, 497, 683, 684, 1275, 1291, 1318, 1323, 1339, 1422, 1424, 1425, 1427, 1431], "constraint": [1271, 1272], "constrani": [634, 635, 639], "construct": [22, 61, 62, 67, 96, 547, 574, 577, 661, 1336, 1427], "constructor": [14, 61, 62, 66, 89, 100, 222, 269, 280, 337, 455, 579, 582, 596, 597, 598, 621, 622, 624, 625, 648, 1382], "contain": [61, 62, 89, 90, 93, 125, 268, 269, 324, 381, 402, 418, 429, 452, 577, 583, 661, 669, 670, 672, 707, 725, 737, 767, 779, 807, 819, 847, 858, 877, 889, 925, 937, 960, 980, 1010, 1022, 1051, 1062, 1079, 1093, 1123, 1136, 1159, 1173, 1204, 1216, 1230, 1241, 1257, 1269, 1282, 1301, 1368, 1417, 1419, 1420, 1423, 1425, 1428, 1429], "content": [34, 112, 132, 1409], "context": 1341, "contigu": [61, 62], "continu": [96, 1339, 1351], "contrast": 1425, "contrib": 1430, "contribut": [1124, 1379, 1380, 1431], "control": 116, "conv": [159, 1427], "conv_thr": [112, 113, 116], "convang": [0, 12, 38, 39, 456, 457, 458], "conveni": [15, 131, 423, 500, 575, 644, 653, 658, 1271, 1273, 1342, 1344, 1422, 1423, 1424, 1428], "convent": [67, 123, 408, 409, 425, 435, 437, 447, 577, 666, 1275, 1377, 1426], "converg": [98, 436, 437, 481, 516, 661, 848, 926, 1339, 1421, 1433], "convergence_test_cutoff": 1421, "convers": [159, 269, 382, 411, 414, 577, 1124, 1342, 1433], "convert": [12, 19, 54, 55, 63, 86, 90, 91, 96, 123, 134, 136, 157, 159, 160, 161, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 411, 414, 432, 444, 448, 456, 458, 463, 464, 471, 532, 534, 544, 545, 546, 548, 566, 576, 577, 632, 637, 638, 678, 692, 693, 694, 968, 1080, 1124, 1205, 1261, 1263, 1266, 1267, 1268, 1272, 1275, 1298, 1331, 1353, 1369, 1371, 1391, 1392, 1393, 1396, 1397, 1400, 1401, 1402, 1418, 1422, 1433], "convex": 671, "convolut": [6, 441, 1327, 1334, 1339, 1423, 1433], "convolv": [1339, 1433], "cookbook": [1325, 1339], "coord": [0, 1, 38, 39, 43, 44, 48, 49, 112, 211, 219, 251, 269, 277, 307, 325, 334, 364, 403, 404, 412, 415, 416, 418, 419, 424, 425, 426, 427, 430, 431, 436, 437, 441, 446, 447, 456, 458, 848, 1011, 1080, 1094, 1095, 1124, 1137, 1174, 1175, 1269, 1271, 1272, 1294, 1296, 1419, 1422, 1424, 1426, 1427, 1433], "coord_tran": [211, 269, 325, 403, 419], "coord_trans3d": 418, "coordin": [418, 425, 431, 440, 446, 552, 558, 575, 726, 878, 926, 1011, 1339, 1417, 1420, 1422, 1428, 1429, 1433], "coords_frac": [1, 43, 44, 45, 47, 48, 49, 211, 222, 242, 269, 280, 298, 325, 337, 355, 424, 425, 430, 431, 438, 441, 1011, 1124, 1373, 1376, 1421, 1422, 1433], "coords_unit": [1094, 1174], "copi": [90, 132, 141, 152, 249, 305, 362, 415, 416, 418, 419, 425, 430, 431, 575, 687, 1338, 1421, 1426, 1430], "copytre": 132, "core": [35, 157, 428, 1124, 1373, 1422, 1430], "corner": [67, 1430], "corr": [1326, 1423], "correct": [435, 437, 438, 577, 1124, 1430], "correctli": [437, 627, 1342], "correl": [28, 437, 1326, 1420, 1429], "correlationtheorem": 1326, "correspond": [90, 93, 454, 1377], "cosin": [406, 456, 458], "could": [1430, 1433], "count": [408, 437, 447, 688], "counter": 1294, "coupl": 1426, "cours": [447, 648, 1260, 1290, 1339, 1422, 1433], "cov_rad": [3, 65], "coval": [3, 1294], "covalent_radii": [3, 1294], "cover": 419, "cp": [555, 598, 878, 1377, 1379, 1421, 1426, 1431], "cp2k": [21, 437, 456, 457, 458, 551, 552, 553, 554, 768, 808, 848, 1417, 1422, 1428, 1433], "cp2kdcdmdoutputfil": 1422, "cp2kmdoutputfil": [726, 808, 1422], "cp2krelaxoutputfil": 1422, "cp2kscfoutputfil": [768, 1422], "cpickl": 133, "cpmd": [21, 23, 555, 556, 878, 926, 1417, 1422, 1423, 1428, 1430], "cpmdmdoutputfil": 1422, "cpmdscfoutputfil": [878, 1422], "cpu": 1011, "cr": [64, 65, 66], "crazi": 1309, "creat": [53, 61, 62, 66, 96, 97, 100, 150, 163, 406, 422, 423, 427, 437, 438, 454, 455, 461, 568, 575, 596, 597, 598, 621, 622, 623, 624, 625, 630, 640, 672, 691, 1011, 1294, 1295, 1296, 1304, 1324, 1339, 1341, 1347, 1356, 1368, 1377, 1409, 1411, 1412, 1413, 1414, 1415, 1416, 1425, 1433], "create_t": 1342, "creation": [440, 1294], "cross": [404, 452, 677, 1318, 1319, 1323, 1326, 1423, 1425], "crossval_map_p_r": 1425, "cry": [34, 35, 104, 112, 1011, 1080, 1124, 1275, 1294, 1339, 1377, 1421, 1422, 1424, 1426, 1427, 1428, 1430, 1431, 1433], "cryst1": 1052, "cryst_const": [0, 21, 38, 39, 211, 219, 269, 277, 325, 334, 409, 410, 411, 412, 414, 450, 451, 456, 458, 969, 1052, 1124, 1275, 1295, 1296, 1421, 1422, 1427, 1431, 1433], "crystal": [116, 269, 427, 460, 1080, 1422, 1424, 1427, 1431], "crystallograph": [409, 412, 450], "crystalstructur": [427, 1433], "crystalthermo": 1431, "cstride": 577, "cstringio": 147, "csvr": 1426, "ct": 648, "ctype": [61, 62], "cu": [64, 65, 66], "cubic": [408, 434, 435, 437, 447, 471, 650, 681, 689, 1275, 1377, 1431], "cufoff": [481, 516], "cumul": [573, 575], "cur": [1348, 1349, 1350, 1357], "curent": 437, "current": [471, 878, 1011, 1382, 1424], "cursor": [1342, 1352, 1355, 1368], "curv": [471, 503, 506, 628, 647, 656, 661, 662, 669, 670, 1291, 1382, 1424, 1431], "curvatur": 1425, "custom": [108, 1011], "cut": [1345, 1426], "cutoff": [427, 428, 429, 1325], "cuu": 10, "cv": [598, 1318, 1320, 1321, 1323, 1377, 1378, 1382, 1386, 1425, 1431], "cv_kwd": [1318, 1323], "cx": 598, "cycl": [587, 588, 589, 590, 592, 593, 599, 600, 601, 602, 603, 604], "cyclic": 67, "cyclon": 461, "d": [38, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 64, 65, 66, 127, 437, 438, 471, 543, 567, 624, 642, 652, 666, 1270, 1287, 1290, 1301, 1313, 1326, 1329, 1377, 1426, 1427], "d0": 418, "d1": [418, 557], "d2": 557, "d3": 557, "danger": 67, "data": [34, 53, 61, 62, 67, 86, 98, 163, 219, 277, 334, 408, 437, 454, 461, 471, 480, 481, 506, 515, 516, 575, 577, 579, 582, 594, 607, 643, 648, 649, 652, 657, 661, 664, 677, 679, 681, 689, 691, 695, 707, 737, 779, 819, 858, 889, 937, 980, 1011, 1022, 1062, 1093, 1136, 1173, 1216, 1241, 1291, 1301, 1304, 1318, 1319, 1324, 1330, 1332, 1339, 1343, 1353, 1364, 1374, 1377, 1382, 1411, 1417, 1418, 1420, 1422, 1428, 1429, 1430, 1431], "data2d": [580, 607, 648, 1301, 1377], "data_foo": 695, "databas": [96, 97, 1341, 1342, 1361, 1367, 1368, 1371, 1417, 1421, 1429], "datafn": 408, "dataset": [557, 568, 1371, 1431], "datsbas": [99, 1368], "david": 113, "db": [64, 65, 66, 96, 625, 1325, 1341, 1342, 1344, 1355, 1356, 1368], "db_fn": 1342, "db_name": 96, "db_tabl": 96, "dbfn": 97, "dc": 625, "dcd": [35, 552, 558, 726, 961, 969, 1011, 1433], "dcdfilenam": 969, "dcdoutputfil": [726, 969], "dct": [90, 91, 134, 135, 139, 153, 159, 466, 536, 568], "dct2class": 134, "dd": [648, 1301, 1433], "ddi": [1301, 1433], "de": [418, 481, 506, 516, 542, 1323], "deactiv": 1433, "deal": [673, 1377, 1423, 1425], "debian": 1430, "debug": [21, 419, 1292], "deby": [1395, 1399], "debye_func": 1399, "decod": [53, 163, 691, 1324, 1411], "decor": 35, "def": [67, 72, 89, 217, 275, 332, 388, 462, 477, 512, 701, 732, 774, 814, 854, 884, 932, 975, 1017, 1058, 1086, 1130, 1166, 1212, 1237, 1431], "default": [21, 34, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 63, 90, 96, 97, 99, 159, 163, 222, 268, 280, 324, 337, 381, 402, 418, 422, 437, 441, 456, 457, 458, 506, 568, 583, 585, 648, 657, 664, 666, 672, 675, 681, 687, 688, 691, 725, 767, 807, 847, 848, 877, 925, 960, 969, 1010, 1011, 1051, 1079, 1080, 1123, 1124, 1159, 1204, 1230, 1257, 1301, 1318, 1319, 1323, 1324, 1325, 1337, 1339, 1341, 1342, 1345, 1368, 1369, 1377, 1382, 1411, 1423, 1424, 1425, 1426, 1430, 1431, 1433], "default_paramet": [102, 109, 117], "default_unit": [1011, 1124], "defin": [21, 34, 53, 67, 77, 86, 89, 90, 96, 104, 112, 130, 163, 256, 312, 325, 369, 393, 404, 406, 418, 427, 487, 522, 574, 577, 691, 715, 756, 796, 836, 867, 878, 914, 950, 999, 1040, 1069, 1112, 1149, 1193, 1220, 1246, 1287, 1294, 1324, 1377, 1411, 1422, 1424, 1425, 1427, 1431, 1433], "definit": [10, 27, 112, 1301, 1327, 1334, 1425], "deg": [1, 42, 406, 648, 650, 666, 679, 680, 681, 689, 1377, 1433], "degauss": 116, "degre": [405, 406, 456, 458, 565, 634, 635, 639, 650, 657, 666, 679, 680, 681, 689], "delet": [21, 34, 99, 219, 277, 334, 568, 1409], "delim": [157, 1271], "delimit": [157, 1271], "delta": 1339, "dens": [422, 423], "densiti": [23, 1304, 1382, 1418, 1423, 1424, 1428], "dep": 1430, "depend": [21, 67, 97, 427, 506, 661, 878, 1291, 1318, 1323, 1339, 1353, 1417, 1429], "depol": 1285, "deprec": [133, 439, 457, 549, 1318, 1430], "depth": 125, "der": [465, 467, 497, 500, 535, 537, 643, 644, 645, 652, 653, 654, 657, 658, 659, 682, 1124, 1301, 1377], "deriv": [21, 67, 269, 471, 497, 506, 542, 543, 643, 645, 652, 654, 657, 659, 664, 669, 682, 1124, 1301, 1303, 1377, 1430], "deriv_fd": 664, "deriv_jax": [1301, 1302], "deriv_spl": 1399, "describ": [61, 62, 503, 647, 656, 662, 1275, 1425], "descript": [112, 1355, 1377], "design": 1418, "desir": [1325, 1331], "despit": 648, "destin": 132, "det": 452, "detail": [25, 568, 1339, 1377, 1417, 1429], "detect": [1341, 1371, 1422, 1425], "determin": [59, 159, 1291, 1294, 1339, 1341, 1369, 1374, 1377, 1420, 1429], "dev": [1309, 1411, 1430], "devel": 151, "develop": [1418, 1430], "devid": 681, "df": [1302, 1325, 1331], "dfft1": 1328, "dfft2": 1328, "dft": [423, 985, 1027, 1431], "dg": 625, "di": 878, "diag": [112, 422, 423, 1433], "diagon": [112, 113, 116, 878, 1288], "dict": [3, 61, 62, 64, 65, 87, 90, 91, 95, 99, 112, 128, 134, 139, 211, 236, 239, 268, 269, 292, 295, 324, 325, 349, 352, 381, 402, 459, 467, 468, 481, 516, 537, 538, 557, 568, 629, 648, 681, 725, 767, 807, 847, 877, 925, 960, 1010, 1011, 1051, 1079, 1123, 1159, 1204, 1230, 1257, 1285, 1313, 1318, 1319, 1323, 1355, 1371, 1377, 1378, 1379, 1381], "dictionari": [61, 62, 64, 65, 89, 90, 159, 568, 1313, 1377, 1431], "did": 462, "didn": 682, "diff": [1309, 1332, 1431], "differ": [14, 98, 125, 404, 418, 425, 427, 428, 436, 437, 446, 471, 573, 577, 661, 675, 677, 681, 688, 878, 1080, 1291, 1319, 1328, 1339, 1341, 1374, 1405, 1418, 1422, 1423, 1431], "differend": 584, "differential_evolut": 1323, "difficult": 437, "digit": [703, 1272, 1325, 1326, 1342], "dim": [60, 418, 438, 439, 648, 665, 679, 689, 1283, 1301, 1306, 1339, 1428], "dimens": [19, 61, 62, 418, 419, 440, 634, 635, 636, 667, 679, 681, 682, 688, 1124, 1260, 1339, 1377, 1419, 1424], "dimension": 418, "dir": [6, 86, 90, 91, 93, 96, 97, 99, 104, 112, 132, 408, 447, 506, 1011, 1427], "direc": [438, 440], "direct": [21, 422, 440, 1289, 1291, 1304, 1318, 1319, 1323, 1419, 1423], "direct_pdo": [1291, 1423], "directli": [34, 437, 585, 681, 1342, 1422, 1433], "directori": [6, 34, 86, 104, 105, 112, 113, 926, 1409], "dirnam": [6, 90, 150, 1433], "disabl": [157, 404, 1271], "disbal": [1090, 1134, 1170], "discard": 1124, "discret": 1423, "discuss": 130, "disk": [21, 34, 1409], "disp": [34, 159, 1287, 1409, 1427], "dispatch": 100, "dispers": [574, 575, 677, 1287, 1433], "displai": [34, 408, 447, 1409], "dist": [1, 42, 45, 420, 421, 428, 1011], "distanc": [406, 421, 425, 427, 428, 435, 436, 437, 574, 665, 690, 1294, 1306, 1309, 1310, 1314, 1315, 1316, 1425], "distances_traj": 1, "distinct": [96, 1275, 1431], "distribut": [437, 574, 1428], "distsq": [1, 47, 1306], "distsq_frac": [1, 420], "distvec": [1, 42, 47, 420], "distvecs_frac": [1, 47, 420], "divid": [471, 683, 684, 1124, 1338, 1424], "dk": [625, 1431], "dm": 625, "dmask": 437, "do": [21, 23, 89, 97, 431, 437, 441, 462, 471, 575, 627, 648, 672, 675, 681, 1124, 1275, 1287, 1291, 1323, 1330, 1339, 1377, 1382, 1417, 1420, 1422, 1424, 1425, 1427, 1428, 1429, 1431, 1433], "do_stuff": 67, "doc": [23, 112, 506, 547, 566, 1325, 1328, 1339, 1341, 1425, 1433], "docstr": [21, 460, 547, 688], "document": [19, 1275, 1433], "doe": [21, 59, 84, 144, 159, 266, 322, 379, 400, 408, 419, 423, 437, 495, 530, 585, 648, 681, 723, 765, 805, 845, 875, 923, 958, 1008, 1049, 1077, 1080, 1121, 1157, 1202, 1228, 1255, 1345, 1406, 1424, 1425], "doesn": [21, 97, 437, 574, 1339, 1368, 1377, 1380, 1419, 1425, 1430], "doi": [435, 437], "doingth": 140, "domain": [1325, 1326, 1331], "don": [21, 89, 112, 149, 222, 280, 337, 427, 437, 457, 575, 677, 848, 1052, 1124, 1275, 1290, 1325, 1419, 1425, 1430], "done": [96, 139, 159, 577, 848, 1342, 1422, 1423, 1425, 1426, 1433], "dosarea": 1382, "dot": [419, 452, 1419, 1427], "doubl": [127, 136, 577, 642, 1270, 1331, 1342, 1423], "dougla": 19, "down": [56, 1331], "download": 1430, "dr": [6, 408, 437, 447, 625, 1431], "drawback": 67, "dregre": 681, "drive": 21, "drop": 6, "dset": [557, 568], "dsq": [1, 46], "dt": [446, 1291, 1325, 1329, 1331, 1377, 1395, 1399, 1423], "dtu": 1431, "dtype": [61, 62, 219, 277, 334, 427, 454, 577, 668, 672, 1258, 1259, 1269, 1272], "due": [1339, 1422, 1423], "dummi": [99, 134, 147, 427, 471], "dump": [21, 79, 133, 260, 316, 373, 395, 416, 489, 524, 561, 717, 758, 798, 838, 869, 916, 952, 1001, 1011, 1042, 1071, 1114, 1151, 1195, 1222, 1248, 1422, 1431, 1433], "dump_dcd": 1011, "dump_filenam": [74, 79, 221, 260, 279, 316, 336, 373, 390, 395, 479, 489, 514, 524, 706, 717, 735, 758, 777, 798, 817, 838, 857, 869, 887, 916, 935, 952, 978, 1001, 1020, 1042, 1061, 1071, 1089, 1114, 1133, 1151, 1169, 1195, 1215, 1222, 1240, 1248], "dump_modifi": 1011, "dump_txt": [108, 1011], "dump_xyz": 1011, "dumpfil": 108, "dumpfilenam": 1011, "duplic": 437, "dure": [436, 1382, 1431], "dv": [481, 506, 516, 542, 543, 1377], "dx": [652, 1301, 1377, 1399], "dx0_0": 1302, "dx0_1": 1302, "dx0_n": 1302, "dxl": 1302, "dy": [64, 65, 66, 625, 1301], "dy1": 98, "dy2": 98, "dyn": [10, 1282, 1283], "dyn1": 1282, "dyn3": 1283, "dyn5": 1282, "dynam": [19, 59, 878, 1282, 1283, 1284, 1288, 1428], "dynmat": [22, 1284, 1285], "e": [14, 19, 21, 34, 59, 61, 62, 64, 65, 66, 67, 72, 77, 86, 89, 90, 91, 93, 96, 99, 104, 112, 125, 139, 144, 149, 159, 217, 239, 256, 275, 295, 312, 332, 352, 369, 388, 393, 406, 408, 410, 412, 413, 418, 419, 425, 427, 428, 431, 434, 436, 437, 438, 441, 451, 453, 465, 467, 471, 477, 480, 481, 487, 497, 499, 502, 506, 512, 515, 516, 522, 537, 547, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 568, 575, 577, 579, 582, 583, 585, 595, 629, 640, 643, 646, 648, 650, 655, 660, 661, 667, 671, 673, 679, 681, 686, 687, 688, 689, 695, 701, 715, 732, 756, 774, 796, 814, 836, 854, 867, 878, 884, 914, 932, 950, 975, 999, 1011, 1017, 1040, 1058, 1069, 1080, 1086, 1090, 1112, 1124, 1130, 1134, 1149, 1166, 1170, 1193, 1212, 1220, 1237, 1246, 1260, 1269, 1275, 1282, 1284, 1285, 1287, 1294, 1321, 1325, 1326, 1333, 1339, 1341, 1342, 1345, 1353, 1368, 1369, 1371, 1373, 1374, 1375, 1377, 1379, 1380, 1381, 1382, 1409, 1419, 1423, 1424, 1425, 1426, 1427, 1428, 1430, 1431, 1433], "e0": [10, 467, 468, 481, 497, 506, 516, 537, 538], "each": [21, 61, 62, 67, 76, 82, 83, 86, 87, 88, 90, 95, 96, 97, 98, 99, 102, 109, 112, 117, 125, 255, 264, 311, 320, 368, 377, 392, 398, 399, 404, 408, 418, 422, 436, 437, 438, 441, 447, 486, 492, 493, 521, 527, 528, 572, 573, 574, 575, 628, 677, 679, 684, 686, 687, 690, 714, 721, 722, 755, 762, 763, 795, 802, 803, 835, 842, 843, 866, 873, 874, 878, 913, 920, 921, 949, 956, 957, 998, 1005, 1006, 1011, 1039, 1046, 1047, 1052, 1068, 1075, 1076, 1080, 1111, 1118, 1119, 1124, 1148, 1155, 1156, 1192, 1199, 1200, 1219, 1226, 1227, 1245, 1252, 1253, 1287, 1288, 1302, 1309, 1319, 1325, 1332, 1355, 1369, 1371, 1377, 1378, 1419, 1422, 1423, 1424, 1425, 1426, 1431, 1433], "earli": 1409, "earth": 471, "easi": [3, 441, 648, 1428], "easier": [61, 62], "easiest": 575, "easili": [1339, 1377], "eat": 1339, "echo": [140, 1011], "eclass": 878, "ecutfwc": [1369, 1370], "ecutrho": [112, 113, 116, 1421], "ecutwfc": [90, 112, 113, 116, 1341, 1421], "ed": [21, 437, 640, 1291, 1326, 1419], "edg": [440, 574, 671, 1325, 1339, 1433], "edit": [1328, 1430], "edu": [435, 437, 571], "educ": 437, "ee": 506, "effect": [159, 422, 423, 681, 1291, 1339, 1423, 1433], "effici": [428, 1422, 1426], "efit": 506, "egd": 440, "egrep": 21, "eh": 10, "eham": 878, "eiermann": 418, "eigenvector": [1283, 1284, 1288], "einstein": [1398, 1399], "einstein_func": 1399, "either": [93, 211, 269, 325, 404, 422, 427, 452, 577, 648, 1011, 1124, 1318, 1325, 1371, 1427], "ek": 878, "ekin": [211, 228, 269, 285, 325, 342, 424, 629, 985, 1027, 1426], "ekinc": 878, "ekinh": 878, "elcorto": 1430, "electr": 10, "electron": [10, 19, 116, 423, 1379], "electron_maxstep": [112, 113, 116], "element": [3, 61, 62, 587, 588, 589, 590, 592, 593, 599, 600, 601, 602, 603, 604, 683, 684, 1011], "elk": [471, 1428, 1430], "elkeosfit": [14, 506, 1430], "els": [21, 61, 62, 67, 72, 80, 81, 129, 217, 261, 262, 275, 317, 318, 332, 374, 375, 388, 396, 397, 477, 490, 491, 512, 525, 526, 583, 585, 648, 664, 701, 719, 720, 732, 760, 761, 774, 800, 801, 814, 840, 841, 854, 871, 872, 884, 918, 919, 932, 954, 955, 975, 1003, 1004, 1017, 1044, 1045, 1058, 1073, 1074, 1086, 1116, 1117, 1130, 1153, 1154, 1166, 1197, 1198, 1212, 1224, 1225, 1237, 1250, 1251, 1275, 1278, 1281, 1301, 1318, 1319, 1323, 1325, 1332, 1374, 1411], "empti": [21, 61, 62, 64, 65, 66, 131, 150, 455, 565, 575, 577, 596, 597, 598, 621, 622, 624, 625, 1080, 1313], "empty_lik": [1339, 1419], "en": [10, 450], "enabl": 681, "encod": [53, 163, 691, 1324, 1341, 1411], "encount": 1382, "end": [96, 151, 424, 437, 456, 878, 926, 1080, 1124, 1337, 1339, 1409, 1423, 1425, 1426], "endian": 1272, "endpoint": [446, 690], "ener": 1426, "energi": [10, 104, 107, 115, 211, 268, 269, 324, 325, 381, 402, 471, 480, 481, 497, 506, 515, 516, 725, 734, 767, 776, 807, 816, 847, 856, 877, 878, 886, 925, 934, 960, 985, 1010, 1027, 1051, 1079, 1088, 1097, 1123, 1132, 1159, 1168, 1178, 1204, 1230, 1257, 1287, 1377, 1378, 1379, 1382, 1418, 1422, 1431], "energies_ord": 878, "energy_forc": 848, "eneri": 1138, "engin": 1418, "enough": [681, 1382, 1425], "ensembl": 1426, "ensur": 1339, "enter": 1341, "enthalpi": 1380, "entir": [437, 1417], "entri": [96, 125, 157, 584, 585, 1260, 1275, 1341, 1342, 1351, 1359, 1368, 1369, 1371], "entropi": [1379, 1382], "enumer": [631, 1427], "env": [1421, 1427, 1430], "environ": 1430, "eo": [35, 1377, 1428, 1430], "eof": 456, "eosfit": [14, 471, 1377], "ep": [141, 157, 404, 657, 672, 1271, 1382], "eps0": 10, "eq": 1328, "equal": [418, 419, 427, 574, 672, 1358, 1423, 1425], "equat": [471, 541], "equi": 1426, "equilibr": 1426, "equival": [125, 636, 681, 682, 686, 687], "er": [64, 65, 66], "err": [151, 1319], "err_cv": 1318, "err_direct": 1318, "error": [53, 67, 151, 163, 657, 661, 691, 1275, 1305, 1318, 1319, 1321, 1323, 1324, 1411, 1425], "eryd": 10, "esp": [1080, 1425], "especi": [21, 136, 427, 437, 1275, 1418, 1425], "espresso": [112, 1417, 1424], "essenti": [89, 157, 1339, 1345, 1422], "estim": [1294, 1310, 1425], "estimate_p": [1301, 1425], "et": [471, 1399], "etc": [59, 61, 62, 93, 96, 222, 280, 337, 467, 537, 577, 583, 648, 657, 878, 1011, 1124, 1275, 1377, 1426, 1431, 1433], "etot": [98, 211, 269, 325, 441, 629, 848, 985, 1011, 1027, 1080, 1377, 1422, 1426, 1431, 1433], "etyp": 471, "eu": [64, 65, 66], "euler": 666, "eulerangl": 666, "ev": [21, 123, 211, 228, 269, 285, 325, 342, 467, 468, 471, 480, 494, 497, 506, 515, 529, 537, 538, 566, 577, 648, 985, 1027, 1124, 1377, 1382, 1389, 1390, 1422, 1433], "ev_by_ang3_to_gpa": 497, "evalu": [461, 577, 648, 661, 664, 681, 682, 1301, 1308, 1377], "evaluta": 648, "even": [67, 422, 423, 437, 557, 575, 650, 1325, 1336, 1339, 1382, 1422, 1425, 1430], "everi": [90, 91, 437, 1418, 1419, 1422, 1426, 1433], "evfunct": [497, 535], "evib": [1378, 1382, 1390, 1431], "evid": 437, "exact": [10, 159, 1269, 1291, 1326], "exactli": [502, 646, 655, 660, 1124, 1325, 1339, 1382, 1422, 1423], "examin": [61, 62], "exampl": [23, 56, 58, 61, 62, 64, 65, 67, 72, 79, 89, 90, 96, 98, 104, 112, 125, 126, 130, 131, 134, 139, 144, 157, 158, 159, 161, 217, 260, 269, 275, 316, 332, 373, 388, 395, 406, 416, 418, 419, 422, 423, 424, 426, 427, 429, 434, 436, 437, 440, 441, 446, 452, 456, 457, 458, 462, 477, 489, 497, 506, 512, 524, 557, 575, 577, 583, 585, 594, 595, 628, 629, 630, 631, 640, 648, 650, 652, 657, 667, 672, 676, 677, 679, 686, 687, 688, 701, 703, 717, 732, 758, 774, 798, 814, 838, 854, 869, 878, 884, 916, 932, 952, 975, 1001, 1011, 1017, 1042, 1058, 1071, 1086, 1114, 1130, 1151, 1166, 1195, 1212, 1222, 1237, 1248, 1260, 1271, 1273, 1275, 1283, 1287, 1288, 1291, 1294, 1301, 1313, 1318, 1319, 1325, 1328, 1329, 1331, 1332, 1337, 1339, 1341, 1342, 1344, 1355, 1356, 1368, 1369, 1370, 1371, 1377, 1380, 1399, 1403, 1409, 1419, 1421, 1422, 1423, 1425, 1427, 1430, 1431, 1433], "exceed": 1296, "except": [130, 131, 431, 533, 648, 1297, 1326], "excit": 471, "excl": 97, "excl_push": 97, "exclud": [97, 149, 1325], "execut": [14, 34, 67, 84, 266, 322, 379, 400, 495, 506, 530, 723, 765, 805, 845, 875, 923, 958, 1008, 1049, 1077, 1121, 1157, 1202, 1228, 1255, 1342, 1343, 1353, 1356, 1409, 1430], "executescript": 1342, "exhaust": [587, 588, 589, 590, 592, 593, 599, 600, 601, 602, 603, 604], "exist": [59, 67, 84, 89, 96, 97, 140, 266, 322, 379, 400, 437, 495, 530, 568, 723, 765, 805, 845, 875, 923, 958, 1008, 1049, 1077, 1121, 1157, 1202, 1228, 1255, 1345, 1351, 1368, 1421, 1423], "exit": [34, 1409], "exp": [1314, 1328, 1395, 1398, 1425], "expand": 437, "expans": [31, 145, 1377, 1419, 1431], "expect": [462, 1124, 1374, 1422], "experiment": 1425, "explain": [1425, 1431], "explicit": [19, 90, 437, 577, 1124, 1371], "explicitli": [1124, 1339, 1424, 1433], "expon": [127, 642, 1270], "export": 1430, "expos": [53, 61, 62, 163, 575, 691, 1324, 1411], "express": [1309, 1325], "ext": [583, 586], "ext_restart": 1426, "extend": [19, 263, 319, 376, 1339, 1345, 1351, 1417, 1428], "extens": [1290, 1326, 1417, 1428, 1429], "extern": [14, 506, 1409, 1412, 1413, 1414, 1415, 1416, 1418, 1428], "externeo": [14, 471], "extist": 1362, "extra": [424, 878, 926, 1405], "extract": [21, 640, 687, 848, 1011, 1052, 1283, 1285, 1332, 1353, 1357, 1422, 1428, 1433], "extrapol": [677, 1418], "extrem": 67, "f": [21, 38, 39, 61, 62, 64, 65, 66, 211, 269, 325, 471, 497, 503, 565, 577, 647, 648, 650, 652, 656, 657, 662, 679, 681, 751, 791, 831, 1291, 1301, 1302, 1303, 1309, 1325, 1329, 1331, 1377, 1378, 1379, 1382, 1395, 1398, 1422, 1423, 1424, 1425, 1431, 1433], "f1": 650, "f2py": [0, 1, 1430], "f4": [454, 455], "f90": [457, 573, 969, 1124, 1290, 1419, 1424, 1430], "f_ij": [1124, 1424], "fac": [411, 414], "fact": [21, 96, 149, 408, 431, 878, 1285, 1418, 1419], "factor": [19, 269, 657, 1309], "factori": [406, 547, 1409, 1412, 1413, 1414, 1415, 1416], "fail": [147, 151, 577, 1294, 1296, 1430], "fake": 1377, "fakeaseatom": [287, 344], "fallback": 497, "fals": [34, 68, 72, 77, 98, 105, 113, 116, 125, 130, 159, 160, 164, 213, 217, 222, 256, 259, 271, 275, 280, 312, 315, 328, 332, 337, 369, 371, 384, 388, 393, 406, 408, 418, 420, 421, 422, 425, 427, 428, 431, 437, 447, 456, 457, 458, 472, 477, 487, 507, 512, 522, 606, 627, 664, 666, 672, 681, 687, 688, 697, 701, 707, 715, 728, 732, 737, 756, 770, 774, 779, 796, 810, 814, 819, 836, 850, 854, 858, 867, 880, 884, 889, 914, 928, 932, 937, 950, 971, 975, 980, 999, 1013, 1017, 1022, 1040, 1054, 1058, 1062, 1069, 1082, 1086, 1090, 1093, 1112, 1124, 1126, 1130, 1134, 1136, 1149, 1162, 1166, 1170, 1173, 1193, 1208, 1212, 1216, 1220, 1233, 1237, 1241, 1246, 1291, 1294, 1296, 1300, 1325, 1331, 1333, 1339, 1345, 1351, 1368, 1379, 1382, 1403, 1407, 1409, 1421, 1423, 1433], "fanci": [437, 686], "far": [681, 878, 900, 941, 1080, 1326], "fast": [21, 1272, 1291, 1326, 1419, 1422, 1433], "faster": [80, 159, 261, 317, 374, 396, 441, 490, 525, 719, 760, 800, 840, 871, 918, 954, 1003, 1044, 1073, 1116, 1153, 1197, 1224, 1250, 1309, 1423], "fastest": [456, 1272, 1326], "faxi": [1291, 1329], "fc": [1287, 1427], "fcc": 1275, "fe": [64, 65, 66, 565], "featur": [441, 657, 688, 1080, 1417, 1422, 1425, 1429, 1431], "fed": 408, "fetch": 1371, "fetchal": [1342, 1350, 1353, 1357], "few": [481, 516, 661, 1382], "ffect": 437, "ffmt": [98, 144], "fft": [28, 1291, 1325, 1326, 1328, 1329, 1330, 1331, 1423, 1428], "fft_vacf": 1291, "fftconvolv": [1339, 1433], "fftfreq": [1325, 1423], "fftpack": [1325, 1328, 1423], "fftsampl": [1291, 1325], "fftw": 1328, "fget": 461, "fh": [56, 57, 59, 147, 462], "fi": 1411, "fictiti": [19, 634, 635, 636, 639], "field": [10, 577, 1052], "fig": [575, 577, 583, 594, 595, 605, 606, 623, 627, 628, 629, 1301, 1377, 1427, 1433], "fig1": 1301, "fig2": 1301, "fig_ax": [575, 583, 594, 606, 629, 1301, 1433], "fig_ax3d": [577, 583, 628, 629, 1301, 1377, 1433], "figg": 1399, "figur": [575, 583, 623, 627, 677, 1339, 1423], "file": [2, 12, 22, 23, 34, 56, 57, 59, 60, 74, 86, 88, 90, 91, 93, 96, 97, 99, 112, 132, 137, 138, 139, 140, 147, 149, 150, 221, 279, 336, 390, 408, 447, 456, 457, 458, 462, 471, 479, 506, 514, 547, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 576, 695, 706, 726, 735, 777, 817, 857, 878, 887, 900, 905, 926, 935, 941, 961, 969, 978, 1011, 1020, 1052, 1061, 1089, 1124, 1133, 1169, 1215, 1240, 1271, 1273, 1275, 1277, 1278, 1280, 1281, 1282, 1283, 1284, 1285, 1287, 1288, 1341, 1368, 1409, 1418, 1421, 1422, 1424, 1426, 1427, 1428, 1430, 1431, 1433], "file_lik": 59, "file_txt_cont": 462, "file_writ": 1427, "fileiocalcul": [6, 104, 112], "filenam": [0, 21, 34, 36, 37, 38, 60, 90, 91, 93, 133, 139, 408, 456, 457, 458, 459, 547, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 566, 567, 568, 569, 570, 571, 695, 878, 926, 1011, 1052, 1080, 1124, 1206, 1231, 1283, 1284, 1285, 1287, 1288, 1342, 1368, 1409, 1421], "fileobject": 462, "filepars": [21, 79, 260, 316, 373, 395, 489, 524, 717, 758, 798, 838, 869, 916, 952, 1001, 1042, 1071, 1114, 1151, 1195, 1222, 1248], "filepath": 926, "filetempl": [86, 87, 93, 96, 99, 1421], "filev": [91, 1341, 1369, 1370, 1371], "fileval_func": [1369, 1370, 1371], "fill": [61, 62, 406, 499, 1330, 1345, 1351, 1368, 1433], "fill_column": [1343, 1345], "filnam": 21, "filt1": 1325, "filt2": 1325, "filt_nopad": 1325, "filt_pad": 1325, "filter": [427, 437, 1325], "filxsf": 1284, "final": [436, 1080, 1433], "find": [3, 21, 661, 669, 670, 1332, 1364, 1374, 1375, 1417, 1419, 1422, 1425, 1429, 1430], "find_primit": [1373, 1374], "find_sqltyp": 1371, "fine": [10, 97, 151, 574, 1331, 1377, 1423, 1427], "finer": 423, "finit": [471, 1332, 1431], "fir": 1325, "fire": 158, "first": [61, 62, 70, 215, 273, 330, 386, 408, 417, 437, 446, 447, 462, 467, 474, 509, 537, 542, 643, 677, 688, 695, 699, 730, 772, 812, 852, 882, 930, 973, 1011, 1015, 1056, 1080, 1084, 1124, 1128, 1164, 1210, 1235, 1302, 1304, 1325, 1332, 1351, 1369, 1371, 1382, 1419, 1422, 1426, 1433], "firwin": 1325, "fishi": 1382, "fist": [90, 446], "fit": [14, 437, 471, 481, 497, 502, 503, 506, 516, 643, 645, 646, 647, 648, 650, 651, 654, 655, 656, 659, 660, 662, 679, 681, 682, 1301, 1305, 1318, 1319, 1321, 1323, 1332, 1377, 1381, 1417, 1425, 1428, 1429, 1430, 1431], "fit1": 650, "fit1d": [497, 652, 657], "fit_error": [1319, 1321], "fit_opt": 1425, "fiterror": 1323, "fitfunc": [1377, 1379, 1381, 1431], "fix": [61, 62, 409, 419, 437, 555, 878, 1011, 1272, 1323, 1366], "fix_npt": 1011, "fix_sqltyp": 1365, "fixnan": 1382, "flag": [61, 62, 222, 280, 337], "flat": [61, 62, 577, 1377, 1425], "flatit": [61, 62], "flatten": [61, 62, 96, 125, 148, 577, 640, 1272, 1357, 1371, 1377], "flavor": 457, "flexiblegett": [21, 382, 506, 707, 737, 779, 819, 858, 889, 937, 980, 1022, 1062, 1093, 1136, 1173, 1216, 1241], "flfrc": [1287, 1427], "flfrq": [1287, 1427], "flib": [1290, 1419], "flip": 1011, "float": [36, 40, 42, 54, 55, 61, 62, 63, 98, 112, 127, 136, 141, 144, 157, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 219, 269, 277, 325, 334, 404, 406, 408, 411, 414, 422, 427, 432, 435, 437, 447, 463, 464, 532, 534, 544, 545, 546, 548, 577, 632, 637, 638, 642, 657, 661, 666, 672, 675, 678, 683, 684, 692, 693, 694, 968, 1205, 1261, 1263, 1266, 1267, 1268, 1270, 1271, 1273, 1291, 1294, 1298, 1301, 1314, 1315, 1316, 1325, 1327, 1329, 1331, 1332, 1333, 1334, 1341, 1342, 1366, 1369, 1370, 1371, 1372, 1382, 1391, 1392, 1393, 1395, 1396, 1397, 1398, 1399, 1400, 1401, 1402], "float32": [219, 277, 334, 456, 458], "float64": [65, 127, 141, 157, 456, 458, 642, 668, 1258, 1259, 1269, 1270, 1271, 1382], "fluctuat": [634, 635], "flush": 1011, "fm": [64, 65, 66, 1433], "fmax": 1331, "fmin": [649, 650, 651, 652, 1323], "fmt": [157, 648, 1271], "fn": [60, 137, 138, 139, 140, 150, 408, 456, 457, 458, 459, 557, 568], "fntype": 408, "focu": 1418, "fold": [1319, 1325], "follow": [21, 878, 1124, 1430], "foo": [6, 21, 34, 56, 67, 77, 79, 84, 89, 90, 99, 125, 134, 139, 150, 159, 256, 260, 266, 312, 316, 322, 369, 373, 379, 393, 395, 400, 408, 471, 487, 489, 495, 522, 524, 530, 557, 568, 584, 695, 715, 717, 723, 756, 758, 765, 796, 798, 805, 836, 838, 845, 867, 869, 875, 914, 916, 923, 950, 952, 958, 999, 1001, 1008, 1040, 1042, 1049, 1069, 1071, 1077, 1112, 1114, 1121, 1149, 1151, 1157, 1193, 1195, 1202, 1220, 1222, 1228, 1246, 1248, 1255, 1341, 1342, 1355, 1356, 1368, 1371], "foo_run_1": 90, "foot": 59, "footprint": 1330, "forc": [21, 104, 107, 115, 211, 219, 231, 269, 277, 288, 325, 334, 345, 422, 424, 426, 566, 648, 734, 776, 816, 848, 856, 878, 886, 899, 926, 934, 1088, 1124, 1132, 1139, 1168, 1269, 1271, 1272, 1284, 1366, 1418, 1420, 1422, 1427, 1429, 1430], "forces_rm": 98, "foreground": 585, "forev": 1296, "forget": [219, 277, 334, 416], "forluma": 1275, "form": [90, 159, 577, 679, 1272, 1287, 1420, 1429], "format": [23, 61, 62, 98, 144, 157, 506, 552, 558, 569, 576, 577, 648, 726, 969, 1284, 1347, 1424, 1431], "format_str": 159, "former": 1422, "formula": [10, 1275, 1419], "forth": 1433, "fortran": [36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 61, 62, 136, 457, 1274, 1290, 1326, 1328, 1417, 1429], "forward": [1328, 1431], "found": [21, 96, 97, 112, 159, 441, 672, 688, 1011, 1052, 1124, 1275, 1285, 1304, 1323, 1332, 1374, 1425, 1430, 1433], "fourier": [23, 1331, 1423, 1430], "fouriertransform": [1326, 1328], "fr": [64, 65, 66], "frac": [575, 1314, 1315, 1327, 1334, 1425], "frac2cart": 1, "frac2cart_traj": 1, "fraction": [211, 269, 325, 415, 420, 425, 430, 431, 572, 575, 1095, 1175, 1420, 1422, 1424, 1427, 1429, 1433], "frc": 1426, "free": [627, 1301, 1378, 1379, 1382], "freedom": [634, 635, 639], "freeli": 1422, "freiberg": 418, "frepr": 159, "freq": [575, 634, 635, 636, 639, 1282, 1283, 1284, 1285, 1287, 1288, 1291, 1325, 1377, 1382, 1427], "frequenc": [10, 575, 634, 635, 636, 639, 1283, 1284, 1287, 1288, 1291, 1325, 1331, 1382, 1423, 1424], "frequency_unit": 1331, "frequent": 577, "friedrich": 437, "fritzsch": 437, "from": [3, 6, 10, 14, 19, 21, 23, 53, 54, 55, 56, 57, 59, 61, 62, 63, 64, 65, 86, 89, 90, 95, 96, 97, 99, 112, 125, 147, 152, 163, 211, 233, 251, 268, 269, 289, 307, 324, 325, 346, 364, 381, 402, 404, 406, 409, 412, 418, 422, 423, 427, 428, 429, 437, 446, 450, 452, 456, 457, 458, 459, 471, 481, 497, 506, 516, 541, 565, 575, 577, 583, 584, 585, 587, 588, 589, 590, 592, 593, 594, 599, 600, 601, 602, 603, 604, 630, 631, 640, 648, 657, 677, 686, 687, 688, 691, 703, 725, 767, 807, 847, 877, 905, 925, 926, 960, 969, 1010, 1011, 1051, 1079, 1080, 1091, 1123, 1124, 1159, 1171, 1204, 1230, 1257, 1269, 1275, 1284, 1285, 1287, 1291, 1294, 1301, 1303, 1304, 1313, 1319, 1324, 1325, 1327, 1328, 1332, 1334, 1339, 1340, 1341, 1342, 1344, 1345, 1347, 1351, 1355, 1359, 1368, 1369, 1371, 1373, 1374, 1377, 1379, 1380, 1382, 1399, 1411, 1418, 1419, 1420, 1421, 1422, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1433], "from_scratch": 116, "fromstr": 1269, "ftrajectori": 878, "fuction": 577, "fulfil": 409, "full": [21, 90, 93, 635, 1278, 1281, 1423], "full_faxi": 1291, "full_out": 1291, "full_pdo": 1291, "fulli": [61, 62], "fullout": [420, 422, 423, 427, 428, 664, 672], "fun": 1426, "func": [90, 91, 154, 155, 162, 460, 462, 497, 631, 633, 675, 1312, 1377, 1381, 1399], "function": [0, 1, 15, 23, 25, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 59, 90, 99, 130, 159, 269, 408, 418, 423, 437, 447, 459, 460, 462, 465, 468, 502, 503, 535, 538, 575, 631, 646, 647, 650, 651, 652, 655, 656, 657, 660, 662, 664, 675, 926, 1271, 1273, 1275, 1290, 1301, 1304, 1313, 1318, 1326, 1327, 1329, 1333, 1334, 1339, 1340, 1344, 1357, 1369, 1370, 1373, 1375, 1377, 1381, 1382, 1395, 1398, 1399, 1409, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1420, 1428, 1429, 1433], "functional": [460, 1290], "further": [1418, 1431], "fvacf": [1292, 1430], "fvib": [1378, 1382, 1389, 1431], "fw": 1328, "fx": [108, 1011], "fy": [108, 1011], "fysik": 1431, "fz": [108, 1011], "g": [14, 21, 59, 61, 62, 67, 77, 86, 90, 91, 93, 96, 99, 112, 125, 139, 144, 159, 239, 256, 295, 312, 352, 369, 393, 408, 410, 413, 419, 427, 431, 434, 437, 438, 447, 451, 453, 487, 506, 522, 547, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 568, 575, 577, 583, 585, 595, 596, 597, 598, 622, 625, 629, 648, 650, 667, 679, 681, 686, 689, 715, 756, 796, 836, 867, 878, 914, 950, 999, 1011, 1040, 1069, 1112, 1124, 1149, 1193, 1220, 1246, 1269, 1282, 1285, 1287, 1301, 1304, 1325, 1339, 1341, 1369, 1371, 1373, 1374, 1375, 1377, 1379, 1381, 1423, 1424, 1425, 1426, 1428, 1430, 1431, 1433], "g_opt": 1377, "ga": [64, 65, 66], "gamma": [211, 269, 325, 409, 411, 412, 414, 422, 423, 450, 456, 458, 565, 572, 1278, 1281, 1284, 1327, 1334, 1427, 1431], "garbag": [61, 62], "gather": 1425, "gauss": [1301, 1313, 1332, 1339], "gaussian": [648, 1011, 1314, 1327, 1333, 1334, 1339, 1423, 1425], "gb": [437, 1433], "gd": [64, 65, 66, 598], "ge": [64, 65, 66], "gener": [0, 1, 21, 28, 61, 62, 67, 89, 148, 408, 418, 419, 422, 447, 565, 574, 577, 640, 682, 690, 1275, 1284, 1294, 1296, 1304, 1325, 1326, 1331, 1339, 1377, 1380, 1419, 1421, 1430, 1431], "geo_opt": 808, "geometri": [878, 900, 926, 941], "get": [21, 125, 147, 269, 406, 437, 446, 574, 575, 677, 682, 1011, 1124, 1291, 1294, 1302, 1327, 1331, 1334, 1374, 1377, 1379, 1382, 1403, 1418, 1419, 1422, 1423, 1430, 1433], "get_": [21, 547, 1422, 1433], "get_2d_testdata": 1433, "get_alat": 1124, "get_arrai": 1342, "get_array1d": 1342, "get_ase_atom": [104, 112, 269, 1430, 1433], "get_bar": 67, "get_cel": [1080, 1422], "get_coord": 1080, "get_dcd_file_info": 0, "get_dict": 1368, "get_fake_ase_atom": [222, 269, 280, 337, 1433], "get_foo": [67, 72, 84, 217, 266, 275, 322, 332, 379, 388, 400, 477, 495, 512, 530, 701, 723, 732, 765, 774, 805, 814, 845, 854, 875, 884, 923, 932, 958, 975, 1008, 1017, 1049, 1058, 1077, 1086, 1121, 1130, 1157, 1166, 1202, 1212, 1228, 1237, 1255], "get_grid_help": 627, "get_head": [1344, 1347], "get_list1d": [1342, 1354], "get_max": 643, "get_min": [14, 497, 500, 506, 643, 644, 648, 652, 653, 658, 1377], "get_ord": 1011, "get_path_norm": [575, 1287, 1427], "get_posit": 627, "get_potential_energi": [104, 112], "get_random_struct": [1294, 1299], "get_root": 643, "get_spacegroup": 1375, "get_spglib": 211, "get_spglib_spacegroup": 1433, "get_sql_record": 86, "get_struct": [21, 1124, 1422], "get_traj": [21, 1422, 1433], "get_window": 1325, "getdefaultencod": [53, 163, 691, 1324, 1411], "getter": [21, 67, 82, 84, 263, 266, 269, 319, 322, 376, 379, 398, 400, 492, 495, 527, 530, 721, 723, 762, 765, 802, 805, 842, 845, 873, 875, 920, 923, 956, 958, 1005, 1008, 1046, 1049, 1075, 1077, 1118, 1121, 1124, 1155, 1157, 1199, 1202, 1226, 1228, 1252, 1255], "gfortran": 1430, "gfulian": 1431, "gh": 598, "gibb": 1431, "gibbs_test_data": 1431, "git": 1430, "github": [1430, 1431], "give": [661, 1291, 1368], "given": [53, 54, 55, 61, 62, 63, 66, 163, 211, 269, 325, 422, 423, 437, 455, 574, 583, 596, 597, 598, 621, 622, 624, 625, 648, 651, 661, 691, 1304, 1324, 1325, 1332, 1374, 1375, 1377, 1382, 1411, 1417, 1429], "glenn": 19, "global": [431, 768, 808, 848, 1425], "gmane": 151, "gnu": 1430, "go": [462, 598, 1304, 1339, 1377], "goal": [1418, 1425], "goe": 1425, "gofr": 408, "gohom": 1342, "good": [577, 661, 1309, 1339, 1377, 1382, 1418, 1430], "got": [3, 462], "gov": 10, "gp": [598, 1287, 1427], "gpa": [10, 123, 211, 269, 325, 480, 497, 498, 504, 515, 848, 863, 1377, 1422], "gpaw": 1418, "grad": [1302, 1303], "gradient": 1302, "green": 595, "grep": [21, 151, 900, 941, 1269, 1431], "grid": [96, 112, 422, 423, 574, 577, 591, 640, 649, 1287, 1288, 1377, 1378, 1379, 1380, 1417, 1428, 1429, 1431], "grid_in_cel": 423, "group": [557, 568, 1375, 1377, 1433], "group0": 1377, "group1": 1377, "grundlagen": 437, "guarante": 878, "guess": [112, 649, 651, 661, 1323, 1425], "gui": [408, 1418], "gunzip": [1421, 1427], "gv": 598, "gx": 598, "gz": 1427, "gzip": [147, 1427], "h": [3, 10, 64, 65, 66, 112, 422, 423, 427, 429, 437, 624, 1325, 1373, 1380, 1422, 1426, 1431, 1433], "h5": [557, 568, 1431], "h5l": 1431, "h5py": [568, 1430], "ha": [14, 21, 34, 59, 61, 62, 77, 256, 312, 369, 393, 404, 418, 419, 441, 471, 487, 522, 566, 577, 584, 643, 679, 682, 688, 715, 740, 741, 742, 743, 756, 781, 782, 783, 784, 796, 821, 822, 823, 824, 836, 859, 860, 867, 878, 892, 898, 899, 900, 914, 939, 940, 941, 950, 999, 1040, 1069, 1112, 1149, 1193, 1220, 1246, 1275, 1287, 1291, 1328, 1330, 1337, 1339, 1341, 1361, 1368, 1417, 1418, 1419, 1421, 1422, 1425, 1430, 1431], "haberlandt": 437, "hack": [575, 1382], "hackish": 878, "ham": 1325, "hand": [1422, 1425, 1433], "handi": [22, 1418, 1431], "handl": [56, 57, 132, 136, 151, 425, 437, 506, 568, 584, 652, 672, 677, 681, 1269, 1339, 1377, 1428, 1433], "handler": [53, 163, 691, 1324, 1411], "hann": [441, 1325, 1339, 1433], "happen": [1124, 1425], "happi": 1427, "hard": 1430, "hardcod": [969, 1011], "harmon": [31, 1382, 1417, 1428, 1429], "harmonicthermo": [1377, 1378, 1431], "hartre": [19, 471], "hashabl": [1405, 1406], "hat": 1433, "have": [19, 21, 34, 59, 60, 90, 96, 112, 150, 159, 222, 280, 325, 337, 409, 412, 418, 419, 427, 437, 438, 471, 481, 506, 516, 577, 675, 679, 681, 688, 878, 926, 1011, 1080, 1124, 1260, 1275, 1283, 1323, 1325, 1339, 1342, 1371, 1374, 1377, 1382, 1418, 1419, 1422, 1424, 1425, 1431, 1433], "haven": 1423, "hb": 625, "hbar": [10, 1424], "hc": 625, "hdf": 568, "hdf5": [15, 568, 1377, 1431], "hdr": [454, 455], "he": [64, 65, 66], "head": 151, "header": [56, 59, 60, 96, 456, 457, 459, 547, 1011, 1269, 1287, 1343, 1344, 1347, 1356, 1365, 1368, 1371, 1430], "header_com": [56, 57, 59], "header_dtyp": 459, "header_maxlin": [56, 57, 59], "heat": [1377, 1382], "height": 1423, "heinzing": 437, "help": [1325, 1424, 1430], "helper": [151, 403, 630, 1403, 1423], "henc": [661, 1419], "here": [3, 12, 23, 27, 34, 61, 62, 96, 159, 422, 436, 437, 447, 575, 657, 681, 688, 695, 985, 1027, 1080, 1124, 1272, 1275, 1327, 1330, 1334, 1339, 1342, 1377, 1379, 1380, 1418, 1419, 1421, 1423, 1424, 1425, 1431, 1433], "hetatm": 1052, "hexagon": [1275, 1377, 1431], "hf": [64, 65, 66], "hg": [64, 65, 66, 625], "hide": 1382, "high": [15, 427, 650, 1124, 1304, 1325, 1399, 1420, 1429], "higher": [1304, 1425], "highest": 60, "highpass": 1325, "hint": [1294, 1377], "hist": [408, 437, 447], "histogram": [406, 408, 437, 447], "histor": 1423, "hk": 625, "hm": [418, 625], "ho": [64, 65, 66], "hold": [21, 90, 406, 424, 657, 679, 1302, 1331, 1377], "hole": 1294, "home": [93, 112, 145, 1421], "homepag": 1275, "homogen": [61, 62], "hoover": 19, "hopefulli": 661, "hostax": [623, 627], "hostaxessubplot": 627, "hostnam": [93, 96, 1421], "how": [61, 62, 97, 269, 427, 437, 438, 441, 575, 661, 1275, 1288, 1330, 1339, 1377, 1420, 1423, 1429, 1431, 1433], "howev": [404, 681, 688, 1124, 1272, 1339, 1418, 1422, 1425, 1426], "hpc": 1430, "hr": 625, "htm": 418, "html": [10, 112, 151, 566, 571, 666, 1326, 1328, 1339, 1424, 1431], "http": [10, 23, 112, 151, 418, 435, 437, 450, 461, 471, 566, 571, 595, 666, 695, 1325, 1326, 1328, 1339, 1424, 1430, 1431], "hubbard": 1124, "huhu": 1342, "hull": 671, "hungri": 441, "hy": 625, "hyper": 1323, "hyperopt": [35, 1425], "hz": [10, 634, 635, 636, 639, 1291, 1325, 1331, 1423], "i": [0, 1, 3, 6, 12, 14, 15, 19, 21, 23, 34, 53, 54, 55, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 72, 77, 80, 84, 86, 87, 89, 90, 91, 95, 96, 97, 98, 99, 104, 112, 129, 130, 131, 132, 136, 139, 140, 144, 149, 150, 151, 159, 163, 164, 211, 213, 217, 219, 222, 233, 249, 256, 261, 266, 269, 271, 275, 277, 280, 289, 305, 312, 317, 322, 325, 328, 332, 334, 337, 346, 362, 369, 374, 379, 384, 388, 393, 396, 400, 404, 406, 408, 409, 410, 411, 412, 414, 415, 417, 418, 419, 420, 422, 423, 424, 425, 427, 428, 431, 434, 436, 437, 438, 440, 441, 446, 447, 451, 455, 462, 467, 471, 472, 477, 481, 487, 490, 495, 502, 503, 506, 507, 512, 516, 522, 525, 530, 537, 565, 568, 574, 575, 577, 579, 582, 583, 585, 587, 588, 589, 590, 592, 593, 596, 597, 598, 599, 600, 601, 602, 603, 604, 621, 622, 624, 625, 627, 628, 636, 640, 643, 646, 647, 648, 651, 655, 656, 657, 660, 661, 662, 664, 665, 669, 670, 671, 672, 673, 679, 681, 683, 684, 686, 687, 688, 690, 691, 695, 697, 701, 715, 719, 723, 726, 728, 732, 756, 760, 765, 770, 774, 796, 800, 805, 810, 814, 836, 840, 845, 848, 850, 854, 867, 871, 875, 878, 880, 884, 914, 918, 923, 926, 928, 932, 950, 954, 958, 969, 971, 975, 985, 999, 1003, 1008, 1011, 1013, 1017, 1027, 1040, 1044, 1049, 1052, 1054, 1058, 1069, 1073, 1077, 1080, 1082, 1086, 1090, 1112, 1116, 1121, 1124, 1126, 1130, 1134, 1149, 1153, 1157, 1162, 1166, 1170, 1193, 1197, 1202, 1208, 1212, 1220, 1224, 1228, 1233, 1237, 1246, 1250, 1255, 1260, 1269, 1271, 1272, 1275, 1284, 1285, 1287, 1290, 1291, 1292, 1294, 1296, 1300, 1301, 1302, 1304, 1306, 1309, 1318, 1319, 1321, 1323, 1324, 1325, 1326, 1327, 1328, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1339, 1341, 1342, 1344, 1345, 1347, 1351, 1353, 1355, 1358, 1368, 1369, 1373, 1374, 1375, 1377, 1379, 1382, 1403, 1405, 1407, 1409, 1411, 1417, 1418, 1419, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1430, 1431, 1433], "i4": [454, 455], "iatom": 1419, "ibrav": [116, 1275], "id": [108, 1011], "idea": [96, 269, 1377, 1418], "ident": [418, 423, 434, 969, 1275, 1339, 1419], "idx": [96, 97, 326, 415, 427, 428, 429, 577, 630, 640, 1341, 1342, 1431], "idx0": [404, 1332], "idx1": 404, "idx2": 404, "idx_lst": 672, "ifft": 1423, "iflatten": 142, "ifort": 1430, "ignor": [6, 59, 136, 151, 565, 583, 1011, 1325, 1332, 1382], "ignore_bad_restart_fil": [105, 113], "ii": [406, 440, 577, 630, 631, 640, 1427], "ij": [665, 673, 1306, 1310, 1425], "illustr": [61, 62], "imag": [61, 62, 406, 408, 420, 421, 425, 435, 437, 447, 1288], "imaginari": [61, 62, 1328], "immedi": 1403, "implement": [21, 23, 28, 67, 438, 458, 471, 506, 640, 682, 688, 878, 961, 1269, 1292, 1302, 1326, 1328, 1330, 1418, 1420, 1422, 1423, 1428, 1429, 1431, 1433], "impli": [61, 62, 1425], "import": [6, 72, 89, 90, 112, 125, 161, 217, 275, 332, 388, 404, 418, 423, 427, 429, 477, 497, 506, 512, 577, 594, 630, 631, 640, 648, 657, 677, 686, 687, 701, 732, 774, 814, 848, 854, 884, 932, 975, 1011, 1017, 1058, 1086, 1130, 1166, 1212, 1237, 1287, 1290, 1291, 1301, 1325, 1328, 1332, 1339, 1377, 1399, 1421, 1422, 1423, 1424, 1426, 1427, 1430, 1433], "improv": 681, "in1d": 672, "inaccur": 648, "inceas": 1425, "includ": [427, 1325, 1425], "incomplet": [96, 1371], "inconsist": 1275, "incorrect": [481, 516], "incorrectli": 1430, "increas": [1294, 1304, 1325, 1339, 1423], "increment": 132, "inctanc": [220, 278, 335], "indefinit": [587, 588, 589, 590, 592, 593, 599, 600, 601, 602, 603, 604], "indenpend": 99, "independ": [412, 438, 1339, 1418, 1431], "index": [3, 10, 415, 427, 436, 437, 595, 672, 673, 686, 687, 1335], "index_hm2": 418, "indic": [97, 404, 410, 427, 431, 451, 672, 686, 1319, 1332], "individu": [125, 1431], "inertia": 19, "inf": 1333, "infile_templ": [101, 106, 114], "infile_templ_kei": [101, 106, 114], "infin": 437, "influenc": 1291, "info": [60, 128, 878], "inform": [21, 61, 62, 454, 1425], "infti": 1425, "inherit": 961, "ini": [56, 57, 60], "init": [83, 89, 264, 320, 377, 399, 493, 528, 722, 763, 803, 843, 874, 921, 957, 1006, 1011, 1047, 1076, 1119, 1156, 1200, 1227, 1253], "initi": [21, 61, 62, 64, 65, 649, 651, 1080, 1313, 1323, 1406], "initio": [481, 516, 1418], "initkwd": 648, "inner": [671, 1292, 1403], "input": [6, 22, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 86, 88, 96, 97, 100, 102, 104, 109, 112, 113, 117, 130, 211, 242, 269, 298, 355, 408, 424, 437, 441, 447, 471, 506, 565, 569, 570, 576, 577, 579, 582, 584, 594, 661, 681, 688, 695, 878, 1011, 1080, 1271, 1273, 1274, 1277, 1278, 1280, 1281, 1284, 1287, 1290, 1296, 1301, 1302, 1303, 1326, 1341, 1371, 1374, 1376, 1418, 1421, 1422, 1424, 1426, 1427, 1428, 1433], "input_pw": [112, 1424], "insensit": 160, "insert": [667, 1294, 1342, 1345, 1351], "insid": [575, 1423], "inspect": [1403, 1431], "instabl": 1425, "instal": [21, 136, 222, 280, 337, 1417, 1427, 1429, 1433], "instanc": [34, 54, 55, 56, 63, 86, 87, 91, 95, 96, 134, 164, 222, 230, 280, 287, 337, 344, 406, 417, 420, 424, 437, 454, 497, 506, 565, 575, 583, 584, 627, 628, 629, 648, 661, 677, 1080, 1300, 1318, 1323, 1342, 1368, 1369, 1372, 1377, 1407, 1409, 1422, 1423, 1425, 1431], "instanti": [61, 62], "instead": [21, 59, 89, 123, 130, 133, 430, 437, 439, 457, 458, 650, 652, 673, 686, 687, 688, 878, 1124, 1260, 1282, 1327, 1334, 1374, 1423, 1425, 1430, 1431, 1433], "instruct": [90, 1417, 1429], "insul": 423, "int": [36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 58, 59, 61, 62, 63, 97, 144, 155, 164, 408, 422, 427, 436, 438, 440, 441, 447, 467, 471, 497, 537, 574, 631, 650, 664, 667, 677, 681, 682, 684, 686, 687, 688, 689, 690, 1269, 1275, 1282, 1283, 1284, 1285, 1288, 1290, 1291, 1292, 1300, 1301, 1325, 1326, 1327, 1332, 1334, 1336, 1337, 1339, 1341, 1351, 1375, 1382, 1395, 1407], "int16": [61, 62], "int_": [61, 62], "int_0": 1395, "integ": [54, 55, 61, 62, 63, 132, 160, 250, 306, 363, 422, 440, 672, 685, 687, 1336, 1341, 1371, 1373], "integr": [19, 408, 437, 447, 675, 1291, 1333, 1382, 1395, 1424], "intel": 1430, "intel64": 1430, "intend": [447, 669, 670], "intens": 1285, "inter": 648, "interact": [21, 34, 61, 62, 108, 669, 670, 1011, 1329, 1368, 1418, 1428], "interfac": [14, 61, 62, 408, 650, 1290, 1342, 1409, 1412, 1413, 1414, 1415, 1416, 1418, 1428], "intern": [437, 629, 650, 681, 1377, 1382], "interpol": [25, 426, 577, 643, 648, 657, 664, 673, 682, 1291, 1301, 1304, 1321, 1377, 1417, 1420, 1423, 1428, 1429], "interpol2d": [577, 650, 682, 1377, 1433], "interpret": [54, 55, 61, 62, 63], "interv": [661, 669, 670], "introduc": 1326, "intuit": 577, "inv": 1419, "inv_multi": 1313, "invers": [112, 577, 648, 661, 1315, 1419, 1425], "invert": 688, "investig": 1425, "invok": [21, 84, 266, 322, 379, 400, 495, 530, 723, 765, 805, 845, 875, 923, 958, 1008, 1049, 1077, 1121, 1157, 1202, 1228, 1255], "involv": [1339, 1419], "invsibl": 595, "invsplev": [502, 646, 655, 657, 660], "io": [2, 21, 35, 79, 108, 128, 260, 316, 373, 395, 437, 489, 524, 717, 758, 798, 838, 869, 916, 952, 1001, 1011, 1042, 1071, 1080, 1114, 1151, 1195, 1222, 1248, 1417, 1422, 1426, 1427, 1428, 1429, 1431], "ion": [1097, 1178], "ionic": 1124, "ionmov": [19, 634, 635, 639], "ipython": [12, 1418, 1433], "ir": [64, 65, 66, 1285], "irreduc": 1374, "is_mono": 643, "is_same_struct": 1374, "is_seq": 129, "is_set_attr": [67, 68, 72, 213, 217, 271, 275, 328, 332, 384, 388, 472, 477, 507, 512, 697, 701, 728, 732, 770, 774, 810, 814, 850, 854, 880, 884, 928, 932, 971, 975, 1013, 1017, 1054, 1058, 1082, 1086, 1126, 1130, 1162, 1166, 1208, 1212, 1233, 1237], "isam": 1275, "ish": 438, "isinst": 648, "isochor": 1382, "isochoric_heat_capac": [1383, 1431], "isotop": 10, "isotrop": 634, "ist": [435, 437], "istep": 1419, "item": [61, 62, 152, 417, 1011, 1124], "items": [61, 62], "iter": [61, 62, 64, 65, 66, 97, 149, 455, 587, 588, 589, 590, 592, 593, 596, 597, 598, 599, 600, 601, 602, 603, 604, 621, 622, 624, 625, 631, 640, 1080, 1313, 1342, 1422], "iteritem": 629, "itertool": [96, 406, 577, 587, 588, 589, 590, 592, 593, 599, 600, 601, 602, 603, 604, 1377], "its": [61, 62], "itself": [461, 634, 635, 1319], "ix": 440, "iz": 440, "j": [10, 19, 269, 420, 437, 471, 665, 672, 676, 1124, 1271, 1306, 1328, 1377, 1403, 1422, 1424], "jamesrhest": 695, "jax": [1302, 1303, 1309], "jax_mod": 1309, "jf": 1309, "jit": 1309, "jj": [406, 577, 640, 1339], "jmol": [1409, 1428, 1433], "job": [93, 96, 97, 1421, 1426], "jobfil": 93, "join": 1427, "jump": [61, 62, 1427], "just": [34, 89, 90, 410, 438, 451, 462, 500, 644, 653, 658, 664, 672, 1124, 1318, 1325, 1332, 1377, 1409, 1421, 1422, 1423, 1431, 1433], "k": [64, 65, 66, 112, 211, 246, 269, 302, 325, 359, 422, 423, 437, 481, 494, 516, 529, 571, 572, 573, 574, 575, 577, 596, 597, 598, 622, 625, 634, 635, 636, 639, 657, 664, 665, 679, 750, 790, 830, 908, 909, 1108, 1189, 1278, 1281, 1287, 1306, 1313, 1319, 1328, 1332, 1339, 1377, 1381, 1382, 1417, 1422, 1425, 1427, 1428, 1429, 1430], "k_": 1425, "k_point": [1277, 1278, 1280, 1281, 1341], "kaiser": 1325, "kaiserord": 1325, "kb": [1382, 1386, 1388], "kbar": [10, 905, 946, 1105, 1145, 1186, 1422], "kd": 598, "ke": 1011, "keep": [34, 1330, 1374, 1409], "keepdim": 688, "keepfil": [34, 1409], "kei": [64, 65, 86, 87, 90, 91, 95, 96, 99, 101, 102, 106, 109, 114, 117, 128, 159, 557, 568, 629, 1285, 1301, 1313, 1341, 1355, 1369, 1370, 1371, 1377, 1378, 1379, 1381, 1421, 1431], "kept": 158, "kern": [441, 1339], "kernel": [441, 1336, 1339, 1425], "kernel_ridg": 1425, "kernelridg": 1425, "key1": [90, 1341], "key2": [90, 1341], "keyword": [6, 59, 61, 62, 64, 65, 89, 100, 102, 109, 117, 222, 269, 280, 337, 416, 429, 430, 547, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 568, 575, 583, 628, 629, 648, 650, 651, 657, 664, 688, 878, 1011, 1313, 1342, 1345, 1374, 1375, 1377, 1425], "kg": [10, 19, 233, 269, 289, 346, 1422], "kgrid": [112, 422, 1433], "kh": 598, "khinchin": [1326, 1423], "khinchintheorem": 1326, "kind": [136, 149, 151, 878, 1418, 1424, 1428], "kineng": [985, 1027], "kinet": [1097, 1178], "kjpaw_psl": 112, "kk": [406, 640, 1339], "klein": 19, "knot": 657, "know": [21, 140, 150, 424, 1296, 1325, 1331, 1342, 1418, 1422, 1431, 1433], "known": 1269, "ko": 598, "kortu": 1431, "kp": 598, "kpath": [35, 1287, 1427], "kpoint": [98, 116, 1287], "kpt": [112, 113], "kpts2mp": 112, "kr": [64, 65, 66], "krr": 1425, "ks_frac": [572, 1427], "ks_path": 1427, "kudo": 461, "kv": 598, "kwarg": [59, 64, 65, 96, 139, 156, 471, 480, 515, 575, 585, 628, 657, 1301, 1313, 1348, 1349, 1350, 1353, 1354, 1355, 1357, 1359, 1383, 1384, 1385, 1387], "kwd": [89, 102, 103, 104, 109, 112, 117, 122, 222, 269, 280, 325, 337, 416, 423, 429, 430, 438, 439, 442, 500, 502, 547, 549, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 568, 570, 579, 582, 583, 586, 605, 606, 626, 629, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 658, 659, 660, 663, 688, 695, 712, 726, 748, 752, 768, 788, 792, 808, 828, 832, 848, 864, 878, 906, 911, 926, 947, 969, 991, 995, 1011, 1032, 1036, 1052, 1066, 1080, 1106, 1110, 1124, 1146, 1160, 1187, 1191, 1218, 1243, 1244, 1286, 1289, 1293, 1299, 1312, 1318, 1322, 1323, 1345, 1368, 1374, 1375, 1377], "kx": [573, 598, 648], "ky": 648, "l": [19, 131, 158, 408, 437, 447, 1301, 1302, 1303, 1308, 1327, 1334, 1427], "la": [64, 65, 66], "label": [6, 104, 105, 112, 113, 437, 506, 575, 583, 584, 594, 627, 652, 657, 1301, 1325, 1339, 1423, 1427, 1433], "lag": [1326, 1423], "lala": [90, 130, 144, 583, 1342], "lambda": [90, 427, 631, 1309, 1369, 1370, 1371, 1377, 1399, 1423], "lammp": [12, 21, 35, 239, 295, 352, 456, 457, 458, 558, 559, 569, 969, 985, 1011, 1027, 1417, 1422, 1428, 1433], "lammpsdcdmdoutputfil": [1422, 1433], "lammpsrun": [569, 576], "lammpstextmdoutputfil": [969, 1422], "lanczo": 878, "lapack": [1419, 1430], "larg": [21, 419, 1294, 1325, 1382, 1418, 1425], "last": [97, 98, 408, 418, 431, 436, 446, 447, 640, 677, 688, 1011, 1351, 1374, 1375, 1377, 1405, 1418, 1419, 1422, 1426, 1433], "lat_symbol": 565, "later": [688, 1080, 1342, 1377, 1403, 1422, 1430, 1433], "latter": [21, 34, 1080, 1325, 1409, 1422, 1431], "lattic": [427, 434, 565, 1090, 1124, 1134, 1170, 1275, 1424, 1431], "lazi": 461, "lcao": 1418, "ldd": 1430, "ldisp": 1287, "lead": [6, 557, 568, 1325, 1425], "leak": 1291, "leakag": 1423, "learn": 1430, "least": [422, 423, 682, 1260, 1301, 1304, 1318, 1337, 1425], "leav": [61, 62, 427, 688, 1409], "left": [583, 595, 627, 688, 1314, 1425], "legaxnam": [583, 585], "legend": [583, 584, 594, 652, 657, 1301, 1325, 1339, 1423, 1433], "len": [3, 36, 37, 38, 125, 245, 269, 301, 358, 406, 408, 426, 431, 437, 447, 497, 628, 640, 664, 672, 673, 686, 687, 690, 1325, 1326, 1328, 1332, 1339, 1351, 1377, 1423, 1431, 1433], "length": [10, 19, 96, 129, 250, 268, 269, 306, 324, 325, 363, 381, 402, 404, 408, 418, 419, 423, 434, 437, 447, 481, 516, 565, 566, 567, 571, 636, 639, 649, 661, 664, 725, 767, 807, 847, 877, 886, 925, 934, 960, 1010, 1051, 1079, 1080, 1088, 1123, 1124, 1132, 1159, 1168, 1204, 1230, 1257, 1260, 1275, 1291, 1294, 1318, 1319, 1325, 1335, 1337, 1339, 1377, 1399, 1422, 1424, 1425], "length_range_scal": 1294, "less": [427, 657, 1283, 1342, 1423], "let": [878, 1377], "lett": 1399, "level": [15, 61, 62, 125, 650, 671, 1420, 1429], "li": [64, 65, 66, 1339], "lib": 1430, "libatla": 1430, "libgomp": 1430, "libiomp": 1430, "liblapack": 1430, "libmkl": 1430, "libmkl_cor": 1430, "libopenbla": 1430, "lie": 661, "light": 10, "like": [2, 3, 34, 90, 93, 126, 136, 147, 149, 151, 212, 222, 269, 270, 280, 325, 327, 337, 383, 404, 408, 418, 424, 425, 427, 437, 438, 447, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 568, 573, 577, 585, 657, 665, 672, 675, 677, 690, 696, 727, 769, 809, 849, 878, 879, 927, 970, 1011, 1012, 1053, 1080, 1081, 1124, 1125, 1161, 1207, 1231, 1232, 1269, 1285, 1288, 1294, 1318, 1325, 1330, 1341, 1342, 1345, 1357, 1374, 1377, 1381, 1382, 1405, 1406, 1418, 1419, 1422, 1423, 1425, 1426, 1430, 1431, 1433], "limit": [67, 159, 575, 1272, 1328, 1380, 1399, 1425], "linalg": [452, 648, 1304, 1419, 1425], "line": [34, 56, 59, 158, 565, 583, 584, 594, 627, 900, 941, 1011, 1288, 1427], "line1": 584, "line2": 584, "linear": [426, 648, 677, 1304, 1318, 1419, 1425], "linearndinterpol": 648, "link": [132, 1430], "linspac": [426, 497, 575, 577, 628, 648, 652, 657, 677, 690, 1301, 1325, 1329, 1332, 1339, 1377, 1399, 1421, 1423, 1433], "linux": [127, 642, 1270, 1430], "liquid": 437, "list": [3, 64, 65, 66, 67, 90, 96, 98, 112, 125, 129, 142, 149, 152, 219, 244, 245, 250, 277, 300, 301, 306, 334, 357, 358, 363, 408, 427, 437, 447, 455, 565, 585, 596, 597, 598, 621, 622, 624, 625, 631, 636, 639, 640, 686, 687, 878, 1272, 1287, 1294, 1313, 1325, 1342, 1347, 1355, 1357, 1368, 1369, 1371, 1373, 1377, 1418, 1422, 1424, 1430, 1431], "list_iter": [608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620], "lit": 1326, "liter": [54, 55, 63], "literatur": [418, 1419], "littl": 1272, "live": [86, 90, 575, 1011, 1282, 1430], "ll": 1323, "lmp": [12, 104, 105, 108, 569, 969, 1011, 1433], "lo": 1427, "load": [21, 34, 133, 408, 506, 561, 1422, 1427, 1430], "loadtxt": [59, 1269, 1287, 1427], "loc": [583, 627], "local": [93, 97, 500, 644, 653, 658, 1124], "locat": [627, 1422, 1426, 1430], "log": [408, 969, 1011, 1433], "logfil": [34, 1409, 1433], "logfn": 408, "logic": [437, 1091, 1171], "london": 1124, "long": [34, 437, 446, 1339, 1341, 1419, 1423, 1425, 1433], "longish": 427, "look": [21, 437, 438, 878, 1275, 1285, 1288, 1377, 1430, 1433], "lookup": [502, 646, 655, 657, 660, 661], "looong": 1328, "loop": [12, 96, 125, 404, 418, 419, 428, 438, 441, 577, 630, 631, 640, 1272, 1290, 1292, 1309, 1326, 1328, 1330, 1339, 1377, 1403, 1419, 1431], "loos": 1326, "lorentz": [1327, 1339, 1433], "loss": 1425, "lost": 677, "lot": [1294, 1341], "low": [61, 62, 481, 516, 768, 848, 1124, 1325, 1330, 1425], "lower": [583, 1294, 1425], "lowercas": 577, "lowpass": 1325, "lr": [64, 65, 66], "lst": [152, 417, 433, 470, 540, 1276, 1277, 1278, 1279, 1280, 1281, 1369, 1370], "lst2": 152, "lstsq": [1304, 1425], "lu": [64, 65, 66], "m": [1, 12, 19, 51, 222, 269, 280, 337, 418, 419, 437, 452, 574, 596, 597, 598, 622, 625, 648, 1290, 1291, 1292, 1301, 1302, 1303, 1306, 1309, 1310, 1327, 1334, 1339, 1340, 1371, 1418, 1419, 1422, 1425, 1427, 1430], "m0": [10, 19], "m_x": 665, "m_y": 665, "machin": [86, 96, 97, 1272, 1421], "machineri": 682, "made": [86, 96, 140, 417], "magnet": 10, "magnitud": [675, 1377], "mai": [21, 27, 34, 125, 269, 419, 422, 427, 437, 585, 627, 675, 681, 688, 878, 1011, 1052, 1080, 1124, 1285, 1291, 1296, 1304, 1339, 1371, 1374, 1382, 1409, 1422, 1423, 1424, 1425, 1430, 1433], "mail": [151, 1418], "main": [1339, 1423], "mainli": 848, "major": [61, 62], "make": [112, 212, 270, 327, 383, 424, 506, 595, 627, 628, 677, 696, 727, 769, 809, 849, 879, 927, 970, 1012, 1053, 1081, 1125, 1161, 1207, 1232, 1271, 1273, 1294, 1325, 1339, 1409, 1427, 1430], "make_axes_grid_fig": 627, "makefil": 1430, "manadatori": 1423, "manag": 1430, "mandatori": [1339, 1377], "mani": [21, 61, 62, 90, 409, 418, 419, 427, 428, 575, 661, 1124, 1288, 1290, 1294, 1339, 1377, 1419, 1423, 1425, 1427], "manipul": 1418, "mantissa": [127, 642, 1270], "manual": [34, 1377, 1403, 1422, 1431], "map": [3, 64, 65, 90, 239, 295, 352, 409, 412, 681, 1011, 1313, 1430], "mape": 3, "mar": 93, "mark": 19, "marker": 1427, "martyna": 19, "mask": [406, 431, 437, 438, 440, 671, 672], "mask_val": [1, 42, 406], "mass": [3, 19, 65, 233, 269, 289, 346, 634, 635, 636, 639, 1273, 1290, 1291, 1292, 1422, 1423], "mass_str": 1427, "mass_uniqu": 1427, "massiv": 1339, "match": [90, 664, 1271, 1272, 1364, 1419], "match_mask": 427, "matdyn": [22, 1276, 1279, 1282, 1287, 1288, 1424, 1427], "matdyn_freq_fn": 1427, "matdyn_in_fn": 1427, "math": [159, 418, 419, 471, 1419], "mathbb": 1301, "mathbf": [1302, 1304, 1306, 1425], "mathcal": 1431, "mathemat": [452, 1423], "mathworld": [666, 1326, 1328], "matmul": 1328, "matplotlib": [148, 575, 595, 627, 1428, 1430], "matric": [418, 1419], "matrix": [404, 409, 412, 418, 425, 434, 435, 452, 666, 679, 681, 689, 1124, 1282, 1283, 1284, 1288, 1301, 1302, 1306, 1309, 1328, 1371, 1419, 1424, 1425], "matter": [96, 437, 471, 574, 1275, 1377, 1419, 1424, 1425], "mawk": [21, 691], "max": [56, 67, 408, 437, 447, 497, 669, 670, 676, 1294, 1338, 1358], "maxdim": [59, 60], "maxim": [435, 437, 1294, 1331, 1433], "maxima": [500, 644, 653, 658, 1332], "maximum": 1325, "maxit": 926, "maxmem": 437, "mayb": [878, 1373, 1403, 1418, 1430], "mbar": 10, "md": [2, 21, 23, 34, 64, 65, 66, 104, 219, 222, 277, 280, 334, 337, 408, 418, 419, 431, 435, 436, 437, 447, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 598, 684, 768, 848, 878, 900, 941, 1011, 1080, 1124, 1160, 1231, 1269, 1330, 1417, 1418, 1420, 1422, 1424, 1426, 1428, 1429], "mdtype": 878, "me": 1275, "mean": [54, 55, 63, 436, 565, 648, 688, 1272, 1294, 1301, 1309, 1310, 1320, 1371, 1424, 1425], "meaning": 436, "meant": [34, 1403], "measur": [408, 1425], "mechan": [67, 437], "medium": [848, 1328], "memori": [61, 62, 437, 441, 1328, 1330, 1339, 1342, 1367, 1433], "ment": 1341, "mercer": 1425, "mesh": 423, "meshgrid": [577, 648, 673], "meshgridt": [577, 1433], "meson": 1430, "messag": 1403, "metal": [108, 423, 1011, 1422], "method": [1, 14, 21, 41, 51, 61, 62, 67, 72, 79, 81, 86, 89, 90, 93, 96, 100, 103, 104, 112, 159, 211, 217, 260, 262, 269, 275, 316, 318, 325, 332, 373, 375, 382, 388, 395, 397, 437, 438, 441, 447, 461, 465, 471, 477, 489, 491, 497, 500, 506, 512, 524, 526, 535, 547, 572, 574, 577, 583, 584, 640, 643, 644, 648, 650, 652, 653, 657, 658, 661, 695, 701, 717, 720, 726, 732, 758, 761, 768, 774, 798, 801, 808, 814, 838, 841, 848, 854, 869, 872, 878, 884, 916, 919, 926, 932, 952, 955, 961, 969, 975, 1001, 1004, 1011, 1017, 1042, 1045, 1052, 1058, 1071, 1074, 1080, 1086, 1114, 1117, 1124, 1130, 1151, 1154, 1160, 1166, 1195, 1198, 1206, 1212, 1222, 1225, 1231, 1237, 1248, 1251, 1289, 1290, 1291, 1292, 1293, 1294, 1301, 1310, 1318, 1322, 1323, 1325, 1326, 1328, 1339, 1341, 1342, 1345, 1377, 1379, 1380, 1382, 1403, 1409, 1418, 1419, 1422, 1423, 1425, 1428, 1431, 1433], "metric": [1318, 1323], "mexican": 1433, "mg": [64, 65, 66], "mh": 598, "michael": 19, "middl": [408, 437, 446, 447, 1339], "might": [3, 575, 675, 682, 808, 1430, 1433], "mimic": [211, 1377], "min": [481, 497, 516, 645, 649, 651, 654, 659, 669, 670, 681, 1294, 1338], "min_v": 1431, "mind": 1433, "minim": [269, 422, 649, 651, 1011, 1379, 1425, 1431, 1433], "minima": [648, 1332], "minimimum": 1425, "minimum": [406, 408, 420, 421, 425, 435, 437, 447, 481, 506, 516, 669, 1325], "minpoint": [422, 423], "mirr": [1291, 1293, 1331, 1423], "mirror": [1291, 1328, 1331, 1339, 1423], "miss": [707, 737, 779, 819, 858, 889, 937, 980, 1022, 1062, 1093, 1136, 1173, 1216, 1241, 1285, 1422, 1433], "mix": 125, "mixing_beta": [112, 113, 116], "mixing_mod": [112, 113, 116], "mkdir": [74, 221, 279, 336, 390, 479, 514, 706, 735, 777, 817, 857, 887, 935, 978, 1020, 1061, 1089, 1133, 1169, 1215, 1240, 1426], "mkl": 1430, "mkl_lib": 1430, "mkl_root": 1430, "mkvirtualenv": 1430, "ml": 1425, "mn": [64, 65, 66], "mo": [64, 65, 66, 598], "mode": [34, 61, 62, 90, 91, 96, 97, 98, 139, 159, 568, 1282, 1284, 1285, 1288, 1325, 1331, 1339, 1368, 1409, 1418, 1421, 1427, 1430], "model": [67, 465, 499, 535, 1301, 1308, 1318, 1319, 1321, 1399, 1425], "model_select": 1318, "modern": 1431, "modifi": [128, 416, 425, 430, 431, 575, 686, 1124, 1369], "modul": [0, 1, 23, 61, 62, 1342, 1422, 1423, 1430], "modulu": [480, 481, 515, 516, 1377, 1380], "mol": [19, 34, 408, 1377], "molecul": 571, "molecular": [59, 878, 1409, 1412, 1413, 1414, 1415, 1416, 1428], "molekulardynamik": 437, "molfil": 571, "molid": 34, "moment": 437, "monkhorst": [1417, 1429], "monkhorst_pack": 423, "monotin": 661, "monoton": [503, 647, 656, 662, 1325], "more": [61, 62, 89, 422, 428, 437, 457, 574, 577, 579, 582, 583, 584, 675, 677, 1011, 1052, 1124, 1294, 1304, 1339, 1373, 1382, 1409, 1417, 1419, 1423, 1425, 1426, 1427, 1429, 1430, 1431], "most": [67, 72, 90, 93, 217, 275, 332, 388, 418, 437, 477, 512, 585, 681, 701, 732, 774, 814, 854, 878, 884, 932, 975, 1017, 1058, 1086, 1124, 1130, 1166, 1212, 1237, 1291, 1405, 1406, 1419, 1422, 1430, 1431], "mostli": [28, 419, 422, 1304, 1326, 1417], "mothership": 67, "motion": 1426, "move": [61, 62], "mp": [423, 598, 1433], "mpirun": 112, "mpl": [35, 575, 648, 677, 1301, 1325, 1377, 1427, 1428, 1433], "mpl_toolkit": [577, 627], "mplot3d": 577, "mse": 1425, "msg": [533, 1297, 1404, 1405, 1408], "msk": [427, 671], "mt": [64, 65, 66], "mtk": 1011, "mttk": 35, "mu0": 10, "much": [21, 79, 222, 260, 269, 280, 316, 337, 373, 395, 437, 489, 524, 575, 657, 681, 717, 758, 798, 838, 848, 869, 916, 952, 1001, 1042, 1071, 1114, 1151, 1195, 1222, 1248, 1294, 1304, 1339, 1418, 1422, 1423], "mult": [685, 1328], "multi": 1313, "multidimension": [61, 62], "multipl": [159, 412, 594, 648, 685, 688, 1011, 1342, 1344], "multipli": [1080, 1124], "multiquadr": [648, 1315, 1316, 1425], "murnaghan": 471, "must": [53, 54, 55, 56, 63, 66, 67, 159, 163, 222, 280, 337, 404, 418, 419, 435, 437, 455, 577, 596, 597, 598, 621, 622, 624, 625, 650, 657, 661, 669, 670, 686, 687, 691, 878, 926, 969, 1260, 1269, 1271, 1272, 1301, 1324, 1325, 1339, 1342, 1351, 1377, 1382, 1411, 1423, 1424, 1425, 1430], "mutabl": [66, 455, 461, 596, 597, 598, 621, 622, 624, 625], "mv": [116, 598], "mx": [598, 665], "my": 665, "my_calc": 112, "my_fil": 462, "mycas": 89, "mysuperparsingclass": 67, "n": [64, 65, 66, 104, 105, 108, 112, 116, 238, 239, 245, 250, 253, 254, 269, 294, 295, 301, 306, 309, 310, 351, 352, 358, 363, 366, 367, 418, 427, 438, 440, 480, 506, 515, 567, 574, 575, 607, 630, 648, 664, 665, 677, 679, 689, 1011, 1124, 1269, 1271, 1273, 1301, 1302, 1303, 1306, 1308, 1319, 1328, 1331, 1336, 1339, 1377, 1399, 1411, 1419, 1421, 1422, 1423, 1424, 1427, 1428, 1430, 1431], "n0": 157, "n1": 151, "n2": 1341, "n_repeat": [1318, 1319, 1323], "n_split": [1318, 1319, 1323], "n_volum": 1431, "na": [64, 65, 66, 1377], "nadd": [1325, 1337, 1423], "nal3n2al": 269, "name": [21, 64, 65, 67, 77, 82, 84, 86, 90, 93, 95, 96, 112, 121, 127, 132, 134, 137, 138, 140, 147, 151, 159, 219, 256, 266, 277, 312, 322, 334, 369, 379, 393, 398, 400, 408, 410, 433, 437, 447, 451, 454, 462, 471, 487, 492, 495, 506, 522, 527, 530, 547, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 577, 585, 629, 642, 648, 661, 695, 703, 715, 721, 723, 756, 762, 765, 796, 802, 805, 836, 842, 845, 867, 873, 875, 914, 920, 923, 950, 956, 958, 999, 1005, 1008, 1011, 1040, 1046, 1049, 1069, 1075, 1077, 1112, 1118, 1121, 1149, 1155, 1157, 1193, 1199, 1202, 1220, 1226, 1228, 1246, 1252, 1255, 1270, 1273, 1283, 1313, 1339, 1341, 1342, 1343, 1345, 1351, 1355, 1361, 1362, 1363, 1368, 1369, 1377, 1426, 1430, 1431, 1433], "nan": [61, 62, 1382], "nanfil": 1382, "narrow": 1425, "nat": 116, "natom": [0, 1, 36, 38, 39, 40, 42, 43, 44, 45, 47, 48, 49, 51, 52, 116, 211, 269, 325, 406, 418, 419, 420, 421, 425, 427, 428, 431, 454, 455, 456, 458, 471, 634, 635, 639, 900, 941, 1124, 1269, 1271, 1272, 1273, 1282, 1283, 1284, 1285, 1287, 1288, 1290, 1291, 1292, 1339, 1374, 1382, 1419, 1421, 1423, 1424, 1433], "natom_styl": 108, "natomic_posit": 116, "natomic_speci": 116, "natoms0": 437, "natoms1": 437, "natur": [471, 661, 675, 1422], "natural_unit": 10, "nax0": 1377, "nax1": 1377, "nax2": 1377, "nb": [64, 65, 66, 1377], "nbnd": [575, 1287], "nboundari": 108, "nbyte": [61, 62], "nc": 1377, "ncell_paramet": 116, "nclear": 108, "ncol": 640, "nd": [59, 60, 64, 65, 66, 141, 427, 628, 640, 648, 650, 671, 681, 682, 688, 1337, 1339, 1377, 1425], "ndarrai": [61, 62, 419, 425, 665, 667, 683, 686, 687, 1330, 1339], "ndim": [1, 46, 61, 62, 418, 634, 635, 636, 639, 650, 651, 671, 677, 679, 680, 681, 689, 1301, 1377], "ndimag": 1339, "ndump": 108, "ndump_modifi": 108, "ne": [64, 65, 66], "nearest": [408, 427, 428, 429, 435, 437, 447, 648, 1310, 1339, 1425], "nearest_neighbor": [428, 429], "nearestndinterpol": 648, "neb": 1428, "necessari": [675, 1423, 1424], "need": [21, 34, 60, 61, 62, 89, 93, 96, 112, 222, 280, 337, 404, 423, 436, 437, 471, 574, 650, 1080, 1124, 1272, 1275, 1294, 1301, 1304, 1309, 1331, 1332, 1339, 1341, 1342, 1377, 1379, 1380, 1409, 1418, 1419, 1422, 1423, 1426, 1427, 1430, 1431, 1433], "neg": [123, 440, 688, 1305, 1382, 1423], "neigbor": 437, "neighbor": [408, 427, 428, 429, 435, 437, 447, 1310, 1423, 1425], "neither": [575, 661], "nest": [96, 98, 125, 149, 577, 640, 1371, 1377], "nested_loop": [96, 1371], "net": [3, 23, 471], "network": 1301, "nevertheless": [1377, 1422, 1425], "new": [34, 53, 64, 65, 66, 96, 97, 159, 163, 403, 404, 418, 419, 455, 481, 516, 568, 579, 582, 596, 597, 598, 621, 622, 624, 625, 627, 667, 681, 691, 1011, 1290, 1313, 1324, 1345, 1351, 1368, 1411, 1419, 1422, 1426, 1433], "new_fixed_axi": 627, "new_point": [648, 650], "new_valu": [568, 648], "new_vec": 574, "newlin": [1278, 1281], "newton": 661, "next": [61, 62, 98, 640, 677, 685, 1288, 1291, 1336, 1337], "nf": [634, 635, 639], "nfi": 878, "nfreq": 1377, "nh": [636, 639], "nhc": [19, 636, 639], "ni": [64, 65, 66, 427], "nice": [157, 657, 1330, 1418, 1427], "nice_bond": 1433, "nicer": 135, "ninja": 1430, "nist": 10, "nitem": [683, 684], "niter": [630, 631], "nk": [572, 573, 575, 1276, 1279, 1287], "nk1": [1276, 1279], "nk2": [1276, 1279], "nk3": [1276, 1279], "nk_point": 116, "nmode": [1283, 1284, 1288], "nn": [1, 50], "nn_dist": 427, "nn_idx": 427, "nno": [636, 639], "no_reset": 926, "nobuild": 1430, "nois": [681, 969, 1304, 1326, 1423, 1425], "noisi": [1304, 1425], "non": [417, 435, 437, 461, 1124, 1423], "none": [21, 34, 59, 61, 62, 67, 72, 76, 77, 80, 81, 82, 83, 84, 86, 90, 93, 105, 111, 113, 119, 130, 144, 155, 157, 161, 211, 217, 219, 251, 255, 256, 261, 262, 264, 266, 269, 275, 277, 307, 311, 312, 317, 318, 320, 322, 332, 334, 364, 368, 369, 374, 375, 377, 379, 388, 392, 393, 396, 397, 398, 399, 400, 404, 408, 415, 418, 419, 422, 424, 425, 427, 428, 433, 437, 447, 467, 477, 486, 487, 490, 491, 492, 493, 495, 500, 502, 505, 506, 512, 521, 522, 525, 526, 527, 528, 530, 533, 537, 547, 572, 575, 577, 583, 585, 595, 623, 627, 628, 634, 635, 639, 640, 644, 645, 646, 648, 649, 651, 653, 654, 655, 658, 659, 660, 661, 664, 672, 686, 687, 688, 695, 701, 714, 715, 719, 720, 721, 722, 723, 732, 755, 756, 760, 761, 762, 763, 765, 774, 795, 796, 800, 801, 802, 803, 805, 814, 835, 836, 840, 841, 842, 843, 845, 854, 866, 867, 871, 872, 873, 874, 875, 878, 884, 913, 914, 918, 919, 920, 921, 923, 932, 949, 950, 954, 955, 956, 957, 958, 975, 998, 999, 1003, 1004, 1005, 1006, 1008, 1011, 1017, 1039, 1040, 1044, 1045, 1046, 1047, 1049, 1052, 1058, 1068, 1069, 1073, 1074, 1075, 1076, 1077, 1080, 1086, 1090, 1111, 1112, 1116, 1117, 1118, 1119, 1121, 1124, 1130, 1134, 1148, 1149, 1153, 1154, 1155, 1156, 1157, 1166, 1170, 1192, 1193, 1197, 1198, 1199, 1200, 1202, 1206, 1212, 1219, 1220, 1224, 1225, 1226, 1227, 1228, 1231, 1237, 1245, 1246, 1250, 1251, 1252, 1253, 1255, 1260, 1271, 1275, 1282, 1283, 1284, 1285, 1288, 1290, 1291, 1292, 1293, 1301, 1304, 1306, 1309, 1318, 1323, 1325, 1332, 1337, 1339, 1341, 1342, 1343, 1344, 1345, 1347, 1351, 1356, 1358, 1361, 1368, 1369, 1371, 1374, 1377, 1379, 1382, 1386, 1388, 1389, 1390, 1406, 1409, 1422, 1425], "nonempti": 140, "nonexist": 568, "nonuniformli": 664, "nonzero": 406, "norm": [1, 41, 572, 573, 575, 681, 1326, 1333, 1339, 1423], "norm_vmd": 437, "normal": [59, 159, 404, 418, 436, 437, 471, 657, 675, 683, 684, 900, 941, 1291, 1304, 1318, 1321, 1326, 1333, 1339, 1382, 1424, 1425], "nornmal": 437, "nose": 19, "noseinert": 19, "nosym": 116, "notat": [444, 1420, 1429], "note": [3, 6, 34, 61, 62, 67, 96, 97, 99, 123, 125, 151, 157, 159, 160, 211, 222, 269, 280, 325, 337, 404, 409, 418, 420, 422, 423, 427, 431, 437, 438, 452, 471, 481, 506, 516, 565, 566, 568, 574, 577, 585, 595, 627, 648, 650, 664, 675, 677, 681, 682, 848, 878, 926, 969, 1011, 1052, 1080, 1124, 1272, 1275, 1284, 1285, 1287, 1288, 1290, 1291, 1301, 1304, 1323, 1325, 1326, 1328, 1331, 1332, 1339, 1341, 1342, 1374, 1375, 1377, 1382, 1406, 1417, 1420, 1422, 1423, 1424, 1425, 1427, 1429], "noth": 21, "nothig": 462, "now": [6, 14, 90, 112, 211, 462, 679, 681, 1287, 1374, 1377, 1419, 1423, 1425, 1426, 1433], "np": [59, 61, 62, 64, 65, 66, 98, 112, 125, 127, 141, 157, 161, 269, 406, 418, 419, 423, 437, 438, 452, 575, 577, 628, 640, 642, 648, 652, 676, 677, 681, 682, 686, 687, 688, 1260, 1269, 1270, 1271, 1287, 1301, 1325, 1328, 1339, 1377, 1382, 1421, 1422, 1423, 1427, 1430, 1431, 1433], "npad": [1289, 1291, 1293], "npair_coeff": 108, "npair_styl": 108, "npoint": [471, 506, 648, 650, 652, 671, 677, 681, 689], "npt": [878, 1011], "nqpoint": [1282, 1288], "nread_data": 108, "nrow": 640, "nrun": 108, "nspeci": 269, "nstep": [0, 1, 36, 38, 39, 40, 41, 44, 45, 49, 51, 52, 211, 249, 269, 305, 325, 362, 417, 418, 419, 421, 426, 431, 436, 441, 443, 445, 446, 449, 456, 457, 458, 667, 1011, 1269, 1290, 1291, 1292, 1325, 1326, 1339, 1395, 1419, 1423, 1433], "nstephdr": [0, 12, 36, 457], "nstom": 325, "ntap": 1325, "nthermo_styl": 108, "nthread": [1, 51, 1290, 1430], "ntitl": [454, 455], "ntyp": 116, "null": [1341, 1351, 1368, 1371, 1411], "num": [35, 132, 427, 428, 577, 623, 1332, 1377, 1399, 1425, 1428, 1433], "num_int": [408, 437, 447], "number": [3, 54, 55, 60, 61, 62, 63, 65, 90, 96, 97, 127, 136, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 236, 238, 239, 245, 253, 254, 292, 294, 295, 301, 309, 310, 349, 351, 352, 358, 366, 367, 406, 408, 418, 422, 425, 426, 427, 432, 436, 437, 447, 463, 464, 471, 497, 506, 532, 534, 544, 545, 546, 548, 565, 627, 631, 632, 634, 635, 636, 637, 638, 639, 642, 667, 678, 679, 681, 683, 684, 692, 693, 694, 878, 900, 941, 968, 1011, 1052, 1124, 1205, 1261, 1263, 1266, 1267, 1268, 1269, 1270, 1272, 1282, 1283, 1285, 1288, 1294, 1298, 1325, 1327, 1331, 1334, 1336, 1339, 1342, 1351, 1358, 1373, 1374, 1375, 1382, 1391, 1392, 1393, 1395, 1396, 1397, 1400, 1401, 1402, 1424, 1428, 1430], "number_dens": [408, 437, 447], "numer": [675, 681, 969, 1304, 1326, 1328, 1382, 1406, 1419, 1420, 1423, 1429], "numpi": [12, 59, 61, 62, 112, 126, 127, 130, 141, 149, 161, 219, 277, 334, 405, 406, 418, 423, 424, 427, 437, 438, 454, 577, 578, 581, 594, 640, 642, 657, 667, 668, 672, 673, 675, 677, 681, 686, 687, 688, 690, 1258, 1259, 1269, 1270, 1272, 1287, 1301, 1309, 1325, 1326, 1328, 1330, 1339, 1353, 1354, 1372, 1417, 1419, 1421, 1422, 1427, 1428, 1430], "nunit": 108, "nve": 1426, "nvplt": 471, "nvt": 1426, "nx": [1, 46, 422, 438, 440, 577, 640, 673], "nxest": 648, "ny": [1, 46, 422, 438, 440, 577, 640, 673], "nyest": 648, "nyq": 1325, "nyquist": [1325, 1331], "nz": [422, 438, 440, 640], "o": [6, 15, 64, 65, 66, 90, 150, 239, 295, 352, 408, 427, 437, 447, 497, 506, 624, 648, 652, 1301, 1304, 1321, 1326, 1371, 1421, 1426, 1431, 1433], "o0": 130, "ob": 625, "obj": [34, 404, 415, 430, 438, 443, 566, 571, 1409, 1410], "obj_in": 415, "object": [21, 53, 56, 61, 62, 64, 65, 67, 74, 79, 86, 89, 90, 93, 96, 100, 103, 104, 112, 125, 128, 133, 147, 148, 149, 161, 163, 221, 222, 249, 260, 269, 279, 280, 305, 316, 336, 337, 362, 373, 390, 395, 407, 416, 417, 430, 433, 436, 437, 442, 454, 461, 462, 465, 479, 489, 497, 514, 524, 547, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 561, 562, 563, 564, 569, 572, 576, 577, 578, 579, 581, 582, 583, 584, 587, 588, 589, 590, 592, 593, 599, 600, 601, 602, 603, 604, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 640, 643, 648, 650, 686, 687, 691, 706, 707, 717, 735, 737, 758, 777, 779, 798, 817, 819, 838, 857, 858, 869, 887, 889, 916, 935, 937, 952, 961, 978, 980, 1001, 1020, 1022, 1042, 1061, 1062, 1071, 1089, 1093, 1114, 1124, 1133, 1136, 1151, 1169, 1173, 1195, 1215, 1216, 1222, 1240, 1241, 1248, 1290, 1294, 1301, 1313, 1318, 1322, 1324, 1325, 1326, 1341, 1342, 1377, 1381, 1382, 1403, 1409, 1411, 1412, 1413, 1414, 1415, 1416, 1418, 1422, 1428, 1433], "observ": 1425, "obtain": [90, 425, 497, 969, 1124, 1345, 1355, 1379, 1422, 1425], "obvious": [222, 280, 337], "oc": 625, "occup": 116, "occupi": [61, 62], "occur": [462, 1374, 1382], "octob": 151, "odd": [422, 1339], "odii": [878, 926], "odiss": 878, "off": [160, 627, 1422], "offset": [61, 62, 627, 1301, 1326], "often": 1422, "og": 625, "oi": 625, "ok": [130, 219, 277, 334, 404, 625, 1430, 1433], "old": [14, 97, 112, 403, 418, 419, 481, 516, 568, 1290, 1419], "om": 625, "omega": [1288, 1424], "omp": 1430, "omp_num_thread": 1430, "onc": [21, 67, 212, 270, 327, 383, 418, 696, 727, 769, 809, 849, 879, 927, 970, 1012, 1053, 1081, 1125, 1161, 1207, 1232, 1319, 1418, 1419, 1422, 1431], "one": [61, 62, 64, 65, 86, 96, 98, 129, 159, 211, 233, 269, 289, 325, 346, 409, 417, 418, 419, 431, 437, 438, 547, 568, 574, 583, 584, 585, 627, 648, 657, 661, 671, 677, 679, 686, 687, 1011, 1124, 1275, 1282, 1283, 1291, 1313, 1318, 1337, 1341, 1357, 1377, 1379, 1409, 1418, 1419, 1421, 1422, 1423, 1425, 1426, 1427, 1430, 1431, 1433], "ones": [568, 1339, 1422, 1425], "onli": [12, 14, 21, 61, 62, 67, 86, 89, 90, 96, 97, 104, 112, 158, 159, 164, 211, 212, 222, 269, 270, 280, 325, 327, 337, 383, 408, 418, 424, 427, 429, 431, 436, 437, 438, 441, 447, 456, 458, 471, 566, 568, 572, 585, 627, 640, 648, 661, 664, 672, 677, 681, 682, 696, 707, 726, 727, 737, 769, 779, 809, 819, 848, 849, 858, 878, 879, 889, 900, 927, 937, 941, 961, 969, 970, 980, 1012, 1022, 1052, 1053, 1062, 1080, 1081, 1093, 1124, 1125, 1136, 1160, 1161, 1173, 1207, 1216, 1232, 1241, 1269, 1275, 1283, 1290, 1291, 1292, 1294, 1300, 1318, 1323, 1325, 1326, 1328, 1331, 1337, 1339, 1341, 1368, 1374, 1377, 1378, 1379, 1382, 1407, 1418, 1419, 1423, 1424, 1425, 1426, 1430, 1431, 1433], "open": [79, 137, 138, 147, 260, 316, 373, 395, 462, 489, 524, 568, 717, 758, 798, 838, 869, 916, 952, 1001, 1042, 1071, 1114, 1151, 1195, 1222, 1248], "open_fil": 0, "openbabel": 1052, "openbla": 1430, "openmp": [1290, 1417, 1429], "oper": [96, 431, 437, 575, 577, 583, 640], "oppenheim": 1418, "opt": [1377, 1379, 1431], "opt_kwd": 1323, "optcel": [634, 635], "optim": [649, 651, 878, 926, 1011, 1323, 1377, 1418, 1419, 1425, 1433], "optimum": 1425, "option": [34, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 61, 62, 67, 86, 90, 96, 97, 125, 132, 211, 269, 325, 406, 408, 411, 414, 418, 420, 425, 436, 437, 438, 447, 471, 481, 516, 569, 571, 572, 575, 577, 583, 585, 648, 649, 650, 651, 675, 681, 682, 688, 878, 1011, 1080, 1124, 1277, 1278, 1280, 1281, 1290, 1294, 1296, 1306, 1318, 1319, 1326, 1332, 1341, 1342, 1343, 1344, 1345, 1347, 1351, 1356, 1358, 1361, 1368, 1369, 1371, 1377, 1379, 1382, 1409, 1429, 1433], "orbit": 926, "order": [61, 62, 67, 233, 250, 269, 289, 306, 346, 363, 427, 437, 440, 462, 467, 471, 497, 537, 577, 640, 664, 671, 675, 677, 679, 682, 878, 1011, 1124, 1325, 1326, 1332, 1374, 1377, 1382, 1422, 1423, 1433], "org": [10, 112, 151, 450, 471, 566, 695, 1325, 1328, 1339, 1424], "orient": [404, 409, 412, 1275, 1419], "orig": 98, "origin": [59, 98, 438, 462, 1368], "orthogon": [404, 408, 447], "orthorhomb": 437, "oscil": [661, 1425], "ot": 1290, "other": [3, 21, 23, 67, 80, 90, 96, 211, 261, 269, 317, 325, 374, 396, 417, 419, 490, 525, 719, 760, 800, 840, 871, 918, 954, 1003, 1044, 1073, 1116, 1124, 1153, 1197, 1224, 1250, 1318, 1339, 1340, 1351, 1368, 1373, 1374, 1380, 1418, 1420, 1422, 1423, 1429, 1430, 1433], "otherwis": [53, 163, 164, 422, 577, 691, 1124, 1290, 1300, 1324, 1407, 1411], "otoh": [1275, 1339], "ouput": [551, 552, 553, 554, 555, 556, 558, 559, 562, 563, 564], "our": 1423, "out": [12, 60, 104, 105, 112, 113, 151, 404, 427, 431, 437, 661, 672, 969, 1011, 1080, 1124, 1284, 1285, 1288, 1325, 1422, 1423, 1426, 1427, 1430, 1431, 1433], "outdir": [112, 113, 116], "outer": [577, 1403], "outfil": 506, "outlin": 1423, "output": [22, 23, 34, 59, 112, 151, 408, 447, 567, 570, 577, 768, 848, 878, 926, 969, 1011, 1080, 1124, 1284, 1285, 1409, 1417, 1418, 1420, 1424, 1427, 1428, 1429], "outputfil": [21, 1422], "outsid": [96, 406, 437, 575, 631], "outweight": 67, "over": [21, 96, 404, 418, 436, 437, 441, 461, 640, 688, 1124, 1296, 1330, 1339, 1342, 1377, 1382, 1418, 1419, 1423], "overfit": 1425, "overrid": [67, 1090, 1134, 1170, 1430], "overview": [23, 1417], "overwrit": [418, 568, 1124, 1345, 1351], "overwrite_anglesijk": [1, 42], "overwrite_dist": [1, 45], "overwrite_distsq": [1, 47], "overwrite_distvec": [1, 47], "overwrite_distvecs_frac": [1, 47], "overwritten": [97, 568], "own": [86, 1323, 1428], "owndata": [61, 62], "p": [64, 65, 66, 108, 437, 471, 480, 481, 504, 506, 515, 516, 565, 624, 648, 1011, 1301, 1305, 1307, 1310, 1314, 1315, 1316, 1318, 1319, 1323, 1377, 1379, 1380, 1403, 1420, 1422, 1429, 1430, 1431], "p0": [481, 497, 506, 516], "p1": [471, 1423], "p1941": 471, "p2": 1423, "p235": 471, "p809": 471, "p_": 1425, "pa": [10, 64, 65, 66], "pack": [1294, 1330, 1417, 1423, 1429], "packag": [269, 1275, 1417, 1418, 1430], "pad": [1291, 1325, 1326, 1337, 1339, 1420, 1429], "pad_zero": [1325, 1423], "padd": [1291, 1339], "pair": [64, 65, 90, 91, 437, 1313, 1428], "pair_coeff": [104, 105, 108, 1011], "pair_styl": [104, 105, 108, 1011], "pane": 591, "paper": [19, 1431], "par1": 96, "par2": 96, "par3": 96, "parallelepip": 450, "param": [86, 465, 467, 468, 497, 499, 535, 537, 538, 541, 542, 543, 1318, 1319, 1320, 1321, 1323, 1431], "paramet": [34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 56, 58, 59, 60, 61, 62, 77, 84, 86, 90, 91, 93, 96, 97, 98, 99, 102, 104, 109, 112, 117, 123, 125, 126, 128, 130, 132, 136, 139, 141, 144, 149, 152, 157, 158, 159, 160, 161, 211, 219, 222, 256, 266, 268, 269, 277, 280, 312, 322, 324, 325, 334, 337, 369, 379, 381, 393, 400, 402, 404, 405, 406, 408, 409, 410, 411, 412, 413, 414, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 430, 431, 434, 435, 436, 437, 438, 440, 441, 444, 445, 447, 448, 449, 450, 451, 452, 453, 456, 457, 458, 459, 467, 468, 471, 481, 487, 494, 495, 497, 498, 502, 504, 506, 516, 522, 529, 530, 537, 538, 547, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 583, 584, 585, 595, 606, 627, 628, 629, 631, 634, 635, 636, 639, 640, 645, 646, 648, 649, 650, 651, 652, 654, 655, 657, 659, 660, 661, 664, 665, 666, 667, 669, 670, 671, 672, 673, 675, 677, 679, 681, 682, 683, 684, 686, 687, 688, 689, 690, 695, 707, 715, 723, 725, 737, 756, 765, 767, 779, 796, 805, 807, 819, 836, 845, 847, 858, 867, 875, 877, 878, 889, 914, 923, 925, 937, 950, 958, 960, 980, 999, 1008, 1010, 1011, 1022, 1040, 1049, 1051, 1062, 1069, 1077, 1079, 1090, 1093, 1112, 1121, 1123, 1124, 1134, 1136, 1149, 1157, 1159, 1170, 1173, 1193, 1202, 1204, 1216, 1220, 1228, 1230, 1241, 1246, 1255, 1257, 1269, 1271, 1272, 1273, 1275, 1277, 1278, 1280, 1281, 1282, 1283, 1284, 1285, 1287, 1288, 1290, 1291, 1292, 1294, 1296, 1301, 1302, 1303, 1304, 1306, 1308, 1310, 1314, 1315, 1316, 1318, 1319, 1323, 1325, 1326, 1327, 1328, 1329, 1331, 1332, 1333, 1334, 1336, 1337, 1338, 1339, 1341, 1342, 1343, 1344, 1345, 1347, 1351, 1356, 1358, 1361, 1363, 1364, 1366, 1368, 1369, 1371, 1373, 1374, 1375, 1377, 1378, 1379, 1381, 1382, 1395, 1398, 1399, 1405, 1406, 1409, 1417, 1418, 1420, 1424, 1428, 1429, 1431], "parameter_studi": [96, 1421], "parameterstudi": [86, 99, 1369, 1371, 1421], "params_lst": [96, 99, 1371, 1421], "parasiteax": 627, "parax": 627, "pari": 128, "parrinello": [437, 878], "pars": [23, 27, 35, 67, 79, 260, 316, 373, 395, 462, 489, 524, 547, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 1284, 1285, 1287, 1288, 1417, 1418, 1420, 1426, 1427, 1428, 1429], "parser": [547, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 768, 848, 1052, 1080, 1124, 1206, 1231, 1417, 1418, 1420, 1429, 1433], "part": [61, 62, 157, 428, 1284, 1319, 1325, 1328, 1403, 1418, 1422, 1433], "partial": [1301, 1302, 1303, 1431], "particl": [636, 639], "pass": [34, 59, 90, 96, 222, 269, 280, 337, 430, 502, 547, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 575, 583, 628, 629, 645, 646, 648, 654, 655, 659, 660, 688, 707, 737, 779, 819, 858, 889, 937, 980, 1022, 1062, 1093, 1124, 1136, 1173, 1216, 1241, 1269, 1290, 1325, 1345, 1368, 1374, 1375, 1377, 1409], "passband": 1325, "path": [6, 14, 21, 90, 104, 112, 145, 150, 151, 506, 572, 573, 574, 575, 1282, 1284, 1287, 1377, 1421, 1427, 1428, 1430, 1431, 1433], "path_norm": [573, 575], "pattern": [151, 437, 438], "pb": [64, 65, 66, 625, 1421], "pbc": [1, 45, 47, 104, 112, 222, 269, 280, 337, 406, 420, 421, 424, 427, 428, 431, 436, 437], "pbc_wrap_coord": 430, "pbe": 112, "pbwithin": 437, "pc": 625, "pchain": 1011, "pd": [64, 65, 66], "pdb": [560, 1052, 1422, 1428], "pdbfile": 1422, "pdf": [583, 1333], "pdo": [23, 1289, 1293, 1330, 1423, 1424], "pdos_method": 1423, "pe": [108, 1011], "peak": [1325, 1327, 1332, 1334, 1339, 1423], "peinel": 437, "penalti": 1305, "peopl": [90, 1124], "per": [12, 96, 112, 236, 292, 349, 467, 468, 497, 498, 504, 537, 538, 1282, 1309, 1377, 1431], "perfect": 1304, "perfectli": 1382, "perform": [688, 1330, 1433], "period": [10, 233, 289, 346, 425, 430, 431, 1291, 1423], "perl": 21, "permut": [125, 406, 440], "perturb": 1418, "pg": 625, "ph": [1276, 1279, 1282, 1283, 1418], "phdo": [575, 1377], "phi": [666, 1425], "phonon": [23, 575, 634, 635, 636, 639, 1276, 1279, 1283, 1284, 1287, 1288, 1291, 1377, 1382, 1417, 1418, 1420, 1424, 1428, 1429, 1431, 1433], "phonon_do": [23, 1423], "phonopi": [1418, 1431], "phy": [19, 471, 1291, 1399, 1431], "physic": 10, "pi": [10, 159, 408, 423, 434, 437, 447, 657, 666, 1272, 1287, 1325, 1328, 1329, 1339, 1382, 1423, 1424, 1427], "pick": 1430, "pickl": [21, 74, 79, 221, 260, 279, 316, 336, 373, 390, 395, 479, 489, 514, 524, 561, 706, 717, 735, 758, 777, 798, 817, 838, 857, 869, 887, 916, 935, 952, 978, 1001, 1020, 1042, 1061, 1071, 1089, 1114, 1133, 1151, 1169, 1195, 1215, 1222, 1240, 1248, 1422, 1433], "pile": 1418, "pip": 1430, "pipe": 151, "pipermail": 151, "pk": [21, 79, 150, 260, 316, 373, 395, 416, 489, 524, 625, 717, 758, 798, 838, 869, 916, 952, 1001, 1042, 1071, 1114, 1151, 1195, 1222, 1248, 1422, 1431, 1433], "pl": 1325, "place": [34, 58, 86, 93, 416, 418, 419, 425, 430, 431, 440, 574, 575, 585, 627, 657, 677, 1325], "placehold": [86, 87, 90, 91, 96, 99, 101, 106, 114, 139, 159, 437, 1342], "plai": 1367, "plain": [113, 1330], "planck": 10, "plane": [404, 409, 440, 1275], "planet": 471, "platform": [127, 642, 1270], "pleas": [222, 280, 337, 454, 1377], "plot": [406, 437, 497, 506, 574, 575, 577, 594, 595, 628, 629, 630, 631, 648, 652, 657, 661, 664, 677, 1011, 1287, 1291, 1294, 1301, 1304, 1325, 1329, 1332, 1339, 1377, 1399, 1422, 1423, 1425, 1426, 1428, 1431, 1433], "plot1": 629, "plot2": 629, "plot_di": [572, 1287, 1427], "plot_dispers": [575, 1287], "plot_surfac": [577, 1433], "plot_wirefram": [577, 1301], "plotband": 573, "plt": [595, 677, 1325, 1427, 1433], "plu": [28, 657], "plugin": 571, "pm": [64, 65, 66, 625], "pmin": 681, "png": [583, 586, 629], "po": [64, 65, 66, 726, 1426], "point": [21, 54, 55, 61, 62, 63, 104, 112, 127, 132, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 422, 423, 432, 437, 446, 463, 464, 471, 481, 497, 506, 516, 532, 534, 544, 545, 546, 548, 554, 556, 572, 573, 574, 575, 577, 627, 632, 637, 638, 642, 648, 649, 650, 651, 652, 657, 661, 664, 665, 671, 677, 678, 679, 681, 682, 689, 690, 692, 693, 694, 926, 968, 1205, 1261, 1263, 1266, 1267, 1268, 1270, 1278, 1281, 1283, 1284, 1287, 1288, 1298, 1301, 1302, 1303, 1304, 1305, 1306, 1308, 1310, 1318, 1319, 1323, 1327, 1331, 1332, 1334, 1339, 1377, 1378, 1380, 1391, 1392, 1393, 1395, 1396, 1397, 1400, 1401, 1402, 1423, 1425, 1427, 1430, 1431], "poirier": 471, "poli": [648, 650, 652, 679, 680, 681, 689, 1433], "polyd": 682, "polyfit": [577, 648, 652, 682, 689, 1301, 1377, 1425, 1433], "polyfit1d": [643, 681, 682, 1377, 1433], "polynomi": [471, 650, 679, 681, 682, 689, 1377, 1425, 1428, 1433], "polyv": [650, 681], "poorli": [481, 516], "pop": 152, "popen": 151, "popul": [96, 707, 737, 779, 819, 858, 889, 937, 980, 1022, 1062, 1093, 1136, 1173, 1216, 1241], "pos0": 1332, "posit": [123, 222, 269, 280, 337, 404, 565, 1124, 1325, 1332, 1423, 1424], "possibl": [101, 106, 114, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 419, 432, 440, 463, 464, 532, 534, 544, 545, 546, 548, 632, 637, 638, 648, 678, 685, 692, 693, 694, 968, 1205, 1261, 1263, 1266, 1267, 1268, 1291, 1298, 1337, 1341, 1391, 1392, 1393, 1396, 1397, 1400, 1401, 1402, 1403, 1422, 1424], "possibli": [21, 661, 664, 1369], "post": 1431, "postprocess": [22, 1417], "postprocessor": 1418, "poteng": [985, 1027], "potenti": [21, 59, 104, 985, 1027], "potetnti": [985, 1027], "power": [67, 437, 679, 1291, 1337, 1417, 1420, 1429], "pp": [19, 21, 112, 113, 151, 583, 585, 629, 1124, 1422, 1430, 1433], "pr": [64, 65, 66, 625, 1323], "practic": [99, 437, 1339, 1431], "pragma": 1430, "prb": 541, "pre": [428, 631, 669, 670, 1287, 1417, 1418], "preced": [54, 55, 63], "preceed": 1011, "precis": [127, 642, 677, 969, 1124, 1270, 1342], "predefin": 93, "predict": 1301, "preexec_fn": 151, "prefer": 21, "prefix": [6, 56, 57, 90, 96, 112, 116, 132, 1377, 1379], "prepare_plot": 1325, "prepend": 1337, "preprocess": 1425, "present": [97, 426, 878, 1011, 1052, 1285, 1294, 1351, 1422, 1424], "press": [437, 1011], "pressur": [10, 123, 211, 269, 325, 480, 481, 497, 515, 516, 1377, 1426, 1431, 1433], "pretti": [575, 681, 1124, 1377], "prevent": [1124, 1425], "previou": [97, 1377, 1433], "primit": [1275, 1374, 1424, 1431], "principl": 437, "print": [89, 98, 131, 157, 462, 497, 506, 575, 648, 657, 848, 878, 900, 926, 941, 969, 1011, 1080, 1124, 1271, 1273, 1284, 1290, 1294, 1342, 1369, 1370, 1371, 1382, 1403, 1404, 1405, 1424], "print_level": [768, 848], "pro": 21, "probabl": [6, 1373, 1382, 1430], "problem": [1080, 1382, 1422, 1425, 1433], "process": [28, 90, 99, 1296, 1326, 1409, 1428, 1431], "produc": [14, 21, 423, 438, 447, 471, 1283, 1287, 1288, 1422, 1423, 1430, 1431], "product": [96, 452, 577, 1290, 1292, 1318, 1377, 1419, 1425, 1426], "profil": 1403, "program": [21, 34, 565, 1409], "project": [583, 629, 726, 1418, 1426, 1431], "prompt": 151, "pronounc": 1425, "properit": [481, 516], "properli": 1425, "properti": [61, 62, 111, 119, 461, 506, 1372, 1377, 1378, 1379, 1380, 1422, 1428, 1433], "provid": [100, 211, 269, 325, 382, 437, 643, 682, 1124, 1355, 1371, 1379, 1418, 1422, 1425, 1430, 1431], "pscale": 681, "pseudo": [112, 1273, 1421], "pseudo_dir": [112, 113, 116], "pseudopotenti": [112, 1273], "psi": 666, "psu": [435, 437], "psweep": 1431, "pt": [3, 64, 66, 1403], "pthread": 1430, "pu": [64, 65, 66], "pull": [86, 431, 672], "pure": [12, 458, 1309], "purg": 97, "purpos": [89, 418], "push": 97, "put": [1325, 1342, 1343], "pv": [471, 480, 494, 506, 515, 529, 1431], "pw": [21, 90, 91, 112, 113, 1080, 1124, 1271, 1273, 1278, 1281, 1341, 1421, 1422, 1424, 1427, 1431, 1433], "pwd": 1430, "pwmdoutputfil": [1124, 1160, 1422], "pwscf": [21, 35, 411, 414, 481, 516, 562, 563, 564, 575, 1080, 1124, 1417, 1418, 1420, 1421, 1422, 1427, 1428, 1429], "pwscfoutputfil": [1080, 1422], "pwstress": 123, "pwtool": [21, 1418, 1421, 1422, 1423, 1425, 1427, 1430, 1431, 1433], "pwtools_dummy_mol_nam": 571, "pwtools_ext_make_target": 1430, "pwtools_use_jax": 163, "pwtools_venv": 1430, "pwvcmdoutputfil": [1080, 1422], "pxx": [108, 123, 1011], "pxy": [108, 123, 1011], "pxz": [108, 123, 1011], "py": [23, 67, 96, 211, 575, 625, 648, 682, 1275, 1287, 1374, 1377, 1423, 1424, 1425, 1427, 1430, 1431, 1433], "pycifrw": [567, 695, 1430], "pydo": [35, 1337, 1423, 1424, 1428, 1430], "pyi": [108, 123, 1011], "pymatgen": 541, "pypi": 1430, "pytest": 1430, "python": [21, 127, 130, 136, 144, 151, 159, 161, 408, 447, 458, 461, 642, 1270, 1290, 1326, 1341, 1342, 1351, 1364, 1417, 1418, 1422, 1426, 1427, 1428, 1430], "python3": [1421, 1427, 1430], "pythonpath": 1430, "pyvacf": 1290, "pyz": [108, 123, 1011], "pzz": [108, 123, 1011], "q": [567, 1283, 1284, 1288, 1427], "q1": 639, "q2r": [1276, 1279, 1427], "q_b": 636, "q_p": 639, "qb1": 636, "qbi": 636, "qe": [22, 573, 1124, 1276, 1279, 1287, 1288, 1427, 1428, 1431, 1433], "qe_pseudo": 1421, "qha": 1428, "qi": 639, "qmass": [19, 639], "qpoint": [1282, 1283, 1284, 1288], "qsingl": 1342, "qsub": [93, 1421, 1426], "quad": 1430, "quadrad": 677, "quadrat": [677, 1304], "quanta": 1431, "quantiti": [3, 98, 506, 1080, 1124, 1418, 1422, 1424], "quantitii": 1124, "quantum": [112, 1417, 1424], "quasi": [31, 1417, 1428, 1429], "quasiharmon": 1377, "queri": [1342, 1431], "question": 461, "quick": [34, 669, 670, 1417, 1429], "quickli": [98, 1371], "quit": [219, 277, 334, 1417], "quot": 1342, "r": [61, 62, 139, 151, 211, 269, 325, 404, 408, 409, 412, 436, 437, 447, 497, 577, 583, 594, 596, 597, 598, 622, 625, 627, 648, 681, 1294, 1301, 1304, 1307, 1314, 1315, 1316, 1318, 1319, 1321, 1323, 1339, 1377, 1379, 1382, 1386, 1388, 1420, 1421, 1429, 1433], "r_": [665, 1306, 1310], "r_x": 1419, "r_y": 1419, "r_y1": 1419, "r_y2": 1419, "r_y3": 1419, "ra": [64, 65, 66], "rad": [408, 437, 447], "radial": [25, 437, 1301, 1417, 1420, 1428, 1429, 1433], "radian": 666, "radii": [3, 1294], "radiu": [10, 408, 427, 437, 447], "radui": [437, 447], "rahman": 878, "rais": [68, 130, 131, 213, 271, 328, 384, 472, 507, 697, 728, 770, 810, 850, 880, 928, 971, 1013, 1054, 1082, 1126, 1162, 1208, 1233, 1294, 1295, 1296], "raman": 1285, "rand": [112, 157, 269, 418, 436, 452, 497, 575, 594, 595, 630, 631, 687, 688, 1260, 1328, 1339, 1419, 1422, 1423, 1430, 1433], "random": [35, 61, 62, 418, 575, 594, 677, 687, 1319, 1328, 1339, 1430, 1433], "random_struct": 1433, "randomli": 1319, "randomstructur": 1299, "randomstructurefail": [1294, 1295, 1296], "rang": [406, 577, 630, 640, 1294, 1339, 1382, 1419, 1431, 1433], "rank": [38, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 418, 1290, 1326], "rate": [1377, 1431], "raw": [577, 677], "raw_slice_get": [80, 261, 317, 374, 396, 490, 525, 719, 760, 800, 840, 871, 918, 954, 1003, 1044, 1073, 1116, 1153, 1197, 1224, 1250], "rb": [64, 65, 66], "rbf": [35, 648, 682, 1420, 1428, 1429, 1433], "rbf_": 648, "rbf_dct": 1301, "rbf_gauss": [648, 1313], "rbf_inv_multi": [648, 1313], "rbf_kwd": [1318, 1319, 1321, 1323], "rbf_multi": [648, 1313, 1433], "rbfi": [1301, 1323], "rbfn": 648, "rcell": 434, "rcell_reduc": 1427, "rcm_to_hz": 1291, "rd": 598, "re": [21, 64, 65, 66, 703, 1342, 1382, 1403, 1418, 1422], "read": [2, 12, 21, 56, 59, 74, 90, 99, 112, 137, 221, 279, 336, 390, 456, 457, 458, 459, 462, 479, 514, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 562, 563, 564, 568, 569, 576, 706, 735, 777, 817, 857, 887, 935, 961, 978, 1011, 1020, 1061, 1089, 1133, 1169, 1215, 1240, 1269, 1282, 1283, 1284, 1285, 1409, 1423, 1427, 1428, 1431, 1433], "read_": 1422, "read_cif": [1422, 1431], "read_cp2k_md": [437, 1422, 1426, 1433], "read_cp2k_md_dcd": 1422, "read_cp2k_relax": 1422, "read_cp2k_scf": 1422, "read_cpmd_md": 1422, "read_cpmd_scf": 1422, "read_data": [569, 576, 1011], "read_dcd_data": [0, 12, 457, 458], "read_dcd_data_f": 12, "read_dcd_data_from_unit": 0, "read_dcd_data_ref": 12, "read_dcd_header_from_unit": 0, "read_dyn": 1284, "read_dynmat_ir_raman": 1286, "read_h5": [549, 568], "read_lammps_md_dcd": [969, 1422], "read_lammps_md_txt": [969, 1422], "read_matdyn_freq": [575, 1427], "read_matdyn_mod": [1282, 1283], "read_pdb": 1422, "read_pickl": [21, 74, 79, 133, 221, 260, 279, 316, 336, 373, 390, 395, 479, 489, 514, 524, 706, 717, 735, 758, 777, 798, 817, 838, 857, 869, 887, 916, 935, 952, 978, 1001, 1020, 1042, 1061, 1071, 1089, 1114, 1133, 1151, 1169, 1195, 1215, 1222, 1240, 1248, 1422, 1431, 1433], "read_pw_md": [1080, 1422, 1433], "read_pw_scf": [1080, 1422, 1427, 1431, 1433], "read_pw_vcmd": 1422, "readabl": 56, "reader": 22, "readfactori": [550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564], "readlin": 138, "readm": [471, 565, 1430], "readtxt": 60, "real": [61, 62, 136, 423, 578, 581, 674, 681, 1284, 1288, 1341, 1344, 1356, 1366, 1369, 1371, 1423, 1424], "real_002ddata": 1328, "realiz": 1374, "realli": [19, 21, 437, 1011, 1275, 1339, 1377, 1379, 1418, 1430, 1433], "reason": [151, 424, 1374, 1423, 1425], "recalcul": 424, "recent": 1430, "recip": [423, 434, 1326, 1328, 1427], "recip_cel": [423, 1427], "reciproc": [112, 422, 423, 434], "recogn": 1342, "recommend": [79, 260, 316, 373, 395, 489, 524, 717, 758, 798, 838, 869, 916, 952, 1001, 1042, 1071, 1114, 1151, 1195, 1222, 1248, 1291, 1318, 1342, 1382, 1425], "reconstruct": 1269, "record": [1052, 1341, 1342, 1371], "recurs": [67, 677, 1406], "red": [595, 630], "reduc": [126, 1291, 1374, 1423, 1433], "reduct": 688, "redund": [21, 211, 219, 269, 277, 325, 334, 1422], "ref_idx": 436, "refer": [28, 61, 62, 151, 418, 435, 436, 437, 450, 458, 566, 569, 571, 576, 666, 695, 1291, 1292, 1302, 1325, 1326, 1328, 1330, 1339, 1341, 1399, 1417, 1423, 1430], "refin": 1332, "regard": 1418, "regardless": 21, "regex": [21, 35, 1052], "region": [1325, 1382, 1425], "regist": 1430, "regress": [25, 648, 1301, 1417, 1420, 1429, 1433], "regular": [648, 1301, 1304, 1318, 1321, 1420, 1429], "rel": [21, 404, 627, 1284, 1423, 1424], "relat": [61, 62, 112, 460, 1331, 1377, 1379, 1380, 1417, 1419, 1420, 1428, 1429], "relax": [436, 553, 562, 1080, 1417, 1422, 1428, 1429, 1431], "relev": [97, 1124], "reli": [6, 19, 437, 878], "remain": [268, 324, 381, 402, 688, 725, 767, 807, 847, 877, 925, 960, 1010, 1051, 1079, 1123, 1159, 1204, 1230, 1257, 1330, 1339], "remark1": [454, 455], "remark2": [454, 455], "rememb": [90, 1291, 1377], "remov": [152, 419, 471, 591, 671, 703, 1325], "rep": [577, 648], "repeat": [438, 587, 588, 589, 590, 592, 593, 599, 600, 601, 602, 603, 604, 628, 667, 677, 1296, 1319, 1423], "repeatedkfold": [1318, 1319], "repitit": 440, "replac": [3, 10, 86, 90, 91, 96, 99, 101, 106, 114, 131, 139, 159, 461, 1292], "replic": 157, "repr": [53, 144, 163, 691, 1324, 1411], "repres": [54, 55, 61, 62, 63, 86, 90, 96, 136, 161, 230, 269, 287, 344, 461, 640, 1341, 1422, 1431], "represent": [157, 409, 412, 441, 506, 680], "reproduc": 1339, "request": [422, 427], "requir": [61, 62, 67, 441, 1290, 1325, 1326, 1377, 1430], "requirements_doc": 1430, "requirements_opt": 1430, "requirements_test": 1430, "research": 571, "reset": 1406, "reshap": [58, 59, 667, 686, 1301, 1337], "resirict": 418, "resolut": [1291, 1331, 1382, 1423], "resolv": [677, 1377], "respons": 1325, "rest": [428, 1319], "restart": [105, 112, 113, 1433], "restart_file_nam": 1426, "restart_mod": 116, "restor": 60, "restrict": [437, 1425], "result": [53, 72, 96, 97, 98, 163, 217, 275, 332, 388, 408, 422, 437, 438, 447, 477, 512, 648, 661, 681, 688, 691, 701, 732, 774, 814, 854, 884, 932, 975, 1011, 1017, 1058, 1086, 1130, 1166, 1212, 1237, 1291, 1304, 1324, 1337, 1339, 1353, 1371, 1377, 1379, 1380, 1382, 1411, 1419, 1422, 1423, 1425, 1430, 1431, 1433], "ret": [456, 457, 458, 459, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 607, 672, 1339, 1378, 1379], "retriev": 21, "return": [21, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 63, 67, 68, 72, 75, 77, 80, 81, 87, 90, 95, 98, 99, 123, 125, 126, 128, 129, 130, 136, 137, 138, 141, 142, 144, 147, 148, 152, 157, 159, 160, 163, 164, 213, 217, 220, 222, 241, 242, 249, 256, 261, 262, 271, 275, 278, 280, 297, 298, 305, 312, 317, 318, 328, 332, 335, 337, 354, 355, 362, 369, 374, 375, 384, 388, 391, 393, 396, 397, 404, 406, 408, 409, 411, 412, 416, 417, 418, 420, 421, 422, 423, 424, 425, 426, 427, 429, 430, 431, 434, 435, 436, 437, 438, 440, 441, 444, 445, 446, 447, 448, 449, 450, 452, 456, 457, 458, 459, 462, 472, 477, 481, 482, 487, 490, 491, 502, 503, 506, 507, 512, 516, 517, 522, 525, 526, 533, 547, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 573, 574, 575, 576, 577, 584, 587, 588, 589, 590, 592, 593, 594, 599, 600, 601, 602, 603, 604, 607, 623, 627, 628, 629, 634, 635, 636, 639, 645, 646, 647, 648, 649, 651, 654, 655, 656, 659, 660, 661, 662, 664, 665, 669, 670, 671, 672, 673, 675, 677, 679, 681, 683, 684, 686, 687, 689, 690, 691, 697, 701, 707, 711, 715, 719, 720, 728, 732, 737, 746, 756, 760, 761, 770, 774, 779, 786, 796, 800, 801, 810, 814, 819, 826, 836, 840, 841, 850, 854, 858, 862, 867, 871, 872, 880, 884, 889, 903, 914, 918, 919, 928, 932, 937, 944, 950, 954, 955, 971, 975, 980, 989, 999, 1003, 1004, 1013, 1017, 1022, 1030, 1040, 1044, 1045, 1054, 1058, 1062, 1065, 1069, 1073, 1074, 1082, 1086, 1090, 1091, 1093, 1103, 1112, 1116, 1117, 1124, 1126, 1130, 1134, 1136, 1143, 1149, 1153, 1154, 1162, 1166, 1170, 1171, 1173, 1184, 1193, 1197, 1198, 1208, 1212, 1216, 1217, 1220, 1224, 1225, 1233, 1237, 1241, 1242, 1246, 1250, 1251, 1260, 1271, 1272, 1273, 1274, 1275, 1278, 1281, 1282, 1283, 1284, 1285, 1287, 1288, 1290, 1291, 1292, 1295, 1296, 1297, 1300, 1301, 1302, 1303, 1306, 1307, 1308, 1319, 1321, 1323, 1324, 1326, 1327, 1328, 1329, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1338, 1339, 1347, 1350, 1353, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1364, 1366, 1367, 1368, 1371, 1373, 1374, 1375, 1377, 1378, 1379, 1381, 1407, 1411, 1422, 1423, 1431], "returnd": 427, "reus": 568, "rev": [471, 1291, 1431], "revers": [19, 423, 440, 640, 688], "revis": [96, 97], "rex": 703, "rf": [64, 65, 66], "rg": [64, 65, 66], "rh": [64, 65, 66, 598, 1419], "rhombohedr": 1377, "rid": 1382, "ridg": 1425, "right": [34, 60, 595, 627, 1314, 1368, 1409, 1423, 1425], "rightarrow": [1301, 1425], "rippl": 1325, "rl": 1431, "rm": [436, 684, 1124, 1382, 1424, 1428], "rmax": [408, 435, 437, 447], "rmax_smith": 437, "rms3d": [1124, 1424], "rmsd": 1428, "rn": [64, 65, 66], "ro": [598, 1332], "rock": [427, 1427], "rocksalt": [427, 1431, 1433], "root": [96, 436, 502, 645, 646, 652, 654, 655, 657, 659, 660, 661, 669, 670, 1294], "rot": 1011, "rotat": [404, 666], "round": [422, 685], "routin": [675, 1330], "row": [61, 62, 98, 126, 211, 269, 325, 404, 409, 412, 418, 422, 434, 435, 438, 452, 679, 690, 1271, 1272, 1275, 1288, 1302, 1341, 1351, 1358, 1368, 1371, 1420, 1429], "rowid": [1351, 1358], "rp": 598, "rpdf": [447, 1426, 1430], "rsq": [1314, 1315, 1316], "rst": 23, "rstride": 577, "rsync": 97, "ru": [64, 65, 66], "rug": 1425, "rule": [21, 139, 1427], "run": [70, 72, 97, 104, 112, 151, 158, 215, 217, 273, 275, 330, 332, 386, 388, 418, 436, 437, 474, 477, 509, 512, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 677, 699, 701, 730, 732, 772, 774, 812, 814, 848, 852, 854, 878, 882, 884, 930, 932, 973, 975, 1011, 1015, 1017, 1056, 1058, 1080, 1084, 1086, 1128, 1130, 1164, 1166, 1210, 1212, 1235, 1237, 1296, 1309, 1328, 1417, 1421, 1422, 1424, 1428, 1429, 1433], "run_typ": [768, 808, 848], "rune": 151, "runtest": 1430, "runtim": 1430, "rv": 598, "rx": 598, "ry": [21, 1097, 1098, 1099, 1124, 1138, 1139, 1178, 1179, 1180, 1422], "rydberg": 1424, "s2": 427, "s4": [454, 455], "s80": [454, 455], "s_": [161, 437, 686, 687], "safe": [457, 1374], "sai": [90, 418, 424, 481, 516, 1339, 1431, 1433], "said": [130, 1418], "salt": 427, "same": [10, 34, 70, 72, 80, 89, 96, 139, 142, 150, 159, 215, 217, 250, 261, 273, 275, 306, 317, 330, 332, 363, 374, 386, 388, 396, 404, 406, 408, 410, 412, 413, 417, 427, 428, 429, 430, 431, 437, 441, 445, 447, 449, 451, 453, 454, 471, 474, 477, 490, 500, 502, 509, 512, 525, 568, 577, 579, 582, 583, 628, 644, 646, 648, 650, 653, 655, 657, 658, 660, 664, 672, 675, 681, 688, 699, 701, 719, 726, 730, 732, 760, 772, 774, 800, 812, 814, 840, 852, 854, 871, 882, 884, 918, 926, 930, 932, 954, 969, 973, 975, 1003, 1011, 1015, 1017, 1044, 1056, 1058, 1073, 1084, 1086, 1116, 1124, 1128, 1130, 1153, 1164, 1166, 1197, 1210, 1212, 1224, 1235, 1237, 1250, 1275, 1282, 1283, 1284, 1290, 1291, 1303, 1304, 1325, 1327, 1330, 1334, 1337, 1339, 1344, 1347, 1354, 1368, 1369, 1371, 1372, 1377, 1383, 1384, 1385, 1387, 1406, 1419, 1422, 1423, 1431, 1433], "sampl": [664, 1325, 1331, 1417, 1429], "sampler": 1331, "sane": 21, "save": [21, 79, 260, 316, 373, 395, 447, 489, 524, 717, 758, 798, 838, 869, 916, 952, 1001, 1042, 1071, 1114, 1151, 1195, 1222, 1248, 1406, 1433], "savefig": [583, 629], "savetxt": 157, "sb": [64, 65, 66, 625], "sc": [64, 65, 66, 625], "scalar": [325, 454, 467, 468, 497, 498, 502, 504, 537, 538, 577, 634, 635, 636, 639, 645, 646, 652, 654, 655, 659, 660, 661, 672, 683, 1301, 1308, 1319, 1321], "scale": [650, 675, 681, 878, 926, 1294, 1377, 1420, 1424, 1429, 1431], "scale_vand": 681, "scaled_posit": [211, 222, 280, 337], "scalexi": 1011, "scalexz": 1011, "scaleyz": 1011, "scatter": [577, 1301, 1377, 1433], "scell": [427, 439], "scell_mask": 438, "scf": [112, 116, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 848, 900, 941, 1080, 1124, 1417, 1418, 1422, 1427, 1429], "scheme": 1431, "schmerler": [112, 1421, 1431], "scikit": 1430, "scipi": [441, 577, 648, 649, 651, 657, 664, 665, 673, 675, 1301, 1304, 1309, 1310, 1323, 1325, 1327, 1328, 1330, 1334, 1339, 1340, 1377, 1382, 1417, 1423, 1425, 1428, 1430, 1433], "scope": 431, "score": 1425, "scratch": [93, 112, 1421], "script": [34, 96, 97, 408, 447, 1011, 1426, 1427, 1428, 1430, 1433], "script_to_execut": 34, "scriptabl": 408, "scriptfn": 408, "sct": 90, "se": [64, 65, 66], "search": [3, 462, 669, 670, 1430], "sec": 1331, "secant": 661, "second": [61, 62, 97, 437, 543, 1328], "section": [61, 62, 128, 926, 1124, 1271, 1273, 1339, 1424, 1426, 1430], "sed": [21, 139], "see": [10, 21, 23, 25, 34, 59, 61, 62, 67, 90, 96, 112, 128, 129, 211, 219, 268, 269, 277, 324, 325, 334, 381, 402, 406, 409, 418, 419, 420, 422, 423, 427, 428, 436, 437, 438, 441, 454, 457, 471, 502, 506, 557, 568, 570, 575, 577, 595, 606, 627, 645, 646, 648, 652, 654, 655, 657, 659, 660, 669, 670, 682, 689, 725, 767, 807, 847, 877, 925, 960, 969, 1010, 1011, 1051, 1079, 1080, 1123, 1124, 1159, 1204, 1230, 1257, 1269, 1275, 1291, 1294, 1301, 1318, 1323, 1325, 1328, 1339, 1341, 1343, 1344, 1351, 1368, 1369, 1371, 1373, 1377, 1417, 1421, 1422, 1423, 1424, 1425, 1427, 1430, 1431, 1433], "seem": [6, 423, 681, 848, 1011, 1374, 1418], "seen": [151, 900, 941], "sel": [408, 437, 447], "sel1": 437, "sel2": 437, "select": [408, 437, 447, 688, 1342, 1355, 1368], "self": [21, 67, 68, 72, 75, 76, 77, 81, 83, 84, 88, 89, 90, 91, 95, 97, 101, 102, 106, 109, 112, 114, 117, 213, 217, 222, 233, 241, 245, 250, 255, 256, 262, 264, 266, 268, 271, 275, 280, 289, 297, 301, 306, 311, 312, 318, 320, 322, 324, 328, 332, 337, 346, 354, 358, 363, 368, 369, 375, 377, 379, 381, 384, 388, 391, 392, 393, 397, 399, 400, 402, 465, 471, 472, 477, 480, 482, 486, 487, 491, 493, 494, 495, 499, 500, 506, 507, 512, 515, 517, 521, 522, 526, 528, 529, 530, 533, 535, 584, 644, 645, 650, 652, 653, 654, 657, 658, 659, 697, 701, 711, 714, 715, 720, 722, 723, 725, 728, 732, 746, 755, 756, 761, 763, 765, 767, 770, 774, 786, 795, 796, 801, 803, 805, 807, 810, 814, 826, 835, 836, 841, 843, 845, 847, 850, 854, 862, 866, 867, 872, 874, 875, 877, 878, 880, 884, 903, 913, 914, 919, 921, 923, 925, 926, 928, 932, 944, 949, 950, 955, 957, 958, 960, 971, 975, 989, 998, 999, 1004, 1006, 1008, 1010, 1013, 1017, 1030, 1039, 1040, 1045, 1047, 1049, 1051, 1052, 1054, 1058, 1065, 1068, 1069, 1074, 1076, 1077, 1079, 1080, 1082, 1086, 1090, 1091, 1094, 1103, 1111, 1112, 1117, 1119, 1121, 1123, 1124, 1126, 1130, 1134, 1135, 1137, 1143, 1148, 1149, 1154, 1156, 1157, 1159, 1162, 1166, 1170, 1171, 1174, 1184, 1192, 1193, 1198, 1200, 1202, 1204, 1208, 1212, 1217, 1219, 1220, 1225, 1227, 1228, 1230, 1233, 1237, 1242, 1245, 1246, 1251, 1253, 1255, 1257, 1297, 1302, 1303, 1304, 1306, 1318, 1319, 1321, 1348, 1349, 1350, 1353, 1357, 1360, 1377, 1378, 1379, 1381, 1405, 1406], "send": 1409, "sens": [409, 412, 1294, 1425], "sensibl": 1296, "sentit": 1341, "sep": [154, 155, 162, 1269], "separ": [96, 425, 1269, 1426], "seq": [142, 148, 149, 154, 162, 1260, 1319], "sequenc": [66, 86, 96, 98, 112, 125, 129, 148, 149, 152, 211, 269, 325, 404, 417, 422, 426, 427, 428, 431, 455, 572, 573, 584, 587, 588, 589, 590, 592, 593, 596, 597, 598, 599, 600, 601, 602, 603, 604, 621, 622, 624, 625, 627, 629, 640, 649, 661, 1271, 1273, 1275, 1277, 1278, 1280, 1281, 1294, 1318, 1344, 1345, 1351, 1369, 1371, 1377, 1422, 1428], "seri": [677, 1423, 1431, 1433], "serial": 1430, "seriou": 1052, "session": 1418, "set": [3, 21, 34, 67, 68, 75, 76, 80, 81, 83, 86, 90, 93, 96, 97, 102, 109, 112, 117, 141, 213, 219, 241, 255, 261, 262, 264, 271, 277, 297, 311, 317, 318, 320, 328, 334, 354, 368, 374, 375, 377, 384, 391, 392, 396, 397, 399, 409, 418, 424, 427, 429, 433, 437, 446, 447, 456, 457, 458, 471, 472, 481, 482, 486, 490, 491, 493, 494, 506, 507, 516, 517, 521, 525, 526, 528, 529, 533, 574, 575, 591, 595, 648, 657, 683, 684, 688, 697, 711, 714, 719, 720, 722, 728, 746, 755, 760, 761, 763, 770, 786, 795, 800, 801, 803, 810, 826, 835, 840, 841, 843, 848, 850, 862, 866, 871, 872, 874, 878, 880, 903, 913, 918, 919, 921, 928, 944, 949, 954, 955, 957, 971, 989, 998, 1003, 1004, 1006, 1013, 1030, 1039, 1044, 1045, 1047, 1054, 1065, 1068, 1073, 1074, 1076, 1082, 1090, 1103, 1111, 1116, 1117, 1119, 1126, 1134, 1143, 1148, 1153, 1154, 1156, 1162, 1170, 1184, 1192, 1197, 1198, 1200, 1208, 1217, 1219, 1224, 1225, 1227, 1233, 1242, 1245, 1250, 1251, 1253, 1296, 1297, 1301, 1318, 1319, 1323, 1342, 1363, 1364, 1368, 1371, 1377, 1382, 1403, 1417, 1418, 1421, 1422, 1425, 1426, 1427, 1428, 1430, 1431], "set_al": [67, 211, 269, 325, 424, 707, 737, 779, 819, 858, 889, 937, 980, 1022, 1062, 1093, 1136, 1173, 1216, 1241, 1422], "set_all_auto": [211, 269, 325], "set_attr_lst": [67, 1433], "set_bv_method": 506, "set_calcul": [104, 112], "set_fitfunc": 1377, "set_pbc": [222, 280, 337], "set_tabl": 1342, "set_titl": [629, 1325], "set_xlabel": 1301, "set_ylabel": [595, 1301], "set_ylim": 1427, "setup": [1342, 1425, 1430], "setuptool": 1430, "sever": [661, 1326, 1431, 1433], "sfft": 1328, "sfmt": 98, "sg": [64, 65, 66, 625], "sgroup": [565, 570, 1374], "sh": [1426, 1430], "shall": [112, 404, 1339], "shalleth": 140, "shallow": 1425, "shamelessli": [3, 688, 1340], "shape": [1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 56, 58, 59, 60, 61, 62, 409, 410, 411, 412, 413, 414, 418, 425, 431, 434, 435, 437, 440, 441, 447, 450, 451, 452, 453, 471, 577, 640, 667, 668, 679, 681, 684, 686, 687, 688, 878, 1124, 1269, 1288, 1290, 1301, 1302, 1303, 1310, 1335, 1337, 1339, 1377, 1419, 1423, 1427, 1431, 1433], "shape_2d_chunk": 58, "share": [112, 627], "sharei": 627, "sharex": 627, "shell": [34, 93, 97, 131, 139, 140, 151, 158, 1409], "shift": [415, 1277, 1278, 1280, 1281, 1339], "shoot": 59, "short": [1345, 1433], "shortcut": [72, 81, 217, 262, 275, 318, 332, 375, 388, 397, 459, 477, 491, 512, 526, 673, 701, 720, 732, 761, 774, 801, 814, 841, 854, 872, 884, 919, 932, 955, 975, 1004, 1017, 1045, 1058, 1074, 1086, 1117, 1130, 1154, 1166, 1198, 1212, 1225, 1237, 1251, 1299, 1357], "shorter": 152, "shorthand": 158, "should": [61, 62, 93, 125, 406, 428, 436, 438, 447, 461, 506, 547, 677, 681, 878, 1124, 1321, 1325, 1326, 1339, 1341, 1371, 1377, 1379, 1382, 1423, 1425, 1430], "shouldn": [130, 1382], "show": [575, 628, 677, 878, 1325, 1339, 1377, 1427, 1433], "show_coord": 575, "shown": [1425, 1431], "shuffl": 677, "shutil": 132, "si": [64, 65, 66, 239, 269, 295, 352, 1294, 1422, 1433], "side": [408, 422, 423, 434, 437, 447, 1291, 1294, 1423], "sigma": 1333, "sign": [56, 123, 127, 642, 1270], "signal": [35, 441, 1291, 1417, 1423, 1428, 1429], "signalsmooth": 1339, "signatur": [34, 664, 1290, 1326, 1377, 1381], "sigpip": 151, "sij": 425, "silenc": 1403, "silent": [150, 1351], "similar": [144, 269, 437, 441, 650, 677, 1304, 1327, 1334, 1425, 1433], "simp": [675, 1382], "simpl": [90, 96, 112, 161, 408, 427, 437, 574, 687, 1052, 1287, 1328, 1329, 1332, 1419, 1422, 1428, 1431, 1433], "simplest": 574, "simpli": [21, 34, 90, 135, 437, 500, 644, 653, 658, 671, 681, 1368, 1404, 1422, 1423, 1430], "simplic": 21, "simplif": 419, "simplifi": 657, "simpson": 675, "simul": [437, 1418, 1422], "sin": [125, 607, 628, 657, 677, 1301, 1325, 1329, 1339, 1423, 1433], "sinc": [21, 159, 423, 848, 1080, 1326, 1339, 1377, 1405, 1418, 1422, 1423, 1425], "singl": [86, 96, 104, 136, 269, 554, 556, 687, 688, 926, 1206, 1341, 1357, 1359, 1409, 1422, 1425, 1428, 1433], "singular": 1425, "site": [1124, 1430], "situat": 6, "size": [61, 62, 422, 423, 688, 1328, 1331, 1339, 1431], "sk": 625, "skeleton": [1327, 1334, 1340], "skip": [61, 62, 150, 427, 428, 429, 437, 568, 900, 941, 1080, 1382], "skipfreq": 1382, "sklearn": [1318, 1425, 1430], "sl": [80, 81, 261, 262, 317, 318, 374, 375, 396, 397, 490, 491, 525, 526, 686, 687, 719, 720, 760, 761, 800, 801, 840, 841, 871, 872, 918, 919, 954, 955, 1003, 1004, 1044, 1045, 1073, 1074, 1116, 1117, 1153, 1154, 1197, 1198, 1224, 1225, 1250, 1251, 1325], "slab": [440, 1433], "slash": [557, 568], "sleep": [97, 1421], "slice": [80, 81, 161, 261, 262, 317, 318, 374, 375, 396, 397, 419, 424, 437, 447, 490, 491, 525, 526, 686, 687, 719, 720, 760, 761, 800, 801, 840, 841, 871, 872, 918, 919, 954, 955, 1003, 1004, 1044, 1045, 1073, 1074, 1116, 1117, 1153, 1154, 1197, 1198, 1224, 1225, 1250, 1251, 1325, 1422, 1423, 1433], "slicefirst": 447, "slightli": [422, 1341], "slow": [21, 34, 419, 458, 1292, 1309, 1326], "slower": [438, 457, 1304], "slowest": 1430, "sm": [64, 65, 66, 625], "small": [123, 427, 437, 1294, 1304, 1325, 1326, 1339, 1374, 1382, 1395, 1425], "smaller": [422, 447, 1325, 1339], "smallest": 649, "smear": [113, 116], "smith": [435, 437, 447], "smooth": [574, 657, 1304, 1330, 1336, 1417, 1420, 1425, 1429], "smooth_color": 631, "smoothli": [630, 677], "smth": [34, 81, 262, 318, 375, 397, 418, 425, 427, 491, 526, 568, 720, 761, 801, 841, 872, 919, 955, 1004, 1045, 1052, 1074, 1117, 1154, 1198, 1225, 1251], "sn": [64, 65, 66], "snippet": 1433, "so": [12, 21, 96, 112, 222, 280, 337, 404, 437, 438, 574, 577, 681, 848, 878, 900, 941, 1080, 1269, 1287, 1319, 1325, 1326, 1331, 1337, 1339, 1382, 1403, 1418, 1419, 1423, 1425, 1426, 1430, 1431, 1433], "soft": 112, "softwar": 96, "sohn": 437, "solut": [151, 1304, 1325, 1419, 1425], "solv": [1, 419, 648, 679, 1304, 1419, 1425], "solver": [1301, 1304, 1318, 1419], "some": [2, 12, 22, 28, 90, 93, 96, 149, 159, 419, 424, 437, 471, 481, 516, 568, 640, 657, 672, 688, 878, 900, 926, 941, 1124, 1275, 1285, 1323, 1325, 1327, 1334, 1339, 1342, 1371, 1373, 1377, 1382, 1403, 1417, 1418, 1422, 1423, 1425, 1430, 1433], "some_more_cod": 1403, "some_more_data": 568, "some_valu": 672, "someinterpolatorclass": 648, "someparsingclass": 21, "someth": [61, 62, 640, 1011, 1423, 1425, 1427], "something_els": 1427, "sometim": [89, 151, 441, 900, 941, 1296, 1382], "sort": [108, 427, 428, 669, 670, 677, 1011], "sourc": [23, 34, 56, 57, 58, 59, 60, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 110, 111, 112, 118, 119, 120, 121, 122, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 211, 223, 232, 269, 277, 278, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 319, 325, 326, 337, 344, 355, 362, 382, 383, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 481, 497, 498, 499, 501, 504, 506, 511, 515, 516, 518, 519, 520, 529, 533, 535, 537, 538, 541, 542, 543, 547, 549, 557, 561, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 583, 584, 585, 586, 591, 594, 595, 605, 606, 607, 623, 626, 627, 628, 629, 630, 631, 633, 634, 635, 636, 639, 640, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 657, 661, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 695, 703, 704, 708, 709, 710, 713, 726, 768, 778, 780, 781, 782, 783, 784, 785, 787, 789, 790, 791, 793, 794, 808, 818, 823, 825, 848, 859, 860, 861, 863, 865, 878, 888, 890, 892, 893, 894, 895, 896, 897, 898, 899, 905, 908, 909, 910, 912, 926, 936, 938, 939, 940, 941, 942, 943, 945, 946, 948, 961, 962, 963, 964, 965, 966, 967, 969, 1011, 1021, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1031, 1033, 1034, 1035, 1037, 1038, 1052, 1063, 1064, 1067, 1080, 1091, 1092, 1094, 1095, 1096, 1097, 1098, 1099, 1102, 1105, 1108, 1109, 1124, 1134, 1135, 1137, 1138, 1139, 1140, 1141, 1142, 1144, 1145, 1147, 1160, 1177, 1178, 1189, 1206, 1207, 1216, 1218, 1223, 1231, 1243, 1244, 1258, 1259, 1260, 1262, 1264, 1265, 1269, 1271, 1272, 1273, 1274, 1275, 1276, 1277, 1278, 1282, 1283, 1284, 1285, 1286, 1287, 1288, 1289, 1290, 1291, 1292, 1293, 1294, 1295, 1296, 1297, 1299, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310, 1311, 1312, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1325, 1326, 1328, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1338, 1339, 1340, 1341, 1342, 1343, 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1364, 1365, 1366, 1367, 1368, 1369, 1370, 1371, 1372, 1373, 1374, 1375, 1376, 1377, 1378, 1379, 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, 1390, 1394, 1395, 1398, 1399, 1403, 1404, 1405, 1406, 1408, 1409, 1410, 1430], "sourceforg": 471, "sp": [657, 1427], "sp_point": 1427, "sp_points_1": 1427, "sp_points_2": 1427, "sp_points_frac": 1427, "sp_symbol": 1427, "space": [112, 408, 409, 422, 423, 437, 447, 627, 648, 650, 665, 681, 690, 1269, 1294, 1301, 1375, 1427, 1433], "spacegroup": [1374, 1375, 1417, 1429], "spacial": 412, "span": 404, "spatial": [665, 1275, 1309], "spawn": 1409, "spec": 1052, "speci": [236, 238, 245, 292, 294, 301, 349, 351, 358, 427], "special": [59, 159, 419, 572, 574, 575, 652, 848, 1080, 1124, 1339, 1351, 1417, 1418, 1423, 1427, 1429], "special_points_path": 575, "specialpointspath": [575, 1427], "specif": [86, 93, 575], "specifi": [53, 66, 90, 144, 157, 163, 455, 584, 596, 597, 598, 621, 622, 624, 625, 691, 1324, 1325, 1371, 1411, 1424], "spectra": 1423, "spectrum": [23, 1291, 1420, 1429], "speed": [10, 12, 1269, 1272, 1291, 1326, 1430], "spg_num": 1375, "spg_sym": 1375, "spglib": [211, 242, 298, 355, 1373, 1374, 1375, 1376, 1428, 1430], "spglib_get_spacegroup": 1433, "sphere": [437, 447, 1294], "sphinx": 1430, "spine": 595, "spine_invis": 595, "spine_loc": 595, "spl": [577, 1332], "spl_": 506, "spl_bv": [480, 506, 515], "spl_ev": [480, 506, 515], "spl_pv": [480, 506, 515], "splev": 657, "spline": [480, 497, 502, 506, 515, 577, 643, 646, 650, 655, 664, 669, 670, 673, 1332, 1377, 1381, 1428, 1433], "split": [1318, 1319, 1375, 1427], "split_idx": 1291, "splpoint": 497, "splrep": [657, 664], "splrep_kwarg": [657, 664], "spp": 575, "spread": [90, 1327, 1332, 1334, 1339], "sprinkl": 1430, "sql": [35, 86, 90, 91, 96, 1421, 1428], "sql_column": [96, 1370, 1371], "sql_matrix": 1368, "sql_record": 92, "sqlentri": [86, 87, 90, 91, 95, 96, 1343, 1369, 1371, 1421], "sqlile": 1364, "sqlite": [96, 97, 1341, 1342, 1343, 1345, 1351, 1364, 1368, 1369, 1371, 1417, 1429], "sqlite3": [1341, 1342, 1428], "sqlitedb": [1368, 1371, 1433], "sqltype": [1341, 1343, 1345, 1364, 1365, 1366, 1369, 1370, 1371], "sqltype1": [1341, 1347], "sqltype2": [1341, 1347], "sqlval": [90, 96, 1341, 1369, 1370, 1421], "sqlval_func": [1369, 1370, 1371], "sqrt": [10, 418, 1124, 1315, 1316, 1328, 1424, 1425], "squar": [420, 436, 665, 683, 684, 1301, 1304, 1305, 1309, 1314, 1315, 1316, 1318, 1319, 1321, 1325, 1419, 1425], "sr": [64, 65, 66, 625], "src": [132, 1430, 1431], "st": [93, 112, 136, 155, 269, 404, 424, 427, 429, 442, 703, 704, 1080, 1124, 1294, 1366, 1376, 1421, 1422, 1427, 1431, 1433], "st1": [426, 1372, 1422], "st2": [426, 1372, 1422], "st_first": [1422, 1433], "st_last": [1422, 1433], "st_load": 1422, "stabil": [1304, 1420, 1429], "stabl": [436, 1304, 1382, 1419], "stack": 628, "stackoverflow": [461, 595], "stand": 627, "standard": [21, 159, 1124, 1343], "standardscal": 1425, "start": [97, 132, 239, 295, 352, 408, 436, 437, 447, 557, 661, 677, 1080, 1135, 1137, 1337, 1345, 1351, 1377, 1379, 1403, 1409, 1417, 1425, 1429], "startup": 1433, "state": [19, 23, 471, 1052, 1382, 1423, 1424, 1428], "statement": [130, 1343, 1355], "statist": 1403, "std": [1309, 1327, 1333, 1334, 1339], "stderr": [131, 151, 506], "stdout": [151, 506], "step": [61, 62, 108, 408, 418, 436, 437, 447, 566, 677, 878, 1011, 1080, 1109, 1190, 1291, 1329, 1331, 1418, 1419, 1422, 1426, 1431, 1433], "stick": [409, 675], "stiff": [1304, 1425], "still": [21, 149, 1382, 1423, 1431], "stolen": [3, 688, 1325, 1327, 1334, 1340], "stop": [1325, 1351, 1403], "stopband": 1325, "storag": [21, 1405, 1406], "store": [21, 59, 61, 62, 89, 97, 572, 969, 1342, 1379, 1403, 1417, 1418, 1422, 1430, 1431], "str": [34, 53, 77, 86, 90, 91, 93, 96, 97, 98, 112, 126, 130, 132, 139, 144, 154, 157, 158, 159, 162, 163, 256, 312, 369, 393, 408, 427, 447, 456, 457, 458, 459, 471, 481, 487, 494, 506, 516, 522, 529, 547, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 562, 563, 564, 565, 567, 568, 569, 570, 571, 576, 583, 627, 629, 648, 691, 715, 756, 796, 836, 867, 914, 950, 999, 1011, 1040, 1069, 1112, 1149, 1193, 1220, 1246, 1271, 1282, 1283, 1284, 1285, 1288, 1301, 1310, 1323, 1324, 1325, 1339, 1341, 1342, 1343, 1344, 1345, 1347, 1351, 1356, 1358, 1361, 1363, 1364, 1366, 1368, 1369, 1371, 1375, 1377, 1381, 1409, 1411], "str_arr": [1421, 1427], "strace": 151, "straight": [1275, 1431], "straightforward": [1326, 1328], "strain": 471, "stream": 677, "stress": [107, 115, 123, 211, 219, 243, 269, 277, 299, 325, 334, 356, 444, 448, 848, 878, 886, 905, 926, 934, 1011, 1080, 1088, 1105, 1132, 1145, 1168, 1186, 1269, 1422, 1426, 1431, 1433], "strict": [53, 163, 691, 1052, 1324, 1411], "strictli": 661, "stride": [61, 62], "string": [22, 36, 37, 38, 53, 54, 55, 63, 67, 84, 90, 96, 98, 112, 130, 136, 140, 144, 149, 157, 159, 160, 161, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 266, 269, 322, 325, 379, 400, 408, 427, 428, 432, 437, 447, 463, 464, 495, 506, 530, 532, 534, 544, 545, 546, 548, 572, 576, 584, 585, 632, 637, 638, 678, 680, 691, 692, 693, 694, 723, 765, 805, 845, 875, 923, 958, 968, 1008, 1049, 1077, 1121, 1157, 1202, 1205, 1228, 1255, 1261, 1263, 1266, 1267, 1268, 1269, 1271, 1272, 1273, 1274, 1278, 1281, 1294, 1298, 1324, 1325, 1328, 1331, 1337, 1341, 1342, 1360, 1364, 1366, 1368, 1371, 1375, 1377, 1391, 1392, 1393, 1396, 1397, 1400, 1401, 1402, 1405, 1406, 1411, 1425, 1433], "stringio": 147, "strong": 1426, "stronger": 1425, "strongli": 1323, "struck": 1422, "struct": [34, 108, 112, 222, 280, 337, 404, 406, 420, 427, 428, 429, 547, 565, 567, 569, 570, 576, 1011, 1080, 1294, 1296, 1374, 1375, 1409, 1431, 1433], "struct1": 1409, "struct2": 1409, "struct2atom": 1433, "struct_or_traj": 547, "structfil": [34, 108, 1409], "structur": [10, 15, 21, 34, 104, 112, 211, 222, 230, 249, 325, 337, 344, 362, 382, 404, 406, 407, 417, 420, 424, 426, 427, 429, 430, 436, 437, 438, 442, 443, 447, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 565, 566, 567, 569, 570, 571, 575, 576, 1011, 1080, 1124, 1206, 1294, 1296, 1372, 1373, 1374, 1375, 1376, 1382, 1409, 1417, 1418, 1420, 1421, 1428, 1429, 1430, 1431], "structurefilepars": [21, 695, 848, 926, 1052, 1124, 1231], "studi": [90, 96, 98, 99, 1341, 1417, 1418, 1420, 1428, 1429, 1431, 1433], "study_nam": [96, 1421], "stuff": [89, 93, 1011, 1294, 1426, 1427], "stumbl": 1418, "style": [56, 57, 60, 61, 62, 90, 456, 458, 571, 1275], "sub": 684, "subclass": [89, 164, 878, 1300, 1407], "subcmd": [93, 97, 1421], "subdir": 97, "sublist": [96, 1371], "sublti": 438, "submit": 93, "submitt": 97, "subplot": [595, 623, 627], "subplothost": [623, 627], "subprocess": [151, 158], "subsequ": [97, 1124, 1426], "subset": 1368, "subtract": 1338, "success": 1431, "sudo": 1430, "suffici": [423, 1291, 1331], "suffix": [1287, 1409], "suggest": [1425, 1426], "suit": 1428, "sum": [683, 684, 1124, 1294, 1305, 1309, 1319, 1321, 1328, 1339, 1423], "sum_": [1310, 1425], "sum_ij": [1124, 1424], "sum_j": 1425, "sum_k": 665, "sumfor": [1124, 1424], "summari": [435, 437, 1403, 1424], "super": [89, 1428, 1433], "supercel": [438, 439, 440, 1418, 1431], "suppli": [1418, 1430, 1431], "support": [89, 136, 158, 1290, 1339, 1341, 1422, 1431, 1433], "suppos": [67, 90, 269, 411, 414, 568, 679, 1325], "sure": [19, 212, 222, 270, 280, 327, 337, 383, 424, 506, 696, 727, 769, 809, 849, 879, 927, 970, 1012, 1053, 1081, 1125, 1161, 1207, 1232, 1325, 1418], "surfac": [648, 1433], "surround": [54, 55, 63], "svib": [1378, 1382, 1388, 1431], "swapax": 418, "switch": [438, 494, 529, 1363, 1419, 1425], "sy": [53, 163, 404, 412, 418, 437, 625, 691, 1324, 1411], "sym": [1327, 1334, 1340], "symbol": [3, 112, 211, 233, 238, 239, 244, 245, 250, 253, 254, 269, 289, 294, 295, 300, 301, 306, 309, 310, 325, 346, 351, 352, 357, 358, 363, 366, 367, 417, 427, 428, 436, 437, 438, 565, 569, 572, 575, 1011, 1124, 1271, 1272, 1273, 1294, 1375, 1421, 1422, 1427], "symbols_uniqu": [239, 245, 269, 295, 301, 352, 358], "symbolsbasenam": 569, "symbolsfilenam": 1011, "symlink": [132, 1421], "symmetr": [123, 1326, 1423, 1431], "symmetri": [35, 211, 427, 565, 570, 1275, 1428, 1431, 1433], "symprec": [1374, 1375, 1433], "sync": 93, "syntax": [89, 159, 437, 1342, 1418, 1424], "system": [19, 34, 116, 418, 878, 926, 1304, 1409, 1419, 1421, 1425, 1427, 1430], "system_chang": [111, 119], "t": [21, 61, 62, 89, 97, 112, 130, 149, 211, 222, 269, 280, 325, 337, 404, 409, 412, 418, 427, 436, 437, 452, 457, 574, 575, 577, 627, 648, 677, 681, 682, 848, 1052, 1124, 1275, 1290, 1291, 1325, 1326, 1329, 1331, 1339, 1368, 1377, 1378, 1379, 1380, 1382, 1395, 1399, 1403, 1405, 1419, 1423, 1425, 1430, 1431, 1433], "ta": [64, 65, 66], "tab": [595, 1433], "tabl": [10, 96, 98, 233, 289, 346, 1341, 1342, 1343, 1344, 1345, 1347, 1351, 1356, 1358, 1359, 1360, 1361, 1362, 1363, 1364, 1368, 1371], "tag": [1403, 1405, 1406], "tail": [21, 1339], "take": [34, 60, 90, 161, 429, 436, 437, 687, 1294, 1433], "taken": [10, 418, 584, 1275, 1325, 1371], "talk": 1342, "tarantola": 471, "target": [58, 90, 91, 97, 422, 566, 571, 648, 1294, 1417, 1430, 1431], "task": 1433, "tau": 1124, "tb": [64, 65, 66, 533, 1297], "tc": [64, 65, 66], "tchain": 1011, "tck": 657, "tcl": [34, 408, 1433], "tcpu": 878, "te": [64, 65, 66], "teatro": 23, "tee": 113, "tell": [159, 1433], "temp": [34, 99, 108, 408, 634, 635, 636, 639, 1011, 1382, 1386, 1388, 1389, 1390, 1399, 1409], "temperatur": [211, 269, 325, 424, 634, 635, 636, 639, 1011, 1108, 1189, 1377, 1382, 1399, 1422, 1426, 1433], "templ": [86, 90, 91, 93, 1421], "templ_dir": 90, "templ_txt": 1427, "templat": [86, 88, 90, 91, 93, 96, 97, 99, 1418, 1421, 1428], "template_replac": [90, 139, 1427], "temporari": 21, "tempp": 878, "tensor": [123, 211, 243, 269, 299, 325, 356, 444, 445, 448, 449, 848, 878, 905, 926, 1105, 1145, 1186, 1422, 1431], "tensor2voigt": 445, "term": [409, 679, 1424, 1425], "tersoff": [104, 105, 1011], "tesst": 1431, "test": [12, 21, 23, 67, 79, 96, 130, 149, 222, 260, 280, 316, 337, 373, 395, 418, 437, 489, 524, 648, 681, 717, 758, 768, 798, 808, 838, 848, 869, 878, 916, 952, 1001, 1011, 1042, 1071, 1080, 1114, 1124, 1151, 1195, 1222, 1248, 1275, 1318, 1319, 1328, 1339, 1342, 1356, 1372, 1377, 1382, 1409, 1417, 1418, 1421, 1423, 1424, 1428, 1429, 1431], "test_gibb": [1377, 1431], "test_gibbs_1d": 1431, "test_gibbs_2d": 1431, "test_gibbs_3d_fake_1d": 1431, "test_ibrav": 1275, "test_interpol": 648, "test_parameter_studi": 96, "test_pdo": [1423, 1424], "test_pdos_coord_tran": 1424, "test_qha": 1431, "text": [2, 34, 56, 59, 90, 159, 551, 553, 559, 726, 969, 1011, 1269, 1284, 1285, 1341, 1342, 1344, 1356, 1371, 1409, 1425], "textblock": 1285, "textbook": [28, 1423], "texttt": [665, 1301, 1302, 1310, 1431], "tfreq": 23, "th": [10, 64, 65, 66, 664, 1419], "than": [14, 89, 135, 422, 437, 441, 657, 1124, 1304, 1309, 1377, 1409, 1423, 1425], "thank": 848, "thart": [21, 753, 793, 833, 910, 1422], "thei": [67, 136, 151, 219, 277, 334, 417, 427, 437, 462, 636, 681, 1124, 1275, 1326, 1371, 1373, 1377, 1418, 1422, 1423], "them": [159, 574, 583, 661, 681, 1382, 1424, 1430], "theo": 1421, "theorem": [1326, 1423], "theori": [21, 23, 1418, 1420, 1429], "therefor": [159, 640, 679, 688, 848, 1080, 1275, 1291, 1374, 1377, 1423, 1424, 1425, 1430, 1431], "thermal": [31, 1377, 1379, 1399, 1431], "thermo": [35, 1011, 1428, 1431], "thermo_modifi": 1011, "thermo_styl": 1011, "thermochemistri": 1431, "thermodynam": [1377, 1382, 1428], "thermostat": [19, 636, 639, 1426], "theta": [666, 1399], "thi": [0, 1, 12, 19, 21, 23, 34, 54, 55, 59, 61, 62, 63, 67, 80, 84, 86, 89, 90, 93, 96, 97, 99, 112, 127, 130, 139, 151, 157, 159, 230, 249, 261, 266, 269, 287, 305, 317, 322, 344, 362, 374, 379, 396, 400, 408, 409, 412, 418, 419, 423, 427, 431, 437, 447, 462, 471, 481, 490, 495, 502, 516, 525, 530, 565, 568, 574, 575, 577, 583, 584, 585, 595, 627, 642, 646, 648, 650, 655, 657, 660, 665, 667, 669, 670, 671, 672, 673, 675, 677, 683, 684, 688, 719, 723, 760, 765, 800, 805, 840, 845, 871, 875, 878, 918, 923, 954, 958, 1003, 1008, 1044, 1049, 1052, 1073, 1077, 1080, 1116, 1121, 1124, 1153, 1157, 1197, 1202, 1224, 1228, 1250, 1255, 1269, 1270, 1271, 1275, 1283, 1285, 1288, 1290, 1291, 1292, 1294, 1296, 1304, 1318, 1323, 1325, 1326, 1327, 1328, 1330, 1334, 1339, 1341, 1342, 1345, 1348, 1349, 1350, 1371, 1373, 1377, 1379, 1382, 1395, 1409, 1418, 1419, 1422, 1423, 1424, 1425, 1427, 1430, 1431, 1433], "thin": 1428, "thing": [151, 408, 462, 585, 627, 1124, 1342, 1374, 1422, 1430, 1433], "think": [3, 471, 574, 636, 1275], "those": [431, 1377, 1380, 1422, 1430], "though": [437, 1422, 1425], "thought": 1339, "thread": [1290, 1418, 1430], "three": [96, 506], "threshold": [404, 657, 672, 1382], "through": 1425, "thru": [462, 480, 506, 515, 669, 670, 1304, 1309], "thu": [21, 34, 96, 112, 422, 679, 1327, 1334, 1342, 1377, 1422, 1431], "thy": 140, "thz": [10, 1285, 1288], "ti": [64, 65, 66], "tick": 627, "tightli": 1294, "tildeslei": 437, "tim": 23, "time": [10, 12, 61, 62, 97, 159, 249, 269, 305, 325, 362, 410, 413, 418, 419, 431, 436, 437, 438, 446, 447, 451, 453, 628, 667, 677, 684, 1109, 1124, 1190, 1272, 1291, 1301, 1319, 1325, 1326, 1329, 1331, 1374, 1375, 1403, 1405, 1406, 1418, 1419, 1422, 1423, 1425, 1426, 1430, 1433], "time_ar_dict": [1405, 1406], "time_step": 404, "time_unit": 1331, "timeaxi": [325, 419, 424, 436, 441, 1124], "timecon": 1426, "timeit": [12, 1309], "timeout": 1430, "timer": 35, "times2": 1433, "times3": 1433, "timestep": [0, 36, 40, 211, 251, 269, 307, 325, 364, 441, 446, 454, 455, 910, 1011, 1291], "timimg": 1403, "timteatro": 23, "titl": [677, 1339, 1423], "tl": [6, 64, 65, 66, 1431], "tm": [64, 65, 66], "tmask": 437, "tmp": [34, 408, 447, 926, 1368, 1409], "tmpdir": [34, 408, 447, 1409], "tobia": 19, "todo": [61, 62], "togeth": [96, 125, 657, 1011, 1275], "tol": 648, "tonext": [1291, 1337], "tonext_min": 1337, "too": [67, 123, 151, 481, 516, 687, 878, 1124, 1374, 1377, 1430], "tool": [2, 21, 22, 28, 31, 112, 506, 565, 570, 1374, 1417, 1418, 1419, 1421, 1428, 1430], "toolchain": [1276, 1279], "top": [56, 96, 585, 595, 627, 1124, 1419], "topic": [1417, 1429, 1431], "total": [19, 61, 62, 211, 229, 269, 286, 325, 343, 497, 985, 1027, 1124, 1138, 1319, 1377, 1420, 1422, 1429, 1431], "toteng": [985, 1027], "toward": [54, 55, 63], "tprnfor": 116, "tr": [34, 404, 416, 417, 424, 426, 436, 441, 1080, 1291, 1422, 1426, 1433], "tr1": [1422, 1426], "tr2": [1422, 1426], "tr_md": 1080, "tr_middl": [1422, 1433], "tr_new": 1422, "tr_smooth": 1433, "trace": 1433, "trail": 565, "train": [1301, 1306, 1319, 1425], "traj": [416, 421, 424, 436, 437, 439, 441, 447, 547, 1433], "trajectori": [15, 21, 23, 34, 211, 219, 249, 269, 277, 305, 404, 408, 410, 416, 417, 418, 419, 421, 424, 426, 430, 431, 436, 437, 438, 439, 441, 443, 445, 446, 447, 449, 451, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 566, 571, 878, 969, 1124, 1269, 1291, 1339, 1409, 1417, 1420, 1423, 1424, 1426, 1428, 1429], "trajectoryfilepars": [768, 878, 1011, 1080], "trajfn": 408, "transform": [407, 418, 419, 442, 443, 577, 640, 1331, 1369, 1373, 1376, 1417, 1420, 1422, 1424, 1428, 1429], "transit": [630, 1325], "translat": 1419, "transpar": [585, 681], "transpos": [61, 62, 577, 673, 1419], "trapezoid": 1382, "trapz": [675, 1382], "trc": 416, "treat": 1431, "tri": [1011, 1294, 1430], "trick": [34, 1272, 1423], "triclin": [1377, 1431], "tripl": [406, 452], "trivial": 418, "trnew": 404, "troubl": [437, 675], "true": [12, 34, 60, 72, 74, 77, 96, 97, 98, 104, 112, 116, 125, 130, 141, 151, 158, 159, 160, 164, 217, 221, 222, 256, 258, 269, 275, 279, 280, 312, 314, 332, 336, 337, 369, 372, 388, 390, 393, 406, 415, 416, 418, 419, 420, 422, 423, 427, 428, 430, 431, 437, 446, 447, 456, 457, 458, 477, 479, 487, 503, 506, 512, 514, 522, 647, 656, 657, 662, 666, 672, 675, 681, 687, 688, 690, 701, 706, 707, 715, 732, 735, 737, 756, 774, 777, 779, 796, 814, 817, 819, 836, 854, 857, 858, 867, 884, 887, 889, 914, 932, 935, 937, 950, 975, 978, 980, 999, 1017, 1020, 1022, 1040, 1058, 1061, 1062, 1069, 1080, 1086, 1089, 1093, 1112, 1124, 1130, 1133, 1136, 1149, 1166, 1169, 1173, 1193, 1212, 1215, 1216, 1220, 1237, 1240, 1241, 1246, 1278, 1281, 1287, 1291, 1293, 1296, 1300, 1301, 1325, 1326, 1327, 1331, 1334, 1337, 1338, 1339, 1345, 1351, 1368, 1371, 1377, 1378, 1379, 1380, 1382, 1407, 1409, 1423, 1424, 1427, 1431, 1433], "truncat": [54, 55, 63, 1342, 1426], "trust": 457, "try": [21, 147, 661, 677, 682, 1011, 1291, 1294, 1304, 1368, 1422], "try_set_attr": [21, 67, 70, 72, 75, 80, 81, 215, 217, 241, 261, 262, 273, 275, 297, 317, 318, 330, 332, 354, 374, 375, 386, 388, 391, 396, 397, 474, 477, 482, 490, 491, 509, 512, 517, 525, 526, 699, 701, 711, 719, 720, 730, 732, 746, 760, 761, 772, 774, 786, 800, 801, 812, 814, 826, 840, 841, 852, 854, 862, 871, 872, 882, 884, 903, 918, 919, 930, 932, 944, 954, 955, 973, 975, 989, 1003, 1004, 1015, 1017, 1030, 1044, 1045, 1056, 1058, 1065, 1073, 1074, 1084, 1086, 1103, 1116, 1117, 1128, 1130, 1143, 1153, 1154, 1164, 1166, 1184, 1197, 1198, 1210, 1212, 1217, 1224, 1225, 1235, 1237, 1242, 1250, 1251], "tryd": [10, 21, 1109, 1190, 1422], "tstress": 116, "tt": 1403, "tu": 418, "tuckerman": 19, "tune": [97, 1304, 1377, 1425], "tup": 1373, "tupl": [58, 59, 61, 62, 149, 242, 298, 355, 438, 575, 584, 648, 686, 687, 688, 1269, 1325, 1347, 1357, 1373, 1376], "turn": 1422, "tutor": 151, "tutori": [1417, 1429], "tweak": 575, "twice": [457, 1427], "twini": 627, "twinx": [437, 583, 584, 585, 594, 595, 627], "two": [61, 62, 64, 65, 96, 164, 404, 408, 419, 426, 437, 447, 481, 516, 573, 677, 1291, 1300, 1313, 1337, 1339, 1372, 1407, 1422, 1423, 1425, 1427, 1431], "txt": [56, 59, 60, 79, 90, 139, 140, 159, 260, 316, 373, 395, 462, 489, 524, 717, 758, 798, 838, 869, 916, 952, 1001, 1042, 1071, 1114, 1151, 1195, 1222, 1248, 1258, 1259, 1262, 1264, 1265, 1269, 1427, 1430], "tye": 1371, "typat": 269, "type": [34, 37, 41, 42, 43, 44, 45, 46, 48, 49, 50, 51, 52, 56, 58, 59, 61, 62, 108, 112, 123, 125, 126, 127, 128, 136, 141, 152, 157, 159, 160, 239, 250, 295, 306, 352, 363, 404, 406, 408, 409, 411, 412, 417, 418, 421, 423, 424, 425, 426, 427, 431, 434, 435, 436, 438, 440, 441, 444, 445, 448, 449, 450, 452, 454, 456, 457, 458, 459, 471, 502, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 565, 574, 576, 607, 623, 627, 628, 629, 634, 635, 640, 642, 645, 646, 648, 649, 651, 654, 655, 659, 660, 661, 665, 669, 670, 671, 675, 677, 679, 681, 683, 684, 686, 687, 689, 690, 878, 1011, 1270, 1271, 1272, 1273, 1275, 1282, 1290, 1292, 1295, 1296, 1302, 1303, 1306, 1308, 1319, 1323, 1326, 1327, 1328, 1329, 1333, 1334, 1337, 1338, 1339, 1341, 1342, 1343, 1345, 1353, 1364, 1366, 1368, 1369, 1371, 1372, 1373, 1374, 1377, 1378, 1379, 1417, 1426, 1427], "typic": [454, 634, 635, 636, 639, 1380, 1426], "u": [64, 65, 66, 1124, 1272, 1291, 1342, 1368, 1377, 1424], "u32": 1272, "ubuntu": 1430, "ufunc": 125, "uiuc": 571, "unchang": [61, 62, 1374, 1426], "uncov": 595, "und": 437, "undefin": 1422, "under": [1291, 1424], "underli": [595, 661], "underscor": 67, "understand": 1423, "unexpect": 661, "unicod": 1341, "unifi": 1422, "uniformli": 690, "uniqu": [96, 126, 245, 254, 301, 310, 358, 367, 409, 412, 577, 640, 878], "unit": [19, 21, 123, 211, 212, 233, 263, 268, 269, 270, 289, 319, 324, 325, 327, 346, 376, 381, 382, 383, 402, 409, 411, 412, 414, 422, 423, 427, 434, 437, 450, 452, 460, 471, 547, 550, 551, 552, 553, 554, 555, 556, 558, 559, 560, 562, 563, 564, 565, 567, 627, 696, 725, 727, 767, 769, 807, 809, 847, 849, 877, 879, 925, 927, 960, 970, 1010, 1011, 1012, 1051, 1053, 1079, 1080, 1081, 1091, 1123, 1124, 1125, 1135, 1159, 1161, 1171, 1204, 1206, 1207, 1230, 1231, 1232, 1257, 1275, 1287, 1291, 1325, 1331, 1377, 1417, 1420, 1427, 1428, 1429, 1430, 1431], "unitcel": 969, "uniti": [650, 681, 683, 684, 1338], "unitshandl": [21, 211, 269, 325, 1206], "univariatesplin": 657, "univers": 471, "unix": 21, "unless": [61, 62, 672, 1124], "unlik": 1417, "unnorm": 1124, "unord": [648, 1425], "unpleas": [878, 1419], "unstabl": [1304, 1382], "unstructur": 1377, "unt": [0, 37, 39, 40], "untest": 1431, "until": [132, 587, 588, 589, 590, 592, 593, 599, 600, 601, 602, 603, 604, 1288, 1337], "unus": [219, 277, 334], "unwrap": 1011, "up": [90, 139, 158, 408, 435, 437, 441, 447, 657, 677, 681, 685, 969, 1124, 1291, 1304, 1325, 1330, 1331, 1337, 1339, 1364, 1368, 1418, 1421, 1423, 1428, 1430, 1433], "updat": [102, 109, 117, 222, 268, 280, 324, 337, 381, 402, 568, 725, 767, 807, 847, 877, 925, 960, 1010, 1051, 1079, 1123, 1159, 1204, 1230, 1257, 1301, 1304, 1342, 1381, 1433], "upf": [112, 1273], "upload": 112, "upper": 90, "uppercas": [577, 1366], "upto": 1337, "us": [3, 6, 12, 14, 19, 23, 27, 34, 53, 59, 60, 61, 62, 67, 74, 79, 86, 90, 93, 97, 98, 99, 101, 106, 112, 114, 123, 125, 130, 133, 136, 150, 151, 158, 159, 163, 211, 221, 222, 239, 260, 269, 279, 280, 295, 316, 336, 337, 352, 373, 390, 395, 404, 406, 408, 417, 418, 421, 422, 426, 427, 437, 438, 439, 446, 447, 456, 457, 458, 459, 471, 479, 489, 500, 506, 514, 524, 565, 567, 568, 572, 575, 577, 583, 584, 585, 595, 627, 629, 631, 636, 644, 648, 649, 651, 652, 653, 657, 658, 661, 664, 666, 667, 672, 673, 675, 677, 681, 682, 683, 684, 691, 695, 706, 717, 735, 758, 777, 798, 817, 838, 848, 857, 869, 887, 900, 916, 926, 935, 941, 952, 961, 978, 1001, 1011, 1020, 1042, 1052, 1061, 1071, 1080, 1089, 1114, 1124, 1133, 1151, 1169, 1195, 1215, 1222, 1240, 1248, 1269, 1272, 1275, 1276, 1277, 1279, 1280, 1283, 1287, 1290, 1291, 1292, 1294, 1296, 1301, 1304, 1306, 1318, 1319, 1321, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1332, 1334, 1336, 1337, 1339, 1341, 1342, 1343, 1353, 1357, 1364, 1368, 1371, 1372, 1374, 1375, 1377, 1378, 1379, 1380, 1382, 1403, 1409, 1411, 1417, 1418, 1419, 1420, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431], "usag": [575, 1272, 1430], "use_alat": [1080, 1090, 1124, 1134, 1170], "use_m": [1, 51, 1290], "useful": 67, "useless": [657, 1124], "usepbc": [408, 447], "user": [130, 437, 878, 1418], "usr": [1421, 1427, 1430], "usual": [19, 86, 96, 219, 277, 334, 418, 422, 425, 431, 446, 481, 516, 574, 634, 635, 636, 639, 684, 985, 1027, 1124, 1287, 1288, 1291, 1339, 1377, 1382, 1399, 1409, 1433], "utf8": 1341, "util": [28, 1431], "uub": [64, 65, 66], "uuh": [64, 65, 66], "uuo": [64, 65, 66], "uup": [64, 65, 66], "uuq": [64, 65, 66], "uut": [64, 65, 66], "v": [1, 41, 51, 52, 64, 65, 66, 418, 434, 446, 465, 467, 471, 480, 481, 497, 498, 499, 504, 506, 515, 516, 537, 541, 542, 543, 624, 1290, 1313, 1326, 1369, 1370, 1377, 1380, 1420, 1423, 1429, 1431], "v0": [404, 467, 468, 471, 481, 497, 501, 506, 516, 537, 538], "v1": [404, 688], "v2": [404, 768], "v_": 1419, "v_i": [418, 1419], "v_x": [418, 1419], "v_x0": 1419, "v_x1": 1419, "v_xn": 1419, "v_y": [418, 1419], "va": [409, 878], "vacf": [1, 1290, 1291, 1292, 1293, 1423, 1430], "vacf_pdo": [1290, 1291, 1423], "vair": 1341, "val": [128, 159, 160, 161, 650, 1301, 1308, 1341, 1364, 1369, 1370], "valid": [54, 55, 63, 80, 261, 317, 374, 396, 406, 490, 525, 719, 760, 800, 840, 871, 918, 954, 1003, 1044, 1073, 1116, 1153, 1197, 1224, 1250, 1318, 1319, 1323, 1377, 1382, 1425], "vallei": 1425, "valu": [21, 64, 65, 89, 90, 91, 98, 102, 109, 117, 125, 136, 141, 144, 157, 159, 160, 406, 408, 422, 426, 427, 431, 437, 446, 447, 497, 547, 568, 577, 628, 640, 648, 649, 650, 651, 672, 676, 681, 1124, 1271, 1291, 1294, 1301, 1304, 1305, 1306, 1313, 1318, 1319, 1323, 1325, 1332, 1339, 1341, 1342, 1345, 1351, 1368, 1369, 1371, 1373, 1374, 1377, 1379, 1382, 1406, 1424, 1425, 1431], "van": 1124, "vandermond": [679, 681, 689], "var": [144, 1430], "vari": [96, 98, 125, 1377, 1421], "variabl": [418, 419, 555, 878, 900, 941, 1124, 1291, 1424, 1431, 1433], "variant": 1339, "variat": [1326, 1377], "variou": [1373, 1433], "vasp": 1431, "vavcf": 1291, "vb": [409, 625], "vc": [409, 562, 564, 625, 1080, 1160, 1431], "vc_relax": 1433, "vdw": 1124, "vec": [404, 419, 435, 574, 1282, 1283, 1284, 1288, 1419], "vect_loop": 1, "vector": [123, 211, 269, 325, 404, 405, 409, 412, 418, 419, 420, 422, 425, 434, 435, 452, 565, 573, 574, 674, 690, 1124, 1275, 1284, 1288, 1290, 1301, 1302, 1304, 1326, 1419, 1424], "vel": [1289, 1290, 1291, 1292, 1293, 1426], "veloc": [23, 211, 251, 269, 307, 325, 364, 424, 446, 1011, 1290, 1291, 1292, 1417, 1420, 1422, 1428, 1429], "velocity_traj": 1423, "venv": 1430, "verbos": [35, 408, 447, 506, 1124, 1294, 1382], "veri": [34, 67, 269, 441, 481, 516, 675, 681, 848, 878, 1052, 1291, 1304, 1339, 1377, 1382, 1418, 1425, 1431, 1433], "verifi": [269, 1422], "verlagsgesellschaft": 437, "versa": 422, "version": [0, 1, 21, 61, 62, 419, 456, 457, 458, 577, 631, 640, 652, 673, 1124, 1272, 1326, 1330, 1425, 1430, 1431], "vertic": 574, "very_big_fil": 151, "very_small_fil": 416, "vg": 625, "via": [64, 65, 1313, 1430, 1431], "vibrat": [23, 1382, 1423], "vibrational_entropi": 1387, "vibrational_free_energi": 1385, "vibrational_internal_energi": 1384, "vice": 422, "view": [61, 62, 98, 578, 581, 687, 1371, 1417, 1422, 1429], "view_avogadro": [429, 1433], "view_jmol": 1433, "view_vmd_axsf": [34, 1430, 1433], "view_vmd_xyz": [34, 1430], "view_xcrysden": 1433, "viewdoc": [435, 437], "vieweg": 437, "viewer": [1409, 1412, 1413, 1414, 1415, 1416, 1428, 1433], "viewfactori": [34, 1412, 1413, 1414, 1415, 1416], "vim": 1426, "vinet": [14, 465, 471, 497, 541, 542, 543, 1428], "virtual": 1430, "virtualenvwrapp": 1430, "visual": [35, 429, 1418, 1428, 1433], "vk": 625, "vm": 625, "vmap": [1302, 1303], "vmd": [408, 437, 441, 447, 571, 1428, 1430, 1433], "vmd_measure_gofr": 437, "vmd_script": 1433, "vmin": 681, "voigt": [123, 444, 445, 448, 449], "voigt2tensor": 449, "vol": [108, 1011], "vol_range_scal": 1294, "vol_scal": 1294, "volfunc_ax": [1377, 1431], "volum": [211, 269, 325, 434, 437, 450, 452, 465, 467, 468, 480, 481, 497, 498, 504, 506, 515, 516, 535, 537, 538, 1011, 1124, 1294, 1377, 1433], "volume_cc": [451, 1377, 1431], "volume_cel": 453, "vorlesungen": 418, "vr": 625, "vscale": 681, "vv": [497, 506], "vx": 1011, "vy": [625, 1011], "vz": 1011, "w": [56, 61, 62, 64, 65, 66, 96, 97, 150, 211, 269, 325, 404, 409, 410, 412, 435, 436, 437, 451, 568, 627, 634, 648, 649, 681, 900, 941, 1124, 1273, 1301, 1304, 1321, 1325, 1326, 1327, 1334, 1368, 1379, 1421, 1423, 1425, 1431], "w_g": 635, "w_j": 1425, "wa": [21, 98, 640, 1269, 1290, 1330, 1382, 1422, 1430], "waal": 1124, "wai": [61, 62, 96, 404, 454, 575, 969, 1011, 1272, 1418, 1422, 1423, 1431], "wait": [34, 158, 1409], "waitfor": 34, "walk": 457, "want": [34, 89, 90, 222, 280, 337, 418, 427, 437, 568, 575, 585, 1052, 1124, 1275, 1290, 1296, 1368, 1419, 1422, 1425, 1430, 1433], "warn": [159, 1382], "warn_mult_found": 159, "warn_not_found": 159, "watch": 1011, "wave": [926, 1418], "wavefunct": [878, 926], "wc": 21, "we": [6, 19, 21, 27, 67, 90, 98, 112, 149, 150, 157, 211, 222, 269, 280, 325, 337, 406, 409, 410, 422, 424, 436, 437, 438, 447, 451, 471, 481, 506, 516, 574, 575, 577, 661, 666, 671, 672, 675, 679, 681, 682, 688, 848, 878, 900, 941, 1011, 1052, 1080, 1124, 1269, 1272, 1275, 1282, 1284, 1290, 1291, 1294, 1301, 1302, 1309, 1323, 1326, 1327, 1332, 1334, 1339, 1351, 1357, 1368, 1374, 1375, 1377, 1382, 1418, 1419, 1422, 1423, 1425, 1427, 1430, 1431, 1433], "weakli": 1426, "weight": [19, 1304, 1423, 1425], "weird": [59, 1382], "welch": [1291, 1339, 1423], "well": [96, 98, 426, 575, 648, 1080, 1430], "went": [462, 1430], "were": 1290, "wether": 140, "wf": 878, "wf_collect": 116, "what": [21, 90, 126, 269, 648, 681, 878, 1124, 1323, 1339, 1350, 1368, 1377, 1381, 1422, 1423, 1430, 1431, 1433], "whatev": [90, 136, 222, 280, 337, 406, 568, 595, 1080], "whath": 140, "whatnot": 159, "when": [19, 21, 97, 150, 164, 436, 506, 1011, 1124, 1269, 1287, 1300, 1301, 1304, 1327, 1334, 1337, 1407, 1425, 1430, 1431, 1433], "where": [21, 34, 61, 62, 86, 90, 91, 96, 98, 112, 132, 141, 157, 249, 305, 362, 406, 408, 409, 411, 412, 419, 425, 427, 428, 431, 435, 437, 447, 450, 502, 506, 584, 585, 627, 640, 645, 646, 648, 649, 654, 655, 659, 660, 661, 671, 672, 673, 679, 681, 1011, 1080, 1269, 1271, 1275, 1282, 1283, 1284, 1287, 1288, 1302, 1306, 1332, 1337, 1339, 1341, 1342, 1355, 1371, 1377, 1382, 1409, 1418, 1419, 1423, 1424, 1425, 1430, 1431], "wherea": 1422, "whether": [61, 62, 150, 408, 417, 447, 547, 657, 1291, 1351], "which": [19, 21, 23, 34, 56, 58, 59, 60, 61, 62, 67, 72, 86, 89, 90, 96, 132, 149, 159, 211, 217, 239, 269, 275, 295, 325, 332, 352, 388, 406, 408, 418, 419, 423, 424, 428, 433, 435, 437, 440, 446, 447, 477, 481, 502, 506, 512, 516, 568, 573, 575, 577, 627, 629, 643, 646, 648, 652, 655, 660, 661, 672, 673, 681, 682, 684, 688, 701, 732, 774, 814, 854, 878, 884, 900, 932, 941, 961, 975, 1011, 1017, 1052, 1058, 1080, 1086, 1124, 1130, 1166, 1212, 1237, 1269, 1275, 1282, 1284, 1294, 1301, 1318, 1325, 1326, 1330, 1337, 1339, 1341, 1342, 1345, 1347, 1351, 1358, 1364, 1368, 1374, 1375, 1377, 1381, 1382, 1405, 1406, 1409, 1411, 1418, 1419, 1421, 1422, 1423, 1425, 1430, 1431, 1433], "while": [112, 151, 848, 1294, 1323, 1339, 1425], "whistl": 159, "white": [591, 1269], "whitespac": [21, 54, 55, 63, 627], "whole": [462, 686, 687, 1371, 1427], "whoos": 21, "whose": [90, 427, 1424], "why": [878, 969, 1419], "wide": 1339, "wider": 1339, "width": [1314, 1315, 1316, 1325, 1327, 1334, 1339], "wien2k": [565, 570, 1374], "wien_sgroup_input": 570, "wiener": [1326, 1423], "wiki": [10, 450, 1339, 1431], "wikipedia": [10, 450], "win": [12, 1325], "window": [441, 1291, 1325, 1327, 1334, 1339, 1340, 1423], "wish": 149, "with_traceback": [533, 1297], "within": [404, 427, 437, 1339], "without": [67, 269, 557, 648, 1326, 1327, 1334, 1339, 1380, 1425, 1430, 1431, 1433], "wolfram": [666, 1326, 1328], "won": [1291, 1325, 1377, 1430, 1433], "work": [6, 34, 59, 67, 90, 97, 112, 410, 451, 457, 627, 640, 648, 657, 661, 669, 670, 676, 688, 808, 878, 1052, 1124, 1371, 1377, 1417, 1423, 1427, 1429, 1430, 1431], "world": 681, "worth": 1423, "would": [21, 84, 266, 322, 379, 400, 406, 422, 431, 437, 495, 530, 675, 723, 765, 805, 845, 875, 923, 958, 1008, 1049, 1077, 1121, 1124, 1157, 1202, 1228, 1255, 1269, 1339, 1371, 1374, 1418, 1423, 1425], "wp": 112, "wrap": [222, 280, 337, 406, 420, 430, 431, 436, 1011, 1342], "wrapper": [36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 161, 406, 416, 420, 421, 447, 457, 657, 665, 1286, 1289, 1293, 1423, 1428], "write": [2, 34, 57, 60, 74, 88, 90, 97, 112, 140, 151, 221, 279, 336, 390, 447, 479, 506, 514, 566, 568, 569, 570, 571, 706, 735, 777, 817, 848, 857, 887, 935, 978, 1020, 1061, 1089, 1124, 1133, 1169, 1215, 1240, 1342, 1345, 1368, 1409, 1421, 1424, 1426, 1427, 1428, 1433], "write_axsf": 1409, "write_cif": 1431, "write_h5": [557, 1431], "write_input": [96, 1421], "write_lammp": 1011, "writeabl": [61, 62], "writearr": 128, "writer": [567, 1409], "writesql": 90, "writetxt": [59, 1269], "written": [23, 34, 60, 86, 96, 97, 99, 108, 112, 133, 408, 447, 506, 557, 561, 576, 878, 926, 1011, 1269, 1287, 1409, 1419, 1426, 1431], "wrong": [437, 661], "wrpap": 424, "wsadd": 627, "wt": 19, "wurtzit": 1431, "www": [23, 112, 418, 566, 571, 1325, 1328, 1424], "wz": 1427, "x": [14, 22, 23, 54, 55, 61, 62, 63, 79, 89, 90, 98, 112, 113, 164, 211, 260, 316, 373, 395, 404, 405, 406, 408, 409, 418, 427, 431, 434, 437, 438, 440, 446, 447, 468, 471, 489, 500, 502, 503, 506, 524, 538, 557, 575, 577, 579, 582, 591, 595, 624, 628, 634, 635, 636, 639, 640, 643, 644, 645, 646, 647, 648, 649, 650, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 666, 669, 670, 673, 675, 677, 679, 681, 685, 717, 758, 798, 838, 869, 916, 952, 1001, 1011, 1042, 1071, 1080, 1114, 1124, 1151, 1195, 1222, 1248, 1271, 1273, 1274, 1275, 1276, 1278, 1279, 1281, 1283, 1284, 1285, 1287, 1288, 1300, 1301, 1302, 1303, 1309, 1325, 1326, 1327, 1329, 1332, 1333, 1334, 1338, 1339, 1341, 1355, 1369, 1370, 1371, 1374, 1377, 1381, 1382, 1394, 1395, 1398, 1399, 1407, 1419, 1423, 1424, 1425, 1426, 1427, 1430, 1431, 1433], "x0": [500, 502, 644, 645, 646, 649, 650, 651, 653, 654, 655, 658, 659, 660, 661, 669, 670, 679, 681, 1332, 1399, 1419], "x0_i": 679, "x1": [650, 679, 681, 1419], "x1_i": 679, "x2": 679, "x86_64": [127, 642, 1270, 1430], "x_0": [679, 1327, 1334], "x_1": 679, "x_i": [679, 1302, 1306, 1425], "x_imag": 1288, "x_j": 1425, "x_n": 679, "x_opt": 1377, "x_real": 1288, "x_scale": 1338, "xab": [500, 502, 644, 645, 646, 653, 654, 655, 657, 658, 659, 660, 661], "xaxi": 627, "xb": 625, "xc": [112, 113, 625], "xcrysden": [566, 1409, 1428, 1433], "xd": 664, "xdist": 1430, "xe": [64, 65, 66], "xg": 625, "xi": [577, 1301], "xi_0": 1302, "xi_n": 1302, "xk": 625, "xlabel": 627, "xm": 625, "xmin": 649, "xnew": 664, "xr": 625, "xsf": [34, 408, 447, 566], "xsu": 1011, "xu": [108, 1011], "xx": [1, 50, 64, 65, 66, 79, 98, 260, 316, 373, 395, 444, 448, 489, 502, 524, 577, 579, 582, 645, 646, 648, 652, 654, 655, 657, 659, 660, 661, 717, 758, 798, 838, 869, 916, 952, 1001, 1042, 1071, 1114, 1151, 1195, 1222, 1248, 1301, 1371, 1377, 1433], "xxx": [90, 139, 878], "xxxfnfreq": 1427, "xxxfoo": [90, 99, 159], "xxxk": 1427, "xxxlala": 90, "xxxmass": 1427, "xxxnk": 1427, "xxxone": 159, "xxxpi": 159, "xy": [444, 448, 577, 625, 1011, 1275, 1301, 1377, 1433], "xyz": [34, 571, 878, 1011, 1426, 1428], "xyz_axi": 431, "xyzplugin": 571, "xz": [444, 448, 1011], "y": [64, 65, 66, 89, 98, 404, 405, 406, 409, 418, 431, 502, 557, 577, 579, 582, 591, 595, 596, 597, 598, 622, 625, 628, 634, 635, 636, 639, 640, 643, 645, 646, 648, 649, 652, 654, 655, 657, 659, 660, 661, 664, 669, 670, 673, 675, 679, 681, 1011, 1301, 1328, 1329, 1332, 1339, 1355, 1377, 1381, 1382, 1419, 1433], "y0": [661, 1419], "y1": 1419, "y_i": 679, "y_imag": 1288, "y_real": 1288, "yah": 140, "yaxi": 627, "yb": [64, 65, 66], "yd": [598, 664], "ye": [160, 1011], "yet": 808, "yh": 598, "yi": 577, "yield": 1304, "ykwyad": 1382, "ylabel": 627, "ylim": 575, "ymin": [649, 1332], "yo": 598, "you": [3, 21, 34, 89, 90, 96, 125, 222, 269, 280, 337, 404, 418, 427, 437, 457, 506, 568, 574, 575, 583, 585, 627, 648, 657, 661, 677, 681, 682, 848, 1052, 1080, 1124, 1275, 1291, 1296, 1323, 1325, 1331, 1339, 1342, 1368, 1371, 1374, 1377, 1379, 1382, 1418, 1419, 1421, 1422, 1423, 1424, 1425, 1426, 1430, 1431, 1433], "your": [97, 136, 222, 280, 337, 419, 481, 506, 516, 575, 1080, 1124, 1296, 1323, 1339, 1382, 1418, 1424, 1430, 1433], "yourself": [59, 437, 447], "youself": 1377, "yp": 598, "ysu": 1011, "yu": [108, 1011], "yv": 598, "yx": 598, "yy": [98, 444, 448, 577, 648, 1301, 1377, 1433], "yyi": 139, "yz": [444, 448, 1011], "z": [89, 404, 418, 431, 557, 577, 591, 628, 630, 631, 634, 635, 636, 639, 640, 648, 649, 703, 1011, 1301, 1304, 1355, 1377, 1419, 1425, 1433], "z0": 1419, "z1": 1419, "z_i": 1425, "z_imag": 1288, "z_real": 1288, "za": 703, "zero": [54, 55, 61, 62, 63, 141, 422, 436, 447, 481, 516, 1291, 1321, 1325, 1326, 1337, 1339, 1380, 1382, 1395, 1399, 1423, 1425], "zero_ep": [157, 1271], "zi": 577, "zip": [96, 125, 406, 1368, 1371], "zn": [64, 65, 66], "znucl": [242, 298, 355, 1373, 1376], "znucl_uniqu": 269, "zone": 574, "zr": [64, 65, 66], "zsu": 1011, "zu": [108, 1011], "zz": [444, 448, 577, 1301, 1377, 1433], "\u00b5": [12, 1309]}, "titles": ["_dcd", "_flib", "arrayio", "atomic_data", "base", "batch", "calculators", "comb", "common", "config", "constants", "crys", "dcd", "decorators", "eos", "io", "kpath", "lammps", "mpl", "mttk", "num", "parse", "pwscf", "pydos", "random", "rbf.core", "rbf.hyperopt", "regex", "signal", "sql", "symmetry", "thermo", "timer", "verbose", "visualize", "API Reference", "pwtools._dcd.get_dcd_file_info", "pwtools._dcd.open_file", "pwtools._dcd.read_dcd_data", "pwtools._dcd.read_dcd_data_from_unit", "pwtools._dcd.read_dcd_header_from_unit", "pwtools._flib.acorr", "pwtools._flib.angles", "pwtools._flib.cart2frac", "pwtools._flib.cart2frac_traj", "pwtools._flib.distances_traj", "pwtools._flib.distsq", "pwtools._flib.distsq_frac", "pwtools._flib.frac2cart", "pwtools._flib.frac2cart_traj", "pwtools._flib.solve", "pwtools._flib.vacf", "pwtools._flib.vect_loops", "pwtools.arrayio.HEADER_COMMENT", "pwtools.arrayio.HEADER_MAXLINES", "pwtools.arrayio.TXT_MAXDIM", "pwtools.arrayio._read_header_config", "pwtools.arrayio._write_header_config", "pwtools.arrayio.arr2d_to_3d", "pwtools.arrayio.readtxt", "pwtools.arrayio.writetxt", "pwtools.atomic_data.covalent_radii", "pwtools.atomic_data.masses", "pwtools.atomic_data.missing", "pwtools.atomic_data.numbers", "pwtools.atomic_data.pt", "pwtools.atomic_data.symbols", "pwtools.base.FlexibleGetters", "pwtools.base.FlexibleGetters.assert_attr", "pwtools.base.FlexibleGetters.assert_attr_lst", "pwtools.base.FlexibleGetters.assert_set_attr", "pwtools.base.FlexibleGetters.assert_set_attr_lst", "pwtools.base.FlexibleGetters.check_set_attr", "pwtools.base.FlexibleGetters.check_set_attr_lst", "pwtools.base.FlexibleGetters.dump", "pwtools.base.FlexibleGetters.get_return_attr", "pwtools.base.FlexibleGetters.init_attr_lst", "pwtools.base.FlexibleGetters.is_set_attr", "pwtools.base.FlexibleGetters.is_set_attr_lst", "pwtools.base.FlexibleGetters.load", "pwtools.base.FlexibleGetters.raw_return", "pwtools.base.FlexibleGetters.raw_slice_get", "pwtools.base.FlexibleGetters.set_all", "pwtools.base.FlexibleGetters.set_attr_lst", "pwtools.base.FlexibleGetters.try_set_attr", "pwtools.base.FlexibleGetters.try_set_attr_lst", "pwtools.batch.Calculation", "pwtools.batch.Calculation.get_sql_record", "pwtools.batch.Calculation.write_input", "pwtools.batch.Case", "pwtools.batch.FileTemplate", "pwtools.batch.FileTemplate.write", "pwtools.batch.FileTemplate.writesql", "pwtools.batch.Machine", "pwtools.batch.Machine.get_jobfile_basename", "pwtools.batch.Machine.get_sql_record", "pwtools.batch.ParameterStudy", "pwtools.batch.ParameterStudy.write_input", "pwtools.batch.conv_table", "pwtools.batch.default_repl_keys", "pwtools.calculators.CalculatorBase", "pwtools.calculators.CalculatorBase.fill_infile_templ", "pwtools.calculators.CalculatorBase.init_params_from_input", "pwtools.calculators.FileIOCalculator", "pwtools.calculators.Lammps", "pwtools.calculators.Lammps.default_parameters", "pwtools.calculators.Lammps.fill_infile_templ", "pwtools.calculators.Lammps.implemented_properties", "pwtools.calculators.Lammps.infile_templ", "pwtools.calculators.Lammps.init_params_from_input", "pwtools.calculators.Lammps.read_results", "pwtools.calculators.Lammps.write_input", "pwtools.calculators.Pwscf", "pwtools.calculators.Pwscf.default_parameters", "pwtools.calculators.Pwscf.fill_infile_templ", "pwtools.calculators.Pwscf.implemented_properties", "pwtools.calculators.Pwscf.infile_templ", "pwtools.calculators.Pwscf.init_params_from_input", "pwtools.calculators.Pwscf.read_results", "pwtools.calculators.Pwscf.write_input", "pwtools.calculators._ase_missing", "pwtools.calculators.find_exe", "pwtools.calculators.kpts2mp", "pwtools.calculators.stress_pwtools2ase", "pwtools.comb._ensure_list", "pwtools.comb.nested_loops", "pwtools.comb.unique2d", "pwtools.common.EPS", "pwtools.common.add_to_config", "pwtools.common.asseq", "pwtools.common.assert_cond", "pwtools.common.backtick", "pwtools.common.backup", "pwtools.common.cpickle_load", "pwtools.common.dict2class", "pwtools.common.dict2str", "pwtools.common.ffloat", "pwtools.common.file_read", "pwtools.common.file_readlines", "pwtools.common.file_template_replace", "pwtools.common.file_write", "pwtools.common.fix_eps", "pwtools.common.flatten", "pwtools.common.fpj", "pwtools.common.frepr", "pwtools.common.fullpath", "pwtools.common.fullpathjoin", "pwtools.common.get_filename", "pwtools.common.iflatten", "pwtools.common.is_seq", "pwtools.common.makedirs", "pwtools.common.permit_sigpipe", "pwtools.common.pop_from_list", "pwtools.common.print_dct", "pwtools.common.seq2str", "pwtools.common.str2seq", "pwtools.common.str2tup", "pwtools.common.str_arr", "pwtools.common.system", "pwtools.common.template_replace", "pwtools.common.tobool", "pwtools.common.toslice", "pwtools.common.tup2str", "pwtools.config.name", "pwtools.config.use_jax", "pwtools.constants.Ang", "pwtools.constants.Angstrom", "pwtools.constants.Bohr", "pwtools.constants.Bohr_to_Ang", "pwtools.constants.Eh", "pwtools.constants.Eryd", "pwtools.constants.GPa", "pwtools.constants.Ha", "pwtools.constants.Ha_to_eV", "pwtools.constants.Hartree", "pwtools.constants.J_to_eV", "pwtools.constants.J_to_rcm", "pwtools.constants.R", "pwtools.constants.Ry", "pwtools.constants.Ry_to_Ha", "pwtools.constants.Ry_to_Hz", "pwtools.constants.Ry_to_J", "pwtools.constants.Ry_to_eV", "pwtools.constants.Ry_to_rcm", "pwtools.constants.Rydberg", "pwtools.constants.a0", "pwtools.constants.a0_to_A", "pwtools.constants.alpha", "pwtools.constants.amu", "pwtools.constants.avo", "pwtools.constants.c0", "pwtools.constants.dyn", "pwtools.constants.e0", "pwtools.constants.eV", "pwtools.constants.eV_by_Ang3_to_GPa", "pwtools.constants.eV_by_Ang3_to_Pa", "pwtools.constants.eps0", "pwtools.constants.fs", "pwtools.constants.h", "pwtools.constants.hbar", "pwtools.constants.hplanck", "pwtools.constants.kb", "pwtools.constants.m0", "pwtools.constants.mu0", "pwtools.constants.pi", "pwtools.constants.ps", "pwtools.constants.rcm_to_Hz", "pwtools.constants.th", "pwtools.constants.thart", "pwtools.constants.tryd", "pwtools.crys.Angstrom", "pwtools.crys.FakeASEAtoms", "pwtools.crys.FakeASEAtoms.apply_units", "pwtools.crys.FakeASEAtoms.assert_attr", "pwtools.crys.FakeASEAtoms.assert_attr_lst", "pwtools.crys.FakeASEAtoms.assert_set_attr", "pwtools.crys.FakeASEAtoms.assert_set_attr_lst", "pwtools.crys.FakeASEAtoms.check_set_attr", "pwtools.crys.FakeASEAtoms.check_set_attr_lst", "pwtools.crys.FakeASEAtoms.compress", "pwtools.crys.FakeASEAtoms.copy", "pwtools.crys.FakeASEAtoms.dump", "pwtools.crys.FakeASEAtoms.get_ase_atoms", "pwtools.crys.FakeASEAtoms.get_atomic_numbers", "pwtools.crys.FakeASEAtoms.get_cell", "pwtools.crys.FakeASEAtoms.get_coords", "pwtools.crys.FakeASEAtoms.get_coords_frac", "pwtools.crys.FakeASEAtoms.get_cryst_const", "pwtools.crys.FakeASEAtoms.get_ekin", "pwtools.crys.FakeASEAtoms.get_etot", "pwtools.crys.FakeASEAtoms.get_fake_ase_atoms", "pwtools.crys.FakeASEAtoms.get_forces", "pwtools.crys.FakeASEAtoms.get_magnetic_moments", "pwtools.crys.FakeASEAtoms.get_mass", "pwtools.crys.FakeASEAtoms.get_mass_unique", "pwtools.crys.FakeASEAtoms.get_natoms", "pwtools.crys.FakeASEAtoms.get_nspecies", "pwtools.crys.FakeASEAtoms.get_nstep", "pwtools.crys.FakeASEAtoms.get_ntypat", "pwtools.crys.FakeASEAtoms.get_order", "pwtools.crys.FakeASEAtoms.get_pressure", "pwtools.crys.FakeASEAtoms.get_return_attr", "pwtools.crys.FakeASEAtoms.get_spglib", "pwtools.crys.FakeASEAtoms.get_stress", "pwtools.crys.FakeASEAtoms.get_symbols", "pwtools.crys.FakeASEAtoms.get_symbols_unique", "pwtools.crys.FakeASEAtoms.get_temperature", "pwtools.crys.FakeASEAtoms.get_time", "pwtools.crys.FakeASEAtoms.get_timestep", "pwtools.crys.FakeASEAtoms.get_traj", "pwtools.crys.FakeASEAtoms.get_typat", "pwtools.crys.FakeASEAtoms.get_velocity", "pwtools.crys.FakeASEAtoms.get_volume", "pwtools.crys.FakeASEAtoms.get_znucl", "pwtools.crys.FakeASEAtoms.get_znucl_unique", "pwtools.crys.FakeASEAtoms.init_attr_lst", "pwtools.crys.FakeASEAtoms.is_set_attr", "pwtools.crys.FakeASEAtoms.is_set_attr_lst", "pwtools.crys.FakeASEAtoms.is_struct", "pwtools.crys.FakeASEAtoms.is_traj", "pwtools.crys.FakeASEAtoms.load", "pwtools.crys.FakeASEAtoms.raw_return", "pwtools.crys.FakeASEAtoms.raw_slice_get", "pwtools.crys.FakeASEAtoms.set_all", "pwtools.crys.FakeASEAtoms.set_attr_lst", "pwtools.crys.FakeASEAtoms.timeaxis", "pwtools.crys.FakeASEAtoms.try_set_attr", "pwtools.crys.FakeASEAtoms.try_set_attr_lst", "pwtools.crys.FakeASEAtoms.update_units", "pwtools.crys.Structure", "pwtools.crys.Structure.apply_units", "pwtools.crys.Structure.assert_attr", "pwtools.crys.Structure.assert_attr_lst", "pwtools.crys.Structure.assert_set_attr", "pwtools.crys.Structure.assert_set_attr_lst", "pwtools.crys.Structure.check_set_attr", "pwtools.crys.Structure.check_set_attr_lst", "pwtools.crys.Structure.compress", "pwtools.crys.Structure.copy", "pwtools.crys.Structure.dump", "pwtools.crys.Structure.get_ase_atoms", "pwtools.crys.Structure.get_cell", "pwtools.crys.Structure.get_coords", "pwtools.crys.Structure.get_coords_frac", "pwtools.crys.Structure.get_cryst_const", "pwtools.crys.Structure.get_ekin", "pwtools.crys.Structure.get_etot", "pwtools.crys.Structure.get_fake_ase_atoms", "pwtools.crys.Structure.get_forces", "pwtools.crys.Structure.get_mass", "pwtools.crys.Structure.get_mass_unique", "pwtools.crys.Structure.get_natoms", "pwtools.crys.Structure.get_nspecies", "pwtools.crys.Structure.get_nstep", "pwtools.crys.Structure.get_ntypat", "pwtools.crys.Structure.get_order", "pwtools.crys.Structure.get_pressure", "pwtools.crys.Structure.get_return_attr", "pwtools.crys.Structure.get_spglib", "pwtools.crys.Structure.get_stress", "pwtools.crys.Structure.get_symbols", "pwtools.crys.Structure.get_symbols_unique", "pwtools.crys.Structure.get_temperature", "pwtools.crys.Structure.get_time", "pwtools.crys.Structure.get_timestep", "pwtools.crys.Structure.get_traj", "pwtools.crys.Structure.get_typat", "pwtools.crys.Structure.get_velocity", "pwtools.crys.Structure.get_volume", "pwtools.crys.Structure.get_znucl", "pwtools.crys.Structure.get_znucl_unique", "pwtools.crys.Structure.init_attr_lst", "pwtools.crys.Structure.is_set_attr", "pwtools.crys.Structure.is_set_attr_lst", "pwtools.crys.Structure.is_struct", "pwtools.crys.Structure.is_traj", "pwtools.crys.Structure.load", "pwtools.crys.Structure.raw_return", "pwtools.crys.Structure.raw_slice_get", "pwtools.crys.Structure.set_all", "pwtools.crys.Structure.set_attr_lst", "pwtools.crys.Structure.timeaxis", "pwtools.crys.Structure.try_set_attr", "pwtools.crys.Structure.try_set_attr_lst", "pwtools.crys.Structure.update_units", "pwtools.crys.Trajectory", "pwtools.crys.Trajectory.__getitem__", "pwtools.crys.Trajectory.apply_units", "pwtools.crys.Trajectory.assert_attr", "pwtools.crys.Trajectory.assert_attr_lst", "pwtools.crys.Trajectory.assert_set_attr", "pwtools.crys.Trajectory.assert_set_attr_lst", "pwtools.crys.Trajectory.check_set_attr", "pwtools.crys.Trajectory.check_set_attr_lst", "pwtools.crys.Trajectory.compress", "pwtools.crys.Trajectory.copy", "pwtools.crys.Trajectory.dump", "pwtools.crys.Trajectory.get_ase_atoms", "pwtools.crys.Trajectory.get_cell", "pwtools.crys.Trajectory.get_coords", "pwtools.crys.Trajectory.get_coords_frac", "pwtools.crys.Trajectory.get_cryst_const", "pwtools.crys.Trajectory.get_ekin", "pwtools.crys.Trajectory.get_etot", "pwtools.crys.Trajectory.get_fake_ase_atoms", "pwtools.crys.Trajectory.get_forces", "pwtools.crys.Trajectory.get_mass", "pwtools.crys.Trajectory.get_mass_unique", "pwtools.crys.Trajectory.get_natoms", "pwtools.crys.Trajectory.get_nspecies", "pwtools.crys.Trajectory.get_nstep", "pwtools.crys.Trajectory.get_ntypat", "pwtools.crys.Trajectory.get_order", "pwtools.crys.Trajectory.get_pressure", "pwtools.crys.Trajectory.get_return_attr", "pwtools.crys.Trajectory.get_spglib", "pwtools.crys.Trajectory.get_stress", "pwtools.crys.Trajectory.get_symbols", "pwtools.crys.Trajectory.get_symbols_unique", "pwtools.crys.Trajectory.get_temperature", "pwtools.crys.Trajectory.get_time", "pwtools.crys.Trajectory.get_timestep", "pwtools.crys.Trajectory.get_traj", "pwtools.crys.Trajectory.get_typat", "pwtools.crys.Trajectory.get_velocity", "pwtools.crys.Trajectory.get_volume", "pwtools.crys.Trajectory.get_znucl", "pwtools.crys.Trajectory.get_znucl_unique", "pwtools.crys.Trajectory.init_attr_lst", "pwtools.crys.Trajectory.is_set_attr", "pwtools.crys.Trajectory.is_set_attr_lst", "pwtools.crys.Trajectory.is_struct", "pwtools.crys.Trajectory.is_traj", "pwtools.crys.Trajectory.load", "pwtools.crys.Trajectory.raw_return", "pwtools.crys.Trajectory.raw_slice_get", "pwtools.crys.Trajectory.set_all", "pwtools.crys.Trajectory.set_attr_lst", "pwtools.crys.Trajectory.timeaxis", "pwtools.crys.Trajectory.try_set_attr", "pwtools.crys.Trajectory.try_set_attr_lst", "pwtools.crys.Trajectory.update_units", "pwtools.crys.UnitsHandler", "pwtools.crys.UnitsHandler.apply_units", "pwtools.crys.UnitsHandler.assert_attr", "pwtools.crys.UnitsHandler.assert_attr_lst", "pwtools.crys.UnitsHandler.assert_set_attr", "pwtools.crys.UnitsHandler.assert_set_attr_lst", "pwtools.crys.UnitsHandler.check_set_attr", "pwtools.crys.UnitsHandler.check_set_attr_lst", "pwtools.crys.UnitsHandler.dump", "pwtools.crys.UnitsHandler.get_return_attr", "pwtools.crys.UnitsHandler.init_attr_lst", "pwtools.crys.UnitsHandler.is_set_attr", "pwtools.crys.UnitsHandler.is_set_attr_lst", "pwtools.crys.UnitsHandler.load", "pwtools.crys.UnitsHandler.raw_return", "pwtools.crys.UnitsHandler.raw_slice_get", "pwtools.crys.UnitsHandler.set_all", "pwtools.crys.UnitsHandler.set_attr_lst", "pwtools.crys.UnitsHandler.try_set_attr", "pwtools.crys.UnitsHandler.try_set_attr_lst", "pwtools.crys.UnitsHandler.update_units", "pwtools.crys._trans", "pwtools.crys.align_cart", "pwtools.crys.angle", "pwtools.crys.angles", "pwtools.crys.atoms2struct", "pwtools.crys.call_vmd_measure_gofr", "pwtools.crys.cc2cell", "pwtools.crys.cc2cell3d", "pwtools.crys.cc2celldm", "pwtools.crys.cell2cc", "pwtools.crys.cell2cc3d", "pwtools.crys.celldm2cc", "pwtools.crys.center_on_atom", "pwtools.crys.compress", "pwtools.crys.concatenate", "pwtools.crys.coord_trans", "pwtools.crys.coord_trans3d", "pwtools.crys.distances", "pwtools.crys.distances_traj", "pwtools.crys.grid_in_cell", "pwtools.crys.kgrid", "pwtools.crys.mean", "pwtools.crys.min_image_convention", "pwtools.crys.mix", "pwtools.crys.nearest_neighbors", "pwtools.crys.nearest_neighbors_from_dists", "pwtools.crys.nearest_neighbors_struct", "pwtools.crys.pbc_wrap", "pwtools.crys.pbc_wrap_coords", "pwtools.crys.pi", "pwtools.crys.populated_attrs", "pwtools.crys.recip_cell", "pwtools.crys.rmax_smith", "pwtools.crys.rmsd", "pwtools.crys.rpdf", "pwtools.crys.scell", "pwtools.crys.scell3d", "pwtools.crys.scell_mask", "pwtools.crys.smooth", "pwtools.crys.struct2atoms", "pwtools.crys.struct2traj", "pwtools.crys.tensor2voigt", "pwtools.crys.tensor2voigt3d", "pwtools.crys.velocity_traj", "pwtools.crys.vmd_measure_gofr", "pwtools.crys.voigt2tensor", "pwtools.crys.voigt2tensor3d", "pwtools.crys.volume_cc", "pwtools.crys.volume_cc3d", "pwtools.crys.volume_cell", "pwtools.crys.volume_cell3d", "pwtools.dcd.HEADER_DTYPE", "pwtools.dcd.HEADER_TYPES", "pwtools.dcd.read_dcd_data", "pwtools.dcd.read_dcd_data_f", "pwtools.dcd.read_dcd_data_ref", "pwtools.dcd.read_dcd_header", "pwtools.decorators.crys_add_doc", "pwtools.decorators.lazyprop", "pwtools.decorators.open_and_close", "pwtools.eos.Ang", "pwtools.eos.Bohr", "pwtools.eos.EVFunction", "pwtools.eos.EVFunction.dct2lst", "pwtools.eos.EVFunction.deriv", "pwtools.eos.EVFunction.evaluate", "pwtools.eos.EVFunction.get_min", "pwtools.eos.EVFunction.lst2dct", "pwtools.eos.ElkEOSFit", "pwtools.eos.ElkEOSFit.assert_attr", "pwtools.eos.ElkEOSFit.assert_attr_lst", "pwtools.eos.ElkEOSFit.assert_set_attr", "pwtools.eos.ElkEOSFit.assert_set_attr_lst", "pwtools.eos.ElkEOSFit.calc_bv", "pwtools.eos.ElkEOSFit.check_set_attr", "pwtools.eos.ElkEOSFit.check_set_attr_lst", "pwtools.eos.ElkEOSFit.dump", "pwtools.eos.ElkEOSFit.fit", "pwtools.eos.ElkEOSFit.get_min", "pwtools.eos.ElkEOSFit.get_return_attr", "pwtools.eos.ElkEOSFit.get_spl_bv", "pwtools.eos.ElkEOSFit.get_spl_ev", "pwtools.eos.ElkEOSFit.get_spl_pv", "pwtools.eos.ElkEOSFit.init_attr_lst", "pwtools.eos.ElkEOSFit.is_set_attr", "pwtools.eos.ElkEOSFit.is_set_attr_lst", "pwtools.eos.ElkEOSFit.load", "pwtools.eos.ElkEOSFit.raw_return", "pwtools.eos.ElkEOSFit.raw_slice_get", "pwtools.eos.ElkEOSFit.set_all", "pwtools.eos.ElkEOSFit.set_attr_lst", "pwtools.eos.ElkEOSFit.set_bv_method", "pwtools.eos.ElkEOSFit.try_set_attr", "pwtools.eos.ElkEOSFit.try_set_attr_lst", "pwtools.eos.EosFit", "pwtools.eos.EosFit.bulkmod", "pwtools.eos.EosFit.fit", "pwtools.eos.EosFit.get_max", "pwtools.eos.EosFit.get_min", "pwtools.eos.EosFit.get_root", "pwtools.eos.EosFit.is_mono", "pwtools.eos.EosFit.pressure", "pwtools.eos.EosFit.spl", "pwtools.eos.ExternEOS", "pwtools.eos.ExternEOS.assert_attr", "pwtools.eos.ExternEOS.assert_attr_lst", "pwtools.eos.ExternEOS.assert_set_attr", "pwtools.eos.ExternEOS.assert_set_attr_lst", "pwtools.eos.ExternEOS.calc_bv", "pwtools.eos.ExternEOS.check_set_attr", "pwtools.eos.ExternEOS.check_set_attr_lst", "pwtools.eos.ExternEOS.dump", "pwtools.eos.ExternEOS.fit", "pwtools.eos.ExternEOS.get_min", "pwtools.eos.ExternEOS.get_return_attr", "pwtools.eos.ExternEOS.get_spl_bv", "pwtools.eos.ExternEOS.get_spl_ev", "pwtools.eos.ExternEOS.get_spl_pv", "pwtools.eos.ExternEOS.init_attr_lst", "pwtools.eos.ExternEOS.is_set_attr", "pwtools.eos.ExternEOS.is_set_attr_lst", "pwtools.eos.ExternEOS.load", "pwtools.eos.ExternEOS.raw_return", "pwtools.eos.ExternEOS.raw_slice_get", "pwtools.eos.ExternEOS.set_all", "pwtools.eos.ExternEOS.set_attr_lst", "pwtools.eos.ExternEOS.set_bv_method", "pwtools.eos.ExternEOS.try_set_attr", "pwtools.eos.ExternEOS.try_set_attr_lst", "pwtools.eos.Ha", "pwtools.eos.MaxDerivException", "pwtools.eos.Ry", "pwtools.eos.Vinet", "pwtools.eos.Vinet.dct2lst", "pwtools.eos.Vinet.deriv", "pwtools.eos.Vinet.evaluate", "pwtools.eos.Vinet.get_min", "pwtools.eos.Vinet.lst2dct", "pwtools.eos._vinet", "pwtools.eos._vinet_deriv1", "pwtools.eos._vinet_deriv2", "pwtools.eos.eV", "pwtools.eos.eV_by_Ang3_to_GPa", "pwtools.io.Ha", "pwtools.io.ReadFactory", "pwtools.io.eV", "pwtools.io.load_h5", "pwtools.io.read_cif", "pwtools.io.read_cp2k_md", "pwtools.io.read_cp2k_md_dcd", "pwtools.io.read_cp2k_relax", "pwtools.io.read_cp2k_scf", "pwtools.io.read_cpmd_md", "pwtools.io.read_cpmd_scf", "pwtools.io.read_h5", "pwtools.io.read_lammps_md_dcd", "pwtools.io.read_lammps_md_txt", "pwtools.io.read_pdb", "pwtools.io.read_pickle", "pwtools.io.read_pw_md", "pwtools.io.read_pw_scf", "pwtools.io.read_pw_vcmd", "pwtools.io.wien_sgroup_input", "pwtools.io.write_axsf", "pwtools.io.write_cif", "pwtools.io.write_h5", "pwtools.io.write_lammps", "pwtools.io.write_wien_sgroup", "pwtools.io.write_xyz", "pwtools.kpath.SpecialPointsPath", "pwtools.kpath.get_path_norm", "pwtools.kpath.kpath", "pwtools.kpath.plot_dis", "pwtools.lammps.struct_str", "pwtools.mpl.Data2D", "pwtools.mpl.Data2D.copy", "pwtools.mpl.Data2D.update", "pwtools.mpl.Data3D", "pwtools.mpl.Data3D.copy", "pwtools.mpl.Data3D.update", "pwtools.mpl.Plot", "pwtools.mpl.Plot.collect_legends", "pwtools.mpl.Plot.legend", "pwtools.mpl.Plot.savefig", "pwtools.mpl.cc", "pwtools.mpl.ccl", "pwtools.mpl.ccm", "pwtools.mpl.clc", "pwtools.mpl.clean_ax3d", "pwtools.mpl.cm", "pwtools.mpl.cmc", "pwtools.mpl.collect_legends", "pwtools.mpl.color_ax", "pwtools.mpl.colors", "pwtools.mpl.colors_linestyles", "pwtools.mpl.colors_markers", "pwtools.mpl.cycle_colors", "pwtools.mpl.cycle_colors_linestyles", "pwtools.mpl.cycle_colors_markers", "pwtools.mpl.cycle_linestyles_colors", "pwtools.mpl.cycle_markers", "pwtools.mpl.cycle_markers_colors", "pwtools.mpl.fig_ax", "pwtools.mpl.fig_ax3d", "pwtools.mpl.get_2d_testdata", "pwtools.mpl.ic", "pwtools.mpl.icl", "pwtools.mpl.icm", "pwtools.mpl.ilc", "pwtools.mpl.im", "pwtools.mpl.imc", "pwtools.mpl.iter_colors", "pwtools.mpl.iter_colors_linestyles", "pwtools.mpl.iter_colors_markers", "pwtools.mpl.iter_linestyles", "pwtools.mpl.iter_linestyles_colors", "pwtools.mpl.iter_markers", "pwtools.mpl.iter_markers_colors", "pwtools.mpl.linestyles", "pwtools.mpl.linestyles_colors", "pwtools.mpl.make_axes_grid_fig", "pwtools.mpl.markers", "pwtools.mpl.markers_colors", "pwtools.mpl.meshgridt", "pwtools.mpl.new_axis", "pwtools.mpl.plotlines3d", "pwtools.mpl.prepare_plots", "pwtools.mpl.smooth_color", "pwtools.mpl.smooth_color_func", "pwtools.mttk.a0", "pwtools.mttk.add_doc", "pwtools.mttk.barostat_mass_w", "pwtools.mttk.barostat_mass_wg", "pwtools.mttk.barostat_nhc_masses", "pwtools.mttk.kb", "pwtools.mttk.m0", "pwtools.mttk.particle_nhc_masses", "pwtools.num.DataND", "pwtools.num.DataND.a2_to_an", "pwtools.num.EPS", "pwtools.num.Fit1D", "pwtools.num.Fit1D.get_max", "pwtools.num.Fit1D.get_min", "pwtools.num.Fit1D.get_root", "pwtools.num.Fit1D.is_mono", "pwtools.num.Interpol2D", "pwtools.num.Interpol2D.get_min", "pwtools.num.PolyFit", "pwtools.num.PolyFit.get_min", "pwtools.num.PolyFit1D", "pwtools.num.PolyFit1D.get_max", "pwtools.num.PolyFit1D.get_min", "pwtools.num.PolyFit1D.get_root", "pwtools.num.PolyFit1D.is_mono", "pwtools.num.Spline", "pwtools.num.Spline.get_max", "pwtools.num.Spline.get_min", "pwtools.num.Spline.get_root", "pwtools.num.Spline.invsplev", "pwtools.num.Spline.is_mono", "pwtools.num.Spline.splev", "pwtools.num.deriv_spl", "pwtools.num.distsq", "pwtools.num.euler_matrix", "pwtools.num.extend_array", "pwtools.num.fempty", "pwtools.num.findmin", "pwtools.num.findroot", "pwtools.num.inner_points_mask", "pwtools.num.match_mask", "pwtools.num.meshgridt", "pwtools.num.norm", "pwtools.num.norm_int", "pwtools.num.normalize", "pwtools.num.order_similar", "pwtools.num.pi", "pwtools.num.poly_powers", "pwtools.num.poly_str", "pwtools.num.polyfit", "pwtools.num.polyval", "pwtools.num.rms", "pwtools.num.rms3d", "pwtools.num.round_up_next_multiple", "pwtools.num.sliceput", "pwtools.num.slicetake", "pwtools.num.sum", "pwtools.num.vander", "pwtools.num.vlinspace", "pwtools.parse.AWK", "pwtools.parse.Ang", "pwtools.parse.Angstrom", "pwtools.parse.Bohr", "pwtools.parse.CifFile", "pwtools.parse.CifFile.apply_units", "pwtools.parse.CifFile.assert_attr", "pwtools.parse.CifFile.assert_attr_lst", "pwtools.parse.CifFile.assert_set_attr", "pwtools.parse.CifFile.assert_set_attr_lst", "pwtools.parse.CifFile.check_set_attr", "pwtools.parse.CifFile.check_set_attr_lst", "pwtools.parse.CifFile.cif_clear_atom_symbol", "pwtools.parse.CifFile.cif_str2float", "pwtools.parse.CifFile.default_units", "pwtools.parse.CifFile.dump", "pwtools.parse.CifFile.get_cont", "pwtools.parse.CifFile.get_coords", "pwtools.parse.CifFile.get_coords_frac", "pwtools.parse.CifFile.get_cryst_const", "pwtools.parse.CifFile.get_return_attr", "pwtools.parse.CifFile.get_struct", "pwtools.parse.CifFile.get_symbols", "pwtools.parse.CifFile.init_attr_lst", "pwtools.parse.CifFile.is_set_attr", "pwtools.parse.CifFile.is_set_attr_lst", "pwtools.parse.CifFile.load", "pwtools.parse.CifFile.parse", "pwtools.parse.CifFile.raw_return", "pwtools.parse.CifFile.raw_slice_get", "pwtools.parse.CifFile.set_all", "pwtools.parse.CifFile.set_attr_lst", "pwtools.parse.CifFile.try_set_attr", "pwtools.parse.CifFile.try_set_attr_lst", "pwtools.parse.CifFile.update_units", "pwtools.parse.Cp2kDcdMDOutputFile", "pwtools.parse.Cp2kDcdMDOutputFile.apply_units", "pwtools.parse.Cp2kDcdMDOutputFile.assert_attr", "pwtools.parse.Cp2kDcdMDOutputFile.assert_attr_lst", "pwtools.parse.Cp2kDcdMDOutputFile.assert_set_attr", "pwtools.parse.Cp2kDcdMDOutputFile.assert_set_attr_lst", "pwtools.parse.Cp2kDcdMDOutputFile.check_set_attr", "pwtools.parse.Cp2kDcdMDOutputFile.check_set_attr_lst", "pwtools.parse.Cp2kDcdMDOutputFile.default_units", "pwtools.parse.Cp2kDcdMDOutputFile.dump", "pwtools.parse.Cp2kDcdMDOutputFile.get_cell", "pwtools.parse.Cp2kDcdMDOutputFile.get_cont", "pwtools.parse.Cp2kDcdMDOutputFile.get_coords", "pwtools.parse.Cp2kDcdMDOutputFile.get_cryst_const", "pwtools.parse.Cp2kDcdMDOutputFile.get_econst", "pwtools.parse.Cp2kDcdMDOutputFile.get_ekin", "pwtools.parse.Cp2kDcdMDOutputFile.get_etot", "pwtools.parse.Cp2kDcdMDOutputFile.get_forces", "pwtools.parse.Cp2kDcdMDOutputFile.get_natoms", "pwtools.parse.Cp2kDcdMDOutputFile.get_nstep", "pwtools.parse.Cp2kDcdMDOutputFile.get_return_attr", "pwtools.parse.Cp2kDcdMDOutputFile.get_stress", "pwtools.parse.Cp2kDcdMDOutputFile.get_struct", "pwtools.parse.Cp2kDcdMDOutputFile.get_symbols", "pwtools.parse.Cp2kDcdMDOutputFile.get_temperature", "pwtools.parse.Cp2kDcdMDOutputFile.get_timestep", "pwtools.parse.Cp2kDcdMDOutputFile.get_traj", "pwtools.parse.Cp2kDcdMDOutputFile.get_velocity", "pwtools.parse.Cp2kDcdMDOutputFile.get_volume", "pwtools.parse.Cp2kDcdMDOutputFile.init_attr_lst", "pwtools.parse.Cp2kDcdMDOutputFile.is_set_attr", "pwtools.parse.Cp2kDcdMDOutputFile.is_set_attr_lst", "pwtools.parse.Cp2kDcdMDOutputFile.load", "pwtools.parse.Cp2kDcdMDOutputFile.parse", "pwtools.parse.Cp2kDcdMDOutputFile.raw_return", "pwtools.parse.Cp2kDcdMDOutputFile.raw_slice_get", "pwtools.parse.Cp2kDcdMDOutputFile.set_all", "pwtools.parse.Cp2kDcdMDOutputFile.set_attr_lst", "pwtools.parse.Cp2kDcdMDOutputFile.timeaxis", "pwtools.parse.Cp2kDcdMDOutputFile.try_set_attr", "pwtools.parse.Cp2kDcdMDOutputFile.try_set_attr_lst", "pwtools.parse.Cp2kDcdMDOutputFile.update_units", "pwtools.parse.Cp2kMDOutputFile", "pwtools.parse.Cp2kMDOutputFile.apply_units", "pwtools.parse.Cp2kMDOutputFile.assert_attr", "pwtools.parse.Cp2kMDOutputFile.assert_attr_lst", "pwtools.parse.Cp2kMDOutputFile.assert_set_attr", "pwtools.parse.Cp2kMDOutputFile.assert_set_attr_lst", "pwtools.parse.Cp2kMDOutputFile.check_set_attr", "pwtools.parse.Cp2kMDOutputFile.check_set_attr_lst", "pwtools.parse.Cp2kMDOutputFile.default_units", "pwtools.parse.Cp2kMDOutputFile.dump", "pwtools.parse.Cp2kMDOutputFile.get_cell", "pwtools.parse.Cp2kMDOutputFile.get_cont", "pwtools.parse.Cp2kMDOutputFile.get_coords", "pwtools.parse.Cp2kMDOutputFile.get_econst", "pwtools.parse.Cp2kMDOutputFile.get_ekin", "pwtools.parse.Cp2kMDOutputFile.get_etot", "pwtools.parse.Cp2kMDOutputFile.get_forces", "pwtools.parse.Cp2kMDOutputFile.get_natoms", "pwtools.parse.Cp2kMDOutputFile.get_return_attr", "pwtools.parse.Cp2kMDOutputFile.get_stress", "pwtools.parse.Cp2kMDOutputFile.get_struct", "pwtools.parse.Cp2kMDOutputFile.get_symbols", "pwtools.parse.Cp2kMDOutputFile.get_temperature", "pwtools.parse.Cp2kMDOutputFile.get_timestep", "pwtools.parse.Cp2kMDOutputFile.get_traj", "pwtools.parse.Cp2kMDOutputFile.get_velocity", "pwtools.parse.Cp2kMDOutputFile.get_volume", "pwtools.parse.Cp2kMDOutputFile.init_attr_lst", "pwtools.parse.Cp2kMDOutputFile.is_set_attr", "pwtools.parse.Cp2kMDOutputFile.is_set_attr_lst", "pwtools.parse.Cp2kMDOutputFile.load", "pwtools.parse.Cp2kMDOutputFile.parse", "pwtools.parse.Cp2kMDOutputFile.raw_return", "pwtools.parse.Cp2kMDOutputFile.raw_slice_get", "pwtools.parse.Cp2kMDOutputFile.set_all", "pwtools.parse.Cp2kMDOutputFile.set_attr_lst", "pwtools.parse.Cp2kMDOutputFile.timeaxis", "pwtools.parse.Cp2kMDOutputFile.try_set_attr", "pwtools.parse.Cp2kMDOutputFile.try_set_attr_lst", "pwtools.parse.Cp2kMDOutputFile.update_units", "pwtools.parse.Cp2kRelaxOutputFile", "pwtools.parse.Cp2kRelaxOutputFile.apply_units", "pwtools.parse.Cp2kRelaxOutputFile.assert_attr", "pwtools.parse.Cp2kRelaxOutputFile.assert_attr_lst", "pwtools.parse.Cp2kRelaxOutputFile.assert_set_attr", "pwtools.parse.Cp2kRelaxOutputFile.assert_set_attr_lst", "pwtools.parse.Cp2kRelaxOutputFile.check_set_attr", "pwtools.parse.Cp2kRelaxOutputFile.check_set_attr_lst", "pwtools.parse.Cp2kRelaxOutputFile.default_units", "pwtools.parse.Cp2kRelaxOutputFile.dump", "pwtools.parse.Cp2kRelaxOutputFile.get_cell", "pwtools.parse.Cp2kRelaxOutputFile.get_cont", "pwtools.parse.Cp2kRelaxOutputFile.get_coords", "pwtools.parse.Cp2kRelaxOutputFile.get_econst", "pwtools.parse.Cp2kRelaxOutputFile.get_ekin", "pwtools.parse.Cp2kRelaxOutputFile.get_etot", "pwtools.parse.Cp2kRelaxOutputFile.get_forces", "pwtools.parse.Cp2kRelaxOutputFile.get_natoms", "pwtools.parse.Cp2kRelaxOutputFile.get_return_attr", "pwtools.parse.Cp2kRelaxOutputFile.get_stress", "pwtools.parse.Cp2kRelaxOutputFile.get_struct", "pwtools.parse.Cp2kRelaxOutputFile.get_symbols", "pwtools.parse.Cp2kRelaxOutputFile.get_temperature", "pwtools.parse.Cp2kRelaxOutputFile.get_timestep", "pwtools.parse.Cp2kRelaxOutputFile.get_traj", "pwtools.parse.Cp2kRelaxOutputFile.get_velocity", "pwtools.parse.Cp2kRelaxOutputFile.get_volume", "pwtools.parse.Cp2kRelaxOutputFile.init_attr_lst", "pwtools.parse.Cp2kRelaxOutputFile.is_set_attr", "pwtools.parse.Cp2kRelaxOutputFile.is_set_attr_lst", "pwtools.parse.Cp2kRelaxOutputFile.load", "pwtools.parse.Cp2kRelaxOutputFile.parse", "pwtools.parse.Cp2kRelaxOutputFile.raw_return", "pwtools.parse.Cp2kRelaxOutputFile.raw_slice_get", "pwtools.parse.Cp2kRelaxOutputFile.set_all", "pwtools.parse.Cp2kRelaxOutputFile.set_attr_lst", "pwtools.parse.Cp2kRelaxOutputFile.timeaxis", "pwtools.parse.Cp2kRelaxOutputFile.try_set_attr", "pwtools.parse.Cp2kRelaxOutputFile.try_set_attr_lst", "pwtools.parse.Cp2kRelaxOutputFile.update_units", "pwtools.parse.Cp2kSCFOutputFile", "pwtools.parse.Cp2kSCFOutputFile.apply_units", "pwtools.parse.Cp2kSCFOutputFile.assert_attr", "pwtools.parse.Cp2kSCFOutputFile.assert_attr_lst", "pwtools.parse.Cp2kSCFOutputFile.assert_set_attr", "pwtools.parse.Cp2kSCFOutputFile.assert_set_attr_lst", "pwtools.parse.Cp2kSCFOutputFile.check_set_attr", "pwtools.parse.Cp2kSCFOutputFile.check_set_attr_lst", "pwtools.parse.Cp2kSCFOutputFile.default_units", "pwtools.parse.Cp2kSCFOutputFile.dump", "pwtools.parse.Cp2kSCFOutputFile.get_cont", "pwtools.parse.Cp2kSCFOutputFile.get_etot", "pwtools.parse.Cp2kSCFOutputFile.get_forces", "pwtools.parse.Cp2kSCFOutputFile.get_natoms", "pwtools.parse.Cp2kSCFOutputFile.get_return_attr", "pwtools.parse.Cp2kSCFOutputFile.get_stress", "pwtools.parse.Cp2kSCFOutputFile.get_struct", "pwtools.parse.Cp2kSCFOutputFile.get_symbols", "pwtools.parse.Cp2kSCFOutputFile.init_attr_lst", "pwtools.parse.Cp2kSCFOutputFile.is_set_attr", "pwtools.parse.Cp2kSCFOutputFile.is_set_attr_lst", "pwtools.parse.Cp2kSCFOutputFile.load", "pwtools.parse.Cp2kSCFOutputFile.parse", "pwtools.parse.Cp2kSCFOutputFile.raw_return", "pwtools.parse.Cp2kSCFOutputFile.raw_slice_get", "pwtools.parse.Cp2kSCFOutputFile.set_all", "pwtools.parse.Cp2kSCFOutputFile.set_attr_lst", "pwtools.parse.Cp2kSCFOutputFile.try_set_attr", "pwtools.parse.Cp2kSCFOutputFile.try_set_attr_lst", "pwtools.parse.Cp2kSCFOutputFile.update_units", "pwtools.parse.CpmdMDOutputFile", "pwtools.parse.CpmdMDOutputFile.apply_units", "pwtools.parse.CpmdMDOutputFile.assert_attr", "pwtools.parse.CpmdMDOutputFile.assert_attr_lst", "pwtools.parse.CpmdMDOutputFile.assert_set_attr", "pwtools.parse.CpmdMDOutputFile.assert_set_attr_lst", "pwtools.parse.CpmdMDOutputFile.check_set_attr", "pwtools.parse.CpmdMDOutputFile.check_set_attr_lst", "pwtools.parse.CpmdMDOutputFile.default_units", "pwtools.parse.CpmdMDOutputFile.dump", "pwtools.parse.CpmdMDOutputFile.get_cell", "pwtools.parse.CpmdMDOutputFile.get_cont", "pwtools.parse.CpmdMDOutputFile.get_coords", "pwtools.parse.CpmdMDOutputFile.get_coords_frac", "pwtools.parse.CpmdMDOutputFile.get_econst", "pwtools.parse.CpmdMDOutputFile.get_ekin", "pwtools.parse.CpmdMDOutputFile.get_ekin_cell", "pwtools.parse.CpmdMDOutputFile.get_ekin_elec", "pwtools.parse.CpmdMDOutputFile.get_ekinc", "pwtools.parse.CpmdMDOutputFile.get_ekinh", "pwtools.parse.CpmdMDOutputFile.get_etot", "pwtools.parse.CpmdMDOutputFile.get_forces", "pwtools.parse.CpmdMDOutputFile.get_natoms", "pwtools.parse.CpmdMDOutputFile.get_nkpoints", "pwtools.parse.CpmdMDOutputFile.get_nstep_scf", "pwtools.parse.CpmdMDOutputFile.get_return_attr", "pwtools.parse.CpmdMDOutputFile.get_scf_converged", "pwtools.parse.CpmdMDOutputFile.get_stress", "pwtools.parse.CpmdMDOutputFile.get_struct", "pwtools.parse.CpmdMDOutputFile.get_symbols", "pwtools.parse.CpmdMDOutputFile.get_temperature", "pwtools.parse.CpmdMDOutputFile.get_temperature_cell", "pwtools.parse.CpmdMDOutputFile.get_timestep", "pwtools.parse.CpmdMDOutputFile.get_traj", "pwtools.parse.CpmdMDOutputFile.get_velocity", "pwtools.parse.CpmdMDOutputFile.init_attr_lst", "pwtools.parse.CpmdMDOutputFile.is_set_attr", "pwtools.parse.CpmdMDOutputFile.is_set_attr_lst", "pwtools.parse.CpmdMDOutputFile.load", "pwtools.parse.CpmdMDOutputFile.parse", "pwtools.parse.CpmdMDOutputFile.raw_return", "pwtools.parse.CpmdMDOutputFile.raw_slice_get", "pwtools.parse.CpmdMDOutputFile.set_all", "pwtools.parse.CpmdMDOutputFile.set_attr_lst", "pwtools.parse.CpmdMDOutputFile.timeaxis", "pwtools.parse.CpmdMDOutputFile.try_set_attr", "pwtools.parse.CpmdMDOutputFile.try_set_attr_lst", "pwtools.parse.CpmdMDOutputFile.update_units", "pwtools.parse.CpmdSCFOutputFile", "pwtools.parse.CpmdSCFOutputFile.apply_units", "pwtools.parse.CpmdSCFOutputFile.assert_attr", "pwtools.parse.CpmdSCFOutputFile.assert_attr_lst", "pwtools.parse.CpmdSCFOutputFile.assert_set_attr", "pwtools.parse.CpmdSCFOutputFile.assert_set_attr_lst", "pwtools.parse.CpmdSCFOutputFile.check_set_attr", "pwtools.parse.CpmdSCFOutputFile.check_set_attr_lst", "pwtools.parse.CpmdSCFOutputFile.default_units", "pwtools.parse.CpmdSCFOutputFile.dump", "pwtools.parse.CpmdSCFOutputFile.get_cell", "pwtools.parse.CpmdSCFOutputFile.get_cont", "pwtools.parse.CpmdSCFOutputFile.get_coords_frac", "pwtools.parse.CpmdSCFOutputFile.get_etot", "pwtools.parse.CpmdSCFOutputFile.get_forces", "pwtools.parse.CpmdSCFOutputFile.get_natoms", "pwtools.parse.CpmdSCFOutputFile.get_nkpoints", "pwtools.parse.CpmdSCFOutputFile.get_nstep_scf", "pwtools.parse.CpmdSCFOutputFile.get_return_attr", "pwtools.parse.CpmdSCFOutputFile.get_scf_converged", "pwtools.parse.CpmdSCFOutputFile.get_stress", "pwtools.parse.CpmdSCFOutputFile.get_struct", "pwtools.parse.CpmdSCFOutputFile.get_symbols", "pwtools.parse.CpmdSCFOutputFile.init_attr_lst", "pwtools.parse.CpmdSCFOutputFile.is_set_attr", "pwtools.parse.CpmdSCFOutputFile.is_set_attr_lst", "pwtools.parse.CpmdSCFOutputFile.load", "pwtools.parse.CpmdSCFOutputFile.parse", "pwtools.parse.CpmdSCFOutputFile.raw_return", "pwtools.parse.CpmdSCFOutputFile.raw_slice_get", "pwtools.parse.CpmdSCFOutputFile.set_all", "pwtools.parse.CpmdSCFOutputFile.set_attr_lst", "pwtools.parse.CpmdSCFOutputFile.try_set_attr", "pwtools.parse.CpmdSCFOutputFile.try_set_attr_lst", "pwtools.parse.CpmdSCFOutputFile.update_units", "pwtools.parse.DcdOutputFile", "pwtools.parse.DcdOutputFile.get_cell", "pwtools.parse.DcdOutputFile.get_coords", "pwtools.parse.DcdOutputFile.get_cryst_const", "pwtools.parse.DcdOutputFile.get_natoms", "pwtools.parse.DcdOutputFile.get_nstep", "pwtools.parse.DcdOutputFile.get_volume", "pwtools.parse.Ha", "pwtools.parse.LammpsDcdMDOutputFile", "pwtools.parse.LammpsDcdMDOutputFile.apply_units", "pwtools.parse.LammpsDcdMDOutputFile.assert_attr", "pwtools.parse.LammpsDcdMDOutputFile.assert_attr_lst", "pwtools.parse.LammpsDcdMDOutputFile.assert_set_attr", "pwtools.parse.LammpsDcdMDOutputFile.assert_set_attr_lst", "pwtools.parse.LammpsDcdMDOutputFile.check_set_attr", "pwtools.parse.LammpsDcdMDOutputFile.check_set_attr_lst", "pwtools.parse.LammpsDcdMDOutputFile.default_units", "pwtools.parse.LammpsDcdMDOutputFile.dump", "pwtools.parse.LammpsDcdMDOutputFile.get_cell", "pwtools.parse.LammpsDcdMDOutputFile.get_cont", "pwtools.parse.LammpsDcdMDOutputFile.get_coords", "pwtools.parse.LammpsDcdMDOutputFile.get_coords_frac", "pwtools.parse.LammpsDcdMDOutputFile.get_cryst_const", "pwtools.parse.LammpsDcdMDOutputFile.get_ekin", "pwtools.parse.LammpsDcdMDOutputFile.get_etot", "pwtools.parse.LammpsDcdMDOutputFile.get_forces", "pwtools.parse.LammpsDcdMDOutputFile.get_natoms", "pwtools.parse.LammpsDcdMDOutputFile.get_nstep", "pwtools.parse.LammpsDcdMDOutputFile.get_return_attr", "pwtools.parse.LammpsDcdMDOutputFile.get_stress", "pwtools.parse.LammpsDcdMDOutputFile.get_struct", "pwtools.parse.LammpsDcdMDOutputFile.get_symbols", "pwtools.parse.LammpsDcdMDOutputFile.get_temperature", "pwtools.parse.LammpsDcdMDOutputFile.get_timestep", "pwtools.parse.LammpsDcdMDOutputFile.get_traj", "pwtools.parse.LammpsDcdMDOutputFile.get_velocity", "pwtools.parse.LammpsDcdMDOutputFile.get_volume", "pwtools.parse.LammpsDcdMDOutputFile.init_attr_lst", "pwtools.parse.LammpsDcdMDOutputFile.is_set_attr", "pwtools.parse.LammpsDcdMDOutputFile.is_set_attr_lst", "pwtools.parse.LammpsDcdMDOutputFile.load", "pwtools.parse.LammpsDcdMDOutputFile.parse", "pwtools.parse.LammpsDcdMDOutputFile.raw_return", "pwtools.parse.LammpsDcdMDOutputFile.raw_slice_get", "pwtools.parse.LammpsDcdMDOutputFile.set_all", "pwtools.parse.LammpsDcdMDOutputFile.set_attr_lst", "pwtools.parse.LammpsDcdMDOutputFile.timeaxis", "pwtools.parse.LammpsDcdMDOutputFile.try_set_attr", "pwtools.parse.LammpsDcdMDOutputFile.try_set_attr_lst", "pwtools.parse.LammpsDcdMDOutputFile.update_units", "pwtools.parse.LammpsTextMDOutputFile", "pwtools.parse.LammpsTextMDOutputFile.apply_units", "pwtools.parse.LammpsTextMDOutputFile.assert_attr", "pwtools.parse.LammpsTextMDOutputFile.assert_attr_lst", "pwtools.parse.LammpsTextMDOutputFile.assert_set_attr", "pwtools.parse.LammpsTextMDOutputFile.assert_set_attr_lst", "pwtools.parse.LammpsTextMDOutputFile.check_set_attr", "pwtools.parse.LammpsTextMDOutputFile.check_set_attr_lst", "pwtools.parse.LammpsTextMDOutputFile.default_units", "pwtools.parse.LammpsTextMDOutputFile.dump", "pwtools.parse.LammpsTextMDOutputFile.get_cell", "pwtools.parse.LammpsTextMDOutputFile.get_cont", "pwtools.parse.LammpsTextMDOutputFile.get_coords", "pwtools.parse.LammpsTextMDOutputFile.get_coords_frac", "pwtools.parse.LammpsTextMDOutputFile.get_cryst_const", "pwtools.parse.LammpsTextMDOutputFile.get_ekin", "pwtools.parse.LammpsTextMDOutputFile.get_etot", "pwtools.parse.LammpsTextMDOutputFile.get_forces", "pwtools.parse.LammpsTextMDOutputFile.get_natoms", "pwtools.parse.LammpsTextMDOutputFile.get_return_attr", "pwtools.parse.LammpsTextMDOutputFile.get_stress", "pwtools.parse.LammpsTextMDOutputFile.get_struct", "pwtools.parse.LammpsTextMDOutputFile.get_symbols", "pwtools.parse.LammpsTextMDOutputFile.get_temperature", "pwtools.parse.LammpsTextMDOutputFile.get_timestep", "pwtools.parse.LammpsTextMDOutputFile.get_traj", "pwtools.parse.LammpsTextMDOutputFile.get_velocity", "pwtools.parse.LammpsTextMDOutputFile.get_volume", "pwtools.parse.LammpsTextMDOutputFile.init_attr_lst", "pwtools.parse.LammpsTextMDOutputFile.is_set_attr", "pwtools.parse.LammpsTextMDOutputFile.is_set_attr_lst", "pwtools.parse.LammpsTextMDOutputFile.load", "pwtools.parse.LammpsTextMDOutputFile.parse", "pwtools.parse.LammpsTextMDOutputFile.raw_return", "pwtools.parse.LammpsTextMDOutputFile.raw_slice_get", "pwtools.parse.LammpsTextMDOutputFile.set_all", "pwtools.parse.LammpsTextMDOutputFile.set_attr_lst", "pwtools.parse.LammpsTextMDOutputFile.timeaxis", "pwtools.parse.LammpsTextMDOutputFile.try_set_attr", "pwtools.parse.LammpsTextMDOutputFile.try_set_attr_lst", "pwtools.parse.LammpsTextMDOutputFile.update_units", "pwtools.parse.PDBFile", "pwtools.parse.PDBFile.apply_units", "pwtools.parse.PDBFile.assert_attr", "pwtools.parse.PDBFile.assert_attr_lst", "pwtools.parse.PDBFile.assert_set_attr", "pwtools.parse.PDBFile.assert_set_attr_lst", "pwtools.parse.PDBFile.check_set_attr", "pwtools.parse.PDBFile.check_set_attr_lst", "pwtools.parse.PDBFile.default_units", "pwtools.parse.PDBFile.dump", "pwtools.parse.PDBFile.get_cont", "pwtools.parse.PDBFile.get_coords", "pwtools.parse.PDBFile.get_cryst_const", "pwtools.parse.PDBFile.get_return_attr", "pwtools.parse.PDBFile.get_struct", "pwtools.parse.PDBFile.get_symbols", "pwtools.parse.PDBFile.init_attr_lst", "pwtools.parse.PDBFile.is_set_attr", "pwtools.parse.PDBFile.is_set_attr_lst", "pwtools.parse.PDBFile.load", "pwtools.parse.PDBFile.parse", "pwtools.parse.PDBFile.raw_return", "pwtools.parse.PDBFile.raw_slice_get", "pwtools.parse.PDBFile.set_all", "pwtools.parse.PDBFile.set_attr_lst", "pwtools.parse.PDBFile.try_set_attr", "pwtools.parse.PDBFile.try_set_attr_lst", "pwtools.parse.PDBFile.update_units", "pwtools.parse.PwMDOutputFile", "pwtools.parse.PwMDOutputFile.apply_units", "pwtools.parse.PwMDOutputFile.assert_attr", "pwtools.parse.PwMDOutputFile.assert_attr_lst", "pwtools.parse.PwMDOutputFile.assert_set_attr", "pwtools.parse.PwMDOutputFile.assert_set_attr_lst", "pwtools.parse.PwMDOutputFile.check_set_attr", "pwtools.parse.PwMDOutputFile.check_set_attr_lst", "pwtools.parse.PwMDOutputFile.default_units", "pwtools.parse.PwMDOutputFile.dump", "pwtools.parse.PwMDOutputFile.get_alat", "pwtools.parse.PwMDOutputFile.get_cell", "pwtools.parse.PwMDOutputFile.get_cell_unit", "pwtools.parse.PwMDOutputFile.get_cont", "pwtools.parse.PwMDOutputFile.get_coords", "pwtools.parse.PwMDOutputFile.get_coords_frac", "pwtools.parse.PwMDOutputFile.get_coords_unit", "pwtools.parse.PwMDOutputFile.get_ekin", "pwtools.parse.PwMDOutputFile.get_etot", "pwtools.parse.PwMDOutputFile.get_forces", "pwtools.parse.PwMDOutputFile.get_natoms", "pwtools.parse.PwMDOutputFile.get_nkpoints", "pwtools.parse.PwMDOutputFile.get_nstep_scf", "pwtools.parse.PwMDOutputFile.get_return_attr", "pwtools.parse.PwMDOutputFile.get_scf_converged", "pwtools.parse.PwMDOutputFile.get_stress", "pwtools.parse.PwMDOutputFile.get_struct", "pwtools.parse.PwMDOutputFile.get_symbols", "pwtools.parse.PwMDOutputFile.get_temperature", "pwtools.parse.PwMDOutputFile.get_timestep", "pwtools.parse.PwMDOutputFile.get_traj", "pwtools.parse.PwMDOutputFile.init_attr_lst", "pwtools.parse.PwMDOutputFile.is_set_attr", "pwtools.parse.PwMDOutputFile.is_set_attr_lst", "pwtools.parse.PwMDOutputFile.load", "pwtools.parse.PwMDOutputFile.parse", "pwtools.parse.PwMDOutputFile.raw_return", "pwtools.parse.PwMDOutputFile.raw_slice_get", "pwtools.parse.PwMDOutputFile.set_all", "pwtools.parse.PwMDOutputFile.set_attr_lst", "pwtools.parse.PwMDOutputFile.timeaxis", "pwtools.parse.PwMDOutputFile.try_set_attr", "pwtools.parse.PwMDOutputFile.try_set_attr_lst", "pwtools.parse.PwMDOutputFile.update_units", "pwtools.parse.PwSCFOutputFile", "pwtools.parse.PwSCFOutputFile.apply_units", "pwtools.parse.PwSCFOutputFile.assert_attr", "pwtools.parse.PwSCFOutputFile.assert_attr_lst", "pwtools.parse.PwSCFOutputFile.assert_set_attr", "pwtools.parse.PwSCFOutputFile.assert_set_attr_lst", "pwtools.parse.PwSCFOutputFile.check_set_attr", "pwtools.parse.PwSCFOutputFile.check_set_attr_lst", "pwtools.parse.PwSCFOutputFile.default_units", "pwtools.parse.PwSCFOutputFile.dump", "pwtools.parse.PwSCFOutputFile.get_alat", "pwtools.parse.PwSCFOutputFile.get_cell", "pwtools.parse.PwSCFOutputFile.get_cont", "pwtools.parse.PwSCFOutputFile.get_coords", "pwtools.parse.PwSCFOutputFile.get_etot", "pwtools.parse.PwSCFOutputFile.get_forces", "pwtools.parse.PwSCFOutputFile.get_natoms", "pwtools.parse.PwSCFOutputFile.get_nkpoints", "pwtools.parse.PwSCFOutputFile.get_nstep_scf", "pwtools.parse.PwSCFOutputFile.get_return_attr", "pwtools.parse.PwSCFOutputFile.get_scf_converged", "pwtools.parse.PwSCFOutputFile.get_stress", "pwtools.parse.PwSCFOutputFile.get_struct", "pwtools.parse.PwSCFOutputFile.get_symbols", "pwtools.parse.PwSCFOutputFile.init_attr_lst", "pwtools.parse.PwSCFOutputFile.is_set_attr", "pwtools.parse.PwSCFOutputFile.is_set_attr_lst", "pwtools.parse.PwSCFOutputFile.load", "pwtools.parse.PwSCFOutputFile.parse", "pwtools.parse.PwSCFOutputFile.raw_return", "pwtools.parse.PwSCFOutputFile.raw_slice_get", "pwtools.parse.PwSCFOutputFile.set_all", "pwtools.parse.PwSCFOutputFile.set_attr_lst", "pwtools.parse.PwSCFOutputFile.try_set_attr", "pwtools.parse.PwSCFOutputFile.try_set_attr_lst", "pwtools.parse.PwSCFOutputFile.update_units", "pwtools.parse.PwVCMDOutputFile", "pwtools.parse.PwVCMDOutputFile.apply_units", "pwtools.parse.PwVCMDOutputFile.assert_attr", "pwtools.parse.PwVCMDOutputFile.assert_attr_lst", "pwtools.parse.PwVCMDOutputFile.assert_set_attr", "pwtools.parse.PwVCMDOutputFile.assert_set_attr_lst", "pwtools.parse.PwVCMDOutputFile.check_set_attr", "pwtools.parse.PwVCMDOutputFile.check_set_attr_lst", "pwtools.parse.PwVCMDOutputFile.default_units", "pwtools.parse.PwVCMDOutputFile.dump", "pwtools.parse.PwVCMDOutputFile.get_alat", "pwtools.parse.PwVCMDOutputFile.get_cell", "pwtools.parse.PwVCMDOutputFile.get_cell_unit", "pwtools.parse.PwVCMDOutputFile.get_cont", "pwtools.parse.PwVCMDOutputFile.get_coords", "pwtools.parse.PwVCMDOutputFile.get_coords_frac", "pwtools.parse.PwVCMDOutputFile.get_coords_unit", "pwtools.parse.PwVCMDOutputFile.get_econst", "pwtools.parse.PwVCMDOutputFile.get_ekin", "pwtools.parse.PwVCMDOutputFile.get_etot", "pwtools.parse.PwVCMDOutputFile.get_forces", "pwtools.parse.PwVCMDOutputFile.get_natoms", "pwtools.parse.PwVCMDOutputFile.get_nkpoints", "pwtools.parse.PwVCMDOutputFile.get_nstep_scf", "pwtools.parse.PwVCMDOutputFile.get_return_attr", "pwtools.parse.PwVCMDOutputFile.get_scf_converged", "pwtools.parse.PwVCMDOutputFile.get_stress", "pwtools.parse.PwVCMDOutputFile.get_struct", "pwtools.parse.PwVCMDOutputFile.get_symbols", "pwtools.parse.PwVCMDOutputFile.get_temperature", "pwtools.parse.PwVCMDOutputFile.get_timestep", "pwtools.parse.PwVCMDOutputFile.get_traj", "pwtools.parse.PwVCMDOutputFile.init_attr_lst", "pwtools.parse.PwVCMDOutputFile.is_set_attr", "pwtools.parse.PwVCMDOutputFile.is_set_attr_lst", "pwtools.parse.PwVCMDOutputFile.load", "pwtools.parse.PwVCMDOutputFile.parse", "pwtools.parse.PwVCMDOutputFile.raw_return", "pwtools.parse.PwVCMDOutputFile.raw_slice_get", "pwtools.parse.PwVCMDOutputFile.set_all", "pwtools.parse.PwVCMDOutputFile.set_attr_lst", "pwtools.parse.PwVCMDOutputFile.timeaxis", "pwtools.parse.PwVCMDOutputFile.try_set_attr", "pwtools.parse.PwVCMDOutputFile.try_set_attr_lst", "pwtools.parse.PwVCMDOutputFile.update_units", "pwtools.parse.Ry", "pwtools.parse.StructureFileParser", "pwtools.parse.StructureFileParser.apply_units", "pwtools.parse.StructureFileParser.assert_attr", "pwtools.parse.StructureFileParser.assert_attr_lst", "pwtools.parse.StructureFileParser.assert_set_attr", "pwtools.parse.StructureFileParser.assert_set_attr_lst", "pwtools.parse.StructureFileParser.check_set_attr", "pwtools.parse.StructureFileParser.check_set_attr_lst", "pwtools.parse.StructureFileParser.default_units", "pwtools.parse.StructureFileParser.dump", "pwtools.parse.StructureFileParser.get_cont", "pwtools.parse.StructureFileParser.get_return_attr", "pwtools.parse.StructureFileParser.get_struct", "pwtools.parse.StructureFileParser.init_attr_lst", "pwtools.parse.StructureFileParser.is_set_attr", "pwtools.parse.StructureFileParser.is_set_attr_lst", "pwtools.parse.StructureFileParser.load", "pwtools.parse.StructureFileParser.parse", "pwtools.parse.StructureFileParser.raw_return", "pwtools.parse.StructureFileParser.raw_slice_get", "pwtools.parse.StructureFileParser.set_all", "pwtools.parse.StructureFileParser.set_attr_lst", "pwtools.parse.StructureFileParser.try_set_attr", "pwtools.parse.StructureFileParser.try_set_attr_lst", "pwtools.parse.StructureFileParser.update_units", "pwtools.parse.TrajectoryFileParser", "pwtools.parse.TrajectoryFileParser.apply_units", "pwtools.parse.TrajectoryFileParser.assert_attr", "pwtools.parse.TrajectoryFileParser.assert_attr_lst", "pwtools.parse.TrajectoryFileParser.assert_set_attr", "pwtools.parse.TrajectoryFileParser.assert_set_attr_lst", "pwtools.parse.TrajectoryFileParser.check_set_attr", "pwtools.parse.TrajectoryFileParser.check_set_attr_lst", "pwtools.parse.TrajectoryFileParser.default_units", "pwtools.parse.TrajectoryFileParser.dump", "pwtools.parse.TrajectoryFileParser.get_cont", "pwtools.parse.TrajectoryFileParser.get_return_attr", "pwtools.parse.TrajectoryFileParser.get_struct", "pwtools.parse.TrajectoryFileParser.get_traj", "pwtools.parse.TrajectoryFileParser.init_attr_lst", "pwtools.parse.TrajectoryFileParser.is_set_attr", "pwtools.parse.TrajectoryFileParser.is_set_attr_lst", "pwtools.parse.TrajectoryFileParser.load", "pwtools.parse.TrajectoryFileParser.parse", "pwtools.parse.TrajectoryFileParser.raw_return", "pwtools.parse.TrajectoryFileParser.raw_slice_get", "pwtools.parse.TrajectoryFileParser.set_all", "pwtools.parse.TrajectoryFileParser.set_attr_lst", "pwtools.parse.TrajectoryFileParser.timeaxis", "pwtools.parse.TrajectoryFileParser.try_set_attr", "pwtools.parse.TrajectoryFileParser.try_set_attr_lst", "pwtools.parse.TrajectoryFileParser.update_units", "pwtools.parse.arr1d_from_txt", "pwtools.parse.arr2d_from_txt", "pwtools.parse.axis_lens", "pwtools.parse.eV", "pwtools.parse.float_from_txt", "pwtools.parse.fs", "pwtools.parse.int_from_txt", "pwtools.parse.nstep_from_txt", "pwtools.parse.pi", "pwtools.parse.ps", "pwtools.parse.thart", "pwtools.parse.traj_from_txt", "pwtools.pwscf.EPS", "pwtools.pwscf.atpos_str", "pwtools.pwscf.atpos_str_fast", "pwtools.pwscf.atspec_str", "pwtools.pwscf.bool2str", "pwtools.pwscf.ibrav2cell", "pwtools.pwscf.kpoints_str", "pwtools.pwscf.kpoints_str_pwin", "pwtools.pwscf.kpoints_str_pwin_full", "pwtools.pwscf.kpointstr", "pwtools.pwscf.kpointstr_pwin", "pwtools.pwscf.kpointstr_pwin2", "pwtools.pwscf.read_all_dyn", "pwtools.pwscf.read_dyn", "pwtools.pwscf.read_dynmat", "pwtools.pwscf.read_dynmat_ir_raman", "pwtools.pwscf.read_dynmat_out", "pwtools.pwscf.read_matdyn_freq", "pwtools.pwscf.read_matdyn_modes", "pwtools.pydos.direct_pdos", "pwtools.pydos.fvacf", "pwtools.pydos.pdos", "pwtools.pydos.pyvacf", "pwtools.pydos.vacf_pdos", "pwtools.random.RandomStructure", "pwtools.random.RandomStructure.get_random_cryst_const", "pwtools.random.RandomStructure.get_random_struct", "pwtools.random.RandomStructureFail", "pwtools.random.pi", "pwtools.random.random_struct", "pwtools.rbf.core.JAX_MODE", "pwtools.rbf.core.Rbf", "pwtools.rbf.core.Rbf.deriv", "pwtools.rbf.core.Rbf.deriv_jax", "pwtools.rbf.core.Rbf.fit", "pwtools.rbf.core.Rbf.fit_error", "pwtools.rbf.core.Rbf.get_distsq", "pwtools.rbf.core.Rbf.get_params", "pwtools.rbf.core.Rbf.predict", "pwtools.rbf.core._np_distsq", "pwtools.rbf.core.estimate_p", "pwtools.rbf.core.euclidean_dists", "pwtools.rbf.core.jit", "pwtools.rbf.core.rbf_dct", "pwtools.rbf.core.rbf_gauss", "pwtools.rbf.core.rbf_inv_multi", "pwtools.rbf.core.rbf_multi", "pwtools.rbf.core.squared_dists", "pwtools.rbf.hyperopt.FitError", "pwtools.rbf.hyperopt.FitError.cv", "pwtools.rbf.hyperopt.FitError.err_cv", "pwtools.rbf.hyperopt.FitError.err_direct", "pwtools.rbf.hyperopt.RepeatedKFold", "pwtools.rbf.hyperopt.fit_opt", "pwtools.regex.float_re", "pwtools.signal.FIRFilter", "pwtools.signal.acorr", "pwtools.signal.cauchy", "pwtools.signal.dft", "pwtools.signal.ezfft", "pwtools.signal.fft_1d_loop", "pwtools.signal.fftsample", "pwtools.signal.find_peaks", "pwtools.signal.gauss", "pwtools.signal.lorentz", "pwtools.signal.mirror", "pwtools.signal.odd", "pwtools.signal.pad_zeros", "pwtools.signal.scale", "pwtools.signal.smooth", "pwtools.signal.welch", "pwtools.sql.SQLEntry", "pwtools.sql.SQLiteDB", "pwtools.sql.SQLiteDB.add_column", "pwtools.sql.SQLiteDB.add_columns", "pwtools.sql.SQLiteDB.attach_column", "pwtools.sql.SQLiteDB.commit", "pwtools.sql.SQLiteDB.create_table", "pwtools.sql.SQLiteDB.execute", "pwtools.sql.SQLiteDB.executemany", "pwtools.sql.SQLiteDB.executescript", "pwtools.sql.SQLiteDB.fill_column", "pwtools.sql.SQLiteDB.finish", "pwtools.sql.SQLiteDB.get_array", "pwtools.sql.SQLiteDB.get_array1d", "pwtools.sql.SQLiteDB.get_dict", "pwtools.sql.SQLiteDB.get_header", "pwtools.sql.SQLiteDB.get_list1d", "pwtools.sql.SQLiteDB.get_max_rowid", "pwtools.sql.SQLiteDB.get_single", "pwtools.sql.SQLiteDB.get_table", "pwtools.sql.SQLiteDB.has_column", "pwtools.sql.SQLiteDB.has_table", "pwtools.sql.SQLiteDB.set_table", "pwtools.sql.find_sqltype", "pwtools.sql.fix_sql_header", "pwtools.sql.fix_sqltype", "pwtools.sql.get_test_db", "pwtools.sql.makedb", "pwtools.sql.sql_column", "pwtools.sql.sql_column_old", "pwtools.sql.sql_matrix", "pwtools.symmetry.is_same_struct", "pwtools.symmetry.spglib2struct", "pwtools.symmetry.spglib_get_primitive", "pwtools.symmetry.spglib_get_spacegroup", "pwtools.symmetry.struct2spglib", "pwtools.thermo.Gibbs", "pwtools.thermo.Gibbs.calc_F", "pwtools.thermo.Gibbs.calc_G", "pwtools.thermo.Gibbs.calc_H", "pwtools.thermo.Gibbs.set_fitfunc", "pwtools.thermo.HarmonicThermo", "pwtools.thermo.HarmonicThermo.cv", "pwtools.thermo.HarmonicThermo.evib", "pwtools.thermo.HarmonicThermo.fvib", "pwtools.thermo.HarmonicThermo.isochoric_heat_capacity", "pwtools.thermo.HarmonicThermo.svib", "pwtools.thermo.HarmonicThermo.vibrational_entropy", "pwtools.thermo.HarmonicThermo.vibrational_free_energy", "pwtools.thermo.HarmonicThermo.vibrational_internal_energy", "pwtools.thermo.R", "pwtools.thermo.Ry_to_J", "pwtools.thermo.c0", "pwtools.thermo.coth", "pwtools.thermo.debye_func", "pwtools.thermo.eV", "pwtools.thermo.eV_by_Ang3_to_GPa", "pwtools.thermo.einstein_func", "pwtools.thermo.expansion", "pwtools.thermo.hplanck", "pwtools.thermo.kb", "pwtools.thermo.pi", "pwtools.timer.TagTimer", "pwtools.timer.TagTimer.p", "pwtools.timer.TagTimer.pt", "pwtools.timer.TagTimer.t", "pwtools.verbose.VERBOSE", "pwtools.verbose.verbose", "pwtools.visualize.ViewFactory", "pwtools.visualize.assert_struct", "pwtools.visualize.avogadro_cmd", "pwtools.visualize.view_avogadro", "pwtools.visualize.view_jmol", "pwtools.visualize.view_vmd_axsf", "pwtools.visualize.view_vmd_xyz", "pwtools.visualize.view_xcrysden", "Welcome to the pwtools documentation", "Relation to ASE", "Coordinate transformation", "Background, details, special topics", "Parameter studies", "Parsing code output and using containers", "Velocity autocorrelation function and phonon DOS", "Pwscf", "Radial Basis Function interpolation an regression", "How to do a restart in cp2k", "Phonon dispersion calculation and plotting", "Features", "<no title>", "Installation", "Quasi-harmonic approximation", "<no title>", "Tutorial"], "titleterms": {"1d": 1431, "2d": 1431, "ASE": [1418, 1433], "The": 3, "__getitem__": 326, "_ase_miss": 120, "_dcd": [0, 36, 37, 38, 39, 40], "_ensure_list": 124, "_flib": [1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52], "_np_distsq": 1309, "_read_header_config": 56, "_tran": 403, "_vinet": 541, "_vinet_deriv1": 542, "_vinet_deriv2": 543, "_write_header_config": 57, "a0": [185, 632], "a0_to_a": 186, "a2_to_an": 641, "acorr": [41, 1326], "add_column": [1343, 1344], "add_doc": 633, "add_to_config": 128, "align_cart": 404, "alpha": 187, "amu": 188, "an": 1425, "analysi": 1426, "ang": [165, 463, 692], "angl": [42, 405, 406], "angstrom": [166, 210, 693], "api": 35, "apply_unit": [212, 270, 327, 383, 696, 727, 769, 809, 849, 879, 927, 970, 1012, 1053, 1081, 1125, 1161, 1207, 1232], "approxim": [1431, 1433], "arr1d_from_txt": 1258, "arr2d_from_txt": 1259, "arr2d_to_3d": 58, "arrayio": [2, 53, 54, 55, 56, 57, 58, 59, 60], "asseq": 129, "assert_attr": [68, 213, 271, 328, 384, 472, 507, 697, 728, 770, 810, 850, 880, 928, 971, 1013, 1054, 1082, 1126, 1162, 1208, 1233], "assert_attr_lst": [69, 214, 272, 329, 385, 473, 508, 698, 729, 771, 811, 851, 881, 929, 972, 1014, 1055, 1083, 1127, 1163, 1209, 1234], "assert_cond": 130, "assert_set_attr": [70, 215, 273, 330, 386, 474, 509, 699, 730, 772, 812, 852, 882, 930, 973, 1015, 1056, 1084, 1128, 1164, 1210, 1235], "assert_set_attr_lst": [71, 216, 274, 331, 387, 475, 510, 700, 731, 773, 813, 853, 883, 931, 974, 1016, 1057, 1085, 1129, 1165, 1211, 1236], "assert_struct": 1410, "atom": [10, 1424], "atomic_data": [3, 61, 62, 63, 64, 65, 66], "atoms2struct": 407, "atpos_str": 1271, "atpos_str_fast": 1272, "atspec_str": 1273, "attach_column": 1345, "auto": 1433, "autocorrel": 1423, "avail": 1422, "avo": 189, "avogadro_cmd": 1411, "avoid": 1433, "awk": 691, "axis_len": 1260, "background": 1420, "backtick": 131, "backup": 132, "barostat_mass_w": 634, "barostat_mass_wg": 635, "barostat_nhc_mass": 636, "base": [4, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85], "basi": 1425, "batch": [5, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99], "big": 1433, "binari": 1433, "bohr": [167, 464, 694], "bohr_to_ang": 168, "bool2str": 1274, "bulkmod": 498, "c0": [190, 1393], "calc_bv": [476, 511], "calc_f": 1378, "calc_g": 1379, "calc_h": 1380, "calcul": [6, 86, 87, 88, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 1423, 1427, 1433], "calculatorbas": [100, 101, 102], "call_vmd_measure_gofr": 408, "cart2frac": 43, "cart2frac_traj": 44, "cartesian": 1419, "case": [89, 1419], "cauchi": 1327, "cc": 587, "cc2cell": 409, "cc2cell3d": 410, "cc2celldm": 411, "ccl": 588, "ccm": 589, "cell": 1433, "cell2cc": 412, "cell2cc3d": 413, "celldm2cc": 414, "center_on_atom": 415, "check_set_attr": [72, 217, 275, 332, 388, 477, 512, 701, 732, 774, 814, 854, 884, 932, 975, 1017, 1058, 1086, 1130, 1166, 1212, 1237], "check_set_attr_lst": [73, 218, 276, 333, 389, 478, 513, 702, 733, 775, 815, 855, 885, 933, 976, 1018, 1059, 1087, 1131, 1167, 1213, 1238], "cif_clear_atom_symbol": 703, "cif_str2float": 704, "ciffil": [695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725], "class": [21, 1422], "clc": 590, "clean_ax3d": 591, "cm": 592, "cmc": 593, "code": 1422, "collect_legend": [584, 594], "color": 596, "color_ax": 595, "colors_linestyl": 597, "colors_mark": 598, "column": 1419, "comb": [7, 124, 125, 126], "comment": 1426, "commit": 1346, "common": [8, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162], "compress": [219, 277, 334, 416], "concaten": 417, "config": [9, 163, 164], "constant": [10, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209], "contain": 1422, "conv_tabl": 98, "convers": 10, "coord_tran": 418, "coord_trans3d": 419, "coordin": [1419, 1424], "copi": [220, 278, 335, 578, 581], "core": [25, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317], "correl": 1423, "coth": 1394, "covalent_radii": 61, "cp2k": 1426, "cp2kdcdmdoutputfil": [726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767], "cp2kmdoutputfil": [768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807], "cp2krelaxoutputfil": [808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847], "cp2kscfoutputfil": [848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877], "cpickle_load": 133, "cpmdmdoutputfil": [878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925], "cpmdscfoutputfil": [926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960], "create_t": 1347, "cry": [11, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453], "crys_add_doc": 460, "cv": [1319, 1383], "cycle_color": 599, "cycle_colors_linestyl": 600, "cycle_colors_mark": 601, "cycle_linestyles_color": 602, "cycle_mark": 603, "cycle_markers_color": 604, "data": [1423, 1425, 1433], "data2d": [577, 578, 579], "data3d": [580, 581, 582], "databas": 1433, "datand": [640, 641], "dcd": [12, 454, 455, 456, 457, 458, 459], "dcdoutputfil": [961, 962, 963, 964, 965, 966, 967], "dct2lst": [466, 536], "debye_func": 1395, "decor": [13, 460, 461, 462], "default_paramet": [105, 113], "default_repl_kei": 99, "default_unit": [705, 734, 776, 816, 856, 886, 934, 977, 1019, 1060, 1088, 1132, 1168, 1214, 1239], "depend": 1430, "deriv": [467, 537, 1302], "deriv_jax": 1303, "deriv_spl": 664, "detail": [1420, 1430], "determin": 1425, "dft": 1328, "dict2class": 134, "dict2str": 135, "differ": 21, "direct_pdo": 1289, "dispers": 1427, "distanc": 420, "distances_traj": [45, 421], "distsq": [46, 665], "distsq_frac": 47, "do": [1423, 1426], "document": 1417, "dump": [74, 221, 279, 336, 390, 479, 514, 706, 735, 777, 817, 857, 887, 935, 978, 1020, 1061, 1089, 1133, 1169, 1215, 1240], "dyn": 191, "e0": 192, "eh": 169, "einstein_func": 1398, "elkeosfit": [471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496], "eo": [14, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545], "eosfit": [497, 498, 499, 500, 501, 502, 503, 504, 505], "ep": [127, 642, 1270], "eps0": 196, "err_cv": 1320, "err_direct": 1321, "eryd": 170, "estimate_p": 1310, "euclidean_dist": 1311, "euler_matrix": 666, "ev": [193, 544, 548, 1261, 1396], "ev_by_ang3_to_gpa": [194, 545, 1397], "ev_by_ang3_to_pa": 195, "evalu": [468, 538], "evfunct": [465, 466, 467, 468, 469, 470], "evib": 1384, "execut": 1348, "executemani": 1349, "executescript": 1350, "expans": 1399, "extend_arrai": 667, "extens": 1430, "externeo": [506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531], "ezfft": 1329, "f": [197, 1263], "fake": 1431, "fakeaseatom": [211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268], "featur": 1428, "fempti": 668, "ffloat": 136, "fft_1d_loop": 1330, "fftsampl": 1331, "fig_ax": 605, "fig_ax3d": 606, "file": 21, "file_read": 137, "file_readlin": 138, "file_template_replac": 139, "file_writ": 140, "fileiocalcul": 103, "filetempl": [90, 91, 92], "fill_column": 1351, "fill_infile_templ": [101, 106, 114], "find": 1433, "find_ex": 121, "find_peak": 1332, "find_sqltyp": 1364, "findmin": 669, "findroot": 670, "finish": 1352, "firfilt": 1325, "fit": [480, 499, 515, 1304, 1433], "fit1d": [643, 644, 645, 646, 647], "fit_error": 1305, "fit_opt": 1323, "fiterror": [1318, 1319, 1320, 1321], "fix_ep": 141, "fix_sql_head": 1365, "fix_sqltyp": 1366, "flatten": 142, "flexiblegett": [67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85], "float_from_txt": 1262, "float_r": 1324, "forc": 1424, "form": 1419, "format": 21, "fortran": 1430, "fpj": 143, "frac2cart": 48, "frac2cart_traj": 49, "fraction": 1419, "frepr": 144, "from": 1423, "fullpath": 145, "fullpathjoin": 146, "function": [1422, 1423, 1425], "fvacf": 1290, "fvib": 1385, "gauss": 1333, "get_2d_testdata": 607, "get_alat": [1090, 1134, 1170], "get_arrai": 1353, "get_array1d": 1354, "get_ase_atom": [222, 280, 337], "get_atomic_numb": 223, "get_cel": [224, 281, 338, 736, 778, 818, 888, 936, 962, 979, 1021, 1091, 1135, 1171], "get_cell_unit": [1092, 1172], "get_cont": [707, 737, 779, 819, 858, 889, 937, 980, 1022, 1062, 1093, 1136, 1173, 1216, 1241], "get_coord": [225, 282, 339, 708, 738, 780, 820, 890, 963, 981, 1023, 1063, 1094, 1137, 1174], "get_coords_frac": [226, 283, 340, 709, 891, 938, 982, 1024, 1095, 1175], "get_coords_unit": [1096, 1176], "get_cryst_const": [227, 284, 341, 710, 739, 964, 983, 1025, 1064], "get_dcd_file_info": 36, "get_dict": 1355, "get_distsq": 1306, "get_econst": [740, 781, 821, 892, 1177], "get_ekin": [228, 285, 342, 741, 782, 822, 893, 984, 1026, 1097, 1178], "get_ekin_cel": 894, "get_ekin_elec": 895, "get_ekinc": 896, "get_ekinh": 897, "get_etot": [229, 286, 343, 742, 783, 823, 859, 898, 939, 985, 1027, 1098, 1138, 1179], "get_fake_ase_atom": [230, 287, 344], "get_filenam": 147, "get_forc": [231, 288, 345, 743, 784, 824, 860, 899, 940, 986, 1028, 1099, 1139, 1180], "get_head": 1356, "get_jobfile_basenam": 94, "get_list1d": 1357, "get_magnetic_mo": 232, "get_mass": [233, 289, 346], "get_mass_uniqu": [234, 290, 347], "get_max": [500, 644, 653, 658], "get_max_rowid": 1358, "get_min": [469, 481, 501, 516, 539, 645, 649, 651, 654, 659], "get_natom": [235, 291, 348, 744, 785, 825, 861, 900, 941, 965, 987, 1029, 1100, 1140, 1181], "get_nkpoint": [901, 942, 1101, 1141, 1182], "get_nspeci": [236, 292, 349], "get_nstep": [237, 293, 350, 745, 966, 988], "get_nstep_scf": [902, 943, 1102, 1142, 1183], "get_ntypat": [238, 294, 351], "get_ord": [239, 295, 352], "get_param": 1307, "get_path_norm": 573, "get_pressur": [240, 296, 353], "get_random_cryst_const": 1295, "get_random_struct": 1296, "get_return_attr": [75, 241, 297, 354, 391, 482, 517, 711, 746, 786, 826, 862, 903, 944, 989, 1030, 1065, 1103, 1143, 1184, 1217, 1242], "get_root": [502, 646, 655, 660], "get_scf_converg": [904, 945, 1104, 1144, 1185], "get_singl": 1359, "get_spglib": [242, 298, 355], "get_spl_bv": [483, 518], "get_spl_ev": [484, 519], "get_spl_pv": [485, 520], "get_sql_record": [87, 95], "get_stress": [243, 299, 356, 747, 787, 827, 863, 905, 946, 990, 1031, 1105, 1145, 1186], "get_struct": [712, 748, 788, 828, 864, 906, 947, 991, 1032, 1066, 1106, 1146, 1187, 1218, 1243], "get_symbol": [244, 300, 357, 713, 749, 789, 829, 865, 907, 948, 992, 1033, 1067, 1107, 1147, 1188], "get_symbols_uniqu": [245, 301, 358], "get_tabl": 1360, "get_temperatur": [246, 302, 359, 750, 790, 830, 908, 993, 1034, 1108, 1189], "get_temperature_cel": 909, "get_test_db": 1367, "get_tim": [247, 303, 360], "get_timestep": [248, 304, 361, 751, 791, 831, 910, 994, 1035, 1109, 1190], "get_traj": [249, 305, 362, 752, 792, 832, 911, 995, 1036, 1110, 1191, 1244], "get_typat": [250, 306, 363], "get_veloc": [251, 307, 364, 753, 793, 833, 912, 996, 1037], "get_volum": [252, 308, 365, 754, 794, 834, 967, 997, 1038], "get_znucl": [253, 309, 366], "get_znucl_uniqu": [254, 310, 367], "gibb": [1377, 1378, 1379, 1380, 1381], "given": 1433, "gpa": 171, "grid": 1433, "grid_in_cel": 422, "h": 198, "ha": [172, 532, 546, 968], "ha_to_ev": 173, "harmon": [1431, 1433], "harmonicthermo": [1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, 1390], "hartre": [10, 174], "has_column": 1361, "has_tabl": 1362, "hbar": 199, "header_com": 53, "header_dtyp": 454, "header_maxlin": 54, "header_typ": 455, "high": 1422, "how": [1425, 1426], "hplanck": [200, 1400], "hyperopt": [26, 1318, 1319, 1320, 1321, 1322, 1323], "ibrav2cel": 1275, "ic": 608, "icl": 609, "icm": 610, "iflatten": 148, "ilc": 611, "im": 612, "imc": 613, "implement": [1419, 1425], "implemented_properti": [107, 115], "infile_templ": [108, 116], "init_attr_lst": [76, 255, 311, 368, 392, 486, 521, 714, 755, 795, 835, 866, 913, 949, 998, 1039, 1068, 1111, 1148, 1192, 1219, 1245], "init_params_from_input": [102, 109, 117], "inner_points_mask": 671, "input": 21, "instal": 1430, "instruct": 1430, "int_from_txt": 1264, "interfac": 34, "interpol": [1425, 1433], "interpol2d": [648, 649], "invsplev": 661, "io": [15, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 1433], "is_mono": [503, 647, 656, 662], "is_same_struct": 1372, "is_seq": 149, "is_set_attr": [77, 256, 312, 369, 393, 487, 522, 715, 756, 796, 836, 867, 914, 950, 999, 1040, 1069, 1112, 1149, 1193, 1220, 1246], "is_set_attr_lst": [78, 257, 313, 370, 394, 488, 523, 716, 757, 797, 837, 868, 915, 951, 1000, 1041, 1070, 1113, 1150, 1194, 1221, 1247], "is_struct": [258, 314, 371], "is_traj": [259, 315, 372], "isochoric_heat_capac": 1386, "iter_color": 614, "iter_colors_linestyl": 615, "iter_colors_mark": 616, "iter_linestyl": 617, "iter_linestyles_color": 618, "iter_mark": 619, "iter_markers_color": 620, "j_to_ev": 175, "j_to_rcm": 176, "jax_mod": 1300, "jit": 1312, "k": [1431, 1433], "kb": [201, 637, 1401], "kgrid": 423, "kpath": [16, 572, 573, 574, 575], "kpoints_str": 1276, "kpoints_str_pwin": 1277, "kpoints_str_pwin_ful": 1278, "kpointstr": 1279, "kpointstr_pwin": 1280, "kpointstr_pwin2": 1281, "kpts2mp": 122, "lammp": [17, 104, 105, 106, 107, 108, 109, 110, 111, 576], "lammpsdcdmdoutputfil": [969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010], "lammpstextmdoutputfil": [1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051], "lazyprop": 461, "legend": 585, "level": 1422, "linestyl": 621, "linestyles_color": 622, "load": [79, 260, 316, 373, 395, 489, 524, 717, 758, 798, 838, 869, 916, 952, 1001, 1042, 1071, 1114, 1151, 1195, 1222, 1248], "load_h5": 549, "lorentz": 1334, "lst2dct": [470, 540], "m0": [202, 638], "machin": [93, 94, 95], "make_axes_grid_fig": 623, "makedb": 1368, "makedir": 150, "marker": 624, "markers_color": 625, "mass": [10, 62], "match_mask": 672, "maxderivexcept": 533, "md": [1423, 1433], "mean": 424, "meshgridt": [626, 673], "min_image_convent": 425, "mirror": 1335, "miss": 63, "mix": 426, "molecular": 34, "monkhorst": 1433, "more": 1433, "mpl": [18, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631], "mttk": [19, 632, 633, 634, 635, 636, 637, 638, 639], "mu0": 203, "name": 163, "nearest_neighbor": 427, "nearest_neighbors_from_dist": 428, "nearest_neighbors_struct": 429, "nested_loop": 125, "new_axi": 627, "norm": 674, "norm_int": 675, "normal": 676, "notat": 1419, "note": [1419, 1430], "nstep_from_txt": 1265, "num": [20, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690], "number": 64, "numer": 1425, "odd": 1336, "open_and_clos": 462, "open_fil": 37, "openmp": 1430, "option": 1430, "order_similar": 677, "other": [1425, 1431], "output": [21, 1422, 1433], "p": [205, 1267, 1404, 1425], "pack": 1433, "pad": 1423, "pad_zero": 1337, "paramet": [1421, 1425], "parameterstudi": [96, 97], "pars": [21, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218, 1219, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 1229, 1230, 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239, 1240, 1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257, 1258, 1259, 1260, 1261, 1262, 1263, 1264, 1265, 1266, 1267, 1268, 1269, 1422, 1433], "parser": [21, 1422], "particle_nhc_mass": 639, "pbc_wrap": 430, "pbc_wrap_coord": 431, "pdbfile": [1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079], "pdo": 1291, "period": 3, "permit_sigpip": 151, "phonon": [1423, 1427], "pi": [204, 432, 678, 1266, 1298, 1402], "plot": [583, 584, 585, 586, 1427], "plot_di": 575, "plotlines3d": 628, "poly_pow": 679, "poly_str": 680, "polyfit": [650, 651, 681], "polyfit1d": [652, 653, 654, 655, 656], "polyv": 682, "pop_from_list": 152, "populated_attr": 433, "power": 1423, "predict": 1308, "prepare_plot": 629, "pressur": 504, "print_dct": 153, "pt": [65, 1405], "pwmdoutputfil": [1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123], "pwscf": [22, 112, 113, 114, 115, 116, 117, 118, 119, 1270, 1271, 1272, 1273, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1282, 1283, 1284, 1285, 1286, 1287, 1288, 1424], "pwscfoutputfil": [1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159], "pwtool": [36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218, 1219, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 1229, 1230, 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239, 1240, 1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257, 1258, 1259, 1260, 1261, 1262, 1263, 1264, 1265, 1266, 1267, 1268, 1269, 1270, 1271, 1272, 1273, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1282, 1283, 1284, 1285, 1286, 1287, 1288, 1289, 1290, 1291, 1292, 1293, 1294, 1295, 1296, 1297, 1298, 1299, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1338, 1339, 1340, 1341, 1342, 1343, 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1364, 1365, 1366, 1367, 1368, 1369, 1370, 1371, 1372, 1373, 1374, 1375, 1376, 1377, 1378, 1379, 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, 1390, 1391, 1392, 1393, 1394, 1395, 1396, 1397, 1398, 1399, 1400, 1401, 1402, 1403, 1404, 1405, 1406, 1407, 1408, 1409, 1410, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1426], "pwvcmdoutputfil": [1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1203, 1204], "pydo": [23, 1289, 1290, 1291, 1292, 1293], "pyvacf": 1292, "qha": 1431, "quasi": [1431, 1433], "quick": 1430, "r": [177, 1391, 1425], "radial": 1425, "random": [24, 1294, 1295, 1296, 1297, 1298, 1299], "random_struct": 1299, "randomstructur": [1294, 1295, 1296], "randomstructurefail": 1297, "raw_return": [80, 261, 317, 374, 396, 490, 525, 719, 760, 800, 840, 871, 918, 954, 1003, 1044, 1073, 1116, 1153, 1197, 1224, 1250], "raw_slice_get": [81, 262, 318, 375, 397, 491, 526, 720, 761, 801, 841, 872, 919, 955, 1004, 1045, 1074, 1117, 1154, 1198, 1225, 1251], "rbf": [25, 26, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1425], "rbf_dct": 1313, "rbf_gauss": 1314, "rbf_inv_multi": 1315, "rbf_multi": 1316, "rcm_to_hz": 206, "read_all_dyn": 1282, "read_cif": 550, "read_cp2k_md": 551, "read_cp2k_md_dcd": 552, "read_cp2k_relax": 553, "read_cp2k_scf": 554, "read_cpmd_md": 555, "read_cpmd_scf": 556, "read_dcd_data": [38, 456], "read_dcd_data_f": 457, "read_dcd_data_from_unit": 39, "read_dcd_data_ref": 458, "read_dcd_head": 459, "read_dcd_header_from_unit": 40, "read_dyn": 1283, "read_dynmat": 1284, "read_dynmat_ir_raman": 1285, "read_dynmat_out": 1286, "read_h5": 557, "read_lammps_md_dcd": 558, "read_lammps_md_txt": 559, "read_matdyn_freq": 1287, "read_matdyn_mod": 1288, "read_pdb": 560, "read_pickl": 561, "read_pw_md": 562, "read_pw_scf": 563, "read_pw_vcmd": 564, "read_result": [110, 118], "readfactori": 547, "readtxt": 59, "recip_cel": 434, "refer": 35, "regex": [27, 1324], "regress": 1425, "regular": 1425, "relat": 1418, "relax": 1433, "repeatedkfold": 1322, "restart": 1426, "rm": 683, "rmax_smith": 435, "rms3d": 684, "rmsd": 436, "round_up_next_multipl": 685, "row": 1419, "rpdf": 437, "run": [1426, 1430], "ry": [178, 534, 1205], "ry_to_ev": 182, "ry_to_ha": 179, "ry_to_hz": 180, "ry_to_j": [181, 1392], "ry_to_rcm": 183, "rydberg": [10, 184], "sampl": 1433, "savefig": 586, "scale": [1338, 1425], "scell": 438, "scell3d": 439, "scell_mask": 440, "scf": 1433, "seq2str": 154, "set_al": [82, 263, 319, 376, 398, 492, 527, 721, 762, 802, 842, 873, 920, 956, 1005, 1046, 1075, 1118, 1155, 1199, 1226, 1252], "set_attr_lst": [83, 264, 320, 377, 399, 493, 528, 722, 763, 803, 843, 874, 921, 957, 1006, 1047, 1076, 1119, 1156, 1200, 1227, 1253], "set_bv_method": [494, 529], "set_fitfunc": 1381, "set_tabl": 1363, "signal": [28, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1338, 1339, 1340, 1433], "sliceput": 686, "slicetak": 687, "smooth": [441, 1339, 1423, 1433], "smooth_color": 630, "smooth_color_func": 631, "solv": 50, "some": 1426, "spacegroup": 1433, "special": [1419, 1420], "specialpointspath": 572, "spectrum": 1423, "spglib2struct": 1373, "spglib_get_primit": 1374, "spglib_get_spacegroup": 1375, "spl": 505, "splev": 663, "spline": [657, 658, 659, 660, 661, 662, 663], "sql": [29, 1341, 1342, 1343, 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1364, 1365, 1366, 1367, 1368, 1369, 1370, 1371], "sql_column": 1369, "sql_column_old": 1370, "sql_matrix": 1371, "sqlentri": 1341, "sqlite": 1433, "sqlitedb": [1342, 1343, 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363], "squared_dist": 1317, "stabil": 1425, "start": 1430, "str2seq": 155, "str2tup": 156, "str_arr": 157, "stress_pwtools2as": 123, "struct2atom": 442, "struct2spglib": 1376, "struct2traj": 443, "struct_str": 576, "structur": [269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 1422, 1433], "structurefilepars": [1206, 1207, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218, 1219, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 1229, 1230], "studi": 1421, "sum": 688, "svib": 1387, "symbol": 66, "symmetri": [30, 1372, 1373, 1374, 1375, 1376], "system": 158, "t": 1406, "tabl": 3, "tagtim": [1403, 1404, 1405, 1406], "template_replac": 159, "tensor2voigt": 444, "tensor2voigt3d": 445, "test": 1430, "th": 207, "thart": [208, 1268], "theori": [1419, 1425], "thermo": [31, 1377, 1378, 1379, 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, 1390, 1391, 1392, 1393, 1394, 1395, 1396, 1397, 1398, 1399, 1400, 1401, 1402], "timeaxi": [265, 321, 378, 764, 804, 844, 922, 1007, 1048, 1120, 1201, 1254], "timer": [32, 1403, 1404, 1405, 1406], "tobool": 160, "tool": 1431, "topic": 1420, "toslic": 161, "total": 1424, "traj_from_txt": 1269, "trajectori": [325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 1422, 1433], "trajectoryfilepars": [1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239, 1240, 1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257], "transform": 1419, "try_set_attr": [84, 266, 322, 379, 400, 495, 530, 723, 765, 805, 845, 875, 923, 958, 1008, 1049, 1077, 1121, 1157, 1202, 1228, 1255], "try_set_attr_lst": [85, 267, 323, 380, 401, 496, 531, 724, 766, 806, 846, 876, 924, 959, 1009, 1050, 1078, 1122, 1158, 1203, 1229, 1256], "tryd": 209, "tup2str": 162, "tutori": 1433, "txt_maxdim": 55, "unique2d": 126, "unit": [10, 1422, 1424, 1433], "unitshandl": [382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402], "updat": [579, 582], "update_unit": [268, 324, 381, 402, 725, 767, 807, 847, 877, 925, 960, 1010, 1051, 1079, 1123, 1159, 1204, 1230, 1257], "us": [10, 21, 1422, 1433], "use_jax": 164, "usual": 1431, "v": [1419, 1425], "vacf": 51, "vacf_pdo": 1293, "vander": 689, "vari": 1431, "vect_loop": 52, "veloc": 1423, "velocity_traj": 446, "verbos": [33, 1407, 1408], "vibrational_entropi": 1388, "vibrational_free_energi": 1389, "vibrational_internal_energi": 1390, "view": 1433, "view_avogadro": 1412, "view_jmol": 1413, "view_vmd_axsf": 1414, "view_vmd_xyz": 1415, "view_xcrysden": 1416, "viewer": 34, "viewfactori": 1409, "vinet": [535, 536, 537, 538, 539, 540], "visual": [34, 1409, 1410, 1411, 1412, 1413, 1414, 1415, 1416], "vlinspac": 690, "vmd": 34, "vmd_measure_gofr": 447, "voigt2tensor": 448, "voigt2tensor3d": 449, "volum": 1431, "volume_cc": 450, "volume_cc3d": 451, "volume_cel": 452, "volume_cell3d": 453, "welch": 1340, "welcom": 1417, "wien_sgroup_input": 565, "work": 1433, "write": 91, "write_axsf": 566, "write_cif": 567, "write_h5": 568, "write_input": [88, 97, 111, 119], "write_lammp": 569, "write_wien_sgroup": 570, "write_xyz": 571, "writesql": 92, "writetxt": 60}}) \ No newline at end of file diff --git a/written/index.html b/written/index.html index 2fda3c7a..10ca3f2a 100644 --- a/written/index.html +++ b/written/index.html @@ -101,9 +101,7 @@

    Quick search

  • Running tests
  • -
  • Python versions
  • Fortran extensions and OpenMP notes diff --git a/written/install.html b/written/install.html index 81b4da6b..ed08fb36 100644 --- a/written/install.html +++ b/written/install.html @@ -61,7 +61,6 @@

    Navigation

  • Detailed instructions
  • Dependencies
  • Running tests
  • -
  • Python versions
  • Fortran extensions and OpenMP notes
  • @@ -102,8 +101,8 @@

    Quick search

    Installation

    Quick start

    -

    Debian and derivatives: Fortran compiler, Python headers, lapack

    -
    -
    -

    Python versions

    -

    Only Python3 is supported, tested: Python 3.6-3.11

    -

    The package was developed mostly with Python 2.5-2.7 and ported using 2to3 + -manual changes. Therefore, you might find some crufty Python 2 style code -fragments in lesser used parts of the code base.

    -

    Fortran extensions and OpenMP notes

    -

    Use src/Makefile:

    +

    Use src/_ext_src/Makefile:

    $ make help
     make gfortran            # gfortran, default
     make gfortran-omp        # gfortran + OpenMP
    @@ -259,21 +244,36 @@ 

    Python versions ifort-mkl # ifort, Intel MKL lapack, set MKL_LIB

    -

    Generates *.so and *.pyf (f2py interface) files.

    -

    You need:

    - -

    The module is compiled with f2py (currently part of numpy, tested with numpy -1.1.0 .. 1.21.x).

    +

    Generates *.so files

    +
    src/_ext_src/_dcd.so     # will be copied to src/pwtools/_dcd.so
    +src/_ext_src/_flib.so    # will be copied to src/pwtools/_flib.so
    +
    +
    +

    You need the following to compile extensions. On Debian/Ubuntu

    +
    # apt
    +python3-numpy       # for f2py
    +python3-dev         # Python headers
    +gfortran            # or ifort, see src/_ext_src/Makefile
    +liblapack-dev       # see below
    +meson               # f2py build backend as of Python 3.12, will also install ninja
    +
    +
    +

    liblapack-dev is only one option, maybe the slowest. On Debian/Ubuntu, +there are other options, i.e. anything that provides a liblapack.so works.

    +
    $ apt-file search -x 'liblapack.so$'
    +libatlas-base-dev: /usr/lib/x86_64-linux-gnu/atlas/liblapack.so
    +liblapack-dev: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so
    +libmkl-dev: /usr/lib/x86_64-linux-gnu/mkl/liblapack.so
    +libopenblas-openmp-dev: /usr/lib/x86_64-linux-gnu/openblas-openmp/liblapack.so
    +libopenblas-pthread-dev: /usr/lib/x86_64-linux-gnu/openblas-pthread/liblapack.so
    +libopenblas-serial-dev: /usr/lib/x86_64-linux-gnu/openblas-serial/liblapack.so
    +
    +

    The default make target is “gfortran” which tries to build a serial version -using system BLAS and LAPACK (e.g. from liblapack-dev). If you want another +using system LAPACK (e.g. from liblapack-dev). If you want another target (e.g. ifort-mkl), then

    -
    $ cd src
    +
    -

    This will use the Intel ifort compiler instead fo the default gfortran and +

    This will use the Intel ifort compiler instead of the default gfortran and link against the MKL.

    -

    In the MKL case, the Makefile uses the env var $MKL_LIB which sould point +

    In the MKL case, the Makefile uses the env var $MKL_LIB which should point to the location where things like libmkl_core.so live. You may need to set this. On a HPC cluster, that could look like this.

    -

    See src/Makefile for more details.

    -
    -

    Compiler / f2py

    -

    Instead of letting numpy.distutils pick a compiler + special flags, which is -not trivial and therefore almost never works, it is much easier to simply -define the compiler to use + architecture-specific flags. See F90 and ARCH in -the Makefile.

    -

    Also, numpy.distutils has default -03 for fcompiler. --f90flags="-02" does NOT -override this. We get -O3 -O2 and a compiler warning. We have to use f2py’s ---opt= flag.

    -

    On some systems (Debian), you may have:

    -
    /usr/bin/f2py -> f2py2.6
    -/usr/bin/f2py2.5
    -/usr/bin/f2py2.6
    -
    -
    -

    and such. But usually F2PY=f2py is fine.

    -
    +

    See src/_ext_src/Makefile for more details.

    OpenMP

    We managed to speed up the calculations by sprinkling some OpenMP @@ -330,14 +313,8 @@

    OpenMP

    If this env var is NOT set, then OpenMP uses all available cores (e.g. 4 on a quad-core box).

    -
    -
    IMPORTANT:

    Note that we may have found a f2py bug (see test/test_f2py_flib_openmp.py) -re. OMP_NUM_THREADS. We have a workaround for that in pydos.fvacf().

    -
    -
    -

    There is also an optional arg ‘nthreads’ to _flib.vacf(). If this is -supplied, then it will override OMP_NUM_THREADS. Currently, this is the -safest way to set the number of threads.

    +

    There is also an optional arg ‘nthreads’ to _flib.vacf(). If this is +supplied, then it will override OMP_NUM_THREADS.

    Tests