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.

Files changed (248) hide show
  1. valuesets/__init__.py +7 -0
  2. valuesets/_version.py +8 -0
  3. valuesets/datamodel/valuesets.py +13796 -0
  4. valuesets/datamodel/valuesets_dataclass.py +24503 -0
  5. valuesets/datamodel/valuesets_pydantic.py +13796 -0
  6. valuesets/enums/__init__.py +590 -0
  7. valuesets/enums/academic/__init__.py +1 -0
  8. valuesets/enums/academic/research.py +559 -0
  9. valuesets/enums/analytical_chemistry/__init__.py +1 -0
  10. valuesets/enums/analytical_chemistry/mass_spectrometry.py +198 -0
  11. valuesets/enums/bio/__init__.py +1 -0
  12. valuesets/enums/bio/biological_colors.py +238 -0
  13. valuesets/enums/bio/cell_cycle.py +180 -0
  14. valuesets/enums/bio/currency_chemicals.py +52 -0
  15. valuesets/enums/bio/developmental_stages.py +103 -0
  16. valuesets/enums/bio/genome_features.py +182 -0
  17. valuesets/enums/bio/genomics.py +91 -0
  18. valuesets/enums/bio/go_aspect.py +32 -0
  19. valuesets/enums/bio/go_causality.py +58 -0
  20. valuesets/enums/bio/go_evidence.py +129 -0
  21. valuesets/enums/bio/human_developmental_stages.py +62 -0
  22. valuesets/enums/bio/insdc_geographic_locations.py +591 -0
  23. valuesets/enums/bio/insdc_missing_values.py +49 -0
  24. valuesets/enums/bio/lipid_categories.py +67 -0
  25. valuesets/enums/bio/mouse_developmental_stages.py +62 -0
  26. valuesets/enums/bio/plant_biology.py +86 -0
  27. valuesets/enums/bio/plant_developmental_stages.py +54 -0
  28. valuesets/enums/bio/plant_sex.py +81 -0
  29. valuesets/enums/bio/protein_evidence.py +61 -0
  30. valuesets/enums/bio/proteomics_standards.py +123 -0
  31. valuesets/enums/bio/psi_mi.py +306 -0
  32. valuesets/enums/bio/relationship_to_oxygen.py +37 -0
  33. valuesets/enums/bio/sequence_alphabets.py +449 -0
  34. valuesets/enums/bio/sequence_chemistry.py +357 -0
  35. valuesets/enums/bio/sequencing_platforms.py +302 -0
  36. valuesets/enums/bio/structural_biology.py +320 -0
  37. valuesets/enums/bio/taxonomy.py +238 -0
  38. valuesets/enums/bio/trophic_levels.py +85 -0
  39. valuesets/enums/bio/uniprot_species.py +344 -0
  40. valuesets/enums/bio/viral_genome_types.py +47 -0
  41. valuesets/enums/bioprocessing/__init__.py +1 -0
  42. valuesets/enums/bioprocessing/scale_up.py +249 -0
  43. valuesets/enums/business/__init__.py +1 -0
  44. valuesets/enums/business/human_resources.py +275 -0
  45. valuesets/enums/business/industry_classifications.py +181 -0
  46. valuesets/enums/business/management_operations.py +228 -0
  47. valuesets/enums/business/organizational_structures.py +236 -0
  48. valuesets/enums/business/quality_management.py +181 -0
  49. valuesets/enums/business/supply_chain.py +232 -0
  50. valuesets/enums/chemistry/__init__.py +1 -0
  51. valuesets/enums/chemistry/chemical_entities.py +315 -0
  52. valuesets/enums/chemistry/reaction_directionality.py +65 -0
  53. valuesets/enums/chemistry/reactions.py +256 -0
  54. valuesets/enums/clinical/__init__.py +1 -0
  55. valuesets/enums/clinical/nih_demographics.py +177 -0
  56. valuesets/enums/clinical/phenopackets.py +254 -0
  57. valuesets/enums/common_value_sets.py +8791 -0
  58. valuesets/enums/computing/__init__.py +1 -0
  59. valuesets/enums/computing/file_formats.py +294 -0
  60. valuesets/enums/computing/maturity_levels.py +196 -0
  61. valuesets/enums/computing/mime_types.py +227 -0
  62. valuesets/enums/confidence_levels.py +168 -0
  63. valuesets/enums/contributor.py +30 -0
  64. valuesets/enums/core.py +42 -0
  65. valuesets/enums/data/__init__.py +1 -0
  66. valuesets/enums/data/data_absent_reason.py +53 -0
  67. valuesets/enums/data_science/__init__.py +1 -0
  68. valuesets/enums/data_science/binary_classification.py +87 -0
  69. valuesets/enums/data_science/emotion_classification.py +66 -0
  70. valuesets/enums/data_science/priority_severity.py +73 -0
  71. valuesets/enums/data_science/quality_control.py +46 -0
  72. valuesets/enums/data_science/sentiment_analysis.py +50 -0
  73. valuesets/enums/data_science/text_classification.py +97 -0
  74. valuesets/enums/demographics.py +206 -0
  75. valuesets/enums/ecological_interactions.py +151 -0
  76. valuesets/enums/energy/__init__.py +1 -0
  77. valuesets/enums/energy/energy.py +343 -0
  78. valuesets/enums/energy/fossil_fuels.py +29 -0
  79. valuesets/enums/energy/nuclear/__init__.py +1 -0
  80. valuesets/enums/energy/nuclear/nuclear_facilities.py +195 -0
  81. valuesets/enums/energy/nuclear/nuclear_fuel_cycle.py +96 -0
  82. valuesets/enums/energy/nuclear/nuclear_fuels.py +175 -0
  83. valuesets/enums/energy/nuclear/nuclear_operations.py +191 -0
  84. valuesets/enums/energy/nuclear/nuclear_regulatory.py +188 -0
  85. valuesets/enums/energy/nuclear/nuclear_safety.py +164 -0
  86. valuesets/enums/energy/nuclear/nuclear_waste.py +158 -0
  87. valuesets/enums/energy/nuclear/reactor_types.py +163 -0
  88. valuesets/enums/environmental_health/__init__.py +1 -0
  89. valuesets/enums/environmental_health/exposures.py +265 -0
  90. valuesets/enums/geography/__init__.py +1 -0
  91. valuesets/enums/geography/geographic_codes.py +741 -0
  92. valuesets/enums/health/__init__.py +12 -0
  93. valuesets/enums/health/vaccination.py +98 -0
  94. valuesets/enums/health.py +36 -0
  95. valuesets/enums/health_base.py +36 -0
  96. valuesets/enums/healthcare.py +45 -0
  97. valuesets/enums/industry/__init__.py +1 -0
  98. valuesets/enums/industry/extractive_industry.py +94 -0
  99. valuesets/enums/industry/mining.py +388 -0
  100. valuesets/enums/industry/safety_colors.py +201 -0
  101. valuesets/enums/investigation.py +27 -0
  102. valuesets/enums/materials_science/__init__.py +1 -0
  103. valuesets/enums/materials_science/characterization_methods.py +112 -0
  104. valuesets/enums/materials_science/crystal_structures.py +76 -0
  105. valuesets/enums/materials_science/material_properties.py +119 -0
  106. valuesets/enums/materials_science/material_types.py +104 -0
  107. valuesets/enums/materials_science/pigments_dyes.py +198 -0
  108. valuesets/enums/materials_science/synthesis_methods.py +109 -0
  109. valuesets/enums/medical/__init__.py +1 -0
  110. valuesets/enums/medical/clinical.py +277 -0
  111. valuesets/enums/medical/neuroimaging.py +119 -0
  112. valuesets/enums/mining_processing.py +302 -0
  113. valuesets/enums/physics/__init__.py +1 -0
  114. valuesets/enums/physics/states_of_matter.py +46 -0
  115. valuesets/enums/social/__init__.py +1 -0
  116. valuesets/enums/social/person_status.py +29 -0
  117. valuesets/enums/spatial/__init__.py +1 -0
  118. valuesets/enums/spatial/spatial_qualifiers.py +246 -0
  119. valuesets/enums/statistics/__init__.py +5 -0
  120. valuesets/enums/statistics/prediction_outcomes.py +31 -0
  121. valuesets/enums/statistics.py +31 -0
  122. valuesets/enums/time/__init__.py +1 -0
  123. valuesets/enums/time/temporal.py +254 -0
  124. valuesets/enums/units/__init__.py +1 -0
  125. valuesets/enums/units/measurements.py +310 -0
  126. valuesets/enums/visual/__init__.py +1 -0
  127. valuesets/enums/visual/colors.py +376 -0
  128. valuesets/generators/__init__.py +19 -0
  129. valuesets/generators/auto_slot_injector.py +280 -0
  130. valuesets/generators/enhanced_pydantic_generator.py +100 -0
  131. valuesets/generators/enum_slot_generator.py +201 -0
  132. valuesets/generators/modular_rich_generator.py +353 -0
  133. valuesets/generators/prefix_standardizer.py +198 -0
  134. valuesets/generators/rich_enum.py +127 -0
  135. valuesets/generators/rich_pydantic_generator.py +310 -0
  136. valuesets/generators/smart_slot_syncer.py +428 -0
  137. valuesets/generators/sssom_generator.py +394 -0
  138. valuesets/merged/merged_hierarchy.yaml +21649 -0
  139. valuesets/schema/README.md +3 -0
  140. valuesets/schema/academic/research.yaml +911 -0
  141. valuesets/schema/analytical_chemistry/mass_spectrometry.yaml +206 -0
  142. valuesets/schema/bio/bio_entities.yaml +364 -0
  143. valuesets/schema/bio/biological_colors.yaml +434 -0
  144. valuesets/schema/bio/cell_cycle.yaml +309 -0
  145. valuesets/schema/bio/currency_chemicals.yaml +70 -0
  146. valuesets/schema/bio/developmental_stages.yaml +226 -0
  147. valuesets/schema/bio/genome_features.yaml +342 -0
  148. valuesets/schema/bio/genomics.yaml +101 -0
  149. valuesets/schema/bio/go_aspect.yaml +39 -0
  150. valuesets/schema/bio/go_causality.yaml +119 -0
  151. valuesets/schema/bio/go_evidence.yaml +215 -0
  152. valuesets/schema/bio/insdc_geographic_locations.yaml +911 -0
  153. valuesets/schema/bio/insdc_missing_values.yaml +85 -0
  154. valuesets/schema/bio/lipid_categories.yaml +72 -0
  155. valuesets/schema/bio/plant_biology.yaml +125 -0
  156. valuesets/schema/bio/plant_developmental_stages.yaml +77 -0
  157. valuesets/schema/bio/plant_sex.yaml +108 -0
  158. valuesets/schema/bio/protein_evidence.yaml +63 -0
  159. valuesets/schema/bio/proteomics_standards.yaml +116 -0
  160. valuesets/schema/bio/psi_mi.yaml +400 -0
  161. valuesets/schema/bio/relationship_to_oxygen.yaml +46 -0
  162. valuesets/schema/bio/sequence_alphabets.yaml +1168 -0
  163. valuesets/schema/bio/sequence_chemistry.yaml +477 -0
  164. valuesets/schema/bio/sequencing_platforms.yaml +515 -0
  165. valuesets/schema/bio/structural_biology.yaml +428 -0
  166. valuesets/schema/bio/taxonomy.yaml +453 -0
  167. valuesets/schema/bio/trophic_levels.yaml +118 -0
  168. valuesets/schema/bio/uniprot_species.yaml +1209 -0
  169. valuesets/schema/bio/viral_genome_types.yaml +99 -0
  170. valuesets/schema/bioprocessing/scale_up.yaml +458 -0
  171. valuesets/schema/business/human_resources.yaml +752 -0
  172. valuesets/schema/business/industry_classifications.yaml +448 -0
  173. valuesets/schema/business/management_operations.yaml +602 -0
  174. valuesets/schema/business/organizational_structures.yaml +645 -0
  175. valuesets/schema/business/quality_management.yaml +502 -0
  176. valuesets/schema/business/supply_chain.yaml +688 -0
  177. valuesets/schema/chemistry/chemical_entities.yaml +639 -0
  178. valuesets/schema/chemistry/reaction_directionality.yaml +60 -0
  179. valuesets/schema/chemistry/reactions.yaml +442 -0
  180. valuesets/schema/clinical/nih_demographics.yaml +285 -0
  181. valuesets/schema/clinical/phenopackets.yaml +429 -0
  182. valuesets/schema/computing/file_formats.yaml +631 -0
  183. valuesets/schema/computing/maturity_levels.yaml +229 -0
  184. valuesets/schema/computing/mime_types.yaml +266 -0
  185. valuesets/schema/confidence_levels.yaml +206 -0
  186. valuesets/schema/contributor.yaml +30 -0
  187. valuesets/schema/core.yaml +55 -0
  188. valuesets/schema/data/data_absent_reason.yaml +82 -0
  189. valuesets/schema/data_science/binary_classification.yaml +125 -0
  190. valuesets/schema/data_science/emotion_classification.yaml +109 -0
  191. valuesets/schema/data_science/priority_severity.yaml +122 -0
  192. valuesets/schema/data_science/quality_control.yaml +68 -0
  193. valuesets/schema/data_science/sentiment_analysis.yaml +81 -0
  194. valuesets/schema/data_science/text_classification.yaml +135 -0
  195. valuesets/schema/demographics.yaml +238 -0
  196. valuesets/schema/ecological_interactions.yaml +298 -0
  197. valuesets/schema/energy/energy.yaml +595 -0
  198. valuesets/schema/energy/fossil_fuels.yaml +28 -0
  199. valuesets/schema/energy/nuclear/nuclear_facilities.yaml +463 -0
  200. valuesets/schema/energy/nuclear/nuclear_fuel_cycle.yaml +82 -0
  201. valuesets/schema/energy/nuclear/nuclear_fuels.yaml +421 -0
  202. valuesets/schema/energy/nuclear/nuclear_operations.yaml +480 -0
  203. valuesets/schema/energy/nuclear/nuclear_regulatory.yaml +200 -0
  204. valuesets/schema/energy/nuclear/nuclear_safety.yaml +352 -0
  205. valuesets/schema/energy/nuclear/nuclear_waste.yaml +332 -0
  206. valuesets/schema/energy/nuclear/reactor_types.yaml +394 -0
  207. valuesets/schema/environmental_health/exposures.yaml +355 -0
  208. valuesets/schema/generated_slots.yaml +1828 -0
  209. valuesets/schema/geography/geographic_codes.yaml +1018 -0
  210. valuesets/schema/health/vaccination.yaml +102 -0
  211. valuesets/schema/health.yaml +38 -0
  212. valuesets/schema/healthcare.yaml +53 -0
  213. valuesets/schema/industry/extractive_industry.yaml +89 -0
  214. valuesets/schema/industry/mining.yaml +888 -0
  215. valuesets/schema/industry/safety_colors.yaml +375 -0
  216. valuesets/schema/investigation.yaml +64 -0
  217. valuesets/schema/materials_science/characterization_methods.yaml +193 -0
  218. valuesets/schema/materials_science/crystal_structures.yaml +138 -0
  219. valuesets/schema/materials_science/material_properties.yaml +135 -0
  220. valuesets/schema/materials_science/material_types.yaml +151 -0
  221. valuesets/schema/materials_science/pigments_dyes.yaml +465 -0
  222. valuesets/schema/materials_science/synthesis_methods.yaml +186 -0
  223. valuesets/schema/medical/clinical.yaml +610 -0
  224. valuesets/schema/medical/neuroimaging.yaml +325 -0
  225. valuesets/schema/mining_processing.yaml +295 -0
  226. valuesets/schema/physics/states_of_matter.yaml +46 -0
  227. valuesets/schema/slot_mixins.yaml +143 -0
  228. valuesets/schema/social/person_status.yaml +28 -0
  229. valuesets/schema/spatial/spatial_qualifiers.yaml +466 -0
  230. valuesets/schema/statistics/prediction_outcomes.yaml +26 -0
  231. valuesets/schema/statistics.yaml +34 -0
  232. valuesets/schema/time/temporal.yaml +435 -0
  233. valuesets/schema/types.yaml +15 -0
  234. valuesets/schema/units/measurements.yaml +675 -0
  235. valuesets/schema/valuesets.yaml +100 -0
  236. valuesets/schema/visual/colors.yaml +778 -0
  237. valuesets/utils/__init__.py +6 -0
  238. valuesets/utils/comparison.py +102 -0
  239. valuesets/utils/expand_dynamic_enums.py +414 -0
  240. valuesets/utils/mapping_utils.py +236 -0
  241. valuesets/validators/__init__.py +11 -0
  242. valuesets/validators/enum_evaluator.py +669 -0
  243. valuesets/validators/oak_config.yaml +70 -0
  244. valuesets/validators/validate_with_ols.py +241 -0
  245. valuesets-0.3.1.dist-info/METADATA +395 -0
  246. valuesets-0.3.1.dist-info/RECORD +248 -0
  247. valuesets-0.3.1.dist-info/WHEEL +4 -0
  248. valuesets-0.3.1.dist-info/licenses/LICENSE +201 -0
