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,394 @@
|
|
|
1
|
+
name: nuclear_reactor_types
|
|
2
|
+
title: Nuclear Reactor Types and Classifications
|
|
3
|
+
description: 'Classifications of nuclear reactor types based on coolant, moderator, neutron spectrum,
|
|
4
|
+
and generational designs. Based on World Nuclear Association classifications, IAEA reactor types,
|
|
5
|
+
and industry standards.'
|
|
6
|
+
id: https://w3id.org/linkml/valuesets/energy/nuclear/reactor_types
|
|
7
|
+
imports:
|
|
8
|
+
- linkml:types
|
|
9
|
+
prefixes:
|
|
10
|
+
valuesets: https://w3id.org/valuesets/
|
|
11
|
+
IAEA: https://www.iaea.org/
|
|
12
|
+
WNA: https://world-nuclear.org/
|
|
13
|
+
IEEE: https://standards.ieee.org/
|
|
14
|
+
default_prefix: valuesets
|
|
15
|
+
slots:
|
|
16
|
+
reactor_type:
|
|
17
|
+
description: Nuclear reactor classification by design type
|
|
18
|
+
range: ReactorTypeEnum
|
|
19
|
+
reactor_generation:
|
|
20
|
+
description: Reactor generation classification (I, II, III, III+, IV)
|
|
21
|
+
range: ReactorGenerationEnum
|
|
22
|
+
reactor_coolant:
|
|
23
|
+
description: Primary coolant type used in reactor
|
|
24
|
+
range: ReactorCoolantEnum
|
|
25
|
+
reactor_moderator:
|
|
26
|
+
description: Neutron moderator type used in reactor
|
|
27
|
+
range: ReactorModeratorEnum
|
|
28
|
+
reactor_neutron_spectrum:
|
|
29
|
+
description: Neutron energy spectrum classification
|
|
30
|
+
range: ReactorNeutronSpectrumEnum
|
|
31
|
+
reactor_size_category:
|
|
32
|
+
description: Reactor size classification
|
|
33
|
+
range: ReactorSizeCategoryEnum
|
|
34
|
+
enums:
|
|
35
|
+
ReactorTypeEnum:
|
|
36
|
+
description: Nuclear reactor types based on design and operational characteristics
|
|
37
|
+
permissible_values:
|
|
38
|
+
PWR:
|
|
39
|
+
title: Pressurized Water Reactor
|
|
40
|
+
description: Most common reactor type using light water under pressure
|
|
41
|
+
aliases:
|
|
42
|
+
- Pressurized Water Reactor
|
|
43
|
+
annotations:
|
|
44
|
+
coolant: light water
|
|
45
|
+
moderator: light water
|
|
46
|
+
pressure: high
|
|
47
|
+
steam_generation: indirect
|
|
48
|
+
worldwide_count: ~300
|
|
49
|
+
fuel_enrichment: 3-5%
|
|
50
|
+
BWR:
|
|
51
|
+
title: Boiling Water Reactor
|
|
52
|
+
description: Light water reactor where water boils directly in core
|
|
53
|
+
aliases:
|
|
54
|
+
- Boiling Water Reactor
|
|
55
|
+
annotations:
|
|
56
|
+
coolant: light water
|
|
57
|
+
moderator: light water
|
|
58
|
+
pressure: medium
|
|
59
|
+
steam_generation: direct
|
|
60
|
+
worldwide_count: ~60
|
|
61
|
+
fuel_enrichment: 3-5%
|
|
62
|
+
PHWR:
|
|
63
|
+
title: Pressurized Heavy Water Reactor
|
|
64
|
+
description: Heavy water moderated and cooled reactor (CANDU type)
|
|
65
|
+
aliases:
|
|
66
|
+
- CANDU
|
|
67
|
+
- Pressurized Heavy Water Reactor
|
|
68
|
+
annotations:
|
|
69
|
+
coolant: heavy water
|
|
70
|
+
moderator: heavy water
|
|
71
|
+
pressure: high
|
|
72
|
+
steam_generation: indirect
|
|
73
|
+
worldwide_count: ~47
|
|
74
|
+
fuel_enrichment: natural uranium
|
|
75
|
+
LWGR:
|
|
76
|
+
title: Light Water Graphite Reactor
|
|
77
|
+
description: Graphite moderated, light water cooled reactor (RBMK type)
|
|
78
|
+
aliases:
|
|
79
|
+
- RBMK
|
|
80
|
+
- Light Water Graphite Reactor
|
|
81
|
+
annotations:
|
|
82
|
+
coolant: light water
|
|
83
|
+
moderator: graphite
|
|
84
|
+
pressure: medium
|
|
85
|
+
steam_generation: direct
|
|
86
|
+
worldwide_count: ~10
|
|
87
|
+
fuel_enrichment: 1.8-2.4%
|
|
88
|
+
AGR:
|
|
89
|
+
title: Advanced Gas-Cooled Reactor
|
|
90
|
+
description: Graphite moderated, CO2 gas cooled reactor
|
|
91
|
+
aliases:
|
|
92
|
+
- Advanced Gas-Cooled Reactor
|
|
93
|
+
annotations:
|
|
94
|
+
coolant: carbon dioxide
|
|
95
|
+
moderator: graphite
|
|
96
|
+
pressure: high
|
|
97
|
+
steam_generation: indirect
|
|
98
|
+
worldwide_count: ~8
|
|
99
|
+
fuel_enrichment: 2.5-3.5%
|
|
100
|
+
GCR:
|
|
101
|
+
title: Gas-Cooled Reactor
|
|
102
|
+
description: Early gas-cooled reactor design (Magnox type)
|
|
103
|
+
aliases:
|
|
104
|
+
- Magnox
|
|
105
|
+
- Gas-Cooled Reactor
|
|
106
|
+
annotations:
|
|
107
|
+
coolant: carbon dioxide
|
|
108
|
+
moderator: graphite
|
|
109
|
+
pressure: low
|
|
110
|
+
fuel_enrichment: natural uranium
|
|
111
|
+
FBR:
|
|
112
|
+
title: Fast Breeder Reactor
|
|
113
|
+
description: Fast neutron reactor that breeds fissile material
|
|
114
|
+
aliases:
|
|
115
|
+
- Fast Breeder Reactor
|
|
116
|
+
- Liquid Metal Fast Breeder Reactor
|
|
117
|
+
annotations:
|
|
118
|
+
coolant: liquid metal
|
|
119
|
+
moderator: none
|
|
120
|
+
neutron_spectrum: fast
|
|
121
|
+
worldwide_count: ~2
|
|
122
|
+
fuel_enrichment: 15-20%
|
|
123
|
+
HTGR:
|
|
124
|
+
title: High Temperature Gas-Cooled Reactor
|
|
125
|
+
description: Helium-cooled reactor with TRISO fuel
|
|
126
|
+
aliases:
|
|
127
|
+
- High Temperature Gas-Cooled Reactor
|
|
128
|
+
annotations:
|
|
129
|
+
coolant: helium
|
|
130
|
+
moderator: graphite
|
|
131
|
+
temperature: very high
|
|
132
|
+
fuel_type: TRISO
|
|
133
|
+
MSR:
|
|
134
|
+
title: Molten Salt Reactor
|
|
135
|
+
description: Reactor using molten salt as coolant and/or fuel
|
|
136
|
+
aliases:
|
|
137
|
+
- Molten Salt Reactor
|
|
138
|
+
annotations:
|
|
139
|
+
coolant: molten salt
|
|
140
|
+
fuel_form: liquid
|
|
141
|
+
generation: IV
|
|
142
|
+
SMR:
|
|
143
|
+
title: Small Modular Reactor
|
|
144
|
+
description: Small reactors designed for modular construction
|
|
145
|
+
aliases:
|
|
146
|
+
- Small Modular Reactor
|
|
147
|
+
annotations:
|
|
148
|
+
power_output: "<300 MWe"
|
|
149
|
+
modularity: high
|
|
150
|
+
generation: III+/IV
|
|
151
|
+
VHTR:
|
|
152
|
+
title: Very High Temperature Reactor
|
|
153
|
+
description: Generation IV reactor for very high temperature applications
|
|
154
|
+
aliases:
|
|
155
|
+
- Very High Temperature Reactor
|
|
156
|
+
annotations:
|
|
157
|
+
temperature: ">950°C"
|
|
158
|
+
generation: IV
|
|
159
|
+
coolant: helium
|
|
160
|
+
SFR:
|
|
161
|
+
title: Sodium-Cooled Fast Reactor
|
|
162
|
+
description: Fast reactor cooled by liquid sodium
|
|
163
|
+
aliases:
|
|
164
|
+
- Sodium-Cooled Fast Reactor
|
|
165
|
+
annotations:
|
|
166
|
+
coolant: liquid sodium
|
|
167
|
+
neutron_spectrum: fast
|
|
168
|
+
generation: IV
|
|
169
|
+
LFR:
|
|
170
|
+
title: Lead-Cooled Fast Reactor
|
|
171
|
+
description: Fast reactor cooled by liquid lead or lead-bismuth
|
|
172
|
+
aliases:
|
|
173
|
+
- Lead-Cooled Fast Reactor
|
|
174
|
+
annotations:
|
|
175
|
+
coolant: liquid lead
|
|
176
|
+
neutron_spectrum: fast
|
|
177
|
+
generation: IV
|
|
178
|
+
GFR:
|
|
179
|
+
title: Gas-Cooled Fast Reactor
|
|
180
|
+
description: Fast reactor with gas cooling
|
|
181
|
+
aliases:
|
|
182
|
+
- Gas-Cooled Fast Reactor
|
|
183
|
+
annotations:
|
|
184
|
+
coolant: helium
|
|
185
|
+
neutron_spectrum: fast
|
|
186
|
+
generation: IV
|
|
187
|
+
SCWR:
|
|
188
|
+
title: Supercritical Water-Cooled Reactor
|
|
189
|
+
description: Reactor using supercritical water as coolant
|
|
190
|
+
aliases:
|
|
191
|
+
- Supercritical Water-Cooled Reactor
|
|
192
|
+
annotations:
|
|
193
|
+
coolant: supercritical water
|
|
194
|
+
generation: IV
|
|
195
|
+
ReactorGenerationEnum:
|
|
196
|
+
description: Nuclear reactor generational classifications
|
|
197
|
+
permissible_values:
|
|
198
|
+
GENERATION_I:
|
|
199
|
+
title: Generation I
|
|
200
|
+
description: Early commercial reactors (1950s-1960s)
|
|
201
|
+
annotations:
|
|
202
|
+
period: 1950s-1960s
|
|
203
|
+
status: retired
|
|
204
|
+
examples: Shippingport, Dresden-1
|
|
205
|
+
GENERATION_II:
|
|
206
|
+
title: Generation II
|
|
207
|
+
description: Current operating commercial reactors
|
|
208
|
+
annotations:
|
|
209
|
+
period: 1970s-1990s
|
|
210
|
+
status: operating
|
|
211
|
+
examples: PWR, BWR, CANDU
|
|
212
|
+
design_life: 40 years
|
|
213
|
+
GENERATION_III:
|
|
214
|
+
title: Generation III
|
|
215
|
+
description: Advanced reactors with enhanced safety
|
|
216
|
+
annotations:
|
|
217
|
+
period: 1990s-2010s
|
|
218
|
+
status: some operating
|
|
219
|
+
improvements: passive safety, standardization
|
|
220
|
+
examples: AP1000, EPR, ABWR
|
|
221
|
+
GENERATION_III_PLUS:
|
|
222
|
+
title: Generation III+
|
|
223
|
+
description: Evolutionary improvements to Generation III
|
|
224
|
+
annotations:
|
|
225
|
+
period: 2000s-present
|
|
226
|
+
status: deployment
|
|
227
|
+
improvements: enhanced passive safety
|
|
228
|
+
examples: AP1000, APR1400
|
|
229
|
+
GENERATION_IV:
|
|
230
|
+
title: Generation IV
|
|
231
|
+
description: Next generation advanced reactor concepts
|
|
232
|
+
annotations:
|
|
233
|
+
period: 2030s and beyond
|
|
234
|
+
status: development
|
|
235
|
+
goals: sustainability, economics, safety, proliferation resistance
|
|
236
|
+
examples: VHTR, SFR, LFR, GFR, SCWR, MSR
|
|
237
|
+
ReactorCoolantEnum:
|
|
238
|
+
description: Primary coolant types used in nuclear reactors
|
|
239
|
+
permissible_values:
|
|
240
|
+
LIGHT_WATER:
|
|
241
|
+
title: Light Water (H2O)
|
|
242
|
+
description: Ordinary water as primary coolant
|
|
243
|
+
annotations:
|
|
244
|
+
chemical_formula: H2O
|
|
245
|
+
density: 1.0 g/cm³
|
|
246
|
+
neutron_absorption: moderate
|
|
247
|
+
HEAVY_WATER:
|
|
248
|
+
title: Heavy Water (D2O)
|
|
249
|
+
description: Deuterium oxide as primary coolant
|
|
250
|
+
annotations:
|
|
251
|
+
chemical_formula: D2O
|
|
252
|
+
density: 1.1 g/cm³
|
|
253
|
+
neutron_absorption: low
|
|
254
|
+
CARBON_DIOXIDE:
|
|
255
|
+
title: Carbon Dioxide
|
|
256
|
+
description: CO2 gas as primary coolant
|
|
257
|
+
annotations:
|
|
258
|
+
chemical_formula: CO2
|
|
259
|
+
phase: gas
|
|
260
|
+
pressure: high
|
|
261
|
+
HELIUM:
|
|
262
|
+
title: Helium
|
|
263
|
+
description: Helium gas as primary coolant
|
|
264
|
+
annotations:
|
|
265
|
+
chemical_formula: He
|
|
266
|
+
phase: gas
|
|
267
|
+
neutron_absorption: very low
|
|
268
|
+
temperature_capability: very high
|
|
269
|
+
LIQUID_SODIUM:
|
|
270
|
+
title: Liquid Sodium
|
|
271
|
+
description: Molten sodium metal as coolant
|
|
272
|
+
annotations:
|
|
273
|
+
chemical_formula: Na
|
|
274
|
+
phase: liquid
|
|
275
|
+
melting_point: 98°C
|
|
276
|
+
neutron_absorption: low
|
|
277
|
+
LIQUID_LEAD:
|
|
278
|
+
title: Liquid Lead
|
|
279
|
+
description: Molten lead or lead-bismuth as coolant
|
|
280
|
+
annotations:
|
|
281
|
+
chemical_formula: Pb
|
|
282
|
+
phase: liquid
|
|
283
|
+
melting_point: 327°C
|
|
284
|
+
neutron_absorption: low
|
|
285
|
+
MOLTEN_SALT:
|
|
286
|
+
title: Molten Salt
|
|
287
|
+
description: Molten fluoride or chloride salts
|
|
288
|
+
annotations:
|
|
289
|
+
phase: liquid
|
|
290
|
+
temperature_capability: very high
|
|
291
|
+
neutron_absorption: variable
|
|
292
|
+
SUPERCRITICAL_WATER:
|
|
293
|
+
title: Supercritical Water
|
|
294
|
+
description: Water above critical point
|
|
295
|
+
annotations:
|
|
296
|
+
chemical_formula: H2O
|
|
297
|
+
pressure: ">221 bar"
|
|
298
|
+
temperature: ">374°C"
|
|
299
|
+
ReactorModeratorEnum:
|
|
300
|
+
description: Neutron moderator types used in nuclear reactors
|
|
301
|
+
permissible_values:
|
|
302
|
+
LIGHT_WATER:
|
|
303
|
+
title: Light Water (H2O)
|
|
304
|
+
description: Ordinary water as neutron moderator
|
|
305
|
+
annotations:
|
|
306
|
+
chemical_formula: H2O
|
|
307
|
+
moderation_effectiveness: good
|
|
308
|
+
neutron_absorption: moderate
|
|
309
|
+
HEAVY_WATER:
|
|
310
|
+
title: Heavy Water (D2O)
|
|
311
|
+
description: Deuterium oxide as neutron moderator
|
|
312
|
+
annotations:
|
|
313
|
+
chemical_formula: D2O
|
|
314
|
+
moderation_effectiveness: excellent
|
|
315
|
+
neutron_absorption: very low
|
|
316
|
+
GRAPHITE:
|
|
317
|
+
title: Graphite
|
|
318
|
+
description: Carbon graphite as neutron moderator
|
|
319
|
+
annotations:
|
|
320
|
+
chemical_formula: C
|
|
321
|
+
moderation_effectiveness: good
|
|
322
|
+
neutron_absorption: low
|
|
323
|
+
temperature_resistance: high
|
|
324
|
+
BERYLLIUM:
|
|
325
|
+
title: Beryllium
|
|
326
|
+
description: Beryllium metal as neutron moderator
|
|
327
|
+
annotations:
|
|
328
|
+
chemical_formula: Be
|
|
329
|
+
moderation_effectiveness: good
|
|
330
|
+
neutron_absorption: very low
|
|
331
|
+
NONE:
|
|
332
|
+
title: No Moderator
|
|
333
|
+
description: Fast reactors with no neutron moderation
|
|
334
|
+
annotations:
|
|
335
|
+
neutron_spectrum: fast
|
|
336
|
+
moderation: none
|
|
337
|
+
ReactorNeutronSpectrumEnum:
|
|
338
|
+
description: Neutron energy spectrum classifications
|
|
339
|
+
permissible_values:
|
|
340
|
+
THERMAL:
|
|
341
|
+
title: Thermal Neutron Spectrum
|
|
342
|
+
description: Low energy neutrons in thermal equilibrium
|
|
343
|
+
annotations:
|
|
344
|
+
energy_range: "<1 eV"
|
|
345
|
+
temperature_equivalent: room temperature
|
|
346
|
+
fission_probability: high for U-235
|
|
347
|
+
EPITHERMAL:
|
|
348
|
+
title: Epithermal Neutron Spectrum
|
|
349
|
+
description: Intermediate energy neutrons
|
|
350
|
+
annotations:
|
|
351
|
+
energy_range: 1 eV - 1 keV
|
|
352
|
+
temperature_equivalent: elevated
|
|
353
|
+
FAST:
|
|
354
|
+
title: Fast Neutron Spectrum
|
|
355
|
+
description: High energy neutrons from fission
|
|
356
|
+
annotations:
|
|
357
|
+
energy_range: ">1 keV"
|
|
358
|
+
moderation: minimal or none
|
|
359
|
+
breeding_capability: high
|
|
360
|
+
ReactorSizeCategoryEnum:
|
|
361
|
+
description: Nuclear reactor size classifications
|
|
362
|
+
permissible_values:
|
|
363
|
+
LARGE:
|
|
364
|
+
title: Large Reactor
|
|
365
|
+
description: Traditional large-scale commercial reactors
|
|
366
|
+
annotations:
|
|
367
|
+
power_output: ">700 MWe"
|
|
368
|
+
construction: custom on-site
|
|
369
|
+
MEDIUM:
|
|
370
|
+
title: Medium Reactor
|
|
371
|
+
description: Mid-scale reactors
|
|
372
|
+
annotations:
|
|
373
|
+
power_output: 300-700 MWe
|
|
374
|
+
construction: semi-modular
|
|
375
|
+
SMALL:
|
|
376
|
+
title: Small Reactor
|
|
377
|
+
description: Small modular reactors
|
|
378
|
+
annotations:
|
|
379
|
+
power_output: 50-300 MWe
|
|
380
|
+
construction: modular
|
|
381
|
+
transport: potentially transportable
|
|
382
|
+
MICRO:
|
|
383
|
+
title: Micro Reactor
|
|
384
|
+
description: Very small reactors for remote applications
|
|
385
|
+
annotations:
|
|
386
|
+
power_output: "<50 MWe"
|
|
387
|
+
construction: factory-built
|
|
388
|
+
transport: transportable
|
|
389
|
+
RESEARCH:
|
|
390
|
+
title: Research Reactor
|
|
391
|
+
description: Small reactors for research and isotope production
|
|
392
|
+
annotations:
|
|
393
|
+
power_output: "<100 MWt"
|
|
394
|
+
primary_use: research, isotopes, training
|