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,463 @@
|
|
|
1
|
+
name: nuclear_facilities
|
|
2
|
+
title: Nuclear Facilities and Infrastructure Types
|
|
3
|
+
description: 'Classifications of nuclear facilities including power plants, research reactors,
|
|
4
|
+
fuel cycle facilities, waste management facilities, and nuclear infrastructure.
|
|
5
|
+
Based on IAEA classifications and nuclear industry standards.'
|
|
6
|
+
id: https://w3id.org/linkml/valuesets/energy/nuclear/nuclear_facilities
|
|
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
|
+
NRC: https://www.nrc.gov/
|
|
14
|
+
default_prefix: valuesets
|
|
15
|
+
slots:
|
|
16
|
+
nuclear_facility_type:
|
|
17
|
+
description: Type of nuclear facility
|
|
18
|
+
range: NuclearFacilityTypeEnum
|
|
19
|
+
power_plant_status:
|
|
20
|
+
description: Operational status of nuclear power plant
|
|
21
|
+
range: PowerPlantStatusEnum
|
|
22
|
+
research_reactor_type:
|
|
23
|
+
description: Type of research reactor
|
|
24
|
+
range: ResearchReactorTypeEnum
|
|
25
|
+
fuel_cycle_facility_type:
|
|
26
|
+
description: Type of nuclear fuel cycle facility
|
|
27
|
+
range: FuelCycleFacilityTypeEnum
|
|
28
|
+
waste_facility_type:
|
|
29
|
+
description: Type of nuclear waste management facility
|
|
30
|
+
range: WasteFacilityTypeEnum
|
|
31
|
+
nuclear_ship_type:
|
|
32
|
+
description: Type of nuclear-powered vessel
|
|
33
|
+
range: NuclearShipTypeEnum
|
|
34
|
+
enums:
|
|
35
|
+
NuclearFacilityTypeEnum:
|
|
36
|
+
description: Types of nuclear facilities and infrastructure
|
|
37
|
+
permissible_values:
|
|
38
|
+
COMMERCIAL_POWER_PLANT:
|
|
39
|
+
title: Commercial Nuclear Power Plant
|
|
40
|
+
description: Large-scale commercial reactor for electricity generation
|
|
41
|
+
annotations:
|
|
42
|
+
primary_purpose: electricity generation
|
|
43
|
+
power_output: typically 300-1600 MWe
|
|
44
|
+
operator_type: utility company
|
|
45
|
+
regulatory_oversight: extensive
|
|
46
|
+
RESEARCH_REACTOR:
|
|
47
|
+
title: Research Reactor
|
|
48
|
+
description: Reactor designed for research, training, and isotope production
|
|
49
|
+
annotations:
|
|
50
|
+
primary_purpose: research, training, isotope production
|
|
51
|
+
power_output: typically <100 MWt
|
|
52
|
+
neutron_flux: optimized for research needs
|
|
53
|
+
fuel_type: various, often HEU or LEU
|
|
54
|
+
TEST_REACTOR:
|
|
55
|
+
title: Test Reactor
|
|
56
|
+
description: Reactor for testing materials and components
|
|
57
|
+
annotations:
|
|
58
|
+
primary_purpose: materials and component testing
|
|
59
|
+
test_capabilities: irradiation testing
|
|
60
|
+
neutron_spectrum: variable for testing needs
|
|
61
|
+
PROTOTYPE_REACTOR:
|
|
62
|
+
title: Prototype Reactor
|
|
63
|
+
description: Reactor for demonstrating new technology
|
|
64
|
+
annotations:
|
|
65
|
+
primary_purpose: technology demonstration
|
|
66
|
+
scale: smaller than commercial
|
|
67
|
+
innovation_focus: new reactor concepts
|
|
68
|
+
NAVAL_REACTOR:
|
|
69
|
+
title: Naval Reactor
|
|
70
|
+
description: Reactor for ship or submarine propulsion
|
|
71
|
+
annotations:
|
|
72
|
+
primary_purpose: vessel propulsion
|
|
73
|
+
compactness: highly compact design
|
|
74
|
+
fuel_enrichment: typically HEU
|
|
75
|
+
operation_mode: mobile platform
|
|
76
|
+
SPACE_REACTOR:
|
|
77
|
+
title: Space Nuclear Reactor
|
|
78
|
+
description: Reactor designed for space applications
|
|
79
|
+
annotations:
|
|
80
|
+
primary_purpose: space power or propulsion
|
|
81
|
+
mass_constraints: extremely lightweight
|
|
82
|
+
cooling: radiative cooling
|
|
83
|
+
power_output: typically <10 MWt
|
|
84
|
+
PRODUCTION_REACTOR:
|
|
85
|
+
title: Production Reactor
|
|
86
|
+
description: Reactor for producing nuclear materials
|
|
87
|
+
annotations:
|
|
88
|
+
primary_purpose: isotope or material production
|
|
89
|
+
products: tritium, plutonium, medical isotopes
|
|
90
|
+
operation_mode: specialized for production
|
|
91
|
+
URANIUM_MINE:
|
|
92
|
+
title: Uranium Mine
|
|
93
|
+
description: Facility for extracting uranium ore
|
|
94
|
+
annotations:
|
|
95
|
+
extraction_method: underground or open pit
|
|
96
|
+
product: uranium ore
|
|
97
|
+
processing: may include milling
|
|
98
|
+
URANIUM_MILL:
|
|
99
|
+
title: Uranium Mill
|
|
100
|
+
description: Facility for processing uranium ore into yellowcake
|
|
101
|
+
annotations:
|
|
102
|
+
input_material: uranium ore
|
|
103
|
+
output_product: uranium concentrate (U3O8)
|
|
104
|
+
process: chemical extraction and purification
|
|
105
|
+
CONVERSION_FACILITY:
|
|
106
|
+
title: Conversion Facility
|
|
107
|
+
description: Facility for converting yellowcake to UF6
|
|
108
|
+
annotations:
|
|
109
|
+
input_material: uranium concentrate (U3O8)
|
|
110
|
+
output_product: uranium hexafluoride (UF6)
|
|
111
|
+
process: chemical conversion
|
|
112
|
+
ENRICHMENT_FACILITY:
|
|
113
|
+
title: Enrichment Facility
|
|
114
|
+
description: Facility for increasing U-235 concentration
|
|
115
|
+
annotations:
|
|
116
|
+
input_material: natural UF6
|
|
117
|
+
output_product: enriched UF6
|
|
118
|
+
process: isotope separation (centrifuge, diffusion)
|
|
119
|
+
sensitive_technology: proliferation-sensitive
|
|
120
|
+
FUEL_FABRICATION_FACILITY:
|
|
121
|
+
title: Fuel Fabrication Facility
|
|
122
|
+
description: Facility for manufacturing nuclear fuel assemblies
|
|
123
|
+
annotations:
|
|
124
|
+
input_material: enriched UF6
|
|
125
|
+
output_product: fuel assemblies
|
|
126
|
+
process: pellet and rod manufacturing
|
|
127
|
+
REPROCESSING_FACILITY:
|
|
128
|
+
title: Reprocessing Facility
|
|
129
|
+
description: Facility for separating spent fuel components
|
|
130
|
+
annotations:
|
|
131
|
+
input_material: spent nuclear fuel
|
|
132
|
+
output_products: uranium, plutonium, waste
|
|
133
|
+
process: chemical separation (PUREX, UREX+)
|
|
134
|
+
proliferation_sensitivity: high
|
|
135
|
+
INTERIM_STORAGE_FACILITY:
|
|
136
|
+
title: Interim Storage Facility
|
|
137
|
+
description: Facility for temporary storage of nuclear materials
|
|
138
|
+
annotations:
|
|
139
|
+
storage_duration: intermediate term (5-100 years)
|
|
140
|
+
storage_medium: pools, dry casks
|
|
141
|
+
typical_materials: spent fuel, waste
|
|
142
|
+
GEOLOGICAL_REPOSITORY:
|
|
143
|
+
title: Geological Repository
|
|
144
|
+
description: Deep underground facility for permanent waste disposal
|
|
145
|
+
annotations:
|
|
146
|
+
storage_duration: permanent (thousands of years)
|
|
147
|
+
depth: typically >300 meters underground
|
|
148
|
+
waste_types: high-level waste, spent fuel
|
|
149
|
+
DECOMMISSIONING_SITE:
|
|
150
|
+
title: Decommissioning Site
|
|
151
|
+
description: Nuclear facility undergoing dismantlement
|
|
152
|
+
annotations:
|
|
153
|
+
facility_status: being dismantled
|
|
154
|
+
activities: decontamination, demolition
|
|
155
|
+
duration: typically 10-50 years
|
|
156
|
+
NUCLEAR_LABORATORY:
|
|
157
|
+
title: Nuclear Laboratory
|
|
158
|
+
description: Laboratory facility handling radioactive materials
|
|
159
|
+
annotations:
|
|
160
|
+
activities: research, analysis, small-scale production
|
|
161
|
+
materials: various radioactive substances
|
|
162
|
+
scale: laboratory scale
|
|
163
|
+
RADIOISOTOPE_PRODUCTION_FACILITY:
|
|
164
|
+
title: Radioisotope Production Facility
|
|
165
|
+
description: Facility for producing medical and industrial isotopes
|
|
166
|
+
annotations:
|
|
167
|
+
products: medical isotopes, industrial tracers
|
|
168
|
+
production_methods: reactor irradiation, accelerator
|
|
169
|
+
market: medical and industrial applications
|
|
170
|
+
PowerPlantStatusEnum:
|
|
171
|
+
description: Operational status of nuclear power plants
|
|
172
|
+
permissible_values:
|
|
173
|
+
UNDER_CONSTRUCTION:
|
|
174
|
+
title: Under Construction
|
|
175
|
+
description: Plant currently being built
|
|
176
|
+
annotations:
|
|
177
|
+
construction_phase: civil and mechanical work ongoing
|
|
178
|
+
licensing_status: construction permit issued
|
|
179
|
+
commercial_operation: not yet started
|
|
180
|
+
COMMISSIONING:
|
|
181
|
+
title: Commissioning
|
|
182
|
+
description: Plant undergoing testing before commercial operation
|
|
183
|
+
annotations:
|
|
184
|
+
testing_phase: systems testing and startup
|
|
185
|
+
fuel_loading: may have occurred
|
|
186
|
+
commercial_operation: not yet achieved
|
|
187
|
+
COMMERCIAL_OPERATION:
|
|
188
|
+
title: Commercial Operation
|
|
189
|
+
description: Plant operating commercially for electricity generation
|
|
190
|
+
annotations:
|
|
191
|
+
operational_status: fully operational
|
|
192
|
+
power_generation: commercial electricity production
|
|
193
|
+
licensing_status: operating license active
|
|
194
|
+
REFUELING_OUTAGE:
|
|
195
|
+
title: Refueling Outage
|
|
196
|
+
description: Plant temporarily shut down for fuel replacement and maintenance
|
|
197
|
+
annotations:
|
|
198
|
+
shutdown_reason: scheduled refueling
|
|
199
|
+
duration: typically 30-60 days
|
|
200
|
+
activities: fuel replacement, maintenance, inspection
|
|
201
|
+
EXTENDED_OUTAGE:
|
|
202
|
+
title: Extended Outage
|
|
203
|
+
description: Plant shut down for extended period for major work
|
|
204
|
+
annotations:
|
|
205
|
+
shutdown_duration: months to years
|
|
206
|
+
work_scope: major modifications or repairs
|
|
207
|
+
return_to_service: planned
|
|
208
|
+
PERMANENTLY_SHUTDOWN:
|
|
209
|
+
title: Permanently Shutdown
|
|
210
|
+
description: Plant permanently ceased operation
|
|
211
|
+
annotations:
|
|
212
|
+
operational_status: permanently ceased
|
|
213
|
+
fuel_removal: may be ongoing or completed
|
|
214
|
+
decommissioning: may be planned or ongoing
|
|
215
|
+
DECOMMISSIONING:
|
|
216
|
+
title: Decommissioning
|
|
217
|
+
description: Plant undergoing dismantlement
|
|
218
|
+
annotations:
|
|
219
|
+
decommissioning_phase: active dismantlement
|
|
220
|
+
radioactive_cleanup: ongoing
|
|
221
|
+
site_restoration: planned
|
|
222
|
+
DECOMMISSIONED:
|
|
223
|
+
title: Decommissioned
|
|
224
|
+
description: Plant completely dismantled and site restored
|
|
225
|
+
annotations:
|
|
226
|
+
dismantlement_status: completed
|
|
227
|
+
site_condition: restored for unrestricted use
|
|
228
|
+
radioactive_materials: removed
|
|
229
|
+
ResearchReactorTypeEnum:
|
|
230
|
+
description: Types of research reactors
|
|
231
|
+
permissible_values:
|
|
232
|
+
POOL_TYPE:
|
|
233
|
+
title: Pool-Type Research Reactor
|
|
234
|
+
description: Reactor with fuel in open pool of water
|
|
235
|
+
annotations:
|
|
236
|
+
design: open pool with underwater fuel
|
|
237
|
+
power_level: typically 1-20 MW
|
|
238
|
+
applications: neutron beam experiments, training
|
|
239
|
+
TANK_TYPE:
|
|
240
|
+
title: Tank-Type Research Reactor
|
|
241
|
+
description: Reactor with fuel in enclosed tank
|
|
242
|
+
annotations:
|
|
243
|
+
design: fuel in pressurized or unpressurized tank
|
|
244
|
+
power_level: variable
|
|
245
|
+
containment: more enclosed than pool type
|
|
246
|
+
HOMOGENEOUS:
|
|
247
|
+
title: Homogeneous Research Reactor
|
|
248
|
+
description: Reactor with fuel in liquid form
|
|
249
|
+
annotations:
|
|
250
|
+
fuel_form: aqueous solution
|
|
251
|
+
design: fuel dissolved in moderator
|
|
252
|
+
power_level: typically low
|
|
253
|
+
FAST_RESEARCH_REACTOR:
|
|
254
|
+
title: Fast Research Reactor
|
|
255
|
+
description: Research reactor using fast neutrons
|
|
256
|
+
annotations:
|
|
257
|
+
neutron_spectrum: fast neutrons
|
|
258
|
+
moderator: none or minimal
|
|
259
|
+
applications: fast neutron research
|
|
260
|
+
PULSED_REACTOR:
|
|
261
|
+
title: Pulsed Research Reactor
|
|
262
|
+
description: Reactor designed for pulsed operation
|
|
263
|
+
annotations:
|
|
264
|
+
operation_mode: short intense pulses
|
|
265
|
+
power_level: very high peak power
|
|
266
|
+
applications: transient testing, physics research
|
|
267
|
+
CRITICAL_ASSEMBLY:
|
|
268
|
+
title: Critical Assembly
|
|
269
|
+
description: Minimal reactor for criticality studies
|
|
270
|
+
annotations:
|
|
271
|
+
power_level: essentially zero
|
|
272
|
+
purpose: criticality experiments, training
|
|
273
|
+
design: minimal critical configuration
|
|
274
|
+
SUBCRITICAL_ASSEMBLY:
|
|
275
|
+
title: Subcritical Assembly
|
|
276
|
+
description: Neutron source-driven subcritical system
|
|
277
|
+
annotations:
|
|
278
|
+
criticality: subcritical
|
|
279
|
+
neutron_source: external source required
|
|
280
|
+
applications: research, training, transmutation studies
|
|
281
|
+
FuelCycleFacilityTypeEnum:
|
|
282
|
+
description: Types of nuclear fuel cycle facilities
|
|
283
|
+
permissible_values:
|
|
284
|
+
IN_SITU_LEACH_MINE:
|
|
285
|
+
title: In-Situ Leach Mine
|
|
286
|
+
description: Uranium extraction by solution mining
|
|
287
|
+
annotations:
|
|
288
|
+
extraction_method: chemical leaching in ground
|
|
289
|
+
environmental_impact: lower surface disturbance
|
|
290
|
+
geology_requirement: permeable ore deposits
|
|
291
|
+
CONVENTIONAL_MINE:
|
|
292
|
+
title: Conventional Mine
|
|
293
|
+
description: Traditional underground or open-pit uranium mining
|
|
294
|
+
annotations:
|
|
295
|
+
extraction_method: physical excavation
|
|
296
|
+
mine_types: underground or open pit
|
|
297
|
+
ore_grade: variable
|
|
298
|
+
HEAP_LEACH_FACILITY:
|
|
299
|
+
title: Heap Leach Facility
|
|
300
|
+
description: Uranium extraction from low-grade ores by heap leaching
|
|
301
|
+
annotations:
|
|
302
|
+
ore_grade: low-grade ores
|
|
303
|
+
process: chemical leaching of ore piles
|
|
304
|
+
economics: cost-effective for low grades
|
|
305
|
+
GASEOUS_DIFFUSION_PLANT:
|
|
306
|
+
title: Gaseous Diffusion Enrichment Plant
|
|
307
|
+
description: Uranium enrichment using gaseous diffusion
|
|
308
|
+
annotations:
|
|
309
|
+
enrichment_method: gaseous diffusion
|
|
310
|
+
energy_consumption: very high
|
|
311
|
+
status: mostly retired technology
|
|
312
|
+
GAS_CENTRIFUGE_PLANT:
|
|
313
|
+
title: Gas Centrifuge Enrichment Plant
|
|
314
|
+
description: Uranium enrichment using centrifuge technology
|
|
315
|
+
annotations:
|
|
316
|
+
enrichment_method: gas centrifuge
|
|
317
|
+
energy_consumption: lower than diffusion
|
|
318
|
+
technology_status: current standard technology
|
|
319
|
+
LASER_ENRICHMENT_FACILITY:
|
|
320
|
+
title: Laser Enrichment Facility
|
|
321
|
+
description: Uranium enrichment using laser isotope separation
|
|
322
|
+
annotations:
|
|
323
|
+
enrichment_method: laser isotope separation
|
|
324
|
+
technology_status: under development
|
|
325
|
+
energy_consumption: potentially lower
|
|
326
|
+
MOX_FUEL_FABRICATION:
|
|
327
|
+
title: MOX Fuel Fabrication Facility
|
|
328
|
+
description: Facility for manufacturing mixed oxide fuel
|
|
329
|
+
annotations:
|
|
330
|
+
fuel_type: mixed oxide (uranium and plutonium)
|
|
331
|
+
input_materials: plutonium dioxide, uranium dioxide
|
|
332
|
+
special_handling: plutonium handling required
|
|
333
|
+
AQUEOUS_REPROCESSING:
|
|
334
|
+
title: Aqueous Reprocessing Plant
|
|
335
|
+
description: Spent fuel reprocessing using aqueous methods
|
|
336
|
+
annotations:
|
|
337
|
+
process_type: PUREX or similar aqueous process
|
|
338
|
+
separation_products: uranium, plutonium, waste
|
|
339
|
+
technology_maturity: commercially proven
|
|
340
|
+
PYROPROCESSING_FACILITY:
|
|
341
|
+
title: Pyroprocessing Facility
|
|
342
|
+
description: Spent fuel reprocessing using electrochemical methods
|
|
343
|
+
annotations:
|
|
344
|
+
process_type: electrochemical separation
|
|
345
|
+
temperature: high temperature operation
|
|
346
|
+
technology_status: under development
|
|
347
|
+
WasteFacilityTypeEnum:
|
|
348
|
+
description: Types of nuclear waste management facilities
|
|
349
|
+
permissible_values:
|
|
350
|
+
SPENT_FUEL_POOL:
|
|
351
|
+
title: Spent Fuel Pool
|
|
352
|
+
description: Water-filled pool for cooling spent fuel
|
|
353
|
+
annotations:
|
|
354
|
+
cooling_medium: water
|
|
355
|
+
location: typically at reactor site
|
|
356
|
+
storage_duration: 5-10 years typical
|
|
357
|
+
DRY_CASK_STORAGE:
|
|
358
|
+
title: Dry Cask Storage
|
|
359
|
+
description: Air-cooled storage in sealed containers
|
|
360
|
+
annotations:
|
|
361
|
+
cooling_medium: air circulation
|
|
362
|
+
storage_duration: 20-100 years
|
|
363
|
+
location: on-site or centralized
|
|
364
|
+
CENTRALIZED_INTERIM_STORAGE:
|
|
365
|
+
title: Centralized Interim Storage Facility
|
|
366
|
+
description: Large-scale interim storage away from reactor sites
|
|
367
|
+
annotations:
|
|
368
|
+
scale: multiple reactor's worth of fuel
|
|
369
|
+
storage_duration: decades
|
|
370
|
+
transportation: rail or truck access required
|
|
371
|
+
LOW_LEVEL_WASTE_DISPOSAL:
|
|
372
|
+
title: Low-Level Waste Disposal Site
|
|
373
|
+
description: Near-surface disposal for low-level waste
|
|
374
|
+
annotations:
|
|
375
|
+
waste_category: Class A, B, C low-level waste
|
|
376
|
+
disposal_depth: near-surface (<30 meters)
|
|
377
|
+
institutional_control: 100 years minimum
|
|
378
|
+
GREATER_THAN_CLASS_C_STORAGE:
|
|
379
|
+
title: Greater Than Class C Storage
|
|
380
|
+
description: Storage for waste exceeding Class C limits
|
|
381
|
+
annotations:
|
|
382
|
+
waste_category: greater than Class C waste
|
|
383
|
+
storage_type: interim storage pending disposal
|
|
384
|
+
disposal_requirements: deep disposal likely required
|
|
385
|
+
TRANSURANIC_WASTE_REPOSITORY:
|
|
386
|
+
title: Transuranic Waste Repository
|
|
387
|
+
description: Deep geological repository for TRU waste
|
|
388
|
+
annotations:
|
|
389
|
+
waste_category: transuranic waste
|
|
390
|
+
disposal_depth: deep underground
|
|
391
|
+
example: Waste Isolation Pilot Plant (WIPP)
|
|
392
|
+
HIGH_LEVEL_WASTE_REPOSITORY:
|
|
393
|
+
title: High-Level Waste Repository
|
|
394
|
+
description: Deep geological repository for high-level waste
|
|
395
|
+
annotations:
|
|
396
|
+
waste_category: high-level waste, spent fuel
|
|
397
|
+
disposal_depth: typically >300 meters
|
|
398
|
+
containment_period: thousands of years
|
|
399
|
+
WASTE_TREATMENT_FACILITY:
|
|
400
|
+
title: Waste Treatment Facility
|
|
401
|
+
description: Facility for processing and conditioning waste
|
|
402
|
+
annotations:
|
|
403
|
+
purpose: volume reduction, stabilization
|
|
404
|
+
processes: incineration, compaction, solidification
|
|
405
|
+
output: treated waste for disposal
|
|
406
|
+
DECONTAMINATION_FACILITY:
|
|
407
|
+
title: Decontamination Facility
|
|
408
|
+
description: Facility for cleaning contaminated materials
|
|
409
|
+
annotations:
|
|
410
|
+
purpose: remove radioactive contamination
|
|
411
|
+
materials: equipment, clothing, tools
|
|
412
|
+
methods: chemical, physical decontamination
|
|
413
|
+
NuclearShipTypeEnum:
|
|
414
|
+
description: Types of nuclear-powered vessels
|
|
415
|
+
permissible_values:
|
|
416
|
+
AIRCRAFT_CARRIER:
|
|
417
|
+
title: Nuclear Aircraft Carrier
|
|
418
|
+
description: Large naval vessel with nuclear propulsion and aircraft operations
|
|
419
|
+
annotations:
|
|
420
|
+
propulsion: nuclear steam turbine
|
|
421
|
+
size: very large (>80,000 tons)
|
|
422
|
+
mission: power projection, aircraft operations
|
|
423
|
+
reactor_count: typically 2
|
|
424
|
+
SUBMARINE:
|
|
425
|
+
title: Nuclear Submarine
|
|
426
|
+
description: Underwater vessel with nuclear propulsion
|
|
427
|
+
annotations:
|
|
428
|
+
propulsion: nuclear steam turbine
|
|
429
|
+
operational_environment: submerged
|
|
430
|
+
mission: various (attack, ballistic missile, cruise missile)
|
|
431
|
+
reactor_count: typically 1
|
|
432
|
+
CRUISER:
|
|
433
|
+
title: Nuclear Cruiser
|
|
434
|
+
description: Large surface combatant with nuclear propulsion
|
|
435
|
+
annotations:
|
|
436
|
+
propulsion: nuclear steam turbine
|
|
437
|
+
mission: escort, surface warfare
|
|
438
|
+
size: large surface vessel
|
|
439
|
+
status: mostly retired
|
|
440
|
+
ICEBREAKER:
|
|
441
|
+
title: Nuclear Icebreaker
|
|
442
|
+
description: Vessel designed to break ice using nuclear power
|
|
443
|
+
annotations:
|
|
444
|
+
propulsion: nuclear steam turbine or electric
|
|
445
|
+
mission: ice breaking, Arctic operations
|
|
446
|
+
operational_environment: polar regions
|
|
447
|
+
reactor_count: 1-3
|
|
448
|
+
MERCHANT_SHIP:
|
|
449
|
+
title: Nuclear Merchant Ship
|
|
450
|
+
description: Commercial cargo vessel with nuclear propulsion
|
|
451
|
+
annotations:
|
|
452
|
+
propulsion: nuclear steam turbine
|
|
453
|
+
mission: cargo transport
|
|
454
|
+
commercial_viability: limited due to costs
|
|
455
|
+
examples: NS Savannah, few others
|
|
456
|
+
RESEARCH_VESSEL:
|
|
457
|
+
title: Nuclear Research Vessel
|
|
458
|
+
description: Ship designed for oceanographic research with nuclear power
|
|
459
|
+
annotations:
|
|
460
|
+
propulsion: nuclear
|
|
461
|
+
mission: scientific research
|
|
462
|
+
duration: extended operations without refueling
|
|
463
|
+
examples: limited number built
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
name: nuclear_fuel_cycle
|
|
2
|
+
title: Nuclear Fuel Cycle Value Sets
|
|
3
|
+
description: Value sets for nuclear fuel cycle processes and stages
|
|
4
|
+
id: https://w3id.org/common-value-sets/nuclear_fuel_cycle
|
|
5
|
+
imports:
|
|
6
|
+
- linkml:types
|
|
7
|
+
prefixes:
|
|
8
|
+
linkml: https://w3id.org/linkml/
|
|
9
|
+
valuesets: https://w3id.org/valuesets/
|
|
10
|
+
default_prefix: valuesets
|
|
11
|
+
|
|
12
|
+
slots:
|
|
13
|
+
nuclear_fuel_cycle_stage:
|
|
14
|
+
description: Stages in the nuclear fuel cycle
|
|
15
|
+
range: NuclearFuelCycleStageEnum
|
|
16
|
+
nuclear_fuel_form:
|
|
17
|
+
description: Forms of nuclear fuel at different stages
|
|
18
|
+
range: NuclearFuelFormEnum
|
|
19
|
+
enrichment_process:
|
|
20
|
+
description: Uranium enrichment processes
|
|
21
|
+
range: EnrichmentProcessEnum
|
|
22
|
+
|
|
23
|
+
enums:
|
|
24
|
+
NuclearFuelCycleStageEnum:
|
|
25
|
+
description: Stages in the nuclear fuel cycle from mining to disposal
|
|
26
|
+
permissible_values:
|
|
27
|
+
MINING:
|
|
28
|
+
description: Uranium ore mining and extraction
|
|
29
|
+
MILLING:
|
|
30
|
+
description: Processing uranium ore into yellowcake (U3O8)
|
|
31
|
+
CONVERSION:
|
|
32
|
+
description: Converting yellowcake to uranium hexafluoride (UF6)
|
|
33
|
+
ENRICHMENT:
|
|
34
|
+
description: Increasing U-235 concentration in uranium
|
|
35
|
+
FUEL_FABRICATION:
|
|
36
|
+
description: Manufacturing nuclear fuel assemblies
|
|
37
|
+
REACTOR_OPERATION:
|
|
38
|
+
description: Nuclear fission in reactor core
|
|
39
|
+
INTERIM_STORAGE:
|
|
40
|
+
description: Temporary storage of spent nuclear fuel
|
|
41
|
+
REPROCESSING:
|
|
42
|
+
description: Chemical separation of useful materials from spent fuel
|
|
43
|
+
FINAL_DISPOSAL:
|
|
44
|
+
description: Permanent disposal of nuclear waste
|
|
45
|
+
|
|
46
|
+
NuclearFuelFormEnum:
|
|
47
|
+
description: Different forms of nuclear fuel throughout the cycle
|
|
48
|
+
permissible_values:
|
|
49
|
+
URANIUM_ORE:
|
|
50
|
+
description: Natural uranium ore containing uranium minerals
|
|
51
|
+
YELLOWCAKE:
|
|
52
|
+
description: Uranium oxide concentrate (U3O8)
|
|
53
|
+
URANIUM_HEXAFLUORIDE:
|
|
54
|
+
description: Gaseous uranium compound (UF6) used for enrichment
|
|
55
|
+
ENRICHED_URANIUM:
|
|
56
|
+
description: Uranium with increased U-235 concentration
|
|
57
|
+
URANIUM_DIOXIDE:
|
|
58
|
+
description: Ceramic uranium fuel pellets (UO2)
|
|
59
|
+
FUEL_PELLETS:
|
|
60
|
+
description: Sintered uranium dioxide pellets
|
|
61
|
+
FUEL_RODS:
|
|
62
|
+
description: Zircaloy tubes containing fuel pellets
|
|
63
|
+
FUEL_ASSEMBLIES:
|
|
64
|
+
description: Bundled fuel rods ready for reactor loading
|
|
65
|
+
SPENT_FUEL:
|
|
66
|
+
description: Used nuclear fuel removed from reactor
|
|
67
|
+
MIXED_OXIDE_FUEL:
|
|
68
|
+
description: MOX fuel containing plutonium and uranium oxides
|
|
69
|
+
|
|
70
|
+
EnrichmentProcessEnum:
|
|
71
|
+
description: Methods for enriching uranium to increase U-235 concentration
|
|
72
|
+
permissible_values:
|
|
73
|
+
GAS_DIFFUSION:
|
|
74
|
+
description: Gaseous diffusion enrichment process
|
|
75
|
+
GAS_CENTRIFUGE:
|
|
76
|
+
description: Gas centrifuge enrichment process
|
|
77
|
+
LASER_ISOTOPE_SEPARATION:
|
|
78
|
+
description: Laser-based uranium isotope separation
|
|
79
|
+
ELECTROMAGNETIC_SEPARATION:
|
|
80
|
+
description: Electromagnetic isotope separation (EMIS)
|
|
81
|
+
AERODYNAMIC_SEPARATION:
|
|
82
|
+
description: Aerodynamic enrichment processes
|