openepd 3.0.0__py3-none-any.whl → 3.1.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.
Files changed (48) hide show
  1. openepd/__version__.py +1 -1
  2. openepd/model/specs/__init__.py +71 -19
  3. openepd/model/specs/aluminium.py +1 -1
  4. openepd/model/specs/concrete.py +19 -177
  5. openepd/model/specs/generated/accessories.py +63 -0
  6. openepd/model/specs/generated/aggregates.py +71 -0
  7. openepd/model/specs/generated/aluminium.py +66 -0
  8. openepd/model/specs/generated/asphalt.py +86 -0
  9. openepd/model/specs/generated/bulk_materials.py +26 -0
  10. openepd/model/specs/generated/cast_decks_and_underlayment.py +26 -0
  11. openepd/model/specs/generated/cladding.py +214 -0
  12. openepd/model/specs/generated/cmu.py +46 -0
  13. openepd/model/specs/generated/common.py +27 -0
  14. openepd/model/specs/generated/concrete.py +151 -0
  15. openepd/model/specs/generated/conveying_equipment.py +57 -0
  16. openepd/model/specs/generated/electrical.py +297 -0
  17. openepd/model/specs/generated/electrical_transmission_and_distribution_equipment.py +63 -0
  18. openepd/model/specs/generated/electricity.py +26 -0
  19. openepd/model/specs/generated/enums.py +2420 -0
  20. openepd/model/specs/generated/finishes.py +519 -0
  21. openepd/model/specs/generated/fire_and_smoke_protection.py +79 -0
  22. openepd/model/specs/generated/furnishings.py +95 -0
  23. openepd/model/specs/generated/grouting.py +26 -0
  24. openepd/model/specs/generated/manufacturing_inputs.py +131 -0
  25. openepd/model/specs/generated/masonry.py +77 -0
  26. openepd/model/specs/generated/material_handling.py +35 -0
  27. openepd/model/specs/generated/mechanical.py +271 -0
  28. openepd/model/specs/generated/mechanical_insulation.py +41 -0
  29. openepd/model/specs/generated/network_infrastructure.py +181 -0
  30. openepd/model/specs/generated/openings.py +423 -0
  31. openepd/model/specs/generated/other_electrical_equipment.py +26 -0
  32. openepd/model/specs/generated/other_materials.py +123 -0
  33. openepd/model/specs/generated/plumbing.py +153 -0
  34. openepd/model/specs/generated/precast_concrete.py +68 -0
  35. openepd/model/specs/generated/sheathing.py +74 -0
  36. openepd/model/specs/generated/steel.py +224 -0
  37. openepd/model/specs/generated/thermal_moisture_protection.py +233 -0
  38. openepd/model/specs/generated/utility_piping.py +65 -0
  39. openepd/model/specs/generated/wood.py +167 -0
  40. openepd/model/specs/generated/wood_joists.py +38 -0
  41. openepd/model/specs/glass.py +1 -45
  42. openepd/model/specs/steel.py +1 -10
  43. openepd/model/validation/quantity.py +4 -3
  44. {openepd-3.0.0.dist-info → openepd-3.1.1.dist-info}/METADATA +1 -1
  45. openepd-3.1.1.dist-info/RECORD +95 -0
  46. openepd-3.0.0.dist-info/RECORD +0 -59
  47. {openepd-3.0.0.dist-info → openepd-3.1.1.dist-info}/LICENSE +0 -0
  48. {openepd-3.0.0.dist-info → openepd-3.1.1.dist-info}/WHEEL +0 -0
