openepd 5.0.0__py3-none-any.whl → 5.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 (61) hide show
  1. openepd/__version__.py +1 -1
  2. openepd/model/common.py +39 -0
  3. openepd/model/declaration.py +7 -2
  4. openepd/model/geography.py +1 -1
  5. openepd/model/lcia.py +6 -3
  6. openepd/model/org.py +0 -1
  7. openepd/model/pcr.py +2 -2
  8. openepd/model/specs/README.md +34 -8
  9. openepd/model/specs/asphalt.py +2 -2
  10. openepd/model/specs/base.py +13 -0
  11. openepd/model/specs/generated/__init__.py +80 -0
  12. openepd/model/specs/generated/cladding.py +4 -4
  13. openepd/model/specs/generated/concrete.py +8 -7
  14. openepd/model/specs/generated/electrical.py +2 -2
  15. openepd/model/specs/generated/finishes.py +10 -6
  16. openepd/model/specs/generated/masonry.py +6 -2
  17. openepd/model/specs/generated/network_infrastructure.py +7 -2
  18. openepd/model/specs/generated/openings.py +10 -6
  19. openepd/model/specs/generated/sheathing.py +8 -4
  20. openepd/model/specs/generated/steel.py +10 -5
  21. openepd/model/specs/range/__init__.py +101 -0
  22. openepd/model/specs/range/accessories.py +97 -0
  23. openepd/model/specs/range/aggregates.py +57 -0
  24. openepd/model/specs/range/aluminium.py +92 -0
  25. openepd/model/specs/range/asphalt.py +61 -0
  26. openepd/model/specs/range/bulk_materials.py +31 -0
  27. openepd/model/specs/range/cast_decks_and_underlayment.py +34 -0
  28. openepd/model/specs/range/cladding.py +275 -0
  29. openepd/model/specs/range/cmu.py +44 -0
  30. openepd/model/specs/range/concrete.py +179 -0
  31. openepd/model/specs/range/conveying_equipment.py +86 -0
  32. openepd/model/specs/range/electrical.py +422 -0
  33. openepd/model/specs/range/electrical_transmission_and_distribution_equipment.py +96 -0
  34. openepd/model/specs/range/electricity.py +31 -0
  35. openepd/model/specs/range/finishes.py +585 -0
  36. openepd/model/specs/range/fire_and_smoke_protection.py +108 -0
  37. openepd/model/specs/range/furnishings.py +137 -0
  38. openepd/model/specs/range/grouting.py +34 -0
  39. openepd/model/specs/range/manufacturing_inputs.py +190 -0
  40. openepd/model/specs/range/masonry.py +87 -0
  41. openepd/model/specs/range/material_handling.py +50 -0
  42. openepd/model/specs/range/mechanical.py +307 -0
  43. openepd/model/specs/range/mechanical_insulation.py +42 -0
  44. openepd/model/specs/range/network_infrastructure.py +208 -0
  45. openepd/model/specs/range/openings.py +512 -0
  46. openepd/model/specs/range/other_electrical_equipment.py +31 -0
  47. openepd/model/specs/range/other_materials.py +194 -0
  48. openepd/model/specs/range/plumbing.py +200 -0
  49. openepd/model/specs/range/precast_concrete.py +115 -0
  50. openepd/model/specs/range/sheathing.py +86 -0
  51. openepd/model/specs/range/steel.py +332 -0
  52. openepd/model/specs/range/thermal_moisture_protection.py +336 -0
  53. openepd/model/specs/range/utility_piping.py +75 -0
  54. openepd/model/specs/range/wood.py +228 -0
  55. openepd/model/specs/range/wood_joists.py +44 -0
  56. openepd/model/validation/numbers.py +11 -5
  57. openepd/model/validation/quantity.py +440 -52
  58. {openepd-5.0.0.dist-info → openepd-5.1.1.dist-info}/METADATA +6 -1
  59. {openepd-5.0.0.dist-info → openepd-5.1.1.dist-info}/RECORD +61 -26
  60. {openepd-5.0.0.dist-info → openepd-5.1.1.dist-info}/LICENSE +0 -0
  61. {openepd-5.0.0.dist-info → openepd-5.1.1.dist-info}/WHEEL +0 -0
