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,421 @@
|
|
|
1
|
+
name: nuclear_fuels
|
|
2
|
+
title: Nuclear Fuel Types and Classifications
|
|
3
|
+
description: 'Classifications of nuclear fuel types including uranium enrichment levels,
|
|
4
|
+
fuel forms, and alternative fuel cycles. Based on IAEA classifications, nuclear
|
|
5
|
+
fuel cycle standards, and industry specifications.'
|
|
6
|
+
id: https://w3id.org/linkml/valuesets/energy/nuclear/nuclear_fuels
|
|
7
|
+
imports:
|
|
8
|
+
- linkml:types
|
|
9
|
+
prefixes:
|
|
10
|
+
valuesets: https://w3id.org/valuesets/
|
|
11
|
+
IAEA: https://www.iaea.org/
|
|
12
|
+
WNA: https://world-nuclear.org/
|
|
13
|
+
CHEBI: http://purl.obolibrary.org/obo/CHEBI_
|
|
14
|
+
default_prefix: valuesets
|
|
15
|
+
slots:
|
|
16
|
+
nuclear_fuel_type:
|
|
17
|
+
description: Type of nuclear fuel material
|
|
18
|
+
range: NuclearFuelTypeEnum
|
|
19
|
+
uranium_enrichment_level:
|
|
20
|
+
description: Uranium-235 enrichment classification
|
|
21
|
+
range: UraniumEnrichmentLevelEnum
|
|
22
|
+
fuel_form:
|
|
23
|
+
description: Physical form of nuclear fuel
|
|
24
|
+
range: FuelFormEnum
|
|
25
|
+
fuel_assembly_type:
|
|
26
|
+
description: Type of fuel assembly configuration
|
|
27
|
+
range: FuelAssemblyTypeEnum
|
|
28
|
+
fuel_cycle_stage:
|
|
29
|
+
description: Stage in the nuclear fuel cycle
|
|
30
|
+
range: FuelCycleStageEnum
|
|
31
|
+
fissile_material:
|
|
32
|
+
description: Fissile isotope used in nuclear fuel
|
|
33
|
+
range: FissileIsotopeEnum
|
|
34
|
+
enums:
|
|
35
|
+
NuclearFuelTypeEnum:
|
|
36
|
+
description: Types of nuclear fuel materials and compositions
|
|
37
|
+
permissible_values:
|
|
38
|
+
NATURAL_URANIUM:
|
|
39
|
+
title: Natural Uranium
|
|
40
|
+
description: Uranium as found in nature (0.711% U-235)
|
|
41
|
+
aliases:
|
|
42
|
+
- Natural U
|
|
43
|
+
- Unat
|
|
44
|
+
- uranium atom
|
|
45
|
+
meaning: CHEBI:27214
|
|
46
|
+
annotations:
|
|
47
|
+
u235_content: 0.711%
|
|
48
|
+
u238_content: 99.289%
|
|
49
|
+
enrichment_required: false
|
|
50
|
+
typical_use: PHWR, some research reactors
|
|
51
|
+
LOW_ENRICHED_URANIUM:
|
|
52
|
+
title: Low Enriched Uranium (LEU)
|
|
53
|
+
description: Uranium enriched to 0.7%-20% U-235
|
|
54
|
+
aliases:
|
|
55
|
+
- LEU
|
|
56
|
+
annotations:
|
|
57
|
+
u235_content: 0.7-20%
|
|
58
|
+
proliferation_risk: low
|
|
59
|
+
typical_use: commercial power reactors
|
|
60
|
+
iaea_category: indirect use material
|
|
61
|
+
HIGH_ASSAY_LEU:
|
|
62
|
+
title: High-Assay Low Enriched Uranium (HALEU)
|
|
63
|
+
description: Uranium enriched to 5%-20% U-235
|
|
64
|
+
aliases:
|
|
65
|
+
- HALEU
|
|
66
|
+
- LEU+
|
|
67
|
+
annotations:
|
|
68
|
+
u235_content: 5-20%
|
|
69
|
+
typical_use: advanced reactors, SMRs
|
|
70
|
+
proliferation_risk: moderate
|
|
71
|
+
HIGHLY_ENRICHED_URANIUM:
|
|
72
|
+
title: Highly Enriched Uranium (HEU)
|
|
73
|
+
description: Uranium enriched to 20% or more U-235
|
|
74
|
+
aliases:
|
|
75
|
+
- HEU
|
|
76
|
+
annotations:
|
|
77
|
+
u235_content: ≥20%
|
|
78
|
+
proliferation_risk: high
|
|
79
|
+
typical_use: research reactors, naval propulsion
|
|
80
|
+
iaea_category: direct use material
|
|
81
|
+
WEAPONS_GRADE_URANIUM:
|
|
82
|
+
title: Weapons-Grade Uranium
|
|
83
|
+
description: Uranium enriched to 90% or more U-235
|
|
84
|
+
aliases:
|
|
85
|
+
- WGU
|
|
86
|
+
annotations:
|
|
87
|
+
u235_content: ≥90%
|
|
88
|
+
proliferation_risk: very high
|
|
89
|
+
typical_use: nuclear weapons, some naval reactors
|
|
90
|
+
REACTOR_GRADE_PLUTONIUM:
|
|
91
|
+
title: Reactor-Grade Plutonium
|
|
92
|
+
description: Plutonium with high Pu-240 content from spent fuel
|
|
93
|
+
aliases:
|
|
94
|
+
- RGPu
|
|
95
|
+
annotations:
|
|
96
|
+
pu239_content: "<93%"
|
|
97
|
+
pu240_content: ">7%"
|
|
98
|
+
source: spent nuclear fuel
|
|
99
|
+
typical_use: MOX fuel
|
|
100
|
+
WEAPONS_GRADE_PLUTONIUM:
|
|
101
|
+
title: Weapons-Grade Plutonium
|
|
102
|
+
description: Plutonium with low Pu-240 content
|
|
103
|
+
aliases:
|
|
104
|
+
- WGPu
|
|
105
|
+
annotations:
|
|
106
|
+
pu239_content: "≥93%"
|
|
107
|
+
pu240_content: "<7%"
|
|
108
|
+
proliferation_risk: very high
|
|
109
|
+
MOX_FUEL:
|
|
110
|
+
title: Mixed Oxide Fuel
|
|
111
|
+
description: Mixture of plutonium and uranium oxides
|
|
112
|
+
aliases:
|
|
113
|
+
- MOX
|
|
114
|
+
- Mixed Oxide
|
|
115
|
+
annotations:
|
|
116
|
+
composition: UO2 + PuO2
|
|
117
|
+
plutonium_content: 3-10%
|
|
118
|
+
typical_use: thermal reactors
|
|
119
|
+
recycling: enables plutonium recycling
|
|
120
|
+
THORIUM_FUEL:
|
|
121
|
+
title: Thorium-Based Fuel
|
|
122
|
+
description: Fuel containing thorium-232 as fertile material
|
|
123
|
+
aliases:
|
|
124
|
+
- Thorium fuel
|
|
125
|
+
- thorium
|
|
126
|
+
meaning: CHEBI:33385
|
|
127
|
+
annotations:
|
|
128
|
+
fertile_isotope: Th-232
|
|
129
|
+
fissile_product: U-233
|
|
130
|
+
abundance: more abundant than uranium
|
|
131
|
+
proliferation_resistance: high
|
|
132
|
+
TRISO_FUEL:
|
|
133
|
+
title: Tri-structural Isotropic Fuel
|
|
134
|
+
description: Coated particle fuel with multiple containment layers
|
|
135
|
+
aliases:
|
|
136
|
+
- TRISO
|
|
137
|
+
annotations:
|
|
138
|
+
form: coated particles
|
|
139
|
+
containment_layers: 4
|
|
140
|
+
meltdown_resistance: very high
|
|
141
|
+
typical_use: HTGR, some SMRs
|
|
142
|
+
LIQUID_FUEL:
|
|
143
|
+
title: Liquid Nuclear Fuel
|
|
144
|
+
description: Fuel dissolved in liquid medium
|
|
145
|
+
annotations:
|
|
146
|
+
phase: liquid
|
|
147
|
+
typical_use: molten salt reactors
|
|
148
|
+
reprocessing: online
|
|
149
|
+
METALLIC_FUEL:
|
|
150
|
+
title: Metallic Nuclear Fuel
|
|
151
|
+
description: Fuel in metallic form
|
|
152
|
+
annotations:
|
|
153
|
+
form: metal alloy
|
|
154
|
+
typical_use: fast reactors
|
|
155
|
+
thermal_conductivity: high
|
|
156
|
+
CARBIDE_FUEL:
|
|
157
|
+
title: Carbide Nuclear Fuel
|
|
158
|
+
description: Uranium or plutonium carbide fuel
|
|
159
|
+
annotations:
|
|
160
|
+
chemical_form: carbide
|
|
161
|
+
melting_point: very high
|
|
162
|
+
typical_use: advanced reactors
|
|
163
|
+
NITRIDE_FUEL:
|
|
164
|
+
title: Nitride Nuclear Fuel
|
|
165
|
+
description: Uranium or plutonium nitride fuel
|
|
166
|
+
annotations:
|
|
167
|
+
chemical_form: nitride
|
|
168
|
+
density: high
|
|
169
|
+
typical_use: fast reactors
|
|
170
|
+
UraniumEnrichmentLevelEnum:
|
|
171
|
+
description: Standard uranium-235 enrichment level classifications
|
|
172
|
+
permissible_values:
|
|
173
|
+
NATURAL:
|
|
174
|
+
title: Natural Uranium
|
|
175
|
+
description: Natural uranium enrichment (0.711% U-235)
|
|
176
|
+
annotations:
|
|
177
|
+
u235_percentage: 0.711
|
|
178
|
+
category: natural
|
|
179
|
+
separative_work: 0
|
|
180
|
+
SLIGHTLY_ENRICHED:
|
|
181
|
+
title: Slightly Enriched Uranium
|
|
182
|
+
description: Minimal enrichment above natural levels
|
|
183
|
+
annotations:
|
|
184
|
+
u235_percentage: 0.8-2.0
|
|
185
|
+
category: SEU
|
|
186
|
+
typical_use: some heavy water reactors
|
|
187
|
+
LOW_ENRICHED:
|
|
188
|
+
title: Low Enriched Uranium
|
|
189
|
+
description: Standard commercial reactor enrichment
|
|
190
|
+
annotations:
|
|
191
|
+
u235_percentage: 2.0-5.0
|
|
192
|
+
category: LEU
|
|
193
|
+
typical_use: PWR, BWR commercial reactors
|
|
194
|
+
HIGH_ASSAY_LOW_ENRICHED:
|
|
195
|
+
title: High-Assay Low Enriched Uranium
|
|
196
|
+
description: Higher enrichment for advanced reactors
|
|
197
|
+
annotations:
|
|
198
|
+
u235_percentage: 5.0-20.0
|
|
199
|
+
category: HALEU
|
|
200
|
+
typical_use: advanced reactors, SMRs
|
|
201
|
+
HIGHLY_ENRICHED:
|
|
202
|
+
title: Highly Enriched Uranium
|
|
203
|
+
description: High enrichment for research and naval reactors
|
|
204
|
+
annotations:
|
|
205
|
+
u235_percentage: 20.0-90.0
|
|
206
|
+
category: HEU
|
|
207
|
+
typical_use: research reactors, naval propulsion
|
|
208
|
+
WEAPONS_GRADE:
|
|
209
|
+
title: Weapons-Grade Uranium
|
|
210
|
+
description: Very high enrichment for weapons
|
|
211
|
+
annotations:
|
|
212
|
+
u235_percentage: 90.0+
|
|
213
|
+
category: WGU
|
|
214
|
+
proliferation_concern: extreme
|
|
215
|
+
FuelFormEnum:
|
|
216
|
+
description: Physical forms of nuclear fuel
|
|
217
|
+
permissible_values:
|
|
218
|
+
OXIDE_PELLETS:
|
|
219
|
+
title: Oxide Pellets
|
|
220
|
+
description: Ceramic uranium dioxide pellets
|
|
221
|
+
annotations:
|
|
222
|
+
chemical_form: UO2
|
|
223
|
+
shape: cylindrical pellets
|
|
224
|
+
typical_use: PWR, BWR fuel rods
|
|
225
|
+
METAL_SLUGS:
|
|
226
|
+
title: Metal Slugs
|
|
227
|
+
description: Metallic uranium fuel elements
|
|
228
|
+
annotations:
|
|
229
|
+
chemical_form: metallic uranium
|
|
230
|
+
shape: cylindrical slugs
|
|
231
|
+
typical_use: production reactors
|
|
232
|
+
COATED_PARTICLES:
|
|
233
|
+
title: Coated Particles
|
|
234
|
+
description: Microspheres with protective coatings
|
|
235
|
+
annotations:
|
|
236
|
+
structure: TRISO or BISO coated
|
|
237
|
+
size: microscopic spheres
|
|
238
|
+
typical_use: HTGR
|
|
239
|
+
LIQUID_SOLUTION:
|
|
240
|
+
title: Liquid Solution
|
|
241
|
+
description: Fuel dissolved in liquid carrier
|
|
242
|
+
annotations:
|
|
243
|
+
phase: liquid
|
|
244
|
+
typical_use: molten salt reactors
|
|
245
|
+
DISPERSION_FUEL:
|
|
246
|
+
title: Dispersion Fuel
|
|
247
|
+
description: Fuel particles dispersed in matrix
|
|
248
|
+
annotations:
|
|
249
|
+
structure: particles in matrix
|
|
250
|
+
typical_use: research reactors
|
|
251
|
+
CERMET_FUEL:
|
|
252
|
+
title: Cermet Fuel
|
|
253
|
+
description: Ceramic-metal composite fuel
|
|
254
|
+
annotations:
|
|
255
|
+
structure: ceramic in metal matrix
|
|
256
|
+
typical_use: advanced reactors
|
|
257
|
+
PLATE_FUEL:
|
|
258
|
+
title: Plate Fuel
|
|
259
|
+
description: Flat plate fuel elements
|
|
260
|
+
annotations:
|
|
261
|
+
geometry: flat plates
|
|
262
|
+
typical_use: research reactors
|
|
263
|
+
ROD_FUEL:
|
|
264
|
+
title: Rod Fuel
|
|
265
|
+
description: Cylindrical fuel rods
|
|
266
|
+
annotations:
|
|
267
|
+
geometry: long cylinders
|
|
268
|
+
typical_use: commercial power reactors
|
|
269
|
+
FuelAssemblyTypeEnum:
|
|
270
|
+
description: Types of fuel assembly configurations
|
|
271
|
+
permissible_values:
|
|
272
|
+
PWR_ASSEMBLY:
|
|
273
|
+
title: PWR Fuel Assembly
|
|
274
|
+
description: Square array fuel assembly for PWR
|
|
275
|
+
annotations:
|
|
276
|
+
geometry: square array
|
|
277
|
+
rod_count: 264-289 typical
|
|
278
|
+
control_method: control rod clusters
|
|
279
|
+
BWR_ASSEMBLY:
|
|
280
|
+
title: BWR Fuel Assembly
|
|
281
|
+
description: Square array fuel assembly for BWR
|
|
282
|
+
annotations:
|
|
283
|
+
geometry: square array with channel
|
|
284
|
+
rod_count: 49-100 typical
|
|
285
|
+
control_method: control blades
|
|
286
|
+
CANDU_BUNDLE:
|
|
287
|
+
title: CANDU Fuel Bundle
|
|
288
|
+
description: Cylindrical fuel bundle for PHWR
|
|
289
|
+
annotations:
|
|
290
|
+
geometry: cylindrical bundle
|
|
291
|
+
rod_count: 28-43 typical
|
|
292
|
+
length: ~50 cm
|
|
293
|
+
RBMK_ASSEMBLY:
|
|
294
|
+
title: RBMK Fuel Assembly
|
|
295
|
+
description: Fuel assembly for RBMK reactors
|
|
296
|
+
annotations:
|
|
297
|
+
geometry: 18-rod bundle
|
|
298
|
+
length: ~3.5 m
|
|
299
|
+
control_method: control rods
|
|
300
|
+
AGR_ASSEMBLY:
|
|
301
|
+
title: AGR Fuel Assembly
|
|
302
|
+
description: Fuel stringer for AGR
|
|
303
|
+
annotations:
|
|
304
|
+
geometry: stacked pins
|
|
305
|
+
cladding: stainless steel
|
|
306
|
+
HTGR_BLOCK:
|
|
307
|
+
title: HTGR Fuel Block
|
|
308
|
+
description: Graphite block with TRISO fuel
|
|
309
|
+
annotations:
|
|
310
|
+
geometry: hexagonal or cylindrical blocks
|
|
311
|
+
fuel_form: TRISO particles
|
|
312
|
+
FAST_REACTOR_ASSEMBLY:
|
|
313
|
+
title: Fast Reactor Assembly
|
|
314
|
+
description: Fuel assembly for fast reactors
|
|
315
|
+
annotations:
|
|
316
|
+
geometry: hexagonal wrapper
|
|
317
|
+
coolant_flow: axial
|
|
318
|
+
FuelCycleStageEnum:
|
|
319
|
+
description: Stages in the nuclear fuel cycle
|
|
320
|
+
permissible_values:
|
|
321
|
+
MINING:
|
|
322
|
+
title: Uranium Mining
|
|
323
|
+
description: Extraction of uranium ore from deposits
|
|
324
|
+
annotations:
|
|
325
|
+
process: mining and milling
|
|
326
|
+
product: uranium ore concentrate (yellowcake)
|
|
327
|
+
CONVERSION:
|
|
328
|
+
title: Conversion
|
|
329
|
+
description: Conversion of uranium concentrate to UF6
|
|
330
|
+
annotations:
|
|
331
|
+
input: U3O8 yellowcake
|
|
332
|
+
output: uranium hexafluoride (UF6)
|
|
333
|
+
ENRICHMENT:
|
|
334
|
+
title: Enrichment
|
|
335
|
+
description: Increase of U-235 concentration
|
|
336
|
+
annotations:
|
|
337
|
+
input: natural UF6
|
|
338
|
+
output: enriched UF6
|
|
339
|
+
waste: depleted uranium tails
|
|
340
|
+
FUEL_FABRICATION:
|
|
341
|
+
title: Fuel Fabrication
|
|
342
|
+
description: Manufacturing of fuel assemblies
|
|
343
|
+
annotations:
|
|
344
|
+
input: enriched UF6
|
|
345
|
+
output: fuel assemblies
|
|
346
|
+
process: pellet and rod manufacturing
|
|
347
|
+
REACTOR_OPERATION:
|
|
348
|
+
title: Reactor Operation
|
|
349
|
+
description: Power generation in nuclear reactor
|
|
350
|
+
annotations:
|
|
351
|
+
input: fresh fuel assemblies
|
|
352
|
+
output: electricity and spent fuel
|
|
353
|
+
duration: 12-24 months per cycle
|
|
354
|
+
INTERIM_STORAGE:
|
|
355
|
+
title: Interim Storage
|
|
356
|
+
description: Temporary storage of spent fuel
|
|
357
|
+
annotations:
|
|
358
|
+
purpose: cooling and decay
|
|
359
|
+
duration: 5-40+ years
|
|
360
|
+
location: reactor pools or dry casks
|
|
361
|
+
REPROCESSING:
|
|
362
|
+
title: Reprocessing
|
|
363
|
+
description: Chemical separation of spent fuel components
|
|
364
|
+
annotations:
|
|
365
|
+
input: spent nuclear fuel
|
|
366
|
+
output: uranium, plutonium, waste
|
|
367
|
+
status: practiced in some countries
|
|
368
|
+
DISPOSAL:
|
|
369
|
+
title: Disposal
|
|
370
|
+
description: Permanent disposal of nuclear waste
|
|
371
|
+
annotations:
|
|
372
|
+
method: geological repository
|
|
373
|
+
duration: permanent
|
|
374
|
+
status: under development globally
|
|
375
|
+
FissileIsotopeEnum:
|
|
376
|
+
description: Fissile isotopes used in nuclear fuel
|
|
377
|
+
permissible_values:
|
|
378
|
+
URANIUM_233:
|
|
379
|
+
title: Uranium-233
|
|
380
|
+
description: Fissile isotope produced from thorium
|
|
381
|
+
aliases:
|
|
382
|
+
- U-233
|
|
383
|
+
# No specific CHEBI ID for U-233 isotope
|
|
384
|
+
annotations:
|
|
385
|
+
mass_number: 233
|
|
386
|
+
half_life: 159,200 years
|
|
387
|
+
thermal_fission: yes
|
|
388
|
+
breeding_from: Th-232
|
|
389
|
+
URANIUM_235:
|
|
390
|
+
title: Uranium-235
|
|
391
|
+
description: Naturally occurring fissile uranium isotope
|
|
392
|
+
aliases:
|
|
393
|
+
- U-235
|
|
394
|
+
# No specific CHEBI ID for U-235 isotope
|
|
395
|
+
annotations:
|
|
396
|
+
mass_number: 235
|
|
397
|
+
half_life: 703,800,000 years
|
|
398
|
+
natural_abundance: 0.711%
|
|
399
|
+
thermal_fission: yes
|
|
400
|
+
PLUTONIUM_239:
|
|
401
|
+
title: Plutonium-239
|
|
402
|
+
description: Fissile plutonium isotope from U-238 breeding
|
|
403
|
+
aliases:
|
|
404
|
+
- Pu-239
|
|
405
|
+
# No specific CHEBI ID for Pu-239 isotope
|
|
406
|
+
annotations:
|
|
407
|
+
mass_number: 239
|
|
408
|
+
half_life: 24,110 years
|
|
409
|
+
thermal_fission: yes
|
|
410
|
+
breeding_from: U-238
|
|
411
|
+
PLUTONIUM_241:
|
|
412
|
+
title: Plutonium-241
|
|
413
|
+
description: Fissile plutonium isotope with short half-life
|
|
414
|
+
aliases:
|
|
415
|
+
- Pu-241
|
|
416
|
+
# No specific CHEBI ID for Pu-241 isotope
|
|
417
|
+
annotations:
|
|
418
|
+
mass_number: 241
|
|
419
|
+
half_life: 14.3 years
|
|
420
|
+
thermal_fission: yes
|
|
421
|
+
decay_product: Am-241
|