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.

Files changed (123) hide show
  1. mat3ra/esse/data/examples.py +1 -1
  2. mat3ra/esse/data/schemas.py +1 -1
  3. mat3ra/esse/models/core/abstract/_2d_data.py +2 -2
  4. mat3ra/esse/models/core/abstract/_2d_plot.py +2 -6
  5. mat3ra/esse/models/core/primitive/_1d_data_series.py +3 -3
  6. mat3ra/esse/models/core/primitive/axis_3d_names_enum.py +13 -0
  7. mat3ra/esse/models/core/reference/__init__.py +8 -8
  8. mat3ra/esse/models/core/reference/exabyte.py +2 -8
  9. mat3ra/esse/models/core/reference/experiment/__init__.py +2 -2
  10. mat3ra/esse/models/core/reusable/coordinate_conditions/__init__.py +1 -78
  11. mat3ra/esse/models/core/reusable/coordinate_conditions/index.py +80 -0
  12. mat3ra/esse/models/core/reusable/hubbard_parameters.py +48 -0
  13. mat3ra/esse/models/core/reusable/kpoint.py +16 -0
  14. mat3ra/esse/models/core/reusable/repetition.py +14 -0
  15. mat3ra/esse/models/definitions/material.py +13 -0
  16. mat3ra/esse/models/element.py +10 -8
  17. mat3ra/esse/models/job/__init__.py +62 -62
  18. mat3ra/esse/models/material/__init__.py +12 -12
  19. mat3ra/esse/models/materials_category/compound_pristine_structures/two_dimensional/interface/configuration.py +80 -80
  20. mat3ra/esse/models/materials_category/defective_structures/one_dimensional/grain_boundary_linear/configuration.py +80 -80
  21. mat3ra/esse/models/materials_category/defective_structures/two_dimensional/adatom/configuration.py +35 -35
  22. mat3ra/esse/models/materials_category/defective_structures/two_dimensional/grain_boundary_planar/configuration.py +80 -80
  23. mat3ra/esse/models/materials_category/defective_structures/two_dimensional/island/configuration.py +53 -53
  24. mat3ra/esse/models/materials_category/defective_structures/two_dimensional/terrace/configuration.py +53 -53
  25. mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/interstitial.py +29 -29
  26. mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/substitutional.py +32 -32
  27. mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/vacancy.py +12 -12
  28. mat3ra/esse/models/materials_category/pristine_structures/three_dimensional/ideal_crystal.py +12 -12
  29. mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/nanoribbon.py +52 -52
  30. mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/nanotape.py +32 -32
  31. mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab.py +32 -32
  32. mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab_strained_supercell.py +32 -32
  33. mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab_strained_supercell_with_gap.py +1151 -0
  34. mat3ra/esse/models/materials_category/processed_structures/two_dimensional/passivation/configuration.py +17 -17
  35. mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/crystal_site.py +8 -8
  36. mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/point_defect_site.py +12 -12
  37. mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/void_region.py +12 -12
  38. mat3ra/esse/models/materials_category_components/entities/core/three_dimensional/crystal.py +8 -8
  39. mat3ra/esse/models/materials_category_components/entities/core/two_dimensional/vacuum.py +12 -12
  40. mat3ra/esse/models/materials_category_components/entities/reusable/one_dimensional/crystal_lattice_lines.py +8 -8
  41. mat3ra/esse/models/materials_category_components/entities/reusable/one_dimensional/crystal_lattice_lines_unique_repeated.py +8 -8
  42. mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/crystal_lattice_base.py +8 -8
  43. mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_non_uniform.py +12 -12
  44. mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_uniform.py +12 -12
  45. mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/supercell.py +12 -12
  46. mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/crystal_lattice_planes.py +8 -8
  47. mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/slab_stack_configuration.py +52 -52
  48. mat3ra/esse/models/materials_category_components/operations/core/modifications/perturb.py +12 -12
  49. mat3ra/esse/models/methods_directory/physical/psp/__init__.py +2 -2
  50. mat3ra/esse/models/methods_directory/physical/psp/file.py +2 -2
  51. mat3ra/esse/models/methods_directory/physical/psp/file_data_item.py +2 -2
  52. mat3ra/esse/models/properties_directory/derived_properties.py +6 -6
  53. mat3ra/esse/models/properties_directory/elemental/atomic_radius.py +1 -1
  54. mat3ra/esse/models/properties_directory/elemental/electronegativity.py +1 -2
  55. mat3ra/esse/models/properties_directory/elemental/ionization_potential.py +3 -4
  56. mat3ra/esse/models/properties_directory/jupyter_notebook_endpoint.py +20 -0
  57. mat3ra/esse/models/properties_directory/non_scalar/average_potential_profile.py +4 -8
  58. mat3ra/esse/models/properties_directory/non_scalar/band_gaps.py +2 -2
  59. mat3ra/esse/models/properties_directory/non_scalar/band_structure.py +5 -9
  60. mat3ra/esse/models/properties_directory/non_scalar/charge_density_profile.py +4 -8
  61. mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py +5 -8
  62. mat3ra/esse/models/properties_directory/non_scalar/dielectric_tensor.py +2 -2
  63. mat3ra/esse/models/properties_directory/non_scalar/file_content.py +2 -2
  64. mat3ra/esse/models/properties_directory/non_scalar/final_structure.py +22 -0
  65. mat3ra/esse/models/properties_directory/non_scalar/hubbard_u.py +4 -4
  66. mat3ra/esse/models/properties_directory/non_scalar/hubbard_v.py +3 -4
  67. mat3ra/esse/models/properties_directory/non_scalar/hubbard_v_nn.py +3 -4
  68. mat3ra/esse/models/properties_directory/non_scalar/is_relaxed.py +22 -0
  69. mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py +10 -14
  70. mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py +10 -14
  71. mat3ra/esse/models/properties_directory/non_scalar/potential_profile.py +8 -12
  72. mat3ra/esse/models/properties_directory/non_scalar/reaction_energy_profile.py +8 -12
  73. mat3ra/esse/models/properties_directory/non_scalar/stress_tensor.py +5 -7
  74. mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py +64 -51
  75. mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py +10 -14
  76. mat3ra/esse/models/properties_directory/non_scalar/workflow.py +2234 -0
  77. mat3ra/esse/models/properties_directory/reusable/__init__.py +3 -0
  78. mat3ra/esse/models/properties_directory/reusable/hubbard_parameters.py +48 -0
  79. mat3ra/esse/models/properties_directory/scalar/electron_affinity.py +1 -1
  80. mat3ra/esse/models/properties_directory/scalar/fermi_energy.py +1 -1
  81. mat3ra/esse/models/properties_directory/scalar/formation_energy.py +1 -1
  82. mat3ra/esse/models/properties_directory/scalar/ionization_potential.py +3 -3
  83. mat3ra/esse/models/properties_directory/scalar/pressure.py +3 -4
  84. mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py +3 -3
  85. mat3ra/esse/models/properties_directory/scalar/surface_energy.py +3 -3
  86. mat3ra/esse/models/properties_directory/scalar/total_energy.py +3 -3
  87. mat3ra/esse/models/properties_directory/scalar/total_force.py +3 -4
  88. mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py +3 -3
  89. mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py +3 -3
  90. mat3ra/esse/models/properties_directory/structural/atomic_forces.py +5 -5
  91. mat3ra/esse/models/properties_directory/structural/basis/atomic_constraints_property.py +3 -3
  92. mat3ra/esse/models/properties_directory/structural/basis/boundary_conditions.py +30 -0
  93. mat3ra/esse/models/properties_directory/structural/basis/predicted_properties.py +82 -0
  94. mat3ra/esse/models/properties_directory/structural/lattice/units/__init__.py +23 -1
  95. mat3ra/esse/models/properties_directory/structural/magnetic_moments.py +5 -5
  96. mat3ra/esse/models/properties_directory/structural/molecular_pattern.py +5 -5
  97. mat3ra/esse/models/properties_directory/structural/patterns/functional_group.py +1 -1
  98. mat3ra/esse/models/properties_directory/structural/patterns/ring.py +1 -1
  99. mat3ra/esse/models/properties_directory/structural/patterns/special_bond.py +1 -1
  100. mat3ra/esse/models/properties_directory/workflow/convergence/electronic.py +4 -4
  101. mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py +6 -6
  102. mat3ra/esse/models/property/base.py +1492 -14
  103. mat3ra/esse/models/property/holder.py +3568 -0
  104. mat3ra/esse/models/property/meta_holder/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e/__init__.py +3 -0
  105. mat3ra/esse/models/property/meta_holder/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e/g.py +31 -0
  106. mat3ra/esse/models/property/meta_holder.py +140 -0
  107. mat3ra/esse/models/property/proto_holder.py +86 -0
  108. mat3ra/esse/models/property/raw.py +27 -11
  109. mat3ra/esse/models/property/source.py +26 -3
  110. mat3ra/esse/models/workflow/__init__.py +54 -54
  111. mat3ra/esse/models/workflow/base_flow.py +4 -4
  112. mat3ra/esse/models/workflow/subworkflow/__init__.py +13 -13
  113. mat3ra/esse/models/workflow/subworkflow/unit.py +10 -10
  114. mat3ra/esse/models/workflow/unit/__init__.py +12 -12
  115. mat3ra/esse/models/workflow/unit/io/__init__.py +4 -4
  116. mat3ra/esse/models/workflow/unit/io/db.py +2 -2
  117. mat3ra/esse/models/workflow/unit/io/object_storage.py +1 -1
  118. {mat3ra_esse-2025.8.20.post0.dist-info → mat3ra_esse-2025.10.8.post0.dist-info}/METADATA +1 -1
  119. {mat3ra_esse-2025.8.20.post0.dist-info → mat3ra_esse-2025.10.8.post0.dist-info}/RECORD +122 -103
  120. mat3ra/esse/models/property/meta.py +0 -200
  121. {mat3ra_esse-2025.8.20.post0.dist-info → mat3ra_esse-2025.10.8.post0.dist-info}/WHEEL +0 -0
  122. {mat3ra_esse-2025.8.20.post0.dist-info → mat3ra_esse-2025.10.8.post0.dist-info}/licenses/LICENSE.md +0 -0
  123. {mat3ra_esse-2025.8.20.post0.dist-info → mat3ra_esse-2025.10.8.post0.dist-info}/top_level.txt +0 -0
