mat3ra-esse 2024.12.19.post1__py3-none-any.whl → 2025.4.3.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/properties.py +2 -2
- mat3ra/esse/data/schemas.py +1 -1
- mat3ra/esse/models/__init__.py +1 -1
- mat3ra/esse/models/core/__init__.py +1 -1
- mat3ra/esse/models/core/abstract/_2d_data.py +17 -0
- mat3ra/esse/models/core/abstract/_2d_plot.py +34 -0
- mat3ra/esse/models/core/abstract/_3d_grid.py +14 -0
- mat3ra/esse/models/core/abstract/_3d_tensor.py +19 -0
- mat3ra/esse/models/core/abstract/_3d_vector_basis.py +15 -0
- mat3ra/esse/models/core/abstract/__init__.py +1 -1
- mat3ra/esse/models/core/abstract/point.py +1 -1
- mat3ra/esse/models/core/abstract/vector.py +1 -1
- mat3ra/esse/models/core/primitive/_1d_data_series.py +13 -0
- mat3ra/esse/models/core/primitive/_3d_lattice.py +34 -0
- mat3ra/esse/models/core/primitive/__init__.py +1 -1
- mat3ra/esse/models/core/primitive/array_of_3_booleans.py +1 -1
- mat3ra/esse/models/core/primitive/array_of_3_numbers.py +1 -1
- mat3ra/esse/models/core/primitive/array_of_ids.py +1 -1
- mat3ra/esse/models/core/primitive/array_of_strings.py +1 -1
- mat3ra/esse/models/core/primitive/axis.py +1 -1
- mat3ra/esse/models/core/primitive/group_info.py +1 -1
- mat3ra/esse/models/core/primitive/integer_one_or_zero.py +1 -1
- mat3ra/esse/models/core/primitive/integer_positive_single_digit.py +11 -0
- mat3ra/esse/models/core/primitive/linked_list/__init__.py +1 -1
- mat3ra/esse/models/core/primitive/linked_list/base_node.py +1 -1
- mat3ra/esse/models/core/primitive/linked_list/named_node.py +1 -1
- mat3ra/esse/models/core/primitive/linked_list/named_node_in_group.py +1 -1
- mat3ra/esse/models/core/primitive/linked_list/node_with_type.py +1 -1
- mat3ra/esse/models/core/primitive/scalar.py +1 -1
- mat3ra/esse/models/core/primitive/slugified_entry.py +1 -1
- mat3ra/esse/models/core/primitive/slugified_entry_or_slug.py +1 -1
- mat3ra/esse/models/core/primitive/string.py +1 -1
- mat3ra/esse/models/core/reference/__init__.py +2 -2
- mat3ra/esse/models/core/reference/exabyte.py +1 -1
- mat3ra/esse/models/core/reference/experiment/__init__.py +1 -1
- mat3ra/esse/models/core/reference/experiment/condition.py +1 -1
- mat3ra/esse/models/core/reference/experiment/location.py +1 -1
- mat3ra/esse/models/core/reference/literature/__init__.py +1 -1
- mat3ra/esse/models/core/reference/literature/name.py +1 -1
- mat3ra/esse/models/core/reference/literature/pages.py +1 -1
- mat3ra/esse/models/core/reference/modeling/__init__.py +2 -2
- mat3ra/esse/models/core/reference/modeling/exabyte.py +2 -2
- mat3ra/esse/models/core/reusable/__init__.py +1 -1
- mat3ra/esse/models/core/reusable/atomic_data/__init__.py +1 -1
- mat3ra/esse/models/core/reusable/atomic_data/per_orbital.py +1 -1
- mat3ra/esse/models/core/reusable/atomic_data/per_orbital_pair.py +1 -1
- mat3ra/esse/models/core/reusable/atomic_data/value_number.py +1 -1
- mat3ra/esse/models/core/reusable/atomic_data/value_string.py +1 -1
- mat3ra/esse/models/core/reusable/atomic_data_per_orbital_numeric.py +1 -1
- mat3ra/esse/models/core/reusable/atomic_data_per_orbital_pair_numeric.py +1 -1
- mat3ra/esse/models/core/reusable/atomic_orbital.py +1 -1
- mat3ra/esse/models/core/reusable/atomic_scalars.py +1 -1
- mat3ra/esse/models/core/reusable/atomic_strings.py +1 -1
- mat3ra/esse/models/core/reusable/atomic_vectors.py +1 -1
- mat3ra/esse/models/core/reusable/band_gap.py +1 -1
- mat3ra/esse/models/core/reusable/categories.py +1 -1
- mat3ra/esse/models/core/reusable/category_path.py +1 -1
- mat3ra/esse/models/core/reusable/dielectric_tensor_component.py +1 -1
- mat3ra/esse/models/core/reusable/energy.py +3 -3
- mat3ra/esse/models/core/reusable/file_metadata.py +1 -1
- mat3ra/esse/models/core/reusable/frequency_function_matrix.py +1 -1
- mat3ra/esse/models/core/reusable/object_storage_container_data.py +1 -1
- mat3ra/esse/models/definitions/__init__.py +1 -1
- mat3ra/esse/models/definitions/constants.py +40 -0
- mat3ra/esse/models/definitions/units.py +4 -4
- mat3ra/esse/models/element.py +11 -12
- mat3ra/esse/models/in_memory_entity/__init__.py +1 -1
- mat3ra/esse/models/in_memory_entity/base.py +2 -35
- mat3ra/esse/models/in_memory_entity/defaultable.py +2 -35
- mat3ra/esse/models/in_memory_entity/has_consistency_check_has_metadata_named_defaultable.py +61 -0
- mat3ra/esse/models/in_memory_entity/named.py +2 -35
- mat3ra/esse/models/in_memory_entity/named_defaultable.py +2 -35
- mat3ra/esse/models/in_memory_entity/named_defaultable_has_metadata.py +2 -35
- mat3ra/esse/models/in_memory_entity/named_defaultable_runtime_items.py +1 -34
- mat3ra/esse/models/job/__init__.py +15 -630
- mat3ra/esse/models/job/base.py +2 -34
- mat3ra/esse/models/job/compute.py +1 -1
- mat3ra/esse/models/material/__init__.py +46 -76
- mat3ra/esse/models/material/consistency_check.py +40 -0
- mat3ra/esse/models/material/conventional.py +1 -1
- mat3ra/esse/models/method/__init__.py +1 -1
- mat3ra/esse/models/method/categorized_method.py +1 -1
- mat3ra/esse/models/method/method_parameters.py +1 -1
- mat3ra/esse/models/method/unit_method.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/__init__.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/diff/__init__.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/diff/enum_options.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/diff/fd.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/discr/__init__.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/discr/enum_options.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/discr/mesh/__init__.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/discr/mesh/enum_options.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/discr/mesh/hybrid.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/discr/mesh/nstruct.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/discr/mesh/struct/__init__.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/discr/mesh/struct/cartesian.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/discr/mesh/struct/enum_options.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/enum_options.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/fapprx/__init__.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/fapprx/basisexp.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/fapprx/enum_options.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/fapprx/ipol/__init__.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/fapprx/ipol/enum_options.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/fapprx/ipol/lin.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/fapprx/ipol/poly.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/fapprx/ipol/spline.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/intgr/__init__.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/intgr/analytic/__init__.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/intgr/analytic/enum_options.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/intgr/analytic/volume.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/intgr/diffeq/__init__.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/intgr/diffeq/enum_options.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/intgr/diffeq/order1.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/intgr/diffeq/order2.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/intgr/enum_options.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/intgr/numquad/__init__.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/intgr/numquad/enum_options.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/intgr/numquad/gauss.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/intgr/numquad/newcot.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/intgr/transf/__init__.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/intgr/transf/enum_options.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/intgr/transf/fourier.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/linalg/__init__.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/linalg/dcomp.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/linalg/diag/__init__.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/linalg/diag/davidson.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/linalg/diag/enum_options.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/linalg/enum_options.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/linalg/lintra.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/linalg/matf.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/opt/__init__.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/opt/diff/__init__.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/opt/diff/bracket.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/opt/diff/enum_options.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/opt/diff/local.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/opt/diff/order1.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/opt/diff/order2.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/opt/diff/ordern/__init__.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/opt/diff/ordern/cg.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/opt/diff/ordern/enum_options.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/opt/enum_options.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/opt/ndiff/__init__.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/opt/ndiff/direct.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/opt/ndiff/enum_options.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/opt/ndiff/pop.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/opt/ndiff/stoch.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/opt/root/__init__.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/opt/root/bracket.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/opt/root/enum_options.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/opt/root/iter.py +1 -1
- mat3ra/esse/models/methods_category/mathematical/regression.py +1 -1
- mat3ra/esse/models/methods_category/physical/__init__.py +1 -1
- mat3ra/esse/models/methods_category/physical/enum_options.py +1 -1
- mat3ra/esse/models/methods_category/physical/qm/__init__.py +1 -1
- mat3ra/esse/models/methods_category/physical/qm/enum_options.py +1 -1
- mat3ra/esse/models/methods_category/physical/qm/wf/__init__.py +1 -1
- mat3ra/esse/models/methods_category/physical/qm/wf/ao/__init__.py +1 -1
- mat3ra/esse/models/methods_category/physical/qm/wf/ao/dunning.py +1 -1
- mat3ra/esse/models/methods_category/physical/qm/wf/ao/other.py +1 -1
- mat3ra/esse/models/methods_category/physical/qm/wf/ao/pople.py +1 -1
- mat3ra/esse/models/methods_category/physical/qm/wf/enum_options.py +1 -1
- mat3ra/esse/models/methods_category/physical/qm/wf/psp.py +1 -1
- mat3ra/esse/models/methods_category/physical/qm/wf/pw.py +1 -1
- mat3ra/esse/models/methods_category/physical/qm/wf/smearing.py +1 -1
- mat3ra/esse/models/methods_category/physical/qm/wf/tetrahedron.py +1 -1
- mat3ra/esse/models/methods_directory/legacy/__init__.py +1 -1
- mat3ra/esse/models/methods_directory/legacy/localorbital.py +1 -1
- mat3ra/esse/models/methods_directory/legacy/pseudopotential.py +1 -1
- mat3ra/esse/models/methods_directory/legacy/regression.py +1 -1
- mat3ra/esse/models/methods_directory/legacy/unknown.py +1 -1
- mat3ra/esse/models/methods_directory/mathematical/__init__.py +1 -1
- mat3ra/esse/models/methods_directory/mathematical/cg.py +1 -1
- mat3ra/esse/models/methods_directory/mathematical/davidson.py +1 -1
- mat3ra/esse/models/methods_directory/mathematical/regression/__init__.py +1 -1
- mat3ra/esse/models/methods_directory/mathematical/regression/data.py +1 -1
- mat3ra/esse/models/methods_directory/mathematical/regression/dataset.py +1 -1
- mat3ra/esse/models/methods_directory/mathematical/regression/kernel_ridge/__init__.py +1 -1
- mat3ra/esse/models/methods_directory/mathematical/regression/kernel_ridge/data_per_property.py +1 -1
- mat3ra/esse/models/methods_directory/mathematical/regression/linear/__init__.py +1 -1
- mat3ra/esse/models/methods_directory/mathematical/regression/linear/data_per_property.py +1 -1
- mat3ra/esse/models/methods_directory/mathematical/regression/per_feature_item.py +1 -1
- mat3ra/esse/models/methods_directory/mathematical/regression/precision.py +1 -1
- mat3ra/esse/models/methods_directory/mathematical/regression/precision_per_property.py +1 -1
- mat3ra/esse/models/methods_directory/physical/__init__.py +1 -1
- mat3ra/esse/models/methods_directory/physical/ao/__init__.py +1 -1
- mat3ra/esse/models/methods_directory/physical/ao/dunning.py +1 -1
- mat3ra/esse/models/methods_directory/physical/ao/enum_options.py +1 -1
- mat3ra/esse/models/methods_directory/physical/ao/other.py +1 -1
- mat3ra/esse/models/methods_directory/physical/ao/pople.py +1 -1
- mat3ra/esse/models/methods_directory/physical/psp/__init__.py +1 -1
- mat3ra/esse/models/methods_directory/physical/psp/file.py +1 -1
- mat3ra/esse/models/methods_directory/physical/psp/file_data_item.py +1 -1
- mat3ra/esse/models/methods_directory/physical/pw.py +1 -1
- mat3ra/esse/models/methods_directory/physical/smearing.py +1 -1
- mat3ra/esse/models/methods_directory/physical/tetrahedron.py +1 -1
- mat3ra/esse/models/model/__init__.py +1 -1
- mat3ra/esse/models/model/categorized_model.py +1 -1
- mat3ra/esse/models/model/mixins/__init__.py +1 -1
- mat3ra/esse/models/model/mixins/dft/__init__.py +1 -3
- mat3ra/esse/models/model/mixins/dft/double_hybrid_functional.py +1 -1
- mat3ra/esse/models/model/mixins/dft/enum_options.py +1 -1
- mat3ra/esse/models/model/mixins/dft/gga_functional.py +1 -1
- mat3ra/esse/models/model/mixins/dft/hybrid_functional.py +1 -1
- mat3ra/esse/models/model/mixins/dft/lda_functional.py +1 -1
- mat3ra/esse/models/model/mixins/dft/mgga_functional.py +1 -1
- mat3ra/esse/models/model/mixins/dispersion_correction.py +1 -1
- mat3ra/esse/models/model/mixins/enum_options.py +1 -1
- mat3ra/esse/models/model/mixins/hubbard.py +1 -1
- mat3ra/esse/models/model/mixins/spin_orbit_coupling.py +1 -1
- mat3ra/esse/models/model/mixins/spin_polarization.py +1 -1
- mat3ra/esse/models/model/model_parameters.py +1 -1
- mat3ra/esse/models/model/model_without_method.py +1 -1
- mat3ra/esse/models/models_category/__init__.py +1 -1
- mat3ra/esse/models/models_category/enum_options.py +1 -1
- mat3ra/esse/models/models_category/pb/__init__.py +1 -1
- mat3ra/esse/models/models_category/pb/enum_options.py +1 -1
- mat3ra/esse/models/models_category/pb/qm/__init__.py +1 -1
- mat3ra/esse/models/models_category/pb/qm/abin/__init__.py +1 -1
- mat3ra/esse/models/models_category/pb/qm/abin/enum_options.py +1 -1
- mat3ra/esse/models/models_category/pb/qm/abin/gw.py +1 -1
- mat3ra/esse/models/models_category/pb/qm/dft/__init__.py +1 -1
- mat3ra/esse/models/models_category/pb/qm/dft/enum_options.py +1 -1
- mat3ra/esse/models/models_category/pb/qm/dft/ksdft/__init__.py +1 -1
- mat3ra/esse/models/models_category/pb/qm/dft/ksdft/double_hybrid.py +1 -1
- mat3ra/esse/models/models_category/pb/qm/dft/ksdft/enum_options.py +1 -1
- mat3ra/esse/models/models_category/pb/qm/dft/ksdft/gga.py +1 -1
- mat3ra/esse/models/models_category/pb/qm/dft/ksdft/hybrid.py +1 -1
- mat3ra/esse/models/models_category/pb/qm/dft/ksdft/lda.py +1 -1
- mat3ra/esse/models/models_category/pb/qm/dft/ksdft/mgga.py +1 -1
- mat3ra/esse/models/models_category/pb/qm/enum_options.py +1 -1
- mat3ra/esse/models/models_category/pb/qm/semp.py +1 -1
- mat3ra/esse/models/models_category/st/__init__.py +1 -1
- mat3ra/esse/models/models_category/st/det/__init__.py +1 -1
- mat3ra/esse/models/models_category/st/det/enum_options.py +1 -1
- mat3ra/esse/models/models_category/st/det/ml/__init__.py +1 -1
- mat3ra/esse/models/models_category/st/det/ml/enum_options.py +1 -1
- mat3ra/esse/models/models_category/st/det/ml/re.py +1 -1
- mat3ra/esse/models/models_category/st/enum_options.py +1 -1
- mat3ra/esse/models/models_directory/__init__.py +1 -1
- mat3ra/esse/models/models_directory/double_hybrid.py +1 -1
- mat3ra/esse/models/models_directory/gga.py +1 -1
- mat3ra/esse/models/models_directory/gw.py +1 -1
- mat3ra/esse/models/models_directory/hybrid.py +1 -1
- mat3ra/esse/models/models_directory/lda.py +1 -1
- mat3ra/esse/models/models_directory/legacy/__init__.py +1 -1
- mat3ra/esse/models/models_directory/legacy/dft.py +1 -1
- mat3ra/esse/models/models_directory/legacy/ml.py +1 -1
- mat3ra/esse/models/models_directory/legacy/unknown.py +1 -1
- mat3ra/esse/models/models_directory/mgga.py +1 -1
- mat3ra/esse/models/models_directory/re.py +1 -1
- mat3ra/esse/models/project.py +1 -34
- mat3ra/esse/models/properties_directory/__init__.py +1 -1
- mat3ra/esse/models/properties_directory/derived_properties.py +12 -13
- mat3ra/esse/models/properties_directory/electronic_configuration.py +1 -1
- mat3ra/esse/models/properties_directory/elemental/__init__.py +1 -1
- mat3ra/esse/models/properties_directory/elemental/atomic_radius.py +5 -6
- mat3ra/esse/models/properties_directory/elemental/electronegativity.py +1 -1
- mat3ra/esse/models/properties_directory/elemental/ionization_potential.py +1 -1
- mat3ra/esse/models/properties_directory/non_scalar/__init__.py +1 -1
- mat3ra/esse/models/properties_directory/non_scalar/average_potential_profile.py +5 -6
- mat3ra/esse/models/properties_directory/non_scalar/band_gaps.py +1 -1
- mat3ra/esse/models/properties_directory/non_scalar/band_structure.py +2 -11
- mat3ra/esse/models/properties_directory/non_scalar/charge_density_profile.py +3 -3
- mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py +5 -5
- mat3ra/esse/models/properties_directory/non_scalar/dielectric_tensor.py +1 -1
- mat3ra/esse/models/properties_directory/non_scalar/file_content.py +1 -1
- mat3ra/esse/models/properties_directory/non_scalar/hubbard_u.py +1 -1
- mat3ra/esse/models/properties_directory/non_scalar/hubbard_v.py +1 -1
- mat3ra/esse/models/properties_directory/non_scalar/hubbard_v_nn.py +1 -1
- mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py +6 -15
- mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py +5 -5
- mat3ra/esse/models/properties_directory/non_scalar/potential_profile.py +3 -3
- mat3ra/esse/models/properties_directory/non_scalar/reaction_energy_profile.py +3 -3
- mat3ra/esse/models/properties_directory/non_scalar/stress_tensor.py +4 -4
- mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py +27 -27
- mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py +5 -5
- mat3ra/esse/models/properties_directory/scalar/__init__.py +1 -1
- mat3ra/esse/models/properties_directory/scalar/electron_affinity.py +3 -3
- mat3ra/esse/models/properties_directory/scalar/fermi_energy.py +3 -3
- mat3ra/esse/models/properties_directory/scalar/formation_energy.py +3 -3
- mat3ra/esse/models/properties_directory/scalar/ionization_potential.py +3 -3
- mat3ra/esse/models/properties_directory/scalar/pressure.py +1 -1
- 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 +1 -1
- 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/__init__.py +1 -1
- mat3ra/esse/models/properties_directory/structural/atomic_forces.py +1 -1
- mat3ra/esse/models/properties_directory/structural/basis/__init__.py +10 -36
- mat3ra/esse/models/properties_directory/structural/basis/atomic_constraints.py +1 -1
- mat3ra/esse/models/properties_directory/structural/basis/atomic_coordinate.py +1 -1
- mat3ra/esse/models/properties_directory/structural/basis/atomic_coordinates.py +5 -6
- mat3ra/esse/models/properties_directory/structural/basis/atomic_element.py +1 -1
- mat3ra/esse/models/properties_directory/structural/basis/atomic_label.py +14 -0
- mat3ra/esse/models/properties_directory/structural/basis/bonds.py +1 -1
- mat3ra/esse/models/properties_directory/structural/density.py +1 -1
- mat3ra/esse/models/properties_directory/structural/elemental_ratio.py +1 -1
- mat3ra/esse/models/properties_directory/structural/inchi.py +1 -1
- mat3ra/esse/models/properties_directory/structural/inchi_key.py +1 -1
- mat3ra/esse/models/properties_directory/structural/lattice/__init__.py +14 -17
- mat3ra/esse/models/properties_directory/structural/lattice/lattice_bravais.py +10 -7
- mat3ra/esse/models/properties_directory/structural/lattice/lattice_vectors.py +5 -6
- mat3ra/esse/models/properties_directory/structural/lattice/type_enum.py +2 -2
- mat3ra/esse/models/properties_directory/structural/lattice/type_extended_enum.py +4 -3
- mat3ra/esse/models/properties_directory/structural/magnetic_moments.py +1 -1
- mat3ra/esse/models/properties_directory/structural/molecular_pattern.py +5 -5
- mat3ra/esse/models/properties_directory/structural/p_norm.py +1 -1
- mat3ra/esse/models/properties_directory/structural/patterns/__init__.py +1 -1
- 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/structural/symmetry.py +1 -1
- mat3ra/esse/models/properties_directory/structural/volume.py +1 -1
- mat3ra/esse/models/properties_directory/workflow/convergence/__init__.py +1 -1
- mat3ra/esse/models/properties_directory/workflow/convergence/electronic.py +1 -1
- mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py +3 -3
- mat3ra/esse/models/properties_directory/workflow/convergence/kpoint.py +1 -1
- mat3ra/esse/models/property/__init__.py +1 -1
- mat3ra/esse/models/property/base/The_source_of_a_property/__init__.py +1 -3
- 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 +1 -1
- mat3ra/esse/models/property/base/__init__.py +0 -32
- mat3ra/esse/models/property/base.py +200 -0
- mat3ra/esse/models/property/meta/The_source_of_a_property/__init__.py +1 -3
- 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 +1 -1
- mat3ra/esse/models/property/meta/__init__.py +0 -32
- mat3ra/esse/models/property/meta.py +200 -0
- mat3ra/esse/models/property/raw/The_source_of_a_property/__init__.py +1 -3
- 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 +1 -1
- mat3ra/esse/models/property/raw/__init__.py +0 -32
- mat3ra/esse/models/property/raw.py +200 -0
- mat3ra/esse/models/property/source/The_source_of_a_property/__init__.py +1 -3
- mat3ra/esse/models/property/source/The_source_of_a_property/field_This_could_be_an_article__a_simulation_on_Exabyte__an_external_simulation__etc.py +1 -1
- mat3ra/esse/models/property/source.py +150 -0
- mat3ra/esse/models/software/__init__.py +1 -1
- mat3ra/esse/models/software/application.py +2 -35
- mat3ra/esse/models/software/executable.py +1 -34
- mat3ra/esse/models/software/flavor.py +1 -34
- mat3ra/esse/models/software/template.py +1 -34
- mat3ra/esse/models/software_directory/ml/__init__.py +1 -1
- mat3ra/esse/models/software_directory/ml/exabyteml.py +1 -1
- mat3ra/esse/models/software_directory/ml/unit/__init__.py +1 -1
- mat3ra/esse/models/software_directory/ml/unit/execution/__init__.py +4 -489
- mat3ra/esse/models/software_directory/ml/unit/execution/evaluate/__init__.py +1 -3
- mat3ra/esse/models/software_directory/ml/unit/execution/evaluate/cross_validate.py +1 -93
- mat3ra/esse/models/software_directory/ml/unit/execution/initialize.py +1 -93
- mat3ra/esse/models/software_directory/ml/unit/execution/score.py +1 -93
- mat3ra/esse/models/software_directory/ml/unit/execution/train.py +1 -93
- mat3ra/esse/models/software_directory/ml/unit/processing/__init__.py +2 -54
- mat3ra/esse/models/software_directory/ml/unit/processing/data_transformation/__init__.py +2 -34
- mat3ra/esse/models/software_directory/ml/unit/processing/data_transformation/manipulation.py +4 -36
- mat3ra/esse/models/software_directory/ml/unit/processing/data_transformation/scale_and_reduce.py +2 -34
- mat3ra/esse/models/software_directory/ml/unit/processing/feature_selection/__init__.py +1 -33
- mat3ra/esse/models/software_directory/ml/unit/processing/feature_selection/filter_based.py +1 -33
- mat3ra/esse/models/software_directory/modeling/__init__.py +1 -1
- mat3ra/esse/models/software_directory/modeling/deepmd.py +2 -34
- mat3ra/esse/models/software_directory/modeling/espresso/__init__.py +1 -1
- mat3ra/esse/models/software_directory/modeling/espresso/arguments.py +1 -1
- mat3ra/esse/models/software_directory/modeling/nwchem.py +2 -34
- mat3ra/esse/models/software_directory/modeling/unit/__init__.py +1 -1
- mat3ra/esse/models/software_directory/modeling/unit/execution.py +1 -93
- mat3ra/esse/models/software_directory/modeling/vasp.py +2 -34
- mat3ra/esse/models/software_directory/scripting/__init__.py +1 -1
- mat3ra/esse/models/software_directory/scripting/jupyter_lab.py +2 -34
- mat3ra/esse/models/software_directory/scripting/python.py +1 -33
- mat3ra/esse/models/software_directory/scripting/shell.py +2 -34
- mat3ra/esse/models/software_directory/scripting/unit/__init__.py +1 -1
- mat3ra/esse/models/software_directory/scripting/unit/execution.py +1 -93
- mat3ra/esse/models/system/__init__.py +1 -1
- mat3ra/esse/models/system/_material.py +2 -2
- mat3ra/esse/models/system/_parent_job.py +2 -2
- mat3ra/esse/models/system/_project.py +2 -2
- mat3ra/esse/models/system/bankable.py +1 -1
- mat3ra/esse/models/system/consistency_check.py +2 -8
- mat3ra/esse/models/system/creator.py +2 -2
- mat3ra/esse/models/system/creator_account.py +2 -2
- mat3ra/esse/models/system/database_source.py +1 -1
- mat3ra/esse/models/system/defaultable.py +1 -1
- mat3ra/esse/models/system/description.py +2 -2
- mat3ra/esse/models/system/entity_reference.py +2 -2
- mat3ra/esse/models/system/file_source.py +1 -1
- mat3ra/esse/models/system/has_consistency_check.py +39 -0
- mat3ra/esse/models/system/history.py +1 -1
- mat3ra/esse/models/system/iframe_message.py +1 -1
- mat3ra/esse/models/system/in_set.py +2 -2
- mat3ra/esse/models/system/is_multi_material.py +1 -1
- mat3ra/esse/models/system/is_outdated.py +1 -1
- mat3ra/esse/models/system/job_extended.py +2 -2
- mat3ra/esse/models/system/message.py +1 -1
- mat3ra/esse/models/system/metadata.py +1 -1
- mat3ra/esse/models/system/name.py +1 -1
- mat3ra/esse/models/system/owner.py +2 -2
- mat3ra/esse/models/system/path.py +1 -1
- mat3ra/esse/models/system/path_entity.py +1 -1
- mat3ra/esse/models/system/schema_version.py +1 -1
- mat3ra/esse/models/system/scope.py +1 -1
- mat3ra/esse/models/system/set.py +1 -1
- mat3ra/esse/models/system/sharing.py +1 -1
- mat3ra/esse/models/system/soft_removable.py +1 -1
- mat3ra/esse/models/system/status.py +1 -1
- mat3ra/esse/models/system/tags.py +1 -1
- mat3ra/esse/models/system/timestampable.py +5 -4
- mat3ra/esse/models/system/use_values.py +1 -1
- mat3ra/esse/models/third_party/db/nist_jarvis/{2024.3.13 → 2024_3.13}/__init__.py +1 -1
- mat3ra/esse/models/third_party/db/nist_jarvis/{2024.3.13 → 2024_3.13}/atoms.py +4 -4
- mat3ra/esse/models/third_party/db/nist_jarvis/{2024.3.13 → 2024_3.13}/db_entry.py +4 -4
- mat3ra/esse/models/third_party/file/applications/espresso/7.2/__init__.py +1 -1
- mat3ra/esse/models/third_party/file/applications/espresso/7.2/pw.x/__init__.py +2 -1989
- mat3ra/esse/models/third_party/file/applications/espresso/7.2/pw.x/atomic_positions.py +1 -1
- mat3ra/esse/models/third_party/file/applications/espresso/7.2/pw.x/atomic_species.py +1 -1
- mat3ra/esse/models/third_party/file/applications/espresso/7.2/pw.x/cell.py +1 -1
- mat3ra/esse/models/third_party/file/applications/espresso/7.2/pw.x/cell_parameters.py +1 -1
- mat3ra/esse/models/third_party/file/applications/espresso/7.2/pw.x/control.py +1 -1
- mat3ra/esse/models/third_party/file/applications/espresso/7.2/pw.x/electrons.py +1 -1
- mat3ra/esse/models/third_party/file/applications/espresso/7.2/pw.x/hubbard.py +6 -6
- mat3ra/esse/models/third_party/file/applications/espresso/7.2/pw.x/ions.py +1 -1
- mat3ra/esse/models/third_party/file/applications/espresso/7.2/pw.x/k_points.py +1 -1
- mat3ra/esse/models/third_party/file/applications/espresso/7.2/pw.x/system.py +1 -1
- mat3ra/esse/models/third_party/file/applications/espresso/7.2/pw_x.py +1990 -0
- mat3ra/esse/models/workflow/__init__.py +14 -609
- mat3ra/esse/models/workflow/base.py +1 -34
- mat3ra/esse/models/workflow/base_flow.py +1 -1
- mat3ra/esse/models/workflow/scope.py +1 -1
- mat3ra/esse/models/workflow/subworkflow/__init__.py +7 -291
- mat3ra/esse/models/workflow/subworkflow/unit.py +6 -219
- mat3ra/esse/models/workflow/unit/__init__.py +8 -261
- mat3ra/esse/models/workflow/unit/assertion.py +1 -33
- mat3ra/esse/models/workflow/unit/assignment.py +1 -33
- mat3ra/esse/models/workflow/unit/base.py +1 -33
- mat3ra/esse/models/workflow/unit/condition.py +1 -33
- mat3ra/esse/models/workflow/unit/execution.py +1 -93
- mat3ra/esse/models/workflow/unit/input/__init__.py +1 -1
- mat3ra/esse/models/workflow/unit/input/_input.py +1 -1
- mat3ra/esse/models/workflow/unit/input/_inputItem.py +1 -1
- mat3ra/esse/models/workflow/unit/input/_inputItemId.py +1 -1
- mat3ra/esse/models/workflow/unit/input/_inputItemScope.py +1 -1
- mat3ra/esse/models/workflow/unit/input/_map_input/__init__.py +1 -1
- mat3ra/esse/models/workflow/unit/input/_map_input/values.py +1 -1
- mat3ra/esse/models/workflow/unit/io/__init__.py +2 -34
- mat3ra/esse/models/workflow/unit/io/api.py +1 -1
- mat3ra/esse/models/workflow/unit/io/db.py +3 -3
- mat3ra/esse/models/workflow/unit/io/object_storage.py +1 -1
- mat3ra/esse/models/workflow/unit/map.py +1 -33
- mat3ra/esse/models/workflow/unit/processing.py +1 -33
- mat3ra/esse/models/workflow/unit/reduce.py +1 -33
- mat3ra/esse/models/workflow/unit/runtime/__init__.py +1 -1
- mat3ra/esse/models/workflow/unit/runtime/_runtime_item_full_object.py +1 -1
- mat3ra/esse/models/workflow/unit/runtime/_runtime_item_name_object.py +1 -1
- mat3ra/esse/models/workflow/unit/runtime/_runtime_item_string.py +1 -1
- mat3ra/esse/models/workflow/unit/runtime/runtime_item.py +1 -1
- mat3ra/esse/models/workflow/unit/runtime/runtime_items.py +1 -1
- mat3ra/esse/models/workflow/unit/subworkflow.py +1 -33
- {mat3ra_esse-2024.12.19.post1.dist-info → mat3ra_esse-2025.4.3.post0.dist-info}/METADATA +3 -2
- mat3ra_esse-2025.4.3.post0.dist-info/RECORD +471 -0
- {mat3ra_esse-2024.12.19.post1.dist-info → mat3ra_esse-2025.4.3.post0.dist-info}/WHEEL +1 -1
- mat3ra_esse-2024.12.19.post1.dist-info/RECORD +0 -453
- {mat3ra_esse-2024.12.19.post1.dist-info → mat3ra_esse-2025.4.3.post0.dist-info/licenses}/LICENSE.md +0 -0
- {mat3ra_esse-2024.12.19.post1.dist-info → mat3ra_esse-2025.4.3.post0.dist-info}/top_level.txt +0 -0
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
# generated by datamodel-codegen:
|
|
2
2
|
# filename: workflow/unit.json
|
|
3
|
-
# version: 0.
|
|
3
|
+
# version: 0.28.5
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
|
|
7
7
|
from enum import Enum
|
|
8
|
-
from typing import Any, Dict, List, Optional, Union
|
|
8
|
+
from typing import Any, Dict, List, Literal, Optional, Union
|
|
9
9
|
|
|
10
10
|
from pydantic import BaseModel, ConfigDict, Field, RootModel
|
|
11
|
-
from typing_extensions import Literal
|
|
12
11
|
|
|
13
12
|
|
|
14
13
|
class Type(Enum):
|
|
@@ -63,7 +62,7 @@ class DataIODatabaseInputOutputSchema11(BaseModel):
|
|
|
63
62
|
"""
|
|
64
63
|
db collection name
|
|
65
64
|
"""
|
|
66
|
-
draft: bool
|
|
65
|
+
draft: Optional[bool] = True
|
|
67
66
|
"""
|
|
68
67
|
whether the result should be saved as draft
|
|
69
68
|
"""
|
|
@@ -127,37 +126,6 @@ class Status(Enum):
|
|
|
127
126
|
finished = "finished"
|
|
128
127
|
|
|
129
128
|
|
|
130
|
-
class Name(Enum):
|
|
131
|
-
default = "default"
|
|
132
|
-
atomsTooClose = "atomsTooClose"
|
|
133
|
-
atomsOverlap = "atomsOverlap"
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
class Severity(Enum):
|
|
137
|
-
info = "info"
|
|
138
|
-
warning = "warning"
|
|
139
|
-
error = "error"
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
class ConsistencyCheck(BaseModel):
|
|
143
|
-
key: str
|
|
144
|
-
"""
|
|
145
|
-
Key of the property of the entity on which the consistency check is performed in Mongo dot notation, e.g. 'basis.coordinates.1'
|
|
146
|
-
"""
|
|
147
|
-
name: Name
|
|
148
|
-
"""
|
|
149
|
-
Name of the consistency check that is performed, which is listed in an enum.
|
|
150
|
-
"""
|
|
151
|
-
severity: Severity
|
|
152
|
-
"""
|
|
153
|
-
Severity level of the problem, which is used in UI to differentiate.
|
|
154
|
-
"""
|
|
155
|
-
message: str
|
|
156
|
-
"""
|
|
157
|
-
Message generated by the consistency check describing the problem.
|
|
158
|
-
"""
|
|
159
|
-
|
|
160
|
-
|
|
161
129
|
class NameResultSchema(BaseModel):
|
|
162
130
|
name: str
|
|
163
131
|
"""
|
|
@@ -223,7 +191,6 @@ class DataIOUnitSchema(BaseModel):
|
|
|
223
191
|
entity slug
|
|
224
192
|
"""
|
|
225
193
|
systemName: Optional[str] = None
|
|
226
|
-
consistencyChecks: Optional[List[ConsistencyCheck]] = None
|
|
227
194
|
schemaVersion: Optional[str] = "2022.8.16"
|
|
228
195
|
"""
|
|
229
196
|
entity's schema version. Used to distinct between different schemas.
|
|
@@ -270,25 +237,6 @@ class InputItem(BaseModel):
|
|
|
270
237
|
"""
|
|
271
238
|
|
|
272
239
|
|
|
273
|
-
class ConsistencyCheck120(BaseModel):
|
|
274
|
-
key: str
|
|
275
|
-
"""
|
|
276
|
-
Key of the property of the entity on which the consistency check is performed in Mongo dot notation, e.g. 'basis.coordinates.1'
|
|
277
|
-
"""
|
|
278
|
-
name: Name
|
|
279
|
-
"""
|
|
280
|
-
Name of the consistency check that is performed, which is listed in an enum.
|
|
281
|
-
"""
|
|
282
|
-
severity: Severity
|
|
283
|
-
"""
|
|
284
|
-
Severity level of the problem, which is used in UI to differentiate.
|
|
285
|
-
"""
|
|
286
|
-
message: str
|
|
287
|
-
"""
|
|
288
|
-
Message generated by the consistency check describing the problem.
|
|
289
|
-
"""
|
|
290
|
-
|
|
291
|
-
|
|
292
240
|
class ReduceUnitSchema(BaseModel):
|
|
293
241
|
model_config = ConfigDict(
|
|
294
242
|
extra="allow",
|
|
@@ -340,7 +288,6 @@ class ReduceUnitSchema(BaseModel):
|
|
|
340
288
|
entity slug
|
|
341
289
|
"""
|
|
342
290
|
systemName: Optional[str] = None
|
|
343
|
-
consistencyChecks: Optional[List[ConsistencyCheck120]] = None
|
|
344
291
|
schemaVersion: Optional[str] = "2022.8.16"
|
|
345
292
|
"""
|
|
346
293
|
entity's schema version. Used to distinct between different schemas.
|
|
@@ -387,25 +334,6 @@ class WorkflowUnitInputSchema(BaseModel):
|
|
|
387
334
|
"""
|
|
388
335
|
|
|
389
336
|
|
|
390
|
-
class ConsistencyCheck121(BaseModel):
|
|
391
|
-
key: str
|
|
392
|
-
"""
|
|
393
|
-
Key of the property of the entity on which the consistency check is performed in Mongo dot notation, e.g. 'basis.coordinates.1'
|
|
394
|
-
"""
|
|
395
|
-
name: Name
|
|
396
|
-
"""
|
|
397
|
-
Name of the consistency check that is performed, which is listed in an enum.
|
|
398
|
-
"""
|
|
399
|
-
severity: Severity
|
|
400
|
-
"""
|
|
401
|
-
Severity level of the problem, which is used in UI to differentiate.
|
|
402
|
-
"""
|
|
403
|
-
message: str
|
|
404
|
-
"""
|
|
405
|
-
Message generated by the consistency check describing the problem.
|
|
406
|
-
"""
|
|
407
|
-
|
|
408
|
-
|
|
409
337
|
class ConditionUnitSchema(BaseModel):
|
|
410
338
|
model_config = ConfigDict(
|
|
411
339
|
extra="allow",
|
|
@@ -473,7 +401,6 @@ class ConditionUnitSchema(BaseModel):
|
|
|
473
401
|
entity slug
|
|
474
402
|
"""
|
|
475
403
|
systemName: Optional[str] = None
|
|
476
|
-
consistencyChecks: Optional[List[ConsistencyCheck121]] = None
|
|
477
404
|
schemaVersion: Optional[str] = "2022.8.16"
|
|
478
405
|
"""
|
|
479
406
|
entity's schema version. Used to distinct between different schemas.
|
|
@@ -509,25 +436,6 @@ class Type91(Enum):
|
|
|
509
436
|
assertion = "assertion"
|
|
510
437
|
|
|
511
438
|
|
|
512
|
-
class ConsistencyCheck122(BaseModel):
|
|
513
|
-
key: str
|
|
514
|
-
"""
|
|
515
|
-
Key of the property of the entity on which the consistency check is performed in Mongo dot notation, e.g. 'basis.coordinates.1'
|
|
516
|
-
"""
|
|
517
|
-
name: Name
|
|
518
|
-
"""
|
|
519
|
-
Name of the consistency check that is performed, which is listed in an enum.
|
|
520
|
-
"""
|
|
521
|
-
severity: Severity
|
|
522
|
-
"""
|
|
523
|
-
Severity level of the problem, which is used in UI to differentiate.
|
|
524
|
-
"""
|
|
525
|
-
message: str
|
|
526
|
-
"""
|
|
527
|
-
Message generated by the consistency check describing the problem.
|
|
528
|
-
"""
|
|
529
|
-
|
|
530
|
-
|
|
531
439
|
class AssertionUnitSchema(BaseModel):
|
|
532
440
|
model_config = ConfigDict(
|
|
533
441
|
extra="allow",
|
|
@@ -579,7 +487,6 @@ class AssertionUnitSchema(BaseModel):
|
|
|
579
487
|
entity slug
|
|
580
488
|
"""
|
|
581
489
|
systemName: Optional[str] = None
|
|
582
|
-
consistencyChecks: Optional[List[ConsistencyCheck122]] = None
|
|
583
490
|
schemaVersion: Optional[str] = "2022.8.16"
|
|
584
491
|
"""
|
|
585
492
|
entity's schema version. Used to distinct between different schemas.
|
|
@@ -615,25 +522,6 @@ class Type92(Enum):
|
|
|
615
522
|
execution = "execution"
|
|
616
523
|
|
|
617
524
|
|
|
618
|
-
class ConsistencyCheck123(BaseModel):
|
|
619
|
-
key: str
|
|
620
|
-
"""
|
|
621
|
-
Key of the property of the entity on which the consistency check is performed in Mongo dot notation, e.g. 'basis.coordinates.1'
|
|
622
|
-
"""
|
|
623
|
-
name: Name
|
|
624
|
-
"""
|
|
625
|
-
Name of the consistency check that is performed, which is listed in an enum.
|
|
626
|
-
"""
|
|
627
|
-
severity: Severity
|
|
628
|
-
"""
|
|
629
|
-
Severity level of the problem, which is used in UI to differentiate.
|
|
630
|
-
"""
|
|
631
|
-
message: str
|
|
632
|
-
"""
|
|
633
|
-
Message generated by the consistency check describing the problem.
|
|
634
|
-
"""
|
|
635
|
-
|
|
636
|
-
|
|
637
525
|
class ApplicationSchemaBase(BaseModel):
|
|
638
526
|
model_config = ConfigDict(
|
|
639
527
|
extra="allow",
|
|
@@ -671,7 +559,6 @@ class ApplicationSchemaBase(BaseModel):
|
|
|
671
559
|
entity slug
|
|
672
560
|
"""
|
|
673
561
|
systemName: Optional[str] = None
|
|
674
|
-
consistencyChecks: Optional[List[ConsistencyCheck123]] = None
|
|
675
562
|
schemaVersion: Optional[str] = "2022.8.16"
|
|
676
563
|
"""
|
|
677
564
|
entity's schema version. Used to distinct between different schemas.
|
|
@@ -686,25 +573,6 @@ class ApplicationSchemaBase(BaseModel):
|
|
|
686
573
|
"""
|
|
687
574
|
|
|
688
575
|
|
|
689
|
-
class ConsistencyCheck124(BaseModel):
|
|
690
|
-
key: str
|
|
691
|
-
"""
|
|
692
|
-
Key of the property of the entity on which the consistency check is performed in Mongo dot notation, e.g. 'basis.coordinates.1'
|
|
693
|
-
"""
|
|
694
|
-
name: Name
|
|
695
|
-
"""
|
|
696
|
-
Name of the consistency check that is performed, which is listed in an enum.
|
|
697
|
-
"""
|
|
698
|
-
severity: Severity
|
|
699
|
-
"""
|
|
700
|
-
Severity level of the problem, which is used in UI to differentiate.
|
|
701
|
-
"""
|
|
702
|
-
message: str
|
|
703
|
-
"""
|
|
704
|
-
Message generated by the consistency check describing the problem.
|
|
705
|
-
"""
|
|
706
|
-
|
|
707
|
-
|
|
708
576
|
class ExecutableSchema(BaseModel):
|
|
709
577
|
name: str
|
|
710
578
|
"""
|
|
@@ -727,7 +595,6 @@ class ExecutableSchema(BaseModel):
|
|
|
727
595
|
entity slug
|
|
728
596
|
"""
|
|
729
597
|
systemName: Optional[str] = None
|
|
730
|
-
consistencyChecks: Optional[List[ConsistencyCheck124]] = None
|
|
731
598
|
schemaVersion: Optional[str] = "2022.8.16"
|
|
732
599
|
"""
|
|
733
600
|
entity's schema version. Used to distinct between different schemas.
|
|
@@ -766,25 +633,6 @@ class ExecutionUnitInputIdItemSchemaForPhysicsBasedSimulationEngines(BaseModel):
|
|
|
766
633
|
"""
|
|
767
634
|
|
|
768
635
|
|
|
769
|
-
class ConsistencyCheck125(BaseModel):
|
|
770
|
-
key: str
|
|
771
|
-
"""
|
|
772
|
-
Key of the property of the entity on which the consistency check is performed in Mongo dot notation, e.g. 'basis.coordinates.1'
|
|
773
|
-
"""
|
|
774
|
-
name: Name
|
|
775
|
-
"""
|
|
776
|
-
Name of the consistency check that is performed, which is listed in an enum.
|
|
777
|
-
"""
|
|
778
|
-
severity: Severity
|
|
779
|
-
"""
|
|
780
|
-
Severity level of the problem, which is used in UI to differentiate.
|
|
781
|
-
"""
|
|
782
|
-
message: str
|
|
783
|
-
"""
|
|
784
|
-
Message generated by the consistency check describing the problem.
|
|
785
|
-
"""
|
|
786
|
-
|
|
787
|
-
|
|
788
636
|
class FlavorSchema(BaseModel):
|
|
789
637
|
executableId: Optional[str] = None
|
|
790
638
|
"""
|
|
@@ -810,7 +658,6 @@ class FlavorSchema(BaseModel):
|
|
|
810
658
|
entity slug
|
|
811
659
|
"""
|
|
812
660
|
systemName: Optional[str] = None
|
|
813
|
-
consistencyChecks: Optional[List[ConsistencyCheck125]] = None
|
|
814
661
|
schemaVersion: Optional[str] = "2022.8.16"
|
|
815
662
|
"""
|
|
816
663
|
entity's schema version. Used to distinct between different schemas.
|
|
@@ -841,25 +688,6 @@ class FlavorSchema(BaseModel):
|
|
|
841
688
|
"""
|
|
842
689
|
|
|
843
690
|
|
|
844
|
-
class ConsistencyCheck126(BaseModel):
|
|
845
|
-
key: str
|
|
846
|
-
"""
|
|
847
|
-
Key of the property of the entity on which the consistency check is performed in Mongo dot notation, e.g. 'basis.coordinates.1'
|
|
848
|
-
"""
|
|
849
|
-
name: Name
|
|
850
|
-
"""
|
|
851
|
-
Name of the consistency check that is performed, which is listed in an enum.
|
|
852
|
-
"""
|
|
853
|
-
severity: Severity
|
|
854
|
-
"""
|
|
855
|
-
Severity level of the problem, which is used in UI to differentiate.
|
|
856
|
-
"""
|
|
857
|
-
message: str
|
|
858
|
-
"""
|
|
859
|
-
Message generated by the consistency check describing the problem.
|
|
860
|
-
"""
|
|
861
|
-
|
|
862
|
-
|
|
863
691
|
class ExecutionUnitSchemaBase(BaseModel):
|
|
864
692
|
model_config = ConfigDict(
|
|
865
693
|
extra="allow",
|
|
@@ -880,7 +708,7 @@ class ExecutionUnitSchemaBase(BaseModel):
|
|
|
880
708
|
entity identity
|
|
881
709
|
"""
|
|
882
710
|
isDraft: Optional[bool] = None
|
|
883
|
-
name:
|
|
711
|
+
name: str
|
|
884
712
|
"""
|
|
885
713
|
name of the unit. e.g. pw_scf
|
|
886
714
|
"""
|
|
@@ -910,7 +738,6 @@ class ExecutionUnitSchemaBase(BaseModel):
|
|
|
910
738
|
entity slug
|
|
911
739
|
"""
|
|
912
740
|
systemName: Optional[str] = None
|
|
913
|
-
consistencyChecks: Optional[List[ConsistencyCheck126]] = None
|
|
914
741
|
schemaVersion: Optional[str] = "2022.8.16"
|
|
915
742
|
"""
|
|
916
743
|
entity's schema version. Used to distinct between different schemas.
|
|
@@ -946,25 +773,6 @@ class Type93(Enum):
|
|
|
946
773
|
assignment = "assignment"
|
|
947
774
|
|
|
948
775
|
|
|
949
|
-
class ConsistencyCheck127(BaseModel):
|
|
950
|
-
key: str
|
|
951
|
-
"""
|
|
952
|
-
Key of the property of the entity on which the consistency check is performed in Mongo dot notation, e.g. 'basis.coordinates.1'
|
|
953
|
-
"""
|
|
954
|
-
name: Name
|
|
955
|
-
"""
|
|
956
|
-
Name of the consistency check that is performed, which is listed in an enum.
|
|
957
|
-
"""
|
|
958
|
-
severity: Severity
|
|
959
|
-
"""
|
|
960
|
-
Severity level of the problem, which is used in UI to differentiate.
|
|
961
|
-
"""
|
|
962
|
-
message: str
|
|
963
|
-
"""
|
|
964
|
-
Message generated by the consistency check describing the problem.
|
|
965
|
-
"""
|
|
966
|
-
|
|
967
|
-
|
|
968
776
|
class AssignmentUnitSchema(BaseModel):
|
|
969
777
|
model_config = ConfigDict(
|
|
970
778
|
extra="allow",
|
|
@@ -973,7 +781,7 @@ class AssignmentUnitSchema(BaseModel):
|
|
|
973
781
|
"""
|
|
974
782
|
type of the unit
|
|
975
783
|
"""
|
|
976
|
-
input:
|
|
784
|
+
input: List[WorkflowUnitInputSchema]
|
|
977
785
|
"""
|
|
978
786
|
Input information for assignment. if omitted, means that it is an initialization unit, otherwise it is an assignment.
|
|
979
787
|
"""
|
|
@@ -1020,7 +828,6 @@ class AssignmentUnitSchema(BaseModel):
|
|
|
1020
828
|
entity slug
|
|
1021
829
|
"""
|
|
1022
830
|
systemName: Optional[str] = None
|
|
1023
|
-
consistencyChecks: Optional[List[ConsistencyCheck127]] = None
|
|
1024
831
|
schemaVersion: Optional[str] = "2022.8.16"
|
|
1025
832
|
"""
|
|
1026
833
|
entity's schema version. Used to distinct between different schemas.
|
|
@@ -1057,25 +864,6 @@ class Type94(Enum):
|
|
|
1057
864
|
processing = "processing"
|
|
1058
865
|
|
|
1059
866
|
|
|
1060
|
-
class ConsistencyCheck128(BaseModel):
|
|
1061
|
-
key: str
|
|
1062
|
-
"""
|
|
1063
|
-
Key of the property of the entity on which the consistency check is performed in Mongo dot notation, e.g. 'basis.coordinates.1'
|
|
1064
|
-
"""
|
|
1065
|
-
name: Name
|
|
1066
|
-
"""
|
|
1067
|
-
Name of the consistency check that is performed, which is listed in an enum.
|
|
1068
|
-
"""
|
|
1069
|
-
severity: Severity
|
|
1070
|
-
"""
|
|
1071
|
-
Severity level of the problem, which is used in UI to differentiate.
|
|
1072
|
-
"""
|
|
1073
|
-
message: str
|
|
1074
|
-
"""
|
|
1075
|
-
Message generated by the consistency check describing the problem.
|
|
1076
|
-
"""
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
867
|
class ProcessingUnitSchema(BaseModel):
|
|
1080
868
|
model_config = ConfigDict(
|
|
1081
869
|
extra="allow",
|
|
@@ -1101,7 +889,7 @@ class ProcessingUnitSchema(BaseModel):
|
|
|
1101
889
|
entity identity
|
|
1102
890
|
"""
|
|
1103
891
|
isDraft: Optional[bool] = None
|
|
1104
|
-
name:
|
|
892
|
+
name: str
|
|
1105
893
|
"""
|
|
1106
894
|
name of the unit. e.g. pw_scf
|
|
1107
895
|
"""
|
|
@@ -1131,7 +919,6 @@ class ProcessingUnitSchema(BaseModel):
|
|
|
1131
919
|
entity slug
|
|
1132
920
|
"""
|
|
1133
921
|
systemName: Optional[str] = None
|
|
1134
|
-
consistencyChecks: Optional[List[ConsistencyCheck128]] = None
|
|
1135
922
|
schemaVersion: Optional[str] = "2022.8.16"
|
|
1136
923
|
"""
|
|
1137
924
|
entity's schema version. Used to distinct between different schemas.
|
|
@@ -1187,25 +974,6 @@ class Input(BaseModel):
|
|
|
1187
974
|
useValues: Optional[bool] = None
|
|
1188
975
|
|
|
1189
976
|
|
|
1190
|
-
class ConsistencyCheck129(BaseModel):
|
|
1191
|
-
key: str
|
|
1192
|
-
"""
|
|
1193
|
-
Key of the property of the entity on which the consistency check is performed in Mongo dot notation, e.g. 'basis.coordinates.1'
|
|
1194
|
-
"""
|
|
1195
|
-
name: Name
|
|
1196
|
-
"""
|
|
1197
|
-
Name of the consistency check that is performed, which is listed in an enum.
|
|
1198
|
-
"""
|
|
1199
|
-
severity: Severity
|
|
1200
|
-
"""
|
|
1201
|
-
Severity level of the problem, which is used in UI to differentiate.
|
|
1202
|
-
"""
|
|
1203
|
-
message: str
|
|
1204
|
-
"""
|
|
1205
|
-
Message generated by the consistency check describing the problem.
|
|
1206
|
-
"""
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
977
|
class MapUnitSchema(BaseModel):
|
|
1210
978
|
model_config = ConfigDict(
|
|
1211
979
|
extra="allow",
|
|
@@ -1227,7 +995,7 @@ class MapUnitSchema(BaseModel):
|
|
|
1227
995
|
entity identity
|
|
1228
996
|
"""
|
|
1229
997
|
isDraft: Optional[bool] = None
|
|
1230
|
-
name:
|
|
998
|
+
name: str
|
|
1231
999
|
"""
|
|
1232
1000
|
name of the unit. e.g. pw_scf
|
|
1233
1001
|
"""
|
|
@@ -1257,7 +1025,6 @@ class MapUnitSchema(BaseModel):
|
|
|
1257
1025
|
entity slug
|
|
1258
1026
|
"""
|
|
1259
1027
|
systemName: Optional[str] = None
|
|
1260
|
-
consistencyChecks: Optional[List[ConsistencyCheck129]] = None
|
|
1261
1028
|
schemaVersion: Optional[str] = "2022.8.16"
|
|
1262
1029
|
"""
|
|
1263
1030
|
entity's schema version. Used to distinct between different schemas.
|
|
@@ -1293,25 +1060,6 @@ class Type96(Enum):
|
|
|
1293
1060
|
subworkflow = "subworkflow"
|
|
1294
1061
|
|
|
1295
1062
|
|
|
1296
|
-
class ConsistencyCheck130(BaseModel):
|
|
1297
|
-
key: str
|
|
1298
|
-
"""
|
|
1299
|
-
Key of the property of the entity on which the consistency check is performed in Mongo dot notation, e.g. 'basis.coordinates.1'
|
|
1300
|
-
"""
|
|
1301
|
-
name: Name
|
|
1302
|
-
"""
|
|
1303
|
-
Name of the consistency check that is performed, which is listed in an enum.
|
|
1304
|
-
"""
|
|
1305
|
-
severity: Severity
|
|
1306
|
-
"""
|
|
1307
|
-
Severity level of the problem, which is used in UI to differentiate.
|
|
1308
|
-
"""
|
|
1309
|
-
message: str
|
|
1310
|
-
"""
|
|
1311
|
-
Message generated by the consistency check describing the problem.
|
|
1312
|
-
"""
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
1063
|
class SubworkflowUnitSchema(BaseModel):
|
|
1316
1064
|
model_config = ConfigDict(
|
|
1317
1065
|
extra="allow",
|
|
@@ -1325,7 +1073,7 @@ class SubworkflowUnitSchema(BaseModel):
|
|
|
1325
1073
|
entity identity
|
|
1326
1074
|
"""
|
|
1327
1075
|
isDraft: Optional[bool] = None
|
|
1328
|
-
name:
|
|
1076
|
+
name: str
|
|
1329
1077
|
"""
|
|
1330
1078
|
name of the unit. e.g. pw_scf
|
|
1331
1079
|
"""
|
|
@@ -1355,7 +1103,6 @@ class SubworkflowUnitSchema(BaseModel):
|
|
|
1355
1103
|
entity slug
|
|
1356
1104
|
"""
|
|
1357
1105
|
systemName: Optional[str] = None
|
|
1358
|
-
consistencyChecks: Optional[List[ConsistencyCheck130]] = None
|
|
1359
1106
|
schemaVersion: Optional[str] = "2022.8.16"
|
|
1360
1107
|
"""
|
|
1361
1108
|
entity's schema version. Used to distinct between different schemas.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# generated by datamodel-codegen:
|
|
2
2
|
# filename: workflow/unit/assertion.json
|
|
3
|
-
# version: 0.
|
|
3
|
+
# version: 0.28.5
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
|
|
@@ -22,37 +22,6 @@ class Status(Enum):
|
|
|
22
22
|
finished = "finished"
|
|
23
23
|
|
|
24
24
|
|
|
25
|
-
class Name(Enum):
|
|
26
|
-
default = "default"
|
|
27
|
-
atomsTooClose = "atomsTooClose"
|
|
28
|
-
atomsOverlap = "atomsOverlap"
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
class Severity(Enum):
|
|
32
|
-
info = "info"
|
|
33
|
-
warning = "warning"
|
|
34
|
-
error = "error"
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
class ConsistencyCheck(BaseModel):
|
|
38
|
-
key: str
|
|
39
|
-
"""
|
|
40
|
-
Key of the property of the entity on which the consistency check is performed in Mongo dot notation, e.g. 'basis.coordinates.1'
|
|
41
|
-
"""
|
|
42
|
-
name: Name
|
|
43
|
-
"""
|
|
44
|
-
Name of the consistency check that is performed, which is listed in an enum.
|
|
45
|
-
"""
|
|
46
|
-
severity: Severity
|
|
47
|
-
"""
|
|
48
|
-
Severity level of the problem, which is used in UI to differentiate.
|
|
49
|
-
"""
|
|
50
|
-
message: str
|
|
51
|
-
"""
|
|
52
|
-
Message generated by the consistency check describing the problem.
|
|
53
|
-
"""
|
|
54
|
-
|
|
55
|
-
|
|
56
25
|
class NameResultSchema(BaseModel):
|
|
57
26
|
name: str
|
|
58
27
|
"""
|
|
@@ -117,7 +86,6 @@ class AssertionUnitSchema(BaseModel):
|
|
|
117
86
|
entity slug
|
|
118
87
|
"""
|
|
119
88
|
systemName: Optional[str] = None
|
|
120
|
-
consistencyChecks: Optional[List[ConsistencyCheck]] = None
|
|
121
89
|
schemaVersion: Optional[str] = "2022.8.16"
|
|
122
90
|
"""
|
|
123
91
|
entity's schema version. Used to distinct between different schemas.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# generated by datamodel-codegen:
|
|
2
2
|
# filename: workflow/unit/assignment.json
|
|
3
|
-
# version: 0.
|
|
3
|
+
# version: 0.28.5
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
|
|
@@ -33,37 +33,6 @@ class Status(Enum):
|
|
|
33
33
|
finished = "finished"
|
|
34
34
|
|
|
35
35
|
|
|
36
|
-
class Name(Enum):
|
|
37
|
-
default = "default"
|
|
38
|
-
atomsTooClose = "atomsTooClose"
|
|
39
|
-
atomsOverlap = "atomsOverlap"
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
class Severity(Enum):
|
|
43
|
-
info = "info"
|
|
44
|
-
warning = "warning"
|
|
45
|
-
error = "error"
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
class ConsistencyCheck(BaseModel):
|
|
49
|
-
key: str
|
|
50
|
-
"""
|
|
51
|
-
Key of the property of the entity on which the consistency check is performed in Mongo dot notation, e.g. 'basis.coordinates.1'
|
|
52
|
-
"""
|
|
53
|
-
name: Name
|
|
54
|
-
"""
|
|
55
|
-
Name of the consistency check that is performed, which is listed in an enum.
|
|
56
|
-
"""
|
|
57
|
-
severity: Severity
|
|
58
|
-
"""
|
|
59
|
-
Severity level of the problem, which is used in UI to differentiate.
|
|
60
|
-
"""
|
|
61
|
-
message: str
|
|
62
|
-
"""
|
|
63
|
-
Message generated by the consistency check describing the problem.
|
|
64
|
-
"""
|
|
65
|
-
|
|
66
|
-
|
|
67
36
|
class NameResultSchema(BaseModel):
|
|
68
37
|
name: str
|
|
69
38
|
"""
|
|
@@ -132,7 +101,6 @@ class AssignmentUnitSchema(BaseModel):
|
|
|
132
101
|
entity slug
|
|
133
102
|
"""
|
|
134
103
|
systemName: Optional[str] = None
|
|
135
|
-
consistencyChecks: Optional[List[ConsistencyCheck]] = None
|
|
136
104
|
schemaVersion: Optional[str] = "2022.8.16"
|
|
137
105
|
"""
|
|
138
106
|
entity's schema version. Used to distinct between different schemas.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# generated by datamodel-codegen:
|
|
2
2
|
# filename: workflow/unit/base.json
|
|
3
|
-
# version: 0.
|
|
3
|
+
# version: 0.28.5
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
|
|
@@ -18,37 +18,6 @@ class Status(Enum):
|
|
|
18
18
|
finished = "finished"
|
|
19
19
|
|
|
20
20
|
|
|
21
|
-
class Name(Enum):
|
|
22
|
-
default = "default"
|
|
23
|
-
atomsTooClose = "atomsTooClose"
|
|
24
|
-
atomsOverlap = "atomsOverlap"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
class Severity(Enum):
|
|
28
|
-
info = "info"
|
|
29
|
-
warning = "warning"
|
|
30
|
-
error = "error"
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
class ConsistencyCheck(BaseModel):
|
|
34
|
-
key: str
|
|
35
|
-
"""
|
|
36
|
-
Key of the property of the entity on which the consistency check is performed in Mongo dot notation, e.g. 'basis.coordinates.1'
|
|
37
|
-
"""
|
|
38
|
-
name: Name
|
|
39
|
-
"""
|
|
40
|
-
Name of the consistency check that is performed, which is listed in an enum.
|
|
41
|
-
"""
|
|
42
|
-
severity: Severity
|
|
43
|
-
"""
|
|
44
|
-
Severity level of the problem, which is used in UI to differentiate.
|
|
45
|
-
"""
|
|
46
|
-
message: str
|
|
47
|
-
"""
|
|
48
|
-
Message generated by the consistency check describing the problem.
|
|
49
|
-
"""
|
|
50
|
-
|
|
51
|
-
|
|
52
21
|
class NameResultSchema(BaseModel):
|
|
53
22
|
name: str
|
|
54
23
|
"""
|
|
@@ -105,7 +74,6 @@ class WorkflowBaseUnitSchema(BaseModel):
|
|
|
105
74
|
entity slug
|
|
106
75
|
"""
|
|
107
76
|
systemName: Optional[str] = None
|
|
108
|
-
consistencyChecks: Optional[List[ConsistencyCheck]] = None
|
|
109
77
|
schemaVersion: Optional[str] = "2022.8.16"
|
|
110
78
|
"""
|
|
111
79
|
entity's schema version. Used to distinct between different schemas.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# generated by datamodel-codegen:
|
|
2
2
|
# filename: workflow/unit/condition.json
|
|
3
|
-
# version: 0.
|
|
3
|
+
# version: 0.28.5
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
|
|
@@ -33,37 +33,6 @@ class Status(Enum):
|
|
|
33
33
|
finished = "finished"
|
|
34
34
|
|
|
35
35
|
|
|
36
|
-
class Name(Enum):
|
|
37
|
-
default = "default"
|
|
38
|
-
atomsTooClose = "atomsTooClose"
|
|
39
|
-
atomsOverlap = "atomsOverlap"
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
class Severity(Enum):
|
|
43
|
-
info = "info"
|
|
44
|
-
warning = "warning"
|
|
45
|
-
error = "error"
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
class ConsistencyCheck(BaseModel):
|
|
49
|
-
key: str
|
|
50
|
-
"""
|
|
51
|
-
Key of the property of the entity on which the consistency check is performed in Mongo dot notation, e.g. 'basis.coordinates.1'
|
|
52
|
-
"""
|
|
53
|
-
name: Name
|
|
54
|
-
"""
|
|
55
|
-
Name of the consistency check that is performed, which is listed in an enum.
|
|
56
|
-
"""
|
|
57
|
-
severity: Severity
|
|
58
|
-
"""
|
|
59
|
-
Severity level of the problem, which is used in UI to differentiate.
|
|
60
|
-
"""
|
|
61
|
-
message: str
|
|
62
|
-
"""
|
|
63
|
-
Message generated by the consistency check describing the problem.
|
|
64
|
-
"""
|
|
65
|
-
|
|
66
|
-
|
|
67
36
|
class NameResultSchema(BaseModel):
|
|
68
37
|
name: str
|
|
69
38
|
"""
|
|
@@ -144,7 +113,6 @@ class ConditionUnitSchema(BaseModel):
|
|
|
144
113
|
entity slug
|
|
145
114
|
"""
|
|
146
115
|
systemName: Optional[str] = None
|
|
147
|
-
consistencyChecks: Optional[List[ConsistencyCheck]] = None
|
|
148
116
|
schemaVersion: Optional[str] = "2022.8.16"
|
|
149
117
|
"""
|
|
150
118
|
entity's schema version. Used to distinct between different schemas.
|