diff --git a/.github/workflows/pip_install_test.yml b/.github/workflows/pip_install_test.yml
index 5ae629c3..c556a88b 100644
--- a/.github/workflows/pip_install_test.yml
+++ b/.github/workflows/pip_install_test.yml
@@ -9,18 +9,18 @@ on:
workflow_dispatch:
jobs:
- build-linux:
- runs-on: ubuntu-latest
+ build:
if: ${{ github.event_name == 'workflow_dispatch' || (github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success') }}
# only run when tests have passed (or manually triggered)
strategy:
- max-parallel: 5
+ fail-fast: false
matrix:
- python-version: ['3.8', '3.9', '3.10', '3.11']
+ python-version: [ '3.8', '3.9', '3.10', '3.11' ]
+ os: [ ubuntu-latest,macos-latest,windows-latest ]
- name: Python ${{ matrix.python-version }} pip install
+ runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 2487c66f..45a8a715 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -12,16 +12,15 @@ on:
workflow_dispatch:
jobs:
- build-linux:
- runs-on: ubuntu-latest
+ build:
strategy:
- max-parallel: 5
+ fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
+ os: [ubuntu-latest,macos-latest,windows-latest]
- name: Python ${{ matrix.python-version }} Test Pop
-
+ runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index aac81250..b4655e05 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,6 +1,15 @@
Change Log
==========
+v3.2.3
+----------
+- Ensure the sorted `pymatgen` `Structure` is created for the VASP input (fixes a rare bug in `v3.2.1`
+ and `v3.2.2` where for certain structures the order of elements in the POSCAR was not properly sorted,
+ which is usually fine, but messed with the `ROPT` `INCAR` setting).
+- Plotting format updates (make legend frame more transparent to make datapoints behind it easier to see).
+- Update tests
+- Update docs (note about handling AFM systems)
+
v3.2.2
----------
- Consolidate ``SnB``/``doped`` ``INCAR`` defaults and remove redundant settings.
diff --git a/README.md b/README.md
index 73a00ed4..90cd782a 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-[![Build status](https://github.com/SMTG-UCL/ShakeNBreak/actions/workflows/test.yml/badge.svg)](https://github.com/SMTG-UCL/ShakeNBreak/actions)
+[![Build status](https://github.com/SMTG-Bham/ShakeNBreak/actions/workflows/test.yml/badge.svg)](https://github.com/SMTG-Bham/ShakeNBreak/actions)
[![Documentation Status](https://readthedocs.org/projects/shakenbreak/badge/?version=latest&style=flat)](https://shakenbreak.readthedocs.io/en/latest/)
[![JOSS](https://joss.theoj.org/papers/10.21105/joss.04817/status.svg)](https://doi.org/10.21105/joss.04817)
[![PyPI](https://img.shields.io/pypi/v/shakenbreak)](https://pypi.org/project/shakenbreak)
@@ -7,7 +7,7 @@
[![npj](https://img.shields.io/badge/npj%20Comput%20Mater%20-Mosquera--Lois%2C%20I.%2C%20Kavanagh%2C%20S.R.%2C%20Walsh%2C%20A.%20%26%20Scanlon%2C%20D.O.%20--%202023-9cf)](https://www.nature.com/articles/s41524-023-00973-1)
# `ShakeNBreak` (`SnB`)
- `ShakeNBreak` is a defect structure-searching method employing chemically-guided bond distortions to
+ `ShakeNBreak` is a defect structure-searching method employing chemically-guided bond distortions to
locate ground-state and metastable structures of point defects in solid materials. [Docs here!](https://shakenbreak.readthedocs.io/en/latest/)
Main features include:
@@ -22,7 +22,7 @@ Main features include:
The code currently supports `VASP`, `CP2K`, `Quantum-Espresso`, `CASTEP` & `FHI-aims`. Code contributions to support additional solid-state packages are welcome.
-![ShakeNBreak Summary](https://raw.githubusercontent.com/SMTG-UCL/ShakeNBreak/main/docs/SnB_Supercell_Schematic_PES_2sec_Compressed.gif)
+![ShakeNBreak Summary](https://raw.githubusercontent.com/SMTG-Bham/ShakeNBreak/main/docs/SnB_Supercell_Schematic_PES_2sec_Compressed.gif)
### Literature
- Preview: Mosquera-Lois, I.; Kavanagh, S. R. [In Search of Hidden Defects](https://doi.org/10.1016/j.matt.2021.06.003), _Matter_ 4 (8), 2602-2605, **2021**
@@ -56,7 +56,7 @@ For development work, ShakeNBreak can also be installed from a copy of the sourc
1. Download `ShakeNBreak` source code using the command:
```bash
- git clone https://github.com/SMTG-UCL/ShakeNBreak
+ git clone https://github.com/SMTG-Bham/ShakeNBreak
```
2. Navigate to root directory:
```bash
@@ -76,7 +76,7 @@ For development work, ShakeNBreak can also be installed from a copy of the sourc
### Command line interface
Alternatively, the code can be used via the command line:
-![ShakeNBreak CLI](https://raw.githubusercontent.com/SMTG-UCL/ShakeNBreak/main/docs/SnB_CLI.gif)
+![ShakeNBreak CLI](https://raw.githubusercontent.com/SMTG-Bham/ShakeNBreak/main/docs/SnB_CLI.gif)
The functions provided include:
* [`snb-generate`](https://shakenbreak.readthedocs.io/en/latest/shakenbreak.cli.html#snb-generate): Generate distorted structures for a given defect
@@ -111,7 +111,7 @@ Please let us know if you have any issues with compatibility, or if you would li
## Contributing
### Bugs reports, feature requests and questions
-Please use the [Issue Tracker](https://github.com/SMTG-UCL/ShakeNBreak/issues) to report bugs or request new features.
+Please use the [Issue Tracker](https://github.com/SMTG-Bham/ShakeNBreak/issues) to report bugs or request new features.
Contributions to extend this package are very welcome! Please use the
["Fork and Pull"](https://docs.github.com/en/get-started/quickstart/contributing-to-projects)
@@ -128,9 +128,11 @@ Automatic testing is run on the master and develop branches using Github Actions
## Studies using `ShakeNBreak`
We'll add papers that use `ShakeNBreak` to this list as they come out!
+
+- X. Wang et al. [_Physical Review B_](https://journals.aps.org/prb/abstract/10.1103/PhysRevB.108.134102) 2023
+- Y. Kumagai, S. R. Kavanagh et al [_PRX Energy_](http://dx.doi.org/10.1103/PRXEnergy.2.043002) 2023
- J. Willis, K. B. Spooner, D. O. Scanlon. [_ChemRxiv_](https://chemrxiv.org/engage/chemrxiv/article-details/64c29140ce23211b20a787bb) 2023
- A. T. J. Nicolson et al. [_Journal of Materials Chemistry A_](https://doi.org/10.1039/D3TA02429F) 2023
-- X. Wang et al. [_arXiv_](https://arxiv.org/abs/2302.04901) 2023
- J. Cen et al. [_Journal of Materials Chemistry A_](https://doi.org/10.1039/D3TA00532A) 2023
- J. Willis & R. Claes et al. [_ChemRxiv_](https://doi.org/10.26434/chemrxiv-2023-lttnf) 2023
- I. Mosquera-Lois & S. R. Kavanagh, A. Walsh, D. O. Scanlon [_npj Computational Materials_](https://doi.org/10.1038/s41524-023-00973-1) 2023
diff --git a/docs/Analysis.rst b/docs/Analysis.rst
index d2d4677d..d176f806 100644
--- a/docs/Analysis.rst
+++ b/docs/Analysis.rst
@@ -246,7 +246,7 @@ manually (not recommended) or using the other defect codes listed on the
As shown in the `doped `_ tutorials and docs, you may
want to further analyse the behaviour and impact on material properties of your defects using advanced
-defect analysis codes such as `easyunfold `_ (to analyse the
+defect analysis codes such as `easyunfold `_ (to analyse the
electronic structure of defects in your material),
`py-sc-fermi `_ (to analyse defect concentrations, doping
and Fermi level tuning), or `nonrad `_ /
diff --git a/docs/Contributing.rst b/docs/Contributing.rst
index b278e008..6c6dca13 100644
--- a/docs/Contributing.rst
+++ b/docs/Contributing.rst
@@ -4,7 +4,7 @@ Contributing
Bugs reports, feature requests and questions
---------------------------------------------
-Please use the `Issue Tracker `_ to report bugs or
+Please use the `Issue Tracker `_ to report bugs or
request new features. Contributions to extend this package are welcome! Please use the
`Fork and Pull `_
workflow to do so and follow the `PEP8 `_ style guidelines.
@@ -49,7 +49,7 @@ workflow to do so and follow the `PEP8 `_ sty
Tests
-------
-Unit tests are in the `tests `_ directory
+Unit tests are in the `tests `_ directory
and can be run from the top directory using ``unittest``. Automatic testing is run on the master and
develop branches using `Github Actions `_. Please
run tests and add new tests for any new features whenever submitting pull requests.
diff --git a/docs/Generation.rst b/docs/Generation.rst
index 1c2447a6..3e0943e8 100644
--- a/docs/Generation.rst
+++ b/docs/Generation.rst
@@ -32,7 +32,7 @@ we'll get a warning and we'll need to specify the defect site with the ``--defec
.. NOTE::
To specify additional distortion parameters, we can use a
- `config.yaml `_
+ `config.yaml `_
file like the one below and use the ``--config`` flag to specify its path (i.e. ``snb-generate --config ./my_config.yaml``).
A detailed description of all the parameters is available in the Python API section
(:ref:`shakenbreak.input.Distortions class `).
@@ -122,7 +122,7 @@ the following directory structures will be parsed correctly:
.. NOTE::
To specify the charge state range for each defect, as well as other optional arguments, we can use a
- `config.yaml `_ file
+ `config.yaml `_ file
like the one below. A detailed description of all the parameters is available in the
Python API section (:ref:`shakenbreak.input.Distortions class `).
diff --git a/docs/Installation.rst b/docs/Installation.rst
index a1b14d79..15bdaa51 100644
--- a/docs/Installation.rst
+++ b/docs/Installation.rst
@@ -41,7 +41,7 @@ For development work, ``ShakeNBreak`` can also be installed from a copy of the s
.. code:: bash
- git clone https://github.com/SMTG-UCL/ShakeNBreak
+ git clone https://github.com/SMTG-Bham/ShakeNBreak
2. Navigate to root directory:
diff --git a/docs/ShakeNBreak_Example_Workflow.ipynb b/docs/ShakeNBreak_Example_Workflow.ipynb
index 589c22e1..f406c968 100644
--- a/docs/ShakeNBreak_Example_Workflow.ipynb
+++ b/docs/ShakeNBreak_Example_Workflow.ipynb
@@ -4096,7 +4096,7 @@
"### Further Defect Analysis\n",
"Once the ground state (and metastable) defect structures have been identified, we will want to compute their formation energies using our final fully-converged calculation parameters (i.e. plane-wave cutoff and k-point sampling). This can be done using [`doped`](https://doped.readthedocs.io/en/latest/), manually (not recommended) or using the other defect codes listed on the [Code Compatibility](https://shakenbreak.readthedocs.io/en/latest/Code_Compatibility.html) page.\n",
"\n",
- "As shown in the [`doped`](https://doped.readthedocs.io/en/latest/) examples and docs, you may want to further analyse the behaviour and impact on material properties of your defects using advanced defect analysis codes such as [`easyunfold`](https://smtg-ucl.github.io/easyunfold/) (to analyse the electronic structure of defects in your material), [`py-sc-fermi`](https://py-sc-fermi.readthedocs.io/en/latest/) (to analyse defect concentrations, doping and Fermi level tuning), or [`nonrad`](https://nonrad.readthedocs.io/en/latest/)/[`CarrierCapture.jl`](https://wmd-group.github.io/CarrierCapture.jl/dev/) (to analyse non-radiative electron-hole recombination at defects)."
+ "As shown in the [`doped`](https://doped.readthedocs.io/en/latest/) examples and docs, you may want to further analyse the behaviour and impact on material properties of your defects using advanced defect analysis codes such as [`easyunfold`](https://smtg-bham.github.io/easyunfold/) (to analyse the electronic structure of defects in your material), [`py-sc-fermi`](https://py-sc-fermi.readthedocs.io/en/latest/) (to analyse defect concentrations, doping and Fermi level tuning), or [`nonrad`](https://nonrad.readthedocs.io/en/latest/)/[`CarrierCapture.jl`](https://wmd-group.github.io/CarrierCapture.jl/dev/) (to analyse non-radiative electron-hole recombination at defects)."
]
},
{
diff --git a/docs/Tips.rst b/docs/Tips.rst
index ed3ec696..dc54b97f 100644
--- a/docs/Tips.rst
+++ b/docs/Tips.rst
@@ -84,10 +84,33 @@ to:
specified element (see next section).
- Specify the total magnetic moment (``NUPDOWN`` in ``VASP``). We recommend to use a wider distortion mesh
- (``delta = 0.2``) and run main ``NUPDOWN`` possibilities, e.g. if there are two extra/missing electrons run
- ``NUPDOWN = 0`` (anti-parallel arrangement) and ``NUPDOWN = 2`` (parallel arrangement).
+ (``delta = 0.2``) and test the main ``NUPDOWN`` possibilities, e.g. if there are two extra/missing
+ electrons, trial ``NUPDOWN = 0`` (anti-parallel arrangement) and ``NUPDOWN = 2`` (parallel arrangement).
-:code:`neighbour_elements` Use Cases
+Magnetism
+---------
+
+If your host system is magnetic (e.g. (anti-)ferromagnetic), you should initialise the magnetic moments
+(i.e. set the ``MAGMOM`` values in the ``INCAR`` files using ``user_incar_settings`` in
+``Distortions.write_vasp_files()``) to match this.
+
+In these cases, the defect ground-state often involves a polaronic localisation which alters the local
+magnetic moment(s).
+Often the defect formation breaks the (magnetic) symmetry of the host, and so the choice of spin up/down
+for an *anti-ferromagnetic* (AFM) system is no longer arbitrary within a ``VASP`` calculation, as the
+initialisation favours spin-up as the majority spin of the system (by only allowing positive ``NUPDOWN``
+values). To account for this magnetic symmetry-breaking and thus differing localisation solutions for
+different choices of AFM orderings, it is recommended to test both equivalent\ :sup:`‡` AFM orderings for
+each potential polaronic defect state (i.e. when ``NUPDOWN`` is not zero).
+This can be done by 'flipping' the ``MAGMOM`` values (to flip the AFM ordering) by changing the sign of
+each ``MAGMOM`` value for the supercell. If doing this, it is recommended to use a wider distortion mesh
+(``delta = 0.2``) to reduce the number of calculations required, as the testing of both AFM orderings
+should allow sufficient coverage of the defect PES with this reduced sampling.
+
+:sup:`‡` = equivalent for the pristine host system, but not for the defect supercell with ``NUPDOWN`` ≠ 0.
+
+
+``neighbour_elements`` Use Cases
-------------------------------------
When generating atomic distortions with :code:`ShakeNBreak`, the :code:`neighbour_elements` optional parameter can be
diff --git a/docs/conf.py b/docs/conf.py
index d59de5c2..b4a09424 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -25,7 +25,7 @@
author = 'Irea Mosquera-Lois, Seán R. Kavanagh'
# The full version, including alpha/beta/rc tags
-release = '3.2.2'
+release = '3.2.3'
# -- General configuration ---------------------------------------------------
@@ -89,7 +89,7 @@
# html_show_sphinx = True
html_theme_options = {
- "repository_url": "https://github.com/SMTG-UCL/ShakeNBreak",
+ "repository_url": "https://github.com/SMTG-Bham/ShakeNBreak",
"repository_branch": "develop",
"path_to_docs": "docs",
"use_repository_button": True,
@@ -99,7 +99,7 @@
# Adding “Edit Source” links on your Sphinx theme
html_context = {
"display_github": True, # Integrate GitHub
- "github_user": "SMTG-UCL", # Username
+ "github_user": "SMTG-Bham", # Username
"github_repo": "ShakeNBreak", # Repo name
"github_version": "master", # Version
"conf_py_path": "/docs/", # Path in the checkout to the docs root
diff --git a/docs/docs_requirements.txt b/docs/docs_requirements.txt
index 121b51f6..969029b5 100644
--- a/docs/docs_requirements.txt
+++ b/docs/docs_requirements.txt
@@ -1,4 +1,5 @@
sphinx
+recommonmark
myst-nb
sphinx-book-theme
sphinx_click
@@ -7,7 +8,7 @@ numpy>=1.21 # needed for numpy.typing.NDArray
pymatgen>2022.0.17 #==2022.10.22
pymatgen-analysis-defects #>=2022.10.28
ase
-matplotlib
+matplotlib>=3.6
pandas>=1.1.0
seaborn
hiphive
diff --git a/docs/index.rst b/docs/index.rst
index c038136d..33b11b81 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -3,8 +3,8 @@
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
-.. image:: https://github.com/SMTG-UCL/ShakeNBreak/actions/workflows/test.yml/badge.svg
- :target: https://github.com/SMTG-UCL/ShakeNBreak/actions
+.. image:: https://github.com/SMTG-Bham/ShakeNBreak/actions/workflows/test.yml/badge.svg
+ :target: https://github.com/SMTG-Bham/ShakeNBreak/actions
.. image:: https://readthedocs.org/projects/shakenbreak/badge/?version=latest&style=flat
:target: https://shakenbreak.readthedocs.io/en/latest/
@@ -106,7 +106,7 @@ For development work, ``ShakeNBreak`` can also be installed from a copy of the s
.. code:: bash
- git clone https://github.com/SMTG-UCL/ShakeNBreak
+ git clone https://github.com/SMTG-Bham/ShakeNBreak
2. Navigate to root directory:
@@ -191,7 +191,7 @@ Contributing
Bugs reports, feature requests and questions
----------------------------------------------
-Please use the `Issue Tracker `_
+Please use the `Issue Tracker `_
to report bugs or request new features.
Contributions to extend this package are very welcome! Please use the
@@ -213,9 +213,10 @@ Studies using ``ShakeNBreak``
We'll add papers that use `ShakeNBreak` to this list as they come out!
+- X\. Wang et al. `Physical Review B `_ 2023
+- Y\. Kumagai, S. R. Kavanagh et al. `PRX Energy `__ 2023
- J\. Willis, K. B. Spooner, D. O. Scanlon. `ChemRxiv `__ 2023
- A\. T. J. Nicolson et al. `Journal of Materials Chemistry A `__ 2023
-- X\. Wang et al. `arXiv`_ 2023
- J\. Cen et al. `Journal of Materials Chemistry A`_ 2023
- J\. Willis & R. Claes et al. `ChemRxiv `__ 2023
- I\. Mosquera-Lois & S. R. Kavanagh, A. Walsh, D. O. Scanlon `npj Computational Materials`_ 2023
@@ -234,7 +235,6 @@ We'll add papers that use `ShakeNBreak` to this list as they come out!
.. Kat YTOS
.. Squires (and mention benchmark test against AIRSS? See Slack message)
-.. _arXiv: https://arxiv.org/abs/2302.04901
.. _Journal of Materials Chemistry A: https://doi.org/10.1039/D3TA00532A
.. _npj Computational Materials: https://www.nature.com/articles/s41524-023-00973-1
.. _Nature Communications: https://www.nature.com/articles/s41467-022-32669-3
@@ -257,7 +257,7 @@ You may also find this Preview paper useful, which discusses the general problem
- Mosquera-Lois, I.; Kavanagh, S. R. `In Search of Hidden Defects`_. *Matter* 4 (8), 2602-2605, **2021**
-``BibTeX`` entries for these papers are provided in the repository `CITATIONS.md `_ file.
+``BibTeX`` entries for these papers are provided in the repository `CITATIONS.md `_ file.
.. _ShakeNBreak\: Navigating the defect configurational landscape: https://doi.org/10.21105/joss.04817
.. _Journal of Open Source Software: https://doi.org/10.21105/joss.04817
@@ -298,4 +298,4 @@ Requirements
Code_Compatibility
Contributing
changelog_link
- ShakeNBreak on GitHub
\ No newline at end of file
+ ShakeNBreak on GitHub
\ No newline at end of file
diff --git a/setup.py b/setup.py
index d2138bae..5247c8ce 100644
--- a/setup.py
+++ b/setup.py
@@ -130,7 +130,7 @@ def package_files(directory):
setup(
name="shakenbreak",
- version="3.2.2",
+ version="3.2.3",
description="Package to generate and analyse distorted defect structures, in order to "
"identify ground-state and metastable defect configurations.",
long_description=long_description,
@@ -163,7 +163,7 @@ def package_files(directory):
"numpy", # >=1.21.2" needed for numpy.typing.NDArray?
"pymatgen>=2022.10.22",
"pymatgen-analysis-defects>=2022.10.28",
- "matplotlib",
+ "matplotlib>=3.6",
"ase",
"pandas>=1.1.0",
"seaborn",
@@ -228,7 +228,7 @@ def package_files(directory):
"Homepage": "https://shakenbreak.readthedocs.io/en/latest/index.html",
"Documentation": "https://shakenbreak.readthedocs.io/en/latest/index.html",
"Package": "https://pypi.org/project/shakenbreak/",
- "Repository": "https://github.com/SMTG-UCL/shakenbreak",
+ "Repository": "https://github.com/SMTG-Bham/shakenbreak",
},
)
diff --git a/shakenbreak/analysis.py b/shakenbreak/analysis.py
index 0a5623e0..7c59adf4 100644
--- a/shakenbreak/analysis.py
+++ b/shakenbreak/analysis.py
@@ -801,7 +801,7 @@ def compare_structures(
Minimum atomic displacement threshold to include in atomic
displacements sum (in Å, default 0.1 Å).
display_df (:obj:`bool`):
- Whether or not to display the structure comparison DataFrame
+ Whether to display the structure comparison DataFrame
interactively in Jupyter/Ipython (Default: True).
verbose (:obj:`bool`):
Whether to print information message about structures being compared.
diff --git a/shakenbreak/input.py b/shakenbreak/input.py
index ba93654b..33625b70 100755
--- a/shakenbreak/input.py
+++ b/shakenbreak/input.py
@@ -203,8 +203,8 @@ def _create_vasp_input(
Dictionary of user VASP INCAR settings, to overwrite/update the
`doped` defaults.
user_potcar_functional (str):
- POTCAR functional to use. Default is "PBE" and if this fails,
- tries "PBE_52", then "PBE_54".
+ POTCAR functional to use. Default is "PBE" and if this fails,
+ tries "PBE_52", then "PBE_54".
user_potcar_settings (:obj:`dict`):
Dictionary of user VASP POTCAR settings, to overwrite/update
the `doped` defaults (e.g. {'Fe': 'Fe_pv', 'O': 'O'}}). Highly
@@ -256,31 +256,47 @@ def _create_vasp_input(
if matching_dirs: # defect species with same name already present
# check if Unperturbed structures match
- match_found = False
+
+ match_found = True
+
for dir in matching_dirs:
- with contextlib.suppress(
- Exception
- ): # if Unperturbed structure could not be parsed /
- # compared to distorted_defect_dict, then pass
- prev_unperturbed_struc = Structure.from_file(
- f"{output_path}/{dir}/Unperturbed/POSCAR"
- )
- current_unperturbed_struc = distorted_defect_dict["Unperturbed"][
- "Defect Structure"
- ].copy()
- for i in [prev_unperturbed_struc, current_unperturbed_struc]:
- i.remove_oxidation_states()
- if prev_unperturbed_struc == current_unperturbed_struc:
- warnings.warn(
- f"The previously-generated defect folder {dir} in "
- f"{os.path.basename(os.path.abspath(output_path))} "
- f"has the same Unperturbed defect structure as the current "
- f"defect species: {defect_name}. ShakeNBreak files in {dir} will "
- f"be overwritten."
+ if any(
+ x in i
+ for i in os.listdir(dir)
+ for x in ["Unperturbed", "Rattled", "Bond_Distortion"]
+ ):
+ # if any SnB folder found in matching_dirs, then we need to check if structures match,
+ # otherwise we can write to this same folder
+ match_found = False
+ break
+
+ if (
+ not match_found
+ ): # SnB folders in matching_dirs, so check if Unperturbed structures match
+ for dir in matching_dirs:
+ with contextlib.suppress(
+ Exception
+ ): # if Unperturbed structure could not be parsed /
+ # compared to distorted_defect_dict, then pass
+ prev_unperturbed_struc = Structure.from_file(
+ f"{output_path}/{dir}/Unperturbed/POSCAR"
)
- defect_name = dir
- match_found = True
- break
+ current_unperturbed_struc = distorted_defect_dict["Unperturbed"][
+ "Defect Structure"
+ ].copy()
+ for i in [prev_unperturbed_struc, current_unperturbed_struc]:
+ i.remove_oxidation_states()
+ if prev_unperturbed_struc == current_unperturbed_struc:
+ warnings.warn(
+ f"The previously-generated defect distortions folder {dir} in "
+ f"{os.path.basename(os.path.abspath(output_path))} "
+ f"has the same Unperturbed defect structure as the current "
+ f"defect species: {defect_name}. ShakeNBreak files in {dir} will "
+ f"be overwritten."
+ )
+ defect_name = dir
+ match_found = True
+ break
if not match_found: # no matching structure found, assume inequivalent defects
last_letter = [
@@ -304,7 +320,7 @@ def _create_vasp_input(
f"{charge_state}"
)
warnings.warn(
- f"A previously-generated defect folder {prev_dir_name} exists in "
+ f"A previously-generated defect distortions folder {prev_dir_name} exists in "
f"{os.path.basename(os.path.abspath(output_path))}, "
f"and the Unperturbed defect structure could not be matched to the "
f"current defect species: {defect_name}. These are assumed to be "
@@ -324,7 +340,7 @@ def _create_vasp_input(
f"_{'+' if charge_state > 0 else ''}{charge_state}"
)
warnings.warn(
- f"Previously-generated defect folders ({prev_dir_name}...) exist in "
+ f"Previously-generated defect distortions folders ({prev_dir_name}...) exist in "
f"{os.path.basename(os.path.abspath(output_path))}, "
f"and the Unperturbed defect structures could not be matched to the "
f"current defect species: {defect_name}. These are assumed to be "
@@ -362,10 +378,10 @@ def _create_vasp_input(
for (
distortion,
single_defect_dict,
- ) in (
- distorted_defect_dict.items()
- ): # for each distortion, create sub-subfolder folder
- dds._structure = single_defect_dict["Defect Structure"]
+ ) in distorted_defect_dict.items(): # for each distortion, create subfolder
+ dds._structure = single_defect_dict[
+ "Defect Structure"
+ ].get_sorted_structure() # ensure sorted
dds.poscar_comment = single_defect_dict.get("POSCAR Comment", None)
try:
@@ -1157,45 +1173,64 @@ def _get_defects_dict_from_defects_entries(defect_entries):
"""
Return a dictionary in the SnB format:
{"defect_name_wout_charge": [DefectEntry, ...]} for the given defect_entries list.
+
+ If the DefectEntry.name attribute is set for all DefectEntrys in defect_entries,
+ then these are used to obtain 'defect_name_wout_charge', otherwise the names are
+ set to the default doped defect names.
"""
- # defect_entries is a list of DefectEntry objects which likely has duplicate DefectEntry's of the
- # same type but different charge state. So get list of included charge states for each
- # DefectEntry.defect base name:
- charge_state_dict = {
- defect_entry.defect.name: [
- entry.charge_state
- for entry in defect_entries
- if entry.defect.name == defect_entry.defect.name
- ]
- for defect_entry in defect_entries
- }
+ # check if all defect_entries have a name attribute set:
+ if all(getattr(defect_entry, "name", False) for defect_entry in defect_entries):
+ snb_defects_dict = {
+ defect_entry.name.rsplit("_", 1)[0]: [ # defect names without charge
+ def_entry
+ for def_entry in defect_entries
+ if def_entry.name.rsplit("_", 1)[0]
+ == defect_entry.name.rsplit("_", 1)[0]
+ ]
+ for defect_entry in defect_entries
+ }
- # subselect defect_entries to those with a unique defect.defect_structure to avoid duplicates:
- sm = StructureMatcher()
- defect_entry_list = []
- for defect_entry in defect_entries:
- if not any(
- sm.fit(defect_entry.defect.defect_structure, entry.defect.defect_structure)
- for entry in defect_entry_list
- ):
- # ensure sc_defect_frac_coords defined:
- _find_sc_defect_coords(defect_entry)
- defect_entry_list.append(defect_entry)
-
- defect_entries_dict = name_defect_entries(
- defect_entry_list
- ) # DefectsGenerator.defect_entries
- # format: {"defect_species": DefectEntry} -> convert:
- snb_defects_dict = {
- defect_entry_name_wout_charge: []
- for defect_entry_name_wout_charge in defect_entries_dict
- }
+ else:
+ # defect_entries is a list of DefectEntry objects which likely has duplicate DefectEntry's of the
+ # same type but different charge state. So get list of included charge states for each
+ # DefectEntry.defect base name:
+ charge_state_dict = {
+ defect_entry.defect.name: [
+ entry.charge_state
+ for entry in defect_entries
+ if entry.defect.name == defect_entry.defect.name
+ ]
+ for defect_entry in defect_entries
+ }
+
+ # sub-select defect_entries to those with a unique defect.defect_structure to avoid duplicates:
+ sm = StructureMatcher()
+ defect_entry_list = []
+ for defect_entry in defect_entries:
+ if not any(
+ sm.fit(
+ defect_entry.defect.defect_structure, entry.defect.defect_structure
+ )
+ for entry in defect_entry_list
+ ):
+ # ensure sc_defect_frac_coords defined:
+ _find_sc_defect_coords(defect_entry)
+ defect_entry_list.append(defect_entry)
+
+ defect_entries_dict = name_defect_entries(
+ defect_entry_list
+ ) # DefectsGenerator.defect_entries
+ # format: {"defect_species": DefectEntry} -> convert:
+ snb_defects_dict = {
+ defect_entry_name_wout_charge: []
+ for defect_entry_name_wout_charge in defect_entries_dict
+ }
- for name_wout_charge, defect_entry in defect_entries_dict.items():
- for charge in charge_state_dict[defect_entry.defect.name]:
- charged_defect_entry = copy.deepcopy(defect_entry)
- charged_defect_entry.charge_state = charge
- snb_defects_dict[name_wout_charge].append(charged_defect_entry)
+ for name_wout_charge, defect_entry in defect_entries_dict.items():
+ for charge in charge_state_dict[defect_entry.defect.name]:
+ charged_defect_entry = copy.deepcopy(defect_entry)
+ charged_defect_entry.charge_state = charge
+ snb_defects_dict[name_wout_charge].append(charged_defect_entry)
return snb_defects_dict
@@ -1590,7 +1625,8 @@ def __init__(
set equal to `defect_species` (with charge states included). If
a list or single `DefectEntry` object is provided, the defect
folder names will be set equal to `DefectEntry.name` if the `name`
- attribute is set, otherwise generated according to the `doped` convention
+ attribute is set for all input `DefectEntry`s, otherwise generated
+ according to the `doped` convention
(see: https://doped.readthedocs.io/en/latest/dope_workflow_example.html).
Defect charge states (from which bond distortions are determined) are
@@ -2270,7 +2306,7 @@ def apply_distortions(
**self._mc_rattle_kwargs,
)
- # Remove distortions with interatomic distances less than 1 Angstrom if Hydrogen
+ # Remove distortions with inter-atomic distances less than 1 Angstrom if Hydrogen
# not present
for dist, struct in list(
defect_distorted_structures["distortions"].items()
diff --git a/shakenbreak/plotting.py b/shakenbreak/plotting.py
index 24eaa4ff..9bd0eb55 100644
--- a/shakenbreak/plotting.py
+++ b/shakenbreak/plotting.py
@@ -1436,7 +1436,9 @@ def plot_colorbar(
handles = [(im, line_handle)] + handles
labels = [line_label] + labels
- plt.legend(handles, labels, scatteryoffsets=[0.5], frameon=True).set_zorder(
+ plt.legend(
+ handles, labels, scatteryoffsets=[0.5], frameon=True, framealpha=0.3
+ ).set_zorder(
100
) # make sure it's on top of the other points
@@ -1544,16 +1546,15 @@ def plot_datasets(
as a mpl.figure.Figure object
"""
# Validate input
- if dataset_labels is not None:
- if len(datasets) != len(dataset_labels):
- raise ValueError(
- f"Number of datasets and labels must match! "
- f"You gave me {len(datasets)} datasets and"
- f" {len(dataset_labels)} labels."
- )
- else:
+ if dataset_labels is None:
dataset_labels = ["Distortions"] * len(datasets)
+ elif len(datasets) != len(dataset_labels):
+ raise ValueError(
+ f"Number of datasets and labels must match! "
+ f"You gave me {len(datasets)} datasets and"
+ f" {len(dataset_labels)} labels."
+ )
_install_custom_font()
# Set up figure
with plt.style.context(f"{MODULE_DIR}/shakenbreak.mplstyle"):
@@ -1654,10 +1655,9 @@ def plot_datasets(
label="Rattled",
)
- if (
- len(sorted_distortions) > 0
- and len([key for key in dataset["distortions"] if key != "Rattled"]) > 0
- ): # more than just Rattled
+ if len(sorted_distortions) > 0 and [
+ key for key in dataset["distortions"] if key != "Rattled"
+ ]: # more than just Rattled
if imported_indices: # Exclude datapoints from other charge states
non_imported_sorted_indices = [
i
@@ -1682,11 +1682,11 @@ def plot_datasets(
if imported_indices:
other_charges = len(
- list(
+ [
list(dataset["distortions"].keys())[i].split("_")[-1]
for i in imported_indices
- )
- ) # number of other charge states whose distortions have been imported
+ ] # number of other charge states whose distortions have been imported
+ )
for i, j in zip(imported_indices, range(other_charges)):
other_charge_state = int(
list(dataset["distortions"].keys())[i].split("_")[-1]
@@ -1766,17 +1766,17 @@ def plot_datasets(
# If several datasets, check min & max energy are included
if len(datasets) > 1:
min_energy = min(
- [min(list(dataset["distortions"].values())) for dataset in datasets]
+ min(list(dataset["distortions"].values())) for dataset in datasets
)
max_energy = max(
- [max(list(dataset["distortions"].values())) for dataset in datasets]
+ max(list(dataset["distortions"].values())) for dataset in datasets
)
ax.set_ylim(
min_energy - 0.1 * (max_energy - min_energy),
max_energy + 0.1 * (max_energy - min_energy),
)
- ax.legend(frameon=True).set_zorder(
+ ax.legend(frameon=True, framealpha=0.3).set_zorder(
100
) # show legend on top of all other datapoints
diff --git a/tests/__init__.py b/tests/__init__.py
old mode 100755
new mode 100644
diff --git a/tests/data/Ag_Sb_Cs_Te2.90_-2.json b/tests/data/Ag_Sb_Cs_Te2.90_-2.json
new file mode 100644
index 00000000..193b9b98
--- /dev/null
+++ b/tests/data/Ag_Sb_Cs_Te2.90_-2.json
@@ -0,0 +1 @@
+{"defect": {"@module": "doped.core", "@class": "Substitution", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.2637, -5.902343, 5.902343], [0.0, -3.01562, -3.01562], [6.28679, 5.914443, -5.914443]], "pbc": [true, true, true], "a": 10.435959154255922, "b": 4.264730702963553, "c": 10.46350804006945, "alpha": 90.0, "beta": 106.18615257482439, "gamma": 90.0, "volume": 447.2350678640466}, "properties": {}, "sites": [{"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.74486, 0.0, 0.267088], "xyz": [6.344705749519999, -2.816742454996, 2.816742454996], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.492432, 0.0, 0.51769], "xyz": [6.3390546335, 0.15534542849400035, -0.15534542849400035], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.254265, 0.0, 0.758526], "xyz": [6.36133335204, 2.9854995481230002, -2.9854995481230002], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.871056, 0.5, 0.60877], "xyz": [9.2832426155, -3.0485458190980004, 0.03292581909800034], "properties": {}, "label": "Ag"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.99529, 0.0, 0.00863], "xyz": [6.2884529707, -5.82350132138, 5.82350132138], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.384017, 0.5, 0.12324], "xyz": [3.1801512825, -3.045514096511, 0.029894096510999734], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.125043, 0.5, 0.377407], "xyz": [3.15591039263, -0.013704486448000082, -3.0019155135520004], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.632554, 0.5, 0.858414], "xyz": [9.358797040859999, -0.164320000619999, -2.8512999993800006], "properties": {}, "label": "Sb"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.770366, 0.0, 0.745295], "xyz": [9.51085466725, -0.13895957185299954, 0.13895957185299954], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.504096, 0.0, 0.98061], "xyz": [9.3223952571, 2.8244144533020004, -2.8244144533020004], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.254273, 0.0, 0.241633], "xyz": [3.11178571817, -0.07168185622000021, 0.07168185622000021], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.120607, 0.5, 0.871302], "xyz": [6.23313876648, 2.9335921325850003, -5.949212132585], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.017267, 0.0, 0.504083], "xyz": [3.2772192714699995, 2.879454414188, -2.879454414188], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.860954, 0.5, 0.133502], "xyz": [6.23205660838, -5.799865845836, 2.7842458458359998], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.608882, 0.5, 0.375086], "xyz": [6.1719410973399995, -2.8832156434280005, -0.1324043565719997], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.364036, 0.5, 0.628725], "xyz": [6.23287433595, 0.0620828388269996, -3.077702838827], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Ag", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.125043, 0.5, 0.377407], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[6.2637, -5.902343, 5.902343], [0.0, -3.01562, -3.01562], [6.28679, 5.914443, -5.914443]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Ag", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 1, "equivalent_sites": [{"species": [{"element": "Ag", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.125043, 0.5, 0.377407], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[6.2637, -5.902343, 5.902343], [0.0, -3.01562, -3.01562], [6.28679, 5.914443, -5.914443]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Ag", "@version": null}], "user_charges": [-2, -1, 0], "oxi_state": -2.0, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[0.0, 10.43596, 0.0], [4.26473, 0.0, 0.0], [0.0, -2.916797, -10.048746]], "pbc": [true, true, true], "a": 10.43596, "b": 4.26473, "c": 10.463508059524061, "alpha": 90.0, "beta": 106.18615166773805, "gamma": 90.0, "volume": 447.2350332767197}, "properties": {}, "sites": [{"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.7448599999999999, 0.0, 0.267088], "xyz": [0.0, 6.994287688463998, -2.6838994716479996], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.492432, 0.0, 0.51769], "xyz": [0.0, 3.6290040157899996, -5.20213531674], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.254265, 0.0, 0.758526], "xyz": [0.0, 0.441033008178, -7.622235108396], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.8710559999999999, 0.5, 0.60877], "xyz": [2.132365, 7.314647064069998, -6.11737510242], "properties": {}, "label": "Ag"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.99529, 0.0, 0.008630000000000002], "xyz": [0.0, 10.36163467029, -0.08672067798000002], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.38401699999999994, 0.5, 0.12324], "xyz": [2.132365, 3.6481199890399996, -1.2384074570399999], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.125043, 0.5, 0.377407], "xyz": [2.132365, 0.20412414090099984, -3.7924670816219996], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.632554, 0.5, 0.8584140000000001], "xyz": [2.132365, 4.097488861881999, -8.625984248844], "properties": {}, "label": "Sb"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7703660000000001, 0.0, 0.745295], "xyz": [0.0, 5.865634541245001, -7.48928015007], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.504096, 0.0, 0.9806100000000001], "xyz": [0.0, 2.4004853859899993, -9.853900815060001], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.254273, 0.0, 0.241633], "xyz": [0.0, 1.9487884475790005, -2.4281086422179996], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.120607, 0.5, 0.871302], "xyz": [2.132365, -1.2827612319739998, -8.755492487291999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.017267000000000008, 0.0, 0.504083], "xyz": [0.0, -1.2901100608309997, -5.065402029917999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.860954, 0.5, 0.133502], "xyz": [2.132365, 8.595483272746, -1.341527688492], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.608882, 0.5, 0.375086], "xyz": [2.132365, 5.260218477178, -3.7691439421559996], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.364036, 0.5, 0.6287250000000001], "xyz": [2.132365, 1.965201940735, -6.3178978288500005], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.5, 0.3774]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.5, 0.3774]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "1b", "@version": null}, "charge_state": -2, "sc_entry": {"@module": "pymatgen.entries.computed_entries", "@class": "ComputedStructureEntry", "energy": 0.0, "composition": {"Ag": 13.0, "Sb": 11.0, "Te": 24.0}, "entry_id": null, "correction": 0.0, "energy_adjustments": [], "parameters": {}, "data": {}, "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[0.0, 9.04686, 9.04686], [-6.2637, 5.902343, -5.902343], [-6.28679, -5.914443, 5.914443]], "pbc": [true, true, true], "a": 12.794192108890659, "b": 10.435959154255922, "c": 10.46350804006945, "alpha": 106.18615257482439, "beta": 90.0, "gamma": 90.0, "volume": 1341.7052035921397}, "properties": {}, "sites": [{"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.6666666666666666, 0.25514000000000014, 0.7329119999999999], "xyz": [-6.20578425048, 3.2023975450040014, 8.860082454995998], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.3333333333333333, 0.25514000000000014, 0.7329119999999999], "xyz": [-6.20578425048, 0.18677754500400146, 5.844462454995999], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [1.1328109255324493e-17, 0.25514000000000003, 0.732912], "xyz": [-6.20578425048, -2.828842454996, 2.828842454996], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.6666666666666666, 0.507568, 0.4823099999999999], "xyz": [-6.211435366499999, 6.174485428494001, 5.887994571506], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.3333333333333333, 0.507568, 0.4823099999999998], "xyz": [-6.211435366499999, 3.158865428494001, 2.872374571505999], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [1.0, 0.507568, 0.4823099999999998], "xyz": [-6.211435366499999, 9.190105428494002, 8.903614571505999], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.6666666666666665, 0.745735, 0.24147399999999997], "xyz": [-6.18915664796, 9.004639548122999, 3.057840451876998], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.33333333333333326, 0.745735, 0.24147399999999997], "xyz": [-6.18915664796, 5.989019548123, 0.04222045187699891], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [1.0, 0.745735, 0.24147399999999997], "xyz": [-6.18915664796, 12.020259548123, 6.073460451877], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.5, 0.12894399999999995, 0.39122999999999963], "xyz": [-3.2672473844999974, 2.9705941809020016, 6.076265819097999], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.16666666666666666, 0.12894400000000006, 0.39122999999999974], "xyz": [-3.2672473844999987, -0.04502581909799836, 3.0606458190979984], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.8333333333333334, 0.12894400000000006, 0.39122999999999974], "xyz": [-3.2672473844999987, 5.986214180902002, 9.091885819098], "properties": {}, "label": "Ag"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.6666666666666666, 0.004710000000000103, 0.9913699999999998], "xyz": [-6.262037029299999, 0.19563867862000184, 11.866841321379999], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.33333333333333337, 0.004710000000000103, 0.9913699999999998], "xyz": [-6.262037029299999, -2.8199813213799976, 8.851221321379999], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [6.0050254173577e-17, 0.004710000000000103, 0.9913699999999999], "xyz": [-6.2620370293, -5.835601321379999, 5.8356013213799995], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.49999999999999994, 0.6159830000000001, 0.8767599999999999], "xyz": [-9.3703387175, 2.973625903489, 6.0732340965109985], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.16666666666666666, 0.6159830000000001, 0.8767599999999999], "xyz": [-9.3703387175, -0.04199409651099877, 3.0576140965109992], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.8333333333333334, 0.6159830000000001, 0.8767599999999999], "xyz": [-9.3703387175, 5.989245903489001, 9.088854096511], "properties": {}, "label": "Sb"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.49999999999999994, 0.874957, 0.622593], "xyz": [-9.39457960737, 6.0054355135519994, 3.0414244864479993], "properties": {}, "label": "Ag"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.16666666666666663, 0.874957, 0.622593], "xyz": [-9.39457960737, 2.9898155135519997, 0.02580448644799953], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.8333333333333333, 0.874957, 0.622593], "xyz": [-9.39457960737, 9.021055513552, 6.0570444864479995], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.49999999999999994, 0.36744600000000016, 0.14158599999999966], "xyz": [-3.1916929591399987, 5.854819999380002, 3.1920400006199965], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.16666666666666666, 0.36744600000000016, 0.14158599999999977], "xyz": [-3.1916929591399996, 2.839199999380002, 0.1764200006199978], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.8333333333333334, 0.36744600000000016, 0.14158599999999977], "xyz": [-3.1916929591399996, 8.870439999380002, 6.207660000619998], "properties": {}, "label": "Sb"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.6666666666666665, 0.22963400000000023, 0.25470499999999985], "xyz": [-3.0396353327500005, 5.880180428147001, 6.1822995718529965], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.3333333333333333, 0.22963400000000012, 0.25470499999999974], "xyz": [-3.039635332749999, 2.8645604281470027, 3.166679571852998], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [5.942503922030778e-19, 0.22963400000000012, 0.25470499999999985], "xyz": [-3.0396353327499996, -0.15105957185299845, 0.15105957185299845], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.6666666666666666, 0.4959040000000001, 0.019389999999999796], "xyz": [-3.2280947428999993, 8.843554453302003, 3.2189255466979985], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.33333333333333326, 0.495904, 0.019389999999999796], "xyz": [-3.228094742899999, 5.827934453302, 0.20330554669799797], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [1.0, 0.4959040000000001, 0.019389999999999796], "xyz": [-3.2280947428999993, 11.859174453302003, 6.234545546697999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.6666666666666666, 0.745727, 0.7583669999999999], "xyz": [-9.438704281829999, 5.947458143780001, 6.115021856219999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.3333333333333333, 0.745727, 0.7583669999999999], "xyz": [-9.438704281829999, 2.9318381437800007, 3.0994018562199996], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [6.442444061789091e-19, 0.745727, 0.7583669999999999], "xyz": [-9.438704281829999, -0.08378185621999934, 0.08378185621999934], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.49999999999999994, 0.879393, 0.12869799999999998], "xyz": [-6.317351233519999, 8.952732132585, 0.09412786741499936], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.16666666666666663, 0.879393, 0.12869799999999998], "xyz": [-6.317351233519999, 5.937112132585, -2.9214921325850005], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.8333333333333334, 0.879393, 0.12869799999999998], "xyz": [-6.317351233519999, 11.968352132585, 3.1097478674150003], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.6666666666666666, 0.9827330000000001, 0.49591700000000005], "xyz": [-9.273270728530001, 8.898594414188, 3.1638855858120003], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.3333333333333333, 0.9827330000000001, 0.49591700000000005], "xyz": [-9.273270728530001, 5.882974414188001, 0.14826558581200017], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [1.0, 0.9827330000000001, 0.49591700000000005], "xyz": [-9.273270728530001, 11.914214414188, 6.1795055858120005], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.5, 0.13904600000000011, 0.8664979999999999], "xyz": [-6.31843339162, 0.21927415416400162, 8.827585845836], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.16666666666666666, 0.13904600000000011, 0.8664979999999998], "xyz": [-6.318433391619999, -2.7963458458359978, 5.811965845835998], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.8333333333333334, 0.13904600000000011, 0.8664979999999999], "xyz": [-6.31843339162, 3.2348941541640017, 11.843205845836], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.49999999999999994, 0.3911180000000001, 0.624914], "xyz": [-6.37854890266, 3.135924356572, 5.910935643427999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.16666666666666666, 0.39111799999999997, 0.624914], "xyz": [-6.3785489026599995, 0.1203043565719998, 2.8953156434280003], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.8333333333333334, 0.3911180000000001, 0.624914], "xyz": [-6.37854890266, 6.151544356572, 8.926555643428], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.49999999999999994, 0.635964, 0.3712749999999999], "xyz": [-6.31761566405, 6.081222838827, 2.965637161172999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.16666666666666663, 0.635964, 0.3712749999999999], "xyz": [-6.31761566405, 3.065602838827, -0.049982838827000484], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.8333333333333334, 0.635964, 0.3712749999999999], "xyz": [-6.31761566405, 9.096842838827001, 5.9812571611730005], "properties": {}, "label": "Te"}]}, "@version": null}, "corrections": {}, "corrections_metadata": {}, "sc_defect_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.49999999999999994, 0.874957, 0.622593]}, "bulk_entry": null, "entry_id": null, "name": "Ag_Sb_Cs_Te2.90_-2", "calculation_metadata": {}, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[0.0, 10.43596, 0.0], [4.26473, 0.0, 0.0], [0.0, -2.916797, -10.048746]], "pbc": [true, true, true], "a": 10.43596, "b": 4.26473, "c": 10.463508059524061, "alpha": 90.0, "beta": 106.18615166773805, "gamma": 90.0, "volume": 447.2350332767197}, "properties": {}, "sites": [{"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.7448599999999999, 0.0, 0.267088], "xyz": [0.0, 6.994287688463998, -2.6838994716479996], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.492432, 0.0, 0.51769], "xyz": [0.0, 3.6290040157899996, -5.20213531674], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.254265, 0.0, 0.758526], "xyz": [0.0, 0.441033008178, -7.622235108396], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.8710559999999999, 0.5, 0.60877], "xyz": [2.132365, 7.314647064069998, -6.11737510242], "properties": {}, "label": "Ag"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.99529, 0.0, 0.008630000000000002], "xyz": [0.0, 10.36163467029, -0.08672067798000002], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.38401699999999994, 0.5, 0.12324], "xyz": [2.132365, 3.6481199890399996, -1.2384074570399999], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.125043, 0.5, 0.377407], "xyz": [2.132365, 0.20412414090099984, -3.7924670816219996], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.632554, 0.5, 0.8584140000000001], "xyz": [2.132365, 4.097488861881999, -8.625984248844], "properties": {}, "label": "Sb"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7703660000000001, 0.0, 0.745295], "xyz": [0.0, 5.865634541245001, -7.48928015007], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.504096, 0.0, 0.9806100000000001], "xyz": [0.0, 2.4004853859899993, -9.853900815060001], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.254273, 0.0, 0.241633], "xyz": [0.0, 1.9487884475790005, -2.4281086422179996], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.120607, 0.5, 0.871302], "xyz": [2.132365, -1.2827612319739998, -8.755492487291999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.017267000000000008, 0.0, 0.504083], "xyz": [0.0, -1.2901100608309997, -5.065402029917999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.860954, 0.5, 0.133502], "xyz": [2.132365, 8.595483272746, -1.341527688492], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.608882, 0.5, 0.375086], "xyz": [2.132365, 5.260218477178, -3.7691439421559996], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.364036, 0.5, 0.6287250000000001], "xyz": [2.132365, 1.965201940735, -6.3178978288500005], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.5, 0.3774]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.5, 0.3774]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "1b", "charge_state_guessing_log": [{"input_parameters": {"charge_state": 0.0, "oxi_state": 3.0, "oxi_probability": 0.017, "max_host_oxi_magnitude": 3.0}, "probability_factors": {"oxi_probability": 0.017, "charge_state_magnitude": 1, "charge_state_vs_max_host_charge": 1.0, "oxi_state_vs_max_host_charge": 1.0}, "probability": 1, "probability_threshold": 0.0075}, {"input_parameters": {"charge_state": -2.0, "oxi_state": 1, "oxi_probability": 0.952, "max_host_oxi_magnitude": 3.0}, "probability_factors": {"oxi_probability": 0.952, "charge_state_magnitude": 0.6299605249474366, "charge_state_vs_max_host_charge": 1.0, "oxi_state_vs_max_host_charge": 1.0}, "probability": 0.5997224197499597, "probability_threshold": 0.0075}, {"input_parameters": {"charge_state": -1.0, "oxi_state": 2.0, "oxi_probability": 0.032, "max_host_oxi_magnitude": 3.0}, "probability_factors": {"oxi_probability": 0.032, "charge_state_magnitude": 1.0, "charge_state_vs_max_host_charge": 1.0, "oxi_state_vs_max_host_charge": 1.0}, "probability": 0.032, "probability_threshold": 0.0075}], "defect_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[0.0, 9.04686, 9.04686], [-6.2637, 5.902343, -5.902343], [-6.28679, -5.914443, 5.914443]], "pbc": [true, true, true], "a": 12.794192108890659, "b": 10.435959154255922, "c": 10.46350804006945, "alpha": 106.18615257482439, "beta": 90.0, "gamma": 90.0, "volume": 1341.7052035921397}, "properties": {}, "sites": [{"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.6666666666666666, 0.25514000000000014, 0.7329119999999999], "xyz": [-6.20578425048, 3.2023975450040014, 8.860082454995998], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.3333333333333333, 0.25514000000000014, 0.7329119999999999], "xyz": [-6.20578425048, 0.18677754500400146, 5.844462454995999], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [1.1328109255324493e-17, 0.25514000000000003, 0.732912], "xyz": [-6.20578425048, -2.828842454996, 2.828842454996], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.6666666666666666, 0.507568, 0.4823099999999999], "xyz": [-6.211435366499999, 6.174485428494001, 5.887994571506], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.3333333333333333, 0.507568, 0.4823099999999998], "xyz": [-6.211435366499999, 3.158865428494001, 2.872374571505999], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [1.0, 0.507568, 0.4823099999999998], "xyz": [-6.211435366499999, 9.190105428494002, 8.903614571505999], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.6666666666666665, 0.745735, 0.24147399999999997], "xyz": [-6.18915664796, 9.004639548122999, 3.057840451876998], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.33333333333333326, 0.745735, 0.24147399999999997], "xyz": [-6.18915664796, 5.989019548123, 0.04222045187699891], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [1.0, 0.745735, 0.24147399999999997], "xyz": [-6.18915664796, 12.020259548123, 6.073460451877], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.5, 0.12894399999999995, 0.39122999999999963], "xyz": [-3.2672473844999974, 2.9705941809020016, 6.076265819097999], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.16666666666666666, 0.12894400000000006, 0.39122999999999974], "xyz": [-3.2672473844999987, -0.04502581909799836, 3.0606458190979984], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.8333333333333334, 0.12894400000000006, 0.39122999999999974], "xyz": [-3.2672473844999987, 5.986214180902002, 9.091885819098], "properties": {}, "label": "Ag"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.6666666666666666, 0.004710000000000103, 0.9913699999999998], "xyz": [-6.262037029299999, 0.19563867862000184, 11.866841321379999], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.33333333333333337, 0.004710000000000103, 0.9913699999999998], "xyz": [-6.262037029299999, -2.8199813213799976, 8.851221321379999], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [6.0050254173577e-17, 0.004710000000000103, 0.9913699999999999], "xyz": [-6.2620370293, -5.835601321379999, 5.8356013213799995], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.49999999999999994, 0.6159830000000001, 0.8767599999999999], "xyz": [-9.3703387175, 2.973625903489, 6.0732340965109985], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.16666666666666666, 0.6159830000000001, 0.8767599999999999], "xyz": [-9.3703387175, -0.04199409651099877, 3.0576140965109992], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.8333333333333334, 0.6159830000000001, 0.8767599999999999], "xyz": [-9.3703387175, 5.989245903489001, 9.088854096511], "properties": {}, "label": "Sb"}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.49999999999999994, 0.874957, 0.622593], "xyz": [-9.39457960737, 6.0054355135519994, 3.0414244864479993], "properties": {}, "label": "Ag"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.16666666666666663, 0.874957, 0.622593], "xyz": [-9.39457960737, 2.9898155135519997, 0.02580448644799953], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.8333333333333333, 0.874957, 0.622593], "xyz": [-9.39457960737, 9.021055513552, 6.0570444864479995], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.49999999999999994, 0.36744600000000016, 0.14158599999999966], "xyz": [-3.1916929591399987, 5.854819999380002, 3.1920400006199965], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.16666666666666666, 0.36744600000000016, 0.14158599999999977], "xyz": [-3.1916929591399996, 2.839199999380002, 0.1764200006199978], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1.0}], "abc": [0.8333333333333334, 0.36744600000000016, 0.14158599999999977], "xyz": [-3.1916929591399996, 8.870439999380002, 6.207660000619998], "properties": {}, "label": "Sb"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.6666666666666665, 0.22963400000000023, 0.25470499999999985], "xyz": [-3.0396353327500005, 5.880180428147001, 6.1822995718529965], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.3333333333333333, 0.22963400000000012, 0.25470499999999974], "xyz": [-3.039635332749999, 2.8645604281470027, 3.166679571852998], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [5.942503922030778e-19, 0.22963400000000012, 0.25470499999999985], "xyz": [-3.0396353327499996, -0.15105957185299845, 0.15105957185299845], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.6666666666666666, 0.4959040000000001, 0.019389999999999796], "xyz": [-3.2280947428999993, 8.843554453302003, 3.2189255466979985], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.33333333333333326, 0.495904, 0.019389999999999796], "xyz": [-3.228094742899999, 5.827934453302, 0.20330554669799797], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [1.0, 0.4959040000000001, 0.019389999999999796], "xyz": [-3.2280947428999993, 11.859174453302003, 6.234545546697999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.6666666666666666, 0.745727, 0.7583669999999999], "xyz": [-9.438704281829999, 5.947458143780001, 6.115021856219999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.3333333333333333, 0.745727, 0.7583669999999999], "xyz": [-9.438704281829999, 2.9318381437800007, 3.0994018562199996], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [6.442444061789091e-19, 0.745727, 0.7583669999999999], "xyz": [-9.438704281829999, -0.08378185621999934, 0.08378185621999934], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.49999999999999994, 0.879393, 0.12869799999999998], "xyz": [-6.317351233519999, 8.952732132585, 0.09412786741499936], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.16666666666666663, 0.879393, 0.12869799999999998], "xyz": [-6.317351233519999, 5.937112132585, -2.9214921325850005], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.8333333333333334, 0.879393, 0.12869799999999998], "xyz": [-6.317351233519999, 11.968352132585, 3.1097478674150003], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.6666666666666666, 0.9827330000000001, 0.49591700000000005], "xyz": [-9.273270728530001, 8.898594414188, 3.1638855858120003], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.3333333333333333, 0.9827330000000001, 0.49591700000000005], "xyz": [-9.273270728530001, 5.882974414188001, 0.14826558581200017], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [1.0, 0.9827330000000001, 0.49591700000000005], "xyz": [-9.273270728530001, 11.914214414188, 6.1795055858120005], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.5, 0.13904600000000011, 0.8664979999999999], "xyz": [-6.31843339162, 0.21927415416400162, 8.827585845836], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.16666666666666666, 0.13904600000000011, 0.8664979999999998], "xyz": [-6.318433391619999, -2.7963458458359978, 5.811965845835998], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.8333333333333334, 0.13904600000000011, 0.8664979999999999], "xyz": [-6.31843339162, 3.2348941541640017, 11.843205845836], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.49999999999999994, 0.3911180000000001, 0.624914], "xyz": [-6.37854890266, 3.135924356572, 5.910935643427999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.16666666666666666, 0.39111799999999997, 0.624914], "xyz": [-6.3785489026599995, 0.1203043565719998, 2.8953156434280003], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.8333333333333334, 0.3911180000000001, 0.624914], "xyz": [-6.37854890266, 6.151544356572, 8.926555643428], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.49999999999999994, 0.635964, 0.3712749999999999], "xyz": [-6.31761566405, 6.081222838827, 2.965637161172999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.16666666666666663, 0.635964, 0.3712749999999999], "xyz": [-6.31761566405, 3.065602838827, -0.049982838827000484], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.8333333333333334, 0.635964, 0.3712749999999999], "xyz": [-6.31761566405, 9.096842838827001, 5.9812571611730005], "properties": {}, "label": "Te"}], "@version": null}, "defect_supercell_site": {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.49999999999999994, 0.874957, 0.622593], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 9.04686, 9.04686], [-6.2637, 5.902343, -5.902343], [-6.28679, -5.914443, 5.914443]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Ag", "@version": null}, "equivalent_supercell_sites": [{"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.49999999999999994, 0.874957, 0.622593], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 9.04686, 9.04686], [-6.2637, 5.902343, -5.902343], [-6.28679, -5.914443, 5.914443]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Ag", "@version": null}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.16666666666666663, 0.874957, 0.622593], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 9.04686, 9.04686], [-6.2637, 5.902343, -5.902343], [-6.28679, -5.914443, 5.914443]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Ag", "@version": null}, {"species": [{"element": "Ag", "occu": 1.0}], "abc": [0.8333333333333333, 0.874957, 0.622593], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 9.04686, 9.04686], [-6.2637, 5.902343, -5.902343], [-6.28679, -5.914443, 5.914443]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Ag", "@version": null}], "bulk_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 9.04686, 9.04686], [-6.2637, 5.902343, -5.902343], [-6.28679, -5.914443, 5.914443]], "pbc": [true, true, true], "a": 12.794192108890659, "b": 10.435959154255922, "c": 10.46350804006945, "alpha": 106.18615257482439, "beta": 90.0, "gamma": 90.0, "volume": 1341.7052035921397}, "properties": {}, "sites": [{"species": [{"element": "Ag", "occu": 1}], "abc": [0.6666666666666666, 0.25514000000000014, 0.7329119999999999], "xyz": [-6.20578425048, 3.2023975450040014, 8.860082454995998], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1}], "abc": [0.3333333333333333, 0.25514000000000014, 0.7329119999999999], "xyz": [-6.20578425048, 0.18677754500400146, 5.844462454995999], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1}], "abc": [1.1328109255324493e-17, 0.25514000000000003, 0.732912], "xyz": [-6.20578425048, -2.828842454996, 2.828842454996], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1}], "abc": [0.6666666666666666, 0.507568, 0.4823099999999999], "xyz": [-6.211435366499999, 6.174485428494001, 5.887994571506], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1}], "abc": [0.3333333333333333, 0.507568, 0.4823099999999998], "xyz": [-6.211435366499999, 3.158865428494001, 2.872374571505999], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1}], "abc": [1.0, 0.507568, 0.4823099999999998], "xyz": [-6.211435366499999, 9.190105428494002, 8.903614571505999], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1}], "abc": [0.6666666666666665, 0.745735, 0.24147399999999997], "xyz": [-6.18915664796, 9.004639548122999, 3.057840451876998], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1}], "abc": [0.33333333333333326, 0.745735, 0.24147399999999997], "xyz": [-6.18915664796, 5.989019548123, 0.04222045187699891], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1}], "abc": [1.0, 0.745735, 0.24147399999999997], "xyz": [-6.18915664796, 12.020259548123, 6.073460451877], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1}], "abc": [0.5, 0.12894399999999995, 0.39122999999999963], "xyz": [-3.2672473844999974, 2.9705941809020016, 6.076265819097999], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1}], "abc": [0.16666666666666666, 0.12894400000000006, 0.39122999999999974], "xyz": [-3.2672473844999987, -0.04502581909799836, 3.0606458190979984], "properties": {}, "label": "Ag"}, {"species": [{"element": "Ag", "occu": 1}], "abc": [0.8333333333333334, 0.12894400000000006, 0.39122999999999974], "xyz": [-3.2672473844999987, 5.986214180902002, 9.091885819098], "properties": {}, "label": "Ag"}, {"species": [{"element": "Sb", "occu": 1}], "abc": [0.6666666666666666, 0.004710000000000103, 0.9913699999999998], "xyz": [-6.262037029299999, 0.19563867862000184, 11.866841321379999], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1}], "abc": [0.33333333333333337, 0.004710000000000103, 0.9913699999999998], "xyz": [-6.262037029299999, -2.8199813213799976, 8.851221321379999], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1}], "abc": [6.0050254173577e-17, 0.004710000000000103, 0.9913699999999999], "xyz": [-6.2620370293, -5.835601321379999, 5.8356013213799995], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1}], "abc": [0.49999999999999994, 0.6159830000000001, 0.8767599999999999], "xyz": [-9.3703387175, 2.973625903489, 6.0732340965109985], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1}], "abc": [0.16666666666666666, 0.6159830000000001, 0.8767599999999999], "xyz": [-9.3703387175, -0.04199409651099877, 3.0576140965109992], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1}], "abc": [0.8333333333333334, 0.6159830000000001, 0.8767599999999999], "xyz": [-9.3703387175, 5.989245903489001, 9.088854096511], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1}], "abc": [0.49999999999999994, 0.874957, 0.622593], "xyz": [-9.39457960737, 6.0054355135519994, 3.0414244864479993], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1}], "abc": [0.16666666666666663, 0.874957, 0.622593], "xyz": [-9.39457960737, 2.9898155135519997, 0.02580448644799953], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1}], "abc": [0.8333333333333333, 0.874957, 0.622593], "xyz": [-9.39457960737, 9.021055513552, 6.0570444864479995], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1}], "abc": [0.49999999999999994, 0.36744600000000016, 0.14158599999999966], "xyz": [-3.1916929591399987, 5.854819999380002, 3.1920400006199965], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1}], "abc": [0.16666666666666666, 0.36744600000000016, 0.14158599999999977], "xyz": [-3.1916929591399996, 2.839199999380002, 0.1764200006199978], "properties": {}, "label": "Sb"}, {"species": [{"element": "Sb", "occu": 1}], "abc": [0.8333333333333334, 0.36744600000000016, 0.14158599999999977], "xyz": [-3.1916929591399996, 8.870439999380002, 6.207660000619998], "properties": {}, "label": "Sb"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.6666666666666665, 0.22963400000000023, 0.25470499999999985], "xyz": [-3.0396353327500005, 5.880180428147001, 6.1822995718529965], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.3333333333333333, 0.22963400000000012, 0.25470499999999974], "xyz": [-3.039635332749999, 2.8645604281470027, 3.166679571852998], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [5.942503922030778e-19, 0.22963400000000012, 0.25470499999999985], "xyz": [-3.0396353327499996, -0.15105957185299845, 0.15105957185299845], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.6666666666666666, 0.4959040000000001, 0.019389999999999796], "xyz": [-3.2280947428999993, 8.843554453302003, 3.2189255466979985], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.33333333333333326, 0.495904, 0.019389999999999796], "xyz": [-3.228094742899999, 5.827934453302, 0.20330554669799797], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [1.0, 0.4959040000000001, 0.019389999999999796], "xyz": [-3.2280947428999993, 11.859174453302003, 6.234545546697999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.6666666666666666, 0.745727, 0.7583669999999999], "xyz": [-9.438704281829999, 5.947458143780001, 6.115021856219999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.3333333333333333, 0.745727, 0.7583669999999999], "xyz": [-9.438704281829999, 2.9318381437800007, 3.0994018562199996], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [6.442444061789091e-19, 0.745727, 0.7583669999999999], "xyz": [-9.438704281829999, -0.08378185621999934, 0.08378185621999934], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.49999999999999994, 0.879393, 0.12869799999999998], "xyz": [-6.317351233519999, 8.952732132585, 0.09412786741499936], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.16666666666666663, 0.879393, 0.12869799999999998], "xyz": [-6.317351233519999, 5.937112132585, -2.9214921325850005], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.8333333333333334, 0.879393, 0.12869799999999998], "xyz": [-6.317351233519999, 11.968352132585, 3.1097478674150003], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.6666666666666666, 0.9827330000000001, 0.49591700000000005], "xyz": [-9.273270728530001, 8.898594414188, 3.1638855858120003], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.3333333333333333, 0.9827330000000001, 0.49591700000000005], "xyz": [-9.273270728530001, 5.882974414188001, 0.14826558581200017], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [1.0, 0.9827330000000001, 0.49591700000000005], "xyz": [-9.273270728530001, 11.914214414188, 6.1795055858120005], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.5, 0.13904600000000011, 0.8664979999999999], "xyz": [-6.31843339162, 0.21927415416400162, 8.827585845836], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.16666666666666666, 0.13904600000000011, 0.8664979999999998], "xyz": [-6.318433391619999, -2.7963458458359978, 5.811965845835998], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.8333333333333334, 0.13904600000000011, 0.8664979999999999], "xyz": [-6.31843339162, 3.2348941541640017, 11.843205845836], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.49999999999999994, 0.3911180000000001, 0.624914], "xyz": [-6.37854890266, 3.135924356572, 5.910935643427999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.16666666666666666, 0.39111799999999997, 0.624914], "xyz": [-6.3785489026599995, 0.1203043565719998, 2.8953156434280003], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.8333333333333334, 0.3911180000000001, 0.624914], "xyz": [-6.37854890266, 6.151544356572, 8.926555643428], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.49999999999999994, 0.635964, 0.3712749999999999], "xyz": [-6.31761566405, 6.081222838827, 2.965637161172999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.16666666666666663, 0.635964, 0.3712749999999999], "xyz": [-6.31761566405, 3.065602838827, -0.049982838827000484], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.8333333333333334, 0.635964, 0.3712749999999999], "xyz": [-6.31761566405, 9.096842838827001, 5.9812571611730005], "properties": {}, "label": "Te"}], "@version": null}, "@module": "doped.core", "@class": "DefectEntry", "@version": null}
\ No newline at end of file
diff --git a/tests/data/local_baseline_plots/vac_1_Cd_0_cli_default.png b/tests/data/local_baseline_plots/vac_1_Cd_0_cli_default.png
deleted file mode 100644
index db48d0f3..00000000
Binary files a/tests/data/local_baseline_plots/vac_1_Cd_0_cli_default.png and /dev/null differ
diff --git a/tests/data/local_baseline_plots/vac_1_Ti_0_cli_colorbar_disp.png b/tests/data/local_baseline_plots/vac_1_Ti_0_cli_colorbar_disp.png
deleted file mode 100644
index 3d355d04..00000000
Binary files a/tests/data/local_baseline_plots/vac_1_Ti_0_cli_colorbar_disp.png and /dev/null differ
diff --git a/tests/data/remote_baseline_plots/Cd_Te_s32c_2_displacement.png b/tests/data/remote_baseline_plots/Cd_Te_s32c_2_displacement.png
index 74f12713..f92253e8 100755
Binary files a/tests/data/remote_baseline_plots/Cd_Te_s32c_2_displacement.png and b/tests/data/remote_baseline_plots/Cd_Te_s32c_2_displacement.png differ
diff --git a/tests/data/remote_baseline_plots/Int_Se_1_6.png b/tests/data/remote_baseline_plots/Int_Se_1_6.png
index 56f990d5..d16cc15a 100755
Binary files a/tests/data/remote_baseline_plots/Int_Se_1_6.png and b/tests/data/remote_baseline_plots/Int_Se_1_6.png differ
diff --git a/tests/data/remote_baseline_plots/Te_i_Td_Te2.83_+2.png b/tests/data/remote_baseline_plots/Te_i_Td_Te2.83_+2.png
new file mode 100644
index 00000000..719db264
Binary files /dev/null and b/tests/data/remote_baseline_plots/Te_i_Td_Te2.83_+2.png differ
diff --git a/tests/data/remote_baseline_plots/Te_i_Td_Te2.83_+2_include_site_info_in_name.png b/tests/data/remote_baseline_plots/Te_i_Td_Te2.83_+2_include_site_info_in_name.png
new file mode 100644
index 00000000..0ce4f9b8
Binary files /dev/null and b/tests/data/remote_baseline_plots/Te_i_Td_Te2.83_+2_include_site_info_in_name.png differ
diff --git a/tests/data/remote_baseline_plots/as_2_O_on_I_1.png b/tests/data/remote_baseline_plots/as_2_O_on_I_1.png
index 634abea8..19ee474c 100644
Binary files a/tests/data/remote_baseline_plots/as_2_O_on_I_1.png and b/tests/data/remote_baseline_plots/as_2_O_on_I_1.png differ
diff --git a/tests/data/remote_baseline_plots/vac_1_Cd_-1.png b/tests/data/remote_baseline_plots/vac_1_Cd_-1.png
index 763fa319..f5d3e108 100644
Binary files a/tests/data/remote_baseline_plots/vac_1_Cd_-1.png and b/tests/data/remote_baseline_plots/vac_1_Cd_-1.png differ
diff --git a/tests/data/remote_baseline_plots/vac_1_Cd_-2.png b/tests/data/remote_baseline_plots/vac_1_Cd_-2.png
index c20368a0..df525f3f 100644
Binary files a/tests/data/remote_baseline_plots/vac_1_Cd_-2.png and b/tests/data/remote_baseline_plots/vac_1_Cd_-2.png differ
diff --git a/tests/data/remote_baseline_plots/vac_1_Cd_-2_only_rattled.png b/tests/data/remote_baseline_plots/vac_1_Cd_-2_only_rattled.png
index 6442ce60..9bc83313 100755
Binary files a/tests/data/remote_baseline_plots/vac_1_Cd_-2_only_rattled.png and b/tests/data/remote_baseline_plots/vac_1_Cd_-2_only_rattled.png differ
diff --git a/tests/data/remote_baseline_plots/vac_1_Cd_-2_only_rattled_and_rattled_dist_from_other_charges_states.png b/tests/data/remote_baseline_plots/vac_1_Cd_-2_only_rattled_and_rattled_dist_from_other_charges_states.png
index 1d12fd35..0db743fc 100755
Binary files a/tests/data/remote_baseline_plots/vac_1_Cd_-2_only_rattled_and_rattled_dist_from_other_charges_states.png and b/tests/data/remote_baseline_plots/vac_1_Cd_-2_only_rattled_and_rattled_dist_from_other_charges_states.png differ
diff --git a/tests/data/remote_baseline_plots/vac_1_Cd_-2_rattled_other_charge_states.png b/tests/data/remote_baseline_plots/vac_1_Cd_-2_rattled_other_charge_states.png
index 271e317f..f9f7d02d 100755
Binary files a/tests/data/remote_baseline_plots/vac_1_Cd_-2_rattled_other_charge_states.png and b/tests/data/remote_baseline_plots/vac_1_Cd_-2_rattled_other_charge_states.png differ
diff --git a/tests/data/remote_baseline_plots/vac_1_Cd_0.png b/tests/data/remote_baseline_plots/vac_1_Cd_0.png
index 10891e03..5b4354df 100644
Binary files a/tests/data/remote_baseline_plots/vac_1_Cd_0.png and b/tests/data/remote_baseline_plots/vac_1_Cd_0.png differ
diff --git a/tests/data/remote_baseline_plots/vac_1_Cd_0_colors.png b/tests/data/remote_baseline_plots/vac_1_Cd_0_colors.png
index 47d74460..60ed2edb 100755
Binary files a/tests/data/remote_baseline_plots/vac_1_Cd_0_colors.png and b/tests/data/remote_baseline_plots/vac_1_Cd_0_colors.png differ
diff --git a/tests/data/remote_baseline_plots/vac_1_Cd_0_displacement.png b/tests/data/remote_baseline_plots/vac_1_Cd_0_displacement.png
index e16cdfc9..18a03787 100755
Binary files a/tests/data/remote_baseline_plots/vac_1_Cd_0_displacement.png and b/tests/data/remote_baseline_plots/vac_1_Cd_0_displacement.png differ
diff --git a/tests/data/remote_baseline_plots/vac_1_Cd_0_fake_defect_name.png b/tests/data/remote_baseline_plots/vac_1_Cd_0_fake_defect_name.png
index fd3d3781..88e78d46 100755
Binary files a/tests/data/remote_baseline_plots/vac_1_Cd_0_fake_defect_name.png and b/tests/data/remote_baseline_plots/vac_1_Cd_0_fake_defect_name.png differ
diff --git a/tests/data/remote_baseline_plots/vac_1_Cd_0_include_site_info_in_name.png b/tests/data/remote_baseline_plots/vac_1_Cd_0_include_site_info_in_name.png
index 94ef956c..5adbc178 100755
Binary files a/tests/data/remote_baseline_plots/vac_1_Cd_0_include_site_info_in_name.png and b/tests/data/remote_baseline_plots/vac_1_Cd_0_include_site_info_in_name.png differ
diff --git a/tests/data/remote_baseline_plots/vac_1_Cd_0_max_dist.png b/tests/data/remote_baseline_plots/vac_1_Cd_0_max_dist.png
index 44d8da8d..54d37b50 100755
Binary files a/tests/data/remote_baseline_plots/vac_1_Cd_0_max_dist.png and b/tests/data/remote_baseline_plots/vac_1_Cd_0_max_dist.png differ
diff --git a/tests/data/remote_baseline_plots/vac_1_Cd_0_maxdist_title_linecolor_label.png b/tests/data/remote_baseline_plots/vac_1_Cd_0_maxdist_title_linecolor_label.png
index bf1cea54..ece35f43 100755
Binary files a/tests/data/remote_baseline_plots/vac_1_Cd_0_maxdist_title_linecolor_label.png and b/tests/data/remote_baseline_plots/vac_1_Cd_0_maxdist_title_linecolor_label.png differ
diff --git a/tests/data/remote_baseline_plots/vac_1_Cd_0_not_enough_markers.png b/tests/data/remote_baseline_plots/vac_1_Cd_0_not_enough_markers.png
index b4df874c..365bb168 100755
Binary files a/tests/data/remote_baseline_plots/vac_1_Cd_0_not_enough_markers.png and b/tests/data/remote_baseline_plots/vac_1_Cd_0_not_enough_markers.png differ
diff --git a/tests/data/remote_baseline_plots/vac_1_Cd_0_notitle.png b/tests/data/remote_baseline_plots/vac_1_Cd_0_notitle.png
index cb87d8f0..d5209dd2 100755
Binary files a/tests/data/remote_baseline_plots/vac_1_Cd_0_notitle.png and b/tests/data/remote_baseline_plots/vac_1_Cd_0_notitle.png differ
diff --git a/tests/data/remote_baseline_plots/vac_1_Cd_0_other_charge_states.png b/tests/data/remote_baseline_plots/vac_1_Cd_0_other_charge_states.png
index 7aff7d0d..5a78dc07 100755
Binary files a/tests/data/remote_baseline_plots/vac_1_Cd_0_other_charge_states.png and b/tests/data/remote_baseline_plots/vac_1_Cd_0_other_charge_states.png differ
diff --git a/tests/data/remote_baseline_plots/vac_1_Cd_0_plot_defect_add_colorbar_max_dist.png b/tests/data/remote_baseline_plots/vac_1_Cd_0_plot_defect_add_colorbar_max_dist.png
index a4d7fcb7..7a924978 100755
Binary files a/tests/data/remote_baseline_plots/vac_1_Cd_0_plot_defect_add_colorbar_max_dist.png and b/tests/data/remote_baseline_plots/vac_1_Cd_0_plot_defect_add_colorbar_max_dist.png differ
diff --git a/tests/data/remote_baseline_plots/vac_1_Cd_0_plot_defect_with_unrecognised_name.png b/tests/data/remote_baseline_plots/vac_1_Cd_0_plot_defect_with_unrecognised_name.png
index b3bbedee..d6c7ccc0 100755
Binary files a/tests/data/remote_baseline_plots/vac_1_Cd_0_plot_defect_with_unrecognised_name.png and b/tests/data/remote_baseline_plots/vac_1_Cd_0_plot_defect_with_unrecognised_name.png differ
diff --git a/tests/data/remote_baseline_plots/vac_1_Cd_0_plot_defect_without_colorbar.png b/tests/data/remote_baseline_plots/vac_1_Cd_0_plot_defect_without_colorbar.png
index fdb74b86..d2ecc1b8 100755
Binary files a/tests/data/remote_baseline_plots/vac_1_Cd_0_plot_defect_without_colorbar.png and b/tests/data/remote_baseline_plots/vac_1_Cd_0_plot_defect_without_colorbar.png differ
diff --git a/tests/data/remote_baseline_plots/vac_1_Cd_0_plot_defect_without_title_units_meV.png b/tests/data/remote_baseline_plots/vac_1_Cd_0_plot_defect_without_title_units_meV.png
index 5587e4fd..8aa3e2dc 100755
Binary files a/tests/data/remote_baseline_plots/vac_1_Cd_0_plot_defect_without_title_units_meV.png and b/tests/data/remote_baseline_plots/vac_1_Cd_0_plot_defect_without_title_units_meV.png differ
diff --git a/tests/data/vasp/CdTe/reduced_CdTe_defect_gen.json b/tests/data/vasp/CdTe/reduced_CdTe_defect_gen.json
new file mode 100644
index 00000000..0411ee89
--- /dev/null
+++ b/tests/data/vasp/CdTe/reduced_CdTe_defect_gen.json
@@ -0,0 +1 @@
+{"@module": "doped.generation", "@class": "DefectsGenerator", "defects": {"vacancies": [{"@module": "doped.core", "@class": "Vacancy", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 1, "equivalent_sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}], "user_charges": [], "oxi_state": -2.0, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.0]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.0]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.5, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.0, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.0]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4a", "@version": null}, {"@module": "doped.core", "@class": "Vacancy", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 1, "equivalent_sites": [{"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}], "user_charges": [], "oxi_state": 2.0, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.75, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.25, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.75, 0.25]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4c", "@version": null}], "substitutions": [{"@module": "doped.core", "@class": "Substitution", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.25, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 1, "equivalent_sites": [{"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.25, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}], "user_charges": [], "oxi_state": 4.0, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.75, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.25, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.75, 0.25]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4c", "@version": null}, {"@module": "doped.core", "@class": "Substitution", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Te", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.0, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 1, "equivalent_sites": [{"species": [{"element": "Te", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.0, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}], "user_charges": [], "oxi_state": -4.0, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.0]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.0]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.5, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.0, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.0]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4a", "@version": null}], "interstitials": [{"@module": "doped.core", "@class": "Interstitial", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.5000000000000003, 0.49999999999999994, 0.49999999999999967], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 1, "equivalent_sites": [{"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.5000000000000003, 0.49999999999999994, 0.49999999999999967], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}], "user_charges": [], "oxi_state": 2.0, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.5]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.5, 0.0]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.0, 0.0]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4b", "@version": null}, {"@module": "doped.core", "@class": "Interstitial", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.6249999999999998, 0.6249999999999998, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 4, "equivalent_sites": [{"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.6249999999999998, 0.6249999999999998, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.1250000000000001, 0.6249999999999998, 0.6249999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.6250000000000001, 0.12500000000000014, 0.6249999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.6249999999999999, 0.6249999999999999, 0.12500000000000033], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}], "user_charges": [], "oxi_state": 2.0, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.625, 0.625]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.625, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.125, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.625, 0.125]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.125, 0.125]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.375, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.625, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.375, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.875, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.625, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.875, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.375, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.875, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.125, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.875, 0.125]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.125, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.375, 0.125]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "16e", "@version": null}, {"@module": "doped.core", "@class": "Interstitial", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.7499999999999999, 0.7500000000000002, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 1, "equivalent_sites": [{"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.7499999999999999, 0.7500000000000002, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}], "user_charges": [], "oxi_state": 2.0, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.75, 0.75]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.75, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.75, 0.25]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.25, 0.25]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4d", "@version": null}, {"@module": "doped.core", "@class": "Interstitial", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Te", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.5000000000000003, 0.49999999999999994, 0.49999999999999967], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 1, "equivalent_sites": [{"species": [{"element": "Te", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.5000000000000003, 0.49999999999999994, 0.49999999999999967], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}], "user_charges": [], "oxi_state": 4, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.5]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.5, 0.0]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.0, 0.0]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4b", "@version": null}, {"@module": "doped.core", "@class": "Interstitial", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Te", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.6249999999999998, 0.6249999999999998, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 4, "equivalent_sites": [{"species": [{"element": "Te", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.6249999999999998, 0.6249999999999998, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.1250000000000001, 0.6249999999999998, 0.6249999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.6250000000000001, 0.12500000000000014, 0.6249999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.6249999999999999, 0.6249999999999999, 0.12500000000000033], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}], "user_charges": [], "oxi_state": 4, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.625, 0.625]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.625, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.125, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.625, 0.125]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.125, 0.125]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.375, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.625, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.375, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.875, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.625, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.875, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.375, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.875, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.125, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.875, 0.125]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.125, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.375, 0.125]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "16e", "@version": null}, {"@module": "doped.core", "@class": "Interstitial", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Te", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.7499999999999999, 0.7500000000000002, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 1, "equivalent_sites": [{"species": [{"element": "Te", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.7499999999999999, 0.7500000000000002, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}], "user_charges": [], "oxi_state": 4, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.75, 0.75]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.75, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.75, 0.25]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.25, 0.25]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4d", "@version": null}]}, "defect_entries": {"v_Cd_-2": {"defect": {"@module": "doped.core", "@class": "Vacancy", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 1, "equivalent_sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}], "user_charges": [], "oxi_state": -2.0, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.0]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.0]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.5, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.0, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.0]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4a", "@version": null}, "charge_state": -2, "sc_entry": {"@module": "pymatgen.entries.computed_entries", "@class": "ComputedStructureEntry", "energy": 0.0, "composition": {"Cd": 31.0, "Te": 32.0}, "entry_id": null, "correction": 0.0, "energy_adjustments": [], "parameters": {}, "data": {}, "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}]}, "@version": null}, "corrections": {}, "corrections_metadata": {}, "sc_defect_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.5]}, "bulk_entry": null, "entry_id": null, "name": "v_Cd_-2", "calculation_metadata": {}, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.0]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.0]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.5, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.0, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.0]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4a", "charge_state_guessing_log": [{"input_parameters": {"charge_state": -2}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}, {"input_parameters": {"charge_state": -1}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}, {"input_parameters": {"charge_state": 0}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}, {"input_parameters": {"charge_state": 1}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}], "defect_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "defect_supercell_site": {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, "equivalent_supercell_sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}], "bulk_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "@module": "doped.core", "@class": "DefectEntry", "@version": null}, "v_Cd_-1": {"defect": {"@module": "doped.core", "@class": "Vacancy", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 1, "equivalent_sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}], "user_charges": [], "oxi_state": -2.0, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.0]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.0]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.5, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.0, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.0]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4a", "@version": null}, "charge_state": -1, "sc_entry": {"@module": "pymatgen.entries.computed_entries", "@class": "ComputedStructureEntry", "energy": 0.0, "composition": {"Cd": 31.0, "Te": 32.0}, "entry_id": null, "correction": 0.0, "energy_adjustments": [], "parameters": {}, "data": {}, "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}]}, "@version": null}, "corrections": {}, "corrections_metadata": {}, "sc_defect_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.5]}, "bulk_entry": null, "entry_id": null, "name": "v_Cd_-1", "calculation_metadata": {}, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.0]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.0]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.5, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.0, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.0]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4a", "charge_state_guessing_log": [{"input_parameters": {"charge_state": -2}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}, {"input_parameters": {"charge_state": -1}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}, {"input_parameters": {"charge_state": 0}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}, {"input_parameters": {"charge_state": 1}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}], "defect_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "defect_supercell_site": {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, "equivalent_supercell_sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}], "bulk_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "@module": "doped.core", "@class": "DefectEntry", "@version": null}, "v_Cd_0": {"defect": {"@module": "doped.core", "@class": "Vacancy", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 1, "equivalent_sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}], "user_charges": [], "oxi_state": -2.0, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.0]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.0]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.5, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.0, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.0]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4a", "@version": null}, "charge_state": 0, "sc_entry": {"@module": "pymatgen.entries.computed_entries", "@class": "ComputedStructureEntry", "energy": 0.0, "composition": {"Cd": 31.0, "Te": 32.0}, "entry_id": null, "correction": 0.0, "energy_adjustments": [], "parameters": {}, "data": {}, "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}]}, "@version": null}, "corrections": {}, "corrections_metadata": {}, "sc_defect_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.5]}, "bulk_entry": null, "entry_id": null, "name": "v_Cd_0", "calculation_metadata": {}, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.0]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.0]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.5, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.0, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.0]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4a", "charge_state_guessing_log": [{"input_parameters": {"charge_state": -2}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}, {"input_parameters": {"charge_state": -1}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}, {"input_parameters": {"charge_state": 0}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}, {"input_parameters": {"charge_state": 1}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}], "defect_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "defect_supercell_site": {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, "equivalent_supercell_sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}], "bulk_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "@module": "doped.core", "@class": "DefectEntry", "@version": null}, "v_Cd_+1": {"defect": {"@module": "doped.core", "@class": "Vacancy", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 1, "equivalent_sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}], "user_charges": [], "oxi_state": -2.0, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.0]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.0]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.5, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.0, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.0]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4a", "@version": null}, "charge_state": 1, "sc_entry": {"@module": "pymatgen.entries.computed_entries", "@class": "ComputedStructureEntry", "energy": 0.0, "composition": {"Cd": 31.0, "Te": 32.0}, "entry_id": null, "correction": 0.0, "energy_adjustments": [], "parameters": {}, "data": {}, "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}]}, "@version": null}, "corrections": {}, "corrections_metadata": {}, "sc_defect_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.5]}, "bulk_entry": null, "entry_id": null, "name": "v_Cd_+1", "calculation_metadata": {}, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.0]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.0]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.5, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.0, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.0]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4a", "charge_state_guessing_log": [{"input_parameters": {"charge_state": -2}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}, {"input_parameters": {"charge_state": -1}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}, {"input_parameters": {"charge_state": 0}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}, {"input_parameters": {"charge_state": 1}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}], "defect_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "defect_supercell_site": {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, "equivalent_supercell_sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}], "bulk_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "@module": "doped.core", "@class": "DefectEntry", "@version": null}, "v_Te_-1": {"defect": {"@module": "doped.core", "@class": "Vacancy", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 1, "equivalent_sites": [{"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}], "user_charges": [], "oxi_state": 2.0, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.75, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.25, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.75, 0.25]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4c", "@version": null}, "charge_state": -1, "sc_entry": {"@module": "pymatgen.entries.computed_entries", "@class": "ComputedStructureEntry", "energy": 0.0, "composition": {"Cd": 32.0, "Te": 31.0}, "entry_id": null, "correction": 0.0, "energy_adjustments": [], "parameters": {}, "data": {}, "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}]}, "@version": null}, "corrections": {}, "corrections_metadata": {}, "sc_defect_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.37499999999999994, 0.37499999999999994, 0.625]}, "bulk_entry": null, "entry_id": null, "name": "v_Te_-1", "calculation_metadata": {}, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.75, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.25, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.75, 0.25]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4c", "charge_state_guessing_log": [{"input_parameters": {"charge_state": -1}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}, {"input_parameters": {"charge_state": 0}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}, {"input_parameters": {"charge_state": 1}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}, {"input_parameters": {"charge_state": 2}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}], "defect_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "defect_supercell_site": {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, "equivalent_supercell_sites": [{"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}], "bulk_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "@module": "doped.core", "@class": "DefectEntry", "@version": null}, "v_Te_0": {"defect": {"@module": "doped.core", "@class": "Vacancy", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 1, "equivalent_sites": [{"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}], "user_charges": [], "oxi_state": 2.0, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.75, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.25, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.75, 0.25]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4c", "@version": null}, "charge_state": 0, "sc_entry": {"@module": "pymatgen.entries.computed_entries", "@class": "ComputedStructureEntry", "energy": 0.0, "composition": {"Cd": 32.0, "Te": 31.0}, "entry_id": null, "correction": 0.0, "energy_adjustments": [], "parameters": {}, "data": {}, "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}]}, "@version": null}, "corrections": {}, "corrections_metadata": {}, "sc_defect_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.37499999999999994, 0.37499999999999994, 0.625]}, "bulk_entry": null, "entry_id": null, "name": "v_Te_0", "calculation_metadata": {}, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.75, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.25, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.75, 0.25]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4c", "charge_state_guessing_log": [{"input_parameters": {"charge_state": -1}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}, {"input_parameters": {"charge_state": 0}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}, {"input_parameters": {"charge_state": 1}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}, {"input_parameters": {"charge_state": 2}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}], "defect_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "defect_supercell_site": {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, "equivalent_supercell_sites": [{"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}], "bulk_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "@module": "doped.core", "@class": "DefectEntry", "@version": null}, "v_Te_+1": {"defect": {"@module": "doped.core", "@class": "Vacancy", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 1, "equivalent_sites": [{"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}], "user_charges": [], "oxi_state": 2.0, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.75, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.25, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.75, 0.25]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4c", "@version": null}, "charge_state": 1, "sc_entry": {"@module": "pymatgen.entries.computed_entries", "@class": "ComputedStructureEntry", "energy": 0.0, "composition": {"Cd": 32.0, "Te": 31.0}, "entry_id": null, "correction": 0.0, "energy_adjustments": [], "parameters": {}, "data": {}, "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}]}, "@version": null}, "corrections": {}, "corrections_metadata": {}, "sc_defect_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.37499999999999994, 0.37499999999999994, 0.625]}, "bulk_entry": null, "entry_id": null, "name": "v_Te_+1", "calculation_metadata": {}, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.75, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.25, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.75, 0.25]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4c", "charge_state_guessing_log": [{"input_parameters": {"charge_state": -1}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}, {"input_parameters": {"charge_state": 0}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}, {"input_parameters": {"charge_state": 1}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}, {"input_parameters": {"charge_state": 2}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}], "defect_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "defect_supercell_site": {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, "equivalent_supercell_sites": [{"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}], "bulk_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "@module": "doped.core", "@class": "DefectEntry", "@version": null}, "v_Te_+2": {"defect": {"@module": "doped.core", "@class": "Vacancy", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 1, "equivalent_sites": [{"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}], "user_charges": [], "oxi_state": 2.0, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.75, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.25, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.75, 0.25]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4c", "@version": null}, "charge_state": 2, "sc_entry": {"@module": "pymatgen.entries.computed_entries", "@class": "ComputedStructureEntry", "energy": 0.0, "composition": {"Cd": 32.0, "Te": 31.0}, "entry_id": null, "correction": 0.0, "energy_adjustments": [], "parameters": {}, "data": {}, "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}]}, "@version": null}, "corrections": {}, "corrections_metadata": {}, "sc_defect_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.37499999999999994, 0.37499999999999994, 0.625]}, "bulk_entry": null, "entry_id": null, "name": "v_Te_+2", "calculation_metadata": {}, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.75, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.25, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.75, 0.25]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4c", "charge_state_guessing_log": [{"input_parameters": {"charge_state": -1}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}, {"input_parameters": {"charge_state": 0}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}, {"input_parameters": {"charge_state": 1}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}, {"input_parameters": {"charge_state": 2}, "probability_factors": {"oxi_probability": 1}, "probability": 1, "probability_threshold": 0.0075, "padding": 1}], "defect_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "defect_supercell_site": {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, "equivalent_supercell_sites": [{"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}], "bulk_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "@module": "doped.core", "@class": "DefectEntry", "@version": null}, "Cd_Te_0": {"defect": {"@module": "doped.core", "@class": "Substitution", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.25, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 1, "equivalent_sites": [{"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.25, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}], "user_charges": [], "oxi_state": 4.0, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.75, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.25, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.75, 0.25]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4c", "@version": null}, "charge_state": 0, "sc_entry": {"@module": "pymatgen.entries.computed_entries", "@class": "ComputedStructureEntry", "energy": 0.0, "composition": {"Cd": 33.0, "Te": 31.0}, "entry_id": null, "correction": 0.0, "energy_adjustments": [], "parameters": {}, "data": {}, "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}]}, "@version": null}, "corrections": {}, "corrections_metadata": {}, "sc_defect_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.37499999999999994, 0.37499999999999994, 0.625]}, "bulk_entry": null, "entry_id": null, "name": "Cd_Te_0", "calculation_metadata": {}, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.75, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.25, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.75, 0.25]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4c", "charge_state_guessing_log": [{"input_parameters": {"charge_state": 4.0, "oxi_state": 2.0, "oxi_probability": 1.0, "max_host_oxi_magnitude": 2.0}, "probability_factors": {"oxi_probability": 1.0, "charge_state_magnitude": 0.3968502629920499, "charge_state_vs_max_host_charge": 0.3968502629920499, "oxi_state_vs_max_host_charge": 1.0}, "probability": 0.15749013123685918, "probability_threshold": 0.0075}], "defect_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "defect_supercell_site": {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, "equivalent_supercell_sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}], "bulk_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "@module": "doped.core", "@class": "DefectEntry", "@version": null}, "Cd_Te_+1": {"defect": {"@module": "doped.core", "@class": "Substitution", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.25, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 1, "equivalent_sites": [{"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.25, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}], "user_charges": [], "oxi_state": 4.0, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.75, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.25, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.75, 0.25]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4c", "@version": null}, "charge_state": 1, "sc_entry": {"@module": "pymatgen.entries.computed_entries", "@class": "ComputedStructureEntry", "energy": 0.0, "composition": {"Cd": 33.0, "Te": 31.0}, "entry_id": null, "correction": 0.0, "energy_adjustments": [], "parameters": {}, "data": {}, "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}]}, "@version": null}, "corrections": {}, "corrections_metadata": {}, "sc_defect_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.37499999999999994, 0.37499999999999994, 0.625]}, "bulk_entry": null, "entry_id": null, "name": "Cd_Te_+1", "calculation_metadata": {}, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.75, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.25, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.75, 0.25]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4c", "charge_state_guessing_log": [{"input_parameters": {"charge_state": 4.0, "oxi_state": 2.0, "oxi_probability": 1.0, "max_host_oxi_magnitude": 2.0}, "probability_factors": {"oxi_probability": 1.0, "charge_state_magnitude": 0.3968502629920499, "charge_state_vs_max_host_charge": 0.3968502629920499, "oxi_state_vs_max_host_charge": 1.0}, "probability": 0.15749013123685918, "probability_threshold": 0.0075}], "defect_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "defect_supercell_site": {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, "equivalent_supercell_sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}], "bulk_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "@module": "doped.core", "@class": "DefectEntry", "@version": null}, "Cd_Te_+2": {"defect": {"@module": "doped.core", "@class": "Substitution", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.25, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 1, "equivalent_sites": [{"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.25, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}], "user_charges": [], "oxi_state": 4.0, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.75, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.25, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.75, 0.25]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4c", "@version": null}, "charge_state": 2, "sc_entry": {"@module": "pymatgen.entries.computed_entries", "@class": "ComputedStructureEntry", "energy": 0.0, "composition": {"Cd": 33.0, "Te": 31.0}, "entry_id": null, "correction": 0.0, "energy_adjustments": [], "parameters": {}, "data": {}, "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}]}, "@version": null}, "corrections": {}, "corrections_metadata": {}, "sc_defect_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.37499999999999994, 0.37499999999999994, 0.625]}, "bulk_entry": null, "entry_id": null, "name": "Cd_Te_+2", "calculation_metadata": {}, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.75, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.25, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.75, 0.25]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4c", "charge_state_guessing_log": [{"input_parameters": {"charge_state": 4.0, "oxi_state": 2.0, "oxi_probability": 1.0, "max_host_oxi_magnitude": 2.0}, "probability_factors": {"oxi_probability": 1.0, "charge_state_magnitude": 0.3968502629920499, "charge_state_vs_max_host_charge": 0.3968502629920499, "oxi_state_vs_max_host_charge": 1.0}, "probability": 0.15749013123685918, "probability_threshold": 0.0075}], "defect_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "defect_supercell_site": {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, "equivalent_supercell_sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}], "bulk_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "@module": "doped.core", "@class": "DefectEntry", "@version": null}, "Cd_Te_+3": {"defect": {"@module": "doped.core", "@class": "Substitution", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.25, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 1, "equivalent_sites": [{"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.25, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}], "user_charges": [], "oxi_state": 4.0, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.75, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.25, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.75, 0.25]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4c", "@version": null}, "charge_state": 3, "sc_entry": {"@module": "pymatgen.entries.computed_entries", "@class": "ComputedStructureEntry", "energy": 0.0, "composition": {"Cd": 33.0, "Te": 31.0}, "entry_id": null, "correction": 0.0, "energy_adjustments": [], "parameters": {}, "data": {}, "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}]}, "@version": null}, "corrections": {}, "corrections_metadata": {}, "sc_defect_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.37499999999999994, 0.37499999999999994, 0.625]}, "bulk_entry": null, "entry_id": null, "name": "Cd_Te_+3", "calculation_metadata": {}, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.75, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.25, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.75, 0.25]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4c", "charge_state_guessing_log": [{"input_parameters": {"charge_state": 4.0, "oxi_state": 2.0, "oxi_probability": 1.0, "max_host_oxi_magnitude": 2.0}, "probability_factors": {"oxi_probability": 1.0, "charge_state_magnitude": 0.3968502629920499, "charge_state_vs_max_host_charge": 0.3968502629920499, "oxi_state_vs_max_host_charge": 1.0}, "probability": 0.15749013123685918, "probability_threshold": 0.0075}], "defect_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "defect_supercell_site": {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, "equivalent_supercell_sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}], "bulk_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "@module": "doped.core", "@class": "DefectEntry", "@version": null}, "Cd_Te_+4": {"defect": {"@module": "doped.core", "@class": "Substitution", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.25, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 1, "equivalent_sites": [{"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.25, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}], "user_charges": [], "oxi_state": 4.0, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.75, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.25, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.75, 0.25]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4c", "@version": null}, "charge_state": 4, "sc_entry": {"@module": "pymatgen.entries.computed_entries", "@class": "ComputedStructureEntry", "energy": 0.0, "composition": {"Cd": 33.0, "Te": 31.0}, "entry_id": null, "correction": 0.0, "energy_adjustments": [], "parameters": {}, "data": {}, "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}]}, "@version": null}, "corrections": {}, "corrections_metadata": {}, "sc_defect_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.37499999999999994, 0.37499999999999994, 0.625]}, "bulk_entry": null, "entry_id": null, "name": "Cd_Te_+4", "calculation_metadata": {}, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.25, 0.25]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.25, 0.75, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.25, 0.75]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.75, 0.75, 0.25]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4c", "charge_state_guessing_log": [{"input_parameters": {"charge_state": 4.0, "oxi_state": 2.0, "oxi_probability": 1.0, "max_host_oxi_magnitude": 2.0}, "probability_factors": {"oxi_probability": 1.0, "charge_state_magnitude": 0.3968502629920499, "charge_state_vs_max_host_charge": 0.3968502629920499, "oxi_state_vs_max_host_charge": 1.0}, "probability": 0.15749013123685918, "probability_threshold": 0.0075}], "defect_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "defect_supercell_site": {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, "equivalent_supercell_sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}], "bulk_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "@module": "doped.core", "@class": "DefectEntry", "@version": null}, "Te_Cd_+1": {"defect": {"@module": "doped.core", "@class": "Substitution", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Te", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.0, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 1, "equivalent_sites": [{"species": [{"element": "Te", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.0, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}], "user_charges": [], "oxi_state": -4.0, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.0]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.0]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.5, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.0, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.0]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4a", "@version": null}, "charge_state": 1, "sc_entry": {"@module": "pymatgen.entries.computed_entries", "@class": "ComputedStructureEntry", "energy": 0.0, "composition": {"Cd": 31.0, "Te": 33.0}, "entry_id": null, "correction": 0.0, "energy_adjustments": [], "parameters": {}, "data": {}, "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Te"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}]}, "@version": null}, "corrections": {}, "corrections_metadata": {}, "sc_defect_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.5]}, "bulk_entry": null, "entry_id": null, "name": "Te_Cd_+1", "calculation_metadata": {}, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.0]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.0]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.5, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.0, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.0]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4a", "charge_state_guessing_log": [{"input_parameters": {"charge_state": 2.0, "oxi_state": 4.0, "oxi_probability": 0.347, "max_host_oxi_magnitude": 2.0}, "probability_factors": {"oxi_probability": 0.347, "charge_state_magnitude": 0.6299605249474366, "charge_state_vs_max_host_charge": 1.0, "oxi_state_vs_max_host_charge": 0.3968502629920499}, "probability": 0.08675000000000001, "probability_threshold": 0.0075}, {"input_parameters": {"charge_state": -4.0, "oxi_state": -2.0, "oxi_probability": 0.446, "max_host_oxi_magnitude": 2.0}, "probability_factors": {"oxi_probability": 0.446, "charge_state_magnitude": 0.3968502629920499, "charge_state_vs_max_host_charge": 0.3968502629920499, "oxi_state_vs_max_host_charge": 1.0}, "probability": 0.07024059853163919, "probability_threshold": 0.0075}, {"input_parameters": {"charge_state": -3.0, "oxi_state": -1, "oxi_probability": 0.082, "max_host_oxi_magnitude": 2.0}, "probability_factors": {"oxi_probability": 0.082, "charge_state_magnitude": 0.4807498567691361, "charge_state_vs_max_host_charge": 0.6299605249474366, "oxi_state_vs_max_host_charge": 1.0}, "probability": 0.024833981435372576, "probability_threshold": 0.0075}, {"input_parameters": {"charge_state": 4.0, "oxi_state": 6.0, "oxi_probability": 0.111, "max_host_oxi_magnitude": 2.0}, "probability_factors": {"oxi_probability": 0.111, "charge_state_magnitude": 0.3968502629920499, "charge_state_vs_max_host_charge": 0.3968502629920499, "oxi_state_vs_max_host_charge": 0.25}, "probability": 0.004370351141822841, "probability_threshold": 0.0075}], "defect_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Te"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "defect_supercell_site": {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, "equivalent_supercell_sites": [{"species": [{"element": "Te", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}], "bulk_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "@module": "doped.core", "@class": "DefectEntry", "@version": null}, "Te_Cd_+2": {"defect": {"@module": "doped.core", "@class": "Substitution", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Te", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.0, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 1, "equivalent_sites": [{"species": [{"element": "Te", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.0, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}], "user_charges": [], "oxi_state": -4.0, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.0]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.0]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.5, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.0, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.0]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4a", "@version": null}, "charge_state": 2, "sc_entry": {"@module": "pymatgen.entries.computed_entries", "@class": "ComputedStructureEntry", "energy": 0.0, "composition": {"Cd": 31.0, "Te": 33.0}, "entry_id": null, "correction": 0.0, "energy_adjustments": [], "parameters": {}, "data": {}, "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Te"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}]}, "@version": null}, "corrections": {}, "corrections_metadata": {}, "sc_defect_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.5]}, "bulk_entry": null, "entry_id": null, "name": "Te_Cd_+2", "calculation_metadata": {}, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.0]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.0]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.5, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.0, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.0]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4a", "charge_state_guessing_log": [{"input_parameters": {"charge_state": 2.0, "oxi_state": 4.0, "oxi_probability": 0.347, "max_host_oxi_magnitude": 2.0}, "probability_factors": {"oxi_probability": 0.347, "charge_state_magnitude": 0.6299605249474366, "charge_state_vs_max_host_charge": 1.0, "oxi_state_vs_max_host_charge": 0.3968502629920499}, "probability": 0.08675000000000001, "probability_threshold": 0.0075}, {"input_parameters": {"charge_state": -4.0, "oxi_state": -2.0, "oxi_probability": 0.446, "max_host_oxi_magnitude": 2.0}, "probability_factors": {"oxi_probability": 0.446, "charge_state_magnitude": 0.3968502629920499, "charge_state_vs_max_host_charge": 0.3968502629920499, "oxi_state_vs_max_host_charge": 1.0}, "probability": 0.07024059853163919, "probability_threshold": 0.0075}, {"input_parameters": {"charge_state": -3.0, "oxi_state": -1, "oxi_probability": 0.082, "max_host_oxi_magnitude": 2.0}, "probability_factors": {"oxi_probability": 0.082, "charge_state_magnitude": 0.4807498567691361, "charge_state_vs_max_host_charge": 0.6299605249474366, "oxi_state_vs_max_host_charge": 1.0}, "probability": 0.024833981435372576, "probability_threshold": 0.0075}, {"input_parameters": {"charge_state": 4.0, "oxi_state": 6.0, "oxi_probability": 0.111, "max_host_oxi_magnitude": 2.0}, "probability_factors": {"oxi_probability": 0.111, "charge_state_magnitude": 0.3968502629920499, "charge_state_vs_max_host_charge": 0.3968502629920499, "oxi_state_vs_max_host_charge": 0.25}, "probability": 0.004370351141822841, "probability_threshold": 0.0075}], "defect_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Te"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "defect_supercell_site": {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, "equivalent_supercell_sites": [{"species": [{"element": "Te", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}], "bulk_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "@module": "doped.core", "@class": "DefectEntry", "@version": null}, "Cd_i_C3v_0": {"defect": {"@module": "doped.core", "@class": "Interstitial", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.6249999999999998, 0.6249999999999998, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 4, "equivalent_sites": [{"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.6249999999999998, 0.6249999999999998, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.1250000000000001, 0.6249999999999998, 0.6249999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.6250000000000001, 0.12500000000000014, 0.6249999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.6249999999999999, 0.6249999999999999, 0.12500000000000033], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}], "user_charges": [], "oxi_state": 2.0, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.625, 0.625]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.625, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.125, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.625, 0.125]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.125, 0.125]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.375, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.625, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.375, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.875, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.625, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.875, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.375, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.875, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.125, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.875, 0.125]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.125, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.375, 0.125]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "16e", "@version": null}, "charge_state": 0, "sc_entry": {"@module": "pymatgen.entries.computed_entries", "@class": "ComputedStructureEntry", "energy": 0.0, "composition": {"Cd": 33.0, "Te": 32.0}, "entry_id": null, "correction": 0.0, "energy_adjustments": [], "parameters": {}, "data": {}, "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.43750000000000006, 0.4375], "xyz": [4.087907499999998, 5.7230705, 5.7230704999999995], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}]}, "@version": null}, "corrections": {}, "corrections_metadata": {}, "sc_defect_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.3124999999999999, 0.43750000000000006, 0.4375]}, "bulk_entry": null, "entry_id": null, "name": "Cd_i_C3v_0", "calculation_metadata": {}, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.625, 0.625]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.625, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.125, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.625, 0.125]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.125, 0.125]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.375, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.625, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.375, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.875, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.625, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.875, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.375, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.875, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.125, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.875, 0.125]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.125, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.375, 0.125]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "16e", "charge_state_guessing_log": [{"input_parameters": {"charge_state": 2.0, "oxi_state": 2.0, "oxi_probability": 1.0, "max_host_oxi_magnitude": 2.0}, "probability_factors": {"oxi_probability": 1.0, "charge_state_magnitude": 0.6299605249474366, "charge_state_vs_max_host_charge": 1.0, "oxi_state_vs_max_host_charge": 1.0}, "probability": 0.6299605249474366, "probability_threshold": 0.0075}], "defect_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.43750000000000006, 0.4375], "xyz": [4.087907499999998, 5.7230705, 5.7230704999999995], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "defect_supercell_site": {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.43750000000000006, 0.4375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, "equivalent_supercell_sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.31249999999999994, 0.3124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0625, 0.5624999999999999, 0.3124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0625, 0.31249999999999994, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.31249999999999994, 0.31249999999999994, 0.3124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.5624999999999999, 0.3124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.8124999999999999, 0.3124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0625, 0.0625, 0.3124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.31249999999999994, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.5624999999999999, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0625, 0.8124999999999999, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.31249999999999994, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0625, 0.5624999999999999, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0625, 0.31249999999999994, 0.06249999999999978], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.31249999999999994, 0.8124999999999999, 0.3124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.0625, 0.3124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.31249999999999994, 0.5624999999999999, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.8124999999999999, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.0625, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.31249999999999994, 0.31249999999999994, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.5624999999999999, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.8124999999999999, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0625, 0.0625, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.31249999999999994, 0.06249999999999978], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.5624999999999999, 0.06249999999999978], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0625, 0.8124999999999999, 0.06249999999999978], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.31249999999999994, 0.0625, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.31249999999999994, 0.8124999999999999, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.0625, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.31249999999999994, 0.5624999999999999, 0.06249999999999978], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.8124999999999999, 0.06249999999999978], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.0625, 0.06249999999999978], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.31249999999999994, 0.0625, 0.06249999999999978], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.18750000000000003, 0.18749999999999997], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.06249999999999978, 0.43750000000000006, 0.18749999999999997], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.06249999999999978, 0.18750000000000003, 0.4375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.18750000000000003, 0.18749999999999997], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.43750000000000006, 0.18749999999999997], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.6875, 0.18749999999999997], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.06249999999999978, 0.9374999999999999, 0.18749999999999997], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.18750000000000003, 0.4375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.43750000000000006, 0.4375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.06249999999999978, 0.6875, 0.4375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.18750000000000003, 0.6875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.06249999999999978, 0.43750000000000006, 0.6875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.06249999999999978, 0.18750000000000003, 0.9374999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.6875, 0.18749999999999997], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.9374999999999999, 0.18749999999999997], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.43750000000000006, 0.4375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.6875, 0.4375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.9374999999999999, 0.4375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.18750000000000003, 0.6875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.43750000000000006, 0.6875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.6875, 0.6875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.06249999999999978, 0.9374999999999999, 0.6875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.18750000000000003, 0.9374999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.43750000000000006, 0.9374999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.06249999999999978, 0.6875, 0.9374999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.9374999999999999, 0.4375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.6875, 0.6875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.9374999999999999, 0.6875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.43750000000000006, 0.9374999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.6875, 0.9374999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.9374999999999999, 0.9374999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.9374999999999999, 0.9374999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.3125, 0.18750000000000008], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9374999999999999, 0.5625, 0.18750000000000008], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9374999999999999, 0.3125, 0.43750000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000003, 0.3125, 0.18750000000000008], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.5625, 0.18750000000000008], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.8125, 0.18750000000000008], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9374999999999999, 0.0625, 0.18750000000000008], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.3125, 0.43750000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.5625, 0.43750000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9374999999999999, 0.8125, 0.43750000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.3125, 0.6875000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9374999999999999, 0.5625, 0.6875000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9374999999999999, 0.3125, 0.9375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000003, 0.8125, 0.18750000000000008], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.0625, 0.18750000000000008], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000003, 0.5625, 0.43750000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.8125, 0.43750000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.0625, 0.43750000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000003, 0.3125, 0.6875000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.5625, 0.6875000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.8125, 0.6875000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9374999999999999, 0.0625, 0.6875000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.3125, 0.9375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.5625, 0.9375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9374999999999999, 0.8125, 0.9375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000003, 0.0625, 0.43750000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000003, 0.8125, 0.6875000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.0625, 0.6875000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000003, 0.5625, 0.9375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.8125, 0.9375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.0625, 0.9375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000003, 0.0625, 0.9375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.18750000000000006, 0.31249999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9375, 0.43750000000000006, 0.31249999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9375, 0.18750000000000006, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000006, 0.18750000000000006, 0.31249999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.43750000000000006, 0.31249999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.6875, 0.31249999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9375, 0.9375, 0.31249999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.18750000000000006, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.43750000000000006, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9375, 0.6875, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.18750000000000006, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9375, 0.43750000000000006, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9375, 0.18750000000000006, 0.0625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000006, 0.6875, 0.31249999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.9375, 0.31249999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000006, 0.43750000000000006, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.6875, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.9375, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000006, 0.18750000000000006, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.43750000000000006, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.6875, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9375, 0.9375, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.18750000000000006, 0.0625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.43750000000000006, 0.0625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9375, 0.6875, 0.0625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000006, 0.9375, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000006, 0.6875, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.9375, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000006, 0.43750000000000006, 0.0625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.6875, 0.0625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.9375, 0.0625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000006, 0.9375, 0.0625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}], "bulk_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "@module": "doped.core", "@class": "DefectEntry", "@version": null}, "Cd_i_C3v_+1": {"defect": {"@module": "doped.core", "@class": "Interstitial", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.6249999999999998, 0.6249999999999998, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 4, "equivalent_sites": [{"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.6249999999999998, 0.6249999999999998, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.1250000000000001, 0.6249999999999998, 0.6249999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.6250000000000001, 0.12500000000000014, 0.6249999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.6249999999999999, 0.6249999999999999, 0.12500000000000033], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}], "user_charges": [], "oxi_state": 2.0, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.625, 0.625]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.625, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.125, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.625, 0.125]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.125, 0.125]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.375, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.625, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.375, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.875, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.625, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.875, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.375, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.875, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.125, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.875, 0.125]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.125, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.375, 0.125]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "16e", "@version": null}, "charge_state": 1, "sc_entry": {"@module": "pymatgen.entries.computed_entries", "@class": "ComputedStructureEntry", "energy": 0.0, "composition": {"Cd": 33.0, "Te": 32.0}, "entry_id": null, "correction": 0.0, "energy_adjustments": [], "parameters": {}, "data": {}, "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.43750000000000006, 0.4375], "xyz": [4.087907499999998, 5.7230705, 5.7230704999999995], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}]}, "@version": null}, "corrections": {}, "corrections_metadata": {}, "sc_defect_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.3124999999999999, 0.43750000000000006, 0.4375]}, "bulk_entry": null, "entry_id": null, "name": "Cd_i_C3v_+1", "calculation_metadata": {}, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.625, 0.625]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.625, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.125, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.625, 0.125]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.125, 0.125]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.375, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.625, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.375, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.875, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.625, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.875, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.375, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.875, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.125, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.875, 0.125]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.125, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.375, 0.125]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "16e", "charge_state_guessing_log": [{"input_parameters": {"charge_state": 2.0, "oxi_state": 2.0, "oxi_probability": 1.0, "max_host_oxi_magnitude": 2.0}, "probability_factors": {"oxi_probability": 1.0, "charge_state_magnitude": 0.6299605249474366, "charge_state_vs_max_host_charge": 1.0, "oxi_state_vs_max_host_charge": 1.0}, "probability": 0.6299605249474366, "probability_threshold": 0.0075}], "defect_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.43750000000000006, 0.4375], "xyz": [4.087907499999998, 5.7230705, 5.7230704999999995], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "defect_supercell_site": {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.43750000000000006, 0.4375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, "equivalent_supercell_sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.31249999999999994, 0.3124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0625, 0.5624999999999999, 0.3124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0625, 0.31249999999999994, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.31249999999999994, 0.31249999999999994, 0.3124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.5624999999999999, 0.3124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.8124999999999999, 0.3124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0625, 0.0625, 0.3124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.31249999999999994, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.5624999999999999, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0625, 0.8124999999999999, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.31249999999999994, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0625, 0.5624999999999999, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0625, 0.31249999999999994, 0.06249999999999978], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.31249999999999994, 0.8124999999999999, 0.3124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.0625, 0.3124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.31249999999999994, 0.5624999999999999, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.8124999999999999, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.0625, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.31249999999999994, 0.31249999999999994, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.5624999999999999, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.8124999999999999, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0625, 0.0625, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.31249999999999994, 0.06249999999999978], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.5624999999999999, 0.06249999999999978], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0625, 0.8124999999999999, 0.06249999999999978], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.31249999999999994, 0.0625, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.31249999999999994, 0.8124999999999999, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.0625, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.31249999999999994, 0.5624999999999999, 0.06249999999999978], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.8124999999999999, 0.06249999999999978], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.0625, 0.06249999999999978], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.31249999999999994, 0.0625, 0.06249999999999978], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.18750000000000003, 0.18749999999999997], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.06249999999999978, 0.43750000000000006, 0.18749999999999997], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.06249999999999978, 0.18750000000000003, 0.4375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.18750000000000003, 0.18749999999999997], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.43750000000000006, 0.18749999999999997], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.6875, 0.18749999999999997], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.06249999999999978, 0.9374999999999999, 0.18749999999999997], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.18750000000000003, 0.4375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.43750000000000006, 0.4375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.06249999999999978, 0.6875, 0.4375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.18750000000000003, 0.6875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.06249999999999978, 0.43750000000000006, 0.6875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.06249999999999978, 0.18750000000000003, 0.9374999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.6875, 0.18749999999999997], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.9374999999999999, 0.18749999999999997], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.43750000000000006, 0.4375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.6875, 0.4375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.9374999999999999, 0.4375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.18750000000000003, 0.6875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.43750000000000006, 0.6875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.6875, 0.6875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.06249999999999978, 0.9374999999999999, 0.6875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.18750000000000003, 0.9374999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.43750000000000006, 0.9374999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.06249999999999978, 0.6875, 0.9374999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.9374999999999999, 0.4375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.6875, 0.6875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.9374999999999999, 0.6875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.43750000000000006, 0.9374999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.6875, 0.9374999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.9374999999999999, 0.9374999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.9374999999999999, 0.9374999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.3125, 0.18750000000000008], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9374999999999999, 0.5625, 0.18750000000000008], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9374999999999999, 0.3125, 0.43750000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000003, 0.3125, 0.18750000000000008], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.5625, 0.18750000000000008], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.8125, 0.18750000000000008], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9374999999999999, 0.0625, 0.18750000000000008], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.3125, 0.43750000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.5625, 0.43750000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9374999999999999, 0.8125, 0.43750000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.3125, 0.6875000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9374999999999999, 0.5625, 0.6875000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9374999999999999, 0.3125, 0.9375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000003, 0.8125, 0.18750000000000008], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.0625, 0.18750000000000008], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000003, 0.5625, 0.43750000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.8125, 0.43750000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.0625, 0.43750000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000003, 0.3125, 0.6875000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.5625, 0.6875000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.8125, 0.6875000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9374999999999999, 0.0625, 0.6875000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.3125, 0.9375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.5625, 0.9375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9374999999999999, 0.8125, 0.9375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000003, 0.0625, 0.43750000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000003, 0.8125, 0.6875000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.0625, 0.6875000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000003, 0.5625, 0.9375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.8125, 0.9375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.0625, 0.9375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000003, 0.0625, 0.9375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.18750000000000006, 0.31249999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9375, 0.43750000000000006, 0.31249999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9375, 0.18750000000000006, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000006, 0.18750000000000006, 0.31249999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.43750000000000006, 0.31249999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.6875, 0.31249999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9375, 0.9375, 0.31249999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.18750000000000006, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.43750000000000006, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9375, 0.6875, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.18750000000000006, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9375, 0.43750000000000006, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9375, 0.18750000000000006, 0.0625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000006, 0.6875, 0.31249999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.9375, 0.31249999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000006, 0.43750000000000006, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.6875, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.9375, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000006, 0.18750000000000006, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.43750000000000006, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.6875, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9375, 0.9375, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.18750000000000006, 0.0625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.43750000000000006, 0.0625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9375, 0.6875, 0.0625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000006, 0.9375, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000006, 0.6875, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.9375, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000006, 0.43750000000000006, 0.0625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.6875, 0.0625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.9375, 0.0625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000006, 0.9375, 0.0625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}], "bulk_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "@module": "doped.core", "@class": "DefectEntry", "@version": null}, "Cd_i_C3v_+2": {"defect": {"@module": "doped.core", "@class": "Interstitial", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.6249999999999998, 0.6249999999999998, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 4, "equivalent_sites": [{"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.6249999999999998, 0.6249999999999998, 0.625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.1250000000000001, 0.6249999999999998, 0.6249999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.6250000000000001, 0.12500000000000014, 0.6249999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.6249999999999999, 0.6249999999999999, 0.12500000000000033], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}], "user_charges": [], "oxi_state": 2.0, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.625, 0.625]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.625, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.125, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.625, 0.125]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.125, 0.125]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.375, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.625, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.375, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.875, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.625, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.875, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.375, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.875, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.125, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.875, 0.125]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.125, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.375, 0.125]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "16e", "@version": null}, "charge_state": 2, "sc_entry": {"@module": "pymatgen.entries.computed_entries", "@class": "ComputedStructureEntry", "energy": 0.0, "composition": {"Cd": 33.0, "Te": 32.0}, "entry_id": null, "correction": 0.0, "energy_adjustments": [], "parameters": {}, "data": {}, "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.43750000000000006, 0.4375], "xyz": [4.087907499999998, 5.7230705, 5.7230704999999995], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}]}, "@version": null}, "corrections": {}, "corrections_metadata": {}, "sc_defect_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.3124999999999999, 0.43750000000000006, 0.4375]}, "bulk_entry": null, "entry_id": null, "name": "Cd_i_C3v_+2", "calculation_metadata": {}, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.625, 0.625]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.625, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.125, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.625, 0.125]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.125, 0.125]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.375, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.625, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.375, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.625, 0.875, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.625, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.875, 0.625]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.375, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.125, 0.875, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.125, 0.875]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.375, 0.875, 0.125]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.125, 0.375]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.875, 0.375, 0.125]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "16e", "charge_state_guessing_log": [{"input_parameters": {"charge_state": 2.0, "oxi_state": 2.0, "oxi_probability": 1.0, "max_host_oxi_magnitude": 2.0}, "probability_factors": {"oxi_probability": 1.0, "charge_state_magnitude": 0.6299605249474366, "charge_state_vs_max_host_charge": 1.0, "oxi_state_vs_max_host_charge": 1.0}, "probability": 0.6299605249474366, "probability_threshold": 0.0075}], "defect_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.43750000000000006, 0.4375], "xyz": [4.087907499999998, 5.7230705, 5.7230704999999995], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "defect_supercell_site": {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.43750000000000006, 0.4375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, "equivalent_supercell_sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.31249999999999994, 0.3124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0625, 0.5624999999999999, 0.3124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0625, 0.31249999999999994, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.31249999999999994, 0.31249999999999994, 0.3124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.5624999999999999, 0.3124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.8124999999999999, 0.3124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0625, 0.0625, 0.3124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.31249999999999994, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.5624999999999999, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0625, 0.8124999999999999, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.31249999999999994, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0625, 0.5624999999999999, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0625, 0.31249999999999994, 0.06249999999999978], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.31249999999999994, 0.8124999999999999, 0.3124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.0625, 0.3124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.31249999999999994, 0.5624999999999999, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.8124999999999999, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.0625, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.31249999999999994, 0.31249999999999994, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.5624999999999999, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.8124999999999999, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0625, 0.0625, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.31249999999999994, 0.06249999999999978], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.5624999999999999, 0.06249999999999978], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0625, 0.8124999999999999, 0.06249999999999978], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.31249999999999994, 0.0625, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.31249999999999994, 0.8124999999999999, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.0625, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.31249999999999994, 0.5624999999999999, 0.06249999999999978], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.8124999999999999, 0.06249999999999978], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.0625, 0.06249999999999978], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.31249999999999994, 0.0625, 0.06249999999999978], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.18750000000000003, 0.18749999999999997], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.06249999999999978, 0.43750000000000006, 0.18749999999999997], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.06249999999999978, 0.18750000000000003, 0.4375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.18750000000000003, 0.18749999999999997], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.43750000000000006, 0.18749999999999997], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.6875, 0.18749999999999997], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.06249999999999978, 0.9374999999999999, 0.18749999999999997], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.18750000000000003, 0.4375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.43750000000000006, 0.4375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.06249999999999978, 0.6875, 0.4375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.18750000000000003, 0.6875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.06249999999999978, 0.43750000000000006, 0.6875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.06249999999999978, 0.18750000000000003, 0.9374999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.6875, 0.18749999999999997], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.9374999999999999, 0.18749999999999997], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.43750000000000006, 0.4375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.6875, 0.4375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.9374999999999999, 0.4375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.18750000000000003, 0.6875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.43750000000000006, 0.6875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.6875, 0.6875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.06249999999999978, 0.9374999999999999, 0.6875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.18750000000000003, 0.9374999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.43750000000000006, 0.9374999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.06249999999999978, 0.6875, 0.9374999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.9374999999999999, 0.4375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.6875, 0.6875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.9374999999999999, 0.6875], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.43750000000000006, 0.9374999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5624999999999999, 0.6875, 0.9374999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.8124999999999999, 0.9374999999999999, 0.9374999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.3124999999999999, 0.9374999999999999, 0.9374999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.3125, 0.18750000000000008], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9374999999999999, 0.5625, 0.18750000000000008], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9374999999999999, 0.3125, 0.43750000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000003, 0.3125, 0.18750000000000008], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.5625, 0.18750000000000008], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.8125, 0.18750000000000008], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9374999999999999, 0.0625, 0.18750000000000008], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.3125, 0.43750000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.5625, 0.43750000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9374999999999999, 0.8125, 0.43750000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.3125, 0.6875000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9374999999999999, 0.5625, 0.6875000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9374999999999999, 0.3125, 0.9375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000003, 0.8125, 0.18750000000000008], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.0625, 0.18750000000000008], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000003, 0.5625, 0.43750000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.8125, 0.43750000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.0625, 0.43750000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000003, 0.3125, 0.6875000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.5625, 0.6875000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.8125, 0.6875000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9374999999999999, 0.0625, 0.6875000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.3125, 0.9375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.5625, 0.9375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9374999999999999, 0.8125, 0.9375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000003, 0.0625, 0.43750000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000003, 0.8125, 0.6875000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.0625, 0.6875000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000003, 0.5625, 0.9375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.8125, 0.9375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.0625, 0.9375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000003, 0.0625, 0.9375], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.18750000000000006, 0.31249999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9375, 0.43750000000000006, 0.31249999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9375, 0.18750000000000006, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000006, 0.18750000000000006, 0.31249999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.43750000000000006, 0.31249999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.6875, 0.31249999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9375, 0.9375, 0.31249999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.18750000000000006, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.43750000000000006, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9375, 0.6875, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.18750000000000006, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9375, 0.43750000000000006, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9375, 0.18750000000000006, 0.0625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000006, 0.6875, 0.31249999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.9375, 0.31249999999999994], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000006, 0.43750000000000006, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.6875, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.9375, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000006, 0.18750000000000006, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.43750000000000006, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.6875, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9375, 0.9375, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.18750000000000006, 0.0625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.43750000000000006, 0.0625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.9375, 0.6875, 0.0625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000006, 0.9375, 0.5624999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000006, 0.6875, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.9375, 0.8124999999999999], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000006, 0.43750000000000006, 0.0625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.43750000000000006, 0.6875, 0.0625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.6875, 0.9375, 0.0625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.18750000000000006, 0.9375, 0.0625], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Cd", "@version": null}], "bulk_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "@module": "doped.core", "@class": "DefectEntry", "@version": null}, "Te_i_Td_Te2.83_-2": {"defect": {"@module": "doped.core", "@class": "Interstitial", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Te", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.5000000000000003, 0.49999999999999994, 0.49999999999999967], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 1, "equivalent_sites": [{"species": [{"element": "Te", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.5000000000000003, 0.49999999999999994, 0.49999999999999967], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}], "user_charges": [], "oxi_state": 4, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.5]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.5, 0.0]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.0, 0.0]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4b", "@version": null}, "charge_state": -2, "sc_entry": {"@module": "pymatgen.entries.computed_entries", "@class": "ComputedStructureEntry", "energy": 0.0, "composition": {"Te": 33.0, "Cd": 32.0}, "entry_id": null, "correction": 0.0, "energy_adjustments": [], "parameters": {}, "data": {}, "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Te", "occu": 1.0}], "abc": [0.2499999999999999, 0.5, 0.5000000000000001], "xyz": [3.2703259999999985, 6.540652, 6.5406520000000015], "properties": {}, "label": "Te"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}]}, "@version": null}, "corrections": {}, "corrections_metadata": {}, "sc_defect_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.2499999999999999, 0.5, 0.5000000000000001]}, "bulk_entry": null, "entry_id": null, "name": "Te_i_Td_Te2.83_-2", "calculation_metadata": {}, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.5]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.5, 0.0]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.0, 0.0]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4b", "charge_state_guessing_log": [{"input_parameters": {"charge_state": -2.0, "oxi_state": -2.0, "oxi_probability": 0.446, "max_host_oxi_magnitude": 2.0}, "probability_factors": {"oxi_probability": 0.446, "charge_state_magnitude": 0.6299605249474366, "charge_state_vs_max_host_charge": 1.0, "oxi_state_vs_max_host_charge": 1.0}, "probability": 0.2809623941265567, "probability_threshold": 0.0075}, {"input_parameters": {"charge_state": -1, "oxi_state": -1, "oxi_probability": 0.082, "max_host_oxi_magnitude": 2.0}, "probability_factors": {"oxi_probability": 0.082, "charge_state_magnitude": 1.0, "charge_state_vs_max_host_charge": 1.0, "oxi_state_vs_max_host_charge": 1.0}, "probability": 0.082, "probability_threshold": 0.0075}, {"input_parameters": {"charge_state": 4.0, "oxi_state": 4.0, "oxi_probability": 0.347, "max_host_oxi_magnitude": 2.0}, "probability_factors": {"oxi_probability": 0.347, "charge_state_magnitude": 0.3968502629920499, "charge_state_vs_max_host_charge": 0.3968502629920499, "oxi_state_vs_max_host_charge": 0.3968502629920499}, "probability": 0.021687500000000002, "probability_threshold": 0.0075}, {"input_parameters": {"charge_state": 6.0, "oxi_state": 6.0, "oxi_probability": 0.111, "max_host_oxi_magnitude": 2.0}, "probability_factors": {"oxi_probability": 0.111, "charge_state_magnitude": 0.3028534321386899, "charge_state_vs_max_host_charge": 0.25, "oxi_state_vs_max_host_charge": 0.25}, "probability": 0.0021010456854621616, "probability_threshold": 0.0075}], "defect_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Te", "occu": 1.0}], "abc": [0.2499999999999999, 0.5, 0.5000000000000001], "xyz": [3.2703259999999985, 6.540652, 6.5406520000000015], "properties": {}, "label": "Te"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "defect_supercell_site": {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.2499999999999999, 0.5, 0.5000000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, "equivalent_supercell_sites": [{"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.25000000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.9999999999999999, 0.5, 0.25000000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.9999999999999999, 0.25, 0.5000000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.2499999999999999, 0.25, 0.25000000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.49999999999999983, 0.5, 0.25000000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25000000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.9999999999999999, 0.0, 0.25000000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.49999999999999983, 0.25, 0.5000000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.5000000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.9999999999999999, 0.7499999999999999, 0.5000000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.7500000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.9999999999999999, 0.5, 0.7500000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.9999999999999999, 0.25, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.2499999999999999, 0.7499999999999999, 0.25000000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.49999999999999983, 0.0, 0.25000000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.2499999999999999, 0.5, 0.5000000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.49999999999999983, 0.7499999999999999, 0.5000000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.5000000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.2499999999999999, 0.25, 0.7500000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.49999999999999983, 0.5, 0.7500000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.7500000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.9999999999999999, 0.0, 0.7500000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.49999999999999983, 0.25, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.9999999999999999, 0.7499999999999999, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.2499999999999999, 0.0, 0.5000000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.2499999999999999, 0.7499999999999999, 0.7500000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.49999999999999983, 0.0, 0.7500000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.2499999999999999, 0.5, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.49999999999999983, 0.7499999999999999, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.2499999999999999, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}], "bulk_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "@module": "doped.core", "@class": "DefectEntry", "@version": null}, "Te_i_Td_Te2.83_-1": {"defect": {"@module": "doped.core", "@class": "Interstitial", "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "site": {"species": [{"element": "Te", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.5000000000000003, 0.49999999999999994, 0.49999999999999967], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, "symprec": 0.01, "angle_tolerance": 5, "multiplicity": 1, "equivalent_sites": [{"species": [{"element": "Te", "oxidation_state": null, "spin": null, "occu": 1}], "abc": [0.5000000000000003, 0.49999999999999994, 0.49999999999999967], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}], "user_charges": [], "oxi_state": 4, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.5]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.5, 0.0]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.0, 0.0]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4b", "@version": null}, "charge_state": -1, "sc_entry": {"@module": "pymatgen.entries.computed_entries", "@class": "ComputedStructureEntry", "energy": 0.0, "composition": {"Te": 33.0, "Cd": 32.0}, "entry_id": null, "correction": 0.0, "energy_adjustments": [], "parameters": {}, "data": {}, "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Te", "occu": 1.0}], "abc": [0.2499999999999999, 0.5, 0.5000000000000001], "xyz": [3.2703259999999985, 6.540652, 6.5406520000000015], "properties": {}, "label": "Te"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}]}, "@version": null}, "corrections": {}, "corrections_metadata": {}, "sc_defect_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.2499999999999999, 0.5, 0.5000000000000001]}, "bulk_entry": null, "entry_id": null, "name": "Te_i_Td_Te2.83_-1", "calculation_metadata": {}, "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "conv_cell_frac_coords": {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.5]}, "equiv_conv_cell_frac_coords": [{"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.5, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.0, 0.5]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.0, 0.5, 0.0]}, {"@module": "numpy", "@class": "array", "dtype": "float64", "data": [0.5, 0.0, 0.0]}], "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "wyckoff": "4b", "charge_state_guessing_log": [{"input_parameters": {"charge_state": -2.0, "oxi_state": -2.0, "oxi_probability": 0.446, "max_host_oxi_magnitude": 2.0}, "probability_factors": {"oxi_probability": 0.446, "charge_state_magnitude": 0.6299605249474366, "charge_state_vs_max_host_charge": 1.0, "oxi_state_vs_max_host_charge": 1.0}, "probability": 0.2809623941265567, "probability_threshold": 0.0075}, {"input_parameters": {"charge_state": -1, "oxi_state": -1, "oxi_probability": 0.082, "max_host_oxi_magnitude": 2.0}, "probability_factors": {"oxi_probability": 0.082, "charge_state_magnitude": 1.0, "charge_state_vs_max_host_charge": 1.0, "oxi_state_vs_max_host_charge": 1.0}, "probability": 0.082, "probability_threshold": 0.0075}, {"input_parameters": {"charge_state": 4.0, "oxi_state": 4.0, "oxi_probability": 0.347, "max_host_oxi_magnitude": 2.0}, "probability_factors": {"oxi_probability": 0.347, "charge_state_magnitude": 0.3968502629920499, "charge_state_vs_max_host_charge": 0.3968502629920499, "oxi_state_vs_max_host_charge": 0.3968502629920499}, "probability": 0.021687500000000002, "probability_threshold": 0.0075}, {"input_parameters": {"charge_state": 6.0, "oxi_state": 6.0, "oxi_probability": 0.111, "max_host_oxi_magnitude": 2.0}, "probability_factors": {"oxi_probability": 0.111, "charge_state_magnitude": 0.3028534321386899, "charge_state_vs_max_host_charge": 0.25, "oxi_state_vs_max_host_charge": 0.25}, "probability": 0.0021010456854621616, "probability_threshold": 0.0075}], "defect_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0.0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Te", "occu": 1.0}], "abc": [0.2499999999999999, 0.5, 0.5000000000000001], "xyz": [3.2703259999999985, 6.540652, 6.5406520000000015], "properties": {}, "label": "Te"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "defect_supercell_site": {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.2499999999999999, 0.5, 0.5000000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, "equivalent_supercell_sites": [{"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.25000000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.9999999999999999, 0.5, 0.25000000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.9999999999999999, 0.25, 0.5000000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.2499999999999999, 0.25, 0.25000000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.49999999999999983, 0.5, 0.25000000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25000000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.9999999999999999, 0.0, 0.25000000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.49999999999999983, 0.25, 0.5000000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.5000000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.9999999999999999, 0.7499999999999999, 0.5000000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.25, 0.7500000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.9999999999999999, 0.5, 0.7500000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.9999999999999999, 0.25, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.2499999999999999, 0.7499999999999999, 0.25000000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.49999999999999983, 0.0, 0.25000000000000006], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.2499999999999999, 0.5, 0.5000000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.49999999999999983, 0.7499999999999999, 0.5000000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.5000000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.2499999999999999, 0.25, 0.7500000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.49999999999999983, 0.5, 0.7500000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.7499999999999999, 0.7500000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.9999999999999999, 0.0, 0.7500000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.49999999999999983, 0.25, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.5, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.9999999999999999, 0.7499999999999999, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.2499999999999999, 0.0, 0.5000000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.2499999999999999, 0.7499999999999999, 0.7500000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.49999999999999983, 0.0, 0.7500000000000001], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.2499999999999999, 0.5, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.49999999999999983, 0.7499999999999999, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.7499999999999999, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.2499999999999999, 0.0, 0.0], "lattice": {"@module": "pymatgen.core.lattice", "@class": "Lattice", "matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true]}, "@module": "pymatgen.core.sites", "@class": "PeriodicSite", "properties": {}, "label": "Te", "@version": null}], "bulk_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "@module": "doped.core", "@class": "DefectEntry", "@version": null}}, "structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [1.25, 0.25, 0.25], "xyz": [1.635163, 4.905489, 4.905489], "properties": {}, "label": "Te"}], "@version": null}, "extrinsic": [], "interstitial_coords": [], "prim_interstitial_coords": null, "generate_supercell": true, "charge_state_gen_kwargs": {}, "supercell_gen_kwargs": {}, "interstitial_gen_kwargs": {}, "target_frac_coords": [0.5, 0.5, 0.5], "primitive_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[0.0, 3.270326, 3.270326], [3.270326, 0.0, 3.270326], [3.270326, 3.270326, 0.0]], "pbc": [true, true, true], "a": 4.6249393825813545, "b": 4.6249393825813545, "c": 4.6249393825813545, "alpha": 60.00000000000001, "beta": 60.00000000000001, "gamma": 60.00000000000001, "volume": 69.9524833976044}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1.0}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1.0}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "supercell_matrix": {"@module": "numpy", "@class": "array", "dtype": "int64", "data": [[-2, 2, 2], [2, -2, 2], [2, 2, -2]]}, "bulk_supercell": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[13.081304, 0.0, 0.0], [0.0, 13.081304, 0.0], [0.0, 0.0, 13.081304]], "pbc": [true, true, true], "a": 13.081304, "b": 13.081304, "c": 13.081304, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 2238.4794687233407}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.0], "xyz": [6.540652, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.0], "xyz": [9.810977999999999, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.25], "xyz": [9.810977999999999, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [6.540652, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.0], "xyz": [9.810977999999999, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.25], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.25], "xyz": [6.540652, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.25], "xyz": [9.810977999999999, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [6.540652, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.5], "xyz": [9.810977999999999, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.0, 0.7499999999999999], "xyz": [9.810977999999999, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.0], "xyz": [0.0, 6.540652, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.0], "xyz": [3.270326, 9.810977999999999, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.25], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.25], "xyz": [3.270326, 6.540652, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.25], "xyz": [6.540652, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.5], "xyz": [0.0, 0.0, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.25, 0.5], "xyz": [3.270326, 3.270326, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.5], "xyz": [6.540652, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.5], "xyz": [9.810977999999999, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.0, 0.7499999999999999], "xyz": [3.270326, 0.0, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.25, 0.7499999999999999], "xyz": [6.540652, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.7499999999999999, 0.5, 0.7499999999999999], "xyz": [9.810977999999999, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.25], "xyz": [0.0, 9.810977999999999, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 6.540652, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.5], "xyz": [3.270326, 9.810977999999999, 6.540652], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.25, 0.7499999999999999], "xyz": [0.0, 3.270326, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.25, 0.5, 0.7499999999999999], "xyz": [3.270326, 6.540652, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.7499999999999999, 0.7499999999999999], "xyz": [6.540652, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.7499999999999999, 0.7499999999999999], "xyz": [0.0, 9.810977999999999, 9.810977999999999], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.125], "xyz": [8.175815, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.125], "xyz": [11.446140999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.37499999999999994], "xyz": [11.446140999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.125], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.125], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.125], "xyz": [8.175815, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.125], "xyz": [11.446140999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.37499999999999994], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.37499999999999994], "xyz": [8.175815, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.37499999999999994], "xyz": [11.446140999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.125, 0.625], "xyz": [8.175815, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.37499999999999994, 0.625], "xyz": [11.446140999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.125, 0.875], "xyz": [11.446140999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.125], "xyz": [1.635163, 8.175815, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.125], "xyz": [4.905488999999999, 11.446140999999999, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.37499999999999994], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.37499999999999994], "xyz": [4.905488999999999, 8.175815, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.37499999999999994], "xyz": [8.175815, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.125, 0.625], "xyz": [1.635163, 1.635163, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.37499999999999994, 0.625], "xyz": [4.905488999999999, 4.905488999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.625, 0.625], "xyz": [8.175815, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.875, 0.625], "xyz": [11.446140999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.125, 0.875], "xyz": [4.905488999999999, 1.635163, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.37499999999999994, 0.875], "xyz": [8.175815, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.875, 0.625, 0.875], "xyz": [11.446140999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.37499999999999994], "xyz": [1.635163, 11.446140999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.625, 0.625], "xyz": [1.635163, 8.175815, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.875, 0.625], "xyz": [4.905488999999999, 11.446140999999999, 8.175815], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.37499999999999994, 0.875], "xyz": [1.635163, 4.905488999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.37499999999999994, 0.625, 0.875], "xyz": [4.905488999999999, 8.175815, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.625, 0.875, 0.875], "xyz": [8.175815, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.125, 0.875, 0.875], "xyz": [1.635163, 11.446140999999999, 11.446140999999999], "properties": {}, "label": "Te"}], "@version": null}, "_element_list": ["Cd", "Te"], "conventional_structure": {"@module": "pymatgen.core.structure", "@class": "Structure", "charge": 0, "lattice": {"matrix": [[6.540652, 0.0, 0.0], [0.0, 6.540652, 0.0], [0.0, 0.0, 6.540652]], "pbc": [true, true, true], "a": 6.540652, "b": 6.540652, "c": 6.540652, "alpha": 90.0, "beta": 90.0, "gamma": 90.0, "volume": 279.8099335904176}, "properties": {}, "sites": [{"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.0, 0.0], "xyz": [0.0, 0.0, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.0, 0.5, 0.5], "xyz": [0.0, 3.270326, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.0, 0.5], "xyz": [3.270326, 0.0, 3.270326], "properties": {}, "label": "Cd"}, {"species": [{"element": "Cd", "occu": 1}], "abc": [0.5, 0.5, 0.0], "xyz": [3.270326, 3.270326, 0.0], "properties": {}, "label": "Cd"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.25, 0.25], "xyz": [1.635163, 1.635163, 1.635163], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.25, 0.7499999999999999, 0.7499999999999999], "xyz": [1.635163, 4.905488999999999, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.25, 0.7499999999999999], "xyz": [4.905488999999999, 1.635163, 4.905488999999999], "properties": {}, "label": "Te"}, {"species": [{"element": "Te", "occu": 1}], "abc": [0.7499999999999999, 0.7499999999999999, 0.25], "xyz": [4.905488999999999, 4.905488999999999, 1.635163], "properties": {}, "label": "Te"}], "@version": null}, "_BilbaoCS_conv_cell_vector_mapping": [0, 1, 2], "@version": null}
\ No newline at end of file
diff --git a/tests/test_cli.py b/tests/test_cli.py
index 30fc1f23..b55e2688 100644
--- a/tests/test_cli.py
+++ b/tests/test_cli.py
@@ -125,18 +125,10 @@ def tearDown(self):
for i in os.listdir("."):
if "distortion_metadata" in i:
os.remove(i)
- elif (
- "Vac_Cd" in i
- or "Int_Cd" in i
- or "Wally_McDoodle" in i
- or "pesky_defects" in i
- or "vac_1_Cd" in i
- or "v_Cd" in i
- or "v_Te" in i
- or "Cd_i" in i
- or "_defect_folder" in i
- or "Te_Cd" in i
- ):
+ elif any(x in i for x in [
+ "Vac_Cd", "Int_Cd", "Wally_McDoodle", "pesky_defects", "vac_1_Cd", "v_Cd", "v_Te", "Cd_i",
+ "_defect_folder", "Te_Cd", "Te_i_Td_Te2.83"
+ ]):
shutil.rmtree(i)
for defect in os.listdir(self.EXAMPLE_RESULTS):
@@ -154,11 +146,11 @@ def tearDown(self):
elif os.path.isfile(f"{self.EXAMPLE_RESULTS}/{defect}"):
os.remove(f"{self.EXAMPLE_RESULTS}/{defect}")
- if_present_rm(f"{self.EXAMPLE_RESULTS}/pesky_defects/")
- if_present_rm(f"{self.EXAMPLE_RESULTS}/vac_1_Ti_0_defect_folder")
- if_present_rm(f"{self.EXAMPLE_RESULTS}/v_Ti_0_defect_folder")
+ for i in os.listdir(f"{self.EXAMPLE_RESULTS}"):
+ if any(x in i for x in ["pesky_defects", "vac_1_Ti_0_defect_folder", "v_Ti_0_defect_folder",
+ "test_groundstate_all", "Te_i_Td_Te2.83"]):
+ if_present_rm(f"{self.EXAMPLE_RESULTS}/{i}")
if_present_rm(f"{self.EXAMPLE_RESULTS}/v_Ti_0/Bond_Distortion_20.0%")
- if_present_rm(f"{self.EXAMPLE_RESULTS}/test_groundstate_all")
# Remove re-generated files
folder = "Bond_Distortion_-60.0%_from_0"
@@ -3272,6 +3264,41 @@ def test_plot(self):
if "yaml" in file or "png" in file
]
+ # test with new doped naming
+ defect = "Te_i_Td_Te2.83_+2"
+ shutil.copytree(f"{self.EXAMPLE_RESULTS}/v_Ti_0", f"{self.EXAMPLE_RESULTS}/{defect}")
+ with warnings.catch_warnings(record=True) as w:
+ result = runner.invoke(
+ snb,
+ [
+ "plot",
+ "-d",
+ defect,
+ "-p",
+ self.EXAMPLE_RESULTS,
+ "-v",
+ ],
+ )
+ self.assertIn(
+ f"{defect}: Energy difference between minimum, found with -0.4 bond distortion, "
+ "and unperturbed: -3.26 eV.",
+ result.output,
+ ) # verbose output
+ self.assertIn(
+ f"Plot saved to {defect}/{defect}.png", result.output
+ )
+ self.assertEqual(w[0].category, UserWarning)
+ self.assertEqual(
+ f"Path {self.EXAMPLE_RESULTS}/distortion_metadata.json or {self.EXAMPLE_RESULTS}/"
+ f"{defect}/distortion_metadata.json not found. Will not parse "
+ "its contents (to specify which neighbour atoms were distorted in plot text).",
+ str(w[0].message),
+ )
+ self.assertTrue(
+ os.path.exists(os.path.join(self.EXAMPLE_RESULTS, defect, defect + ".png"))
+ )
+ self.tearDown()
+
# Test --all option, with the distortion_metadata.json file present to parse number of
# distorted neighbours and their identities
defect = "v_Ti_0"
diff --git a/tests/test_input.py b/tests/test_input.py
old mode 100755
new mode 100644
index 49020693..33fc2386
--- a/tests/test_input.py
+++ b/tests/test_input.py
@@ -13,7 +13,7 @@
from ase.build import bulk, make_supercell
from ase.calculators.aims import Aims
from doped import _ignore_pmg_warnings
-from doped.vasp import _test_potcar_functional_choice
+from doped.vasp import _test_potcar_functional_choice, DefectRelaxSet
from monty.serialization import dumpfn, loadfn
from pymatgen.analysis.defects.generators import VacancyGenerator
from pymatgen.analysis.defects.thermo import DefectEntry
@@ -113,9 +113,12 @@ def setUp(self):
os.path.join(self.VASP_CDTE_DATA_DIR, "CdTe_Bulk_Supercell_POSCAR")
)
- self.cdte_doped_defect_dict = loadfn(
+ self.cdte_doped_defect_dict = loadfn( # old doped defects dict
os.path.join(self.VASP_CDTE_DATA_DIR, "CdTe_defects_dict.json")
)
+ self.cdte_doped_reduced_defect_gen = loadfn(
+ os.path.join(self.VASP_CDTE_DATA_DIR, "reduced_CdTe_defect_gen.json")
+ )
self.cdte_defects = {}
# Refactor to dict of DefectEntrys objects, with doped/PyCDT names
for defects_type, defect_dict_list in self.cdte_doped_defect_dict.items():
@@ -404,6 +407,10 @@ def setUp(self):
# Get the current locale setting
self.original_locale = locale.getlocale(locale.LC_CTYPE) # should be UTF-8
+ self.Ag_Sb_AgSbTe2_m2_defect_entry = loadfn(
+ f"{self.DATA_DIR}/Ag_Sb_Cs_Te2.90_-2.json"
+ )
+
def tearDown(self) -> None:
# reset locale:
locale.setlocale(locale.LC_CTYPE, self.original_locale) # should be UTF-8
@@ -412,7 +419,9 @@ def tearDown(self) -> None:
for i in self.cdte_defect_folders_old_names + self.cdte_defect_folders:
if_present_rm(i)
for i in os.listdir():
- if os.path.isdir(i) and ("v_Te" in i or "v_Cd" in i or "vac_1_Cd" in i):
+ if os.path.isdir(i) and any(
+ x in i for x in ["v_Te", "v_Cd", "vac_1_Cd", "Ag_Sb"]
+ ):
if_present_rm(i)
for fname in os.listdir("./"):
if fname.endswith("json"): # distortion_metadata and parsed_defects_dict
@@ -979,7 +988,7 @@ def test_create_vasp_input(self):
)
self._check_V_Cd_folder_renaming(
w,
- "A previously-generated defect folder vac_1_Cd_0 exists in ",
+ "A previously-generated defect distortions folder vac_1_Cd_0 exists in ",
", and the Unperturbed defect structure could not be matched to the current defect species: "
"vac_1_Cd_0. These are assumed to be inequivalent defects, so the previous vac_1_Cd_0 will "
"be renamed to vac_1_Cda_0 and ShakeNBreak files for the current defect will be saved to "
@@ -1084,8 +1093,9 @@ def test_create_vasp_input(self):
)
self._check_V_Cd_folder_renaming(
w,
- "The previously-generated defect folder vac_1_Cdb_0 in ",
- " has the same Unperturbed defect structure as the current defect species: vac_1_Cd_0. ShakeNBreak files in vac_1_Cdb_0 will be overwritten.",
+ "The previously-generated defect distortions folder vac_1_Cdb_0 in ",
+ " has the same Unperturbed defect structure as the current defect species: vac_1_Cd_0. "
+ "ShakeNBreak files in vac_1_Cdb_0 will be overwritten.",
)
if not _potcars_available(): # test POTCAR warning
assert any(
@@ -1101,6 +1111,9 @@ def test_create_vasp_input(self):
self.assertFalse(os.path.exists("vac_1_Cdc_0"))
V_Cd_POSCAR = Poscar.from_file("vac_1_Cdb_0/Unperturbed/POSCAR")
self.assertEqual(V_Cd_POSCAR.comment, "V_Cd Unperturbed, Overwritten")
+ self.assertEqual(
+ len(V_Cd_POSCAR.site_symbols), len(set(V_Cd_POSCAR.site_symbols))
+ ) # no duplicates
self.assertEqual(V_Cd_POSCAR.structure, self.V_Cd_struc)
# 3. Unperturbed structures are present, but don't match. "a" and "b" present,
@@ -1118,14 +1131,20 @@ def test_create_vasp_input(self):
)
self._check_V_Cd_folder_renaming(
w,
- "Previously-generated defect folders (vac_1_Cdb_0...) exist in ",
+ "Previously-generated defect distortions folders (vac_1_Cdb_0...) exist in ",
", and the Unperturbed defect structures could not be matched to the current defect species: vac_1_Cd_0. These are assumed to be inequivalent defects, so ShakeNBreak files for the current defect will be saved to vac_1_Cdc_0 to prevent overwriting.",
)
self.assertTrue(os.path.exists("vac_1_Cdc_0"))
self.assertFalse(os.path.exists("vac_1_Cdd_0"))
V_Cd_prev_POSCAR = Poscar.from_file("vac_1_Cdb_0/Unperturbed/POSCAR")
+ self.assertEqual(
+ len(V_Cd_prev_POSCAR.site_symbols), len(set(V_Cd_prev_POSCAR.site_symbols))
+ ) # no duplicates
self.assertEqual(V_Cd_prev_POSCAR.comment, "V_Cd Unperturbed, Overwritten")
V_Cd_new_POSCAR = Poscar.from_file("vac_1_Cdc_0/Unperturbed/POSCAR")
+ self.assertEqual(
+ len(V_Cd_new_POSCAR.site_symbols), len(set(V_Cd_new_POSCAR.site_symbols))
+ ) # no duplicates
self.assertEqual(V_Cd_new_POSCAR.comment, "V_Cd Rattled, New Folder")
self.assertEqual(V_Cd_new_POSCAR.structure, self.V_Cd_minus0pt5_struc_rattled)
@@ -1135,12 +1154,14 @@ def test_with_non_UTF_8_encoding(self):
locale.setlocale(locale.LC_CTYPE, "en_US.US-ASCII")
self.test_create_vasp_input()
-
def _check_V_Cd_rattled_poscar(self, defect_dir):
- result = Poscar.from_file(f"{defect_dir}/POSCAR")
- self.assertEqual(result.comment, "V_Cd Rattled")
- self.assertEqual(result.structure, self.V_Cd_minus0pt5_struc_rattled)
- return result
+ poscar = Poscar.from_file(f"{defect_dir}/POSCAR")
+ self.assertEqual(
+ len(poscar.site_symbols), len(set(poscar.site_symbols))
+ ) # no duplicates
+ self.assertEqual(poscar.comment, "V_Cd Rattled")
+ self.assertEqual(poscar.structure, self.V_Cd_minus0pt5_struc_rattled)
+ return poscar
def _check_V_Cd_folder_renaming(self, w, top_dir, defect_dir):
self.assertTrue(
@@ -1357,10 +1378,16 @@ def test_Distortions_single_atom_primitive(self):
defect_entry,
]
)
- mock_print.assert_called_once_with(
- "Oxidation states were not explicitly set, thus have been guessed as "
- "{'Cu': 0}. If this is unreasonable you should manually set oxidation_states"
+ oxi_state_warning_message = (
+ "Oxidation states were not explicitly set, thus have been guessed as {'Cu': 0.0}. If "
+ "this is unreasonable you should manually set oxidation_states"
)
+ try:
+ mock_print.assert_called_once_with(oxi_state_warning_message)
+ except AssertionError:
+ mock_print.assert_any_call(
+ oxi_state_warning_message.replace("0.0", "0")
+ )
self.assertEqual(dist.oxidation_states, {"Cu": 0})
self.assertAlmostEqual(dist.stdev, 0.2529625487091717)
@@ -1489,6 +1516,9 @@ def test_write_vasp_files(self):
V_Cd_Bond_Distortion_folder = "vac_1_Cd_0/Bond_Distortion_-50.0%"
self.assertTrue(os.path.exists(V_Cd_Bond_Distortion_folder))
V_Cd_POSCAR = Poscar.from_file(f"{V_Cd_Bond_Distortion_folder}/POSCAR")
+ self.assertEqual(
+ len(V_Cd_POSCAR.site_symbols), len(set(V_Cd_POSCAR.site_symbols))
+ ) # no duplicates
self.assertEqual(
V_Cd_POSCAR.comment,
"-50.0% N(Distort)=2 ~[0.0,0.0,0.0]",
@@ -1530,6 +1560,9 @@ def test_write_vasp_files(self):
Int_Cd_2_Bond_Distortion_folder = "Int_Cd_2_0/Bond_Distortion_-60.0%"
self.assertTrue(os.path.exists(Int_Cd_2_Bond_Distortion_folder))
Int_Cd_2_POSCAR = Poscar.from_file(f"{Int_Cd_2_Bond_Distortion_folder}/POSCAR")
+ self.assertEqual(
+ len(Int_Cd_2_POSCAR.site_symbols), len(set(Int_Cd_2_POSCAR.site_symbols))
+ ) # no duplicates
self.assertEqual(
Int_Cd_2_POSCAR.comment,
"-60.0% N(Distort)=2 ~[0.8,0.2,0.8]",
@@ -1583,6 +1616,10 @@ def test_write_vasp_files(self):
V_Cd_minus0pt5_POSCAR = Poscar.from_file(
"vac_1_Cd_0/Bond_Distortion_-50.0%/POSCAR"
)
+ self.assertEqual(
+ len(V_Cd_minus0pt5_POSCAR.site_symbols),
+ len(set(V_Cd_minus0pt5_POSCAR.site_symbols)),
+ ) # no duplicates
self.assertEqual(
V_Cd_minus0pt5_POSCAR.structure, self.V_Cd_minus0pt5_struc_rattled
)
@@ -1631,6 +1668,10 @@ def test_write_vasp_files(self):
V_Cd_kwarged_POSCAR = Poscar.from_file(
"vac_1_Cd_0/Bond_Distortion_-50.0%/POSCAR"
)
+ self.assertEqual(
+ len(V_Cd_kwarged_POSCAR.site_symbols),
+ len(set(V_Cd_kwarged_POSCAR.site_symbols)),
+ ) # no duplicates
self.assertEqual(
V_Cd_kwarged_POSCAR.structure, self.V_Cd_minus0pt5_struc_kwarged
)
@@ -1842,6 +1883,9 @@ def test_write_vasp_files(self):
_int_Cd_2_POSCAR = Poscar.from_file(
"Int_Cd_2_+1/Unperturbed/POSCAR"
) # test POSCAR loaded fine
+ self.assertEqual(
+ len(_int_Cd_2_POSCAR.site_symbols), len(set(_int_Cd_2_POSCAR.site_symbols))
+ ) # no duplicates
kpoints = Kpoints.from_file("Int_Cd_2_+1/Unperturbed/KPOINTS")
self.assertEqual(kpoints.kpts, [[1, 1, 1]])
@@ -1951,12 +1995,373 @@ def test_write_vasp_files(self):
V_Cd_kwarged_POSCAR = Poscar.from_file(
"test_path/vac_1_Cd_0/Bond_Distortion_-50.0%/POSCAR"
)
+ self.assertEqual(
+ len(V_Cd_kwarged_POSCAR.site_symbols),
+ len(set(V_Cd_kwarged_POSCAR.site_symbols)),
+ ) # no duplicates
self.assertEqual(
V_Cd_kwarged_POSCAR.structure, self.V_Cd_minus0pt5_struc_kwarged
)
+ def test_write_vasp_files_from_doped_defect_gen(self):
+ """Test Distortions() class with (new) doped DefectsGenerator input"""
+ dist = input.Distortions(
+ self.cdte_doped_reduced_defect_gen,
+ stdev=0.25, # old default
+ seed=42, # old default
+ )
+ with patch("builtins.print") as mock_print:
+ with warnings.catch_warnings(record=True) as w:
+ _, distortion_metadata = dist.write_vasp_files(
+ user_incar_settings={"IVDW": 12},
+ verbose=False,
+ )
+
+ # check if expected folders were created:
+ for key in self.cdte_doped_reduced_defect_gen.keys():
+ self.assertTrue(os.path.exists(f"{key}"))
+ self.assertTrue(os.path.exists(f"{key}/Unperturbed"))
+ self.assertTrue(os.path.exists(f"{key}/Unperturbed/POSCAR"))
+ self.assertTrue(os.path.exists(f"{key}/Unperturbed/KPOINTS"))
+ if _potcars_available():
+ self.assertTrue(os.path.exists(f"{key}/Unperturbed/INCAR"))
+ self.assertTrue(os.path.exists(f"{key}/Unperturbed/POTCAR"))
+
+ # check expected info printing:
+ mock_print.assert_any_call(
+ "Applying ShakeNBreak...",
+ "Will apply the following bond distortions:",
+ "['-0.6', '-0.5', '-0.4', '-0.3', '-0.2', '-0.1', '0.0', '0.1', '0.2', '0.3', '0.4', '0.5', "
+ "'0.6'].",
+ "Then, will rattle with a std dev of 0.25 Å \n",
+ )
+ mock_print.assert_any_call(
+ "\033[1m" + "\nDefect: v_Cd" + "\033[0m"
+ ) # bold print
+ mock_print.assert_any_call(
+ "\033[1m" + "Number of missing electrons in neutral state: 2" + "\033[0m"
+ )
+ mock_print.assert_any_call(
+ "\nDefect v_Cd in charge state: -2. Number of distorted neighbours: 0"
+ )
+ mock_print.assert_any_call(
+ "\nDefect v_Cd in charge state: -1. Number of distorted neighbours: 1"
+ )
+ mock_print.assert_any_call(
+ "\nDefect v_Cd in charge state: 0. Number of distorted neighbours: 2"
+ )
+ # test correct distorted neighbours based on oxidation states:
+ mock_print.assert_any_call(
+ "\nDefect v_Te in charge state: -1. Number of distorted neighbours: 3"
+ )
+ mock_print.assert_any_call(
+ "\nDefect Cd_Te in charge state: +4. Number of distorted neighbours: 0"
+ )
+ mock_print.assert_any_call(
+ "\nDefect Te_Cd in charge state: +1. Number of distorted neighbours: 3"
+ )
+ mock_print.assert_any_call(
+ "\nDefect Cd_i_C3v in charge state: 0. Number of distorted neighbours: 2"
+ )
+ mock_print.assert_any_call(
+ "\nDefect Te_i_Td_Te2.83 in charge state: -2. Number of distorted neighbours: 0"
+ )
+
+ # check if correct files were created:
+ V_Cd_Bond_Distortion_folder = "v_Cd_0/Bond_Distortion_-50.0%"
+ self.assertTrue(os.path.exists(V_Cd_Bond_Distortion_folder))
+ V_Cd_POSCAR = Poscar.from_file(f"{V_Cd_Bond_Distortion_folder}/POSCAR")
+ self.assertEqual(
+ len(V_Cd_POSCAR.site_symbols), len(set(V_Cd_POSCAR.site_symbols))
+ ) # no duplicates
+ self.assertEqual(
+ V_Cd_POSCAR.comment,
+ "-50.0% N(Distort)=2 ~[0.5,0.5,0.5]", # closest to middle
+ ) # default
+ kpoints = Kpoints.from_file(f"{V_Cd_Bond_Distortion_folder}/KPOINTS")
+ self.assertEqual(kpoints.kpts, [[1, 1, 1]])
+
+ if _potcars_available():
+ assert not filecmp.cmp( # INCAR settings changed now
+ f"{V_Cd_Bond_Distortion_folder}/INCAR", self.V_Cd_INCAR_file
+ )
+ assert self.V_Cd_INCAR != Incar.from_file(
+ f"{V_Cd_Bond_Distortion_folder}/INCAR"
+ )
+ kwarged_INCAR = self.V_Cd_INCAR.copy()
+ kwarged_INCAR.update({"IVDW": 12})
+ assert kwarged_INCAR == Incar.from_file(
+ f"{V_Cd_Bond_Distortion_folder}/INCAR"
+ )
+
+ # check if POTCARs have been written:
+ potcar = Potcar.from_file(f"{V_Cd_Bond_Distortion_folder}/POTCAR")
+ assert set(potcar.as_dict()["symbols"]) == {
+ input.default_potcar_dict["POTCAR"][el_symbol]
+ for el_symbol in V_Cd_POSCAR.structure.symbol_set
+ }
+ else: # test POTCAR warning
+ assert any(
+ str(warning.message)
+ == "POTCAR directory not set up with pymatgen (see the doped docs Installation page: "
+ "https://doped.readthedocs.io/en/latest/Installation.html for instructions on setting "
+ "this up). This is required to generate `POTCAR` files and set `NELECT` (i.e. charge "
+ "state) and `NUPDOWN` in the `INCAR` files!\nNo `POTCAR` files will be written, and "
+ "`NELECT` and `NUPDOWN` will not be set in `INCAR`s. Beware!"
+ for warning in w
+ )
+
+ Int_Cd_2_Bond_Distortion_folder = "Cd_i_C3v_0/Bond_Distortion_-60.0%"
+ self.assertTrue(os.path.exists(Int_Cd_2_Bond_Distortion_folder))
+ Int_Cd_2_POSCAR = Poscar.from_file(f"{Int_Cd_2_Bond_Distortion_folder}/POSCAR")
+ self.assertEqual(
+ len(Int_Cd_2_POSCAR.site_symbols), len(set(Int_Cd_2_POSCAR.site_symbols))
+ ) # no duplicates
+ self.assertEqual(
+ Int_Cd_2_POSCAR.comment,
+ "-60.0% N(Distort)=2 ~[0.3,0.4,0.4]", # closest to middle
+ )
+ kpoints = Kpoints.from_file(f"{Int_Cd_2_Bond_Distortion_folder}/KPOINTS")
+ self.assertEqual(kpoints.kpts, [[1, 1, 1]])
+
+ if _potcars_available():
+ assert not filecmp.cmp( # INCAR settings changed now
+ f"{Int_Cd_2_Bond_Distortion_folder}/INCAR", self.V_Cd_INCAR_file
+ )
+ kwarged_INCAR = self.V_Cd_INCAR.copy()
+ kwarged_INCAR.update({"IVDW": 12})
+ kwarged_INCAR.pop("NELECT") # different NELECT for Cd_i_+2
+ Int_Cd_2_INCAR = Incar.from_file(f"{Int_Cd_2_Bond_Distortion_folder}/INCAR")
+ Int_Cd_2_INCAR.pop("NELECT")
+ assert kwarged_INCAR == Int_Cd_2_INCAR
+
+ # check if POTCARs have been written:
+ potcar = Potcar.from_file(f"{Int_Cd_2_Bond_Distortion_folder}/POTCAR")
+ assert set(potcar.as_dict()["symbols"]) == {
+ input.default_potcar_dict["POTCAR"][el_symbol]
+ for el_symbol in V_Cd_POSCAR.structure.symbol_set
+ }
+
+ def _check_agsbte2_files(self, folder_name, mock_print, w, charge_state=-2):
+ # check if expected folders were created:
+ self.assertTrue(os.path.exists(f"{folder_name}"))
+ if charge_state == -2:
+ folder_list = ["Rattled", "Unperturbed"]
+ else:
+ folder_list = [
+ "Unperturbed",
+ "Bond_Distortion_-50.0%",
+ "Bond_Distortion_20.0%",
+ ] # just
+ # check sub-sample
+
+ for i in folder_list:
+ self.assertTrue(os.path.exists(f"{folder_name}/{i}"))
+ self.assertTrue(os.path.exists(f"{folder_name}/{i}/POSCAR"))
+ self.assertTrue(os.path.exists(f"{folder_name}/{i}/KPOINTS"))
+ if _potcars_available():
+ self.assertTrue(os.path.exists(f"{folder_name}/{i}/INCAR"))
+ self.assertTrue(os.path.exists(f"{folder_name}/{i}/POTCAR"))
+
+ # check expected info printing:
+ mock_print.assert_any_call(
+ "Applying ShakeNBreak...",
+ "Will apply the following bond distortions:",
+ "['-0.6', '-0.5', '-0.4', '-0.3', '-0.2', '-0.1', '0.0', '0.1', '0.2', '0.3', '0.4', '0.5', "
+ "'0.6'].",
+ "Then, will rattle with a std dev of 0.29 Å \n",
+ )
+ defect_wout_charge = folder_name.rsplit("_", 1)[0]
+ mock_print.assert_any_call(
+ "\033[1m" + f"\nDefect: {defect_wout_charge}" + "\033[0m"
+ ) # bold print
+ mock_print.assert_any_call(
+ "\033[1m" + "Number of missing electrons in neutral state: 2" + "\033[0m"
+ )
+ mock_print.assert_any_call(
+ f"\nDefect {defect_wout_charge} in charge state: {int(charge_state)}. Number of distorted "
+ f"neighbours: {int(2 + charge_state)}"
+ )
+
+ # check if correct files were created:
+ distortion_folder = "Rattled" if charge_state == -2 else "Unperturbed"
+ poscar = Poscar.from_file(f"{folder_name}/{distortion_folder}/POSCAR")
+ self.assertEqual(
+ poscar.comment,
+ f"{distortion_folder} N(Distort)={int(2 + charge_state)} ~[0.5,0.9,0.6]",
+ ) # closest to middle default
+
+ # check correct element ordering in POSCAR:
+ self.assertEqual(
+ len(poscar.site_symbols), len(set(poscar.site_symbols))
+ ) # no duplicates
+
+ kpoints = Kpoints.from_file(f"{folder_name}/{distortion_folder}/KPOINTS")
+ self.assertEqual(kpoints.kpts, [[1, 1, 1]])
+
+ if _potcars_available():
+ # check if POTCARs have been written:
+ potcar = Potcar.from_file(f"{folder_name}/{distortion_folder}/POTCAR")
+ assert set(potcar.as_dict()["symbols"]) == {
+ input.default_potcar_dict["POTCAR"][el_symbol]
+ for el_symbol in poscar.structure.symbol_set
+ }
+ else: # test POTCAR warning
+ assert any(
+ str(warning.message)
+ == "POTCAR directory not set up with pymatgen (see the doped docs Installation page: "
+ "https://doped.readthedocs.io/en/latest/Installation.html for instructions on setting "
+ "this up). This is required to generate `POTCAR` files and set `NELECT` (i.e. charge "
+ "state) and `NUPDOWN` in the `INCAR` files!\nNo `POTCAR` files will be written, and "
+ "`NELECT` and `NUPDOWN` will not be set in `INCAR`s. Beware!"
+ for warning in w
+ )
+
+ def test_write_vasp_files_from_doped_defect_entry(self):
+ """
+ Test Distortions() class with (new) doped DefectEntry input.
+ If the DefectEntry.name attribute is set, then this should be
+ used as the folder name for the defect.
+ """
+ dist = input.Distortions(
+ self.Ag_Sb_AgSbTe2_m2_defect_entry,
+ )
+ with patch("builtins.print") as mock_print:
+ with warnings.catch_warnings(record=True) as w:
+ _, distortion_metadata = dist.write_vasp_files(
+ user_incar_settings={"IVDW": 12},
+ verbose=True,
+ )
+
+ self._check_agsbte2_files(
+ self.Ag_Sb_AgSbTe2_m2_defect_entry.name, mock_print, w
+ )
+
+ def test_write_vasp_files_from_doped_defect_entry_wout_name(self):
+ """
+ Test Distortions() class with (new) doped DefectEntry input.
+ Here the DefectEntry.name attribute is not set (e.g. manual
+ DefectEntry generation from the user), and so the doped
+ defect name is regenerated.
+ """
+ defect_entry = copy.deepcopy(self.Ag_Sb_AgSbTe2_m2_defect_entry)
+ delattr(defect_entry, "name")
+ dist = input.Distortions(
+ defect_entry,
+ )
+ with patch("builtins.print") as mock_print:
+ with warnings.catch_warnings(record=True) as w:
+ _, distortion_metadata = dist.write_vasp_files()
+
+ self._check_agsbte2_files("Ag_Sb_-2", mock_print, w)
+
+ def test_write_vasp_files_from_doped_defect_entry_list(self):
+ """
+ Test Distortions() class with input of doped DefectEntry list.
+ Here the DefectEntry.name attributes are set in all cases, so
+ these should be used as the folder names for the defects.
+
+ Note that here we test all name attributes set for DefectEntry
+ list, the next test ("w_incomplete_names") tests with only some
+ name attributes set, and then `test_write_vasp_files_from_list`
+ tests no name attributes set.
+ """
+ Ag_Sb_AgSbTe2_neutral_defect_entry = copy.deepcopy(
+ self.Ag_Sb_AgSbTe2_m2_defect_entry
+ )
+ Ag_Sb_AgSbTe2_neutral_defect_entry.charge_state = 0
+ Ag_Sb_AgSbTe2_neutral_defect_entry.name = (
+ Ag_Sb_AgSbTe2_neutral_defect_entry.name.rsplit("_", 1)[0] + "_0"
+ )
+
+ dist = input.Distortions(
+ [self.Ag_Sb_AgSbTe2_m2_defect_entry, Ag_Sb_AgSbTe2_neutral_defect_entry],
+ )
+ with patch("builtins.print") as mock_print:
+ with warnings.catch_warnings(record=True) as w:
+ _, distortion_metadata = dist.write_vasp_files(
+ user_incar_settings={"IVDW": 12},
+ verbose=True,
+ )
+
+ self._check_agsbte2_files(
+ self.Ag_Sb_AgSbTe2_m2_defect_entry.name, mock_print, w, charge_state=-2
+ )
+ self._check_agsbte2_files(
+ Ag_Sb_AgSbTe2_neutral_defect_entry.name, mock_print, w, charge_state=0
+ )
+
+ def test_write_vasp_files_from_doped_defect_entry_list_w_incomplete_names(self):
+ """
+ Test Distortions() class with input of doped DefectEntry list.
+ Here the DefectEntry.name attributes are not set in all cases, so
+ the doped defect names are regenerated and used as folder names.
+ """
+ Ag_Sb_AgSbTe2_neutral_defect_entry = copy.deepcopy(
+ self.Ag_Sb_AgSbTe2_m2_defect_entry
+ )
+ Ag_Sb_AgSbTe2_neutral_defect_entry.charge_state = 0
+ delattr(Ag_Sb_AgSbTe2_neutral_defect_entry, "name")
+
+ dist = input.Distortions(
+ [self.Ag_Sb_AgSbTe2_m2_defect_entry, Ag_Sb_AgSbTe2_neutral_defect_entry],
+ )
+ with patch("builtins.print") as mock_print:
+ with warnings.catch_warnings(record=True) as w:
+ _, distortion_metadata = dist.write_vasp_files(
+ user_incar_settings={"IVDW": 12},
+ verbose=True,
+ )
+
+ # reset to doped names:
+ self._check_agsbte2_files("Ag_Sb_-2", mock_print, w, charge_state=-2)
+ self._check_agsbte2_files("Ag_Sb_0", mock_print, w, charge_state=0)
+
+ def test_write_vasp_files_overwriting(self):
+ """
+ Test that no warnings are thrown when the defect folder already
+ exists, but no SnB distortion folders in it (i.e. if doped
+ defect folder already generated).
+ """
+ drs = DefectRelaxSet(self.Ag_Sb_AgSbTe2_m2_defect_entry)
+ drs.write_all(unperturbed_poscar=True)
+
+ self.assertTrue(os.path.exists(f"{self.Ag_Sb_AgSbTe2_m2_defect_entry.name}"))
+ self.assertTrue(
+ os.path.exists(f"{self.Ag_Sb_AgSbTe2_m2_defect_entry.name}/vasp_std")
+ )
+ self.assertTrue(
+ os.path.exists(f"{self.Ag_Sb_AgSbTe2_m2_defect_entry.name}/vasp_std/POSCAR")
+ )
+ self.assertTrue(
+ os.path.exists(
+ f"{self.Ag_Sb_AgSbTe2_m2_defect_entry.name}/vasp_std/KPOINTS"
+ )
+ )
+ self.assertTrue(
+ os.path.exists(f"{self.Ag_Sb_AgSbTe2_m2_defect_entry.name}/vasp_ncl")
+ )
+ self.assertTrue(
+ os.path.exists(f"{self.Ag_Sb_AgSbTe2_m2_defect_entry.name}/vasp_nkred_std")
+ )
+
+ dist = input.Distortions(self.Ag_Sb_AgSbTe2_m2_defect_entry)
+ with patch("builtins.print") as mock_print:
+ with warnings.catch_warnings(record=True) as w:
+ _, distortion_metadata = dist.write_vasp_files(
+ user_incar_settings={"IVDW": 12},
+ verbose=True,
+ )
+
+ self.assertEqual(
+ len([warning for warning in w if warning.category == UserWarning]), 0
+ )
+ self._check_agsbte2_files(
+ self.Ag_Sb_AgSbTe2_m2_defect_entry.name, mock_print, w, charge_state=-2
+ )
+
def test_write_vasp_files_from_doped_dict(self):
- """Test Distortion() class with doped dict input"""
+ """Test Distortions() class with doped dict input"""
# Test normal behaviour
vacancies = {
"vacancies": [
@@ -2077,7 +2482,11 @@ def test_write_vasp_files_from_doped_dict(self):
self.assertIn(no_bulk_error, e.exception)
def test_write_vasp_files_from_list(self):
- """Test Distortion() class with Defect list input"""
+ """
+ Test Distortion() class with DefectEntry list input.
+ Here, the DefectEntry.name attributes are not set, and
+ so the doped defect names are regenerated.
+ """
# Test normal behaviour
with patch("builtins.print") as mock_print:
dist = input.Distortions(self.cdte_defect_list)
@@ -2183,6 +2592,10 @@ def test_write_vasp_files_from_list(self):
V_Cd_POSCAR.comment,
"-50.0% N(Distort)=2 ~[0.0,0.0,0.0]",
) # default
+ self.assertEqual(
+ len(V_Cd_POSCAR.site_symbols), len(set(V_Cd_POSCAR.site_symbols))
+ ) # no duplicates
+
self.assertNotEqual(V_Cd_POSCAR.structure, self.V_Cd_minus0pt5_struc_rattled)
# old default rattling
@@ -2193,6 +2606,9 @@ def test_write_vasp_files_from_list(self):
Int_Cd_2_POSCAR.comment,
"-60.0% N(Distort)=2 ~[0.8,0.2,0.8]",
)
+ self.assertEqual(
+ len(Int_Cd_2_POSCAR.site_symbols), len(set(Int_Cd_2_POSCAR.site_symbols))
+ ) # no duplicates
self.assertEqual(
# Int_Cd_2_minus0pt6_struc_rattled is with new default `stdev` & `seed`
Int_Cd_2_POSCAR.structure,
@@ -3018,6 +3434,9 @@ def test_from_structures(self):
V_Cd_POSCAR.comment,
"-50.0% N(Distort)=2 ~[0.0,0.0,0.0]",
) # default
+ self.assertEqual(
+ len(V_Cd_POSCAR.site_symbols), len(set(V_Cd_POSCAR.site_symbols))
+ ) # no duplicates
self.assertNotEqual(V_Cd_POSCAR.structure, self.V_Cd_minus0pt5_struc_rattled)
# old default rattling
@@ -3065,6 +3484,9 @@ def test_from_structures(self):
Int_Cd_2_Bond_Distortion_folder = "Cd_i_C3v_0/Bond_Distortion_-60.0%"
self.assertTrue(os.path.exists(Int_Cd_2_Bond_Distortion_folder))
Int_Cd_2_POSCAR = Poscar.from_file(Int_Cd_2_Bond_Distortion_folder + "/POSCAR")
+ self.assertEqual(
+ len(Int_Cd_2_POSCAR.site_symbols), len(set(Int_Cd_2_POSCAR.site_symbols))
+ ) # no duplicates
self.assertEqual(
Int_Cd_2_POSCAR.comment,
"-60.0% N(Distort)=2 ~[0.8,0.2,0.8]",
diff --git a/tests/test_plotting.py b/tests/test_plotting.py
index fbd8f365..78061381 100644
--- a/tests/test_plotting.py
+++ b/tests/test_plotting.py
@@ -683,6 +683,11 @@ def test_plot_with_multiple_imported_distortions_from_same_charge_state(self):
"-20.0%_from_+2": -623.59064927,
"-30.0%_from_0": -623.49069487,
"-30.0%_from_+2": -623.64233181,
+ "-30.0%_from_+5": -624.65113207,
+ "0.0%_from_+4": -624.65313207,
+ "-15.0%_from_+7": -624.06113207,
+ "30.0%_from_+5": -624.65513207,
+ "25.0%_from_+7": -624.06513207,
"10.0%_from_+2": -624.66110949,
"20.0%_from_+2": -624.65991904,
"30.0%_from_+2": -624.66113207,
@@ -954,6 +959,24 @@ def test_plot_defect_unrecognised_name(self):
)
return fig
+ @pytest.mark.mpl_image_compare(
+ baseline_dir=f"{_DATA_DIR}/remote_baseline_plots",
+ filename="Te_i_Td_Te2.83_+2.png",
+ style=f"{_file_path}/../shakenbreak/shakenbreak.mplstyle",
+ savefig_kwargs={"transparent": True, "bbox_inches": "tight"},
+ )
+ def test_plot_defect_doped_v2(self):
+ """Test plot_defect() function using doped v2 naming"""
+ return plotting.plot_defect(
+ output_path=self.VASP_CDTE_DATA_DIR,
+ defect_species="Te_i_Td_Te2.83_+2",
+ energies_dict=self.V_Cd_energies_dict,
+ num_nearest_neighbours=2,
+ neighbour_atom="Te",
+ include_site_info_in_name=False,
+ save_plot=False,
+ )
+
@pytest.mark.mpl_image_compare(
baseline_dir=f"{_DATA_DIR}/remote_baseline_plots",
filename="vac_1_Cd_0_include_site_info_in_name.png",
@@ -973,6 +996,24 @@ def test_plot_defect_include_site_info_in_name(self):
save_plot=False,
)
+ @pytest.mark.mpl_image_compare(
+ baseline_dir=f"{_DATA_DIR}/remote_baseline_plots",
+ filename="Te_i_Td_Te2.83_+2_include_site_info_in_name.png",
+ style=f"{_file_path}/../shakenbreak/shakenbreak.mplstyle",
+ savefig_kwargs={"transparent": True, "bbox_inches": "tight"},
+ )
+ def test_plot_defect_include_site_info_in_name_doped_v2(self):
+ """Test plot_defect() function when include_site_info_in_name = True, using doped v2 naming"""
+ return plotting.plot_defect(
+ output_path=self.VASP_CDTE_DATA_DIR,
+ defect_species="Te_i_Td_Te2.83_+2",
+ energies_dict=self.V_Cd_energies_dict,
+ num_nearest_neighbours=2,
+ neighbour_atom="Te",
+ include_site_info_in_name=True,
+ save_plot=False,
+ )
+
@pytest.mark.mpl_image_compare(
baseline_dir=f"{_DATA_DIR}/remote_baseline_plots",
filename="vac_1_Cd_0_plot_defect_without_title_units_meV.png",
diff --git a/tutorials/ShakeNBreak_Example_Workflow.ipynb b/tutorials/ShakeNBreak_Example_Workflow.ipynb
index c9d0023b..3d5a4978 100644
--- a/tutorials/ShakeNBreak_Example_Workflow.ipynb
+++ b/tutorials/ShakeNBreak_Example_Workflow.ipynb
@@ -4023,9 +4023,9 @@
},
"source": [
"### Further Defect Analysis\n",
- "Once the ground state (and metastable) defect structures have been identified, we will want to compute their formation energies using our final fully-converged calculation parameters (i.e. plane-wave cutoff and k-point sampling). This can be done using [`doped`](https://github.com/SMTG-UCL/doped), manually (not recommended) or using the other defect codes listed on the [Code Compatibility](https://shakenbreak.readthedocs.io/en/latest/Code_Compatibility.html) page.\n",
+ "Once the ground state (and metastable) defect structures have been identified, we will want to compute their formation energies using our final fully-converged calculation parameters (i.e. plane-wave cutoff and k-point sampling). This can be done using [`doped`](https://github.com/SMTG-Bham/doped), manually (not recommended) or using the other defect codes listed on the [Code Compatibility](https://shakenbreak.readthedocs.io/en/latest/Code_Compatibility.html) page.\n",
"\n",
- "As shown in the [`doped`](https://github.com/SMTG-UCL/doped) examples and docs, you may want to further analyse the behaviour and impact on material properties of your defects using advanced defect analysis codes such as [`easyunfold`](https://smtg-ucl.github.io/easyunfold/) (to analyse the electronic structure of defects in your material), [`py-sc-fermi`](https://py-sc-fermi.readthedocs.io/en/latest/) (to analyse defect concentrations, doping and Fermi level tuning), or [`nonrad`](https://nonrad.readthedocs.io/en/latest/)/[`CarrierCapture.jl`](https://wmd-group.github.io/CarrierCapture.jl/dev/) (to analyse non-radiative electron-hole recombination at defects)."
+ "As shown in the [`doped`](https://github.com/SMTG-Bham/doped) examples and docs, you may want to further analyse the behaviour and impact on material properties of your defects using advanced defect analysis codes such as [`easyunfold`](https://smtg-bham.github.io/easyunfold/) (to analyse the electronic structure of defects in your material), [`py-sc-fermi`](https://py-sc-fermi.readthedocs.io/en/latest/) (to analyse defect concentrations, doping and Fermi level tuning), or [`nonrad`](https://nonrad.readthedocs.io/en/latest/)/[`CarrierCapture.jl`](https://wmd-group.github.io/CarrierCapture.jl/dev/) (to analyse non-radiative electron-hole recombination at defects)."
]
},
{