@@ -419,30 +419,30 @@ class VolumeSchema(BaseModel):
419
419
  value: float
420
420
 
421
421
 
422
- class Name588(Enum):
422
+ class Name642(Enum):
423
423
  density = "density"
424
424
 
425
425
 
426
- class Units243(Enum):
426
+ class Units284(Enum):
427
427
  g_cm_3 = "g/cm^3"
428
428
 
429
429
 
430
430
  class DensitySchema(BaseModel):
431
431
  name: Literal["1#-datamodel-code-generator-#-object-#-special-#"]
432
- units: Optional[Units243] = None
432
+ units: Optional[Units284] = None
433
433
  value: float
434
434
 
435
435
 
436
- class Units244(Enum):
436
+ class Units285(Enum):
437
437
  angstrom = "angstrom"
438
438
 
439
439
 
440
440
  class ScalarSchema(BaseModel):
441
- units: Optional[Units244] = None
441
+ units: Optional[Units285] = None
442
442
  value: float
443
443
 
444
444
 
445
- class Name589(Enum):
445
+ class Name643(Enum):
446
446
  symmetry = "symmetry"
447
447
 
448
448
 
@@ -462,7 +462,7 @@ class SymmetrySchema(BaseModel):
462
462
  name: Literal["2#-datamodel-code-generator-#-object-#-special-#"]