@@ -0,0 +1,101 @@
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
+ __all__ = ("SpecsRange",)
17
+
18
+ # NB! This is a generated code. Do not edit it manually. Please see src/openepd/model/specs/README.md
19
+
20
+
21
+ from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
22
+
23
+ from .accessories import AccessoriesRangeV1
24
+ from .aggregates import AggregatesRangeV1
25
+ from .aluminium import AluminiumRangeV1
26
+ from .asphalt import AsphaltRangeV1
27
+ from .bulk_materials import BulkMaterialsRangeV1
28
+ from .cast_decks_and_underlayment import CastDecksAndUnderlaymentRangeV1
29
+ from .cladding import CladdingRangeV1
30
+ from .cmu import CMURangeV1
31
+ from .concrete import ConcreteRangeV1
32
+ from .conveying_equipment import ConveyingEquipmentRangeV1
33
+ from .electrical import ElectricalRangeV1
34
+ from .electrical_transmission_and_distribution_equipment import ElectricalTransmissionAndDistributionEquipmentRangeV1
35
+ from .electricity import ElectricityRangeV1
36
+ from .finishes import FinishesRangeV1
37
+ from .fire_and_smoke_protection import FireAndSmokeProtectionRangeV1
38
+ from .furnishings import FurnishingsRangeV1
39
+ from .grouting import GroutingRangeV1
40
+ from .manufacturing_inputs import ManufacturingInputsRangeV1
41
+ from .masonry import MasonryRangeV1
42
+ from .material_handling import MaterialHandlingRangeV1
43
+ from .mechanical import MechanicalRangeV1
44
+ from .mechanical_insulation import MechanicalInsulationRangeV1
45
+ from .network_infrastructure import NetworkInfrastructureRangeV1
46
+ from .openings import OpeningsRangeV1
47
+ from .other_electrical_equipment import OtherElectricalEquipmentRangeV1
48
+ from .other_materials import OtherMaterialsRangeV1
49
+ from .plumbing import PlumbingRangeV1
50
+ from .precast_concrete import PrecastConcreteRangeV1
51
+ from .sheathing import SheathingRangeV1
52
+ from .steel import SteelRangeV1
53
+ from .thermal_moisture_protection import ThermalMoistureProtectionRangeV1
54
+ from .utility_piping import UtilityPipingRangeV1
55
+ from .wood import WoodRangeV1
56
+ from .wood_joists import WoodJoistsRangeV1
57
+
58
+
59
+ class SpecsRange(BaseOpenEpdHierarchicalSpec):
60
+ """
61
+ Material specific specs.
62
+
63
+ Range version.
64
+ """
65
+
66
+ _EXT_VERSION = "1.0"
67
+
68
+ CMU: CMURangeV1 | None = None
69
+ Masonry: MasonryRangeV1 | None = None
70
+ Steel: SteelRangeV1 | None = None
71
+ NetworkInfrastructure: NetworkInfrastructureRangeV1 | None = None
72
+ Finishes: FinishesRangeV1 | None = None
73
+ ManufacturingInputs: ManufacturingInputsRangeV1 | None = None
74
+ Accessories: AccessoriesRangeV1 | None = None
75
+ ElectricalTransmissionAndDistributionEquipment: ElectricalTransmissionAndDistributionEquipmentRangeV1 | None = None
76
+ Aggregates: AggregatesRangeV1 | None = None
77
+ ThermalMoistureProtection: ThermalMoistureProtectionRangeV1 | None = None
78
+ Mechanical: MechanicalRangeV1 | None = None
79
+ Aluminium: AluminiumRangeV1 | None = None
80
+ Cladding: CladdingRangeV1 | None = None
81
+ FireAndSmokeProtection: FireAndSmokeProtectionRangeV1 | None = None
82
+ PrecastConcrete: PrecastConcreteRangeV1 | None = None
83
+ Asphalt: AsphaltRangeV1 | None = None
84
+ OtherMaterials: OtherMaterialsRangeV1 | None = None
85
+ Plumbing: PlumbingRangeV1 | None = None
86
+ Electrical: ElectricalRangeV1 | None = None
87
+ UtilityPiping: UtilityPipingRangeV1 | None = None
88
+ BulkMaterials: BulkMaterialsRangeV1 | None = None
89
+ CastDecksAndUnderlayment: CastDecksAndUnderlaymentRangeV1 | None = None
90
+ Concrete: ConcreteRangeV1 | None = None
91
+ Sheathing: SheathingRangeV1 | None = None
92
+ Furnishings: FurnishingsRangeV1 | None = None
93
+ Wood: WoodRangeV1 | None = None
94
+ ConveyingEquipment: ConveyingEquipmentRangeV1 | None = None
95
+ MaterialHandling: MaterialHandlingRangeV1 | None = None
96
+ Openings: OpeningsRangeV1 | None = None
97
+ Electricity: ElectricityRangeV1 | None = None
98
+ Grouting: GroutingRangeV1 | None = None
99
+ MechanicalInsulation: MechanicalInsulationRangeV1 | None = None
100
+ OtherElectricalEquipment: OtherElectricalEquipmentRangeV1 | None = None
101
+ WoodJoists: WoodJoistsRangeV1 | None = None
@@ -0,0 +1,97 @@
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
+ __all__ = (
17
+ "BlanketFacingRangeV1",
18
+ "DoorsHardwareRangeV1",
19
+ "FlooringAccessoriesRangeV1",
20
+ "MortarRangeV1",
21
+ "TileGroutRangeV1",
22
+ "AccessoriesRangeV1",
23
+ )
24
+
25
+ # NB! This is a generated code. Do not edit it manually. Please see src/openepd/model/specs/README.md
26
+
27
+
28
+ from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
29
+
30
+
31
+ class BlanketFacingRangeV1(BaseOpenEpdHierarchicalSpec):
32
+ """
33
+ Facing materials for insulation products.
34
+
35
+ Such as kraft, white vinyl sheeting, or aluminum foil, which can serve as air barrier, vapor barrier, radiant
36
+ barrier, or flame resistive layer.
37
+
38
+ Range version.
39
+ """
40
+
41
+ _EXT_VERSION = "1.0"
42
+
43
+
44
+ class DoorsHardwareRangeV1(BaseOpenEpdHierarchicalSpec):
45
+ """
46
+ Door hardware, including automatic and security door hardware.
47
+
48
+ Range version.
49
+ """
50
+
51
+ _EXT_VERSION = "1.0"
52
+
53
+
54
+ class FlooringAccessoriesRangeV1(BaseOpenEpdHierarchicalSpec):
55
+ """
56
+ Products used in flooring, other than the actual flooring product itself.
57
+
58
+ Range version.
59
+ """
60
+
61
+ _EXT_VERSION = "1.0"
62
+
63
+
64
+ class MortarRangeV1(BaseOpenEpdHierarchicalSpec):
65
+ """
66
+ Cementitious paste used to bind building blocks such as stones, bricks, and concrete masonry.
67
+
68
+ Range version.
69
+ """
70
+
71
+ _EXT_VERSION = "1.0"
72
+
73
+
74
+ class TileGroutRangeV1(BaseOpenEpdHierarchicalSpec):
75
+ """
76
+ Water-cement-sand mixture for laying ceramic tile.
77
+
78
+ Range version.
79
+ """
80
+
81
+ _EXT_VERSION = "1.0"
82
+
83
+
84
+ class AccessoriesRangeV1(BaseOpenEpdHierarchicalSpec):
85
+ """
86
+ Materials that are used alongside other materials.
87
+
88
+ Range version.
89
+ """
90
+
91
+ _EXT_VERSION = "1.0"
92
+
93
+ BlanketFacing: BlanketFacingRangeV1 | None = None
94
+ DoorsHardware: DoorsHardwareRangeV1 | None = None
95
+ FlooringAccessories: FlooringAccessoriesRangeV1 | None = None
96
+ Mortar: MortarRangeV1 | None = None
97
+ TileGrout: TileGroutRangeV1 | None = None
@@ -0,0 +1,57 @@
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
+ __all__ = ("AggregatesRangeV1",)
17
+
18
+ # NB! This is a generated code. Do not edit it manually. Please see src/openepd/model/specs/README.md
19
+
20
+
21
+ from openepd.compat.pydantic import pyd
22
+ from openepd.model.common import RangeRatioFloat
23
+ from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
24
+ from openepd.model.specs.generated.aggregates import AggregateApplication
25
+ from openepd.model.specs.generated.enums import AggregateGradation, AggregateWeightClassification
26
+ from openepd.model.validation.quantity import AmountRangeLengthMm
27
+
28
+
29
+ class AggregatesRangeV1(BaseOpenEpdHierarchicalSpec):
30
+ """
31
+ Construction Aggregates.
32
+
33
+ Includes sand, gravel, crushed stone, etc. for use as bases, ballasts, or as a component in concrete or asphalt.
34
+
35
+ Range version.
36
+ """
37
+
38
+ _EXT_VERSION = "1.0"
39
+
40
+ recycled_content: RangeRatioFloat | None = pyd.Field(
41
+ default=None, description="Percent of total mass that is recycled aggregate"
42
+ )
43
+ nominal_max_size: AmountRangeLengthMm | None = pyd.Field(
44
+ default=None,
45
+ description="Nominal maximum aggregate size is defined as one sieve size smaller than the maximum aggregate size. The maximum aggregate size is defined as the smallest sieve size that requires 100% passing.",
46
+ )
47
+ weight_classification: list[AggregateWeightClassification] | None = pyd.Field(default=None)
48
+ gradation: list[AggregateGradation] | None = pyd.Field(default=None)
49
+ manufactured: bool | None = pyd.Field(
50
+ default=None,
51
+ description="Aggregate produced via expansion or sintering at high temperatures of the following materials: clay, shale, slate, perlite, vermiculite, or slag. Typically used to produce lightweight aggregate",
52
+ )
53
+ slag: bool | None = pyd.Field(
54
+ default=None,
55
+ description="Pelletized, foamed, and granulated blast furnace slag can be used as construction aggregate.",
56
+ )
57
+ application: AggregateApplication | None = None
@@ -0,0 +1,92 @@
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
+ __all__ = (
17
+ "AluminiumBilletsRangeV1",
18
+ "AluminiumExtrusionsRangeV1",
19
+ "AluminiumSheetGoodsRangeV1",
20
+ "AluminiumSuspensionAssemblyRangeV1",
21
+ "AluminiumRangeV1",
22
+ )
23
+
24
+ # NB! This is a generated code. Do not edit it manually. Please see src/openepd/model/specs/README.md
25
+
26
+
27
+ from openepd.compat.pydantic import pyd
28
+ from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
29
+ from openepd.model.specs.generated.enums import AluminiumAlloy
30
+
31
+
32
+ class AluminiumBilletsRangeV1(BaseOpenEpdHierarchicalSpec):
33
+ """
34
+ Cast Aluminium ingots or billets for use in manufacturing more finished products.
35
+
36
+ Range version.
37
+ """
38
+
39
+ _EXT_VERSION = "1.0"
40
+
41
+
42
+ class AluminiumExtrusionsRangeV1(BaseOpenEpdHierarchicalSpec):
43
+ """
44
+ Extruded aluminum products used in construction.
45
+
46
+ Includes range of finish options including mill finish, painted, and anodized.
47
+
48
+
49
+ Range version.
50
+ """
51
+
52
+ _EXT_VERSION = "1.0"
53
+
54
+ thermally_improved: bool | None = pyd.Field(default=None, description="")
55
+
56
+
57
+ class AluminiumSheetGoodsRangeV1(BaseOpenEpdHierarchicalSpec):
58
+ """
59
+ Rolled and/or Stamped Aluminium coil or sheets, often used in flashing, trim, panels, and deck.
60
+
61
+ Range version.
62
+ """
63
+
64
+ _EXT_VERSION = "1.0"
65
+
66
+
67
+ class AluminiumSuspensionAssemblyRangeV1(BaseOpenEpdHierarchicalSpec):
68
+ """
69
+ Aluminum suspension assemblies for acoustical ceiling systems.
70
+
71
+ Range version.
72
+ """
73
+
74
+ _EXT_VERSION = "1.0"
75
+
76
+
77
+ class AluminiumRangeV1(BaseOpenEpdHierarchicalSpec):
78
+ """
79
+ Broad category for construction materials made primarily from Aluminium and its alloys.
80
+
81
+ Range version.
82
+ """
83
+
84
+ _EXT_VERSION = "1.0"
85
+
86
+ alloy: list[AluminiumAlloy] | None = pyd.Field(default=None, description="")
87
+ anodized: bool | None = pyd.Field(default=None, description="")
88
+ painted: bool | None = pyd.Field(default=None, description="")
89
+ AluminiumBillets: AluminiumBilletsRangeV1 | None = None
90
+ AluminiumExtrusions: AluminiumExtrusionsRangeV1 | None = None
91
+ AluminiumSheetGoods: AluminiumSheetGoodsRangeV1 | None = None
92
+ AluminiumSuspensionAssembly: AluminiumSuspensionAssemblyRangeV1 | None = None
@@ -0,0 +1,61 @@
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
+ __all__ = ("AsphaltRangeV1",)
17
+
18
+ # NB! This is a generated code. Do not edit it manually. Please see src/openepd/model/specs/README.md
19
+
20
+
21
+ from openepd.compat.pydantic import pyd
22
+ from openepd.model.common import RangeRatioFloat
23
+ from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
24
+ from openepd.model.specs.generated.enums import AsphaltGradation, AsphaltMixType
25
+ from openepd.model.validation.quantity import AmountRangeLengthMm, AmountRangeTemperatureC
26
+
27
+
28
+ class AsphaltRangeV1(BaseOpenEpdHierarchicalSpec):
29
+ """
30
+ General category for asphalt mixtures.
31
+
32
+ Range version.
33
+ """
34
+
35
+ _EXT_VERSION = "1.0"
36
+
37
+ aggregate_size_max: AmountRangeLengthMm | None = pyd.Field(default=None, description="Max aggregate size")
38
+ rap: RangeRatioFloat | None = pyd.Field(
39
+ default=None, description="Percent of mixture that has been replaced by recycled asphalt pavement (RAP)."
40
+ )
41
+ ras: RangeRatioFloat | None = pyd.Field(
42
+ default=None, description="Percent of mixture that has been replaced by recycled asphalt shingles (RAS)."
43
+ )
44
+ ground_tire_rubber: RangeRatioFloat | None = pyd.Field(
45
+ default=None, description="Percent of mixture that has been replaced by ground tire rubber (GTR)."
46
+ )
47
+ max_temperature: AmountRangeTemperatureC | None = pyd.Field(
48
+ default=None,
49
+ description="The upper threshold temperature to which an asphalt binder can be heated preventing the asphalt mixture from rutting",
50
+ )
51
+ min_temperature: AmountRangeTemperatureC | None = pyd.Field(
52
+ default=None,
53
+ description="The lower threshold temperature for an asphalt binder to prevent thermal cracking of the asphalt mixture.",
54
+ )
55
+ mix_type: list[AsphaltMixType] | None = pyd.Field(default=None, description="Asphalt mix type")
56
+ gradation: list[AsphaltGradation] | None = pyd.Field(default=None, description="Asphalt gradation")
57
+ sbr: bool | None = pyd.Field(default=None, description="Styrene-butadiene rubber (SBR)")
58
+ sbs: bool | None = pyd.Field(default=None, description="Styrene-butadiene-styrene (SBS)")
59
+ ppa: bool | None = pyd.Field(default=None, description="Polyphosphoric acid (PPA)")
60
+ gtr: bool | None = pyd.Field(default=None, description="Ground tire rubber (GTR)")
61
+ pmb: bool | None = pyd.Field(default=None, description="Polymer modified bitumen (PMB)")
@@ -0,0 +1,31 @@
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
+ __all__ = ("BulkMaterialsRangeV1",)
17
+
18
+ # NB! This is a generated code. Do not edit it manually. Please see src/openepd/model/specs/README.md
19
+
20
+
21
+ from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
22
+
23
+
24
+ class BulkMaterialsRangeV1(BaseOpenEpdHierarchicalSpec):
25
+ """
26
+ A generic category for materials whose declared unit is mass and which are not in another category.
27
+
28
+ Range version.
29
+ """
30
+
31
+ _EXT_VERSION = "1.0"
@@ -0,0 +1,34 @@
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
+ __all__ = ("CastDecksAndUnderlaymentRangeV1",)
17
+
18
+ # NB! This is a generated code. Do not edit it manually. Please see src/openepd/model/specs/README.md
19
+
20
+
21
+ from openepd.model.specs.base import BaseOpenEpdHierarchicalSpec
22
+
23
+
24
+ class CastDecksAndUnderlaymentRangeV1(BaseOpenEpdHierarchicalSpec):
25
+ """
26
+ Cast roof deck substrate systems.
27
+
28
+ Typically made of gyspum concrete or cementitious wood fiber, that provide structural support to
29
+ roofing materials.
30
+
31
+ Range version.
32
+ """
33
+
34
+ _EXT_VERSION = "1.0"