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,595 @@
1
+ name: energy
2
+ title: Energy and Power Value Sets
3
+ description: Value sets for energy sources, units, consumption, and related concepts
4
+ id: https://w3id.org/linkml/valuesets/energy/energy
5
+ imports:
6
+ - linkml:types
7
+ prefixes:
8
+ valuesets: https://w3id.org/valuesets/
9
+ QUDT: http://qudt.org/vocab/unit/
10
+ ENVO: http://purl.obolibrary.org/obo/ENVO_
11
+ CHEBI: http://purl.obolibrary.org/obo/CHEBI_
12
+ default_prefix: valuesets
13
+ slots:
14
+ energy_source:
15
+ description: Types of energy sources and generation methods
16
+ range: EnergySource
17
+ energy_unit:
18
+ description: Units for measuring energy
19
+ range: EnergyUnit
20
+ power_unit:
21
+ description: Units for measuring power (energy per time)
22
+ range: PowerUnit
23
+ energy_efficiency_rating:
24
+ description: Energy efficiency ratings and standards
25
+ range: EnergyEfficiencyRating
26
+ building_energy_standard:
27
+ description: Building energy efficiency standards and certifications
28
+ range: BuildingEnergyStandard
29
+ grid:
30
+ description: Types of electrical grid systems
31
+ range: GridType
32
+ energy_storage:
33
+ description: Types of energy storage systems
34
+ range: EnergyStorageType
35
+ emission_scope:
36
+ description: Greenhouse gas emission scopes (GHG Protocol)
37
+ range: EmissionScope
38
+ carbon_intensity:
39
+ description: Carbon intensity levels for energy sources
40
+ range: CarbonIntensity
41
+ electricity_market:
42
+ description: Types of electricity markets and pricing
43
+ range: ElectricityMarket
44
+ enums:
45
+ EnergySource:
46
+ description: Types of energy sources and generation methods
47
+ permissible_values:
48
+ SOLAR:
49
+ title: Solar energy (photovoltaic and thermal)
50
+ aliases:
51
+ - Solar radiation
52
+ meaning: ENVO:01001862
53
+ annotations:
54
+ renewable: true
55
+ emission_free: true
56
+ WIND:
57
+ title: Wind power
58
+ aliases:
59
+ - wind wave energy
60
+ related_mappings:
61
+ - ENVO:2000033
62
+ annotations:
63
+ renewable: true
64
+ emission_free: true
65
+ HYDROELECTRIC:
66
+ title: Hydroelectric power
67
+ aliases:
68
+ - hydroelectric dam
69
+ related_mappings:
70
+ - ENVO:00000468
71
+ annotations:
72
+ renewable: true
73
+ emission_free: true
74
+ GEOTHERMAL:
75
+ title: Geothermal energy
76
+ aliases:
77
+ - geothermal energy
78
+ meaning: ENVO:2000034
79
+ annotations:
80
+ renewable: true
81
+ emission_free: true
82
+ BIOMASS:
83
+ title: Biomass and bioenergy
84
+ aliases:
85
+ - organic material
86
+ related_mappings:
87
+ - ENVO:01000155
88
+ annotations:
89
+ renewable: true
90
+ emission_free: false
91
+ BIOFUEL:
92
+ title: Biofuels (ethanol, biodiesel)
93
+ annotations:
94
+ renewable: true
95
+ emission_free: false
96
+ TIDAL:
97
+ title: Tidal and wave energy
98
+ annotations:
99
+ renewable: true
100
+ emission_free: true
101
+ HYDROGEN:
102
+ title: Hydrogen fuel
103
+ aliases:
104
+ - dihydrogen
105
+ meaning: CHEBI:18276
106
+ annotations:
107
+ renewable: depends
108
+ emission_free: true
109
+ COAL:
110
+ title: Coal
111
+ meaning: ENVO:02000091
112
+ annotations:
113
+ renewable: false
114
+ emission_free: false
115
+ fossil_fuel: true
116
+ NATURAL_GAS:
117
+ title: Natural gas
118
+ meaning: ENVO:01000552
119
+ annotations:
120
+ renewable: false
121
+ emission_free: false
122
+ fossil_fuel: true
123
+ PETROLEUM:
124
+ title: Petroleum/oil
125
+ meaning: ENVO:00002984
126
+ annotations:
127
+ renewable: false
128
+ emission_free: false
129
+ fossil_fuel: true
130
+ DIESEL:
131
+ title: Diesel fuel
132
+ aliases:
133
+ - diesel fuel
134
+ meaning: ENVO:03510006
135
+ annotations:
136
+ renewable: false
137
+ emission_free: false
138
+ fossil_fuel: true
139
+ GASOLINE:
140
+ title: Gasoline/petrol
141
+ aliases:
142
+ - fuel oil
143
+ related_mappings:
144
+ - ENVO:00002983
145
+ annotations:
146
+ renewable: false
147
+ emission_free: false
148
+ fossil_fuel: true
149
+ PROPANE:
150
+ title: Propane/LPG
151
+ aliases:
152
+ - liquefied petroleum gas
153
+ meaning: ENVO:01000553
154
+ annotations:
155
+ renewable: false
156
+ emission_free: false
157
+ fossil_fuel: true
158
+ NUCLEAR_FISSION:
159
+ title: Nuclear fission
160
+ aliases:
161
+ - nuclear energy
162
+ related_mappings:
163
+ - ENVO:2000025
164
+ exact_mappings:
165
+ - CHEBI:35231
166
+ annotations:
167
+ renewable: false
168
+ emission_free: true
169
+ NUCLEAR_FUSION:
170
+ title: Nuclear fusion (experimental)
171
+ aliases:
172
+ - nuclear energy
173
+ related_mappings:
174
+ - ENVO:2000025
175
+ annotations:
176
+ renewable: false
177
+ emission_free: true
178
+ GRID_MIX:
179
+ title: Grid electricity (mixed sources)
180
+ annotations:
181
+ renewable: partial
182
+ BATTERY_STORAGE:
183
+ description: Battery storage systems
184
+ annotations:
185
+ storage: true
186
+ EnergyUnit:
187
+ description: Units for measuring energy
188
+ permissible_values:
189
+ JOULE:
190
+ description: Joule (J)
191
+ meaning: QUDT:J
192
+ annotations:
193
+ symbol: J
194
+ ucum: J
195
+ si_base: true
196
+ KILOJOULE:
197
+ description: Kilojoule (kJ)
198
+ meaning: QUDT:KiloJ
199
+ annotations:
200
+ symbol: kJ
201
+ ucum: kJ
202
+ joules: 1000
203
+ MEGAJOULE:
204
+ description: Megajoule (MJ)
205
+ meaning: QUDT:MegaJ
206
+ annotations:
207
+ symbol: MJ
208
+ ucum: MJ
209
+ joules: 1e6
210
+ GIGAJOULE:
211
+ description: Gigajoule (GJ)
212
+ meaning: QUDT:GigaJ
213
+ annotations:
214
+ symbol: GJ
215
+ ucum: GJ
216
+ joules: 1e9
217
+ WATT_HOUR:
218
+ description: Watt-hour (Wh)
219
+ meaning: QUDT:W-HR
220
+ annotations:
221
+ symbol: Wh
222
+ ucum: W.h
223
+ joules: 3600
224
+ KILOWATT_HOUR:
225
+ description: Kilowatt-hour (kWh)
226
+ meaning: QUDT:KiloW-HR
227
+ annotations:
228
+ symbol: kWh
229
+ ucum: kW.h
230
+ joules: 3.6e6
231
+ MEGAWATT_HOUR:
232
+ description: Megawatt-hour (MWh)
233
+ meaning: QUDT:MegaW-HR
234
+ annotations:
235
+ symbol: MWh
236
+ ucum: MW.h
237
+ joules: 3.6e9
238
+ GIGAWATT_HOUR:
239
+ description: Gigawatt-hour (GWh)
240
+ meaning: QUDT:GigaW-HR
241
+ annotations:
242
+ symbol: GWh
243
+ ucum: GW.h
244
+ joules: 3.6e12
245
+ TERAWATT_HOUR:
246
+ description: Terawatt-hour (TWh)
247
+ meaning: QUDT:TeraW-HR
248
+ annotations:
249
+ symbol: TWh
250
+ ucum: TW.h
251
+ joules: 3.6e15
252
+ CALORIE:
253
+ description: Calorie (cal)
254
+ meaning: QUDT:CAL
255
+ annotations:
256
+ symbol: cal
257
+ ucum: cal
258
+ joules: 4.184
259
+ KILOCALORIE:
260
+ description: Kilocalorie (kcal)
261
+ meaning: QUDT:KiloCAL
262
+ annotations:
263
+ symbol: kcal
264
+ ucum: kcal
265
+ joules: 4184
266
+ BTU:
267
+ description: British thermal unit
268
+ meaning: QUDT:BTU_IT
269
+ annotations:
270
+ symbol: BTU
271
+ ucum: '[Btu_IT]'
272
+ joules: 1055.06
273
+ THERM:
274
+ description: Therm
275
+ meaning: QUDT:THM_US
276
+ annotations:
277
+ symbol: thm
278
+ ucum: '[thm_us]'
279
+ joules: 1.055e8
280
+ ELECTRON_VOLT:
281
+ description: Electron volt (eV)
282
+ meaning: QUDT:EV
283
+ annotations:
284
+ symbol: eV
285
+ ucum: eV
286
+ joules: 1.602e-19
287
+ TOE:
288
+ description: Tonne of oil equivalent
289
+ meaning: QUDT:TOE
290
+ annotations:
291
+ symbol: toe
292
+ ucum: toe
293
+ joules: 4.187e10
294
+ TCE:
295
+ description: Tonne of coal equivalent
296
+ annotations:
297
+ symbol: tce
298
+ ucum: tce
299
+ joules: 2.93e10
300
+ PowerUnit:
301
+ description: Units for measuring power (energy per time)
302
+ permissible_values:
303
+ WATT:
304
+ description: Watt (W)
305
+ meaning: QUDT:W
306
+ annotations:
307
+ symbol: W
308
+ ucum: W
309
+ si_base: true
310
+ KILOWATT:
311
+ description: Kilowatt (kW)
312
+ meaning: QUDT:KiloW
313
+ annotations:
314
+ symbol: kW
315
+ ucum: kW
316
+ watts: 1000
317
+ MEGAWATT:
318
+ description: Megawatt (MW)
319
+ meaning: QUDT:MegaW
320
+ annotations:
321
+ symbol: MW
322
+ ucum: MW
323
+ watts: 1e6
324
+ GIGAWATT:
325
+ description: Gigawatt (GW)
326
+ meaning: QUDT:GigaW
327
+ annotations:
328
+ symbol: GW
329
+ ucum: GW
330
+ watts: 1e9
331
+ TERAWATT:
332
+ description: Terawatt (TW)
333
+ meaning: QUDT:TeraW
334
+ annotations:
335
+ symbol: TW
336
+ ucum: TW
337
+ watts: 1e12
338
+ HORSEPOWER:
339
+ description: Horsepower
340
+ meaning: QUDT:HP
341
+ annotations:
342
+ symbol: hp
343
+ ucum: '[HP]'
344
+ watts: 745.7
345
+ BTU_PER_HOUR:
346
+ description: BTU per hour
347
+ annotations:
348
+ symbol: BTU/h
349
+ ucum: '[Btu_IT]/h'
350
+ watts: 0.293
351
+ EnergyEfficiencyRating:
352
+ description: Energy efficiency ratings and standards
353
+ permissible_values:
354
+ A_PLUS_PLUS_PLUS:
355
+ description: A+++ (highest efficiency)
356
+ annotations:
357
+ rank: 1
358
+ region: EU
359
+ A_PLUS_PLUS:
360
+ description: A++
361
+ annotations:
362
+ rank: 2
363
+ region: EU
364
+ A_PLUS:
365
+ description: A+
366
+ annotations:
367
+ rank: 3
368
+ region: EU
369
+ A:
370
+ description: A
371
+ annotations:
372
+ rank: 4
373
+ region: EU
374
+ B:
375
+ description: B
376
+ annotations:
377
+ rank: 5
378
+ region: EU
379
+ C:
380
+ description: C
381
+ annotations:
382
+ rank: 6
383
+ region: EU
384
+ D:
385
+ description: D
386
+ annotations:
387
+ rank: 7
388
+ region: EU
389
+ E:
390
+ description: E
391
+ annotations:
392
+ rank: 8
393
+ region: EU
394
+ F:
395
+ description: F
396
+ annotations:
397
+ rank: 9
398
+ region: EU
399
+ G:
400
+ description: G (lowest efficiency)
401
+ annotations:
402
+ rank: 10
403
+ region: EU
404
+ ENERGY_STAR:
405
+ description: Energy Star certified
406
+ annotations:
407
+ region: US
408
+ ENERGY_STAR_MOST_EFFICIENT:
409
+ description: Energy Star Most Efficient
410
+ annotations:
411
+ region: US
412
+ BuildingEnergyStandard:
413
+ description: Building energy efficiency standards and certifications
414
+ permissible_values:
415
+ PASSIVE_HOUSE:
416
+ description: Passive House (Passivhaus) standard
417
+ LEED_PLATINUM:
418
+ description: LEED Platinum certification
419
+ LEED_GOLD:
420
+ description: LEED Gold certification
421
+ LEED_SILVER:
422
+ description: LEED Silver certification
423
+ LEED_CERTIFIED:
424
+ description: LEED Certified
425
+ BREEAM_OUTSTANDING:
426
+ description: BREEAM Outstanding
427
+ BREEAM_EXCELLENT:
428
+ description: BREEAM Excellent
429
+ BREEAM_VERY_GOOD:
430
+ description: BREEAM Very Good
431
+ BREEAM_GOOD:
432
+ description: BREEAM Good
433
+ BREEAM_PASS:
434
+ description: BREEAM Pass
435
+ NET_ZERO:
436
+ description: Net Zero Energy Building
437
+ ENERGY_POSITIVE:
438
+ description: Energy Positive Building
439
+ ZERO_CARBON:
440
+ description: Zero Carbon Building
441
+ GridType:
442
+ description: Types of electrical grid systems
443
+ permissible_values:
444
+ MAIN_GRID:
445
+ description: Main utility grid
446
+ MICROGRID:
447
+ description: Microgrid
448
+ OFF_GRID:
449
+ description: Off-grid/standalone
450
+ SMART_GRID:
451
+ description: Smart grid
452
+ MINI_GRID:
453
+ description: Mini-grid
454
+ VIRTUAL_POWER_PLANT:
455
+ description: Virtual power plant
456
+ EnergyStorageType:
457
+ description: Types of energy storage systems
458
+ permissible_values:
459
+ LITHIUM_ION_BATTERY:
460
+ description: Lithium-ion battery
461
+ annotations:
462
+ category: electrochemical
463
+ LEAD_ACID_BATTERY:
464
+ description: Lead-acid battery
465
+ annotations:
466
+ category: electrochemical
467
+ FLOW_BATTERY:
468
+ description: Flow battery (e.g., vanadium redox)
469
+ annotations:
470
+ category: electrochemical
471
+ SOLID_STATE_BATTERY:
472
+ description: Solid-state battery
473
+ annotations:
474
+ category: electrochemical
475
+ SODIUM_ION_BATTERY:
476
+ description: Sodium-ion battery
477
+ annotations:
478
+ category: electrochemical
479
+ PUMPED_HYDRO:
480
+ description: Pumped hydroelectric storage
481
+ annotations:
482
+ category: mechanical
483
+ COMPRESSED_AIR:
484
+ description: Compressed air energy storage (CAES)
485
+ annotations:
486
+ category: mechanical
487
+ FLYWHEEL:
488
+ description: Flywheel energy storage
489
+ annotations:
490
+ category: mechanical
491
+ GRAVITY_STORAGE:
492
+ description: Gravity-based storage
493
+ annotations:
494
+ category: mechanical
495
+ MOLTEN_SALT:
496
+ description: Molten salt thermal storage
497
+ annotations:
498
+ category: thermal
499
+ ICE_STORAGE:
500
+ description: Ice thermal storage
501
+ annotations:
502
+ category: thermal
503
+ PHASE_CHANGE:
504
+ description: Phase change materials
505
+ annotations:
506
+ category: thermal
507
+ HYDROGEN_STORAGE:
508
+ description: Hydrogen storage
509
+ annotations:
510
+ category: chemical
511
+ SYNTHETIC_FUEL:
512
+ description: Synthetic fuel storage
513
+ annotations:
514
+ category: chemical
515
+ SUPERCAPACITOR:
516
+ description: Supercapacitor
517
+ annotations:
518
+ category: electrical
519
+ SUPERCONDUCTING:
520
+ description: Superconducting magnetic energy storage (SMES)
521
+ annotations:
522
+ category: electrical
523
+ EmissionScope:
524
+ description: Greenhouse gas emission scopes (GHG Protocol)
525
+ permissible_values:
526
+ SCOPE_1:
527
+ description: Direct emissions from owned or controlled sources
528
+ annotations:
529
+ ghg_protocol: Scope 1
530
+ SCOPE_2:
531
+ description: Indirect emissions from purchased energy
532
+ annotations:
533
+ ghg_protocol: Scope 2
534
+ SCOPE_3:
535
+ description: All other indirect emissions in value chain
536
+ annotations:
537
+ ghg_protocol: Scope 3
538
+ SCOPE_3_UPSTREAM:
539
+ description: Upstream Scope 3 emissions
540
+ annotations:
541
+ ghg_protocol: Scope 3
542
+ SCOPE_3_DOWNSTREAM:
543
+ description: Downstream Scope 3 emissions
544
+ annotations:
545
+ ghg_protocol: Scope 3
546
+ CarbonIntensity:
547
+ description: Carbon intensity levels for energy sources
548
+ permissible_values:
549
+ ZERO_CARBON:
550
+ description: Zero carbon emissions
551
+ annotations:
552
+ gCO2_per_kWh: 0
553
+ VERY_LOW_CARBON:
554
+ description: Very low carbon (< 50 gCO2/kWh)
555
+ annotations:
556
+ gCO2_per_kWh: 0-50
557
+ LOW_CARBON:
558
+ description: Low carbon (50-200 gCO2/kWh)
559
+ annotations:
560
+ gCO2_per_kWh: 50-200
561
+ MEDIUM_CARBON:
562
+ description: Medium carbon (200-500 gCO2/kWh)
563
+ annotations:
564
+ gCO2_per_kWh: 200-500
565
+ HIGH_CARBON:
566
+ description: High carbon (500-1000 gCO2/kWh)
567
+ annotations:
568
+ gCO2_per_kWh: 500-1000
569
+ VERY_HIGH_CARBON:
570
+ description: Very high carbon (> 1000 gCO2/kWh)
571
+ annotations:
572
+ gCO2_per_kWh: 1000+
573
+ ElectricityMarket:
574
+ description: Types of electricity markets and pricing
575
+ permissible_values:
576
+ SPOT_MARKET:
577
+ description: Spot market/real-time pricing
578
+ DAY_AHEAD:
579
+ description: Day-ahead market
580
+ INTRADAY:
581
+ description: Intraday market
582
+ FUTURES:
583
+ description: Futures market
584
+ CAPACITY_MARKET:
585
+ description: Capacity market
586
+ ANCILLARY_SERVICES:
587
+ description: Ancillary services market
588
+ BILATERAL:
589
+ description: Bilateral contracts
590
+ FEED_IN_TARIFF:
591
+ description: Feed-in tariff
592
+ NET_METERING:
593
+ description: Net metering
594
+ POWER_PURCHASE_AGREEMENT:
595
+ description: Power purchase agreement (PPA)
@@ -0,0 +1,28 @@
1
+ name: fossil_fuels
2
+ id: https://w3id.org/linkml/valuesets/energy/fossil_fuels
3
+ prefixes:
4
+ # linkml_common: https://w3id.org/linkml-common/
5
+ ENVO: http://purl.obolibrary.org/obo/ENVO_
6
+ CHEBI: http://purl.obolibrary.org/obo/CHEBI_
7
+ valuesets: https://w3id.org/valuesets/
8
+ default_prefix: valuesets
9
+ slots:
10
+ fossil_fuel_type:
11
+ description: Types of fossil fuels used for energy generation
12
+ range: FossilFuelTypeEnum
13
+ enums:
14
+ FossilFuelTypeEnum:
15
+ description: Types of fossil fuels used for energy generation
16
+ permissible_values:
17
+ COAL:
18
+ description: Coal
19
+ title: Coal
20
+ meaning: ENVO:02000091
21
+ NATURAL_GAS:
22
+ description: Natural gas
23
+ title: Natural Gas
24
+ meaning: ENVO:01000552
25
+ PETROLEUM:
26
+ description: Petroleum
27
+ title: Petroleum
28
+ meaning: ENVO:00002984