463
463
 
464
464
 
465
- class Name590(Enum):
465
+ class Name644(Enum):
466
466
  elemental_ratio = "elemental_ratio"
467
467
 
468
468
 
@@ -475,7 +475,7 @@ class ElementalRatio(BaseModel):
475
475
  """
476
476
 
477
477
 
478
- class Name591(Enum):
478
+ class Name645(Enum):
479
479
  p_norm = "p-norm"
480
480
 
481
481
 
@@ -488,7 +488,7 @@ class PNorm(BaseModel):
488
488
  value: float
489
489
 
490
490
 
491
- class Name592(Enum):
491
+ class Name646(Enum):
492
492
  inchi = "inchi"
493
493
 
494
494
 
@@ -497,7 +497,7 @@ class InChIRepresentationSchema(BaseModel):
497
497
  value: str
498
498
 
499
499
 
500
- class Name593(Enum):
500
+ class Name647(Enum):
501
501
  inchi_key = "inchi_key"
502
502
 
503
503
 
@@ -576,7 +576,7 @@ class FileSourceSchema(BaseModel):
576
576
  """
577
577
 
578
578
 
579
- class Name594(Enum):
579
+ class Name648(Enum):
580
580
  default = "default"
581
581
  atomsTooClose = "atomsTooClose"
