mat3ra-esse 2025.8.20.post0__py3-none-any.whl → 2025.10.8.post0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of mat3ra-esse might be problematic. Click here for more details.
- mat3ra/esse/data/examples.py +1 -1
- mat3ra/esse/data/schemas.py +1 -1
- mat3ra/esse/models/core/abstract/_2d_data.py +2 -2
- mat3ra/esse/models/core/abstract/_2d_plot.py +2 -6
- mat3ra/esse/models/core/primitive/_1d_data_series.py +3 -3
- mat3ra/esse/models/core/primitive/axis_3d_names_enum.py +13 -0
- mat3ra/esse/models/core/reference/__init__.py +8 -8
- mat3ra/esse/models/core/reference/exabyte.py +2 -8
- mat3ra/esse/models/core/reference/experiment/__init__.py +2 -2
- mat3ra/esse/models/core/reusable/coordinate_conditions/__init__.py +1 -78
- mat3ra/esse/models/core/reusable/coordinate_conditions/index.py +80 -0
- mat3ra/esse/models/core/reusable/hubbard_parameters.py +48 -0
- mat3ra/esse/models/core/reusable/kpoint.py +16 -0
- mat3ra/esse/models/core/reusable/repetition.py +14 -0
- mat3ra/esse/models/definitions/material.py +13 -0
- mat3ra/esse/models/element.py +10 -8
- mat3ra/esse/models/job/__init__.py +62 -62
- mat3ra/esse/models/material/__init__.py +12 -12
- mat3ra/esse/models/materials_category/compound_pristine_structures/two_dimensional/interface/configuration.py +80 -80
- mat3ra/esse/models/materials_category/defective_structures/one_dimensional/grain_boundary_linear/configuration.py +80 -80
- mat3ra/esse/models/materials_category/defective_structures/two_dimensional/adatom/configuration.py +35 -35
- mat3ra/esse/models/materials_category/defective_structures/two_dimensional/grain_boundary_planar/configuration.py +80 -80
- mat3ra/esse/models/materials_category/defective_structures/two_dimensional/island/configuration.py +53 -53
- mat3ra/esse/models/materials_category/defective_structures/two_dimensional/terrace/configuration.py +53 -53
- mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/interstitial.py +29 -29
- mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/substitutional.py +32 -32
- mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/vacancy.py +12 -12
- mat3ra/esse/models/materials_category/pristine_structures/three_dimensional/ideal_crystal.py +12 -12
- mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/nanoribbon.py +52 -52
- mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/nanotape.py +32 -32
- mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab.py +32 -32
- mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab_strained_supercell.py +32 -32
- mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab_strained_supercell_with_gap.py +1151 -0
- mat3ra/esse/models/materials_category/processed_structures/two_dimensional/passivation/configuration.py +17 -17
- mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/crystal_site.py +8 -8
- mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/point_defect_site.py +12 -12
- mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/void_region.py +12 -12
- mat3ra/esse/models/materials_category_components/entities/core/three_dimensional/crystal.py +8 -8
- mat3ra/esse/models/materials_category_components/entities/core/two_dimensional/vacuum.py +12 -12
- mat3ra/esse/models/materials_category_components/entities/reusable/one_dimensional/crystal_lattice_lines.py +8 -8
- mat3ra/esse/models/materials_category_components/entities/reusable/one_dimensional/crystal_lattice_lines_unique_repeated.py +8 -8
- mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/crystal_lattice_base.py +8 -8
- mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_non_uniform.py +12 -12
- mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_uniform.py +12 -12
- mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/supercell.py +12 -12
- mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/crystal_lattice_planes.py +8 -8
- mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/slab_stack_configuration.py +52 -52
- mat3ra/esse/models/materials_category_components/operations/core/modifications/perturb.py +12 -12
- mat3ra/esse/models/methods_directory/physical/psp/__init__.py +2 -2
- mat3ra/esse/models/methods_directory/physical/psp/file.py +2 -2
- mat3ra/esse/models/methods_directory/physical/psp/file_data_item.py +2 -2
- mat3ra/esse/models/properties_directory/derived_properties.py +6 -6
- mat3ra/esse/models/properties_directory/elemental/atomic_radius.py +1 -1
- mat3ra/esse/models/properties_directory/elemental/electronegativity.py +1 -2
- mat3ra/esse/models/properties_directory/elemental/ionization_potential.py +3 -4
- mat3ra/esse/models/properties_directory/jupyter_notebook_endpoint.py +20 -0
- mat3ra/esse/models/properties_directory/non_scalar/average_potential_profile.py +4 -8
- mat3ra/esse/models/properties_directory/non_scalar/band_gaps.py +2 -2
- mat3ra/esse/models/properties_directory/non_scalar/band_structure.py +5 -9
- mat3ra/esse/models/properties_directory/non_scalar/charge_density_profile.py +4 -8
- mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py +5 -8
- mat3ra/esse/models/properties_directory/non_scalar/dielectric_tensor.py +2 -2
- mat3ra/esse/models/properties_directory/non_scalar/file_content.py +2 -2
- mat3ra/esse/models/properties_directory/non_scalar/final_structure.py +22 -0
- mat3ra/esse/models/properties_directory/non_scalar/hubbard_u.py +4 -4
- mat3ra/esse/models/properties_directory/non_scalar/hubbard_v.py +3 -4
- mat3ra/esse/models/properties_directory/non_scalar/hubbard_v_nn.py +3 -4
- mat3ra/esse/models/properties_directory/non_scalar/is_relaxed.py +22 -0
- mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py +10 -14
- mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py +10 -14
- mat3ra/esse/models/properties_directory/non_scalar/potential_profile.py +8 -12
- mat3ra/esse/models/properties_directory/non_scalar/reaction_energy_profile.py +8 -12
- mat3ra/esse/models/properties_directory/non_scalar/stress_tensor.py +5 -7
- mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py +64 -51
- mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py +10 -14
- mat3ra/esse/models/properties_directory/non_scalar/workflow.py +2234 -0
- mat3ra/esse/models/properties_directory/reusable/__init__.py +3 -0
- mat3ra/esse/models/properties_directory/reusable/hubbard_parameters.py +48 -0
- mat3ra/esse/models/properties_directory/scalar/electron_affinity.py +1 -1
- mat3ra/esse/models/properties_directory/scalar/fermi_energy.py +1 -1
- mat3ra/esse/models/properties_directory/scalar/formation_energy.py +1 -1
- mat3ra/esse/models/properties_directory/scalar/ionization_potential.py +3 -3
- mat3ra/esse/models/properties_directory/scalar/pressure.py +3 -4
- mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py +3 -3
- mat3ra/esse/models/properties_directory/scalar/surface_energy.py +3 -3
- mat3ra/esse/models/properties_directory/scalar/total_energy.py +3 -3
- mat3ra/esse/models/properties_directory/scalar/total_force.py +3 -4
- mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py +3 -3
- mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py +3 -3
- mat3ra/esse/models/properties_directory/structural/atomic_forces.py +5 -5
- mat3ra/esse/models/properties_directory/structural/basis/atomic_constraints_property.py +3 -3
- mat3ra/esse/models/properties_directory/structural/basis/boundary_conditions.py +30 -0
- mat3ra/esse/models/properties_directory/structural/basis/predicted_properties.py +82 -0
- mat3ra/esse/models/properties_directory/structural/lattice/units/__init__.py +23 -1
- mat3ra/esse/models/properties_directory/structural/magnetic_moments.py +5 -5
- mat3ra/esse/models/properties_directory/structural/molecular_pattern.py +5 -5
- mat3ra/esse/models/properties_directory/structural/patterns/functional_group.py +1 -1
- mat3ra/esse/models/properties_directory/structural/patterns/ring.py +1 -1
- mat3ra/esse/models/properties_directory/structural/patterns/special_bond.py +1 -1
- mat3ra/esse/models/properties_directory/workflow/convergence/electronic.py +4 -4
- mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py +6 -6
- mat3ra/esse/models/property/base.py +1492 -14
- mat3ra/esse/models/property/holder.py +3568 -0
- mat3ra/esse/models/property/meta_holder/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e/__init__.py +3 -0
- mat3ra/esse/models/property/meta_holder/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e/g.py +31 -0
- mat3ra/esse/models/property/meta_holder.py +140 -0
- mat3ra/esse/models/property/proto_holder.py +86 -0
- mat3ra/esse/models/property/raw.py +27 -11
- mat3ra/esse/models/property/source.py +26 -3
- mat3ra/esse/models/workflow/__init__.py +54 -54
- mat3ra/esse/models/workflow/base_flow.py +4 -4
- mat3ra/esse/models/workflow/subworkflow/__init__.py +13 -13
- mat3ra/esse/models/workflow/subworkflow/unit.py +10 -10
- mat3ra/esse/models/workflow/unit/__init__.py +12 -12
- mat3ra/esse/models/workflow/unit/io/__init__.py +4 -4
- mat3ra/esse/models/workflow/unit/io/db.py +2 -2
- mat3ra/esse/models/workflow/unit/io/object_storage.py +1 -1
- {mat3ra_esse-2025.8.20.post0.dist-info → mat3ra_esse-2025.10.8.post0.dist-info}/METADATA +1 -1
- {mat3ra_esse-2025.8.20.post0.dist-info → mat3ra_esse-2025.10.8.post0.dist-info}/RECORD +122 -103
- mat3ra/esse/models/property/meta.py +0 -200
- {mat3ra_esse-2025.8.20.post0.dist-info → mat3ra_esse-2025.10.8.post0.dist-info}/WHEEL +0 -0
- {mat3ra_esse-2025.8.20.post0.dist-info → mat3ra_esse-2025.10.8.post0.dist-info}/licenses/LICENSE.md +0 -0
- {mat3ra_esse-2025.8.20.post0.dist-info → mat3ra_esse-2025.10.8.post0.dist-info}/top_level.txt +0 -0
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
|
|
7
|
-
from typing import List,
|
|
7
|
+
from typing import List, Union
|
|
8
8
|
|
|
9
9
|
from pydantic import BaseModel, ConfigDict, Field, RootModel
|
|
10
10
|
|
|
@@ -27,7 +27,7 @@ class DataIODatabaseInputOutputSchema1(BaseModel):
|
|
|
27
27
|
"""
|
|
28
28
|
db collection name
|
|
29
29
|
"""
|
|
30
|
-
draft:
|
|
30
|
+
draft: bool
|
|
31
31
|
"""
|
|
32
32
|
whether the result should be saved as draft
|
|
33
33
|
"""
|
|
@@ -41,7 +41,7 @@ class ObjectStorageIoSchema(BaseModel):
|
|
|
41
41
|
extra="allow",
|
|
42
42
|
)
|
|
43
43
|
objectData: ObjectStorageContainerData = Field(..., title="Object Storage Container Data")
|
|
44
|
-
overwrite: Optional[bool] =
|
|
44
|
+
overwrite: Optional[bool] = None
|
|
45
45
|
"""
|
|
46
46
|
if a file with the same filename already exists, whether to overwrite the old file
|
|
47
47
|
"""
|
|
@@ -2,11 +2,11 @@ mat3ra/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
2
2
|
mat3ra/esse/__init__.py,sha256=nN0dOkxbOK6sWOTNr8aBGi9bQsI9sy6B2nn0UP29-sI,1244
|
|
3
3
|
mat3ra/esse/utils.py,sha256=-FexdtkOYGEWmwJUwWDuJferibc7M1YzUH738Bffuxo,1727
|
|
4
4
|
mat3ra/esse/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
-
mat3ra/esse/data/examples.py,sha256=
|
|
5
|
+
mat3ra/esse/data/examples.py,sha256=oaKBHn2gNLEI8136kFHwUxzghs_XSWefSghJV2gnfLE,142897
|
|
6
6
|
mat3ra/esse/data/properties.py,sha256=geWFIVIJbdn2Q_JG3Mz36oQ_dXeZZwnmlS_NgszvHUY,6099
|
|
7
|
-
mat3ra/esse/data/schemas.py,sha256=
|
|
7
|
+
mat3ra/esse/data/schemas.py,sha256=MJpKV5H7DWO1WP48Yz3wxfKWpc2-4qhHFG2wdfe-T30,3297412
|
|
8
8
|
mat3ra/esse/models/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
9
|
-
mat3ra/esse/models/element.py,sha256=
|
|
9
|
+
mat3ra/esse/models/element.py,sha256=5rQexDJz6p0XYqMs7j6TTJHTkvnuvz5vvl-g75c9jqw,2944
|
|
10
10
|
mat3ra/esse/models/project.py,sha256=fqUckRBLyCzVc_77-EtQUg_zFDV_zTYfnLmOoE77zPE,1148
|
|
11
11
|
mat3ra/esse/models/apse/db/nist_jarvis/2024_3.13/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
12
12
|
mat3ra/esse/models/apse/db/nist_jarvis/2024_3.13/atoms.py,sha256=KJoqkT9hV3J_xJmaHCLx7bAEBxvGxz0_ZC76b9Auu2k,1451
|
|
@@ -27,8 +27,8 @@ mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/system.py,sha256=k1G
|
|
|
27
27
|
mat3ra/esse/models/apse/materials/builders/slab/pymatgen/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
28
28
|
mat3ra/esse/models/apse/materials/builders/slab/pymatgen/parameters.py,sha256=P-6jXpG84bAsOMnr0EBSV-20MHpGViZOjcKSJqLVqxc,785
|
|
29
29
|
mat3ra/esse/models/core/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
30
|
-
mat3ra/esse/models/core/abstract/_2d_data.py,sha256=
|
|
31
|
-
mat3ra/esse/models/core/abstract/_2d_plot.py,sha256=
|
|
30
|
+
mat3ra/esse/models/core/abstract/_2d_data.py,sha256=SDYP92G8bgzo4IBtiH_bVY8w7PGjabK5reF_03xHp_g,441
|
|
31
|
+
mat3ra/esse/models/core/abstract/_2d_plot.py,sha256=xZZozQRkUD4qrdIRwGh1V6qobRu2qyKoX4Nq-IweQM4,723
|
|
32
32
|
mat3ra/esse/models/core/abstract/_3d_grid.py,sha256=qJ6z7YI504zEWp81dOoYdBVBZDPFGuvD8VxfeEOmhgA,466
|
|
33
33
|
mat3ra/esse/models/core/abstract/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
34
34
|
mat3ra/esse/models/core/abstract/coordinate_2d.py,sha256=VY2G33pQx_QYF-njFFk3Yhg_emT0datwlcqg9KppCYk,349
|
|
@@ -38,7 +38,7 @@ mat3ra/esse/models/core/abstract/matrix_3x3.py,sha256=7Ob8lg7Uq33R0dVO7XYgp4AvDy
|
|
|
38
38
|
mat3ra/esse/models/core/abstract/vector_2d.py,sha256=glgkqggX96brGldtAZrmJOuwQlTU_d1i09pdqZHADWg,337
|
|
39
39
|
mat3ra/esse/models/core/abstract/vector_3d.py,sha256=gty27LKhdm35AR6PjWvO8Ccq5p4eqe25At-h7-OAteI,337
|
|
40
40
|
mat3ra/esse/models/core/abstract/vector_boolean_3d.py,sha256=GbByG75y034HscvSsE9tIo178Mri-ZeNFOMfZbXKjZ0,313
|
|
41
|
-
mat3ra/esse/models/core/primitive/_1d_data_series.py,sha256=
|
|
41
|
+
mat3ra/esse/models/core/primitive/_1d_data_series.py,sha256=BSJwjVDssegx0SlO-_Q3JDKWCtnE1t8eXuUvRFQUJMs,358
|
|
42
42
|
mat3ra/esse/models/core/primitive/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
43
43
|
mat3ra/esse/models/core/primitive/array_of_2_numbers.py,sha256=gthQ3V7sAq-EmzV9z1patFBb5CZHmtCqMcghGNYUkUI,378
|
|
44
44
|
mat3ra/esse/models/core/primitive/array_of_3_booleans.py,sha256=06YLYsvCD7BP5fNee8e07YKrNZVNsfh9RpvBMj-k7-A,379
|
|
@@ -47,6 +47,7 @@ mat3ra/esse/models/core/primitive/array_of_3_numbers.py,sha256=VjCYsMasQYN1agkBJ
|
|
|
47
47
|
mat3ra/esse/models/core/primitive/array_of_ids.py,sha256=JMTCZGq743-t61SNqFqPNX26yZNZ5I9APKoZ23_1z6w,484
|
|
48
48
|
mat3ra/esse/models/core/primitive/array_of_strings.py,sha256=j8hck6B4rcpNc801v5shjFiwtWVXMX1e_kFr7WNfMpo,370
|
|
49
49
|
mat3ra/esse/models/core/primitive/axis.py,sha256=lC968R-jutI-HTLO40G4YoN9dMWJ9hzpnZPs89dlJdc,353
|
|
50
|
+
mat3ra/esse/models/core/primitive/axis_3d_names_enum.py,sha256=trFTfyXeUEoE-5i6oW2qZyBHSo0hkj-b-McBGMUxF4U,229
|
|
50
51
|
mat3ra/esse/models/core/primitive/group_info.py,sha256=mhjFVVTseLogwggxg7GVDUZ1NZU-SLc1kcBUwrFz4g0,448
|
|
51
52
|
mat3ra/esse/models/core/primitive/integer_one_or_zero.py,sha256=xxNWl0Pr8_onwgKuiI4ic8Oo9FfTojyb1bLWj0-tg-0,322
|
|
52
53
|
mat3ra/esse/models/core/primitive/integer_positive_single_digit.py,sha256=-Oou7xrBTog5PVxfBfwET9NuQd0n5SkL_xT6coS6CKQ,352
|
|
@@ -61,9 +62,9 @@ mat3ra/esse/models/core/primitive/linked_list/base_node.py,sha256=tMndAwOtK_q1yX
|
|
|
61
62
|
mat3ra/esse/models/core/primitive/linked_list/named_node.py,sha256=j2Lxpfxw9xyZqLwWOavYys_3mkwIE11_xjLh_zEVkAs,642
|
|
62
63
|
mat3ra/esse/models/core/primitive/linked_list/named_node_in_group.py,sha256=nc9jRIgAsY5yZMhxwCuoA6ga9N7DVJKN3CpOXsfSCaA,855
|
|
63
64
|
mat3ra/esse/models/core/primitive/linked_list/node_with_type.py,sha256=9eq7NEjUHxdHxVMv2Ddda0D8b--fHuEvELZK6QHbi28,614
|
|
64
|
-
mat3ra/esse/models/core/reference/__init__.py,sha256=
|
|
65
|
-
mat3ra/esse/models/core/reference/exabyte.py,sha256=
|
|
66
|
-
mat3ra/esse/models/core/reference/experiment/__init__.py,sha256=
|
|
65
|
+
mat3ra/esse/models/core/reference/__init__.py,sha256=kDIEvFXLlUNt1QAEF_r3qVogEW9oWmTNfzr3aafKtzI,6436
|
|
66
|
+
mat3ra/esse/models/core/reference/exabyte.py,sha256=qfES_9ZS8o9dkYicKJydisYSmGS37pCH1JkFFbYFTH0,319
|
|
67
|
+
mat3ra/esse/models/core/reference/experiment/__init__.py,sha256=98Fw2A37z3UNlI_-d8kydbLbJPMrdKKXXcVwShkuxmo,3476
|
|
67
68
|
mat3ra/esse/models/core/reference/experiment/condition.py,sha256=bZyiij_gBzLtlbCu3oAn3Skg_ZZXxhDZ4lg5v9siwIs,544
|
|
68
69
|
mat3ra/esse/models/core/reference/experiment/location.py,sha256=5Kq6nceyVXAo09X-fpyDM0i2EfcqJbUKQwr8FAaINdo,332
|
|
69
70
|
mat3ra/esse/models/core/reference/literature/__init__.py,sha256=SA4aLHkvP05ulEbbEUoy4lFHOh0uWP1MrrQTpifU8uw,2290
|
|
@@ -87,18 +88,22 @@ mat3ra/esse/models/core/reusable/dielectric_tensor_component.py,sha256=_rr6oeTSx
|
|
|
87
88
|
mat3ra/esse/models/core/reusable/energy.py,sha256=FUf_Lrr6eIlQu6ADy8hS0OsJ0Igcp9apQRzEwZPxZtI,514
|
|
88
89
|
mat3ra/esse/models/core/reusable/file_metadata.py,sha256=DyPL1zQJR3HTyOGgvQzE7BxasTCkVRffeG_4WKfxf-8,520
|
|
89
90
|
mat3ra/esse/models/core/reusable/frequency_function_matrix.py,sha256=I4B-ukMJ_aGpP_PHDd63bW8Jav1mreGeMiLqtrElIno,429
|
|
91
|
+
mat3ra/esse/models/core/reusable/hubbard_parameters.py,sha256=_k14y1Ery8_HePzsSPHmT-IbmDXnnbzy6dhYRPkVAQI,1129
|
|
92
|
+
mat3ra/esse/models/core/reusable/kpoint.py,sha256=WNFdWMoKczX6QK26uJaXWdpqphRM9GWN6dYoXcjz9D0,404
|
|
90
93
|
mat3ra/esse/models/core/reusable/object_storage_container_data.py,sha256=LKvflErRqZIS2U4L586Dqkb5PN5BJd0oNUp2h0B4R4Q,834
|
|
94
|
+
mat3ra/esse/models/core/reusable/repetition.py,sha256=gxZO4RpUWaJ3epVhigvUnuYfbqLsFMDKmvMqehyAIow,291
|
|
91
95
|
mat3ra/esse/models/core/reusable/scalar_with_accuracy_levels.py,sha256=s6TD3yrZlVdGYmMIqhBmhacuRIMRtfkJx_Ag_0Vl_OA,487
|
|
92
96
|
mat3ra/esse/models/core/reusable/atomic_data/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
93
97
|
mat3ra/esse/models/core/reusable/atomic_data/per_orbital.py,sha256=pd3oG1FfLevoA44FMemtkfO5Hc73gfO-H_GfUIw1W7o,530
|
|
94
98
|
mat3ra/esse/models/core/reusable/atomic_data/per_orbital_pair.py,sha256=gLJkxLpRfNAixmVV1LCz-UHp-C55iq7SM7QJQnFSLWM,919
|
|
95
99
|
mat3ra/esse/models/core/reusable/atomic_data/value_number.py,sha256=nEF8VBqob3JNGFogaJsaHWOchl_lGyh9MHDbFLF4h78,376
|
|
96
100
|
mat3ra/esse/models/core/reusable/atomic_data/value_string.py,sha256=vwk-4oyLWQB7Qbw5dpUt79oaojZsJVlbZvPfp-3JH7U,348
|
|
97
|
-
mat3ra/esse/models/core/reusable/coordinate_conditions/__init__.py,sha256=
|
|
101
|
+
mat3ra/esse/models/core/reusable/coordinate_conditions/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
98
102
|
mat3ra/esse/models/core/reusable/coordinate_conditions/base.py,sha256=L7zYSATgDrli55qZhAutLnzOUXCp1PqTxL8-0XRO940,497
|
|
99
103
|
mat3ra/esse/models/core/reusable/coordinate_conditions/box.py,sha256=eOjqGLjZD1EoVmBkh-s8-5aTFX4E7Se3thmOq4RjruE,735
|
|
100
104
|
mat3ra/esse/models/core/reusable/coordinate_conditions/cylinder.py,sha256=t3OfPcQoQPTdrP03GeCPXcrk9AmvCfVK3AHw7L8gzoU,616
|
|
101
105
|
mat3ra/esse/models/core/reusable/coordinate_conditions/enum.py,sha256=qlOpxIW7i5SowG5-rLSz6DAqIOlIIvPrQyqYMGoZmCQ,337
|
|
106
|
+
mat3ra/esse/models/core/reusable/coordinate_conditions/index.py,sha256=yNd0YsE4Z9XUnD5B5jQK9dMXE1FydbuIU-EpKdFAYCs,2718
|
|
102
107
|
mat3ra/esse/models/core/reusable/coordinate_conditions/plane.py,sha256=zIV3ekbu4ygDOb3zGBvzxV8X2Z-3VnJFUFYGHTJMdyc,749
|
|
103
108
|
mat3ra/esse/models/core/reusable/coordinate_conditions/sphere.py,sha256=P6NS9cBYOmjyJ5VeSuVUjpr4-rlTxkgvTYx5zgs--kI,574
|
|
104
109
|
mat3ra/esse/models/core/reusable/coordinate_conditions/triangular_prism.py,sha256=JV5rlqQL43Iz69IWaMlPIg0JeJqo1DJFMx_8cjKhgog,1025
|
|
@@ -107,6 +112,7 @@ mat3ra/esse/models/core/reusable/energy_accuracy_levels/Reusable_schema_for_ener
|
|
|
107
112
|
mat3ra/esse/models/definitions/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
108
113
|
mat3ra/esse/models/definitions/chemical_elements.py,sha256=5Rc3-V1m7i_t20FgIVUs0njJL7s-JqYYTUqFufvH3AA,314
|
|
109
114
|
mat3ra/esse/models/definitions/constants.py,sha256=53q7UtK31QOF3h4rVbOq4vNyXSqSjIL437A78i_5NaA,933
|
|
115
|
+
mat3ra/esse/models/definitions/material.py,sha256=VcwyzpimFgVINESeZuPO4d9ggWvdi-tZuBSLLkaBOaA,300
|
|
110
116
|
mat3ra/esse/models/definitions/materials.py,sha256=Qzx6wi3SzRfILeuJlpAoOdFmC5VB1UOW3RkrLTg4XWU,301
|
|
111
117
|
mat3ra/esse/models/definitions/units.py,sha256=4yoh-9dCLZhM02beLXVCuA4TpkPgm-QgEoWTvLkTBEs,296
|
|
112
118
|
mat3ra/esse/models/in_memory_entity/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
@@ -117,40 +123,41 @@ mat3ra/esse/models/in_memory_entity/named.py,sha256=WtheTd6YeAfv_MA-hMu42B2Y0ev3
|
|
|
117
123
|
mat3ra/esse/models/in_memory_entity/named_defaultable.py,sha256=bgydOU25QtBQvM28z6t30rBptbhWYu7vW0EISwxvRkc,758
|
|
118
124
|
mat3ra/esse/models/in_memory_entity/named_defaultable_has_metadata.py,sha256=UUTNYPI9rhlxZvqz0vkpf7Tq_dvt5dl0qi4DEHr0Ljw,839
|
|
119
125
|
mat3ra/esse/models/in_memory_entity/named_defaultable_runtime_items.py,sha256=g7MEuIogvwz7m1PxZO3Ded7QLkBaseXcVOYaO0aga48,1447
|
|
120
|
-
mat3ra/esse/models/job/__init__.py,sha256=
|
|
126
|
+
mat3ra/esse/models/job/__init__.py,sha256=WhdDBz67u25zuvduqKuZY6uadpoURTzctWnIdfeIsIU,65134
|
|
121
127
|
mat3ra/esse/models/job/base.py,sha256=QZzYedxsoGbqQvIgLhBsCQDWvTlTgXM64-Jcy-Z4umc,8088
|
|
122
128
|
mat3ra/esse/models/job/compute.py,sha256=strKlGY8VnnnFij3KxxZr2Hozf2_zhujhTb4cQxP5KU,5501
|
|
123
|
-
mat3ra/esse/models/material/__init__.py,sha256=
|
|
129
|
+
mat3ra/esse/models/material/__init__.py,sha256=L4pmodiWosWS4hnYv-O8fgrW5GTBVlp5YxromgZxUnY,11687
|
|
124
130
|
mat3ra/esse/models/material/consistency_check.py,sha256=6fF96LF_xOwT4k47Ez3ADx3-yVnREgwY95N5aA12o0c,934
|
|
125
131
|
mat3ra/esse/models/material/conventional.py,sha256=y6PGJsMs4ktea-q9LGZnRIYscFjfWjdZFmeyehAJdBE,303
|
|
126
132
|
mat3ra/esse/models/materials_category/compound_pristine_structures/two_dimensional/interface/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
127
|
-
mat3ra/esse/models/materials_category/compound_pristine_structures/two_dimensional/interface/configuration.py,sha256=
|
|
133
|
+
mat3ra/esse/models/materials_category/compound_pristine_structures/two_dimensional/interface/configuration.py,sha256=aTUaDgZz0NldvH73gFhTKweiBttWOnoOXx83Aukzy8Q,97106
|
|
128
134
|
mat3ra/esse/models/materials_category/defective_structures/one_dimensional/grain_boundary_linear/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
129
|
-
mat3ra/esse/models/materials_category/defective_structures/one_dimensional/grain_boundary_linear/configuration.py,sha256=
|
|
135
|
+
mat3ra/esse/models/materials_category/defective_structures/one_dimensional/grain_boundary_linear/configuration.py,sha256=57Kn-vn1XB2-LheEOtWVYp5dwed5Pc-RLX8FhzXjzNs,97230
|
|
130
136
|
mat3ra/esse/models/materials_category/defective_structures/two_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
131
137
|
mat3ra/esse/models/materials_category/defective_structures/two_dimensional/base_configuration.py,sha256=NAvvdY-Y96fJJF2-dIQT_RUULnsba89HTeEcUB9QA7A,34124
|
|
132
138
|
mat3ra/esse/models/materials_category/defective_structures/two_dimensional/adatom/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
133
|
-
mat3ra/esse/models/materials_category/defective_structures/two_dimensional/adatom/configuration.py,sha256=
|
|
139
|
+
mat3ra/esse/models/materials_category/defective_structures/two_dimensional/adatom/configuration.py,sha256=10WUUKPQJ18liv_lAKUYMjvx2E2J_B3EbxjJuw1deJs,46065
|
|
134
140
|
mat3ra/esse/models/materials_category/defective_structures/two_dimensional/grain_boundary_planar/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
135
|
-
mat3ra/esse/models/materials_category/defective_structures/two_dimensional/grain_boundary_planar/configuration.py,sha256=
|
|
141
|
+
mat3ra/esse/models/materials_category/defective_structures/two_dimensional/grain_boundary_planar/configuration.py,sha256=vDKrPrdttVRdO7oBcpQecpHBD_p2rU0tDlEPJmF6ylQ,96786
|
|
136
142
|
mat3ra/esse/models/materials_category/defective_structures/two_dimensional/island/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
137
|
-
mat3ra/esse/models/materials_category/defective_structures/two_dimensional/island/configuration.py,sha256=
|
|
143
|
+
mat3ra/esse/models/materials_category/defective_structures/two_dimensional/island/configuration.py,sha256=faLL1LJ62aThwXKtxHsOxCgEMcSgefHke_CevKav5x8,66755
|
|
138
144
|
mat3ra/esse/models/materials_category/defective_structures/two_dimensional/terrace/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
139
|
-
mat3ra/esse/models/materials_category/defective_structures/two_dimensional/terrace/configuration.py,sha256=
|
|
145
|
+
mat3ra/esse/models/materials_category/defective_structures/two_dimensional/terrace/configuration.py,sha256=BryDUiMFXOx9CA1sLnmimwe6cK7ss5M8TB7x4w6nASw,66946
|
|
140
146
|
mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
141
147
|
mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/base_configuration.py,sha256=I3pZiB4ivSxKo_8_VkOOmGk_GcKe-Q4bJSUfgd6JTHE,12135
|
|
142
|
-
mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/interstitial.py,sha256=
|
|
143
|
-
mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/substitutional.py,sha256
|
|
144
|
-
mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/vacancy.py,sha256=
|
|
148
|
+
mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/interstitial.py,sha256=NTpV5WLM5Pw9XFwZal-5D3Cahxad9dCwzjNG8qvTlRM,23526
|
|
149
|
+
mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/substitutional.py,sha256=JYSUrWOr9Zfetu4DZ-mPB6ObfHwvaDdG7CFWnzOGzeg,23532
|
|
150
|
+
mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/vacancy.py,sha256=pXoWkCJMPiSacGPLz5Ds0Jk4v4uH_WByOAIj2WrPxwU,12365
|
|
145
151
|
mat3ra/esse/models/materials_category/pristine_structures/three_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
146
|
-
mat3ra/esse/models/materials_category/pristine_structures/three_dimensional/ideal_crystal.py,sha256=
|
|
152
|
+
mat3ra/esse/models/materials_category/pristine_structures/three_dimensional/ideal_crystal.py,sha256=lgtd3eUf8-J4-tR07nmy52U1a226fT9lYTsU6bvtKUI,11753
|
|
147
153
|
mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
148
|
-
mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/nanoribbon.py,sha256=
|
|
149
|
-
mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/nanotape.py,sha256=
|
|
150
|
-
mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab.py,sha256=
|
|
151
|
-
mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab_strained_supercell.py,sha256=
|
|
154
|
+
mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/nanoribbon.py,sha256=Ro_lJZufaq7Z1jfYV3MEn9P-hiybeMbxzVu1n4nj-yc,35465
|
|
155
|
+
mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/nanotape.py,sha256=fLvGAG8bJv38YmLkf5DzxAUHay4IvwPWDyICBipwkz0,25530
|
|
156
|
+
mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab.py,sha256=eKUeQTsoilvH4zp2ObMXUfbAGLXUBhpTVPSpW-_B8z8,24774
|
|
157
|
+
mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab_strained_supercell.py,sha256=SSajLB5xXn-xiVSM0ayv-FamujyDPcAjNtMMJAMtnnQ,25510
|
|
158
|
+
mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab_strained_supercell_with_gap.py,sha256=PXUOWUi7Q_6P5OpOsnJbxFNzQJaGHF6EVGeeep3llbI,25355
|
|
152
159
|
mat3ra/esse/models/materials_category/processed_structures/two_dimensional/passivation/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
153
|
-
mat3ra/esse/models/materials_category/processed_structures/two_dimensional/passivation/configuration.py,sha256=
|
|
160
|
+
mat3ra/esse/models/materials_category/processed_structures/two_dimensional/passivation/configuration.py,sha256=FvkDduIO3CZRtLw9YFAb7OVI-X8LjH9KueB0zDr3vuE,25469
|
|
154
161
|
mat3ra/esse/models/materials_category_components/entities/auxiliary/one_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
155
162
|
mat3ra/esse/models/materials_category_components/entities/auxiliary/one_dimensional/miller_indices_2d.py,sha256=DS2U7ib49w5uGrtpt4BsD86kmt2WZBACrk5FLfX-eE0,480
|
|
156
163
|
mat3ra/esse/models/materials_category_components/entities/auxiliary/three_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
@@ -160,35 +167,35 @@ mat3ra/esse/models/materials_category_components/entities/auxiliary/two_dimensio
|
|
|
160
167
|
mat3ra/esse/models/materials_category_components/entities/auxiliary/two_dimensional/supercell_matrix_2d.py,sha256=AKWn7TICc3OHL9Ip1A9coI8Gl-VDpgcZCjKmcSAbXRw,769
|
|
161
168
|
mat3ra/esse/models/materials_category_components/entities/auxiliary/two_dimensional/termination.py,sha256=LE0QSArs0CTPvIQ6-osWymoeEGh7ebotWqUnFUNksII,2401
|
|
162
169
|
mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
163
|
-
mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/crystal_site.py,sha256=
|
|
164
|
-
mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/point_defect_site.py,sha256=
|
|
165
|
-
mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/void_region.py,sha256=
|
|
170
|
+
mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/crystal_site.py,sha256=KDpzjKq3c548E8mHELUKo1nkfU-UJN6abFf1bdg5SCs,12035
|
|
171
|
+
mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/point_defect_site.py,sha256=SLDiNxeg0jv4x1FNh6E90WlHtQNB3D4HmfOLvMRPH44,14031
|
|
172
|
+
mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/void_region.py,sha256=4M8Ny94hl4nCLGAkzPKfsS8y-9gp2ar8RvIzeVkGH7c,14096
|
|
166
173
|
mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/void_site.py,sha256=Eyb9jZfc6DWOM1ECkCsycHWCwFNRZ-CqXZtKQtoI8lo,34945
|
|
167
174
|
mat3ra/esse/models/materials_category_components/entities/core/three_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
168
|
-
mat3ra/esse/models/materials_category_components/entities/core/three_dimensional/crystal.py,sha256=
|
|
175
|
+
mat3ra/esse/models/materials_category_components/entities/core/three_dimensional/crystal.py,sha256=0NA1kWSGKp8PibrX2Ipyhsn-jq_aIN1hKbqPwdZjBGo,11747
|
|
169
176
|
mat3ra/esse/models/materials_category_components/entities/core/three_dimensional/void.py,sha256=O4CSYSZkXs72ceagAbSf8Cn2qa3046ncl5874HQc5ek,2575
|
|
170
177
|
mat3ra/esse/models/materials_category_components/entities/core/two_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
171
|
-
mat3ra/esse/models/materials_category_components/entities/core/two_dimensional/vacuum.py,sha256=
|
|
178
|
+
mat3ra/esse/models/materials_category_components/entities/core/two_dimensional/vacuum.py,sha256=HZlDk-rMhEVpMdC0Eylg7a8AQXbsA73ZkiC2qOO5cL0,12187
|
|
172
179
|
mat3ra/esse/models/materials_category_components/entities/core/zero_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
173
180
|
mat3ra/esse/models/materials_category_components/entities/core/zero_dimensional/atom.py,sha256=3WX1b139aRToS55r7jWHCTETfXsMcM1CdJ2aqpnUZ_Y,1957
|
|
174
181
|
mat3ra/esse/models/materials_category_components/entities/core/zero_dimensional/vacancy.py,sha256=HQvsRbEAvwebozf-6AvCQBsbqo_6lwMWrBOevpNPnmc,479
|
|
175
182
|
mat3ra/esse/models/materials_category_components/entities/reusable/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
176
183
|
mat3ra/esse/models/materials_category_components/entities/reusable/one_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
177
184
|
mat3ra/esse/models/materials_category_components/entities/reusable/one_dimensional/crystal_lattice_base.py,sha256=wwUKYpZAb1tJh6-d8rWudAjmp5mF-gR89wws7nLa488,12064
|
|
178
|
-
mat3ra/esse/models/materials_category_components/entities/reusable/one_dimensional/crystal_lattice_lines.py,sha256=
|
|
179
|
-
mat3ra/esse/models/materials_category_components/entities/reusable/one_dimensional/crystal_lattice_lines_unique_repeated.py,sha256=
|
|
185
|
+
mat3ra/esse/models/materials_category_components/entities/reusable/one_dimensional/crystal_lattice_lines.py,sha256=KBb--bfznqBbnNBKMku8YT5ywz1YDrzugcWpdCgcOwI,12248
|
|
186
|
+
mat3ra/esse/models/materials_category_components/entities/reusable/one_dimensional/crystal_lattice_lines_unique_repeated.py,sha256=n_mJ8EZYnHftEQKu_hiHEAyoi6f3hKqMnkqxSntOLr4,15408
|
|
180
187
|
mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
181
|
-
mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/crystal_lattice_base.py,sha256=
|
|
188
|
+
mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/crystal_lattice_base.py,sha256=1D8XRl2M4Ilvb4zap4x1k84Pa93WeXcLTChjPDlF6NM,12072
|
|
182
189
|
mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/repetitions.py,sha256=t4qqfe4omBUSnrRFGgBjO15HwZtSEpNzs3GXrdHWZtw,802
|
|
183
|
-
mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_non_uniform.py,sha256=
|
|
184
|
-
mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_uniform.py,sha256=
|
|
185
|
-
mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/supercell.py,sha256=
|
|
190
|
+
mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_non_uniform.py,sha256=Q9M0QNb_IbxPhoU84zglubGkmM0Uqp7NWBvLxvzjeic,12249
|
|
191
|
+
mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_uniform.py,sha256=u2hMmZotYnY0lrqEfg6U1dr1YaD9341HwTwCu2kAIOc,12078
|
|
192
|
+
mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/supercell.py,sha256=u0A4w37ffY7_TD4g34xvZIFJrFFiwdxEhP0HjS6hfso,12199
|
|
186
193
|
mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
187
194
|
mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/atomic_layers.py,sha256=-HFh1fnbDB-g3ImfZPL17MFI6bp8CfCmUO13xeX3WIQ,14487
|
|
188
195
|
mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/atomic_layers_unique.py,sha256=03j_Oi4mKrTx5k5xu-XE3HSt9GOBh0g5cJ-OX0sDcV4,14508
|
|
189
196
|
mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/atomic_layers_unique_repeated.py,sha256=8fg-uAnNQZUWS2ohE0cKstoJ2mbN34jm1iXrI4FsEAs,14639
|
|
190
|
-
mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/crystal_lattice_planes.py,sha256=
|
|
191
|
-
mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/slab_stack_configuration.py,sha256=
|
|
197
|
+
mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/crystal_lattice_planes.py,sha256=i2b_r4sDJAXJeW1ei_pW-fmh5-GCKrEt69KjLr4brSo,12270
|
|
198
|
+
mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/slab_stack_configuration.py,sha256=nVqZ5asSQnc9IckgKRnBDoiM1wPas1Wr_T78VpY-M8o,34747
|
|
192
199
|
mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/slab_unit_cell.py,sha256=kO8vyBXFcXzMB-RH-Y5KKJHlIhj4-1pQ3447PDZxDMM,24464
|
|
193
200
|
mat3ra/esse/models/materials_category_components/operations/core/combinations/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
194
201
|
mat3ra/esse/models/materials_category_components/operations/core/combinations/enums.py,sha256=4IGswkEqNbfL-KM4jUG4Sb2GUWv9HwLu6onoPoQbB1I,292
|
|
@@ -196,7 +203,7 @@ mat3ra/esse/models/materials_category_components/operations/core/combinations/me
|
|
|
196
203
|
mat3ra/esse/models/materials_category_components/operations/core/combinations/stack.py,sha256=p3pdL7qhxTKCfosOaZMw2q4OC4MkSZhEnAh0z9XcKV0,806
|
|
197
204
|
mat3ra/esse/models/materials_category_components/operations/core/combinations/stack_component.py,sha256=JMxOvdKjNolVy1JHQF75bkpKDYM4iYHB058h0JmqE5c,21523
|
|
198
205
|
mat3ra/esse/models/materials_category_components/operations/core/modifications/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
199
|
-
mat3ra/esse/models/materials_category_components/operations/core/modifications/perturb.py,sha256=
|
|
206
|
+
mat3ra/esse/models/materials_category_components/operations/core/modifications/perturb.py,sha256=5eclBUGTfojuEJEH-BBznNo3XnCe6ZTdVcl4DdwN8sU,12036
|
|
200
207
|
mat3ra/esse/models/materials_category_components/operations/core/modifications/repeat.py,sha256=G0pT_vKMo3C9GnbRhGiDEJNDqbeDe_oJBl3WrnhUXEk,833
|
|
201
208
|
mat3ra/esse/models/materials_category_components/operations/core/modifications/strain.py,sha256=-ofQnUtBVVf-AjO7h2Gc15qGFR6GF8P5x0s0lFkrSiw,577
|
|
202
209
|
mat3ra/esse/models/method/__init__.py,sha256=KErSMWtloFyYMkQVa8lWT-fox0LgnDD3395K9aLbNNY,668
|
|
@@ -311,9 +318,9 @@ mat3ra/esse/models/methods_directory/physical/ao/dunning.py,sha256=XALpYNjeztKPY
|
|
|
311
318
|
mat3ra/esse/models/methods_directory/physical/ao/enum_options.py,sha256=f2FIx6R_zTNWLM2ADlr4WOW7C8MXqxO7TR2CfsoW7WM,255
|
|
312
319
|
mat3ra/esse/models/methods_directory/physical/ao/other.py,sha256=-Rrf-6ZyKFciw9a9lURlzDZuk-86t3wbOxodh4PRdLk,2870
|
|
313
320
|
mat3ra/esse/models/methods_directory/physical/ao/pople.py,sha256=k9e2xkCQ7bLANaAqhMT5-enRyD4y9KeJ9KLVNTj2ffU,2692
|
|
314
|
-
mat3ra/esse/models/methods_directory/physical/psp/__init__.py,sha256=
|
|
315
|
-
mat3ra/esse/models/methods_directory/physical/psp/file.py,sha256=
|
|
316
|
-
mat3ra/esse/models/methods_directory/physical/psp/file_data_item.py,sha256=
|
|
321
|
+
mat3ra/esse/models/methods_directory/physical/psp/__init__.py,sha256=MRggEQQz3jWad4WxUJyfr_NLIAPqGuvFClA_PZLR_Fo,5491
|
|
322
|
+
mat3ra/esse/models/methods_directory/physical/psp/file.py,sha256=qZHsYrTBPU3HF4aq5IwJ77SitLi0-xEp972MXqkSItc,3172
|
|
323
|
+
mat3ra/esse/models/methods_directory/physical/psp/file_data_item.py,sha256=5Cwlctwt18h1GFgf4UUcSHGCUzaaN1xJET8ssqLblW0,2785
|
|
317
324
|
mat3ra/esse/models/methods_directory/physical/psp/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
318
325
|
mat3ra/esse/models/methods_directory/physical/psp/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e/g.py,sha256=uiN1GsD9dGzZoTghN6hhdA8m3fyBbvbXZH8YYAkjUb0,646
|
|
319
326
|
mat3ra/esse/models/methods_directory/physical/psp/file/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
@@ -376,57 +383,63 @@ mat3ra/esse/models/models_directory/legacy/dft.py,sha256=4S3t0S0Mbj1Vo2QqfZMJO3S
|
|
|
376
383
|
mat3ra/esse/models/models_directory/legacy/ml.py,sha256=QRKfPsxElrbdDBLMCzcKtQ8dMqwes3IqiI4udyKGjJ0,1112
|
|
377
384
|
mat3ra/esse/models/models_directory/legacy/unknown.py,sha256=GxE6kGWW1vv_gRNbatQcvgt0V5RVayroQVLclPs19Lk,1134
|
|
378
385
|
mat3ra/esse/models/properties_directory/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
379
|
-
mat3ra/esse/models/properties_directory/derived_properties.py,sha256=
|
|
386
|
+
mat3ra/esse/models/properties_directory/derived_properties.py,sha256=2XjOZTia6OaZP5yRpzMY0fioN46ywI83W6HQUpnUmiY,3021
|
|
380
387
|
mat3ra/esse/models/properties_directory/electronic_configuration.py,sha256=B0BdTCuUf25tXd2w2kJyLtnfNJwWUnl6tYhXeZvwFjQ,480
|
|
388
|
+
mat3ra/esse/models/properties_directory/jupyter_notebook_endpoint.py,sha256=9dPjWVLvHRLyhcxY8RFDxzxH3j_kS4vDzp5m_phoKEQ,412
|
|
381
389
|
mat3ra/esse/models/properties_directory/elemental/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
382
|
-
mat3ra/esse/models/properties_directory/elemental/atomic_radius.py,sha256=
|
|
383
|
-
mat3ra/esse/models/properties_directory/elemental/electronegativity.py,sha256=
|
|
384
|
-
mat3ra/esse/models/properties_directory/elemental/ionization_potential.py,sha256=
|
|
390
|
+
mat3ra/esse/models/properties_directory/elemental/atomic_radius.py,sha256=zEMYLGaTB2no4arsVFI4RR2shHppyqNV1uJGVqpP8yU,574
|
|
391
|
+
mat3ra/esse/models/properties_directory/elemental/electronegativity.py,sha256=UIvxYE9SNZEsYyg4lGqmBa4oQHfL8DJjHPdWJ_BmJkU,350
|
|
392
|
+
mat3ra/esse/models/properties_directory/elemental/ionization_potential.py,sha256=7D6ZcMvUEZd-DjTxXu5fDk7pjHbWXSlwj507XMxJnsw,558
|
|
385
393
|
mat3ra/esse/models/properties_directory/non_scalar/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
386
|
-
mat3ra/esse/models/properties_directory/non_scalar/average_potential_profile.py,sha256=
|
|
387
|
-
mat3ra/esse/models/properties_directory/non_scalar/band_gaps.py,sha256=
|
|
388
|
-
mat3ra/esse/models/properties_directory/non_scalar/band_structure.py,sha256
|
|
389
|
-
mat3ra/esse/models/properties_directory/non_scalar/charge_density_profile.py,sha256=
|
|
390
|
-
mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py,sha256=
|
|
391
|
-
mat3ra/esse/models/properties_directory/non_scalar/dielectric_tensor.py,sha256=
|
|
392
|
-
mat3ra/esse/models/properties_directory/non_scalar/file_content.py,sha256=
|
|
393
|
-
mat3ra/esse/models/properties_directory/non_scalar/
|
|
394
|
-
mat3ra/esse/models/properties_directory/non_scalar/
|
|
395
|
-
mat3ra/esse/models/properties_directory/non_scalar/
|
|
396
|
-
mat3ra/esse/models/properties_directory/non_scalar/
|
|
397
|
-
mat3ra/esse/models/properties_directory/non_scalar/
|
|
398
|
-
mat3ra/esse/models/properties_directory/non_scalar/
|
|
399
|
-
mat3ra/esse/models/properties_directory/non_scalar/
|
|
400
|
-
mat3ra/esse/models/properties_directory/non_scalar/
|
|
401
|
-
mat3ra/esse/models/properties_directory/non_scalar/
|
|
402
|
-
mat3ra/esse/models/properties_directory/non_scalar/
|
|
394
|
+
mat3ra/esse/models/properties_directory/non_scalar/average_potential_profile.py,sha256=wflrLoKsdogMvsXeV41AHuWCgi_Ai-Bn11WmIZGrWgA,1498
|
|
395
|
+
mat3ra/esse/models/properties_directory/non_scalar/band_gaps.py,sha256=4t748CYK7VT8-JBrR2Nch8MxHGqsc6BPOA6Yu-CFAec,1808
|
|
396
|
+
mat3ra/esse/models/properties_directory/non_scalar/band_structure.py,sha256=KO9T7OBcuYAFUmEgg8bacAv9cZF-YX44Xqwe4Sk4F7g,1475
|
|
397
|
+
mat3ra/esse/models/properties_directory/non_scalar/charge_density_profile.py,sha256=i9DNVqg1dd9JF8ji8c6bp3QHjjxvUOSGt6NofPX7J9o,1197
|
|
398
|
+
mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py,sha256=zICjslDvkDNkN9gkvKea7Iys-b756lXuow39Wf1fkKc,1931
|
|
399
|
+
mat3ra/esse/models/properties_directory/non_scalar/dielectric_tensor.py,sha256=_mA_r2UAYrVOo0-bNjvH-1NHk0_CQSoBJ4E63s9oeTk,796
|
|
400
|
+
mat3ra/esse/models/properties_directory/non_scalar/file_content.py,sha256=LtApIdDPdWMWdKxThYccEzAuk-MxdJ8JqPKwWwbjF-I,1426
|
|
401
|
+
mat3ra/esse/models/properties_directory/non_scalar/final_structure.py,sha256=PWYYnHV-qQ-8CwVSnO6_LMDgKYSMQQ_5I1UTJ1LmnHM,419
|
|
402
|
+
mat3ra/esse/models/properties_directory/non_scalar/hubbard_u.py,sha256=Ph3uhrFREqbuqyQIU35D6PJfCTxz3ofAsldV5N4PzYM,821
|
|
403
|
+
mat3ra/esse/models/properties_directory/non_scalar/hubbard_v.py,sha256=7MviUNQj-L5tb72cDfropb_tqdHkrRNEKK5Ymz01rhg,1202
|
|
404
|
+
mat3ra/esse/models/properties_directory/non_scalar/hubbard_v_nn.py,sha256=79F0PbL9fp2SyWwV9YK5z6ByvXgvTZcPT2_oNeVZ1-E,1213
|
|
405
|
+
mat3ra/esse/models/properties_directory/non_scalar/is_relaxed.py,sha256=U8l7iXm0rWe9bU6OC0nfKC1TpBGfVElFaLvsxYgHJ5c,395
|
|
406
|
+
mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py,sha256=VIqamu8LATOA42IUXgtHRAsdUWitLoxicNx_yzH27C0,1288
|
|
407
|
+
mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py,sha256=ua9SlHKjt0OJYwB7HjWfGjQNw2NgB62Ep1vftIA6F9E,1307
|
|
408
|
+
mat3ra/esse/models/properties_directory/non_scalar/potential_profile.py,sha256=VDasf-9dajt3cAG1kUiaoJ1knnubOL1JdC_8VUc9rR4,1286
|
|
409
|
+
mat3ra/esse/models/properties_directory/non_scalar/reaction_energy_profile.py,sha256=kNQNrlGOEmFAGb-RQ6637Jp5JBUCJR9i09-xe6N7JEI,1323
|
|
410
|
+
mat3ra/esse/models/properties_directory/non_scalar/stress_tensor.py,sha256=v-WcirmVNOqeLsIIjYOsE_t6s31QvhKWwvkwqb903Ho,697
|
|
411
|
+
mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py,sha256=dvY67hm0PfZhxfrVKWWdkmefNeCUfwhaj6z8TsAgG9k,4726
|
|
412
|
+
mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py,sha256=IQColjHIzuCMc4i_E0V3R0L1I2nufPgZ5TJxAMseAT4,1466
|
|
413
|
+
mat3ra/esse/models/properties_directory/non_scalar/workflow.py,sha256=w-7iGg4kUNMstoqP-xPgWpq-zB0gc58HW0tk_3F-eYs,60058
|
|
414
|
+
mat3ra/esse/models/properties_directory/reusable/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
415
|
+
mat3ra/esse/models/properties_directory/reusable/hubbard_parameters.py,sha256=mD3oug39UqtSJZnwRLgffU4X9xYmk5CMIvIPhKGW3RI,1145
|
|
403
416
|
mat3ra/esse/models/properties_directory/scalar/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
404
|
-
mat3ra/esse/models/properties_directory/scalar/electron_affinity.py,sha256=
|
|
405
|
-
mat3ra/esse/models/properties_directory/scalar/fermi_energy.py,sha256=
|
|
406
|
-
mat3ra/esse/models/properties_directory/scalar/formation_energy.py,sha256=
|
|
407
|
-
mat3ra/esse/models/properties_directory/scalar/ionization_potential.py,sha256=
|
|
408
|
-
mat3ra/esse/models/properties_directory/scalar/pressure.py,sha256=
|
|
409
|
-
mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py,sha256=
|
|
410
|
-
mat3ra/esse/models/properties_directory/scalar/surface_energy.py,sha256=
|
|
411
|
-
mat3ra/esse/models/properties_directory/scalar/total_energy.py,sha256=
|
|
412
|
-
mat3ra/esse/models/properties_directory/scalar/total_force.py,sha256=
|
|
413
|
-
mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py,sha256=
|
|
414
|
-
mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py,sha256=
|
|
417
|
+
mat3ra/esse/models/properties_directory/scalar/electron_affinity.py,sha256=YrmR2Ue4rGREztQlTP59PLscq8NMrc46S_YQ9S-Yrdw,622
|
|
418
|
+
mat3ra/esse/models/properties_directory/scalar/fermi_energy.py,sha256=X4jxfTWetjv6YgHZuCF2vQndbbhCryb9ML1itFBhYpc,602
|
|
419
|
+
mat3ra/esse/models/properties_directory/scalar/formation_energy.py,sha256=kXxLU-sRNKAF5pnLqJXCJPwr1NaYcbqnjpOXhX6sCCc,618
|
|
420
|
+
mat3ra/esse/models/properties_directory/scalar/ionization_potential.py,sha256=JsMYxhtdmxWvu0CZvvOoxAgFuLy-7_3WEkVRJsWUNDs,640
|
|
421
|
+
mat3ra/esse/models/properties_directory/scalar/pressure.py,sha256=hkwz8YNasVooSDhRt4n8CO7gnQ-TX7uvOomijlQqMUc,395
|
|
422
|
+
mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py,sha256=VGZbVWt-6k0ROczVDaeteESL1pvzM_s-ByBCwu2Q1nI,645
|
|
423
|
+
mat3ra/esse/models/properties_directory/scalar/surface_energy.py,sha256=1fwr7xtVbHhC-MeSbjJvtK-5-jQJWClnU3frAZ19hB8,610
|
|
424
|
+
mat3ra/esse/models/properties_directory/scalar/total_energy.py,sha256=aIPQJ0s9Dq24dvYi67D47nT7onljXty9iWcz8SQ17eI,602
|
|
425
|
+
mat3ra/esse/models/properties_directory/scalar/total_force.py,sha256=1tk-bv1a3LsdP7JOg1BnDGMx2KMLEC7N1D59GKI45OQ,527
|
|
426
|
+
mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py,sha256=x0or78NtsVVKJacPyom9kXK4gB2qY6qOHYBo9yFDgHY,629
|
|
427
|
+
mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py,sha256=hyJ6Sy3rzW_pu9R2n3X0nck9VLXkF0iLEh6_K9fjw_g,621
|
|
415
428
|
mat3ra/esse/models/properties_directory/structural/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
416
|
-
mat3ra/esse/models/properties_directory/structural/atomic_forces.py,sha256=
|
|
429
|
+
mat3ra/esse/models/properties_directory/structural/atomic_forces.py,sha256=V2gr4Da1Fw9xTiUGJmAXtVDnuenQTcCdDTwBOmNfe-Q,859
|
|
417
430
|
mat3ra/esse/models/properties_directory/structural/density.py,sha256=5DnHGdXovz-hGHM8EZBzeWM5s8_oaTZ16V1_p-UfvNw,439
|
|
418
431
|
mat3ra/esse/models/properties_directory/structural/elemental_ratio.py,sha256=wgP50mDBnbT-T7jRruh3hrA05ramINncy2bz_e2kTiI,500
|
|
419
432
|
mat3ra/esse/models/properties_directory/structural/inchi.py,sha256=xCi4OEhXn8ie3zzA2W8fIM3lXNMxgk75tiZYFoQs1us,366
|
|
420
433
|
mat3ra/esse/models/properties_directory/structural/inchi_key.py,sha256=bxthmbu3SOeuloWXgFnIOdKtf4cokXVIP_y8Ya9Pe08,381
|
|
421
|
-
mat3ra/esse/models/properties_directory/structural/magnetic_moments.py,sha256=
|
|
422
|
-
mat3ra/esse/models/properties_directory/structural/molecular_pattern.py,sha256=
|
|
434
|
+
mat3ra/esse/models/properties_directory/structural/magnetic_moments.py,sha256=PSpZdowrD-0wxtPmamMr4tvw0PKTH9Nq1f9lDECzPyM,733
|
|
435
|
+
mat3ra/esse/models/properties_directory/structural/molecular_pattern.py,sha256=MW73R4u0myEZg1JH1XXhjqAjZOvRXFxZr3mu1PuT1oc,1742
|
|
423
436
|
mat3ra/esse/models/properties_directory/structural/p_norm.py,sha256=A6EJUYY6dzGH7Uq1jTCLj42ePRPSsg7pE4dOL3bxQmA,445
|
|
424
437
|
mat3ra/esse/models/properties_directory/structural/symmetry.py,sha256=aJLmfkhOBRXsJRUacU49465EEa0P_rRU8Dq8lDRFjO8,840
|
|
425
438
|
mat3ra/esse/models/properties_directory/structural/volume.py,sha256=nxXXQKaknwfKp43tslUza_lpa2BPpLrrIvwoq4C1ca8,443
|
|
426
439
|
mat3ra/esse/models/properties_directory/structural/basis/__init__.py,sha256=jwKMVnUQBhnlbl4whizh_Rid7Jyqh_FjdvE0RZE1bpw,3170
|
|
427
440
|
mat3ra/esse/models/properties_directory/structural/basis/atomic_constraint.py,sha256=MJfolJSgvQ4zPWZi36Y-9fUUkfSnVBKW0HCDhxsEfHM,441
|
|
428
441
|
mat3ra/esse/models/properties_directory/structural/basis/atomic_constraints.py,sha256=GCngLkD-6_Xkn6WL0vqj5r14vJrnT-JE68TWMwCDAso,660
|
|
429
|
-
mat3ra/esse/models/properties_directory/structural/basis/atomic_constraints_property.py,sha256=
|
|
442
|
+
mat3ra/esse/models/properties_directory/structural/basis/atomic_constraints_property.py,sha256=rLa-uGDhaqXl594dWo-JCZ4y_lL4IZ7p9p7VHRDaexA,741
|
|
430
443
|
mat3ra/esse/models/properties_directory/structural/basis/atomic_coordinate.py,sha256=JTRnk_xltFjOg-pS8-pS_h6WPL60FrY4t2HJyqJ2zaA,466
|
|
431
444
|
mat3ra/esse/models/properties_directory/structural/basis/atomic_coordinates.py,sha256=m0aJfvZ2j_H2zzB-dt5jr0e9V-tT9t4DUAA6klL4jtE,685
|
|
432
445
|
mat3ra/esse/models/properties_directory/structural/basis/atomic_element.py,sha256=d03qfKF6W9tacxYSvtpTJSY3KSRRNtSA1zsXzd6HpOg,2128
|
|
@@ -434,33 +447,39 @@ mat3ra/esse/models/properties_directory/structural/basis/atomic_elements.py,sha2
|
|
|
434
447
|
mat3ra/esse/models/properties_directory/structural/basis/atomic_label.py,sha256=njbXBHakrcBeA5sAN-rd5vKFln-9UmSFcP52o-UiEYs,425
|
|
435
448
|
mat3ra/esse/models/properties_directory/structural/basis/atomic_labels.py,sha256=Iuug5ZGmvd0rGOedso9uJX-qRTR64XXeYiMjmMpLWIM,632
|
|
436
449
|
mat3ra/esse/models/properties_directory/structural/basis/bonds.py,sha256=cToJoqVarNjMvpFfAYFUpQ0dYUFFeIToj6sDXk3pbkA,929
|
|
450
|
+
mat3ra/esse/models/properties_directory/structural/basis/boundary_conditions.py,sha256=1-LIC0Ix6R6WE3K7Jdr8HGF-mBU_KqN935jn_MNG1NM,641
|
|
451
|
+
mat3ra/esse/models/properties_directory/structural/basis/predicted_properties.py,sha256=IbW5UXY35Bn_mneDYkpeTxV3kTt_JKpN5aaGOopJLnU,2006
|
|
437
452
|
mat3ra/esse/models/properties_directory/structural/basis/units_enum.py,sha256=UXeF7m08cdRo2GEsA7dXXwvLjh4Fq8DpWBlM29kUaQ4,266
|
|
438
453
|
mat3ra/esse/models/properties_directory/structural/lattice/__init__.py,sha256=J9gMT0etIOeoJXm0U4ugB9q-zYfI27XNmOnEyqv55YY,2343
|
|
439
454
|
mat3ra/esse/models/properties_directory/structural/lattice/lattice_vectors.py,sha256=NOVgEB8gfdLGewqFk7V6wwT4VILyKeiOIp4fIAcdCrw,655
|
|
440
455
|
mat3ra/esse/models/properties_directory/structural/lattice/type_enum.py,sha256=gZtoI5CHbSUtr9W-PqWkDBwAN-4eNCRKuEW41ZYOc-Q,448
|
|
441
456
|
mat3ra/esse/models/properties_directory/structural/lattice/type_extended_enum.py,sha256=jEw00CIiKdPSxpefwR0rwqPkNuIZ1Uq56emjvfQbMvo,725
|
|
442
|
-
mat3ra/esse/models/properties_directory/structural/lattice/units/__init__.py,sha256=
|
|
457
|
+
mat3ra/esse/models/properties_directory/structural/lattice/units/__init__.py,sha256=3EGGeYcxAzhUrf4jqbSIPZLriaoj67dfNxlFXU03gT4,645
|
|
443
458
|
mat3ra/esse/models/properties_directory/structural/lattice/units/angle_enum.py,sha256=MZSdGecIOTYmE5yXxIueTXmDlR6o1vOgeRUw6jsQJho,273
|
|
444
459
|
mat3ra/esse/models/properties_directory/structural/lattice/units/length_enum.py,sha256=lGVe1Z0oYZAcTbbExiv4zdD4Gcn0dELEa7CkiCivojY,275
|
|
445
460
|
mat3ra/esse/models/properties_directory/structural/lattice/vectors/__init__.py,sha256=jgkDa6RL1UQStFtJ-e8X3stw4PlDy0y4m49aHYZJJvY,834
|
|
446
461
|
mat3ra/esse/models/properties_directory/structural/lattice/vectors/units_enum.py,sha256=B5--gwj35fcx5I7_PrcTu9KkEFGIqq8wmIjbM7R_yOU,277
|
|
447
462
|
mat3ra/esse/models/properties_directory/structural/patterns/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
448
|
-
mat3ra/esse/models/properties_directory/structural/patterns/functional_group.py,sha256=
|
|
449
|
-
mat3ra/esse/models/properties_directory/structural/patterns/ring.py,sha256=
|
|
450
|
-
mat3ra/esse/models/properties_directory/structural/patterns/special_bond.py,sha256=
|
|
463
|
+
mat3ra/esse/models/properties_directory/structural/patterns/functional_group.py,sha256=U2oULXwCu91PcwP0405yBfL13PM4nLNKpBqgPEk7GOg,902
|
|
464
|
+
mat3ra/esse/models/properties_directory/structural/patterns/ring.py,sha256=REsmdtHn2Szpn9Lk3Ve-L4sweIhv1KKo9AVSe9XLnQM,732
|
|
465
|
+
mat3ra/esse/models/properties_directory/structural/patterns/special_bond.py,sha256=165dzQtIQ9-pxdK3HcpGFXbJINud4imaCyTHcevkP_0,725
|
|
451
466
|
mat3ra/esse/models/properties_directory/workflow/convergence/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
452
|
-
mat3ra/esse/models/properties_directory/workflow/convergence/electronic.py,sha256=
|
|
453
|
-
mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py,sha256=
|
|
467
|
+
mat3ra/esse/models/properties_directory/workflow/convergence/electronic.py,sha256=J38uUNkPnBM0Kqpx0SulxGMMJS7evAbCqO8J9mZY0Mk,507
|
|
468
|
+
mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py,sha256=bakHi5vYdrMt49lTD_zJFQoiPrjD2BR2sA_AzOp64jw,1265
|
|
454
469
|
mat3ra/esse/models/properties_directory/workflow/convergence/kpoint.py,sha256=zQi62_9dhbhFfN-iaqvzftnuYWG8-iVKmVYIDID0v8w,915
|
|
455
470
|
mat3ra/esse/models/property/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
456
|
-
mat3ra/esse/models/property/base.py,sha256=
|
|
457
|
-
mat3ra/esse/models/property/
|
|
458
|
-
mat3ra/esse/models/property/
|
|
459
|
-
mat3ra/esse/models/property/
|
|
471
|
+
mat3ra/esse/models/property/base.py,sha256=xbAwdM8snWrpQijM8e5nfybKnrDm4oKZCjA44VYooM0,34647
|
|
472
|
+
mat3ra/esse/models/property/holder.py,sha256=KOGv4PgdX-SWEtKUpoMP0AWjHwlhUr8grucmev9dyP8,88804
|
|
473
|
+
mat3ra/esse/models/property/meta_holder.py,sha256=SNq_lnEiLL059XaYpauXI-ONVNitWlj6BbSU36zVCHA,3404
|
|
474
|
+
mat3ra/esse/models/property/proto_holder.py,sha256=k_xjH74r4PWnhiNEnEb6sqlzeuFgQaM_YNdASYLZlWQ,1837
|
|
475
|
+
mat3ra/esse/models/property/raw.py,sha256=NomAKqlTylkDD4TZ2GYHJ4MobfSDlx29rmjNxppY8Ak,5113
|
|
476
|
+
mat3ra/esse/models/property/source.py,sha256=abwtIqnljrwrORhOEdasdBGgDornYdQwhb7mZ4nMUww,3907
|
|
460
477
|
mat3ra/esse/models/property/base/The_source_of_a_property/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
461
478
|
mat3ra/esse/models/property/base/The_source_of_a_property/field_This_could_be_an_article__a_simulation_on_Exabyte__an_external_simulation__etc.py,sha256=Ri6Ljt0BIssI8U6wT-84HYlxC3NkRHPrkrAPSy0qPt8,826
|
|
462
479
|
mat3ra/esse/models/property/meta/The_source_of_a_property/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
463
480
|
mat3ra/esse/models/property/meta/The_source_of_a_property/field_This_could_be_an_article__a_simulation_on_Exabyte__an_external_simulation__etc.py,sha256=APGwKbjHU1X83PXkfG8w7zEwQLdD-2u8qZX7wk5L5k0,826
|
|
481
|
+
mat3ra/esse/models/property/meta_holder/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
482
|
+
mat3ra/esse/models/property/meta_holder/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e/g.py,sha256=N8y6Zihb-xbhQigmqXZk9ywgjnpRrqJ_ml_fQ7-P3vc,636
|
|
464
483
|
mat3ra/esse/models/property/raw/The_source_of_a_property/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
465
484
|
mat3ra/esse/models/property/raw/The_source_of_a_property/field_This_could_be_an_article__a_simulation_on_Exabyte__an_external_simulation__etc.py,sha256=_d4Ujayas-Ehblbfoq8ooSPTou9ve_3de2gGFXFKwHw,825
|
|
466
485
|
mat3ra/esse/models/property/source/The_source_of_a_property/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
@@ -519,13 +538,13 @@ mat3ra/esse/models/system/status.py,sha256=q1j3BgkOZtTBEVf5-S-4xMteCfpZj23OeXTvk
|
|
|
519
538
|
mat3ra/esse/models/system/tags.py,sha256=47rtLMx0uXWXt7SgC1oo_ULTFjAKNy6e-z5dRjA6BbE,297
|
|
520
539
|
mat3ra/esse/models/system/timestampable.py,sha256=K_OjETeZlGTis8AHWbUDsWfElwdUVOmgb6rd3V01B90,515
|
|
521
540
|
mat3ra/esse/models/system/use_values.py,sha256=NUupiTBXAV4o0ChySaGAgxIyMvMEoqnb3MUGN1MgSo8,264
|
|
522
|
-
mat3ra/esse/models/workflow/__init__.py,sha256=
|
|
541
|
+
mat3ra/esse/models/workflow/__init__.py,sha256=ZT_skA6pxvH8LTiiw_La2oiN10bHsJQSyYFWX0HorT8,59941
|
|
523
542
|
mat3ra/esse/models/workflow/base.py,sha256=7dDTOLX9JmBJlimUj8UlCrmKHWNuaOMiQpHGEuS0-IY,1252
|
|
524
|
-
mat3ra/esse/models/workflow/base_flow.py,sha256=
|
|
543
|
+
mat3ra/esse/models/workflow/base_flow.py,sha256=tgHhSr3dKpKlY03w4I4Rn6dLQRHzGGYadioA-TstI9k,6070
|
|
525
544
|
mat3ra/esse/models/workflow/scope.py,sha256=d_JktEhzg7Ls9LN01cT9kr-Lyv0i9OKZFm6grADKQN4,319
|
|
526
|
-
mat3ra/esse/models/workflow/subworkflow/__init__.py,sha256=
|
|
527
|
-
mat3ra/esse/models/workflow/subworkflow/unit.py,sha256=
|
|
528
|
-
mat3ra/esse/models/workflow/unit/__init__.py,sha256=
|
|
545
|
+
mat3ra/esse/models/workflow/subworkflow/__init__.py,sha256=RzlpJM4sZbZY2OLzLlXF5QQmBsf4JWwbKE-19TnQk7Y,32144
|
|
546
|
+
mat3ra/esse/models/workflow/subworkflow/unit.py,sha256=Kzm18dn1CVhITuL31hTzecxSJ51hSE_Lwzq8eyae2cg,25121
|
|
547
|
+
mat3ra/esse/models/workflow/unit/__init__.py,sha256=70imG1cT-NuvrGZSce5ZJRwMDylSwVXxH1xjRqVW7Jk,30161
|
|
529
548
|
mat3ra/esse/models/workflow/unit/assertion.py,sha256=xcHjoNLKKIVThQC0E_uLX8xgcFlRocEYmJm4sXpI-kU,2808
|
|
530
549
|
mat3ra/esse/models/workflow/unit/assignment.py,sha256=iq24Xmh2vNqU2iKQRkhGhckNfT_W0CQU1e_AdFbenj8,3347
|
|
531
550
|
mat3ra/esse/models/workflow/unit/base.py,sha256=FRFFm07xLOwsxmD8ycG_Lc2kMHNMVnmy5oPtvUG6j_o,2589
|
|
@@ -542,18 +561,18 @@ mat3ra/esse/models/workflow/unit/input/_inputItemId.py,sha256=Fz8Nad2oYiSWv4_r_u
|
|
|
542
561
|
mat3ra/esse/models/workflow/unit/input/_inputItemScope.py,sha256=fTCCX3tnERlU7mUd24ufRor3ZEFUKyaRZ-noroZ_KF4,392
|
|
543
562
|
mat3ra/esse/models/workflow/unit/input/_map_input/__init__.py,sha256=EWese8D4VOvFbvTGxPS19Iw0RGu9uVo9r1VddFdYWnc,469
|
|
544
563
|
mat3ra/esse/models/workflow/unit/input/_map_input/values.py,sha256=pLWRsTkDR2-wM2IXFzb1r--x4O4k6-FeNrHNtVSO9mM,281
|
|
545
|
-
mat3ra/esse/models/workflow/unit/io/__init__.py,sha256=
|
|
564
|
+
mat3ra/esse/models/workflow/unit/io/__init__.py,sha256=C_z_VJb6KNOJ1n8C-VyJCO6ll61gWRQ6NzaUZmIokE4,5079
|
|
546
565
|
mat3ra/esse/models/workflow/unit/io/api.py,sha256=yr6o-UJfQW_LmyIaP2yKfcAdWdv2dcFo5d-sPT67uR0,575
|
|
547
|
-
mat3ra/esse/models/workflow/unit/io/db.py,sha256=
|
|
548
|
-
mat3ra/esse/models/workflow/unit/io/object_storage.py,sha256=
|
|
566
|
+
mat3ra/esse/models/workflow/unit/io/db.py,sha256=byBLM6qnqhF6-BsVN5E2uP8JTQ3Oya_6rCo75kkM_Ik,916
|
|
567
|
+
mat3ra/esse/models/workflow/unit/io/object_storage.py,sha256=iLpsggyl8WLzQKGdYVkRsbA_BGWB444p9ToRn0av15w,1464
|
|
549
568
|
mat3ra/esse/models/workflow/unit/runtime/__init__.py,sha256=Khec_bQt22_UudNLJljxWJHuNkGBdUPiOQK0weEBcZ4,78
|
|
550
569
|
mat3ra/esse/models/workflow/unit/runtime/_runtime_item_full_object.py,sha256=GdGNhCra_xz-txbXZhGAEq6RAstMrTKtts7EzfEKI8s,340
|
|
551
570
|
mat3ra/esse/models/workflow/unit/runtime/_runtime_item_name_object.py,sha256=CIbonjbdKKKMtCZ5EmRzIrPYJbDwEHS_gpAVQj00oUY,304
|
|
552
571
|
mat3ra/esse/models/workflow/unit/runtime/_runtime_item_string.py,sha256=VouM6ETdIKTiktSTeEpP2pdHZuYHwHrir4W5TLoO_sE,354
|
|
553
572
|
mat3ra/esse/models/workflow/unit/runtime/runtime_item.py,sha256=PujG7jcL8RDok9RSJiEKEB85-uGLoimVnK2k7gqyf2I,471
|
|
554
573
|
mat3ra/esse/models/workflow/unit/runtime/runtime_items.py,sha256=Yi53LFKBWqx8oGA1Po38ulfSy-QaBP38VwWk45Q7ZJQ,943
|
|
555
|
-
mat3ra_esse-2025.8.
|
|
556
|
-
mat3ra_esse-2025.8.
|
|
557
|
-
mat3ra_esse-2025.8.
|
|
558
|
-
mat3ra_esse-2025.8.
|
|
559
|
-
mat3ra_esse-2025.8.
|
|
574
|
+
mat3ra_esse-2025.10.8.post0.dist-info/licenses/LICENSE.md,sha256=CBGo1CDw-8EWCk7x9HOiF-OShdnHY6j__TjFyZPpQME,563
|
|
575
|
+
mat3ra_esse-2025.10.8.post0.dist-info/METADATA,sha256=g37PiWMI2bvPT8F12ZA3I5y7NrwjPFVXeBbXm44GOjo,9013
|
|
576
|
+
mat3ra_esse-2025.10.8.post0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
577
|
+
mat3ra_esse-2025.10.8.post0.dist-info/top_level.txt,sha256=GizAtvIqqIcCWShlThl_mgig_bZs_LFyqVah6wrGHIs,7
|
|
578
|
+
mat3ra_esse-2025.10.8.post0.dist-info/RECORD,,
|