@@ -0,0 +1,352 @@
1
+ name: nuclear_safety
2
+ title: Nuclear Safety Classifications and Emergency Levels
3
+ description: 'Nuclear safety classifications including INES scale, emergency action levels,
4
+ nuclear security categories, and safety system classifications. Based on IAEA standards,
5
+ NRC regulations, and international nuclear safety frameworks.'
6
+ id: https://w3id.org/linkml/valuesets/energy/nuclear/nuclear_safety
7
+ imports:
8
+ - linkml:types
9
+ prefixes:
10
+ valuesets: https://w3id.org/valuesets/
11
+ IAEA: https://www.iaea.org/
12
+ NRC: https://www.nrc.gov/
13
+ INES: https://www.iaea.org/resources/databases/ines
14
+ IEEE: https://standards.ieee.org/
15
+ default_prefix: valuesets
16
+ slots:
17
+ ines_level:
18
+ description: International Nuclear Event Scale level
19
+ range: INESLevelEnum
20
+ emergency_classification:
21
+ description: Nuclear emergency action level
22
+ range: EmergencyClassificationEnum
23
+ nuclear_security_category:
24
+ description: IAEA nuclear material security category
25
+ range: NuclearSecurityCategoryEnum
26
+ safety_system_class:
27
+ description: Nuclear safety system classification
28
+ range: SafetySystemClassEnum
29
+ reactor_safety_function:
30
+ description: Nuclear reactor safety function classification
31
+ range: ReactorSafetyFunctionEnum
32
+ defense_in_depth_level:
33
+ description: Defense in depth barrier level
34
+ range: DefenseInDepthLevelEnum
35
+ radiation_protection_zone:
36
+ description: Radiation protection zone classification
37
+ range: RadiationProtectionZoneEnum
38
+ enums:
39
+ INESLevelEnum:
40
+ description: International Nuclear and Radiological Event Scale (INES) levels
41
+ permissible_values:
42
+ LEVEL_0:
43
+ title: Level 0 - Below Scale/Deviation
44
+ description: Events without safety significance
45
+ annotations:
46
+ scale_position: below scale
47
+ safety_significance: no safety significance
48
+ public_impact: none
49
+ examples: minor technical issues
50
+ LEVEL_1:
51
+ title: Level 1 - Anomaly
52
+ description: Anomaly beyond authorized operating regime
53
+ annotations:
54
+ scale_position: incidents
55
+ safety_significance: minor
56
+ public_impact: none
57
+ examples: minor contamination, minor safety system failure
58
+ LEVEL_2:
59
+ title: Level 2 - Incident
60
+ description: Incident with significant defenses remaining
61
+ annotations:
62
+ scale_position: incidents
63
+ safety_significance: minor
64
+ public_impact: none
65
+ radiation_dose: "<10 mSv to workers"
66
+ LEVEL_3:
67
+ title: Level 3 - Serious Incident
68
+ description: Serious incident with some defense degradation
69
+ annotations:
70
+ scale_position: incidents
71
+ safety_significance: minor
72
+ public_impact: very minor
73
+ radiation_dose: "<100 mSv to workers"
74
+ examples: near accident, serious contamination
75
+ LEVEL_4:
76
+ title: Level 4 - Accident with Local Consequences
77
+ description: Accident with minor off-site releases
78
+ annotations:
79
+ scale_position: accidents
80
+ safety_significance: moderate
81
+ public_impact: minor local impact
82
+ evacuation: not required
83
+ examples: partial core damage
84
+ LEVEL_5:
85
+ title: Level 5 - Accident with Wider Consequences
86
+ description: Accident with limited off-site releases
87
+ annotations:
88
+ scale_position: accidents
89
+ safety_significance: moderate to major
90
+ public_impact: limited wider impact
91
+ protective_actions: limited evacuation
92
+ examples: Three Mile Island (1979)
93
+ LEVEL_6:
94
+ title: Level 6 - Serious Accident
95
+ description: Serious accident with significant releases
96
+ annotations:
97
+ scale_position: accidents
98
+ safety_significance: major
99
+ public_impact: significant
100
+ protective_actions: extensive evacuation and countermeasures
101
+ LEVEL_7:
102
+ title: Level 7 - Major Accident
103
+ description: Major accident with widespread health and environmental effects
104
+ annotations:
105
+ scale_position: accidents
106
+ safety_significance: major
107
+ public_impact: widespread
108
+ examples: Chernobyl (1986), Fukushima (2011)
109
+ consequences: long-term environmental contamination
110
+ EmergencyClassificationEnum:
111
+ description: Nuclear emergency action levels and classifications
112
+ permissible_values:
113
+ NOTIFICATION_UNUSUAL_EVENT:
114
+ title: Notification of Unusual Event (NOUE)
115
+ description: Events that are in process or have occurred which indicate potential degradation
116
+ aliases:
117
+ - NOUE
118
+ - Unusual Event
119
+ annotations:
120
+ severity: lowest emergency level
121
+ off_site_response: notification only
122
+ public_protective_actions: none required
123
+ emergency_response: minimal activation
124
+ ALERT:
125
+ title: Alert
126
+ description: Events involving actual or potential substantial degradation of plant safety
127
+ annotations:
128
+ severity: second emergency level
129
+ off_site_response: notification and standby
130
+ public_protective_actions: none required, but preparation
131
+ emergency_response: partial activation
132
+ plant_status: substantial safety degradation possible
133
+ SITE_AREA_EMERGENCY:
134
+ title: Site Area Emergency (SAE)
135
+ description: Events with actual or likely major failures of plant protective systems
136
+ aliases:
137
+ - SAE
138
+ annotations:
139
+ severity: third emergency level
140
+ off_site_response: offsite centers activated
141
+ public_protective_actions: may be required near site
142
+ emergency_response: full activation
143
+ plant_status: major plant safety systems failure
144
+ GENERAL_EMERGENCY:
145
+ title: General Emergency
146
+ description: Events involving actual or imminent substantial core degradation
147
+ annotations:
148
+ severity: highest emergency level
149
+ off_site_response: full activation
150
+ public_protective_actions: implementation likely
151
+ emergency_response: maximum response
152
+ plant_status: core degradation or containment failure
153
+ NuclearSecurityCategoryEnum:
154
+ description: IAEA nuclear material security categories (INFCIRC/225)
155
+ permissible_values:
156
+ CATEGORY_I:
157
+ title: Category I Nuclear Material
158
+ description: Material that can be used directly to manufacture nuclear explosive devices
159
+ annotations:
160
+ direct_use: yes
161
+ proliferation_risk: highest
162
+ protection_requirements: maximum
163
+ examples: HEU ≥20%, Pu ≥2kg, U-233 ≥2kg
164
+ physical_protection: multiple independent physical barriers
165
+ CATEGORY_II:
166
+ title: Category II Nuclear Material
167
+ description: Material requiring further processing to manufacture nuclear explosive devices
168
+ annotations:
169
+ direct_use: requires processing
170
+ proliferation_risk: moderate
171
+ protection_requirements: substantial
172
+ examples: HEU <20% but >5%, natural uranium >500kg
173
+ physical_protection: significant barriers required
174
+ CATEGORY_III:
175
+ title: Category III Nuclear Material
176
+ description: Material posing radiation hazard but minimal proliferation risk
177
+ annotations:
178
+ direct_use: no
179
+ proliferation_risk: low
180
+ protection_requirements: basic
181
+ examples: natural uranium 10-500kg, depleted uranium
182
+ physical_protection: basic measures sufficient
183
+ CATEGORY_IV:
184
+ title: Category IV Nuclear Material
185
+ description: Material with minimal security significance
186
+ annotations:
187
+ direct_use: no
188
+ proliferation_risk: minimal
189
+ protection_requirements: administrative
190
+ examples: small quantities of natural uranium
191
+ SafetySystemClassEnum:
192
+ description: Nuclear safety system classifications (based on IEEE and ASME standards)
193
+ permissible_values:
194
+ CLASS_1E:
195
+ title: Class 1E Safety Systems
196
+ description: Safety systems essential to emergency reactor shutdown and core cooling
197
+ annotations:
198
+ safety_function: essential to safety
199
+ redundancy: required
200
+ independence: required
201
+ power_supply: independent emergency power
202
+ seismic_qualification: required
203
+ examples: reactor protection system, emergency core cooling
204
+ SAFETY_RELATED:
205
+ title: Safety-Related Systems
206
+ description: Systems important to safety but not classified as Class 1E
207
+ annotations:
208
+ safety_function: important to safety
209
+ quality_requirements: enhanced
210
+ testing_requirements: extensive
211
+ examples: some support systems, barriers
212
+ SAFETY_SIGNIFICANT:
213
+ title: Safety-Significant Systems
214
+ description: Systems with risk significance but not safety-related
215
+ annotations:
216
+ safety_function: risk-significant
217
+ quality_requirements: graded approach
218
+ risk_informed: classification based on risk assessment
219
+ NON_SAFETY_RELATED:
220
+ title: Non-Safety-Related Systems
221
+ description: Systems not required for nuclear safety functions
222
+ annotations:
223
+ safety_function: not required for safety
224
+ quality_requirements: commercial standards
225
+ failure_impact: minimal safety impact
226
+ ReactorSafetyFunctionEnum:
227
+ description: Fundamental nuclear reactor safety functions
228
+ permissible_values:
229
+ REACTIVITY_CONTROL:
230
+ title: Reactivity Control
231
+ description: Control of nuclear chain reaction
232
+ annotations:
233
+ function: maintain reactor subcritical when required
234
+ systems: control rods, neutron absorbers
235
+ failure_consequence: criticality accident
236
+ defense_category: prevent accidents
237
+ HEAT_REMOVAL:
238
+ title: Heat Removal
239
+ description: Removal of decay heat from reactor core
240
+ annotations:
241
+ function: prevent fuel overheating
242
+ systems: cooling systems, heat exchangers
243
+ failure_consequence: core damage, meltdown
244
+ defense_category: mitigate consequences
245
+ CONTAINMENT_INTEGRITY:
246
+ title: Containment Integrity
247
+ description: Confinement of radioactive materials
248
+ annotations:
249
+ function: prevent radioactive release
250
+ systems: containment structure, isolation systems
251
+ failure_consequence: environmental contamination
252
+ defense_category: mitigate consequences
253
+ CORE_COOLING:
254
+ title: Core Cooling
255
+ description: Maintenance of adequate core cooling
256
+ annotations:
257
+ function: prevent fuel damage
258
+ systems: primary cooling, emergency cooling
259
+ failure_consequence: fuel damage
260
+ time_sensitivity: immediate to long-term
261
+ SHUTDOWN_CAPABILITY:
262
+ title: Shutdown Capability
263
+ description: Ability to shut down and maintain shutdown
264
+ annotations:
265
+ function: terminate power operation safely
266
+ systems: control systems, shutdown systems
267
+ time_requirement: rapid response capability
268
+ DefenseInDepthLevelEnum:
269
+ description: Defense in depth barrier levels for nuclear safety
270
+ permissible_values:
271
+ LEVEL_1:
272
+ title: Level 1 - Prevention of Abnormal Operation
273
+ description: Conservative design and high quality in construction and operation
274
+ annotations:
275
+ objective: prevent deviations from normal operation
276
+ approach: conservative design, quality assurance
277
+ examples: design margins, quality construction
278
+ LEVEL_2:
279
+ title: Level 2 - Control of Abnormal Operation
280
+ description: Control of abnormal operation and detection of failures
281
+ annotations:
282
+ objective: control abnormal operation and failures
283
+ approach: control systems, protection systems
284
+ examples: reactor protection systems, safety systems
285
+ LEVEL_3:
286
+ title: Level 3 - Control of Accidents Within Design Basis
287
+ description: Control of accidents to prevent progression to severe conditions
288
+ annotations:
289
+ objective: control design basis accidents
290
+ approach: engineered safety features
291
+ examples: emergency core cooling, containment systems
292
+ LEVEL_4:
293
+ title: Level 4 - Control of Severe Plant Conditions
294
+ description: Control of severe accidents including prevention of core melt progression
295
+ annotations:
296
+ objective: control severe accidents
297
+ approach: severe accident management
298
+ examples: cavity flooding, filtered venting
299
+ LEVEL_5:
300
+ title: Level 5 - Mitigation of Radiological Consequences
301
+ description: Mitigation of off-site radiological consequences
302
+ annotations:
303
+ objective: protect public and environment
304
+ approach: emergency planning and response
305
+ examples: evacuation plans, protective actions
306
+ RadiationProtectionZoneEnum:
307
+ description: Radiation protection zone classifications for nuclear facilities
308
+ permissible_values:
309
+ EXCLUSION_AREA:
310
+ title: Exclusion Area
311
+ description: Area under control of reactor operator with restricted access
312
+ annotations:
313
+ control: reactor operator
314
+ public_access: restricted
315
+ size: typically few hundred meters radius
316
+ purpose: immediate accident response control
317
+ LOW_POPULATION_ZONE:
318
+ title: Low Population Zone (LPZ)
319
+ description: Area with low population density surrounding exclusion area
320
+ annotations:
321
+ population_density: low
322
+ evacuation: feasible if needed
323
+ size: typically few kilometers radius
324
+ dose_limit: design basis for accident consequences
325
+ EMERGENCY_PLANNING_ZONE:
326
+ title: Emergency Planning Zone (EPZ)
327
+ description: Area for which emergency planning is conducted
328
+ annotations:
329
+ planning_required: comprehensive emergency plans
330
+ size: typically 10-mile (16 km) radius
331
+ protective_actions: evacuation and sheltering plans
332
+ INGESTION_PATHWAY_ZONE:
333
+ title: Ingestion Pathway Zone
334
+ description: Area for controlling food and water contamination
335
+ annotations:
336
+ contamination_control: food and water supplies
337
+ size: typically 50-mile (80 km) radius
338
+ monitoring: food chain monitoring required
339
+ CONTROLLED_AREA:
340
+ title: Controlled Area
341
+ description: Area within facility boundary with access control
342
+ annotations:
343
+ access_control: personnel monitoring required
344
+ radiation_monitoring: continuous monitoring
345
+ training_required: radiation safety training
346
+ SUPERVISED_AREA:
347
+ title: Supervised Area
348
+ description: Area with potential for radiation exposure but lower than controlled
349
+ annotations:
350
+ monitoring: periodic monitoring
351
+ access_control: limited restrictions
352
+ training_required: basic radiation awareness
@@ -0,0 +1,332 @@
1
+ name: nuclear_waste
2
+ title: Nuclear Waste Classifications
3
+ description: 'Classifications of radioactive waste based on IAEA standards, NRC 10 CFR 61
4
+ classifications, and international waste management standards. Includes activity levels,
5
+ disposal requirements, and time scales.'
6
+ id: https://w3id.org/linkml/valuesets/energy/nuclear/nuclear_waste
7
+ imports:
8
+ - linkml:types
9
+ prefixes:
10
+ valuesets: https://w3id.org/valuesets/
11
+ IAEA: https://www.iaea.org/
12
+ NRC: https://www.nrc.gov/
13
+ CFR: https://www.ecfr.gov/
14
+ default_prefix: valuesets
15
+ slots:
16
+ waste_classification:
17
+ description: International radioactive waste classification
18
+ range: IAEAWasteClassificationEnum
19
+ nrc_waste_class:
20
+ description: US NRC waste classification (10 CFR 61)
21
+ range: NRCWasteClassEnum
22
+ waste_heat_generation:
23
+ description: Heat generation category of radioactive waste
24
+ range: WasteHeatGenerationEnum
25
+ waste_half_life_category:
26
+ description: Half-life category for radioactive waste
27
+ range: WasteHalfLifeCategoryEnum
28
+ waste_disposal_method:
29
+ description: Disposal method for radioactive waste
30
+ range: WasteDisposalMethodEnum
31
+ waste_source:
32
+ description: Source of radioactive waste generation
33
+ range: WasteSourceEnum
34
+ transuranic_category:
35
+ description: Transuranic waste classification
36
+ range: TransuranicWasteCategoryEnum
37
+ enums:
38
+ IAEAWasteClassificationEnum:
39
+ description: IAEA General Safety Requirements radioactive waste classification scheme
40
+ permissible_values:
41
+ EXEMPT_WASTE:
42
+ title: Exempt Waste (EW)
43
+ description: Waste with negligible radioactivity requiring no regulatory control
44
+ aliases:
45
+ - EW
46
+ annotations:
47
+ regulatory_control: none required
48
+ clearance: can be cleared from regulatory control
49
+ disposal: as ordinary waste
50
+ activity_level: negligible
51
+ VERY_SHORT_LIVED_WASTE:
52
+ title: Very Short-Lived Waste (VSLW)
53
+ description: Waste stored for decay to exempt levels within few years
54
+ aliases:
55
+ - VSLW
56
+ annotations:
57
+ storage_period: up to few years
58
+ decay_strategy: storage for decay
59
+ clearance: after decay period
60
+ typical_sources: medical, research isotopes
61
+ VERY_LOW_LEVEL_WASTE:
62
+ title: Very Low Level Waste (VLLW)
63
+ description: Waste requiring limited containment and isolation
64
+ aliases:
65
+ - VLLW
66
+ annotations:
67
+ containment_requirement: limited
68
+ disposal: near-surface landfill-type
69
+ activity_level: very low but above exempt
70
+ isolation_period: limited
71
+ LOW_LEVEL_WASTE:
72
+ title: Low Level Waste (LLW)
73
+ description: Waste requiring containment for up to hundreds of years
74
+ aliases:
75
+ - LLW
76
+ annotations:
77
+ containment_period: up to few hundred years
78
+ disposal: near-surface disposal
79
+ activity_level: low
80
+ heat_generation: negligible
81
+ INTERMEDIATE_LEVEL_WASTE:
82
+ title: Intermediate Level Waste (ILW)
83
+ description: Waste requiring containment for thousands of years
84
+ aliases:
85
+ - ILW
86
+ annotations:
87
+ containment_period: up to thousands of years
88
+ disposal: geological disposal
89
+ activity_level: intermediate
90
+ heat_generation: low (<2 kW/m³)
91
+ shielding: required
92
+ HIGH_LEVEL_WASTE:
93
+ title: High Level Waste (HLW)
94
+ description: Waste requiring containment for thousands to hundreds of thousands of years
95
+ aliases:
96
+ - HLW
97
+ annotations:
98
+ containment_period: thousands to hundreds of thousands of years
99
+ disposal: geological disposal
100
+ activity_level: high
101
+ heat_generation: significant (>2 kW/m³)
102
+ cooling: required
103
+ shielding: heavy shielding required
104
+ NRCWasteClassEnum:
105
+ description: US NRC 10 CFR 61 low-level radioactive waste classification
106
+ permissible_values:
107
+ CLASS_A:
108
+ title: Class A Low-Level Waste
109
+ description: Lowest radioactivity waste suitable for shallow land burial
110
+ annotations:
111
+ disposal_method: shallow land burial
112
+ segregation_requirements: minimal
113
+ waste_form_requirements: none
114
+ typical_sources: medical, industrial, power plants
115
+ concentration_limits: lowest of three classes
116
+ CLASS_B:
117
+ title: Class B Low-Level Waste
118
+ description: Intermediate radioactivity requiring waste form stability
119
+ annotations:
120
+ disposal_method: shallow land burial
121
+ segregation_requirements: from Class A
122
+ waste_form_requirements: structural stability
123
+ institutional_control: 100 years minimum
124
+ concentration_limits: intermediate
125
+ CLASS_C:
126
+ title: Class C Low-Level Waste
127
+ description: Highest concentration suitable for shallow land burial
128
+ annotations:
129
+ disposal_method: shallow land burial
130
+ segregation_requirements: enhanced
131
+ waste_form_requirements: structural stability
132
+ institutional_control: 100 years minimum
133
+ intruder_barriers: required
134
+ concentration_limits: highest for shallow burial
135
+ GREATER_THAN_CLASS_C:
136
+ title: Greater Than Class C Waste (GTCC)
137
+ description: Waste exceeding Class C limits, generally unsuitable for shallow burial
138
+ aliases:
139
+ - GTCC
140
+ annotations:
141
+ disposal_method: case-by-case evaluation
142
+ shallow_burial: generally not acceptable
143
+ deep_disposal: may be required
144
+ nrc_evaluation: required
145
+ concentration_limits: exceeds Class C
146
+ WasteHeatGenerationEnum:
147
+ description: Heat generation categories for radioactive waste
148
+ permissible_values:
149
+ NEGLIGIBLE_HEAT:
150
+ title: Negligible Heat Generation
151
+ description: Waste generating negligible heat
152
+ annotations:
153
+ heat_output: "<0.1 kW/m³"
154
+ cooling_required: no
155
+ thermal_consideration: minimal
156
+ LOW_HEAT:
157
+ title: Low Heat Generation
158
+ description: Waste generating low but measurable heat
159
+ annotations:
160
+ heat_output: 0.1-2 kW/m³
161
+ cooling_required: minimal
162
+ thermal_consideration: some design consideration
163
+ HIGH_HEAT:
164
+ title: High Heat Generation
165
+ description: Waste generating significant heat requiring thermal management
166
+ annotations:
167
+ heat_output: ">2 kW/m³"
168
+ cooling_required: yes
169
+ thermal_consideration: major design factor
170
+ typical_waste: spent nuclear fuel, HLW glass
171
+ WasteHalfLifeCategoryEnum:
172
+ description: Half-life categories for radioactive waste classification
173
+ permissible_values:
174
+ VERY_SHORT_LIVED:
175
+ title: Very Short-Lived
176
+ description: Radionuclides with very short half-lives
177
+ annotations:
178
+ half_life_range: seconds to days
179
+ decay_strategy: storage for decay
180
+ typical_examples: medical isotopes, some activation products
181
+ SHORT_LIVED:
182
+ title: Short-Lived
183
+ description: Radionuclides with short half-lives
184
+ annotations:
185
+ half_life_range: "<30 years"
186
+ containment_period: hundreds of years
187
+ decay_significance: significant over containment period
188
+ LONG_LIVED:
189
+ title: Long-Lived
190
+ description: Radionuclides with long half-lives
191
+ annotations:
192
+ half_life_range: ">30 years"
193
+ containment_period: thousands to millions of years
194
+ decay_significance: minimal over human timescales
195
+ examples: actinides, some fission products
196
+ WasteDisposalMethodEnum:
197
+ description: Methods for radioactive waste disposal
198
+ permissible_values:
199
+ CLEARANCE:
200
+ title: Clearance for Unrestricted Use
201
+ description: Release from regulatory control as ordinary waste
202
+ annotations:
203
+ regulatory_oversight: none after clearance
204
+ waste_category: exempt waste
205
+ disposal_location: conventional facilities
206
+ DECAY_STORAGE:
207
+ title: Decay Storage
208
+ description: Storage for radioactive decay to exempt levels
209
+ annotations:
210
+ storage_duration: typically <10 years
211
+ waste_category: very short-lived waste
212
+ final_disposal: as ordinary waste after decay
213
+ NEAR_SURFACE_DISPOSAL:
214
+ title: Near-Surface Disposal
215
+ description: Disposal in engineered near-surface facilities
216
+ annotations:
217
+ depth: typically <30 meters
218
+ waste_categories: VLLW, LLW, some ILW
219
+ institutional_control: 100-300 years
220
+ barriers: engineered barriers
221
+ GEOLOGICAL_DISPOSAL:
222
+ title: Geological Disposal
223
+ description: Deep underground disposal in stable geological formations
224
+ annotations:
225
+ depth: typically >300 meters
226
+ waste_categories: HLW, long-lived ILW, spent fuel
227
+ containment_period: thousands to millions of years
228
+ barriers: multiple barriers including geology
229
+ BOREHOLE_DISPOSAL:
230
+ title: Borehole Disposal
231
+ description: Disposal in deep boreholes
232
+ annotations:
233
+ depth: 1-5 kilometers
234
+ waste_categories: disused sealed sources, some HLW
235
+ isolation: extreme depth isolation
236
+ TRANSMUTATION:
237
+ title: Transmutation
238
+ description: Nuclear transformation to shorter-lived or stable isotopes
239
+ annotations:
240
+ method: accelerator-driven systems or fast reactors
241
+ waste_categories: long-lived actinides
242
+ status: research and development
243
+ WasteSourceEnum:
244
+ description: Sources of radioactive waste generation
245
+ permissible_values:
246
+ NUCLEAR_POWER_PLANTS:
247
+ title: Nuclear Power Plants
248
+ description: Waste from commercial nuclear power generation
249
+ annotations:
250
+ waste_types: spent fuel, operational waste, decommissioning waste
251
+ volume_fraction: largest single source
252
+ waste_classes: all classes including HLW
253
+ MEDICAL_APPLICATIONS:
254
+ title: Medical Applications
255
+ description: Waste from nuclear medicine and radiotherapy
256
+ annotations:
257
+ waste_types: short-lived medical isotopes, sealed sources
258
+ typical_classification: Class A, VSLW
259
+ decay_strategy: often storage for decay
260
+ INDUSTRIAL_APPLICATIONS:
261
+ title: Industrial Applications
262
+ description: Waste from industrial use of radioactive materials
263
+ annotations:
264
+ applications: gauging, radiography, sterilization
265
+ waste_types: sealed sources, contaminated equipment
266
+ typical_classification: Class A and B
267
+ RESEARCH_FACILITIES:
268
+ title: Research Facilities
269
+ description: Waste from research reactors and laboratories
270
+ annotations:
271
+ waste_types: activation products, contaminated materials
272
+ typical_classification: Class A, B, and C
273
+ fuel_type: often HEU spent fuel
274
+ NUCLEAR_WEAPONS_PROGRAM:
275
+ title: Nuclear Weapons Program
276
+ description: Waste from defense nuclear activities
277
+ annotations:
278
+ waste_types: TRU waste, HLW, contaminated equipment
279
+ legacy_waste: significant volumes from past activities
280
+ classification: all classes including TRU
281
+ DECOMMISSIONING:
282
+ title: Facility Decommissioning
283
+ description: Waste from dismantling nuclear facilities
284
+ annotations:
285
+ waste_types: activated concrete, contaminated metal
286
+ volume: large volumes of VLLW and LLW
287
+ activity_level: generally low level
288
+ URANIUM_MINING:
289
+ title: Uranium Mining and Milling
290
+ description: Waste from uranium extraction and processing
291
+ annotations:
292
+ waste_types: tailings, contaminated equipment
293
+ volume: very large volumes
294
+ activity_level: naturally occurring radioactivity
295
+ FUEL_CYCLE_FACILITIES:
296
+ title: Fuel Cycle Facilities
297
+ description: Waste from fuel fabrication, enrichment, and reprocessing
298
+ annotations:
299
+ waste_types: contaminated equipment, process waste
300
+ classification: variable depending on process
301
+ uranium_content: often contains enriched uranium
302
+ TransuranicWasteCategoryEnum:
303
+ description: Transuranic waste classifications (US system)
304
+ permissible_values:
305
+ CONTACT_HANDLED_TRU:
306
+ title: Contact-Handled Transuranic Waste
307
+ description: TRU waste with surface dose rate ≤200 mrem/hr
308
+ aliases:
309
+ - CH-TRU
310
+ annotations:
311
+ dose_rate: ≤200 mrem/hr at surface
312
+ handling: direct contact possible with protection
313
+ disposal: geological repository (WIPP)
314
+ plutonium_content: ">100 nCi/g"
315
+ REMOTE_HANDLED_TRU:
316
+ title: Remote-Handled Transuranic Waste
317
+ description: TRU waste with surface dose rate >200 mrem/hr
318
+ aliases:
319
+ - RH-TRU
320
+ annotations:
321
+ dose_rate: ">200 mrem/hr at surface"
322
+ handling: remote handling required
323
+ disposal: geological repository with additional shielding
324
+ plutonium_content: ">100 nCi/g"
325
+ TRU_MIXED_WASTE:
326
+ title: TRU Mixed Waste
327
+ description: TRU waste also containing hazardous chemical components
328
+ annotations:
329
+ regulation: both radiological and chemical hazard regulations
330
+ treatment: may require chemical treatment before disposal
331
+ disposal: geological repository after treatment
332
+ complexity: dual regulatory framework