582
582
  atomsOverlap = "atomsOverlap"
@@ -589,7 +589,7 @@ class Severity(Enum):
589
589
 
590
590
 
591
591
  class MaterialConsistencyCheckSchema(BaseModel):
592
- name: Name594
592
+ name: Name648
593
593
  """
594
594
  Name of the consistency check that is performed, which is listed in an enum.
595
595
  """
@@ -857,7 +857,7 @@ class LatticeVectorsSchema68(BaseModel):
857
857
  units: Optional[LatticeVectorsUnitsEnum] = Field("angstrom", title="lattice vectors units enum")
858
858
 
859
859
 
860
- class LatticeUnitsSchema69(BaseModel):
860
+ class LatticeUnitsSchema68(BaseModel):
861
861
  length: Optional[LatticeUnitsLengthEnum] = Field("angstrom", title="lattice units length enum")
862
862
  angle: Optional[LatticeUnitsAngleEnum] = Field("degree", title="lattice units angle enum")
863
863
 
@@ -889,50 +889,50 @@ class LatticeSchema68(BaseModel):
889
889
  """
890
890
  vectors: Optional[LatticeVectorsSchema68] = Field(None, title="lattice vectors schema")
891
891
  type: Optional[LatticeTypeEnum] = Field("TRI", title="lattice type enum")
892
- units: Optional[LatticeUnitsSchema69] = Field(
893
- default_factory=lambda: LatticeUnitsSchema69.model_validate({"length": "angstrom", "angle": "degree"}),
892
+ units: Optional[LatticeUnitsSchema68] = Field(
893
+ default_factory=lambda: LatticeUnitsSchema68.model_validate({"length": "angstrom", "angle": "degree"}),
894
894
  title="Lattice units schema",
895
895
  )
896
896
 
897
897
 
898
- class Name595(Enum):
898
+ class Name649(Enum):
899
899
  volume = "volume"
900
900
 
901
901
 
902
- class Units245(Enum):
902
+ class Units286(Enum):
903
903
  angstrom_3 = "angstrom^3"
904
904
 
905
905
 
906
906
  class VolumeSchema68(BaseModel):
907
907
  name: Literal["0#-datamodel-code-generator-#-object-#-special-#"]
908
- units: Optional[Units245] = None
908
+ units: Optional[Units286] = None
909
909
  value: float
910
910
 
911
911
 
912
- class Name596(Enum):
912
+ class Name650(Enum):
913
913
  density = "density"
914
914
 
915
915
 
916
- class Units246(Enum):
916
+ class Units287(Enum):
917
917
  g_cm_3 = "g/cm^3"
918
918
 
919
919
 
920
920
  class DensitySchema69(BaseModel):
921
921
  name: Literal["1#-datamodel-code-generator-#-object-#-special-#"]
922
- units: Optional[Units246] = None
922
+ units: Optional[Units287] = None
923
923
  value: float
924
924
 
925
925
 
926
- class Units247(Enum):
926
+ class Units288(Enum):
927
927
  angstrom = "angstrom"
928
928
 
929
929
 
930
- class ScalarSchema70(BaseModel):
931
- units: Optional[Units247] = None
930
+ class ScalarSchema84(BaseModel):
931
+ units: Optional[Units288] = None
932
932
  value: float
933
933
 
934
934
 
935
- class Name597(Enum):
935
+ class Name651(Enum):
936
936
  symmetry = "symmetry"
937
937
 
938
938
 
@@ -945,14 +945,14 @@ class SymmetrySchema68(BaseModel):
945
945
  """
