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,480 @@
1
+ name: nuclear_operations
2
+ title: Nuclear Operations and Reactor States
3
+ description: 'Classifications for nuclear reactor operational states, maintenance activities,
4
+ licensing stages, and operational procedures. Based on nuclear industry standards
5
+ and regulatory frameworks.'
6
+ id: https://w3id.org/linkml/valuesets/energy/nuclear/nuclear_operations
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
+ WNA: https://world-nuclear.org/
14
+ default_prefix: valuesets
15
+ slots:
16
+ reactor_operating_state:
17
+ description: Current operational state of nuclear reactor
18
+ range: ReactorOperatingStateEnum
19
+ maintenance_type:
20
+ description: Type of nuclear facility maintenance activity
21
+ range: MaintenanceTypeEnum
22
+ licensing_stage:
23
+ description: Nuclear facility licensing stage
24
+ range: LicensingStageEnum
25
+ fuel_cycle_operation:
26
+ description: Nuclear fuel cycle operational activity
27
+ range: FuelCycleOperationEnum
28
+ reactor_control_mode:
29
+ description: Reactor control and safety system mode
30
+ range: ReactorControlModeEnum
31
+ operational_procedure:
32
+ description: Standard nuclear operational procedure
33
+ range: OperationalProcedureEnum
34
+ enums:
35
+ ReactorOperatingStateEnum:
36
+ description: Operational states of nuclear reactors
37
+ permissible_values:
38
+ STARTUP:
39
+ title: Startup
40
+ description: Reactor transitioning from shutdown to power operation
41
+ annotations:
42
+ neutron_level: increasing
43
+ control_rod_position: withdrawing
44
+ power_level: rising from zero
45
+ duration: hours to days
46
+ operator_attention: high
47
+ CRITICAL:
48
+ title: Critical
49
+ description: Reactor achieving self-sustaining chain reaction
50
+ annotations:
51
+ neutron_multiplication: k-effective = 1.0
52
+ power_level: minimal but self-sustaining
53
+ control_rod_position: critical position
54
+ milestone: first criticality achievement
55
+ POWER_ESCALATION:
56
+ title: Power Escalation
57
+ description: Reactor increasing power toward full power operation
58
+ annotations:
59
+ power_level: increasing incrementally
60
+ testing: ongoing at each power level
61
+ duration: days to weeks
62
+ procedures: systematic power increases
63
+ FULL_POWER_OPERATION:
64
+ title: Full Power Operation
65
+ description: Reactor operating at rated thermal power
66
+ annotations:
67
+ power_level: 100% rated power
68
+ operation_mode: commercial electricity generation
69
+ duration: typically 12-24 months
70
+ fuel_burnup: accumulating
71
+ LOAD_FOLLOWING:
72
+ title: Load Following
73
+ description: Reactor adjusting power to match electrical demand
74
+ annotations:
75
+ power_level: variable based on demand
76
+ control_mode: automatic load following
77
+ flexibility: grid demand responsive
78
+ frequency: daily power variations
79
+ REDUCED_POWER:
80
+ title: Reduced Power Operation
81
+ description: Reactor operating below rated power
82
+ annotations:
83
+ power_level: "<100% rated power"
84
+ reasons: maintenance, grid demand, testing
85
+ control_rod_position: partially inserted
86
+ HOT_STANDBY:
87
+ title: Hot Standby
88
+ description: Reactor subcritical but at operating temperature
89
+ annotations:
90
+ criticality: subcritical
91
+ temperature: operating temperature maintained
92
+ pressure: operating pressure maintained
93
+ ready_time: rapid return to power possible
94
+ COLD_SHUTDOWN:
95
+ title: Cold Shutdown
96
+ description: Reactor subcritical and cooled below operating temperature
97
+ annotations:
98
+ criticality: subcritical with margin
99
+ temperature: "<200°F (93°C) typically"
100
+ refueling: possible in this state
101
+ maintenance: major maintenance possible
102
+ REFUELING:
103
+ title: Refueling
104
+ description: Reactor shut down for fuel replacement
105
+ annotations:
106
+ reactor_head: removed
107
+ fuel_handling: active fuel movement
108
+ criticality_control: strict procedures
109
+ duration: typically 30-60 days
110
+ REACTOR_TRIP:
111
+ title: Reactor Trip
112
+ description: Rapid automatic shutdown due to safety system actuation
113
+ annotations:
114
+ shutdown_speed: seconds
115
+ cause: safety system activation
116
+ control_rods: fully inserted rapidly
117
+ investigation: cause determination required
118
+ SCRAM:
119
+ title: Scram
120
+ description: Emergency rapid shutdown of reactor
121
+ annotations:
122
+ shutdown_type: emergency shutdown
123
+ control_rod_insertion: fastest possible
124
+ operator_action: manual or automatic
125
+ follow_up: immediate safety assessment
126
+ EMERGENCY_SHUTDOWN:
127
+ title: Emergency Shutdown
128
+ description: Shutdown due to emergency conditions
129
+ annotations:
130
+ urgency: immediate shutdown required
131
+ safety_systems: may be activated
132
+ investigation: extensive post-event analysis
133
+ recovery: detailed restart procedures
134
+ MaintenanceTypeEnum:
135
+ description: Types of nuclear facility maintenance activities
136
+ permissible_values:
137
+ PREVENTIVE_MAINTENANCE:
138
+ title: Preventive Maintenance
139
+ description: Scheduled maintenance to prevent equipment failure
140
+ annotations:
141
+ schedule: predetermined intervals
142
+ purpose: prevent failures
143
+ planning: extensive advance planning
144
+ outage_type: planned outage
145
+ CORRECTIVE_MAINTENANCE:
146
+ title: Corrective Maintenance
147
+ description: Maintenance to repair failed or degraded equipment
148
+ annotations:
149
+ trigger: equipment failure or degradation
150
+ urgency: varies by safety significance
151
+ planning: may be immediate
152
+ schedule: unplanned
153
+ PREDICTIVE_MAINTENANCE:
154
+ title: Predictive Maintenance
155
+ description: Maintenance based on condition monitoring
156
+ annotations:
157
+ basis: condition monitoring data
158
+ timing: based on predicted failure
159
+ efficiency: optimized maintenance timing
160
+ technology: condition monitoring systems
161
+ CONDITION_BASED_MAINTENANCE:
162
+ title: Condition-Based Maintenance
163
+ description: Maintenance triggered by equipment condition assessment
164
+ annotations:
165
+ assessment: continuous condition monitoring
166
+ trigger: condition degradation
167
+ optimization: resource optimization
168
+ safety: maintains safety margins
169
+ REFUELING_OUTAGE_MAINTENANCE:
170
+ title: Refueling Outage Maintenance
171
+ description: Major maintenance during scheduled refueling
172
+ annotations:
173
+ frequency: every 12-24 months
174
+ scope: major equipment inspection and repair
175
+ duration: 30-60 days typical
176
+ access: full plant access available
177
+ FORCED_OUTAGE_MAINTENANCE:
178
+ title: Forced Outage Maintenance
179
+ description: Unplanned maintenance due to equipment failure
180
+ annotations:
181
+ cause: unexpected equipment failure
182
+ urgency: immediate attention required
183
+ duration: variable
184
+ safety_significance: may affect safety systems
185
+ IN_SERVICE_INSPECTION:
186
+ title: In-Service Inspection
187
+ description: Required inspection of safety-related components
188
+ annotations:
189
+ regulatory_requirement: mandated by regulations
190
+ frequency: specified intervals (typically 10 years)
191
+ scope: pressure vessels, piping, supports
192
+ techniques: non-destructive testing
193
+ MODIFICATION_WORK:
194
+ title: Modification Work
195
+ description: Changes to plant design or configuration
196
+ annotations:
197
+ purpose: plant improvement or regulatory compliance
198
+ approval: requires design change approval
199
+ testing: extensive post-modification testing
200
+ documentation: comprehensive documentation updates
201
+ LicensingStageEnum:
202
+ description: Nuclear facility licensing stages
203
+ permissible_values:
204
+ SITE_PERMIT:
205
+ title: Site Permit
206
+ description: Early site permit for nuclear facility
207
+ annotations:
208
+ scope: site suitability evaluation
209
+ duration: 10-20 years typically
210
+ flexibility: technology-neutral
211
+ advantage: reduced licensing risk
212
+ DESIGN_CERTIFICATION:
213
+ title: Design Certification
214
+ description: Certification of standardized reactor design
215
+ annotations:
216
+ scope: reactor design approval
217
+ duration: 15-20 years typically
218
+ advantage: reduced construction licensing time
219
+ standardization: enables multiple deployments
220
+ CONSTRUCTION_PERMIT:
221
+ title: Construction Permit
222
+ description: Authorization to begin nuclear facility construction
223
+ annotations:
224
+ authorization: construction activities
225
+ requirements: detailed design and safety analysis
226
+ oversight: construction inspection program
227
+ milestone: major licensing milestone
228
+ OPERATING_LICENSE:
229
+ title: Operating License
230
+ description: Authorization for commercial reactor operation
231
+ annotations:
232
+ authorization: power operation and fuel loading
233
+ duration: initially 40 years
234
+ renewal: possible for additional 20 years
235
+ testing: extensive pre-operational testing
236
+ LICENSE_RENEWAL:
237
+ title: License Renewal
238
+ description: Extension of operating license beyond initial term
239
+ annotations:
240
+ extension: additional 20 years typical
241
+ review: aging management program review
242
+ basis: demonstrated safe operation
243
+ economics: enables continued operation
244
+ COMBINED_LICENSE:
245
+ title: Combined License (COL)
246
+ description: Combined construction and operating license
247
+ annotations:
248
+ scope: construction and operation authorization
249
+ advantage: single licensing process
250
+ requirements: complete design and safety analysis
251
+ efficiency: streamlined licensing approach
252
+ DECOMMISSIONING_PLAN:
253
+ title: Decommissioning Plan Approval
254
+ description: Approval of facility decommissioning plan
255
+ annotations:
256
+ scope: facility dismantlement plan
257
+ funding: decommissioning funding assurance
258
+ schedule: decommissioning timeline
259
+ end_state: final site condition
260
+ LICENSE_TERMINATION:
261
+ title: License Termination
262
+ description: Final termination of nuclear facility license
263
+ annotations:
264
+ completion: decommissioning completion
265
+ survey: final radiological survey
266
+ release: site release for unrestricted use
267
+ finality: end of regulatory oversight
268
+ FuelCycleOperationEnum:
269
+ description: Nuclear fuel cycle operational activities
270
+ permissible_values:
271
+ URANIUM_EXPLORATION:
272
+ title: Uranium Exploration
273
+ description: Search and evaluation of uranium deposits
274
+ annotations:
275
+ activities: geological surveys, drilling, sampling
276
+ purpose: locate economically viable deposits
277
+ methods: airborne surveys, ground exploration
278
+ URANIUM_EXTRACTION:
279
+ title: Uranium Extraction
280
+ description: Mining and extraction of uranium ore
281
+ annotations:
282
+ methods: open pit, underground, in-situ leaching
283
+ output: uranium ore
284
+ processing: crushing and grinding
285
+ URANIUM_MILLING:
286
+ title: Uranium Milling
287
+ description: Processing of uranium ore to produce yellowcake
288
+ annotations:
289
+ input: uranium ore
290
+ output: uranium concentrate (U3O8)
291
+ process: acid or alkaline leaching
292
+ URANIUM_CONVERSION:
293
+ title: Uranium Conversion
294
+ description: Conversion of yellowcake to uranium hexafluoride
295
+ annotations:
296
+ input: uranium concentrate (U3O8)
297
+ output: uranium hexafluoride (UF6)
298
+ purpose: prepare for enrichment
299
+ URANIUM_ENRICHMENT:
300
+ title: Uranium Enrichment
301
+ description: Increase U-235 concentration in uranium
302
+ annotations:
303
+ input: natural uranium (0.711% U-235)
304
+ output: enriched uranium (3-5% typical)
305
+ waste: depleted uranium tails
306
+ methods: gas centrifuge, gaseous diffusion
307
+ FUEL_FABRICATION:
308
+ title: Fuel Fabrication
309
+ description: Manufacturing of nuclear fuel assemblies
310
+ annotations:
311
+ input: enriched uranium
312
+ output: fuel assemblies
313
+ process: pellet production, rod assembly
314
+ REACTOR_FUEL_LOADING:
315
+ title: Reactor Fuel Loading
316
+ description: Installation of fresh fuel in reactor
317
+ annotations:
318
+ frequency: every 12-24 months
319
+ procedure: careful criticality control
320
+ configuration: specific loading pattern
321
+ REACTOR_OPERATION:
322
+ title: Reactor Operation
323
+ description: Power generation and fuel burnup
324
+ annotations:
325
+ duration: 12-24 months typical cycle
326
+ burnup: fuel depletion over time
327
+ output: electricity and fission products
328
+ SPENT_FUEL_DISCHARGE:
329
+ title: Spent Fuel Discharge
330
+ description: Removal of used fuel from reactor
331
+ annotations:
332
+ timing: end of fuel cycle
333
+ handling: underwater fuel handling
334
+ destination: spent fuel pool storage
335
+ SPENT_FUEL_STORAGE:
336
+ title: Spent Fuel Storage
337
+ description: Interim storage of discharged fuel
338
+ annotations:
339
+ cooling: decay heat removal
340
+ duration: 5-100+ years
341
+ methods: pools, dry casks
342
+ SPENT_FUEL_REPROCESSING:
343
+ title: Spent Fuel Reprocessing
344
+ description: Chemical separation of spent fuel components
345
+ annotations:
346
+ separation: uranium, plutonium, waste
347
+ recovery: recovers usable materials
348
+ waste: high-level waste production
349
+ WASTE_CONDITIONING:
350
+ title: Waste Conditioning
351
+ description: Preparation of waste for storage or disposal
352
+ annotations:
353
+ treatment: solidification, encapsulation
354
+ purpose: stable waste form
355
+ standards: waste acceptance criteria
356
+ WASTE_DISPOSAL:
357
+ title: Waste Disposal
358
+ description: Permanent disposal of nuclear waste
359
+ annotations:
360
+ method: geological repository
361
+ isolation: long-term containment
362
+ safety: protect public and environment
363
+ ReactorControlModeEnum:
364
+ description: Reactor control and safety system operational modes
365
+ permissible_values:
366
+ MANUAL_CONTROL:
367
+ title: Manual Control
368
+ description: Direct operator control of reactor systems
369
+ annotations:
370
+ operator_role: direct manual operation
371
+ automation: minimal automation
372
+ response_time: depends on operator
373
+ application: startup, shutdown, testing
374
+ AUTOMATIC_CONTROL:
375
+ title: Automatic Control
376
+ description: Automated reactor control systems
377
+ annotations:
378
+ automation: high level automation
379
+ operator_role: supervisory
380
+ response_time: rapid automatic response
381
+ application: normal power operation
382
+ REACTOR_PROTECTION_SYSTEM:
383
+ title: Reactor Protection System Active
384
+ description: Safety system monitoring for trip conditions
385
+ annotations:
386
+ function: automatic reactor trip on unsafe conditions
387
+ redundancy: multiple independent channels
388
+ response_time: milliseconds to seconds
389
+ priority: overrides operator actions
390
+ ENGINEERED_SAFEGUARDS:
391
+ title: Engineered Safeguards Active
392
+ description: Safety systems for accident mitigation
393
+ annotations:
394
+ function: mitigate consequences of accidents
395
+ activation: automatic on accident conditions
396
+ systems: emergency core cooling, containment
397
+ redundancy: multiple trains
398
+ EMERGENCY_OPERATING_PROCEDURES:
399
+ title: Emergency Operating Procedures
400
+ description: Operator actions for emergency conditions
401
+ annotations:
402
+ guidance: symptom-based procedures
403
+ training: extensive operator training
404
+ decision_making: structured approach
405
+ coordination: with emergency response
406
+ SEVERE_ACCIDENT_MANAGEMENT:
407
+ title: Severe Accident Management
408
+ description: Procedures for beyond design basis accidents
409
+ annotations:
410
+ scope: core damage mitigation
411
+ guidance: severe accident management guidelines
412
+ equipment: portable emergency equipment
413
+ coordination: multi-unit considerations
414
+ OperationalProcedureEnum:
415
+ description: Standard nuclear facility operational procedures
416
+ permissible_values:
417
+ STARTUP_PROCEDURE:
418
+ title: Reactor Startup Procedure
419
+ description: Systematic procedure for bringing reactor to power
420
+ annotations:
421
+ phases: multiple phases with hold points
422
+ testing: system testing at each phase
423
+ authorization: management authorization required
424
+ duration: hours to days
425
+ SHUTDOWN_PROCEDURE:
426
+ title: Reactor Shutdown Procedure
427
+ description: Systematic procedure for shutting down reactor
428
+ annotations:
429
+ control_rod_insertion: gradual or rapid
430
+ cooling: controlled cooldown
431
+ systems: systematic system shutdown
432
+ verification: shutdown margin verification
433
+ REFUELING_PROCEDURE:
434
+ title: Refueling Procedure
435
+ description: Procedure for fuel handling and replacement
436
+ annotations:
437
+ criticality_control: strict criticality prevention
438
+ handling: underwater fuel handling
439
+ documentation: detailed records
440
+ verification: independent verification
441
+ SURVEILLANCE_TESTING:
442
+ title: Surveillance Testing
443
+ description: Regular testing of safety systems
444
+ annotations:
445
+ frequency: specified by technical specifications
446
+ scope: functionality verification
447
+ documentation: test result documentation
448
+ corrective_action: if performance degraded
449
+ MAINTENANCE_PROCEDURE:
450
+ title: Maintenance Procedure
451
+ description: Systematic approach to equipment maintenance
452
+ annotations:
453
+ work_control: work order control process
454
+ safety_tagging: equipment isolation
455
+ testing: post-maintenance testing
456
+ documentation: maintenance records
457
+ EMERGENCY_RESPONSE:
458
+ title: Emergency Response Procedure
459
+ description: Response to emergency conditions
460
+ annotations:
461
+ classification: event classification
462
+ notification: offsite notification
463
+ mitigation: protective action implementation
464
+ coordination: with offsite authorities
465
+ RADIOLOGICAL_PROTECTION:
466
+ title: Radiological Protection Procedure
467
+ description: Procedures for radiation protection
468
+ annotations:
469
+ monitoring: radiation monitoring
470
+ contamination_control: contamination prevention
471
+ dose_control: personnel dose limits
472
+ emergency: radiological emergency response
473
+ SECURITY_PROCEDURE:
474
+ title: Security Procedure
475
+ description: Physical security and access control procedures
476
+ annotations:
477
+ access_control: personnel access authorization
478
+ detection: intrusion detection systems
479
+ response: security force response
480
+ coordination: with law enforcement
@@ -0,0 +1,200 @@
1
+ name: nuclear_regulatory
2
+ title: Nuclear Regulatory Frameworks Value Sets
3
+ description: Value sets for nuclear regulatory bodies, frameworks, and compliance standards
4
+ id: https://w3id.org/common-value-sets/nuclear_regulatory
5
+ imports:
6
+ - linkml:types
7
+ prefixes:
8
+ linkml: https://w3id.org/linkml/
9
+ valuesets: https://w3id.org/valuesets/
10
+ default_prefix: valuesets
11
+
12
+ slots:
13
+ nuclear_regulatory_body:
14
+ description: Nuclear regulatory authorities and organizations
15
+ range: NuclearRegulatoryBodyEnum
16
+ regulatory_framework:
17
+ description: Nuclear regulatory frameworks and standards
18
+ range: RegulatoryFrameworkEnum
19
+ licensing_stage:
20
+ description: Nuclear facility licensing stages
21
+ range: LicensingStageEnum
22
+ compliance_standard:
23
+ description: Nuclear safety and security compliance standards
24
+ range: ComplianceStandardEnum
25
+ inspection_type:
26
+ description: Types of nuclear regulatory inspections
27
+ range: InspectionTypeEnum
28
+
29
+ enums:
30
+ NuclearRegulatoryBodyEnum:
31
+ description: Nuclear regulatory authorities and international organizations
32
+ permissible_values:
33
+ IAEA:
34
+ description: International Atomic Energy Agency
35
+ title: International Atomic Energy Agency
36
+ NRC:
37
+ description: US Nuclear Regulatory Commission
38
+ title: Nuclear Regulatory Commission (US)
39
+ ONR:
40
+ description: Office for Nuclear Regulation (UK)
41
+ title: Office for Nuclear Regulation (UK)
42
+ ASN:
43
+ description: Autorité de sûreté nucléaire (France)
44
+ title: Nuclear Safety Authority (France)
45
+ NISA:
46
+ description: Nuclear and Industrial Safety Agency (Japan)
47
+ title: Nuclear and Industrial Safety Agency (Japan)
48
+ CNSC:
49
+ description: Canadian Nuclear Safety Commission
50
+ title: Canadian Nuclear Safety Commission
51
+ STUK:
52
+ description: Radiation and Nuclear Safety Authority (Finland)
53
+ title: Radiation and Nuclear Safety Authority (Finland)
54
+ SKI:
55
+ description: Swedish Nuclear Power Inspectorate
56
+ title: Swedish Nuclear Power Inspectorate
57
+ ENSI:
58
+ description: Swiss Federal Nuclear Safety Inspectorate
59
+ title: Swiss Federal Nuclear Safety Inspectorate
60
+ ROSATOM:
61
+ description: State Atomic Energy Corporation (Russia)
62
+ title: State Atomic Energy Corporation (Russia)
63
+ CNNC:
64
+ description: China National Nuclear Corporation
65
+ title: China National Nuclear Corporation
66
+ KAERI:
67
+ description: Korea Atomic Energy Research Institute
68
+ title: Korea Atomic Energy Research Institute
69
+ AERB:
70
+ description: Atomic Energy Regulatory Board (India)
71
+ title: Atomic Energy Regulatory Board (India)
72
+
73
+ RegulatoryFrameworkEnum:
74
+ description: Nuclear regulatory frameworks and international conventions
75
+ permissible_values:
76
+ NPT:
77
+ description: Nuclear Non-Proliferation Treaty
78
+ title: Nuclear Non-Proliferation Treaty
79
+ COMPREHENSIVE_SAFEGUARDS:
80
+ description: IAEA Comprehensive Safeguards Agreements
81
+ title: IAEA Comprehensive Safeguards Agreement
82
+ ADDITIONAL_PROTOCOL:
83
+ description: IAEA Additional Protocol
84
+ title: IAEA Additional Protocol
85
+ CONVENTION_NUCLEAR_SAFETY:
86
+ description: Convention on Nuclear Safety
87
+ title: Convention on Nuclear Safety
88
+ JOINT_CONVENTION:
89
+ description: Joint Convention on the Safety of Spent Fuel Management and Radioactive Waste
90
+ title: Joint Convention on Radioactive Waste Safety
91
+ PARIS_CONVENTION:
92
+ description: Paris Convention on Third Party Liability in the Field of Nuclear Energy
93
+ title: Paris Convention on Nuclear Liability
94
+ VIENNA_CONVENTION:
95
+ description: Vienna Convention on Civil Liability for Nuclear Damage
96
+ title: Vienna Convention on Nuclear Liability
97
+ CPPNM:
98
+ description: Convention on the Physical Protection of Nuclear Material
99
+ title: Convention on Physical Protection of Nuclear Material
100
+ ICSANT:
101
+ description: International Convention for the Suppression of Acts of Nuclear Terrorism
102
+ title: International Convention for Suppression of Nuclear Terrorism
103
+ SAFETY_STANDARDS:
104
+ description: IAEA Safety Standards Series
105
+ title: IAEA Safety Standards
106
+ SECURITY_SERIES:
107
+ description: IAEA Nuclear Security Series
108
+ title: IAEA Nuclear Security Series
109
+
110
+ LicensingStageEnum:
111
+ description: Stages in nuclear facility licensing process
112
+ permissible_values:
113
+ PRE_APPLICATION:
114
+ description: Pre-application consultation and preparation
115
+ CONSTRUCTION_PERMIT:
116
+ description: Construction permit application and review
117
+ OPERATING_LICENSE:
118
+ description: Operating license application and review
119
+ LICENSE_RENEWAL:
120
+ description: License renewal application and review
121
+ POWER_UPRATE:
122
+ description: Power uprate license amendment
123
+ DECOMMISSIONING_PLAN:
124
+ description: Decommissioning plan approval
125
+ LICENSE_TERMINATION:
126
+ description: License termination and site release
127
+ DESIGN_CERTIFICATION:
128
+ description: Standard design certification
129
+ EARLY_SITE_PERMIT:
130
+ description: Early site permit for future construction
131
+ COMBINED_LICENSE:
132
+ description: Combined construction and operating license
133
+
134
+ ComplianceStandardEnum:
135
+ description: Nuclear safety and security compliance standards
136
+ permissible_values:
137
+ ISO_14001:
138
+ description: Environmental Management Systems
139
+ title: ISO 14001 Environmental Management
140
+ ISO_9001:
141
+ description: Quality Management Systems
142
+ title: ISO 9001 Quality Management
143
+ ASME_NQA_1:
144
+ description: Quality Assurance Requirements for Nuclear Facility Applications
145
+ title: ASME NQA-1 Quality Assurance
146
+ IEEE_603:
147
+ description: IEEE Standard Criteria for Safety Systems for Nuclear Power Generating Stations
148
+ title: IEEE 603 Safety Systems Criteria
149
+ IEC_61513:
150
+ description: Nuclear power plants - Instrumentation and control systems
151
+ title: IEC 61513 I&C Systems
152
+ ANSI_N45_2:
153
+ description: Quality Assurance Program Requirements for Nuclear Power Plants
154
+ title: ANSI N45.2 Quality Assurance
155
+ NUREG_0800:
156
+ description: Standard Review Plan for the Review of Safety Analysis Reports
157
+ title: NUREG-0800 Standard Review Plan
158
+ IAEA_GSR:
159
+ description: IAEA General Safety Requirements
160
+ title: IAEA General Safety Requirements
161
+ IAEA_NSS:
162
+ description: IAEA Nuclear Security Series
163
+ title: IAEA Nuclear Security Series
164
+ WENRA_RL:
165
+ description: Western European Nuclear Regulators Association Reference Levels
166
+ title: WENRA Reference Levels
167
+
168
+ InspectionTypeEnum:
169
+ description: Types of nuclear regulatory inspections and assessments
170
+ permissible_values:
171
+ ROUTINE_INSPECTION:
172
+ description: Regularly scheduled inspection activities
173
+ REACTIVE_INSPECTION:
174
+ description: Event-driven or follow-up inspections
175
+ TEAM_INSPECTION:
176
+ description: Multi-disciplinary team inspections
177
+ TRIENNIAL_INSPECTION:
178
+ description: Three-year cycle comprehensive inspections
179
+ CONSTRUCTION_INSPECTION:
180
+ description: Construction phase inspections
181
+ PRE_OPERATIONAL_TESTING:
182
+ description: Pre-operational testing and commissioning inspections
183
+ STARTUP_TESTING:
184
+ description: Initial startup and power ascension inspections
185
+ PERIODIC_SAFETY_REVIEW:
186
+ description: Comprehensive periodic safety reviews
187
+ INTEGRATED_INSPECTION:
188
+ description: Integrated inspection program
189
+ FORCE_ON_FORCE:
190
+ description: Security force-on-force exercises
191
+ EMERGENCY_PREPAREDNESS:
192
+ description: Emergency preparedness and response inspections
193
+ SPECIAL_INSPECTION:
194
+ description: Special inspections for significant events
195
+ VENDOR_INSPECTION:
196
+ description: Nuclear vendor and supplier inspections
197
+ CYBER_SECURITY:
198
+ description: Cybersecurity program inspections
199
+ DECOMMISSIONING_INSPECTION:
200
+ description: Decommissioning activities inspections