@@ -0,0 +1,2420 @@
1
+ #
2
+ # Copyright 2024 by C Change Labs Inc. www.c-change-labs.com
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+ # This software was developed with support from the Skanska USA,
17
+ # Charles Pankow Foundation, Microsoft Sustainability Fund, Interface, MKA Foundation, and others.
18
+ # Find out more at www.BuildingTransparency.org
19
+ #
20
+ from enum import StrEnum
21
+
22
+ # Enums used
23
+
24
+
25
+ class AhuZoneControl(StrEnum):
26
+ """
27
+ Ahu zone control.
28
+
29
+ - Single Zone: Single Zone
30
+ - Multi Zone: Multi Zone
31
+
32
+ """
33
+
34
+ SINGLE_ZONE = "Single Zone"
35
+ MULTI_ZONE = "Multi Zone"
36
+
37
+
38
+ class UtilityPipingMaterial(StrEnum):
39
+ """
40
+ Utility piping material.
41
+
42
+ - PVC: PVC
43
+ - PEX: PEX
44
+ - HDPE: HDPE
45
+ - Galvanized Steel: Galvanized Steel
46
+ - Cast iron: Cast iron
47
+ - PVCO: PVCO
48
+ - Ductile Iron: Ductile Iron
49
+ - Steel: Steel
50
+ - Reinforced Concrete: Reinforced Concrete
51
+ - Unreinforced Concrete: Unreinforced Concrete
52
+ - Fiberglass: Fiberglass
53
+ - PP: PP
54
+ - Stainless Steel: Stainless Steel
55
+ - Other: Other
56
+
57
+ """
58
+
59
+ PVC = "PVC"
60
+ PEX = "PEX"
61
+ HDPE = "HDPE"
62
+ GALVANIZED_STEEL = "Galvanized Steel"
63
+ CAST_IRON = "Cast iron"
64
+ PVCO = "PVCO"
65
+ DUCTILE_IRON = "Ductile Iron"
66
+ STEEL = "Steel"
67
+ REINFORCED_CONCRETE = "Reinforced Concrete"
68
+ UNREINFORCED_CONCRETE = "Unreinforced Concrete"
69
+ FIBERGLASS = "Fiberglass"
70
+ PP = "PP"
71
+ STAINLESS_STEEL = "Stainless Steel"
72
+ OTHER = "Other"
73
+
74
+
75
+ class ResilientFlooringThickness(StrEnum):
76
+ """
77
+ Resilient flooring thickness.
78
+
79
+ - ≤ 2mm: ≤ 2mm
80
+ - ~ 2.5mm: ~ 2.5mm
81
+ - ~ 3.2mm: ~ 3.2mm
82
+ - ~ 4mm: ~ 4mm
83
+ - ~ 4.5mm: ~ 4.5mm
84
+ - ~ 5mm: ~ 5mm
85
+ - ~ 5.5mm: ~ 5.5mm
86
+ - ~ 6mm: ~ 6mm
87
+ - ~ 8mm: ~ 8mm
88
+ - ≥ 10mm: ≥ 10mm
89
+
90
+ """
91
+
92
+ MM_LT_2 = "≤ 2mm"
93
+ MM_2_5 = "~ 2.5mm"
94
+ MM_3_2 = "~ 3.2mm"
95
+ MM_4 = "~ 4mm"
96
+ MM_4_5 = "~ 4.5mm"
97
+ MM_5 = "~ 5mm"
98
+ MM_5_5 = "~ 5.5mm"
99
+ MM_6 = "~ 6mm"
100
+ MM_8 = "~ 8mm"
101
+ MM_GT_10 = "≥ 10mm"
102
+
103
+
104
+ class CablingFireRating(StrEnum):
105
+ """
106
+ Cabling fire rating.
107
+
108
+ - CMP: CMP
109
+ - CMR: CMR
110
+ - CMG: CMG
111
+ - CM: CM
112
+ - OFNP/CP: OFNP/CP
113
+ - OFNR/CR: OFNR/CR
114
+
115
+ """
116
+
117
+ CMP = "CMP"
118
+ CMR = "CMR"
119
+ CMG = "CMG"
120
+ CM = "CM"
121
+ OFNP_CP = "OFNP/CP"
122
+ OFNR_CR = "OFNR/CR"
123
+
124
+
125
+ class ElevatorsBuildingRise(StrEnum):
126
+ """
127
+ Elevators building rise.
128
+
129
+ - Low-rise: Low-rise
130
+ - Mid-rise: Mid-rise
131
+ - High-rise: High-rise
132
+
133
+ """
134
+
135
+ LOW_RISE = "Low-rise"
136
+ MID_RISE = "Mid-rise"
137
+ HIGH_RISE = "High-rise"
138
+
139
+
140
+ class ResilientFlooringMaterial(StrEnum):
141
+ """
142
+ Resilient flooring material.
143
+
144
+ - VCT: VCT
145
+ - LVT: LVT
146
+ - Rubber: Rubber
147
+ - Linoleum: Linoleum
148
+ - Cork: Cork
149
+ - Rigid: Rigid
150
+ - Vinyl: Vinyl
151
+ - SVT: SVT
152
+ - Composite: Composite
153
+ - Other: Other
154
+
155
+ """
156
+
157
+ VCT = "VCT"
158
+ LVT = "LVT"
159
+ RUBBER = "Rubber"
160
+ LINOLEUM = "Linoleum"
161
+ CORK = "Cork"
162
+ RIGID = "Rigid"
163
+ VINYL = "Vinyl"
164
+ SVT = "SVT"
165
+ COMPOSITE = "Composite"
166
+ OTHER = "Other"
167
+
168
+
169
+ class AirFiltersMediaType(StrEnum):
170
+ """
171
+ Air filters media type.
172
+
173
+ - Acrylic: Acrylic
174
+ - Activated Carbon / Charcoal: Activated Carbon / Charcoal
175
+ - Aluminum Screen Wire: Aluminum Screen Wire
176
+ - Electrostatic: Electrostatic
177
+ - Fiberglass: Fiberglass
178
+ - Paper: Paper
179
+ - Polyurethane Foam: Polyurethane Foam
180
+ - Polyester: Polyester
181
+ - Poly / Cotton Nonwoven Media: Poly / Cotton Nonwoven Media
182
+
183
+ """
184
+
185
+ ACRYLIC = "Acrylic"
186
+ ACTIVATED_CARBON_OR_CHARCOAL = "Activated Carbon / Charcoal"
187
+ ALUMINUM_SCREEN_WIRE = "Aluminum Screen Wire"
188
+ ELECTROSTATIC = "Electrostatic"
189
+ FIBERGLASS = "Fiberglass"
190
+ PAPER = "Paper"
191
+ POLYURETHANE_FOAM = "Polyurethane Foam"
192
+ POLYESTER = "Polyester"
193
+ POLY_COTTON_NONWOVEN_MEDIA = "Poly / Cotton Nonwoven Media"
194
+
195
+
196
+ class GypsumFireRating(StrEnum):
197
+ """
198
+ Gypsum fire rating.
199
+
200
+ - -: -
201
+ - X: X
202
+ - C: C
203
+ - F: F
204
+
205
+ """
206
+
207
+ REGULAR = "-"
208
+ X = "X"
209
+ C = "C"
210
+ F = "F"
211
+
212
+
213
+ class MembraneRoofingReinforcement(StrEnum):
214
+ """
215
+ Membrane roofing reinforcement.
216
+
217
+ - Polyester: Polyester
218
+ - Fiberglass: Fiberglass
219
+ - None: None
220
+ - Other: Other
221
+
222
+ """
223
+
224
+ POLYESTER = "Polyester"
225
+ FIBERGLASS = "Fiberglass"
226
+ NONE = "None"
227
+ OTHER = "Other"
228
+
229
+
230
+ class AirFiltersMervRating(StrEnum):
231
+ """
232
+ Air filters merv rating.
233
+
234
+ - MERV 1: MERV 1
235
+ - MERV 2: MERV 2
236
+ - MERV 3: MERV 3
237
+ - MERV 4: MERV 4
238
+ - MERV 5: MERV 5
239
+ - MERV 6: MERV 6
240
+ - MERV 7: MERV 7
241
+ - MERV 8: MERV 8
242
+ - MERV 9: MERV 9
243
+ - MERV 10: MERV 10
244
+ - MERV 11: MERV 11
245
+ - MERV 12: MERV 12
246
+ - MERV 13: MERV 13
247
+ - MERV 14: MERV 14
248
+ - MERV 15: MERV 15
249
+ - MERV 16: MERV 16
250
+ - HEPA: HEPA
251
+
252
+ """
253
+
254
+ MERV_1 = "MERV 1"
255
+ MERV_2 = "MERV 2"
256
+ MERV_3 = "MERV 3"
257
+ MERV_4 = "MERV 4"
258
+ MERV_5 = "MERV 5"
259
+ MERV_6 = "MERV 6"
260
+ MERV_7 = "MERV 7"
261
+ MERV_8 = "MERV 8"
262
+ MERV_9 = "MERV 9"
263
+ MERV_10 = "MERV 10"
264
+ MERV_11 = "MERV 11"
265
+ MERV_12 = "MERV 12"
266
+ MERV_13 = "MERV 13"
267
+ MERV_14 = "MERV 14"
268
+ MERV_15 = "MERV 15"
269
+ MERV_16 = "MERV 16"
270
+ HEPA = "HEPA"
271
+
272
+
273
+ class PduTechnology(StrEnum):
274
+ """
275
+ Pdu technology.
276
+
277
+ - Basic: Basic
278
+ - Intelligent: Intelligent
279
+ - Intelligent with Outlet Control: Intelligent with Outlet Control
280
+ - Intelligent with Outlet Monitoring: Intelligent with Outlet Monitoring
281
+ - Outlet Control and Monitoring: Outlet Control and Monitoring
282
+
283
+ """
284
+
285
+ BASIC = "Basic"
286
+ INTELLIGENT = "Intelligent"
287
+ INTELLIGENT_WITH_OUTLET_CONTROL = "Intelligent with Outlet Control"
288
+ INTELLIGENT_WITH_OUTLET_MONITORING = "Intelligent with Outlet Monitoring"
289
+ OUTLET_CONTROL_AND_MONITORING = "Outlet Control and Monitoring"
290
+
291
+
292
+ class IntumescentFireproofingMaterialType(StrEnum):
293
+ """
294
+ Intumescent fireproofing material type.
295
+
296
+ - Epoxy: Epoxy
297
+ - Water-based: Water-based
298
+ - Solvent-based: Solvent-based
299
+
300
+ """
301
+
302
+ EPOXY = "Epoxy"
303
+ WATER_BASED = "Water-based"
304
+ SOLVENT_BASED = "Solvent-based"
305
+
306
+
307
+ class AccessFlooringCoreMaterial(StrEnum):
308
+ """
309
+ Access flooring core material.
310
+
311
+ - Cementitious: Cementitious
312
+ - Wood: Wood
313
+ - Other: Other
314
+ - Concrete: Concrete
315
+ - Hollow: Hollow
316
+
317
+ """
318
+
319
+ CEMENTITIOUS = "Cementitious"
320
+ WOOD = "Wood"
321
+ OTHER = "Other"
322
+ CONCRETE = "Concrete"
323
+ HOLLOW = "Hollow"
324
+
325
+
326
+ class BuriedPipingType(StrEnum):
327
+ """
328
+ Buried piping type.
329
+
330
+ - Water Utilities: Water Utilities
331
+ - Sanitary Sewer: Sanitary Sewer
332
+ - Storm Drainage: Storm Drainage
333
+ - Fuel Distribution: Fuel Distribution
334
+
335
+ """
336
+
337
+ WATER_UTILITIES = "Water Utilities"
338
+ SANITARY_SEWER = "Sanitary Sewer"
339
+ STORM_DRAINAGE = "Storm Drainage"
340
+ FUEL_DISTRIBUTION = "Fuel Distribution"
341
+
342
+
343
+ class RackType(StrEnum):
344
+ """
345
+ Rack type.
346
+
347
+ - Cabinet: Cabinet
348
+ - Rack: Rack
349
+ - Enclosure: Enclosure
350
+
351
+ """
352
+
353
+ CABINET = "Cabinet"
354
+ RACK = "Rack"
355
+ ENCLOSURE = "Enclosure"
356
+
357
+
358
+ class FoamType(StrEnum):
359
+ """
360
+ Foam type.
361
+
362
+ - Open-Cell: Open-Cell
363
+ - Closed-Cell: Closed-Cell
364
+
365
+ """
366
+
367
+ OPEN_CELL = "Open-Cell"
368
+ CLOSED_CELL = "Closed-Cell"
369
+
370
+
371
+ class FrameMaterial(StrEnum):
372
+ """
373
+ Frame material.
374
+
375
+ - Vinyl: Vinyl
376
+ - Aluminium: Aluminium
377
+ - Steel: Steel
378
+ - Wood: Wood
379
+ - Fiberglass: Fiberglass
380
+ - Composite: Composite
381
+ - None: None
382
+ - Other: Other
383
+
384
+ """
385
+
386
+ VINYL = "Vinyl"
387
+ ALUMINIUM = "Aluminium"
388
+ STEEL = "Steel"
389
+ WOOD = "Wood"
390
+ FIBERGLASS = "Fiberglass"
391
+ COMPOSITE = "Composite"
392
+ NONE = "None"
393
+ OTHER = "Other"
394
+
395
+
396
+ class PipingAnsiSchedule(StrEnum):
397
+ """
398
+ Piping ansi schedule.
399
+
400
+ - 5: 5
401
+ - 10: 10
402
+ - 20: 20
403
+ - 30: 30
404
+ - 40: 40
405
+ - 60: 60
406
+ - 80: 80
407
+ - 100: 100
408
+ - 120: 120
409
+ - 140: 140
410
+ - 160: 160
411
+
412
+ """
413
+
414
+ ANSI_SCHEDULE_5 = "5"
415
+ ANSI_SCHEDULE_10 = "10"
416
+ ANSI_SCHEDULE_20 = "20"
417
+ ANSI_SCHEDULE_30 = "30"
418
+ ANSI_SCHEDULE_40 = "40"
419
+ ANSI_SCHEDULE_60 = "60"
420
+ ANSI_SCHEDULE_80 = "80"
421
+ ANSI_SCHEDULE_100 = "100"
422
+ ANSI_SCHEDULE_120 = "120"
423
+ ANSI_SCHEDULE_140 = "140"
424
+ ANSI_SCHEDULE_160 = "160"
425
+
426
+
427
+ class CmuWeightClassification(StrEnum):
428
+ """
429
+ Cmu weight classification.
430
+
431
+ - Normal: Normal
432
+ - Medium: Medium
433
+ - Light: Light
434
+
435
+ """
436
+
437
+ NORMAL = "Normal"
438
+ MEDIUM = "Medium"
439
+ LIGHT = "Light"
440
+
441
+
442
+ class CementEn197_1(StrEnum):
443
+ """
444
+ CementEn197 1.
445
+
446
+ - CEM I: CEM I
447
+ - CEM II/A-S: CEM II/A-S
448
+ - CEM II/A-P: CEM II/A-P
449
+ - CEM II/A-Q: CEM II/A-Q
450
+ - CEM II/A-V: CEM II/A-V
451
+ - CEM II/A-W: CEM II/A-W
452
+ - CEM II/A-T: CEM II/A-T
453
+ - CEM II/A-L: CEM II/A-L
454
+ - CEM II/A-LL: CEM II/A-LL
455
+ - CEM II/A-M: CEM II/A-M
456
+ - CEM II/A-D: CEM II/A-D
457
+ - CEM II/B-S: CEM II/B-S
458
+ - CEM II/B-P: CEM II/B-P
459
+ - CEM II/B-Q: CEM II/B-Q
460
+ - CEM II/B-V: CEM II/B-V
461
+ - CEM II/B-W: CEM II/B-W
462
+ - CEM II/B-T: CEM II/B-T
463
+ - CEM II/B-L: CEM II/B-L
464
+ - CEM II/B-LL: CEM II/B-LL
465
+ - CEM II/B-M: CEM II/B-M
466
+ - CEM II/C: CEM II/C
467
+ - CEM III/A: CEM III/A
468
+ - CEM III/B: CEM III/B
469
+ - CEM III/C: CEM III/C
470
+ - CEM IV/A: CEM IV/A
471
+ - CEM IV/B: CEM IV/B
472
+ - CEM V/A: CEM V/A
473
+ - CEM V/B: CEM V/B
474
+
475
+ """
476
+
477
+ CEM_I = "CEM I"
478
+ CEM_II_A_S = "CEM II/A-S"
479
+ CEM_II_A_P = "CEM II/A-P"
480
+ CEM_II_A_Q = "CEM II/A-Q"
481
+ CEM_II_A_V = "CEM II/A-V"
482
+ CEM_II_A_W = "CEM II/A-W"
483
+ CEM_II_A_T = "CEM II/A-T"
484
+ CEM_II_A_L = "CEM II/A-L"
485
+ CEM_II_A_LL = "CEM II/A-LL"
486
+ CEM_II_A_M = "CEM II/A-M"
487
+ CEM_II_A_D = "CEM II/A-D"
488
+ CEM_II_B_S = "CEM II/B-S"
489
+ CEM_II_B_P = "CEM II/B-P"
490
+ CEM_II_B_Q = "CEM II/B-Q"
491
+ CEM_II_B_V = "CEM II/B-V"
492
+ CEM_II_B_W = "CEM II/B-W"
493
+ CEM_II_B_T = "CEM II/B-T"
494
+ CEM_II_B_L = "CEM II/B-L"
495
+ CEM_II_B_LL = "CEM II/B-LL"
496
+ CEM_II_B_M = "CEM II/B-M"
497
+ CEM_II_C = "CEM II/C"
498
+ CEM_III_A = "CEM III/A"
499
+ CEM_III_B = "CEM III/B"
500
+ CEM_III_C = "CEM III/C"
501
+ CEM_IV_A = "CEM IV/A"
502
+ CEM_IV_B = "CEM IV/B"
503
+ CEM_V_A = "CEM V/A"
504
+ CEM_V_B = "CEM V/B"
505
+
506
+
507
+ class CementCsaA3001(StrEnum):
508
+ """
509
+ Csa a3001.
510
+
511
+ - A3001 GU: A3001 GU
512
+ - A3001 HE: A3001 HE
513
+ - A3001 MS: A3001 MS
514
+ - A3001 HS: A3001 HS
515
+
516
+ """
517
+
518
+ A3001_GU = "A3001 GU"
519
+ A3001_HE = "A3001 HE"
520
+ A3001_MS = "A3001 MS"
521
+ A3001_HS = "A3001 HS"
522
+
523
+
524
+ class BoilerConfiguration(StrEnum):
525
+ """
526
+ Boiler configuration.
527
+
528
+ - Hot water: Hot water
529
+ - Steam: Steam
530
+
531
+ """
532
+
533
+ HOT_WATER = "Hot water"
534
+ STEAM = "Steam"
535
+
536
+
537
+ class FloorBoxCoverMaterial(StrEnum):
538
+ """
539
+ Floor box cover material.
540
+
541
+ - Brass: Brass
542
+ - Aluminum: Aluminum
543
+ - Other Metallic: Other Metallic
544
+ - Non-metallic: Non-metallic
545
+ - Heavy Duty: Heavy Duty
546
+ - None (box only): None (box only)
547
+
548
+ """
549
+
550
+ BRASS = "Brass"
551
+ ALUMINUM = "Aluminum"
552
+ OTHER_METALLIC = "Other Metallic"
553
+ NON_METALLIC = "Non-metallic"
554
+ HEAVY_DUTY = "Heavy Duty"
555
+ NONE = "None (box only)"
556
+
557
+
558
+ class SteelComposition(StrEnum):
559
+ """
560
+ Steel composition.
561
+
562
+ - Carbon: Carbon
563
+ - Alloy: Alloy
564
+ - Stainless: Stainless
565
+ - Tool: Tool
566
+ - Other: Other
567
+
568
+ """
569
+
570
+ CARBON = "Carbon"
571
+ ALLOY = "Alloy"
572
+ STAINLESS = "Stainless"
573
+ TOOL = "Tool"
574
+ OTHER = "Other"
575
+
576
+
577
+ class CeilingPanelFireRating(StrEnum):
578
+ """
579
+ Ceiling panel fire rating.
580
+
581
+ - Class A: Class A
582
+ - Class B: Class B
583
+ - Class C: Class C
584
+ - Class D: Class D
585
+
586
+ """
587
+
588
+ CLASS_A = "Class A"
589
+ CLASS_B = "Class B"
590
+ CLASS_C = "Class C"
591
+ CLASS_D = "Class D"
592
+
593
+
594
+ class VinylSheetConstruction(StrEnum):
595
+ """
596
+ Sheet construction.
597
+
598
+ - Homogeneous: Homogeneous
599
+ - Heterogeneous: Heterogeneous
600
+
601
+ """
602
+
603
+ HOMOGENEOUS = "Homogeneous"
604
+ HETEROGENEOUS = "Heterogeneous"
605
+
606
+
607
+ class FloorBoxMaterial(StrEnum):
608
+ """
609
+ Floor box material.
610
+
611
+ - Metallic Box: Metallic Box
612
+ - Non-metallic Box: Non-metallic Box
613
+ - None (cover only): None (cover only)
614
+
615
+ """
616
+
617
+ METALLIC_BOX = "Metallic Box"
618
+ NON_METALLIC_BOX = "Non-metallic Box"
619
+ NONE = "None (cover only)"
620
+
621
+
622
+ class FireProtectionPipingMaterial(StrEnum):
623
+ """
624
+ Fire protection piping material.
625
+
626
+ - PVC: PVC
627
+ - Copper: Copper
628
+ - PEX: PEX
629
+ - HDPE: HDPE
630
+ - Ductile Iron: Ductile Iron
631
+ - Steel: Steel
632
+
633
+ """
634
+
635
+ PVC = "PVC"
636
+ COPPER = "Copper"
637
+ PEX = "PEX"
638
+ HDPE = "HDPE"
639
+ DUCTILE_IRON = "Ductile Iron"
640
+ STEEL = "Steel"
641
+
642
+
643
+ class MechanicalRefrigerants(StrEnum):
644
+ """
645
+ Mechanical refrigerants.
646
+
647
+ - R11: R11
648
+ - R22: R22
649
+ - R407c: R407c
650
+ - R410a: R410a
651
+ - R134a: R134a
652
+ - R32: R32
653
+ - R1234yf: R1234yf
654
+ - R1234ze: R1234ze
655
+ - R290: R290
656
+ - R744: R744
657
+ - R717: R717
658
+ - R718: R718
659
+
660
+ """
661
+
662
+ R11 = "R11"
663
+ R22 = "R22"
664
+ R407C = "R407c"
665
+ R410A = "R410a"
666
+ R134A = "R134a"
667
+ R32 = "R32"
668
+ R1234YF = "R1234yf"
669
+ R1234ZE = "R1234ze"
670
+ R290 = "R290"
671
+ R744 = "R744"
672
+ R717 = "R717"
673
+ R718 = "R718"
674
+
675
+
676
+ class RacewaysMaterial(StrEnum):
677
+ """
678
+ Raceways material.
679
+
680
+ - Aluminum: Aluminum
681
+ - Steel: Steel
682
+ - Non-metallic: Non-metallic
683
+
684
+ """
685
+
686
+ ALUMINUM = "Aluminum"
687
+ STEEL = "Steel"
688
+ NON_METALLIC = "Non-metallic"
689
+
690
+
691
+ class CountertopMaterial(StrEnum):
692
+ """
693
+ Countertop material.
694
+
695
+ - Stone: Stone
696
+ - Concrete: Concrete
697
+ - Plastic: Plastic
698
+ - Glass: Glass
699
+ - Wood: Wood
700
+ - Metal: Metal
701
+ - Ceramic: Ceramic
702
+ - Other: Other
703
+
704
+ """
705
+
706
+ STONE = "Stone"
707
+ CONCRETE = "Concrete"
708
+ PLASTIC = "Plastic"
709
+ GLASS = "Glass"
710
+ WOOD = "Wood"
711
+ METAL = "Metal"
712
+ CERAMIC = "Ceramic"
713
+ OTHER = "Other"
714
+
715
+
716
+ class SteelRebarGrade(StrEnum):
717
+ """
718
+ Steel rebar grade.
719
+
720
+ - 60 ksi: 60 ksi
721
+ - 75 ksi: 75 ksi
722
+ - 80 ksi: 80 ksi
723
+ - 90 ksi: 90 ksi
724
+ - 100 ksi: 100 ksi
725
+ - 120 ksi: 120 ksi
726
+ - 40 ksi: 40 ksi
727
+ - 50 ksi: 50 ksi
728
+
729
+ """
730
+
731
+ KSI_60 = "60 ksi"
732
+ KSI_75 = "75 ksi"
733
+ KSI_80 = "80 ksi"
734
+ KSI_90 = "90 ksi"
735
+ KSI_100 = "100 ksi"
736
+ KSI_120 = "120 ksi"
737
+ KSI_40 = "40 ksi"
738
+ KSI_50 = "50 ksi"
739
+
740
+
741
+ class AsphaltGradation(StrEnum):
742
+ """
743
+ Asphalt gradation.
744
+
745
+ - Gap-graded: Gap-graded
746
+ - Open-graded: Open-graded
747
+ - Dense-graded: Dense-graded
748
+
749
+ """
750
+
751
+ GAP_GRADED = "Gap-graded"
752
+ OPEN_GRADED = "Open-graded"
753
+ DENSE_GRADED = "Dense-graded"
754
+
755
+
756
+ class RoofCoverBoardsFacing(StrEnum):
757
+ """
758
+ Roof cover boards facing.
759
+
760
+ - Paper: Paper
761
+ - Glass mat: Glass mat
762
+ - Fiberglass: Fiberglass
763
+ - Other: Other
764
+
765
+ """
766
+
767
+ PAPER = "Paper"
768
+ GLASS_MAT = "Glass mat"
769
+ FIBERGLASS = "Fiberglass"
770
+ OTHER = "Other"
771
+
772
+
773
+ class PlumbingPipingMaterial(StrEnum):
774
+ """
775
+ Plumbing piping material.
776
+
777
+ - PVC: PVC
778
+ - Copper: Copper
779
+ - PEX: PEX
780
+ - HDPE: HDPE
781
+ - Galvanized Steel: Galvanized Steel
782
+ - Cast iron: Cast iron
783
+ - Stainless Steel: Stainless Steel
784
+
785
+ """
786
+
787
+ PVC = "PVC"
788
+ COPPER = "Copper"
789
+ PEX = "PEX"
790
+ HDPE = "HDPE"
791
+ GALVANIZED_STEEL = "Galvanized Steel"
792
+ CAST_IRON = "Cast iron"
793
+ STAINLESS_STEEL = "Stainless Steel"
794
+
795
+
796
+ class AccessFlooringStringers(StrEnum):
797
+ """
798
+ Access flooring stringers.
799
+
800
+ - Standard: Standard
801
+ - Heavy-duty: Heavy-duty
802
+ - None: None
803
+
804
+ """
805
+
806
+ STANDARD = "Standard"
807
+ HEAVY_DUTY = "Heavy-duty"
808
+ NONE = "None"
809
+
810
+
811
+ class ResilientFlooringFormFactor(StrEnum):
812
+ """
813
+ Resilient flooring form factor.
814
+
815
+ - Loose Lay: Loose Lay
816
+ - Gluedown: Gluedown
817
+ - Underlayment: Underlayment
818
+ - Interlocking: Interlocking
819
+ - Self Adhering: Self Adhering
820
+ - Tile: Tile
821
+ - Sheet: Sheet
822
+ - Other: Other
823
+
824
+ """
825
+
826
+ LOOSE_LAY = "Loose Lay"
827
+ GLUEDOWN = "Gluedown"
828
+ UNDERLAYMENT = "Underlayment"
829
+ INTERLOCKING = "Interlocking"
830
+ SELF_ADHERING = "Self Adhering"
831
+ TILE = "Tile"
832
+ SHEET = "Sheet"
833
+ OTHER = "Other"
834
+
835
+
836
+ class EnergySource(StrEnum):
837
+ """
838
+ Energy source.
839
+
840
+ - Grid: Grid
841
+ - Wind: Wind
842
+ - Solar: Solar
843
+ - Hydro: Hydro
844
+ - Biomass: Biomass
845
+ - Coal: Coal
846
+ - Natgas: Natgas
847
+ - Nuclear: Nuclear
848
+ - Other: Other
849
+
850
+ """
851
+
852
+ GRID = "Grid"
853
+ WIND = "Wind"
854
+ SOLAR = "Solar"
855
+ HYDRO = "Hydro"
856
+ BIOMASS = "Biomass"
857
+ COAL = "Coal"
858
+ NATGAS = "Natgas"
859
+ NUCLEAR = "Nuclear"
860
+ OTHER = "Other"
861
+
862
+
863
+ class CablingCategory(StrEnum):
864
+ """
865
+ Cabling category.
866
+
867
+ - Cat7: Cat7
868
+ - Cat6A: Cat6A
869
+ - Cat6: Cat6
870
+ - Cat5/5e: Cat5/5e
871
+ - Cat3: Cat3
872
+ - Coax: Coax
873
+ - Fiber: Fiber
874
+ - Other: Other
875
+
876
+ """
877
+
878
+ CAT7 = "Cat7"
879
+ CAT6A = "Cat6A"
880
+ CAT6 = "Cat6"
881
+ CAT5_CAT5e = "Cat5/5e"
882
+ CAT3 = "Cat3"
883
+ COAX = "Coax"
884
+ FIBER = "Fiber"
885
+ OTHER = "Other"
886
+
887
+
888
+ class MechanicalInstallation(StrEnum):
889
+ """
890
+ Mechanical installation.
891
+
892
+ - Indoor: Indoor
893
+ - Outdoor: Outdoor
894
+
895
+ """
896
+
897
+ INDOOR = "Indoor"
898
+ OUTDOOR = "Outdoor"
899
+
900
+
901
+ class DeckingBoardMaterial(StrEnum):
902
+ """
903
+ Decking board material.
904
+
905
+ - Wood: Wood
906
+ - Composite: Composite
907
+ - Vinyl: Vinyl
908
+ - Aluminum: Aluminum
909
+ - Other: Other
910
+
911
+ """
912
+
913
+ WOOD = "Wood"
914
+ COMPOSITE = "Composite"
915
+ VINYL = "Vinyl"
916
+ ALUMINUM = "Aluminum"
917
+ OTHER = "Other"
918
+
919
+
920
+ class BoilerEquipmentFuelType(StrEnum):
921
+ """
922
+ Boiler equipment fuel type.
923
+
924
+ - Coal: Coal
925
+ - Electric: Electric
926
+ - Natural Gas: Natural Gas
927
+ - Propane: Propane
928
+ - Oil: Oil
929
+ - Wood: Wood
930
+ - Other: Other
931
+
932
+ """
933
+
934
+ COAL = "Coal"
935
+ ELECTRIC = "Electric"
936
+ NATURAL_GAS = "Natural Gas"
937
+ PROPANE = "Propane"
938
+ OIL = "Oil"
939
+ WOOD = "Wood"
940
+ OTHER = "Other"
941
+
942
+
943
+ class Spacer(StrEnum):
944
+ """
945
+ Spacer.
946
+
947
+ - Aluminium: Aluminium
948
+ - Stainless steel: Stainless steel
949
+ - Plastic and stainless steel: Plastic and stainless steel
950
+ - Thermoplastic: Thermoplastic
951
+ - Foam: Foam
952
+ - Stainless steel or tin plate U-channel: Stainless steel or tin plate U-channel
953
+ - Plastic: Plastic
954
+
955
+ """
956
+
957
+ ALUMINIUM = "Aluminium"
958
+ STAINLESS_STEEL = "Stainless steel"
959
+ PLASTIC_AND_STAINLESS_STEEL = "Plastic and stainless steel"
960
+ THERMOPLASTIC = "Thermoplastic"
961
+ FOAM = "Foam"
962
+ STAINLESS_STEEL_OR_TIN_PLATE_U_CHANNEL = "Stainless steel or tin plate U-channel"
963
+ PLASTIC = "Plastic"
964
+
965
+
966
+ class HvacHeatExchangersType(StrEnum):
967
+ """
968
+ Hvac heat exchangers type.
969
+
970
+ - Shell and Tube: Shell and Tube
971
+ - Plate: Plate
972
+ - Finned Tube: Finned Tube
973
+ - Double-Pipe: Double-Pipe
974
+ - Plate-Fin: Plate-Fin
975
+ - Spiral: Spiral
976
+
977
+ """
978
+
979
+ SHELL_AND_TUBE = "Shell and Tube"
980
+ PLATE = "Plate"
981
+ FINNED_TUBE = "Finned Tube"
982
+ DOUBLE_PIPE = "Double-Pipe"
983
+ PLATE_FIN = "Plate-Fin"
984
+ SPIRAL = "Spiral"
985
+
986
+
987
+ class HeatPumpType(StrEnum):
988
+ """
989
+ Heat pump type.
990
+
991
+ - Air-to-Water: Air-to-Water
992
+ - Water-to-Water: Water-to-Water
993
+
994
+ """
995
+
996
+ AIR_TO_WATER = "Air-to-Water"
997
+ WATER_TO_WATER = "Water-to-Water"
998
+
999
+
1000
+ class RoofCoverBoardsMaterial(StrEnum):
1001
+ """
1002
+ Roof cover boards material.
1003
+
1004
+ - Gypsum Fiber: Gypsum Fiber
1005
+ - Gypsum: Gypsum
1006
+ - Wood Fiber: Wood Fiber
1007
+ - Cement: Cement
1008
+ - Polyiso: Polyiso
1009
+ - Perlite: Perlite
1010
+ - Asphaltic: Asphaltic
1011
+ - Mineral Fiber: Mineral Fiber
1012
+ - Plywood/OSB: Plywood/OSB
1013
+ - Other: Other
1014
+
1015
+ """
1016
+
1017
+ GYPSUM_FIBER = "Gypsum Fiber"
1018
+ GYPSUM = "Gypsum"
1019
+ WOOD_FIBER = "Wood Fiber"
1020
+ CEMENT = "Cement"
1021
+ POLYISO = "Polyiso"
1022
+ PERLITE = "Perlite"
1023
+ ASPHALTIC = "Asphaltic"
1024
+ MINERAL_FIBER = "Mineral Fiber"
1025
+ PLYWOOD_OSB = "Plywood/OSB"
1026
+ OTHER = "Other"
1027
+
1028
+
1029
+ class CablingJacketMaterial(StrEnum):
1030
+ """
1031
+ Cabling jacket material.
1032
+
1033
+ - PVC: PVC
1034
+ - FEP: FEP
1035
+ - LSHF: LSHF
1036
+ - PVDF: PVDF
1037
+ - Polyolefin: Polyolefin
1038
+ - Other: Other
1039
+
1040
+ """
1041
+
1042
+ PVC = "PVC"
1043
+ FEP = "FEP"
1044
+ LSHF = "LSHF"
1045
+ PVDF = "PVDF"
1046
+ POLYOLEFIN = "Polyolefin"
1047
+ OTHER = "Other"
1048
+
1049
+
1050
+ class CeilingPanelCoreMaterial(StrEnum):
1051
+ """
1052
+ Ceiling panel core material.
1053
+
1054
+ - Fiberglass: Fiberglass
1055
+ - Mineral Fiber: Mineral Fiber
1056
+ - Wood: Wood
1057
+ - Aluminium: Aluminium
1058
+ - Steel: Steel
1059
+ - Other: Other
1060
+
1061
+ """
1062
+
1063
+ FIBERGLASS = "Fiberglass"
1064
+ MINERAL_FIBER = "Mineral Fiber"
1065
+ WOOD = "Wood"
1066
+ ALUMINIUM = "Aluminium"
1067
+ STEEL = "Steel"
1068
+ OTHER = "Other"
1069
+
1070
+
1071
+ class CableTraysMaterial(StrEnum):
1072
+ """
1073
+ Cable trays material.
1074
+
1075
+ - Stainless Steel: Stainless Steel
1076
+ - Electroplated Zinc: Electroplated Zinc
1077
+ - Hot Dip Galvanized: Hot Dip Galvanized
1078
+
1079
+ """
1080
+
1081
+ STAINLESS_STEEL = "Stainless Steel"
1082
+ ELECTROPLATED_ZINC = "Electroplated Zinc"
1083
+ HOT_DIP_GALVANIZED = "Hot Dip Galvanized"
1084
+
1085
+
1086
+ class InsulationIntendedApplication(StrEnum):
1087
+ """
1088
+ Insulation intended application.
1089
+
1090
+ - Wall & General: Wall & General
1091
+ - Exterior Wall: Exterior Wall
1092
+ - Roof: Roof
1093
+ - Below Grade: Below Grade
1094
+ - Duct: Duct
1095
+ - Other: Other
1096
+
1097
+ """
1098
+
1099
+ WALL_GENERAL = "Wall & General"
1100
+ EXTERIOR_WALL = "Exterior Wall"
1101
+ ROOF = "Roof"
1102
+ BELOW_GRADE = "Below Grade"
1103
+ DUCT = "Duct"
1104
+ OTHER = "Other"
1105
+
1106
+
1107
+ class SprayFireproofingDensity(StrEnum):
1108
+ """
1109
+ Spray fireproofing density.
1110
+
1111
+ - Standard: Standard
1112
+ - Medium: Medium
1113
+ - High: High
1114
+
1115
+ """
1116
+
1117
+ STANDARD = "Standard"
1118
+ MEDIUM = "Medium"
1119
+ HIGH = "High"
1120
+
1121
+
1122
+ class ElevatorsUsageIntensity(StrEnum):
1123
+ """
1124
+ Elevators usage intensity.
1125
+
1126
+ - Very low: Very low
1127
+ - Low: Low
1128
+ - Medium: Medium
1129
+ - High: High
1130
+ - Very high: Very high
1131
+ - Extremely high: Extremely high
1132
+
1133
+ """
1134
+
1135
+ VERY_LOW = "Very low"
1136
+ LOW = "Low"
1137
+ MEDIUM = "Medium"
1138
+ HIGH = "High"
1139
+ VERY_HIGH = "Very high"
1140
+ EXTREMELY_HIGH = "Extremely high"
1141
+
1142
+
1143
+ class CladdingFacingMaterial(StrEnum):
1144
+ """
1145
+ Cladding facing material.
1146
+
1147
+ - Steel: Steel
1148
+ - Stone: Stone
1149
+ - Aluminium: Aluminium
1150
+ - Other: Other
1151
+
1152
+ """
1153
+
1154
+ STEEL = "Steel"
1155
+ STONE = "Stone"
1156
+ ALUMINIUM = "Aluminium"
1157
+ OTHER = "Other"
1158
+
1159
+
1160
+ class WallBaseMaterial(StrEnum):
1161
+ """
1162
+ Wall base material.
1163
+
1164
+ - Rubber: Rubber
1165
+ - Vinyl: Vinyl
1166
+ - Other: Other
1167
+
1168
+ """
1169
+
1170
+ RUBBER = "Rubber"
1171
+ VINYL = "Vinyl"
1172
+ OTHER = "Other"
1173
+
1174
+
1175
+ class SprayFireproofingMaterialType(StrEnum):
1176
+ """
1177
+ Spray fireproofing material type.
1178
+
1179
+ - Gypsum-based: Gypsum-based
1180
+ - Portland: Portland
1181
+ - Gypsum and Portland: Gypsum and Portland
1182
+
1183
+ """
1184
+
1185
+ GYPSUM_BASED = "Gypsum-based"
1186
+ PORTLAND_CEMENT_BASED = "Portland"
1187
+ GYPSUM_AND_PORTLAND_CEMENT_BASED = "Gypsum and Portland"
1188
+
1189
+
1190
+ class MasonryCementAstmC91Type(StrEnum):
1191
+ """
1192
+ Masonry cement astm c91 type.
1193
+
1194
+ - Type N: Type N
1195
+ - Type S: Type S
1196
+ - Type O: Type O
1197
+ - Type M: Type M
1198
+
1199
+ """
1200
+
1201
+ TYPE_N = "Type N"
1202
+ TYPE_S = "Type S"
1203
+ TYPE_O = "Type O"
1204
+ TYPE_M = "Type M"
1205
+
1206
+
1207
+ class CementAstmType(StrEnum):
1208
+ """
1209
+ Cement astm type.
1210
+
1211
+ - C150 Type I: C150 Type I
1212
+ - C150 Type I/II: C150 Type I/II
1213
+ - C150 Type III: C150 Type III
1214
+ - C150 Type IV: C150 Type IV
1215
+ - C150 Type II/V: C150 Type II/V
1216
+ - C595 PLC: C595 PLC
1217
+ - C595 Blended: C595 Blended
1218
+
1219
+ """
1220
+
1221
+ C150_TYPE_I = "C150 Type I"
1222
+ C150_TYPE_I_II = "C150 Type I/II"
1223
+ C150_TYPE_III = "C150 Type III"
1224
+ C150_TYPE_IV = "C150 Type IV"
1225
+ C150_TYPE_II_V = "C150 Type II/V"
1226
+ C595_PLC = "C595 PLC"
1227
+ C595_BLENDED = "C595 Blended"
1228
+
1229
+
1230
+ class CmuBlockType(StrEnum):
1231
+ """
1232
+ Cmu block type.
1233
+
1234
+ - Gray: Gray
1235
+ - Architectural: Architectural
1236
+
1237
+ """
1238
+
1239
+ GRAY = "Gray"
1240
+ ARCHITECTURAL = "Architectural"
1241
+
1242
+
1243
+ class CarpetYarnType(StrEnum):
1244
+ """
1245
+ Carpet yarn type.
1246
+
1247
+ - Nylon 6,6: Nylon 6,6
1248
+ - Nylon 6: Nylon 6
1249
+ - Wool: Wool
1250
+ - Recycled PET: Recycled PET
1251
+ - Polyester (PET): Polyester (PET)
1252
+ - Olefin: Olefin
1253
+
1254
+ """
1255
+
1256
+ NYLON_6_6 = "Nylon 6,6"
1257
+ NYLON_6 = "Nylon 6"
1258
+ WOOL = "Wool"
1259
+ RECYCLED_PET = "Recycled PET"
1260
+ POLYESTER_PET = "Polyester (PET)"
1261
+ OLEFIN = "Olefin"
1262
+
1263
+
1264
+ class AluminiumAlloy(StrEnum):
1265
+ """
1266
+ AluminiumAlloy.
1267
+
1268
+ - 1xxx: 1xxx
1269
+ - 2xxx: 2xxx
1270
+ - 3xxx: 3xxx
1271
+ - 4xxx: 4xxx
1272
+ - 5xxx: 5xxx
1273
+ - 6xxx: 6xxx
1274
+ - 7xxx: 7xxx
1275
+ - 8xxx: 8xxx
1276
+ - 1xx.x: 1xx.x
1277
+ - 2xx.x: 2xx.x
1278
+ - 3xx.x: 3xx.x
1279
+ - 4xx.x: 4xx.x
1280
+ - 5xx.x: 5xx.x
1281
+ - 7xx.x: 7xx.x
1282
+ - 8xx.x: 8xx.x
1283
+ - 9xx.x: 9xx.x
1284
+
1285
+ """
1286
+
1287
+ ALLOY_1XXX = "1xxx"
1288
+ ALLOY_2XXX = "2xxx"
1289
+ ALLOY__3XXX = "3xxx"
1290
+ ALLOY_4XXX = "4xxx"
1291
+ ALLOY_5XXX = "5xxx"
1292
+ ALLOY_6XXX = "6xxx"
1293
+ ALLOY_7XXX = "7xxx"
1294
+ ALLOY_8XXX = "8xxx"
1295
+ ALLOY_1XX_X = "1xx.x"
1296
+ ALLOY_2XX_X = "2xx.x"
1297
+ ALLOY_3XX_X = "3xx.x"
1298
+ ALLOY_4XX_X = "4xx.x"
1299
+ ALLOY_5XX_X = "5xx.x"
1300
+ ALLOY_7XX_X = "7xx.x"
1301
+ ALLOY_8XX_X = "8xx.x"
1302
+ ALLOY_9XX_X = "9xx.x"
1303
+
1304
+
1305
+ class CarpetIntendedApplication(StrEnum):
1306
+ """
1307
+ Intended application.
1308
+
1309
+ - Res: Res
1310
+ - Com: Com
1311
+ - Ind: Ind
1312
+
1313
+ """
1314
+
1315
+ RES = "Res"
1316
+ COM = "Com"
1317
+ IND = "Ind"
1318
+
1319
+
1320
+ class WoodFlooringFabrication(StrEnum):
1321
+ """
1322
+ Wood Flooring Fabrication.
1323
+
1324
+ - Solid hardwood: Solid hardwood
1325
+ - Engineered hardwood: Engineered hardwood
1326
+ - Bamboo: Bamboo
1327
+ - Parquet: Parquet
1328
+ - Cork: Cork
1329
+
1330
+ """
1331
+
1332
+ SOLID_HARDWOOD = "Solid hardwood"
1333
+ ENGINEERED_HARDWOOD = "Engineered hardwood"
1334
+ BAMBOO = "Bamboo"
1335
+ PARQUET = "Parquet"
1336
+ CORK = "Cork"
1337
+
1338
+
1339
+ class CompositeLumberFabrication(StrEnum):
1340
+ """
1341
+ Composite Lumber Fabrication.
1342
+
1343
+ - LVL: LVL
1344
+ - Bonded Strand: Bonded Strand
1345
+ """
1346
+
1347
+ LVL = "LVL"
1348
+ BONDED_STRAND = "Bonded Strand"
1349
+
1350
+
1351
+ class MassTimberFabrication(StrEnum):
1352
+ """
1353
+ Composite Lumber Fabrication.
1354
+
1355
+ - CLT: CLT
1356
+ - GLT: GLT
1357
+ - NLT: NLT
1358
+ - DLT: DLT
1359
+ """
1360
+
1361
+ CLT = "CLT"
1362
+ GLT = "GLT"
1363
+ NLT = "NLT"
1364
+ DLT = "DLT"
1365
+
1366
+
1367
+ class SheathingPanelsFabrication(StrEnum):
1368
+ """
1369
+ Sheathing Panels Fabrication.
1370
+
1371
+ - Plywood: Plywood
1372
+ - OSB: OSB
1373
+ - Fiberboard: Fiberboard
1374
+ """
1375
+
1376
+ PLYWOOD = "Plywood"
1377
+ OSB = "OSB"
1378
+ FIBERBOARD = "Fiberboard"
1379
+
1380
+
1381
+ class AllFabrication(StrEnum):
1382
+ """
1383
+ Wood fabrication enumeration.
1384
+
1385
+ - Plywood: Plywood
1386
+ - OSB: OSB
1387
+ - Fiberboard: Fiberboard
1388
+ - CLT: CLT
1389
+ - GLT: GLT
1390
+ - NLT: NLT
1391
+ - DLT: DLT
1392
+ - LVL: LVL
1393
+ - Bonded Strand: Bonded Strand
1394
+ - Solid hardwood: Solid hardwood
1395
+ - Engineered hardwood: Engineered hardwood
1396
+ - Bamboo: Bamboo
1397
+ - Parquet: Parquet
1398
+ - Cork: Cork
1399
+ """
1400
+
1401
+ PLYWOOD = "Plywood"
1402
+ OSB = "OSB"
1403
+ FIBERBOARD = "Fiberboard"
1404
+ CLT = "CLT"
1405
+ GLT = "GLT"
1406
+ NLT = "NLT"
1407
+ DLT = "DLT"
1408
+ LVL = "LVL"
1409
+ BONDED_STRAND = "Bonded Strand"
1410
+ SOLID_HARDWOOD = "Solid hardwood"
1411
+ ENGINEERED_HARDWOOD = "Engineered hardwood"
1412
+ BAMBOO = "Bamboo"
1413
+ PARQUET = "Parquet"
1414
+ CORK = "Cork"
1415
+
1416
+
1417
+ class AsphaltMixType(StrEnum):
1418
+ """
1419
+ Asphalt mix type.
1420
+
1421
+ - WMA: WMA
1422
+ - HMA: HMA
1423
+
1424
+ """
1425
+
1426
+ WMA = "WMA"
1427
+ HMA = "HMA"
1428
+
1429
+
1430
+ class EngineeredTimberSpecies(StrEnum):
1431
+ """Engineered Timber species."""
1432
+
1433
+ ALASKA_CEDAR = "Alaska Cedar"
1434
+ DOUGLAS_FIR_LARCH = "Douglas Fir-Larch"
1435
+ BLACK_SPRUCE = "Black Spruce"
1436
+ WHITE_SPRUCE = "White Spruce"
1437
+ RED_SPRUCE = "Red Spruce"
1438
+ GRAND_FIR = "Grand Fir"
1439
+ WHITE_FIR = "White Fir"
1440
+ WESTERN_HEMLOCK = "Western Hemlock"
1441
+ CALIFORNIA_RED_FIR = "California Red Fir"
1442
+ NOBLE_FIR = "Noble Fir"
1443
+ PACIFIC_SILVER_FIR = "Pacific Silver Fir"
1444
+ DOUGLAS_FIR = "Douglas Fir"
1445
+ JACK_PINE = "Jack Pine"
1446
+ IDAHO_WHITE_PINE = "Idaho White Pine"
1447
+ MOUNTAIN_HEMLOCK = "Mountain Hemlock"
1448
+ ALPINE_FIR = "Alpine Fir"
1449
+ LODGEPOLE_PINE = "Lodgepole Pine"
1450
+ PONDEROSA_PINE = "Ponderosa Pine"
1451
+ SUGAR_PINE = "Sugar Pine"
1452
+ WESTERN_RED_CEDAR = "Western Red Cedar"
1453
+ ENGELMANN_SPRUCE = "Engelmann Spruce"
1454
+ DOUGLAS_FIR_SOUTH = "Douglas Fir South"
1455
+ WESTERN_LARCH = "Western Larch"
1456
+ BALSAM_FIR = "Balsam Fir"
1457
+ LOBLOLLY_PINE = "Loblolly Pine"
1458
+ SHORTLEAF_PINE = "Shortleaf Pine"
1459
+ LONGLEAF_PINE = "Longleaf Pine"
1460
+ SLASH_PINE = "Slash Pine"
1461
+ SITKA_SPRUCE = "Sitka Spruce"
1462
+ NORWAY_PINE = "Norway Pine"
1463
+ SHAGBARK_HICKORY = "Shagbark Hickory"
1464
+ MOCKERNUT_HICKORY = "Mockernut Hickory"
1465
+ PIGNUT_HICKORY = "Pignut Hickory"
1466
+ NUTMEG_HICKORY = "Nutmeg Hickory"
1467
+ AMERICAN_BEECH = "American Beech"
1468
+ WATER_HICKORY = "Water Hickory"
1469
+ YELLOW_BIRCH = "Yellow Birch"
1470
+ SWEET_BIRCH = "Sweet Birch"
1471
+ WHITE_ASH = "White Ash"
1472
+ BITTERNUT_HICKORY = "Bitternut Hickory"
1473
+ SHELLBARK_HICKORY = "Shellbark Hickory"
1474
+ NORTHERN_RED_OAK = "Northern Red Oak"
1475
+ WHITE_OAK = "White Oak"
1476
+ PECAN_HICKORY = "Pecan Hickory"
1477
+ WATER_OAK = "Water Oak"
1478
+ BLACK_MAPLE = "Black Maple"
1479
+ POST_OAK = "Post Oak"
1480
+ SCARLET_OAK = "Scarlet Oak"
1481
+ SWEETGUM_OAK = "Sweetgum Oak"
1482
+ PIN_OAK = "Pin Oak"
1483
+ SOUTHERN_RED_OAK = "Southern Red Oak"
1484
+ MIXED_OAK = "Mixed Oak"
1485
+ CHESTNUT_OAK = "Chestnut Oak"
1486
+ SWAMP_WHITE_OAK = "Swamp White Oak"
1487
+ BUR_OAK = "Bur Oak"
1488
+ BLACK_OAK = "Black Oak"
1489
+ SWAMP_CHESTNUT_OAK = "Swamp Chestnut Oak"
1490
+ RED_MAPLE = "Red Maple"
1491
+ CHERRYBARK_OAK = "Cherrybark Oak"
1492
+ LIVE_OAK = "Live Oak"
1493
+ OVERCUP_OAK = "Overcup Oak"
1494
+ LAUREL_OAK = "Laurel Oak"
1495
+ ROCK_ELM = "Rock Elm"
1496
+ YELLOW_POPLAR = "Yellow Poplar"
1497
+ AMERICAN_ELM = "American Elm"
1498
+ BLACK_ASH = "Black Ash"
1499
+ WATER_TUPULO = "Water Tupulo"
1500
+ SILVER_MAPLE = "Silver Maple"
1501
+ BIGTOOTH_ASPEN = "Bigtooth Aspen"
1502
+ EASTERN_COTTONWOOD = "Eastern Cottonwood"
1503
+ SUGAR_MAPLE = "Sugar Maple"
1504
+ QUAKING_ASPEN = "Quaking Aspen"
1505
+
1506
+
1507
+ class WoodFlooringTimberSpecies(StrEnum):
1508
+ """
1509
+ Engineered Timber species.
1510
+
1511
+ - Oak: Oak
1512
+ - Maple: Maple
1513
+ - Cherry: Cherry
1514
+ - Walnut: Walnut
1515
+ - Ash: Ash
1516
+ - Mahogany: Mahogany
1517
+ - Hickory: Hickory
1518
+ - Teak: Teak
1519
+ - Jarrah: Jarrah
1520
+ - Mesquite: Mesquite
1521
+ - Bamboo: Bamboo
1522
+
1523
+ """
1524
+
1525
+ OAK = "Oak"
1526
+ MAPLE = "Maple"
1527
+ CHERRY = "Cherry"
1528
+ WALNUT = "Walnut"
1529
+ ASH = "Ash"
1530
+ MAHOGANY = "Mahogany"
1531
+ HICKORY = "Hickory"
1532
+ TEAK = "Teak"
1533
+ JARRAH = "Jarrah"
1534
+ MESQUITE = "Mesquite"
1535
+ BAMBOO = "Bamboo"
1536
+
1537
+
1538
+ class SawnTimberSpecies(StrEnum):
1539
+ """
1540
+ Sawn Timber species.
1541
+
1542
+ - Alaska Cedar: Alaska Cedar
1543
+ - Alaska Hemlock: Alaska Hemlock
1544
+ - Alaska Spruce: Alaska Spruce
1545
+ - Alaska Yellow Cedar: Alaska Yellow Cedar
1546
+ - Aspen: Aspen
1547
+ - Baldcypress: Baldcypress
1548
+ - Balsam Fir: Balsam Fir
1549
+ - Beech-Birch-Hickory: Beech-Birch-Hickory
1550
+ - Coast Sitka Spruce: Coast Sitka Spruce
1551
+ - Coast Species: Coast Species
1552
+ - Cottonwood: Cottonwood
1553
+ - Douglas Fir-Larch: Douglas Fir-Larch
1554
+ - Douglas Fir-Larch (North): Douglas Fir-Larch (North)
1555
+ - Douglas Fir-South: Douglas Fir-South
1556
+ - Eastern Hemlock: Eastern Hemlock
1557
+ - Eastern Hemlock-Balsam Fir: Eastern Hemlock-Balsam Fir
1558
+ - Eastern Hemlock-Tamarack: Eastern Hemlock-Tamarack
1559
+ - Eastern Hemlock-Tamarack (North): Eastern Hemlock-Tamarack (North)
1560
+ - Eastern Softwoods: Eastern Softwoods
1561
+ - Eastern Spruce: Eastern Spruce
1562
+ - Eastern White Pine: Eastern White Pine
1563
+ - Eastern White Pine (North): Eastern White Pine (North)
1564
+ - Hem-Fir: Hem-Fir
1565
+ - Hem-Fir (North): Hem-Fir (North)
1566
+ - Mixed Maple: Mixed Maple
1567
+ - Mixed Oak: Mixed Oak
1568
+ - Mixed Southern Pine: Mixed Southern Pine
1569
+ - Mountain Hemlock: Mountain Hemlock
1570
+ - Northern Pine: Northern Pine
1571
+ - Northern Red Oak: Northern Red Oak
1572
+ - Northern Species: Northern Species
1573
+ - Northern White Cedar: Northern White Cedar
1574
+ - Ponderosa Pine: Ponderosa Pine
1575
+ - Red Maple: Red Maple
1576
+ - Red Oak: Red Oak
1577
+ - Red Pine: Red Pine
1578
+ - Redwood: Redwood
1579
+ - Sitka Spruce: Sitka Spruce
1580
+ - Southern Pine: Southern Pine
1581
+ - Spruce-Pine-Fir: Spruce-Pine-Fir
1582
+ - Scots Pine: Scots Pine
1583
+ - Spruce-Pine-Fir (South): Spruce-Pine-Fir (South)
1584
+ - Western Cedars: Western Cedars
1585
+ - Western Cedars (North): Western Cedars (North)
1586
+ - Western Hemlock: Western Hemlock
1587
+ - Western Hemlock (North): Western Hemlock (North)
1588
+ - Western White Pine: Western White Pine
1589
+ - Western Woods: Western Woods
1590
+ - White Oak: White Oak
1591
+ - Yellow Cedar: Yellow Cedar
1592
+ - Yellow Poplar: Yellow Poplar
1593
+
1594
+ """
1595
+
1596
+ ALASKA_CEDAR = "Alaska Cedar"
1597
+ ALASKA_HEMLOCK = "Alaska Hemlock"
1598
+ ALASKA_SPRUCE = "Alaska Spruce"
1599
+ ALASKA_YELLOW_CEDAR = "Alaska Yellow Cedar"
1600
+ ASPEN = "Aspen"
1601
+ BALDCYPRESS = "Baldcypress"
1602
+ BALSAM_FIR = "Balsam Fir"
1603
+ BEECH_BIRCH_HICKORY = "Beech-Birch-Hickory"
1604
+ COAST_SITKA_SPRUCE = "Coast Sitka Spruce"
1605
+ COAST_SPECIES = "Coast Species"
1606
+ COTTONWOOD = "Cottonwood"
1607
+ DOUGLAS_FIR_LARCH = "Douglas Fir-Larch"
1608
+ DOUGLAS_FIR_LARCH_NORTH = "Douglas Fir-Larch (North)"
1609
+ DOUGLAS_FIR_SOUTH = "Douglas Fir-South"
1610
+ EASTERN_HEMLOCK = "Eastern Hemlock"
1611
+ EASTERN_HEMLOCK_BALSAM_FIR = "Eastern Hemlock-Balsam Fir"
1612
+ EASTERN_HEMLOCK_TAMARACK = "Eastern Hemlock-Tamarack"
1613
+ EASTERN_HEMLOCK_TAMARACK_NORTH = "Eastern Hemlock-Tamarack (North)"
1614
+ EASTERN_SOFTWOODS = "Eastern Softwoods"
1615
+ EASTERN_SPRUCE = "Eastern Spruce"
1616
+ EASTERN_WHITE_PINE = "Eastern White Pine"
1617
+ EASTERN_WHITE_PINE_NORTH = "Eastern White Pine (North)"
1618
+ HEM_FIR = "Hem-Fir"
1619
+ HEM_FIR_NORTH = "Hem-Fir (North)"
1620
+ MIXED_MAPLE = "Mixed Maple"
1621
+ MIXED_OAK = "Mixed Oak"
1622
+ MIXED_SOUTHERN_PINE = "Mixed Southern Pine"
1623
+ MOUNTAIN_HEMLOCK = "Mountain Hemlock"
1624
+ NORTHERN_PINE = "Northern Pine"
1625
+ NORTHERN_RED_OAK = "Northern Red Oak"
1626
+ NORTHERN_SPECIES = "Northern Species"
1627
+ NORTHERN_WHITE_CEDAR = "Northern White Cedar"
1628
+ PONDEROSA_PINE = "Ponderosa Pine"
1629
+ RED_MAPLE = "Red Maple"
1630
+ RED_OAK = "Red Oak"
1631
+ RED_PINE = "Red Pine"
1632
+ REDWOOD = "Redwood"
1633
+ SITKA_SPRUCE = "Sitka Spruce"
1634
+ SOUTHERN_PINE = "Southern Pine"
1635
+ SPRUCE_PINE_FIR = "Spruce-Pine-Fir"
1636
+ SCOTS_PINE = "Scots Pine"
1637
+ SPRUCE_PINE_FIR_SOUTH = "Spruce-Pine-Fir (South)"
1638
+ WESTERN_CEDARS = "Western Cedars"
1639
+ WESTERN_CEDARS_NORTH = "Western Cedars (North)"
1640
+ WESTERN_HEMLOCK = "Western Hemlock"
1641
+ WESTERN_HEMLOCK_NORTH = "Western Hemlock (North)"
1642
+ WESTERN_WHITE_PINE = "Western White Pine"
1643
+ WESTERN_WOODS = "Western Woods"
1644
+ WHITE_OAK = "White Oak"
1645
+ YELLOW_CEDAR = "Yellow Cedar"
1646
+ YELLOW_POPLAR = "Yellow Poplar"
1647
+
1648
+
1649
+ class AllTimberSpecies(StrEnum):
1650
+ """
1651
+ All timber species.
1652
+
1653
+ - Softwood Species: Softwood Species
1654
+ - Group A Hardwoods: Group A Hardwoods
1655
+ - Group B Hardwoods: Group B Hardwoods
1656
+ - Group C Hardwoods: Group C Hardwoods
1657
+ - Group D Hardwoods: Group D Hardwoods
1658
+ - Oak: Oak
1659
+ - Maple: Maple
1660
+ - Cherry: Cherry
1661
+ - Walnut: Walnut
1662
+ - Ash: Ash
1663
+ - Mahogany: Mahogany
1664
+ - Hickory: Hickory
1665
+ - Teak: Teak
1666
+ - Jarrah: Jarrah
1667
+ - Mesquite: Mesquite
1668
+ - Bamboo: Bamboo
1669
+ - Alaska Cedar: Alaska Cedar
1670
+ - Alaska Hemlock: Alaska Hemlock
1671
+ - Alaska Spruce: Alaska Spruce
1672
+ - Alaska Yellow Cedar: Alaska Yellow Cedar
1673
+ - Aspen: Aspen
1674
+ - Baldcypress: Baldcypress
1675
+ - Balsam Fir: Balsam Fir
1676
+ - Beech-Birch-Hickory: Beech-Birch-Hickory
1677
+ - Coast Sitka Spruce: Coast Sitka Spruce
1678
+ - Coast Species: Coast Species
1679
+ - Cottonwood: Cottonwood
1680
+ - Douglas Fir-Larch: Douglas Fir-Larch
1681
+ - Douglas Fir-Larch (North): Douglas Fir-Larch (North)
1682
+ - Douglas Fir-South: Douglas Fir-South
1683
+ - Eastern Hemlock: Eastern Hemlock
1684
+ - Eastern Hemlock-Balsam Fir: Eastern Hemlock-Balsam Fir
1685
+ - Eastern Hemlock-Tamarack: Eastern Hemlock-Tamarack
1686
+ - Eastern Hemlock-Tamarack (North): Eastern Hemlock-Tamarack (North)
1687
+ - Eastern Softwoods: Eastern Softwoods
1688
+ - Eastern Spruce: Eastern Spruce
1689
+ - Eastern White Pine: Eastern White Pine
1690
+ - Eastern White Pine (North): Eastern White Pine (North)
1691
+ - Hem-Fir: Hem-Fir
1692
+ - Hem-Fir (North): Hem-Fir (North)
1693
+ - Mixed Maple: Mixed Maple
1694
+ - Mixed Oak: Mixed Oak
1695
+ - Mixed Southern Pine: Mixed Southern Pine
1696
+ - Mountain Hemlock: Mountain Hemlock
1697
+ - Northern Pine: Northern Pine
1698
+ - Northern Red Oak: Northern Red Oak
1699
+ - Northern Species: Northern Species
1700
+ - Northern White Cedar: Northern White Cedar
1701
+ - Ponderosa Pine: Ponderosa Pine
1702
+ - Red Maple: Red Maple
1703
+ - Red Oak: Red Oak
1704
+ - Red Pine: Red Pine
1705
+ - Redwood: Redwood
1706
+ - Sitka Spruce: Sitka Spruce
1707
+ - Southern Pine: Southern Pine
1708
+ - Spruce-Pine-Fir: Spruce-Pine-Fir
1709
+ - Scots Pine: Scots Pine
1710
+ - Spruce-Pine-Fir (South): Spruce-Pine-Fir (South)
1711
+ - Western Cedars: Western Cedars
1712
+ - Western Cedars (North): Western Cedars (North)
1713
+ - Western Hemlock: Western Hemlock
1714
+ - Western Hemlock (North): Western Hemlock (North)
1715
+ - Western White Pine: Western White Pine
1716
+ - Western Woods: Western Woods
1717
+ - White Oak: White Oak
1718
+ - Yellow Cedar: Yellow Cedar
1719
+ - Yellow Poplar: Yellow Poplar
1720
+
1721
+ """
1722
+
1723
+ SOFTWOOD_SPECIES = "Softwood Species"
1724
+ GROUP_A_HARDWOODS = "Group A Hardwoods"
1725
+ GROUP_B_HARDWOODS = "Group B Hardwoods"
1726
+ GROUP_C_HARDWOODS = "Group C Hardwoods"
1727
+ GROUP_D_HARDWOODS = "Group D Hardwoods"
1728
+ OAK = "Oak"
1729
+ MAPLE = "Maple"
1730
+ CHERRY = "Cherry"
1731
+ WALNUT = "Walnut"
1732
+ ASH = "Ash"
1733
+ MAHOGANY = "Mahogany"
1734
+ HICKORY = "Hickory"
1735
+ TEAK = "Teak"
1736
+ JARRAH = "Jarrah"
1737
+ MESQUITE = "Mesquite"
1738
+ BAMBOO = "Bamboo"
1739
+ ALASKA_CEDAR = "Alaska Cedar"
1740
+ ALASKA_HEMLOCK = "Alaska Hemlock"
1741
+ ALASKA_SPRUCE = "Alaska Spruce"
1742
+ ALASKA_YELLOW_CEDAR = "Alaska Yellow Cedar"
1743
+ ASPEN = "Aspen"
1744
+ BALDCYPRESS = "Baldcypress"
1745
+ BALSAM_FIR = "Balsam Fir"
1746
+ BEECH_BIRCH_HICKORY = "Beech-Birch-Hickory"
1747
+ COAST_SITKA_SPRUCE = "Coast Sitka Spruce"
1748
+ COAST_SPECIES = "Coast Species"
1749
+ COTTONWOOD = "Cottonwood"
1750
+ DOUGLAS_FIR_LARCH = "Douglas Fir-Larch"
1751
+ DOUGLAS_FIR_LARCH_NORTH = "Douglas Fir-Larch (North)"
1752
+ DOUGLAS_FIR_SOUTH = "Douglas Fir-South"
1753
+ EASTERN_HEMLOCK = "Eastern Hemlock"
1754
+ EASTERN_HEMLOCK_BALSAM_FIR = "Eastern Hemlock-Balsam Fir"
1755
+ EASTERN_HEMLOCK_TAMARACK = "Eastern Hemlock-Tamarack"
1756
+ EASTERN_HEMLOCK_TAMARACK_NORTH = "Eastern Hemlock-Tamarack (North)"
1757
+ EASTERN_SOFTWOODS = "Eastern Softwoods"
1758
+ EASTERN_SPRUCE = "Eastern Spruce"
1759
+ EASTERN_WHITE_PINE = "Eastern White Pine"
1760
+ EASTERN_WHITE_PINE_NORTH = "Eastern White Pine (North)"
1761
+ HEM_FIR = "Hem-Fir"
1762
+ HEM_FIR_NORTH = "Hem-Fir (North)"
1763
+ MIXED_MAPLE = "Mixed Maple"
1764
+ MIXED_OAK = "Mixed Oak"
1765
+ MIXED_SOUTHERN_PINE = "Mixed Southern Pine"
1766
+ MOUNTAIN_HEMLOCK = "Mountain Hemlock"
1767
+ NORTHERN_PINE = "Northern Pine"
1768
+ NORTHERN_RED_OAK = "Northern Red Oak"
1769
+ NORTHERN_SPECIES = "Northern Species"
1770
+ NORTHERN_WHITE_CEDAR = "Northern White Cedar"
1771
+ PONDEROSA_PINE = "Ponderosa Pine"
1772
+ RED_MAPLE = "Red Maple"
1773
+ RED_OAK = "Red Oak"
1774
+ RED_PINE = "Red Pine"
1775
+ REDWOOD = "Redwood"
1776
+ SITKA_SPRUCE = "Sitka Spruce"
1777
+ SOUTHERN_PINE = "Southern Pine"
1778
+ SPRUCE_PINE_FIR = "Spruce-Pine-Fir"
1779
+ SCOTS_PINE = "Scots Pine"
1780
+ SPRUCE_PINE_FIR_SOUTH = "Spruce-Pine-Fir (South)"
1781
+ WESTERN_CEDARS = "Western Cedars"
1782
+ WESTERN_CEDARS_NORTH = "Western Cedars (North)"
1783
+ WESTERN_HEMLOCK = "Western Hemlock"
1784
+ WESTERN_HEMLOCK_NORTH = "Western Hemlock (North)"
1785
+ WESTERN_WHITE_PINE = "Western White Pine"
1786
+ WESTERN_WOODS = "Western Woods"
1787
+ WHITE_OAK = "White Oak"
1788
+ YELLOW_CEDAR = "Yellow Cedar"
1789
+ YELLOW_POPLAR = "Yellow Poplar"
1790
+
1791
+
1792
+ class HardwareFunction(StrEnum):
1793
+ """
1794
+ Hardware function.
1795
+
1796
+ - Lock: Lock
1797
+ - Hinge: Hinge
1798
+ - Handle: Handle
1799
+ - Operator: Operator
1800
+ - Balance: Balance
1801
+ - Other: Other
1802
+
1803
+ """
1804
+
1805
+ LOCK = "Lock"
1806
+ HINGE = "Hinge"
1807
+ HANDLE = "Handle"
1808
+ OPERATOR = "Operator"
1809
+ BALANCE = "Balance"
1810
+ OTHER = "Other"
1811
+
1812
+
1813
+ class AccessFlooringFinishMaterial(StrEnum):
1814
+ """
1815
+ Access flooring finish material.
1816
+
1817
+ - Linoleum: Linoleum
1818
+ - Vinyl: Vinyl
1819
+ - HPL: HPL
1820
+ - Solid hardwood: Solid hardwood
1821
+ - Engineered hardwood: Engineered hardwood
1822
+ - Poured Terrazzo: Poured Terrazzo
1823
+ - Epoxy Terrazzo: Epoxy Terrazzo
1824
+ - Concrete Terrazzo: Concrete Terrazzo
1825
+ - Rubber: Rubber
1826
+ - Porcelain: Porcelain
1827
+ - Other: Other
1828
+ - None: None
1829
+
1830
+ """
1831
+
1832
+ LINOLEUM = "Linoleum"
1833
+ VINYL = "Vinyl"
1834
+ HPL = "HPL"
1835
+ SOLID_HARDWOOD = "Solid hardwood"
1836
+ ENGINEERED_HARDWOOD = "Engineered hardwood"
1837
+ POURED_TERRAZZO = "Poured Terrazzo"
1838
+ EPOXY_TERRAZZO = "Epoxy Terrazzo"
1839
+ CONCRETE_TERRAZZO = "Concrete Terrazzo"
1840
+ RUBBER = "Rubber"
1841
+ PORCELAIN = "Porcelain"
1842
+ OTHER = "Other"
1843
+ NONE = "None"
1844
+
1845
+
1846
+ class AccessFlooringSeismicRating(StrEnum):
1847
+ """
1848
+ Access flooring seismic rating.
1849
+
1850
+ - Type 0: Type 0
1851
+ - Type 1: Type 1
1852
+ - Type 2: Type 2
1853
+ - Type 3: Type 3
1854
+ - Type 4: Type 4
1855
+ - Type 5: Type 5
1856
+
1857
+ """
1858
+
1859
+ TYPE_0 = "Type 0"
1860
+ TYPE_1 = "Type 1"
1861
+ TYPE_2 = "Type 2"
1862
+ TYPE_3 = "Type 3"
1863
+ TYPE_4 = "Type 4"
1864
+ TYPE_5 = "Type 5"
1865
+
1866
+
1867
+ class CarpetManufactureType(StrEnum):
1868
+ """
1869
+ Carpet manufacture type.
1870
+
1871
+ - Tufted: Tufted
1872
+ - Needlefelt: Needlefelt
1873
+
1874
+ """
1875
+
1876
+ TUFTED = "Tufted"
1877
+ NEEDLEFELT = "Needlefelt"
1878
+
1879
+
1880
+ class AdmixtureEffects(StrEnum):
1881
+ """
1882
+ Admixture effects.
1883
+
1884
+ - Air Entrainer: Air Entrainer
1885
+ - Water Reducer: Water Reducer
1886
+ - Retarding: Retarding
1887
+ - Accelerating: Accelerating
1888
+ - Superplasticizer: Superplasticizer
1889
+ - Corrosion Inhibitor: Corrosion Inhibitor
1890
+ - Shrinkage Control: Shrinkage Control
1891
+ - Other: Other
1892
+
1893
+ """
1894
+
1895
+ AIR_ENTRAINER = "Air Entrainer"
1896
+ WATER_REDUCER = "Water Reducer"
1897
+ RETARDING = "Retarding"
1898
+ ACCELERATING = "Accelerating"
1899
+ SUPERPLASTICIZER = "Superplasticizer"
1900
+ CORROSION_INHIBITOR = "Corrosion Inhibitor"
1901
+ SHRINKAGE_CONTROL = "Shrinkage Control"
1902
+ OTHER = "Other"
1903
+
1904
+
1905
+ class TextilesFabricType(StrEnum):
1906
+ """
1907
+ Textiles fabric type.
1908
+
1909
+ - Leather: Leather
1910
+ - Cotton: Cotton
1911
+ - Wool: Wool
1912
+ - Polyester: Polyester
1913
+ - Acrylic: Acrylic
1914
+ - Nylon: Nylon
1915
+ - HMW Polymer: HMW Polymer
1916
+ - Other Plant Fiber: Other Plant Fiber
1917
+ - Mineral Fiber: Mineral Fiber
1918
+ - Other Synthetic Fiber: Other Synthetic Fiber
1919
+
1920
+ """
1921
+
1922
+ LEATHER = "Leather"
1923
+ COTTON = "Cotton"
1924
+ WOOL = "Wool"
1925
+ POLYESTER = "Polyester"
1926
+ ACRYLIC = "Acrylic"
1927
+ NYLON = "Nylon"
1928
+ HMW_POLYMER = "HMW Polymer"
1929
+ OTHER_PLANT_FIBER = "Other Plant Fiber"
1930
+ MINERAL_FIBER = "Mineral Fiber"
1931
+ OTHER_SYNTHETIC_FIBER = "Other Synthetic Fiber"
1932
+
1933
+
1934
+ class GypsumFacing(StrEnum):
1935
+ """
1936
+ Gypsum facing.
1937
+
1938
+ - Paper: Paper
1939
+ - Glass mat: Glass mat
1940
+
1941
+ """
1942
+
1943
+ PAPER = "Paper"
1944
+ GLASS_MAT = "Glass mat"
1945
+
1946
+
1947
+ class InsulatingMaterial(StrEnum):
1948
+ """
1949
+ Insulating material.
1950
+
1951
+ - Mineral Wool: Mineral Wool
1952
+ - Cellulose: Cellulose
1953
+ - Fiberglass: Fiberglass
1954
+ - XPS: XPS
1955
+ - GPS: GPS
1956
+ - Polyisocyanurate: Polyisocyanurate
1957
+ - Expanded Polyethylene: Expanded Polyethylene
1958
+ - EPS: EPS
1959
+ - Other: Other
1960
+
1961
+ """
1962
+
1963
+ MINERAL_WOOL = "Mineral Wool"
1964
+ CELLULOSE = "Cellulose"
1965
+ FIBERGLASS = "Fiberglass"
1966
+ XPS = "XPS"
1967
+ GPS = "GPS"
1968
+ POLYISOCYANURATE = "Polyisocyanurate"
1969
+ EXPANDED_POLYETHYLENE = "Expanded Polyethylene"
1970
+ EPS = "EPS"
1971
+ OTHER = "Other"
1972
+
1973
+
1974
+ class ThermalSeparation(StrEnum):
1975
+ """
1976
+ Thermal separation.
1977
+
1978
+ - Aluminium: Aluminium
1979
+ - Steel: Steel
1980
+ - Thermally Improved Metal: Thermally Improved Metal
1981
+ - Thermally Broken Metal: Thermally Broken Metal
1982
+ - Nonmetal: Nonmetal
1983
+
1984
+ """
1985
+
1986
+ ALUMINIUM = "Aluminium"
1987
+ STEEL = "Steel"
1988
+ THERMALLY_IMPROVED_METAL = "Thermally Improved Metal"
1989
+ THERMALLY_BROKEN_METAL = "Thermally Broken Metal"
1990
+ NONMETAL = "Nonmetal"
1991
+
1992
+
1993
+ class CementScm(StrEnum):
1994
+ """
1995
+ Cement scm.
1996
+
1997
+ - ggbs: ggbs
1998
+ - flyAsh: flyAsh
1999
+ - natPoz: natPoz
2000
+ - siFume: siFume
2001
+ - gg45: gg45
2002
+ - mk: mk
2003
+ - CaCO3: CaCO3
2004
+ - other: other
2005
+
2006
+ """
2007
+
2008
+ GGBS = "ggbs"
2009
+ FLYASH = "flyAsh"
2010
+ NATPOZ = "natPoz"
2011
+ SIFUME = "siFume"
2012
+ GG45 = "gg45"
2013
+ MK = "mk"
2014
+ CACO3 = "CaCO3"
2015
+ OTHER = "other"
2016
+
2017
+
2018
+ class CementC1157(StrEnum):
2019
+ """
2020
+ CementC1157.
2021
+
2022
+ - GU: GU
2023
+ - HE: HE
2024
+ - MS: MS
2025
+ - HS: HS
2026
+ - MH: MH
2027
+ - LH: LH
2028
+
2029
+ """
2030
+
2031
+ GU = "GU"
2032
+ HE = "HE"
2033
+ MS = "MS"
2034
+ HS = "HS"
2035
+ MH = "MH"
2036
+ LH = "LH"
2037
+
2038
+
2039
+ class AhuAirflowControl(StrEnum):
2040
+ """
2041
+ Ahu airflow control.
2042
+
2043
+ - CAV: CAV
2044
+ - VAV: VAV
2045
+
2046
+ """
2047
+
2048
+ CAV = "CAV"
2049
+ VAV = "VAV"
2050
+
2051
+
2052
+ class CarpetFormFactor(StrEnum):
2053
+ """
2054
+ Carpet form factor.
2055
+
2056
+ - Tiles: Tiles
2057
+ - Broadloom: Broadloom
2058
+
2059
+ """
2060
+
2061
+ TILES = "Tiles"
2062
+ BROADLOOM = "Broadloom"
2063
+
2064
+
2065
+ class CladdingInsulatingMaterial(StrEnum):
2066
+ """
2067
+ Cladding insulating material.
2068
+
2069
+ - No Insulation: No Insulation
2070
+ - Mineral Wool: Mineral Wool
2071
+ - Gypsum: Gypsum
2072
+ - EPS: EPS
2073
+ - XPS: XPS
2074
+ - GPS: GPS
2075
+ - Polyiso: Polyiso
2076
+ - PE: PE
2077
+ - Other: Other
2078
+
2079
+ """
2080
+
2081
+ NO_INSULATION = "No Insulation"
2082
+ MINERAL_WOOL = "Mineral Wool"
2083
+ GYPSUM = "Gypsum"
2084
+ EPS = "EPS"
2085
+ XPS = "XPS"
2086
+ GPS = "GPS"
2087
+ POLYISO = "Polyiso"
2088
+ PE = "PE"
2089
+ OTHER = "Other"
2090
+
2091
+
2092
+ class SidingFormFactor(StrEnum):
2093
+ """
2094
+ Siding form factor.
2095
+
2096
+ - Lap: Lap
2097
+ - Vertical: Vertical
2098
+ - Shake & Shingle: Shake & Shingle
2099
+
2100
+ """
2101
+
2102
+ LAP = "Lap"
2103
+ VERTICAL = "Vertical"
2104
+ SHAKE_SHINGLE = "Shake & Shingle"
2105
+
2106
+
2107
+ class FloorBoxFloorMaterial(StrEnum):
2108
+ """
2109
+ Floor box floor material.
2110
+
2111
+ - Concrete: Concrete
2112
+ - Wood: Wood
2113
+ - Other: Other
2114
+
2115
+ """
2116
+
2117
+ CONCRETE = "Concrete"
2118
+ WOOD = "Wood"
2119
+ OTHER = "Other"
2120
+
2121
+
2122
+ class AciExposureClass(StrEnum):
2123
+ """
2124
+ American Concrete Institute concrete exposure classes.
2125
+
2126
+ * `aci.F0` - Concrete not subjected to freezing-and-thawing cycles
2127
+ * `aci.F1` - Concrete experiences freezing-and-thawing cycles with limited exposure to water
2128
+ * `aci.F2` - Concrete exposed to freezing-and-thawing cycles with frequent exposure to water
2129
+ * `aci.F3` - Concrete exposed to freezing-and-thawing cycles with continual exposure to water
2130
+ and exposure to deicing chemicals
2131
+ * `aci.S0` - Exposed to <150 ppm of SO4 in water and <0.1% SO4 in soil
2132
+ * `aci.S1` - Exposed to <1500 ppm of SO4 in water and <0.2% SO4 in soil
2133
+ * `aci.S2` - Exposed to <10000 ppm of SO4 in water and <2% SO4 in soil
2134
+ * `aci.S3` - Exposed to >10000 ppm of SO4 in water or >2% SO4 in soil
2135
+
2136
+ * `aci.C1` - Concrete in contact with moisture, but the external source of chloride does not reach it.
2137
+ * `aci.C2` - Concrete subjected to moisture and an external source of chlorides such as deicing chemicals,
2138
+ salt, brackish water, seawater, or spray from these sources.
2139
+ * `aci.W0` - Concrete dry in service
2140
+ * `aci.W1` - Concrete in contact with water, no requirement for low permeability
2141
+ * `aci.W2` - Concrete in contact with water where low permeability is required
2142
+ """
2143
+
2144
+ F0 = "aci.F0"
2145
+ F1 = "aci.F1"
2146
+ F2 = "aci.F2"
2147
+ F3 = "aci.F3"
2148
+ S0 = "aci.S0"
2149
+ S1 = "aci.S1"
2150
+ S2 = "aci.S2"
2151
+ S3 = "aci.S3"
2152
+ C1 = "aci.C1"
2153
+ C2 = "aci.C2"
2154
+ W0 = "aci.W0"
2155
+ W1 = "aci.W1"
2156
+ W2 = "aci.W2"
2157
+
2158
+
2159
+ class CsaExposureClass(StrEnum):
2160
+ """
2161
+ Canadian Standard Association concrete exposure classes.
2162
+
2163
+ * `csa.C-XL` - Structurally reinforced concrete exposed to chlorides or other severe environment with or without
2164
+ freezing and thawing conditions, with higher durability performance expectations than the C-1, A-1
2165
+ or S-1 classes.
2166
+
2167
+ * `csa.C-1` - Structurally reinforced concrete exposed to chlorides with or without freezing and thawing conditions.
2168
+ Examples: bridge decks, parking decks and ramps, portions of marine structures located within the tidal
2169
+ and splash zones, concrete exposed to seawater spray, and salt water pools.
2170
+ * `csa.C-2` - Non-structurally reinforced (i.e. plain) concrete exposed to chlorides and freezing and thawing.
2171
+ Examples: garage floors, porches, steps, pavements, sidewalks curbs and gutters.
2172
+ * `csa.C-3` - Continuously submerged concrete exposed to chlorides but not to freezing and thawing.
2173
+ Example: underwater portions of marine structures.
2174
+ * `csa.C-4` - Non-structurally reinforced concrete exposed to chlorides but not to freezing and thawing.
2175
+ Examples: underground parking slabs on grade.
2176
+
2177
+ * `csa.F-1` - Concrete exposed to freezing and thawing in a saturated condition but not to chlorides.
2178
+ Examples: pool decks, patios, tennis courts, freshwater pools and fresh water control structures.
2179
+ * `csa.F-2` - Concrete in an unsaturated condition exposed to freezing and thawing but not to chlorides.
2180
+ Examples: exterior walls and columns.
2181
+
2182
+ * `csa.N` - Concrete not exposed to chlorides nor to freezing and thawing.
2183
+ Examples: footings and interior slabs, walls and columns.
2184
+
2185
+ * `csa.A-1` - Structurally reinforced concrete exposed to severe manure and/or silage gases, with or without
2186
+ freeze-thaw exposure. Concrete exposed to the vapour above municipal sewage or industrial effluent,
2187
+ where hydrogen sulphide gas may be generated.
2188
+ Examples: reinforced beams, slabs, and columns over manure pits and silos, canals, and pig slats;
2189
+ and access holes, enclosed chambers and pipes that are partially filled with effluents.
2190
+ * `csa.A-2` - Structurally reinforced concrete exposed to moderate to severe manure and/or silage gases and liquids,
2191
+ with or without freeze-thaw exposure.
2192
+ Examples: reinforced walls in exterior manure tanks, silos and feed bunkers, and exterior slabs.
2193
+ * `csa.A-3` - Structurally reinforced concrete exposed to moderate to severe manure and/or silage gases and liquids,
2194
+ with or without freeze-thaw exposure in a continuously submerged condition. Concrete continuously
2195
+ submerged in municipal or industrial effluents.
2196
+ Examples: interior gutter walls, beams, slabs and columns; sewage pipes that are continuously full
2197
+ (e.g. force mains); and submerged portions of sewage treatment structures.
2198
+ * `csa.A-4` - Non-structurally reinforced concrete exposed to moderate manure and/or silage gases and liquids, without
2199
+ freeze-thaw exposure.
2200
+ Examples: interior slabs on grade.
2201
+
2202
+ * `csa.S-1` - Concrete subjected to very severe sulphate exposures.
2203
+ Exposed to >10000 ppm of SO4 in water or >2% SO4 in soil
2204
+ * `csa.S-2` - Concrete subjected to severe sulphate exposure.
2205
+ Exposed to <10000 ppm of SO4 in water and <2% SO4 in soil
2206
+ * `csa.S-3` - Concrete subjected to moderate sulphate exposure.
2207
+ Exposed to <1500 ppm of SO4 in water and <0.2% SO4 in soil
2208
+ """
2209
+
2210
+ C_XL = "csa.C-XL"
2211
+ C_1 = "csa.C-1"
2212
+ C_2 = "csa.C-2"
2213
+ C_3 = "csa.C-3"
2214
+ C_4 = "csa.C-4"
2215
+ F_1 = "csa.F-1"
2216
+ F2 = "csa.F-2"
2217
+ N = "csa.N"
2218
+ S_1 = "csa.S-1"
2219
+ S_2 = "csa.S-2"
2220
+ S_3 = "csa.S-3"
2221
+ A_1 = "csa.A-1"
2222
+ A_2 = "csa.A-2"
2223
+ A_3 = "csa.A-3"
2224
+ A_4 = "csa.A-4"
2225
+
2226
+
2227
+ class EnExposureClass(StrEnum):
2228
+ """
2229
+ EN 206 Class (Europe).
2230
+
2231
+ European Standard concrete exposure classes.
2232
+
2233
+ * `en206.X0` - No risk of corrosion or attack.
2234
+
2235
+ Corrosion induced by carbonation.
2236
+
2237
+ * `en206.XC1` - Dry or permanently wet.
2238
+ * `en206.XC2` - Wet, rarely dry.
2239
+ * `en206.XC3` - Moderate humidity.
2240
+ * `en206.XC4` - Cyclic wet and dry.
2241
+
2242
+ Corrosion induced by chlorides from sea water.
2243
+
2244
+ * `en206.XS1` - Exposed to airborne salt but not in direct contact with sea water.
2245
+ * `en206.XS2` - Permanently submerged.
2246
+ * `en206.XS3` - Tidal, splash and spray zones.
2247
+
2248
+ Corrosion induced by chlorides other than from sea water.
2249
+
2250
+ * `en206.XD1` - Moderate humidity.
2251
+ * `en206.XD2` - Wet, rarely dry.
2252
+ * `en206.XD3` - Cyclic wet and dry.
2253
+
2254
+ Freeze/thaw attack with or without de-icing agents.
2255
+
2256
+ * `en206.XF1` - Moderate water saturation, without deicing agent.
2257
+ * `en206.XF2` - Moderate water saturation, with deicing agent.
2258
+ * `en206.XF3` - High water saturation, without de-icing agent.
2259
+ * `en206.XF4` - High water saturation, with de-icing agent or sea water.
2260
+
2261
+ Chemical attack.
2262
+
2263
+ * `en206.XA1` - Slightly aggressive chemical environment.
2264
+ * `en206.XA2` - Moderately aggressive chemical environment.
2265
+ * `en206.XA3` - Highly aggressive chemical environment.
2266
+
2267
+ """
2268
+
2269
+ en206_X0 = "en206.X0"
2270
+ en206_XC1 = "en206.XC1"
2271
+ en206_XC2 = "en206.XC2"
2272
+ en206_XC3 = "en206.XC3"
2273
+ en206_XC4 = "en206.XC4"
2274
+ en206_XS1 = "en206.XS1"
2275
+ en206_XS2 = "en206.XS2"
2276
+ en206_XS3 = "en206.XS3"
2277
+ en206_XD1 = "en206.XD1"
2278
+ en206_XD2 = "en206.XD2"
2279
+ en206_XD3 = "en206.XD3"
2280
+ en206_XF1 = "en206.XF1"
2281
+ en206_XF2 = "en206.XF2"
2282
+ en206_XF3 = "en206.XF3"
2283
+ en206_XF4 = "en206.XF4"
2284
+ en206_XA1 = "en206.XA1"
2285
+ en206_XA2 = "en206.XA2"
2286
+ en206_XA3 = "en206.XA3"
2287
+
2288
+
2289
+ class AggregateWeightClassification(StrEnum):
2290
+ """
2291
+ Aggregate weight classification enum.
2292
+
2293
+ - Lightweight: Also called "low-density aggregate". Aggregate with bulk density less than 1120 kg/m3 such as:
2294
+ pumice, scoria, volcanic cinders, tuff, and diatomite; expanded or sintered clay, shale, slate, diatomaceous
2295
+ shale, perlite, vermiculite, or slag; and end products of coal or coke combustion.
2296
+ - Normal-weight: Aggregate that is between the densities of lightweight and heavy-weight
2297
+ - Heavy-weight: Also called "high-density aggregate". Aggregate with bulk density greater than 1920 kg/m3 such as:
2298
+ barite, magnetite, limonite, ilmenite, iron, or steel.
2299
+ """
2300
+
2301
+ LIGHTWEIGHT = "Lightweight"
2302
+ NORMAL_WEIGHT = "Normal-weight"
2303
+ HEAVY_WEIGHT = "Heavy-weight"
2304
+
2305
+
2306
+ class AggregateGradation(StrEnum):
2307
+ """
2308
+ Aggregate gradation enum.
2309
+
2310
+ - Dense: Grading in which the void percentage between aggregate particles is minimized.
2311
+ - Gap: Grading in which one or more intermediate size fractions are omitted.
2312
+ - Open: Grading with a large amount of air voids, which allows water drainage.
2313
+ """
2314
+
2315
+ DENSE = "Dense"
2316
+ GAP = "Gap"
2317
+ OPEN = "Open"
2318
+
2319
+
2320
+ class CementBoardThickness(StrEnum):
2321
+ """Options for cement board thickness."""
2322
+
2323
+ INCH_1_4 = '1/4"'
2324
+ INCH_5_16 = '5/16"'
2325
+ INCH_11_32 = '11/32"'
2326
+ INCH_3_8 = '3/8"'
2327
+ INCH_1_2 = '1/2"'
2328
+ INCH_5_8 = '5/8"'
2329
+ MM_6_5 = "6.5 mm"
2330
+ MM_8_0 = "8.0 mm"
2331
+ MM_9_0 = "9.0 mm"
2332
+ MM_9_5 = "9.5 mm"
2333
+ MM_12_5 = "12.5 mm"
2334
+ MM_13 = "13 mm"
2335
+ MM_15 = "15 mm"
2336
+ MM_18 = "18 mm"
2337
+
2338
+
2339
+ class GypsumThickness(StrEnum):
2340
+ """Options for gypsum thickness."""
2341
+
2342
+ INCH_1_4 = '1/4"'
2343
+ INCH_5_16 = '5/16"'
2344
+ INCH_3_8 = '3/8"'
2345
+ INCH_1_2 = '1/2"'
2346
+ INCH_5_8 = '5/8"'
2347
+ INCH_3_4 = '3/4"'
2348
+ INCH_1 = '1"'
2349
+ MM_6 = "6 mm"
2350
+ MM_6_5 = "6.5 mm"
2351
+ MM_9 = "9 mm"
2352
+ MM_9_5 = "9.5 mm"
2353
+ MM_10 = "10 mm"
2354
+ MM_12_5 = "12.5 mm"
2355
+ MM_13 = "13 mm"
2356
+ MM_15 = "15 mm"
2357
+ MM_15_5 = "15.5 mm"
2358
+ MM_16 = "16 mm"
2359
+ MM_18 = "18 mm"
2360
+ MM_19 = "19 mm"
2361
+
2362
+
2363
+ class FlatGlassPanesThickness(StrEnum):
2364
+ """Options for flat glass panes thickness."""
2365
+
2366
+ MM_2 = "2 mm"
2367
+ MM_3 = "3 mm"
2368
+ MM_4 = "4 mm"
2369
+ MM_5 = "5 mm"
2370
+ MM_6 = "6 mm"
2371
+ MM_8 = "8 mm"
2372
+ MM_10 = "10 mm"
2373
+ MM_12 = "12 mm"
2374
+ MM_16 = "16 mm"
2375
+ MM_19 = "19 mm"
2376
+
2377
+
2378
+ class NAFSPerformanceGrade(StrEnum):
2379
+ """NAFS Performance Grade enum."""
2380
+
2381
+ GRADE_15_PSF = "15 psf"
2382
+ GRADE_20_PSF = "20 psf"
2383
+ GRADE_25_PSF = "25 psf"
2384
+ GRADE_30_PSF = "30 psf"
2385
+ GRADE_35_PSF = "35 psf"
2386
+ GRADE_40_PSF = "40 psf"
2387
+ GRADE_45_PSF = "45 psf"
2388
+ GRADE_50_PSF = "50 psf"
2389
+ GRADE_55_PSF = "55 psf"
2390
+ GRADE_60_PSF = "60 psf"
2391
+ GRADE_65_PSF = "65 psf"
2392
+ GRADE_70_PSF = "70 psf"
2393
+ GRADE_75_PSF = "75 psf"
2394
+ GRADE_80_PSF = "80 psf"
2395
+ GRADE_85_PSF = "85 psf"
2396
+ GRADE_90_PSF = "90 psf"
2397
+ GRADE_95_PSF = "95 psf"
2398
+ GRADE_100_PSF = "100 psf"
2399
+ GRADE_105_PSF = "105 psf"
2400
+ GRADE_110_PSF = "110 psf"
2401
+ GRADE_115_PSF = "115 psf"
2402
+ GRADE_120_PSF = "120 psf"
2403
+ GRADE_125_PSF = "125 psf"
2404
+ GRADE_130_PSF = "130 psf"
2405
+ GRADE_135_PSF = "135 psf"
2406
+ GRADE_140_PSF = "140 psf"
2407
+ GRADE_145_PSF = "145 psf"
2408
+ GRADE_150_PSF = "150 psf"
2409
+ GRADE_155_PSF = "155 psf"
2410
+ GRADE_160_PSF = "160 psf"
2411
+ GRADE_165_PSF = "165 psf"
2412
+ GRADE_170_PSF = "170 psf"
2413
+ GRADE_175_PSF = "175 psf"
2414
+ GRADE_180_PSF = "180 psf"
2415
+ GRADE_185_PSF = "185 psf"
2416
+ GRADE_190_PSF = "190 psf"
2417
+ GRADE_195_PSF = "195 psf"
2418
+ GRADE_200_PSF = "200 psf"
2419
+ GRADE_205_PSF = "205 psf"
2420
+ GRADE_210_PSF = "210 psf"