946
946
  space group symbol in Hermann–Mauguin notation
947
947
  """
948
- tolerance: Optional[ScalarSchema70] = Field(None, title="scalar schema")
948
+ tolerance: Optional[ScalarSchema84] = Field(None, title="scalar schema")
949
949
  """
950
950
  tolerance used for symmetry calculation
951
951
  """
952
952
  name: Literal["2#-datamodel-code-generator-#-object-#-special-#"]
953
953
 
954
954
 
955
- class Name598(Enum):
955
+ class Name652(Enum):
956
956
  elemental_ratio = "elemental_ratio"
957
957
 
958
958
 
@@ -965,7 +965,7 @@ class ElementalRatio69(BaseModel):
965
965
  """
966
966
 
967
967
 
968
- class Name599(Enum):
968
+ class Name653(Enum):
969
969
  p_norm = "p-norm"
970
970
 
971
971
 
@@ -978,7 +978,7 @@ class PNorm69(BaseModel):
978
978
  value: float
979
979
 
980
980
 
981
- class Name600(Enum):
981
+ class Name654(Enum):
982
982
  inchi = "inchi"
983
983
 
984
984
 
@@ -987,7 +987,7 @@ class InChIRepresentationSchema69(BaseModel):
987
987
  value: str
988
988
 
989
989
 
990
- class Name601(Enum):
990
+ class Name655(Enum):
991
991
  inchi_key = "inchi_key"
992
992
 
993
993
 
@@ -1020,14 +1020,14 @@ class DerivedPropertiesSchema69(
1020
1020
  ] = Field(..., discriminator="name")
1021
1021
 
1022
1022
 
1023
- class Name602(Enum):
1023
+ class Name656(Enum):
1024
1024
  default = "default"
1025
1025
  atomsTooClose = "atomsTooClose"
1026
1026
  atomsOverlap = "atomsOverlap"
1027
1027
 
1028
1028
 
1029
1029
  class MaterialConsistencyCheckSchema68(BaseModel):
1030
- name: Name602
1030
+ name: Name656
1031
1031
  """
1032
1032
  Name of the consistency check that is performed, which is listed in an enum.
1033
1033
  """
@@ -427,30 +427,30 @@ class VolumeSchema(BaseModel):
427
427
  value: float
428
428
 
429
429
 
430
- class Name628(Enum):
430
+ class Name682(Enum):
431
431
  density = "density"
432
432
 
433
433
 
434
- class Units258(Enum):
434
+ class Units299(Enum):
435
435
  g_cm_3 = "g/cm^3"
436
436
 
437
437
 
438
438
  class DensitySchema(BaseModel):
439
439
  name: Literal["1#-datamodel-code-generator-#-object-#-special-#"]
