valuesets 0.3.1__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 valuesets might be problematic. Click here for more details.
- valuesets/__init__.py +7 -0
- valuesets/_version.py +8 -0
- valuesets/datamodel/valuesets.py +13796 -0
- valuesets/datamodel/valuesets_dataclass.py +24503 -0
- valuesets/datamodel/valuesets_pydantic.py +13796 -0
- valuesets/enums/__init__.py +590 -0
- valuesets/enums/academic/__init__.py +1 -0
- valuesets/enums/academic/research.py +559 -0
- valuesets/enums/analytical_chemistry/__init__.py +1 -0
- valuesets/enums/analytical_chemistry/mass_spectrometry.py +198 -0
- valuesets/enums/bio/__init__.py +1 -0
- valuesets/enums/bio/biological_colors.py +238 -0
- valuesets/enums/bio/cell_cycle.py +180 -0
- valuesets/enums/bio/currency_chemicals.py +52 -0
- valuesets/enums/bio/developmental_stages.py +103 -0
- valuesets/enums/bio/genome_features.py +182 -0
- valuesets/enums/bio/genomics.py +91 -0
- valuesets/enums/bio/go_aspect.py +32 -0
- valuesets/enums/bio/go_causality.py +58 -0
- valuesets/enums/bio/go_evidence.py +129 -0
- valuesets/enums/bio/human_developmental_stages.py +62 -0
- valuesets/enums/bio/insdc_geographic_locations.py +591 -0
- valuesets/enums/bio/insdc_missing_values.py +49 -0
- valuesets/enums/bio/lipid_categories.py +67 -0
- valuesets/enums/bio/mouse_developmental_stages.py +62 -0
- valuesets/enums/bio/plant_biology.py +86 -0
- valuesets/enums/bio/plant_developmental_stages.py +54 -0
- valuesets/enums/bio/plant_sex.py +81 -0
- valuesets/enums/bio/protein_evidence.py +61 -0
- valuesets/enums/bio/proteomics_standards.py +123 -0
- valuesets/enums/bio/psi_mi.py +306 -0
- valuesets/enums/bio/relationship_to_oxygen.py +37 -0
- valuesets/enums/bio/sequence_alphabets.py +449 -0
- valuesets/enums/bio/sequence_chemistry.py +357 -0
- valuesets/enums/bio/sequencing_platforms.py +302 -0
- valuesets/enums/bio/structural_biology.py +320 -0
- valuesets/enums/bio/taxonomy.py +238 -0
- valuesets/enums/bio/trophic_levels.py +85 -0
- valuesets/enums/bio/uniprot_species.py +344 -0
- valuesets/enums/bio/viral_genome_types.py +47 -0
- valuesets/enums/bioprocessing/__init__.py +1 -0
- valuesets/enums/bioprocessing/scale_up.py +249 -0
- valuesets/enums/business/__init__.py +1 -0
- valuesets/enums/business/human_resources.py +275 -0
- valuesets/enums/business/industry_classifications.py +181 -0
- valuesets/enums/business/management_operations.py +228 -0
- valuesets/enums/business/organizational_structures.py +236 -0
- valuesets/enums/business/quality_management.py +181 -0
- valuesets/enums/business/supply_chain.py +232 -0
- valuesets/enums/chemistry/__init__.py +1 -0
- valuesets/enums/chemistry/chemical_entities.py +315 -0
- valuesets/enums/chemistry/reaction_directionality.py +65 -0
- valuesets/enums/chemistry/reactions.py +256 -0
- valuesets/enums/clinical/__init__.py +1 -0
- valuesets/enums/clinical/nih_demographics.py +177 -0
- valuesets/enums/clinical/phenopackets.py +254 -0
- valuesets/enums/common_value_sets.py +8791 -0
- valuesets/enums/computing/__init__.py +1 -0
- valuesets/enums/computing/file_formats.py +294 -0
- valuesets/enums/computing/maturity_levels.py +196 -0
- valuesets/enums/computing/mime_types.py +227 -0
- valuesets/enums/confidence_levels.py +168 -0
- valuesets/enums/contributor.py +30 -0
- valuesets/enums/core.py +42 -0
- valuesets/enums/data/__init__.py +1 -0
- valuesets/enums/data/data_absent_reason.py +53 -0
- valuesets/enums/data_science/__init__.py +1 -0
- valuesets/enums/data_science/binary_classification.py +87 -0
- valuesets/enums/data_science/emotion_classification.py +66 -0
- valuesets/enums/data_science/priority_severity.py +73 -0
- valuesets/enums/data_science/quality_control.py +46 -0
- valuesets/enums/data_science/sentiment_analysis.py +50 -0
- valuesets/enums/data_science/text_classification.py +97 -0
- valuesets/enums/demographics.py +206 -0
- valuesets/enums/ecological_interactions.py +151 -0
- valuesets/enums/energy/__init__.py +1 -0
- valuesets/enums/energy/energy.py +343 -0
- valuesets/enums/energy/fossil_fuels.py +29 -0
- valuesets/enums/energy/nuclear/__init__.py +1 -0
- valuesets/enums/energy/nuclear/nuclear_facilities.py +195 -0
- valuesets/enums/energy/nuclear/nuclear_fuel_cycle.py +96 -0
- valuesets/enums/energy/nuclear/nuclear_fuels.py +175 -0
- valuesets/enums/energy/nuclear/nuclear_operations.py +191 -0
- valuesets/enums/energy/nuclear/nuclear_regulatory.py +188 -0
- valuesets/enums/energy/nuclear/nuclear_safety.py +164 -0
- valuesets/enums/energy/nuclear/nuclear_waste.py +158 -0
- valuesets/enums/energy/nuclear/reactor_types.py +163 -0
- valuesets/enums/environmental_health/__init__.py +1 -0
- valuesets/enums/environmental_health/exposures.py +265 -0
- valuesets/enums/geography/__init__.py +1 -0
- valuesets/enums/geography/geographic_codes.py +741 -0
- valuesets/enums/health/__init__.py +12 -0
- valuesets/enums/health/vaccination.py +98 -0
- valuesets/enums/health.py +36 -0
- valuesets/enums/health_base.py +36 -0
- valuesets/enums/healthcare.py +45 -0
- valuesets/enums/industry/__init__.py +1 -0
- valuesets/enums/industry/extractive_industry.py +94 -0
- valuesets/enums/industry/mining.py +388 -0
- valuesets/enums/industry/safety_colors.py +201 -0
- valuesets/enums/investigation.py +27 -0
- valuesets/enums/materials_science/__init__.py +1 -0
- valuesets/enums/materials_science/characterization_methods.py +112 -0
- valuesets/enums/materials_science/crystal_structures.py +76 -0
- valuesets/enums/materials_science/material_properties.py +119 -0
- valuesets/enums/materials_science/material_types.py +104 -0
- valuesets/enums/materials_science/pigments_dyes.py +198 -0
- valuesets/enums/materials_science/synthesis_methods.py +109 -0
- valuesets/enums/medical/__init__.py +1 -0
- valuesets/enums/medical/clinical.py +277 -0
- valuesets/enums/medical/neuroimaging.py +119 -0
- valuesets/enums/mining_processing.py +302 -0
- valuesets/enums/physics/__init__.py +1 -0
- valuesets/enums/physics/states_of_matter.py +46 -0
- valuesets/enums/social/__init__.py +1 -0
- valuesets/enums/social/person_status.py +29 -0
- valuesets/enums/spatial/__init__.py +1 -0
- valuesets/enums/spatial/spatial_qualifiers.py +246 -0
- valuesets/enums/statistics/__init__.py +5 -0
- valuesets/enums/statistics/prediction_outcomes.py +31 -0
- valuesets/enums/statistics.py +31 -0
- valuesets/enums/time/__init__.py +1 -0
- valuesets/enums/time/temporal.py +254 -0
- valuesets/enums/units/__init__.py +1 -0
- valuesets/enums/units/measurements.py +310 -0
- valuesets/enums/visual/__init__.py +1 -0
- valuesets/enums/visual/colors.py +376 -0
- valuesets/generators/__init__.py +19 -0
- valuesets/generators/auto_slot_injector.py +280 -0
- valuesets/generators/enhanced_pydantic_generator.py +100 -0
- valuesets/generators/enum_slot_generator.py +201 -0
- valuesets/generators/modular_rich_generator.py +353 -0
- valuesets/generators/prefix_standardizer.py +198 -0
- valuesets/generators/rich_enum.py +127 -0
- valuesets/generators/rich_pydantic_generator.py +310 -0
- valuesets/generators/smart_slot_syncer.py +428 -0
- valuesets/generators/sssom_generator.py +394 -0
- valuesets/merged/merged_hierarchy.yaml +21649 -0
- valuesets/schema/README.md +3 -0
- valuesets/schema/academic/research.yaml +911 -0
- valuesets/schema/analytical_chemistry/mass_spectrometry.yaml +206 -0
- valuesets/schema/bio/bio_entities.yaml +364 -0
- valuesets/schema/bio/biological_colors.yaml +434 -0
- valuesets/schema/bio/cell_cycle.yaml +309 -0
- valuesets/schema/bio/currency_chemicals.yaml +70 -0
- valuesets/schema/bio/developmental_stages.yaml +226 -0
- valuesets/schema/bio/genome_features.yaml +342 -0
- valuesets/schema/bio/genomics.yaml +101 -0
- valuesets/schema/bio/go_aspect.yaml +39 -0
- valuesets/schema/bio/go_causality.yaml +119 -0
- valuesets/schema/bio/go_evidence.yaml +215 -0
- valuesets/schema/bio/insdc_geographic_locations.yaml +911 -0
- valuesets/schema/bio/insdc_missing_values.yaml +85 -0
- valuesets/schema/bio/lipid_categories.yaml +72 -0
- valuesets/schema/bio/plant_biology.yaml +125 -0
- valuesets/schema/bio/plant_developmental_stages.yaml +77 -0
- valuesets/schema/bio/plant_sex.yaml +108 -0
- valuesets/schema/bio/protein_evidence.yaml +63 -0
- valuesets/schema/bio/proteomics_standards.yaml +116 -0
- valuesets/schema/bio/psi_mi.yaml +400 -0
- valuesets/schema/bio/relationship_to_oxygen.yaml +46 -0
- valuesets/schema/bio/sequence_alphabets.yaml +1168 -0
- valuesets/schema/bio/sequence_chemistry.yaml +477 -0
- valuesets/schema/bio/sequencing_platforms.yaml +515 -0
- valuesets/schema/bio/structural_biology.yaml +428 -0
- valuesets/schema/bio/taxonomy.yaml +453 -0
- valuesets/schema/bio/trophic_levels.yaml +118 -0
- valuesets/schema/bio/uniprot_species.yaml +1209 -0
- valuesets/schema/bio/viral_genome_types.yaml +99 -0
- valuesets/schema/bioprocessing/scale_up.yaml +458 -0
- valuesets/schema/business/human_resources.yaml +752 -0
- valuesets/schema/business/industry_classifications.yaml +448 -0
- valuesets/schema/business/management_operations.yaml +602 -0
- valuesets/schema/business/organizational_structures.yaml +645 -0
- valuesets/schema/business/quality_management.yaml +502 -0
- valuesets/schema/business/supply_chain.yaml +688 -0
- valuesets/schema/chemistry/chemical_entities.yaml +639 -0
- valuesets/schema/chemistry/reaction_directionality.yaml +60 -0
- valuesets/schema/chemistry/reactions.yaml +442 -0
- valuesets/schema/clinical/nih_demographics.yaml +285 -0
- valuesets/schema/clinical/phenopackets.yaml +429 -0
- valuesets/schema/computing/file_formats.yaml +631 -0
- valuesets/schema/computing/maturity_levels.yaml +229 -0
- valuesets/schema/computing/mime_types.yaml +266 -0
- valuesets/schema/confidence_levels.yaml +206 -0
- valuesets/schema/contributor.yaml +30 -0
- valuesets/schema/core.yaml +55 -0
- valuesets/schema/data/data_absent_reason.yaml +82 -0
- valuesets/schema/data_science/binary_classification.yaml +125 -0
- valuesets/schema/data_science/emotion_classification.yaml +109 -0
- valuesets/schema/data_science/priority_severity.yaml +122 -0
- valuesets/schema/data_science/quality_control.yaml +68 -0
- valuesets/schema/data_science/sentiment_analysis.yaml +81 -0
- valuesets/schema/data_science/text_classification.yaml +135 -0
- valuesets/schema/demographics.yaml +238 -0
- valuesets/schema/ecological_interactions.yaml +298 -0
- valuesets/schema/energy/energy.yaml +595 -0
- valuesets/schema/energy/fossil_fuels.yaml +28 -0
- valuesets/schema/energy/nuclear/nuclear_facilities.yaml +463 -0
- valuesets/schema/energy/nuclear/nuclear_fuel_cycle.yaml +82 -0
- valuesets/schema/energy/nuclear/nuclear_fuels.yaml +421 -0
- valuesets/schema/energy/nuclear/nuclear_operations.yaml +480 -0
- valuesets/schema/energy/nuclear/nuclear_regulatory.yaml +200 -0
- valuesets/schema/energy/nuclear/nuclear_safety.yaml +352 -0
- valuesets/schema/energy/nuclear/nuclear_waste.yaml +332 -0
- valuesets/schema/energy/nuclear/reactor_types.yaml +394 -0
- valuesets/schema/environmental_health/exposures.yaml +355 -0
- valuesets/schema/generated_slots.yaml +1828 -0
- valuesets/schema/geography/geographic_codes.yaml +1018 -0
- valuesets/schema/health/vaccination.yaml +102 -0
- valuesets/schema/health.yaml +38 -0
- valuesets/schema/healthcare.yaml +53 -0
- valuesets/schema/industry/extractive_industry.yaml +89 -0
- valuesets/schema/industry/mining.yaml +888 -0
- valuesets/schema/industry/safety_colors.yaml +375 -0
- valuesets/schema/investigation.yaml +64 -0
- valuesets/schema/materials_science/characterization_methods.yaml +193 -0
- valuesets/schema/materials_science/crystal_structures.yaml +138 -0
- valuesets/schema/materials_science/material_properties.yaml +135 -0
- valuesets/schema/materials_science/material_types.yaml +151 -0
- valuesets/schema/materials_science/pigments_dyes.yaml +465 -0
- valuesets/schema/materials_science/synthesis_methods.yaml +186 -0
- valuesets/schema/medical/clinical.yaml +610 -0
- valuesets/schema/medical/neuroimaging.yaml +325 -0
- valuesets/schema/mining_processing.yaml +295 -0
- valuesets/schema/physics/states_of_matter.yaml +46 -0
- valuesets/schema/slot_mixins.yaml +143 -0
- valuesets/schema/social/person_status.yaml +28 -0
- valuesets/schema/spatial/spatial_qualifiers.yaml +466 -0
- valuesets/schema/statistics/prediction_outcomes.yaml +26 -0
- valuesets/schema/statistics.yaml +34 -0
- valuesets/schema/time/temporal.yaml +435 -0
- valuesets/schema/types.yaml +15 -0
- valuesets/schema/units/measurements.yaml +675 -0
- valuesets/schema/valuesets.yaml +100 -0
- valuesets/schema/visual/colors.yaml +778 -0
- valuesets/utils/__init__.py +6 -0
- valuesets/utils/comparison.py +102 -0
- valuesets/utils/expand_dynamic_enums.py +414 -0
- valuesets/utils/mapping_utils.py +236 -0
- valuesets/validators/__init__.py +11 -0
- valuesets/validators/enum_evaluator.py +669 -0
- valuesets/validators/oak_config.yaml +70 -0
- valuesets/validators/validate_with_ols.py +241 -0
- valuesets-0.3.1.dist-info/METADATA +395 -0
- valuesets-0.3.1.dist-info/RECORD +248 -0
- valuesets-0.3.1.dist-info/WHEEL +4 -0
- valuesets-0.3.1.dist-info/licenses/LICENSE +201 -0
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
name: crystal_structures
|
|
2
|
+
id: https://w3id.org/linkml/valuesets/materials_science/crystal_structures
|
|
3
|
+
prefixes:
|
|
4
|
+
CHEBI: http://purl.obolibrary.org/obo/CHEBI_
|
|
5
|
+
EMMO: http://emmo.info/emmo#
|
|
6
|
+
ENM: http://purl.enanomapper.org/onto/ENM_
|
|
7
|
+
PATO: http://purl.obolibrary.org/obo/PATO_
|
|
8
|
+
PROCO: http://purl.obolibrary.org/obo/PROCO_
|
|
9
|
+
# linkml_common: https://w3id.org/linkml-common/
|
|
10
|
+
valuesets: https://w3id.org/valuesets/
|
|
11
|
+
default_prefix: valuesets
|
|
12
|
+
slots:
|
|
13
|
+
crystal_system:
|
|
14
|
+
description: The seven crystal systems in crystallography
|
|
15
|
+
range: CrystalSystemEnum
|
|
16
|
+
bravais_lattice:
|
|
17
|
+
description: The 14 Bravais lattices describing all possible crystal lattices
|
|
18
|
+
range: BravaisLatticeEnum
|
|
19
|
+
enums:
|
|
20
|
+
CrystalSystemEnum:
|
|
21
|
+
description: The seven crystal systems in crystallography
|
|
22
|
+
conforms_to: https://en.wikipedia.org/wiki/Crystal_system
|
|
23
|
+
permissible_values:
|
|
24
|
+
TRICLINIC:
|
|
25
|
+
description: Crystal system with no symmetry constraints (a≠b≠c, α≠β≠γ≠90°)
|
|
26
|
+
title: Triclinic
|
|
27
|
+
meaning: ENM:9000022
|
|
28
|
+
aliases:
|
|
29
|
+
- anorthic
|
|
30
|
+
MONOCLINIC:
|
|
31
|
+
description: Crystal system with one twofold axis of symmetry (a≠b≠c, α=γ=90°≠β)
|
|
32
|
+
title: Monoclinic
|
|
33
|
+
meaning: ENM:9000029
|
|
34
|
+
ORTHORHOMBIC:
|
|
35
|
+
description: Crystal system with three mutually perpendicular axes (a≠b≠c, α=β=γ=90°)
|
|
36
|
+
title: Orthorhombic
|
|
37
|
+
meaning: ENM:9000031
|
|
38
|
+
aliases:
|
|
39
|
+
- rhombic
|
|
40
|
+
TETRAGONAL:
|
|
41
|
+
description: Crystal system with one fourfold axis (a=b≠c, α=β=γ=90°)
|
|
42
|
+
title: Tetragonal
|
|
43
|
+
meaning: ENM:9000032
|
|
44
|
+
TRIGONAL:
|
|
45
|
+
description: Crystal system with one threefold axis (a=b=c, α=β=γ≠90°)
|
|
46
|
+
title: Trigonal
|
|
47
|
+
meaning: ENM:9000054
|
|
48
|
+
aliases:
|
|
49
|
+
- rhombohedral
|
|
50
|
+
HEXAGONAL:
|
|
51
|
+
description: Crystal system with one sixfold axis (a=b≠c, α=β=90°, γ=120°)
|
|
52
|
+
title: Hexagonal
|
|
53
|
+
meaning: PATO:0002509
|
|
54
|
+
CUBIC:
|
|
55
|
+
description: Crystal system with four threefold axes (a=b=c, α=β=γ=90°)
|
|
56
|
+
title: Cubic
|
|
57
|
+
meaning: ENM:9000035
|
|
58
|
+
aliases:
|
|
59
|
+
- isometric
|
|
60
|
+
BravaisLatticeEnum:
|
|
61
|
+
description: The 14 Bravais lattices describing all possible crystal lattices
|
|
62
|
+
conforms_to: https://en.wikipedia.org/wiki/Bravais_lattice
|
|
63
|
+
permissible_values:
|
|
64
|
+
PRIMITIVE_TRICLINIC:
|
|
65
|
+
description: Primitive triclinic lattice (aP)
|
|
66
|
+
title: Primitive Triclinic
|
|
67
|
+
aliases:
|
|
68
|
+
- aP
|
|
69
|
+
PRIMITIVE_MONOCLINIC:
|
|
70
|
+
description: Primitive monoclinic lattice (mP)
|
|
71
|
+
title: Primitive Monoclinic
|
|
72
|
+
aliases:
|
|
73
|
+
- mP
|
|
74
|
+
BASE_CENTERED_MONOCLINIC:
|
|
75
|
+
description: Base-centered monoclinic lattice (mC)
|
|
76
|
+
title: Base-Centered Monoclinic
|
|
77
|
+
aliases:
|
|
78
|
+
- mC
|
|
79
|
+
- mS
|
|
80
|
+
PRIMITIVE_ORTHORHOMBIC:
|
|
81
|
+
description: Primitive orthorhombic lattice (oP)
|
|
82
|
+
title: Primitive Orthorhombic
|
|
83
|
+
aliases:
|
|
84
|
+
- oP
|
|
85
|
+
BASE_CENTERED_ORTHORHOMBIC:
|
|
86
|
+
description: Base-centered orthorhombic lattice (oC)
|
|
87
|
+
title: Base-Centered Orthorhombic
|
|
88
|
+
aliases:
|
|
89
|
+
- oC
|
|
90
|
+
- oS
|
|
91
|
+
BODY_CENTERED_ORTHORHOMBIC:
|
|
92
|
+
description: Body-centered orthorhombic lattice (oI)
|
|
93
|
+
title: Body-Centered Orthorhombic
|
|
94
|
+
aliases:
|
|
95
|
+
- oI
|
|
96
|
+
FACE_CENTERED_ORTHORHOMBIC:
|
|
97
|
+
description: Face-centered orthorhombic lattice (oF)
|
|
98
|
+
title: Face-Centered Orthorhombic
|
|
99
|
+
aliases:
|
|
100
|
+
- oF
|
|
101
|
+
PRIMITIVE_TETRAGONAL:
|
|
102
|
+
description: Primitive tetragonal lattice (tP)
|
|
103
|
+
title: Primitive Tetragonal
|
|
104
|
+
aliases:
|
|
105
|
+
- tP
|
|
106
|
+
BODY_CENTERED_TETRAGONAL:
|
|
107
|
+
description: Body-centered tetragonal lattice (tI)
|
|
108
|
+
title: Body-Centered Tetragonal
|
|
109
|
+
aliases:
|
|
110
|
+
- tI
|
|
111
|
+
PRIMITIVE_TRIGONAL:
|
|
112
|
+
description: Primitive trigonal/rhombohedral lattice (hR)
|
|
113
|
+
title: Primitive Trigonal
|
|
114
|
+
aliases:
|
|
115
|
+
- hR
|
|
116
|
+
PRIMITIVE_HEXAGONAL:
|
|
117
|
+
description: Primitive hexagonal lattice (hP)
|
|
118
|
+
title: Primitive Hexagonal
|
|
119
|
+
aliases:
|
|
120
|
+
- hP
|
|
121
|
+
PRIMITIVE_CUBIC:
|
|
122
|
+
description: Simple cubic lattice (cP)
|
|
123
|
+
title: Primitive Cubic
|
|
124
|
+
aliases:
|
|
125
|
+
- cP
|
|
126
|
+
- SC
|
|
127
|
+
BODY_CENTERED_CUBIC:
|
|
128
|
+
description: Body-centered cubic lattice (cI)
|
|
129
|
+
title: Body-Centered Cubic
|
|
130
|
+
aliases:
|
|
131
|
+
- cI
|
|
132
|
+
- BCC
|
|
133
|
+
FACE_CENTERED_CUBIC:
|
|
134
|
+
description: Face-centered cubic lattice (cF)
|
|
135
|
+
title: Face-Centered Cubic
|
|
136
|
+
aliases:
|
|
137
|
+
- cF
|
|
138
|
+
- FCC
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
name: material_properties
|
|
2
|
+
id: https://w3id.org/linkml/valuesets/materials_science/material_properties
|
|
3
|
+
prefixes:
|
|
4
|
+
CHEBI: http://purl.obolibrary.org/obo/CHEBI_
|
|
5
|
+
NCIT: http://purl.obolibrary.org/obo/NCIT_
|
|
6
|
+
PATO: http://purl.obolibrary.org/obo/PATO_
|
|
7
|
+
# linkml_common: https://w3id.org/linkml-common/
|
|
8
|
+
valuesets: https://w3id.org/valuesets/
|
|
9
|
+
default_prefix: valuesets
|
|
10
|
+
slots:
|
|
11
|
+
electrical_conductivity:
|
|
12
|
+
description: Classification of materials by electrical conductivity
|
|
13
|
+
range: ElectricalConductivityEnum
|
|
14
|
+
magnetic_property:
|
|
15
|
+
description: Classification of materials by magnetic properties
|
|
16
|
+
range: MagneticPropertyEnum
|
|
17
|
+
optical_property:
|
|
18
|
+
description: Optical properties of materials
|
|
19
|
+
range: OpticalPropertyEnum
|
|
20
|
+
thermal_conductivity:
|
|
21
|
+
description: Classification by thermal conductivity
|
|
22
|
+
range: ThermalConductivityEnum
|
|
23
|
+
mechanical_behavior:
|
|
24
|
+
description: Mechanical behavior of materials under stress
|
|
25
|
+
range: MechanicalBehaviorEnum
|
|
26
|
+
enums:
|
|
27
|
+
ElectricalConductivityEnum:
|
|
28
|
+
description: Classification of materials by electrical conductivity
|
|
29
|
+
permissible_values:
|
|
30
|
+
CONDUCTOR:
|
|
31
|
+
description: Material with high electrical conductivity (resistivity < 10^-5 Ω·m)
|
|
32
|
+
title: Conductor
|
|
33
|
+
aliases:
|
|
34
|
+
- metal
|
|
35
|
+
SEMICONDUCTOR:
|
|
36
|
+
description: Material with intermediate electrical conductivity (10^-5 to 10^8 Ω·m)
|
|
37
|
+
title: Semiconductor
|
|
38
|
+
meaning: NCIT:C172788
|
|
39
|
+
aliases:
|
|
40
|
+
- semi
|
|
41
|
+
INSULATOR:
|
|
42
|
+
description: Material with very low electrical conductivity (resistivity > 10^8 Ω·m)
|
|
43
|
+
title: Insulator
|
|
44
|
+
aliases:
|
|
45
|
+
- dielectric
|
|
46
|
+
SUPERCONDUCTOR:
|
|
47
|
+
description: Material with zero electrical resistance below critical temperature
|
|
48
|
+
title: Superconductor
|
|
49
|
+
MagneticPropertyEnum:
|
|
50
|
+
description: Classification of materials by magnetic properties
|
|
51
|
+
permissible_values:
|
|
52
|
+
DIAMAGNETIC:
|
|
53
|
+
description: Weakly repelled by magnetic fields
|
|
54
|
+
title: Diamagnetic
|
|
55
|
+
PARAMAGNETIC:
|
|
56
|
+
description: Weakly attracted to magnetic fields
|
|
57
|
+
title: Paramagnetic
|
|
58
|
+
FERROMAGNETIC:
|
|
59
|
+
description: Strongly attracted to magnetic fields, can be permanently magnetized
|
|
60
|
+
title: Ferromagnetic
|
|
61
|
+
FERRIMAGNETIC:
|
|
62
|
+
description: Similar to ferromagnetic but with opposing magnetic moments
|
|
63
|
+
title: Ferrimagnetic
|
|
64
|
+
ANTIFERROMAGNETIC:
|
|
65
|
+
description: Adjacent magnetic moments cancel each other
|
|
66
|
+
title: Antiferromagnetic
|
|
67
|
+
OpticalPropertyEnum:
|
|
68
|
+
description: Optical properties of materials
|
|
69
|
+
permissible_values:
|
|
70
|
+
TRANSPARENT:
|
|
71
|
+
description: Allows light to pass through with minimal scattering
|
|
72
|
+
title: Transparent
|
|
73
|
+
meaning: PATO:0000964
|
|
74
|
+
TRANSLUCENT:
|
|
75
|
+
description: Allows light to pass through but with significant scattering
|
|
76
|
+
title: Translucent
|
|
77
|
+
OPAQUE:
|
|
78
|
+
description: Does not allow light to pass through
|
|
79
|
+
title: Opaque
|
|
80
|
+
meaning: PATO:0000963
|
|
81
|
+
REFLECTIVE:
|
|
82
|
+
description: Reflects most incident light
|
|
83
|
+
title: Reflective
|
|
84
|
+
ABSORBING:
|
|
85
|
+
description: Absorbs most incident light
|
|
86
|
+
title: Absorbing
|
|
87
|
+
FLUORESCENT:
|
|
88
|
+
description: Emits light when excited by radiation
|
|
89
|
+
title: Fluorescent
|
|
90
|
+
PHOSPHORESCENT:
|
|
91
|
+
description: Continues to emit light after excitation stops
|
|
92
|
+
title: Phosphorescent
|
|
93
|
+
ThermalConductivityEnum:
|
|
94
|
+
description: Classification by thermal conductivity
|
|
95
|
+
permissible_values:
|
|
96
|
+
HIGH_THERMAL_CONDUCTOR:
|
|
97
|
+
description: High thermal conductivity (>100 W/m·K)
|
|
98
|
+
title: High Thermal Conductor
|
|
99
|
+
aliases:
|
|
100
|
+
- thermal conductor
|
|
101
|
+
MODERATE_THERMAL_CONDUCTOR:
|
|
102
|
+
description: Moderate thermal conductivity (1-100 W/m·K)
|
|
103
|
+
title: Moderate Thermal Conductor
|
|
104
|
+
THERMAL_INSULATOR:
|
|
105
|
+
description: Low thermal conductivity (<1 W/m·K)
|
|
106
|
+
title: Thermal Insulator
|
|
107
|
+
aliases:
|
|
108
|
+
- thermal barrier
|
|
109
|
+
MechanicalBehaviorEnum:
|
|
110
|
+
description: Mechanical behavior of materials under stress
|
|
111
|
+
permissible_values:
|
|
112
|
+
ELASTIC:
|
|
113
|
+
description: Returns to original shape after stress removal
|
|
114
|
+
title: Elastic
|
|
115
|
+
meaning: PATO:0001171
|
|
116
|
+
PLASTIC:
|
|
117
|
+
description: Undergoes permanent deformation under stress
|
|
118
|
+
title: inelastic
|
|
119
|
+
meaning: PATO:0001172
|
|
120
|
+
BRITTLE:
|
|
121
|
+
description: Breaks without significant plastic deformation
|
|
122
|
+
title: Brittle
|
|
123
|
+
meaning: PATO:0002477
|
|
124
|
+
DUCTILE:
|
|
125
|
+
description: Can be drawn into wires, undergoes large plastic deformation
|
|
126
|
+
title: Ductile
|
|
127
|
+
MALLEABLE:
|
|
128
|
+
description: Can be hammered into sheets
|
|
129
|
+
title: Malleable
|
|
130
|
+
TOUGH:
|
|
131
|
+
description: High resistance to fracture
|
|
132
|
+
title: Tough
|
|
133
|
+
VISCOELASTIC:
|
|
134
|
+
description: Exhibits both viscous and elastic characteristics
|
|
135
|
+
title: Viscoelastic
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
name: material_types
|
|
2
|
+
id: https://w3id.org/linkml/valuesets/materials_science/material_types
|
|
3
|
+
prefixes:
|
|
4
|
+
CHEBI: http://purl.obolibrary.org/obo/CHEBI_
|
|
5
|
+
ENVO: http://purl.obolibrary.org/obo/ENVO_
|
|
6
|
+
NCIT: http://purl.obolibrary.org/obo/NCIT_
|
|
7
|
+
PATO: http://purl.obolibrary.org/obo/PATO_
|
|
8
|
+
SRAO: http://www.fairsharing.org/ontology/subject/SRAO_
|
|
9
|
+
SNOMED: http://snomed.info/id/
|
|
10
|
+
# linkml_common: https://w3id.org/linkml-common/
|
|
11
|
+
valuesets: https://w3id.org/valuesets/
|
|
12
|
+
default_prefix: valuesets
|
|
13
|
+
slots:
|
|
14
|
+
material_class:
|
|
15
|
+
description: Major classes of materials
|
|
16
|
+
range: MaterialClassEnum
|
|
17
|
+
polymer_type:
|
|
18
|
+
description: Types of polymer materials
|
|
19
|
+
range: PolymerTypeEnum
|
|
20
|
+
metal_type:
|
|
21
|
+
description: Types of metallic materials
|
|
22
|
+
range: MetalTypeEnum
|
|
23
|
+
composite_type:
|
|
24
|
+
description: Types of composite materials
|
|
25
|
+
range: CompositeTypeEnum
|
|
26
|
+
enums:
|
|
27
|
+
MaterialClassEnum:
|
|
28
|
+
description: Major classes of materials
|
|
29
|
+
permissible_values:
|
|
30
|
+
METAL:
|
|
31
|
+
description: Metallic materials with metallic bonding
|
|
32
|
+
title: metallic material
|
|
33
|
+
meaning: ENVO:01001069
|
|
34
|
+
aliases:
|
|
35
|
+
- Metal
|
|
36
|
+
- METAL
|
|
37
|
+
CERAMIC:
|
|
38
|
+
description: Inorganic non-metallic materials
|
|
39
|
+
title: Ceramic
|
|
40
|
+
meaning: ENVO:03501307
|
|
41
|
+
POLYMER:
|
|
42
|
+
description: Large molecules composed of repeating units
|
|
43
|
+
title: Polymer
|
|
44
|
+
meaning: CHEBI:60027
|
|
45
|
+
COMPOSITE:
|
|
46
|
+
description: Materials made from two or more constituent materials
|
|
47
|
+
title: Composite
|
|
48
|
+
meaning: NCIT:C61520
|
|
49
|
+
SEMICONDUCTOR:
|
|
50
|
+
description: Materials with electrical conductivity between conductors and insulators
|
|
51
|
+
title: Semiconductor
|
|
52
|
+
meaning: NCIT:C172788
|
|
53
|
+
BIOMATERIAL:
|
|
54
|
+
description: Materials designed to interact with biological systems
|
|
55
|
+
title: Biomedical Material
|
|
56
|
+
meaning: NCIT:C16338
|
|
57
|
+
aliases:
|
|
58
|
+
- Biomaterial
|
|
59
|
+
- BIOMATERIAL
|
|
60
|
+
NANOMATERIAL:
|
|
61
|
+
description: Materials with at least one dimension in nanoscale (1-100 nm)
|
|
62
|
+
title: Nanomaterial
|
|
63
|
+
meaning: NCIT:C62371
|
|
64
|
+
PolymerTypeEnum:
|
|
65
|
+
description: Types of polymer materials
|
|
66
|
+
permissible_values:
|
|
67
|
+
THERMOPLASTIC:
|
|
68
|
+
description: Polymer that becomes moldable above specific temperature
|
|
69
|
+
title: Thermoplastic
|
|
70
|
+
meaning: PATO:0040070
|
|
71
|
+
THERMOSET:
|
|
72
|
+
description: Polymer that irreversibly hardens when cured
|
|
73
|
+
title: thermoset polymer
|
|
74
|
+
meaning: ENVO:06105005
|
|
75
|
+
aliases:
|
|
76
|
+
- thermosetting polymer
|
|
77
|
+
- Thermoset
|
|
78
|
+
- THERMOSET
|
|
79
|
+
ELASTOMER:
|
|
80
|
+
description: Polymer with elastic properties
|
|
81
|
+
title: Elastomer
|
|
82
|
+
meaning: SNOMED:261777007
|
|
83
|
+
aliases:
|
|
84
|
+
- rubber
|
|
85
|
+
BIOPOLYMER:
|
|
86
|
+
description: Polymer produced by living organisms
|
|
87
|
+
title: Biopolymer
|
|
88
|
+
meaning: NCIT:C73478
|
|
89
|
+
CONDUCTING_POLYMER:
|
|
90
|
+
description: Polymer that conducts electricity
|
|
91
|
+
title: Conducting Polymer
|
|
92
|
+
aliases:
|
|
93
|
+
- conducting polymer
|
|
94
|
+
MetalTypeEnum:
|
|
95
|
+
description: Types of metallic materials
|
|
96
|
+
permissible_values:
|
|
97
|
+
FERROUS:
|
|
98
|
+
description: Iron-based metals and alloys
|
|
99
|
+
title: Ferrous Metal
|
|
100
|
+
meaning: SNOMED:264354006
|
|
101
|
+
aliases:
|
|
102
|
+
- iron-based
|
|
103
|
+
NON_FERROUS:
|
|
104
|
+
description: Metals and alloys not containing iron
|
|
105
|
+
title: Non-Ferrous Metal
|
|
106
|
+
meaning: SNOMED:264879001
|
|
107
|
+
NOBLE_METAL:
|
|
108
|
+
description: Metals resistant to corrosion and oxidation
|
|
109
|
+
title: Noble Metal
|
|
110
|
+
REFRACTORY_METAL:
|
|
111
|
+
description: Metals with very high melting points (>2000°C)
|
|
112
|
+
title: Refractory Metal
|
|
113
|
+
LIGHT_METAL:
|
|
114
|
+
description: Low density metals (density < 5 g/cm³)
|
|
115
|
+
title: Light Metal
|
|
116
|
+
meaning: SNOMED:65436002
|
|
117
|
+
HEAVY_METAL:
|
|
118
|
+
description: High density metals (density > 5 g/cm³)
|
|
119
|
+
title: Heavy Metal
|
|
120
|
+
meaning: CHEBI:5631
|
|
121
|
+
CompositeTypeEnum:
|
|
122
|
+
description: Types of composite materials
|
|
123
|
+
permissible_values:
|
|
124
|
+
FIBER_REINFORCED:
|
|
125
|
+
description: Composite with fiber reinforcement
|
|
126
|
+
title: Fiber-Reinforced Composite
|
|
127
|
+
aliases:
|
|
128
|
+
- FRC
|
|
129
|
+
PARTICLE_REINFORCED:
|
|
130
|
+
description: Composite with particle reinforcement
|
|
131
|
+
title: Particle-Reinforced Composite
|
|
132
|
+
LAMINAR_COMPOSITE:
|
|
133
|
+
description: Composite with layered structure
|
|
134
|
+
title: Laminar Composite
|
|
135
|
+
aliases:
|
|
136
|
+
- laminate
|
|
137
|
+
METAL_MATRIX_COMPOSITE:
|
|
138
|
+
description: Composite with metal matrix
|
|
139
|
+
title: Metal Matrix Composite
|
|
140
|
+
aliases:
|
|
141
|
+
- MMC
|
|
142
|
+
CERAMIC_MATRIX_COMPOSITE:
|
|
143
|
+
description: Composite with ceramic matrix
|
|
144
|
+
title: Ceramic Matrix Composite
|
|
145
|
+
aliases:
|
|
146
|
+
- CMC
|
|
147
|
+
POLYMER_MATRIX_COMPOSITE:
|
|
148
|
+
description: Composite with polymer matrix
|
|
149
|
+
title: Polymer Matrix Composite
|
|
150
|
+
aliases:
|
|
151
|
+
- PMC
|