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,158 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Nuclear Waste Classifications
|
|
3
|
+
|
|
4
|
+
Classifications of radioactive waste based on IAEA standards, NRC 10 CFR 61 classifications, and international waste management standards. Includes activity levels, disposal requirements, and time scales.
|
|
5
|
+
|
|
6
|
+
Generated from: energy/nuclear/nuclear_waste.yaml
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
from __future__ import annotations
|
|
10
|
+
|
|
11
|
+
from typing import Dict, Any, Optional
|
|
12
|
+
from valuesets.generators.rich_enum import RichEnum
|
|
13
|
+
|
|
14
|
+
class IAEAWasteClassificationEnum(RichEnum):
|
|
15
|
+
"""
|
|
16
|
+
IAEA General Safety Requirements radioactive waste classification scheme
|
|
17
|
+
"""
|
|
18
|
+
# Enum members
|
|
19
|
+
EXEMPT_WASTE = "EXEMPT_WASTE"
|
|
20
|
+
VERY_SHORT_LIVED_WASTE = "VERY_SHORT_LIVED_WASTE"
|
|
21
|
+
VERY_LOW_LEVEL_WASTE = "VERY_LOW_LEVEL_WASTE"
|
|
22
|
+
LOW_LEVEL_WASTE = "LOW_LEVEL_WASTE"
|
|
23
|
+
INTERMEDIATE_LEVEL_WASTE = "INTERMEDIATE_LEVEL_WASTE"
|
|
24
|
+
HIGH_LEVEL_WASTE = "HIGH_LEVEL_WASTE"
|
|
25
|
+
|
|
26
|
+
# Set metadata after class creation
|
|
27
|
+
IAEAWasteClassificationEnum._metadata = {
|
|
28
|
+
"EXEMPT_WASTE": {'description': 'Waste with negligible radioactivity requiring no regulatory control', 'annotations': {'regulatory_control': 'none required', 'clearance': 'can be cleared from regulatory control', 'disposal': 'as ordinary waste', 'activity_level': 'negligible'}, 'aliases': ['EW']},
|
|
29
|
+
"VERY_SHORT_LIVED_WASTE": {'description': 'Waste stored for decay to exempt levels within few years', 'annotations': {'storage_period': 'up to few years', 'decay_strategy': 'storage for decay', 'clearance': 'after decay period', 'typical_sources': 'medical, research isotopes'}, 'aliases': ['VSLW']},
|
|
30
|
+
"VERY_LOW_LEVEL_WASTE": {'description': 'Waste requiring limited containment and isolation', 'annotations': {'containment_requirement': 'limited', 'disposal': 'near-surface landfill-type', 'activity_level': 'very low but above exempt', 'isolation_period': 'limited'}, 'aliases': ['VLLW']},
|
|
31
|
+
"LOW_LEVEL_WASTE": {'description': 'Waste requiring containment for up to hundreds of years', 'annotations': {'containment_period': 'up to few hundred years', 'disposal': 'near-surface disposal', 'activity_level': 'low', 'heat_generation': 'negligible'}, 'aliases': ['LLW']},
|
|
32
|
+
"INTERMEDIATE_LEVEL_WASTE": {'description': 'Waste requiring containment for thousands of years', 'annotations': {'containment_period': 'up to thousands of years', 'disposal': 'geological disposal', 'activity_level': 'intermediate', 'heat_generation': 'low (<2 kW/m³)', 'shielding': 'required'}, 'aliases': ['ILW']},
|
|
33
|
+
"HIGH_LEVEL_WASTE": {'description': 'Waste requiring containment for thousands to hundreds of thousands of years', 'annotations': {'containment_period': 'thousands to hundreds of thousands of years', 'disposal': 'geological disposal', 'activity_level': 'high', 'heat_generation': 'significant (>2 kW/m³)', 'cooling': 'required', 'shielding': 'heavy shielding required'}, 'aliases': ['HLW']},
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
class NRCWasteClassEnum(RichEnum):
|
|
37
|
+
"""
|
|
38
|
+
US NRC 10 CFR 61 low-level radioactive waste classification
|
|
39
|
+
"""
|
|
40
|
+
# Enum members
|
|
41
|
+
CLASS_A = "CLASS_A"
|
|
42
|
+
CLASS_B = "CLASS_B"
|
|
43
|
+
CLASS_C = "CLASS_C"
|
|
44
|
+
GREATER_THAN_CLASS_C = "GREATER_THAN_CLASS_C"
|
|
45
|
+
|
|
46
|
+
# Set metadata after class creation
|
|
47
|
+
NRCWasteClassEnum._metadata = {
|
|
48
|
+
"CLASS_A": {'description': 'Lowest radioactivity waste suitable for shallow land burial', 'annotations': {'disposal_method': 'shallow land burial', 'segregation_requirements': 'minimal', 'waste_form_requirements': 'none', 'typical_sources': 'medical, industrial, power plants', 'concentration_limits': 'lowest of three classes'}},
|
|
49
|
+
"CLASS_B": {'description': 'Intermediate radioactivity requiring waste form stability', 'annotations': {'disposal_method': 'shallow land burial', 'segregation_requirements': 'from Class A', 'waste_form_requirements': 'structural stability', 'institutional_control': '100 years minimum', 'concentration_limits': 'intermediate'}},
|
|
50
|
+
"CLASS_C": {'description': 'Highest concentration suitable for shallow land burial', 'annotations': {'disposal_method': 'shallow land burial', 'segregation_requirements': 'enhanced', 'waste_form_requirements': 'structural stability', 'institutional_control': '100 years minimum', 'intruder_barriers': 'required', 'concentration_limits': 'highest for shallow burial'}},
|
|
51
|
+
"GREATER_THAN_CLASS_C": {'description': 'Waste exceeding Class C limits, generally unsuitable for shallow burial', 'annotations': {'disposal_method': 'case-by-case evaluation', 'shallow_burial': 'generally not acceptable', 'deep_disposal': 'may be required', 'nrc_evaluation': 'required', 'concentration_limits': 'exceeds Class C'}, 'aliases': ['GTCC']},
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
class WasteHeatGenerationEnum(RichEnum):
|
|
55
|
+
"""
|
|
56
|
+
Heat generation categories for radioactive waste
|
|
57
|
+
"""
|
|
58
|
+
# Enum members
|
|
59
|
+
NEGLIGIBLE_HEAT = "NEGLIGIBLE_HEAT"
|
|
60
|
+
LOW_HEAT = "LOW_HEAT"
|
|
61
|
+
HIGH_HEAT = "HIGH_HEAT"
|
|
62
|
+
|
|
63
|
+
# Set metadata after class creation
|
|
64
|
+
WasteHeatGenerationEnum._metadata = {
|
|
65
|
+
"NEGLIGIBLE_HEAT": {'description': 'Waste generating negligible heat', 'annotations': {'heat_output': '<0.1 kW/m³', 'cooling_required': False, 'thermal_consideration': 'minimal'}},
|
|
66
|
+
"LOW_HEAT": {'description': 'Waste generating low but measurable heat', 'annotations': {'heat_output': '0.1-2 kW/m³', 'cooling_required': 'minimal', 'thermal_consideration': 'some design consideration'}},
|
|
67
|
+
"HIGH_HEAT": {'description': 'Waste generating significant heat requiring thermal management', 'annotations': {'heat_output': '>2 kW/m³', 'cooling_required': True, 'thermal_consideration': 'major design factor', 'typical_waste': 'spent nuclear fuel, HLW glass'}},
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
class WasteHalfLifeCategoryEnum(RichEnum):
|
|
71
|
+
"""
|
|
72
|
+
Half-life categories for radioactive waste classification
|
|
73
|
+
"""
|
|
74
|
+
# Enum members
|
|
75
|
+
VERY_SHORT_LIVED = "VERY_SHORT_LIVED"
|
|
76
|
+
SHORT_LIVED = "SHORT_LIVED"
|
|
77
|
+
LONG_LIVED = "LONG_LIVED"
|
|
78
|
+
|
|
79
|
+
# Set metadata after class creation
|
|
80
|
+
WasteHalfLifeCategoryEnum._metadata = {
|
|
81
|
+
"VERY_SHORT_LIVED": {'description': 'Radionuclides with very short half-lives', 'annotations': {'half_life_range': 'seconds to days', 'decay_strategy': 'storage for decay', 'typical_examples': 'medical isotopes, some activation products'}},
|
|
82
|
+
"SHORT_LIVED": {'description': 'Radionuclides with short half-lives', 'annotations': {'half_life_range': '<30 years', 'containment_period': 'hundreds of years', 'decay_significance': 'significant over containment period'}},
|
|
83
|
+
"LONG_LIVED": {'description': 'Radionuclides with long half-lives', 'annotations': {'half_life_range': '>30 years', 'containment_period': 'thousands to millions of years', 'decay_significance': 'minimal over human timescales', 'examples': 'actinides, some fission products'}},
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
class WasteDisposalMethodEnum(RichEnum):
|
|
87
|
+
"""
|
|
88
|
+
Methods for radioactive waste disposal
|
|
89
|
+
"""
|
|
90
|
+
# Enum members
|
|
91
|
+
CLEARANCE = "CLEARANCE"
|
|
92
|
+
DECAY_STORAGE = "DECAY_STORAGE"
|
|
93
|
+
NEAR_SURFACE_DISPOSAL = "NEAR_SURFACE_DISPOSAL"
|
|
94
|
+
GEOLOGICAL_DISPOSAL = "GEOLOGICAL_DISPOSAL"
|
|
95
|
+
BOREHOLE_DISPOSAL = "BOREHOLE_DISPOSAL"
|
|
96
|
+
TRANSMUTATION = "TRANSMUTATION"
|
|
97
|
+
|
|
98
|
+
# Set metadata after class creation
|
|
99
|
+
WasteDisposalMethodEnum._metadata = {
|
|
100
|
+
"CLEARANCE": {'description': 'Release from regulatory control as ordinary waste', 'annotations': {'regulatory_oversight': 'none after clearance', 'waste_category': 'exempt waste', 'disposal_location': 'conventional facilities'}},
|
|
101
|
+
"DECAY_STORAGE": {'description': 'Storage for radioactive decay to exempt levels', 'annotations': {'storage_duration': 'typically <10 years', 'waste_category': 'very short-lived waste', 'final_disposal': 'as ordinary waste after decay'}},
|
|
102
|
+
"NEAR_SURFACE_DISPOSAL": {'description': 'Disposal in engineered near-surface facilities', 'annotations': {'depth': 'typically <30 meters', 'waste_categories': 'VLLW, LLW, some ILW', 'institutional_control': '100-300 years', 'barriers': 'engineered barriers'}},
|
|
103
|
+
"GEOLOGICAL_DISPOSAL": {'description': 'Deep underground disposal in stable geological formations', 'annotations': {'depth': 'typically >300 meters', 'waste_categories': 'HLW, long-lived ILW, spent fuel', 'containment_period': 'thousands to millions of years', 'barriers': 'multiple barriers including geology'}},
|
|
104
|
+
"BOREHOLE_DISPOSAL": {'description': 'Disposal in deep boreholes', 'annotations': {'depth': '1-5 kilometers', 'waste_categories': 'disused sealed sources, some HLW', 'isolation': 'extreme depth isolation'}},
|
|
105
|
+
"TRANSMUTATION": {'description': 'Nuclear transformation to shorter-lived or stable isotopes', 'annotations': {'method': 'accelerator-driven systems or fast reactors', 'waste_categories': 'long-lived actinides', 'status': 'research and development'}},
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
class WasteSourceEnum(RichEnum):
|
|
109
|
+
"""
|
|
110
|
+
Sources of radioactive waste generation
|
|
111
|
+
"""
|
|
112
|
+
# Enum members
|
|
113
|
+
NUCLEAR_POWER_PLANTS = "NUCLEAR_POWER_PLANTS"
|
|
114
|
+
MEDICAL_APPLICATIONS = "MEDICAL_APPLICATIONS"
|
|
115
|
+
INDUSTRIAL_APPLICATIONS = "INDUSTRIAL_APPLICATIONS"
|
|
116
|
+
RESEARCH_FACILITIES = "RESEARCH_FACILITIES"
|
|
117
|
+
NUCLEAR_WEAPONS_PROGRAM = "NUCLEAR_WEAPONS_PROGRAM"
|
|
118
|
+
DECOMMISSIONING = "DECOMMISSIONING"
|
|
119
|
+
URANIUM_MINING = "URANIUM_MINING"
|
|
120
|
+
FUEL_CYCLE_FACILITIES = "FUEL_CYCLE_FACILITIES"
|
|
121
|
+
|
|
122
|
+
# Set metadata after class creation
|
|
123
|
+
WasteSourceEnum._metadata = {
|
|
124
|
+
"NUCLEAR_POWER_PLANTS": {'description': 'Waste from commercial nuclear power generation', 'annotations': {'waste_types': 'spent fuel, operational waste, decommissioning waste', 'volume_fraction': 'largest single source', 'waste_classes': 'all classes including HLW'}},
|
|
125
|
+
"MEDICAL_APPLICATIONS": {'description': 'Waste from nuclear medicine and radiotherapy', 'annotations': {'waste_types': 'short-lived medical isotopes, sealed sources', 'typical_classification': 'Class A, VSLW', 'decay_strategy': 'often storage for decay'}},
|
|
126
|
+
"INDUSTRIAL_APPLICATIONS": {'description': 'Waste from industrial use of radioactive materials', 'annotations': {'applications': 'gauging, radiography, sterilization', 'waste_types': 'sealed sources, contaminated equipment', 'typical_classification': 'Class A and B'}},
|
|
127
|
+
"RESEARCH_FACILITIES": {'description': 'Waste from research reactors and laboratories', 'annotations': {'waste_types': 'activation products, contaminated materials', 'typical_classification': 'Class A, B, and C', 'fuel_type': 'often HEU spent fuel'}},
|
|
128
|
+
"NUCLEAR_WEAPONS_PROGRAM": {'description': 'Waste from defense nuclear activities', 'annotations': {'waste_types': 'TRU waste, HLW, contaminated equipment', 'legacy_waste': 'significant volumes from past activities', 'classification': 'all classes including TRU'}},
|
|
129
|
+
"DECOMMISSIONING": {'description': 'Waste from dismantling nuclear facilities', 'annotations': {'waste_types': 'activated concrete, contaminated metal', 'volume': 'large volumes of VLLW and LLW', 'activity_level': 'generally low level'}},
|
|
130
|
+
"URANIUM_MINING": {'description': 'Waste from uranium extraction and processing', 'annotations': {'waste_types': 'tailings, contaminated equipment', 'volume': 'very large volumes', 'activity_level': 'naturally occurring radioactivity'}},
|
|
131
|
+
"FUEL_CYCLE_FACILITIES": {'description': 'Waste from fuel fabrication, enrichment, and reprocessing', 'annotations': {'waste_types': 'contaminated equipment, process waste', 'classification': 'variable depending on process', 'uranium_content': 'often contains enriched uranium'}},
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
class TransuranicWasteCategoryEnum(RichEnum):
|
|
135
|
+
"""
|
|
136
|
+
Transuranic waste classifications (US system)
|
|
137
|
+
"""
|
|
138
|
+
# Enum members
|
|
139
|
+
CONTACT_HANDLED_TRU = "CONTACT_HANDLED_TRU"
|
|
140
|
+
REMOTE_HANDLED_TRU = "REMOTE_HANDLED_TRU"
|
|
141
|
+
TRU_MIXED_WASTE = "TRU_MIXED_WASTE"
|
|
142
|
+
|
|
143
|
+
# Set metadata after class creation
|
|
144
|
+
TransuranicWasteCategoryEnum._metadata = {
|
|
145
|
+
"CONTACT_HANDLED_TRU": {'description': 'TRU waste with surface dose rate ≤200 mrem/hr', 'annotations': {'dose_rate': '≤200 mrem/hr at surface', 'handling': 'direct contact possible with protection', 'disposal': 'geological repository (WIPP)', 'plutonium_content': '>100 nCi/g'}, 'aliases': ['CH-TRU']},
|
|
146
|
+
"REMOTE_HANDLED_TRU": {'description': 'TRU waste with surface dose rate >200 mrem/hr', 'annotations': {'dose_rate': '>200 mrem/hr at surface', 'handling': 'remote handling required', 'disposal': 'geological repository with additional shielding', 'plutonium_content': '>100 nCi/g'}, 'aliases': ['RH-TRU']},
|
|
147
|
+
"TRU_MIXED_WASTE": {'description': 'TRU waste also containing hazardous chemical components', 'annotations': {'regulation': 'both radiological and chemical hazard regulations', 'treatment': 'may require chemical treatment before disposal', 'disposal': 'geological repository after treatment', 'complexity': 'dual regulatory framework'}},
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
__all__ = [
|
|
151
|
+
"IAEAWasteClassificationEnum",
|
|
152
|
+
"NRCWasteClassEnum",
|
|
153
|
+
"WasteHeatGenerationEnum",
|
|
154
|
+
"WasteHalfLifeCategoryEnum",
|
|
155
|
+
"WasteDisposalMethodEnum",
|
|
156
|
+
"WasteSourceEnum",
|
|
157
|
+
"TransuranicWasteCategoryEnum",
|
|
158
|
+
]
|
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Nuclear Reactor Types and Classifications
|
|
3
|
+
|
|
4
|
+
Classifications of nuclear reactor types based on coolant, moderator, neutron spectrum, and generational designs. Based on World Nuclear Association classifications, IAEA reactor types, and industry standards.
|
|
5
|
+
|
|
6
|
+
Generated from: energy/nuclear/reactor_types.yaml
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
from __future__ import annotations
|
|
10
|
+
|
|
11
|
+
from typing import Dict, Any, Optional
|
|
12
|
+
from valuesets.generators.rich_enum import RichEnum
|
|
13
|
+
|
|
14
|
+
class ReactorTypeEnum(RichEnum):
|
|
15
|
+
"""
|
|
16
|
+
Nuclear reactor types based on design and operational characteristics
|
|
17
|
+
"""
|
|
18
|
+
# Enum members
|
|
19
|
+
PWR = "PWR"
|
|
20
|
+
BWR = "BWR"
|
|
21
|
+
PHWR = "PHWR"
|
|
22
|
+
LWGR = "LWGR"
|
|
23
|
+
AGR = "AGR"
|
|
24
|
+
GCR = "GCR"
|
|
25
|
+
FBR = "FBR"
|
|
26
|
+
HTGR = "HTGR"
|
|
27
|
+
MSR = "MSR"
|
|
28
|
+
SMR = "SMR"
|
|
29
|
+
VHTR = "VHTR"
|
|
30
|
+
SFR = "SFR"
|
|
31
|
+
LFR = "LFR"
|
|
32
|
+
GFR = "GFR"
|
|
33
|
+
SCWR = "SCWR"
|
|
34
|
+
|
|
35
|
+
# Set metadata after class creation
|
|
36
|
+
ReactorTypeEnum._metadata = {
|
|
37
|
+
"PWR": {'description': 'Most common reactor type using light water under pressure', 'annotations': {'coolant': 'light water', 'moderator': 'light water', 'pressure': 'high', 'steam_generation': 'indirect', 'worldwide_count': '~300', 'fuel_enrichment': '3-5%'}, 'aliases': ['Pressurized Water Reactor']},
|
|
38
|
+
"BWR": {'description': 'Light water reactor where water boils directly in core', 'annotations': {'coolant': 'light water', 'moderator': 'light water', 'pressure': 'medium', 'steam_generation': 'direct', 'worldwide_count': '~60', 'fuel_enrichment': '3-5%'}, 'aliases': ['Boiling Water Reactor']},
|
|
39
|
+
"PHWR": {'description': 'Heavy water moderated and cooled reactor (CANDU type)', 'annotations': {'coolant': 'heavy water', 'moderator': 'heavy water', 'pressure': 'high', 'steam_generation': 'indirect', 'worldwide_count': '~47', 'fuel_enrichment': 'natural uranium'}, 'aliases': ['CANDU', 'Pressurized Heavy Water Reactor']},
|
|
40
|
+
"LWGR": {'description': 'Graphite moderated, light water cooled reactor (RBMK type)', 'annotations': {'coolant': 'light water', 'moderator': 'graphite', 'pressure': 'medium', 'steam_generation': 'direct', 'worldwide_count': '~10', 'fuel_enrichment': '1.8-2.4%'}, 'aliases': ['RBMK', 'Light Water Graphite Reactor']},
|
|
41
|
+
"AGR": {'description': 'Graphite moderated, CO2 gas cooled reactor', 'annotations': {'coolant': 'carbon dioxide', 'moderator': 'graphite', 'pressure': 'high', 'steam_generation': 'indirect', 'worldwide_count': '~8', 'fuel_enrichment': '2.5-3.5%'}, 'aliases': ['Advanced Gas-Cooled Reactor']},
|
|
42
|
+
"GCR": {'description': 'Early gas-cooled reactor design (Magnox type)', 'annotations': {'coolant': 'carbon dioxide', 'moderator': 'graphite', 'pressure': 'low', 'fuel_enrichment': 'natural uranium'}, 'aliases': ['Magnox', 'Gas-Cooled Reactor']},
|
|
43
|
+
"FBR": {'description': 'Fast neutron reactor that breeds fissile material', 'annotations': {'coolant': 'liquid metal', 'moderator': 'none', 'neutron_spectrum': 'fast', 'worldwide_count': '~2', 'fuel_enrichment': '15-20%'}, 'aliases': ['Fast Breeder Reactor', 'Liquid Metal Fast Breeder Reactor']},
|
|
44
|
+
"HTGR": {'description': 'Helium-cooled reactor with TRISO fuel', 'annotations': {'coolant': 'helium', 'moderator': 'graphite', 'temperature': 'very high', 'fuel_type': 'TRISO'}, 'aliases': ['High Temperature Gas-Cooled Reactor']},
|
|
45
|
+
"MSR": {'description': 'Reactor using molten salt as coolant and/or fuel', 'annotations': {'coolant': 'molten salt', 'fuel_form': 'liquid', 'generation': 'IV'}, 'aliases': ['Molten Salt Reactor']},
|
|
46
|
+
"SMR": {'description': 'Small reactors designed for modular construction', 'annotations': {'power_output': '<300 MWe', 'modularity': 'high', 'generation': 'III+/IV'}, 'aliases': ['Small Modular Reactor']},
|
|
47
|
+
"VHTR": {'description': 'Generation IV reactor for very high temperature applications', 'annotations': {'temperature': '>950°C', 'generation': 'IV', 'coolant': 'helium'}, 'aliases': ['Very High Temperature Reactor']},
|
|
48
|
+
"SFR": {'description': 'Fast reactor cooled by liquid sodium', 'annotations': {'coolant': 'liquid sodium', 'neutron_spectrum': 'fast', 'generation': 'IV'}, 'aliases': ['Sodium-Cooled Fast Reactor']},
|
|
49
|
+
"LFR": {'description': 'Fast reactor cooled by liquid lead or lead-bismuth', 'annotations': {'coolant': 'liquid lead', 'neutron_spectrum': 'fast', 'generation': 'IV'}, 'aliases': ['Lead-Cooled Fast Reactor']},
|
|
50
|
+
"GFR": {'description': 'Fast reactor with gas cooling', 'annotations': {'coolant': 'helium', 'neutron_spectrum': 'fast', 'generation': 'IV'}, 'aliases': ['Gas-Cooled Fast Reactor']},
|
|
51
|
+
"SCWR": {'description': 'Reactor using supercritical water as coolant', 'annotations': {'coolant': 'supercritical water', 'generation': 'IV'}, 'aliases': ['Supercritical Water-Cooled Reactor']},
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
class ReactorGenerationEnum(RichEnum):
|
|
55
|
+
"""
|
|
56
|
+
Nuclear reactor generational classifications
|
|
57
|
+
"""
|
|
58
|
+
# Enum members
|
|
59
|
+
GENERATION_I = "GENERATION_I"
|
|
60
|
+
GENERATION_II = "GENERATION_II"
|
|
61
|
+
GENERATION_III = "GENERATION_III"
|
|
62
|
+
GENERATION_III_PLUS = "GENERATION_III_PLUS"
|
|
63
|
+
GENERATION_IV = "GENERATION_IV"
|
|
64
|
+
|
|
65
|
+
# Set metadata after class creation
|
|
66
|
+
ReactorGenerationEnum._metadata = {
|
|
67
|
+
"GENERATION_I": {'description': 'Early commercial reactors (1950s-1960s)', 'annotations': {'period': '1950s-1960s', 'status': 'retired', 'examples': 'Shippingport, Dresden-1'}},
|
|
68
|
+
"GENERATION_II": {'description': 'Current operating commercial reactors', 'annotations': {'period': '1970s-1990s', 'status': 'operating', 'examples': 'PWR, BWR, CANDU', 'design_life': '40 years'}},
|
|
69
|
+
"GENERATION_III": {'description': 'Advanced reactors with enhanced safety', 'annotations': {'period': '1990s-2010s', 'status': 'some operating', 'improvements': 'passive safety, standardization', 'examples': 'AP1000, EPR, ABWR'}},
|
|
70
|
+
"GENERATION_III_PLUS": {'description': 'Evolutionary improvements to Generation III', 'annotations': {'period': '2000s-present', 'status': 'deployment', 'improvements': 'enhanced passive safety', 'examples': 'AP1000, APR1400'}},
|
|
71
|
+
"GENERATION_IV": {'description': 'Next generation advanced reactor concepts', 'annotations': {'period': '2030s and beyond', 'status': 'development', 'goals': 'sustainability, economics, safety, proliferation resistance', 'examples': 'VHTR, SFR, LFR, GFR, SCWR, MSR'}},
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
class ReactorCoolantEnum(RichEnum):
|
|
75
|
+
"""
|
|
76
|
+
Primary coolant types used in nuclear reactors
|
|
77
|
+
"""
|
|
78
|
+
# Enum members
|
|
79
|
+
LIGHT_WATER = "LIGHT_WATER"
|
|
80
|
+
HEAVY_WATER = "HEAVY_WATER"
|
|
81
|
+
CARBON_DIOXIDE = "CARBON_DIOXIDE"
|
|
82
|
+
HELIUM = "HELIUM"
|
|
83
|
+
LIQUID_SODIUM = "LIQUID_SODIUM"
|
|
84
|
+
LIQUID_LEAD = "LIQUID_LEAD"
|
|
85
|
+
MOLTEN_SALT = "MOLTEN_SALT"
|
|
86
|
+
SUPERCRITICAL_WATER = "SUPERCRITICAL_WATER"
|
|
87
|
+
|
|
88
|
+
# Set metadata after class creation
|
|
89
|
+
ReactorCoolantEnum._metadata = {
|
|
90
|
+
"LIGHT_WATER": {'description': 'Ordinary water as primary coolant', 'annotations': {'chemical_formula': 'H2O', 'density': '1.0 g/cm³', 'neutron_absorption': 'moderate'}},
|
|
91
|
+
"HEAVY_WATER": {'description': 'Deuterium oxide as primary coolant', 'annotations': {'chemical_formula': 'D2O', 'density': '1.1 g/cm³', 'neutron_absorption': 'low'}},
|
|
92
|
+
"CARBON_DIOXIDE": {'description': 'CO2 gas as primary coolant', 'annotations': {'chemical_formula': 'CO2', 'phase': 'gas', 'pressure': 'high'}},
|
|
93
|
+
"HELIUM": {'description': 'Helium gas as primary coolant', 'annotations': {'chemical_formula': 'He', 'phase': 'gas', 'neutron_absorption': 'very low', 'temperature_capability': 'very high'}},
|
|
94
|
+
"LIQUID_SODIUM": {'description': 'Molten sodium metal as coolant', 'annotations': {'chemical_formula': 'Na', 'phase': 'liquid', 'melting_point': '98°C', 'neutron_absorption': 'low'}},
|
|
95
|
+
"LIQUID_LEAD": {'description': 'Molten lead or lead-bismuth as coolant', 'annotations': {'chemical_formula': 'Pb', 'phase': 'liquid', 'melting_point': '327°C', 'neutron_absorption': 'low'}},
|
|
96
|
+
"MOLTEN_SALT": {'description': 'Molten fluoride or chloride salts', 'annotations': {'phase': 'liquid', 'temperature_capability': 'very high', 'neutron_absorption': 'variable'}},
|
|
97
|
+
"SUPERCRITICAL_WATER": {'description': 'Water above critical point', 'annotations': {'chemical_formula': 'H2O', 'pressure': '>221 bar', 'temperature': '>374°C'}},
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
class ReactorModeratorEnum(RichEnum):
|
|
101
|
+
"""
|
|
102
|
+
Neutron moderator types used in nuclear reactors
|
|
103
|
+
"""
|
|
104
|
+
# Enum members
|
|
105
|
+
LIGHT_WATER = "LIGHT_WATER"
|
|
106
|
+
HEAVY_WATER = "HEAVY_WATER"
|
|
107
|
+
GRAPHITE = "GRAPHITE"
|
|
108
|
+
BERYLLIUM = "BERYLLIUM"
|
|
109
|
+
NONE = "NONE"
|
|
110
|
+
|
|
111
|
+
# Set metadata after class creation
|
|
112
|
+
ReactorModeratorEnum._metadata = {
|
|
113
|
+
"LIGHT_WATER": {'description': 'Ordinary water as neutron moderator', 'annotations': {'chemical_formula': 'H2O', 'moderation_effectiveness': 'good', 'neutron_absorption': 'moderate'}},
|
|
114
|
+
"HEAVY_WATER": {'description': 'Deuterium oxide as neutron moderator', 'annotations': {'chemical_formula': 'D2O', 'moderation_effectiveness': 'excellent', 'neutron_absorption': 'very low'}},
|
|
115
|
+
"GRAPHITE": {'description': 'Carbon graphite as neutron moderator', 'annotations': {'chemical_formula': 'C', 'moderation_effectiveness': 'good', 'neutron_absorption': 'low', 'temperature_resistance': 'high'}},
|
|
116
|
+
"BERYLLIUM": {'description': 'Beryllium metal as neutron moderator', 'annotations': {'chemical_formula': 'Be', 'moderation_effectiveness': 'good', 'neutron_absorption': 'very low'}},
|
|
117
|
+
"NONE": {'description': 'Fast reactors with no neutron moderation', 'annotations': {'neutron_spectrum': 'fast', 'moderation': 'none'}},
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
class ReactorNeutronSpectrumEnum(RichEnum):
|
|
121
|
+
"""
|
|
122
|
+
Neutron energy spectrum classifications
|
|
123
|
+
"""
|
|
124
|
+
# Enum members
|
|
125
|
+
THERMAL = "THERMAL"
|
|
126
|
+
EPITHERMAL = "EPITHERMAL"
|
|
127
|
+
FAST = "FAST"
|
|
128
|
+
|
|
129
|
+
# Set metadata after class creation
|
|
130
|
+
ReactorNeutronSpectrumEnum._metadata = {
|
|
131
|
+
"THERMAL": {'description': 'Low energy neutrons in thermal equilibrium', 'annotations': {'energy_range': '<1 eV', 'temperature_equivalent': 'room temperature', 'fission_probability': 'high for U-235'}},
|
|
132
|
+
"EPITHERMAL": {'description': 'Intermediate energy neutrons', 'annotations': {'energy_range': '1 eV - 1 keV', 'temperature_equivalent': 'elevated'}},
|
|
133
|
+
"FAST": {'description': 'High energy neutrons from fission', 'annotations': {'energy_range': '>1 keV', 'moderation': 'minimal or none', 'breeding_capability': 'high'}},
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
class ReactorSizeCategoryEnum(RichEnum):
|
|
137
|
+
"""
|
|
138
|
+
Nuclear reactor size classifications
|
|
139
|
+
"""
|
|
140
|
+
# Enum members
|
|
141
|
+
LARGE = "LARGE"
|
|
142
|
+
MEDIUM = "MEDIUM"
|
|
143
|
+
SMALL = "SMALL"
|
|
144
|
+
MICRO = "MICRO"
|
|
145
|
+
RESEARCH = "RESEARCH"
|
|
146
|
+
|
|
147
|
+
# Set metadata after class creation
|
|
148
|
+
ReactorSizeCategoryEnum._metadata = {
|
|
149
|
+
"LARGE": {'description': 'Traditional large-scale commercial reactors', 'annotations': {'power_output': '>700 MWe', 'construction': 'custom on-site'}},
|
|
150
|
+
"MEDIUM": {'description': 'Mid-scale reactors', 'annotations': {'power_output': '300-700 MWe', 'construction': 'semi-modular'}},
|
|
151
|
+
"SMALL": {'description': 'Small modular reactors', 'annotations': {'power_output': '50-300 MWe', 'construction': 'modular', 'transport': 'potentially transportable'}},
|
|
152
|
+
"MICRO": {'description': 'Very small reactors for remote applications', 'annotations': {'power_output': '<50 MWe', 'construction': 'factory-built', 'transport': 'transportable'}},
|
|
153
|
+
"RESEARCH": {'description': 'Small reactors for research and isotope production', 'annotations': {'power_output': '<100 MWt', 'primary_use': 'research, isotopes, training'}},
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
__all__ = [
|
|
157
|
+
"ReactorTypeEnum",
|
|
158
|
+
"ReactorGenerationEnum",
|
|
159
|
+
"ReactorCoolantEnum",
|
|
160
|
+
"ReactorModeratorEnum",
|
|
161
|
+
"ReactorNeutronSpectrumEnum",
|
|
162
|
+
"ReactorSizeCategoryEnum",
|
|
163
|
+
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Auto-generated package."""
|
|
@@ -0,0 +1,265 @@
|
|
|
1
|
+
"""
|
|
2
|
+
valuesets-environmental-health-exposures
|
|
3
|
+
|
|
4
|
+
Environmental health and exposure-related value sets
|
|
5
|
+
|
|
6
|
+
Generated from: environmental_health/exposures.yaml
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
from __future__ import annotations
|
|
10
|
+
|
|
11
|
+
from typing import Dict, Any, Optional
|
|
12
|
+
from valuesets.generators.rich_enum import RichEnum
|
|
13
|
+
|
|
14
|
+
class AirPollutantEnum(RichEnum):
|
|
15
|
+
"""
|
|
16
|
+
Common air pollutants and air quality indicators
|
|
17
|
+
"""
|
|
18
|
+
# Enum members
|
|
19
|
+
PM2_5 = "PM2_5"
|
|
20
|
+
PM10 = "PM10"
|
|
21
|
+
ULTRAFINE_PARTICLES = "ULTRAFINE_PARTICLES"
|
|
22
|
+
OZONE = "OZONE"
|
|
23
|
+
NITROGEN_DIOXIDE = "NITROGEN_DIOXIDE"
|
|
24
|
+
SULFUR_DIOXIDE = "SULFUR_DIOXIDE"
|
|
25
|
+
CARBON_MONOXIDE = "CARBON_MONOXIDE"
|
|
26
|
+
LEAD = "LEAD"
|
|
27
|
+
BENZENE = "BENZENE"
|
|
28
|
+
FORMALDEHYDE = "FORMALDEHYDE"
|
|
29
|
+
VOLATILE_ORGANIC_COMPOUNDS = "VOLATILE_ORGANIC_COMPOUNDS"
|
|
30
|
+
POLYCYCLIC_AROMATIC_HYDROCARBONS = "POLYCYCLIC_AROMATIC_HYDROCARBONS"
|
|
31
|
+
|
|
32
|
+
# Set metadata after class creation
|
|
33
|
+
AirPollutantEnum._metadata = {
|
|
34
|
+
"PM2_5": {'description': 'Fine particulate matter with diameter less than 2.5 micrometers', 'meaning': 'ENVO:01000415'},
|
|
35
|
+
"PM10": {'description': 'Respirable particulate matter with diameter less than 10 micrometers', 'meaning': 'ENVO:01000405'},
|
|
36
|
+
"ULTRAFINE_PARTICLES": {'description': 'Ultrafine particles with diameter less than 100 nanometers', 'meaning': 'ENVO:01000416'},
|
|
37
|
+
"OZONE": {'description': 'Ground-level ozone (O3)', 'meaning': 'CHEBI:25812'},
|
|
38
|
+
"NITROGEN_DIOXIDE": {'description': 'Nitrogen dioxide (NO2)', 'meaning': 'CHEBI:33101'},
|
|
39
|
+
"SULFUR_DIOXIDE": {'description': 'Sulfur dioxide (SO2)', 'meaning': 'CHEBI:18422'},
|
|
40
|
+
"CARBON_MONOXIDE": {'description': 'Carbon monoxide (CO)', 'meaning': 'CHEBI:17245'},
|
|
41
|
+
"LEAD": {'description': 'Airborne lead particles', 'meaning': 'NCIT:C44396'},
|
|
42
|
+
"BENZENE": {'description': 'Benzene vapor', 'meaning': 'CHEBI:16716'},
|
|
43
|
+
"FORMALDEHYDE": {'description': 'Formaldehyde gas', 'meaning': 'CHEBI:16842'},
|
|
44
|
+
"VOLATILE_ORGANIC_COMPOUNDS": {'description': 'Volatile organic compounds (VOCs)', 'meaning': 'CHEBI:134179'},
|
|
45
|
+
"POLYCYCLIC_AROMATIC_HYDROCARBONS": {'description': 'Polycyclic aromatic hydrocarbons (PAHs)', 'meaning': 'CHEBI:33848'},
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
class PesticideTypeEnum(RichEnum):
|
|
49
|
+
"""
|
|
50
|
+
Categories of pesticides by target organism or chemical class
|
|
51
|
+
"""
|
|
52
|
+
# Enum members
|
|
53
|
+
HERBICIDE = "HERBICIDE"
|
|
54
|
+
INSECTICIDE = "INSECTICIDE"
|
|
55
|
+
FUNGICIDE = "FUNGICIDE"
|
|
56
|
+
RODENTICIDE = "RODENTICIDE"
|
|
57
|
+
ORGANOPHOSPHATE = "ORGANOPHOSPHATE"
|
|
58
|
+
ORGANOCHLORINE = "ORGANOCHLORINE"
|
|
59
|
+
PYRETHROID = "PYRETHROID"
|
|
60
|
+
CARBAMATE = "CARBAMATE"
|
|
61
|
+
NEONICOTINOID = "NEONICOTINOID"
|
|
62
|
+
GLYPHOSATE = "GLYPHOSATE"
|
|
63
|
+
|
|
64
|
+
# Set metadata after class creation
|
|
65
|
+
PesticideTypeEnum._metadata = {
|
|
66
|
+
"HERBICIDE": {'description': 'Chemical used to kill unwanted plants', 'meaning': 'CHEBI:24527'},
|
|
67
|
+
"INSECTICIDE": {'description': 'Chemical used to kill insects', 'meaning': 'CHEBI:24852'},
|
|
68
|
+
"FUNGICIDE": {'description': 'Chemical used to kill fungi', 'meaning': 'CHEBI:24127'},
|
|
69
|
+
"RODENTICIDE": {'description': 'Chemical used to kill rodents', 'meaning': 'CHEBI:33288'},
|
|
70
|
+
"ORGANOPHOSPHATE": {'description': 'Organophosphate pesticide', 'meaning': 'CHEBI:25708'},
|
|
71
|
+
"ORGANOCHLORINE": {'description': 'Organochlorine pesticide', 'meaning': 'CHEBI:25705'},
|
|
72
|
+
"PYRETHROID": {'description': 'Pyrethroid pesticide', 'meaning': 'CHEBI:26413'},
|
|
73
|
+
"CARBAMATE": {'description': 'Carbamate pesticide', 'meaning': 'CHEBI:38461'},
|
|
74
|
+
"NEONICOTINOID": {'description': 'Neonicotinoid pesticide', 'meaning': 'CHEBI:25540'},
|
|
75
|
+
"GLYPHOSATE": {'description': 'Glyphosate herbicide', 'meaning': 'CHEBI:27744'},
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
class HeavyMetalEnum(RichEnum):
|
|
79
|
+
"""
|
|
80
|
+
Heavy metals of environmental health concern
|
|
81
|
+
"""
|
|
82
|
+
# Enum members
|
|
83
|
+
LEAD = "LEAD"
|
|
84
|
+
MERCURY = "MERCURY"
|
|
85
|
+
CADMIUM = "CADMIUM"
|
|
86
|
+
ARSENIC = "ARSENIC"
|
|
87
|
+
CHROMIUM = "CHROMIUM"
|
|
88
|
+
NICKEL = "NICKEL"
|
|
89
|
+
COPPER = "COPPER"
|
|
90
|
+
ZINC = "ZINC"
|
|
91
|
+
MANGANESE = "MANGANESE"
|
|
92
|
+
COBALT = "COBALT"
|
|
93
|
+
|
|
94
|
+
# Set metadata after class creation
|
|
95
|
+
HeavyMetalEnum._metadata = {
|
|
96
|
+
"LEAD": {'description': 'Lead (Pb)', 'meaning': 'NCIT:C44396'},
|
|
97
|
+
"MERCURY": {'description': 'Mercury (Hg)', 'meaning': 'NCIT:C66842'},
|
|
98
|
+
"CADMIUM": {'description': 'Cadmium (Cd)', 'meaning': 'NCIT:C44348'},
|
|
99
|
+
"ARSENIC": {'description': 'Arsenic (As)', 'meaning': 'NCIT:C28131'},
|
|
100
|
+
"CHROMIUM": {'description': 'Chromium (Cr)', 'meaning': 'NCIT:C370'},
|
|
101
|
+
"NICKEL": {'description': 'Nickel (Ni)', 'meaning': 'CHEBI:28112'},
|
|
102
|
+
"COPPER": {'description': 'Copper (Cu)', 'meaning': 'CHEBI:28694'},
|
|
103
|
+
"ZINC": {'description': 'Zinc (Zn)', 'meaning': 'CHEBI:27363'},
|
|
104
|
+
"MANGANESE": {'description': 'Manganese (Mn)', 'meaning': 'CHEBI:18291'},
|
|
105
|
+
"COBALT": {'description': 'Cobalt (Co)', 'meaning': 'CHEBI:27638'},
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
class ExposureRouteEnum(RichEnum):
|
|
109
|
+
"""
|
|
110
|
+
Routes by which exposure to environmental agents occurs
|
|
111
|
+
"""
|
|
112
|
+
# Enum members
|
|
113
|
+
INHALATION = "INHALATION"
|
|
114
|
+
INGESTION = "INGESTION"
|
|
115
|
+
DERMAL = "DERMAL"
|
|
116
|
+
INJECTION = "INJECTION"
|
|
117
|
+
TRANSPLACENTAL = "TRANSPLACENTAL"
|
|
118
|
+
OCULAR = "OCULAR"
|
|
119
|
+
MULTIPLE_ROUTES = "MULTIPLE_ROUTES"
|
|
120
|
+
|
|
121
|
+
# Set metadata after class creation
|
|
122
|
+
ExposureRouteEnum._metadata = {
|
|
123
|
+
"INHALATION": {'description': 'Exposure through breathing', 'meaning': 'NCIT:C38284'},
|
|
124
|
+
"INGESTION": {'description': 'Exposure through eating or drinking', 'meaning': 'NCIT:C38288'},
|
|
125
|
+
"DERMAL": {'description': 'Exposure through skin contact', 'meaning': 'NCIT:C38675'},
|
|
126
|
+
"INJECTION": {'description': 'Exposure through injection', 'meaning': 'NCIT:C38276'},
|
|
127
|
+
"TRANSPLACENTAL": {'description': 'Exposure through placental transfer', 'meaning': 'NCIT:C38307'},
|
|
128
|
+
"OCULAR": {'description': 'Exposure through the eyes', 'meaning': 'NCIT:C38287'},
|
|
129
|
+
"MULTIPLE_ROUTES": {'description': 'Exposure through multiple pathways'},
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
class ExposureSourceEnum(RichEnum):
|
|
133
|
+
"""
|
|
134
|
+
Common sources of environmental exposures
|
|
135
|
+
"""
|
|
136
|
+
# Enum members
|
|
137
|
+
AMBIENT_AIR = "AMBIENT_AIR"
|
|
138
|
+
INDOOR_AIR = "INDOOR_AIR"
|
|
139
|
+
DRINKING_WATER = "DRINKING_WATER"
|
|
140
|
+
SOIL = "SOIL"
|
|
141
|
+
FOOD = "FOOD"
|
|
142
|
+
OCCUPATIONAL = "OCCUPATIONAL"
|
|
143
|
+
CONSUMER_PRODUCTS = "CONSUMER_PRODUCTS"
|
|
144
|
+
INDUSTRIAL_EMISSIONS = "INDUSTRIAL_EMISSIONS"
|
|
145
|
+
AGRICULTURAL = "AGRICULTURAL"
|
|
146
|
+
TRAFFIC = "TRAFFIC"
|
|
147
|
+
TOBACCO_SMOKE = "TOBACCO_SMOKE"
|
|
148
|
+
CONSTRUCTION = "CONSTRUCTION"
|
|
149
|
+
MINING = "MINING"
|
|
150
|
+
|
|
151
|
+
# Set metadata after class creation
|
|
152
|
+
ExposureSourceEnum._metadata = {
|
|
153
|
+
"AMBIENT_AIR": {'description': 'Outdoor air pollution'},
|
|
154
|
+
"INDOOR_AIR": {'description': 'Indoor air pollution'},
|
|
155
|
+
"DRINKING_WATER": {'description': 'Contaminated drinking water'},
|
|
156
|
+
"SOIL": {'description': 'Contaminated soil', 'meaning': 'ENVO:00002116'},
|
|
157
|
+
"FOOD": {'description': 'Contaminated food'},
|
|
158
|
+
"OCCUPATIONAL": {'description': 'Workplace exposure', 'meaning': 'ENVO:03501332'},
|
|
159
|
+
"CONSUMER_PRODUCTS": {'description': 'Household and consumer products'},
|
|
160
|
+
"INDUSTRIAL_EMISSIONS": {'description': 'Industrial facility emissions'},
|
|
161
|
+
"AGRICULTURAL": {'description': 'Agricultural activities'},
|
|
162
|
+
"TRAFFIC": {'description': 'Traffic-related pollution'},
|
|
163
|
+
"TOBACCO_SMOKE": {'description': 'Active or passive tobacco smoke exposure', 'meaning': 'NCIT:C17140'},
|
|
164
|
+
"CONSTRUCTION": {'description': 'Construction-related exposure'},
|
|
165
|
+
"MINING": {'description': 'Mining-related exposure'},
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
class WaterContaminantEnum(RichEnum):
|
|
169
|
+
"""
|
|
170
|
+
Common water contaminants
|
|
171
|
+
"""
|
|
172
|
+
# Enum members
|
|
173
|
+
LEAD = "LEAD"
|
|
174
|
+
ARSENIC = "ARSENIC"
|
|
175
|
+
NITRATES = "NITRATES"
|
|
176
|
+
FLUORIDE = "FLUORIDE"
|
|
177
|
+
CHLORINE = "CHLORINE"
|
|
178
|
+
BACTERIA = "BACTERIA"
|
|
179
|
+
VIRUSES = "VIRUSES"
|
|
180
|
+
PARASITES = "PARASITES"
|
|
181
|
+
PFAS = "PFAS"
|
|
182
|
+
MICROPLASTICS = "MICROPLASTICS"
|
|
183
|
+
PHARMACEUTICALS = "PHARMACEUTICALS"
|
|
184
|
+
PESTICIDES = "PESTICIDES"
|
|
185
|
+
|
|
186
|
+
# Set metadata after class creation
|
|
187
|
+
WaterContaminantEnum._metadata = {
|
|
188
|
+
"LEAD": {'description': 'Lead contamination', 'meaning': 'NCIT:C44396'},
|
|
189
|
+
"ARSENIC": {'description': 'Arsenic contamination', 'meaning': 'NCIT:C28131'},
|
|
190
|
+
"NITRATES": {'description': 'Nitrate contamination', 'meaning': 'CHEBI:17632'},
|
|
191
|
+
"FLUORIDE": {'description': 'Fluoride levels', 'meaning': 'CHEBI:17051'},
|
|
192
|
+
"CHLORINE": {'description': 'Chlorine and chlorination byproducts', 'meaning': 'NCIT:C28140'},
|
|
193
|
+
"BACTERIA": {'description': 'Bacterial contamination', 'meaning': 'NCIT:C14187'},
|
|
194
|
+
"VIRUSES": {'description': 'Viral contamination', 'meaning': 'NCIT:C14283'},
|
|
195
|
+
"PARASITES": {'description': 'Parasitic contamination', 'meaning': 'NCIT:C28176'},
|
|
196
|
+
"PFAS": {'description': 'Per- and polyfluoroalkyl substances', 'meaning': 'CHEBI:172397'},
|
|
197
|
+
"MICROPLASTICS": {'description': 'Microplastic particles', 'meaning': 'ENVO:01000944'},
|
|
198
|
+
"PHARMACEUTICALS": {'description': 'Pharmaceutical residues', 'meaning': 'CHEBI:52217'},
|
|
199
|
+
"PESTICIDES": {'description': 'Pesticide residues', 'meaning': 'CHEBI:25944'},
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
class EndocrineDisruptorEnum(RichEnum):
|
|
203
|
+
"""
|
|
204
|
+
Common endocrine disrupting chemicals
|
|
205
|
+
"""
|
|
206
|
+
# Enum members
|
|
207
|
+
BPA = "BPA"
|
|
208
|
+
PHTHALATES = "PHTHALATES"
|
|
209
|
+
PFAS = "PFAS"
|
|
210
|
+
PCB = "PCB"
|
|
211
|
+
DIOXINS = "DIOXINS"
|
|
212
|
+
DDT = "DDT"
|
|
213
|
+
PARABENS = "PARABENS"
|
|
214
|
+
TRICLOSAN = "TRICLOSAN"
|
|
215
|
+
FLAME_RETARDANTS = "FLAME_RETARDANTS"
|
|
216
|
+
|
|
217
|
+
# Set metadata after class creation
|
|
218
|
+
EndocrineDisruptorEnum._metadata = {
|
|
219
|
+
"BPA": {'description': 'Bisphenol A', 'meaning': 'CHEBI:33216'},
|
|
220
|
+
"PHTHALATES": {'description': 'Phthalates', 'meaning': 'CHEBI:26092'},
|
|
221
|
+
"PFAS": {'description': 'Per- and polyfluoroalkyl substances', 'meaning': 'CHEBI:172397'},
|
|
222
|
+
"PCB": {'description': 'Polychlorinated biphenyls', 'meaning': 'CHEBI:53156'},
|
|
223
|
+
"DIOXINS": {'description': 'Dioxins', 'meaning': 'NCIT:C442'},
|
|
224
|
+
"DDT": {'description': 'Dichlorodiphenyltrichloroethane and metabolites', 'meaning': 'CHEBI:16130'},
|
|
225
|
+
"PARABENS": {'description': 'Parabens', 'meaning': 'CHEBI:85122'},
|
|
226
|
+
"TRICLOSAN": {'description': 'Triclosan', 'meaning': 'CHEBI:164200'},
|
|
227
|
+
"FLAME_RETARDANTS": {'description': 'Brominated flame retardants', 'meaning': 'CHEBI:172368'},
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
class ExposureDurationEnum(RichEnum):
|
|
231
|
+
"""
|
|
232
|
+
Duration categories for environmental exposures
|
|
233
|
+
"""
|
|
234
|
+
# Enum members
|
|
235
|
+
ACUTE = "ACUTE"
|
|
236
|
+
SUBACUTE = "SUBACUTE"
|
|
237
|
+
SUBCHRONIC = "SUBCHRONIC"
|
|
238
|
+
CHRONIC = "CHRONIC"
|
|
239
|
+
LIFETIME = "LIFETIME"
|
|
240
|
+
PRENATAL = "PRENATAL"
|
|
241
|
+
POSTNATAL = "POSTNATAL"
|
|
242
|
+
DEVELOPMENTAL = "DEVELOPMENTAL"
|
|
243
|
+
|
|
244
|
+
# Set metadata after class creation
|
|
245
|
+
ExposureDurationEnum._metadata = {
|
|
246
|
+
"ACUTE": {'description': 'Single or short-term exposure (hours to days)'},
|
|
247
|
+
"SUBACUTE": {'description': 'Repeated exposure over weeks'},
|
|
248
|
+
"SUBCHRONIC": {'description': 'Repeated exposure over months'},
|
|
249
|
+
"CHRONIC": {'description': 'Long-term exposure over years'},
|
|
250
|
+
"LIFETIME": {'description': 'Exposure over entire lifetime'},
|
|
251
|
+
"PRENATAL": {'description': 'Exposure during pregnancy'},
|
|
252
|
+
"POSTNATAL": {'description': 'Exposure after birth'},
|
|
253
|
+
"DEVELOPMENTAL": {'description': 'Exposure during critical developmental periods'},
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
__all__ = [
|
|
257
|
+
"AirPollutantEnum",
|
|
258
|
+
"PesticideTypeEnum",
|
|
259
|
+
"HeavyMetalEnum",
|
|
260
|
+
"ExposureRouteEnum",
|
|
261
|
+
"ExposureSourceEnum",
|
|
262
|
+
"WaterContaminantEnum",
|
|
263
|
+
"EndocrineDisruptorEnum",
|
|
264
|
+
"ExposureDurationEnum",
|
|
265
|
+
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Auto-generated package."""
|