440
- units: Optional[Units258] = None
440
+ units: Optional[Units299] = None
441
441
  value: float
442
442
 
443
443
 
444
- class Units259(Enum):
444
+ class Units300(Enum):
445
445
  angstrom = "angstrom"
446
446
 
447
447
 
448
448
  class ScalarSchema(BaseModel):
449
- units: Optional[Units259] = None
449
+ units: Optional[Units300] = None
450
450
  value: float
451
451
 
452
452
 
453
- class Name629(Enum):
453
+ class Name683(Enum):
454
454
  symmetry = "symmetry"
455
455
 
456
456
 
@@ -470,7 +470,7 @@ class SymmetrySchema(BaseModel):
470
470
  name: Literal["2#-datamodel-code-generator-#-object-#-special-#"]
471
471
 
472
472
 
473
- class Name630(Enum):
473
+ class Name684(Enum):
474
474
  elemental_ratio = "elemental_ratio"
475
475
 
476
476
 
@@ -483,7 +483,7 @@ class ElementalRatio(BaseModel):
483
483
  """
484
484
 
485
485
 
486
- class Name631(Enum):
486
+ class Name685(Enum):
487
487
  p_norm = "p-norm"
488
488
 
489
489
 
@@ -496,7 +496,7 @@ class PNorm(BaseModel):
496
496
  value: float
497
497
 
498
498
 
499
- class Name632(Enum):
499
+ class Name686(Enum):
500
500
  inchi = "inchi"
501
501
 
502
502
 
@@ -505,7 +505,7 @@ class InChIRepresentationSchema(BaseModel):
505
505
  value: str
506
506
 
507
507
 
508
- class Name633(Enum):
508
+ class Name687(Enum):
509
509
  inchi_key = "inchi_key"
510
510
 
511
511
 
@@ -584,7 +584,7 @@ class FileSourceSchema(BaseModel):
584
584
  """
585
585
 
586
586
 
587
- class Name634(Enum):
587
+ class Name688(Enum):
588
588
  default = "default"
589
589
  atomsTooClose = "atomsTooClose"
590
590
  atomsOverlap = "atomsOverlap"
@@ -597,7 +597,7 @@ class Severity(Enum):
597
597
 
598
598
 
599
599
  class MaterialConsistencyCheckSchema(BaseModel):
600
- name: Name634
600
+ name: Name688
601
601
  """
602
602
  Name of the consistency check that is performed, which is listed in an enum.
603
603
  """
@@ -865,7 +865,7 @@ class LatticeVectorsSchema73(BaseModel):
865
865
  units: Optional[LatticeVectorsUnitsEnum] = Field("angstrom", title="lattice vectors units enum")
866
866
 
867
867
 
868
- class LatticeUnitsSchema74(BaseModel):
868
+ class LatticeUnitsSchema73(BaseModel):
869
869
  length: Optional[LatticeUnitsLengthEnum] = Field("angstrom", title="lattice units length enum")
870
870
  angle: Optional[LatticeUnitsAngleEnum] = Field("degree", title="lattice units angle enum")
871
871
 
