diff --git a/config.yml b/config.yml index 215a1ac4..953235ab 100644 --- a/config.yml +++ b/config.yml @@ -31,7 +31,8 @@ default: - uncertainties==3.1.6 - jinja2 - pymatgen-analysis-defects<=2024.4.23 - - mat3ra-made==2025.12.16.post0 + - mat3ra-periodic-table + - mat3ra-made>=2025.12.29.post0 # packages below are used when made is installed from GH wheel (made should be installed from below) # - https://exabyte-io.github.io/made/mat3ra_made-0.1.dev1+ge64d360b8-py3-none-any.whl # - mat3ra-code diff --git a/other/materials_designer/create_maxwell_disorder.ipynb b/other/materials_designer/create_maxwell_disorder.ipynb index 01b9b283..02928605 100644 --- a/other/materials_designer/create_maxwell_disorder.ipynb +++ b/other/materials_designer/create_maxwell_disorder.ipynb @@ -43,8 +43,8 @@ "source": [ "MATERIAL_INDEX = 0\n", "\n", - "# Temperature-like disorder parameter\n", - "DISORDER_PARAMETER = 300.0\n", + "# Temperature-like disorder parameter, close to temperature in eV.\n", + "DISORDER_PARAMETER = 3.0\n", "\n", "# Random seed for reproducibility (set to None for random behavior)\n", "RANDOM_SEED = 0\n", @@ -207,7 +207,7 @@ "outputs": [], "source": [ "from utils.jupyterlite import set_materials\n", - "\n", + "material_with_disorder.name = f\"{material.name} + Maxwell Disorder (T={DISORDER_PARAMETER})\"\n", "set_materials(material_with_disorder)" ] }