@@ -897,50 +897,50 @@ class LatticeSchema73(BaseModel):
897
897
  """
898
898
  vectors: Optional[LatticeVectorsSchema73] = Field(None, title="lattice vectors schema")
899
899
  type: Optional[LatticeTypeEnum] = Field("TRI", title="lattice type enum")
900
- units: Optional[LatticeUnitsSchema74] = Field(
901
- default_factory=lambda: LatticeUnitsSchema74.model_validate({"length": "angstrom", "angle": "degree"}),
900
+ units: Optional[LatticeUnitsSchema73] = Field(
901
+ default_factory=lambda: LatticeUnitsSchema73.model_validate({"length": "angstrom", "angle": "degree"}),
902
902
  title="Lattice units schema",
903
903
  )
904
904
 
905
905
 
906
- class Name635(Enum):
906
+ class Name689(Enum):
907
907
  volume = "volume"
908
908
 
909
909
 
910
- class Units260(Enum):
910
+ class Units301(Enum):
911
911
  angstrom_3 = "angstrom^3"
912
912
 
913
913
 
914
914
  class VolumeSchema73(BaseModel):
915
915
  name: Literal["0#-datamodel-code-generator-#-object-#-special-#"]
916
- units: Optional[Units260] = None
916
+ units: Optional[Units301] = None
917
917
  value: float
918
918
 
919
919
 
920
- class Name636(Enum):
920
+ class Name690(Enum):
921
921
  density = "density"
922
922
 
923
923
 
924
- class Units261(Enum):
924
+ class Units302(Enum):
925
925
  g_cm_3 = "g/cm^3"
926
926
 
927
927
 
928
928
  class DensitySchema74(BaseModel):
929
929
  name: Literal["1#-datamodel-code-generator-#-object-#-special-#"]
930
- units: Optional[Units261] = None
930
+ units: Optional[Units302] = None
931
931
  value: float
932
932
 
933
933
 
934
- class Units262(Enum):
934
+ class Units303(Enum):
935
935
  angstrom = "angstrom"
936
936
 
937
937
 
938
- class ScalarSchema75(BaseModel):
939
- units: Optional[Units262] = None
938
+ class ScalarSchema89(BaseModel):
939
+ units: Optional[Units303] = None
940
940
  value: float
941
941
 
942
942
 
943
- class Name637(Enum):
943
+ class Name691(Enum):
944
944
  symmetry = "symmetry"
945
945
 
946
946
 
@@ -953,14 +953,14 @@ class SymmetrySchema73(BaseModel):
953
953
  """
954
954
  space group symbol in Hermann–Mauguin notation
955
955
  """
956
- tolerance: Optional[ScalarSchema75] = Field(None, title="scalar schema")
956
+ tolerance: Optional[ScalarSchema89] = Field(None, title="scalar schema")
957
957
  """
958
958
  tolerance used for symmetry calculation
959
959
  """
960
960
  name: Literal["2#-datamodel-code-generator-#-object-#-special-#"]
961
961
 
962
962
 
963
- class Name638(Enum):
963
+ class Name692(Enum):
964
964
  elemental_ratio = "elemental_ratio"
965
965
 
966
966
 
@@ -973,7 +973,7 @@ class ElementalRatio74(BaseModel):
973
973
  """
974
974
 
975
975
 
976
- class Name639(Enum):
976
+ class Name693(Enum):
977
977
  p_norm = "p-norm"
978
978
 
979
979
 
@@ -986,7 +986,7 @@ class PNorm74(BaseModel):
986
986
  value: float
987
987
 
988
988
 
989
- class Name640(Enum):
989
+ class Name694(Enum):
990
990
  inchi = "inchi"
991
991
 
992
992
 
@@ -995,7 +995,7 @@ class InChIRepresentationSchema74(BaseModel):
995
995
  value: str
996
996
 
997
997
 
998
- class Name641(Enum):
998
+ class Name695(Enum):
999
999
  inchi_key = "inchi_key"
1000
1000
 
1001
1001
 
@@ -1028,14 +1028,14 @@ class DerivedPropertiesSchema74(
1028
1028
  ] = Field(..., discriminator="name")
1029
1029
 
1030
1030
 
1031
- class Name642(Enum):
1031
+ class Name696(Enum):
1032
1032
  default = "default"
1033
1033
  atomsTooClose = "atomsTooClose"
1034
1034
  atomsOverlap = "atomsOverlap"
1035
1035
 
1036
1036
 
1037
1037
  class MaterialConsistencyCheckSchema73(BaseModel):
1038
- name: Name642
1038
+ name: Name696
1039
1039
  """
1040
1040
  Name of the consistency check that is performed, which is listed in an enum.
1041
1041
  """