@ifc-lite/data 1.15.1 → 1.17.0
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.
- package/README.md +58 -28
- package/dist/entity-table.d.ts +53 -0
- package/dist/entity-table.d.ts.map +1 -1
- package/dist/entity-table.js +147 -93
- package/dist/entity-table.js.map +1 -1
- package/dist/ifc-schema/generated/attributes.d.ts +10 -0
- package/dist/ifc-schema/generated/attributes.d.ts.map +1 -0
- package/dist/ifc-schema/generated/attributes.js +2775 -0
- package/dist/ifc-schema/generated/attributes.js.map +1 -0
- package/dist/ifc-schema/generated/data-types.d.ts +8 -0
- package/dist/ifc-schema/generated/data-types.d.ts.map +1 -0
- package/dist/ifc-schema/generated/data-types.js +396 -0
- package/dist/ifc-schema/generated/data-types.js.map +1 -0
- package/dist/ifc-schema/generated/entities-ifc2x3.d.ts +8 -0
- package/dist/ifc-schema/generated/entities-ifc2x3.d.ts.map +1 -0
- package/dist/ifc-schema/generated/entities-ifc2x3.js +777 -0
- package/dist/ifc-schema/generated/entities-ifc2x3.js.map +1 -0
- package/dist/ifc-schema/generated/entities-ifc4.d.ts +8 -0
- package/dist/ifc-schema/generated/entities-ifc4.d.ts.map +1 -0
- package/dist/ifc-schema/generated/entities-ifc4.js +938 -0
- package/dist/ifc-schema/generated/entities-ifc4.js.map +1 -0
- package/dist/ifc-schema/generated/entities-ifc4x3.d.ts +8 -0
- package/dist/ifc-schema/generated/entities-ifc4x3.d.ts.map +1 -0
- package/dist/ifc-schema/generated/entities-ifc4x3.js +1014 -0
- package/dist/ifc-schema/generated/entities-ifc4x3.js.map +1 -0
- package/dist/ifc-schema/generated/partof-relations.d.ts +10 -0
- package/dist/ifc-schema/generated/partof-relations.d.ts.map +1 -0
- package/dist/ifc-schema/generated/partof-relations.js +28 -0
- package/dist/ifc-schema/generated/partof-relations.js.map +1 -0
- package/dist/ifc-schema/generated/psets-ifc2x3.d.ts +8 -0
- package/dist/ifc-schema/generated/psets-ifc2x3.d.ts.map +1 -0
- package/dist/ifc-schema/generated/psets-ifc2x3.js +3416 -0
- package/dist/ifc-schema/generated/psets-ifc2x3.js.map +1 -0
- package/dist/ifc-schema/generated/psets-ifc4.d.ts +8 -0
- package/dist/ifc-schema/generated/psets-ifc4.d.ts.map +1 -0
- package/dist/ifc-schema/generated/psets-ifc4.js +4510 -0
- package/dist/ifc-schema/generated/psets-ifc4.js.map +1 -0
- package/dist/ifc-schema/generated/psets-ifc4x3.d.ts +8 -0
- package/dist/ifc-schema/generated/psets-ifc4x3.d.ts.map +1 -0
- package/dist/ifc-schema/generated/psets-ifc4x3.js +8554 -0
- package/dist/ifc-schema/generated/psets-ifc4x3.js.map +1 -0
- package/dist/ifc-schema/index.d.ts +61 -0
- package/dist/ifc-schema/index.d.ts.map +1 -0
- package/dist/ifc-schema/index.js +212 -0
- package/dist/ifc-schema/index.js.map +1 -0
- package/dist/ifc-schema/types.d.ts +108 -0
- package/dist/ifc-schema/types.d.ts.map +1 -0
- package/dist/ifc-schema/types.js +5 -0
- package/dist/ifc-schema/types.js.map +1 -0
- package/dist/index.d.ts +11 -8
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +11 -4
- package/dist/index.js.map +1 -1
- package/dist/property-table.d.ts +22 -0
- package/dist/property-table.d.ts.map +1 -1
- package/dist/property-table.js +89 -62
- package/dist/property-table.js.map +1 -1
- package/dist/quantity-table.d.ts +18 -0
- package/dist/quantity-table.d.ts.map +1 -1
- package/dist/quantity-table.js +80 -66
- package/dist/quantity-table.js.map +1 -1
- package/dist/relationship-graph.d.ts +53 -6
- package/dist/relationship-graph.d.ts.map +1 -1
- package/dist/relationship-graph.js +149 -113
- package/dist/relationship-graph.js.map +1 -1
- package/dist/string-table.d.ts +8 -0
- package/dist/string-table.d.ts.map +1 -1
- package/dist/string-table.js +20 -0
- package/dist/string-table.js.map +1 -1
- package/dist/utf8-decode.d.ts +24 -0
- package/dist/utf8-decode.d.ts.map +1 -0
- package/dist/utf8-decode.js +103 -0
- package/dist/utf8-decode.js.map +1 -0
- package/package.json +3 -2
|
@@ -0,0 +1,3416 @@
|
|
|
1
|
+
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
2
|
+
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
3
|
+
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
4
|
+
export const PROPERTY_SETS_IFC2X3 = [
|
|
5
|
+
{
|
|
6
|
+
name: "Pset_ActionRequest",
|
|
7
|
+
applicableEntities: ["IfcActionRequest"],
|
|
8
|
+
properties: [
|
|
9
|
+
{ name: "RequestSourceType", kind: "enumeration", enumeration: ["Email", "Fax", "Phone", "Post", "Verbal", "Other", "NotKnown", "Unset"] },
|
|
10
|
+
{ name: "Status", kind: "enumeration", enumeration: ["Hold", "NoAction", "Schedule", "Urgent", "Other", "NotKnown", "Unset"] },
|
|
11
|
+
{ name: "RequestComments", kind: "single", dataType: "IfcText" },
|
|
12
|
+
{ name: "RequestDescription", kind: "single", dataType: "IfcText" },
|
|
13
|
+
{ name: "RequestSourceLabel", kind: "single", dataType: "IfcLabel" },
|
|
14
|
+
],
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
name: "Pset_ActorCommon",
|
|
18
|
+
applicableEntities: ["IfcActor"],
|
|
19
|
+
properties: [
|
|
20
|
+
{ name: "Category", kind: "single", dataType: "IfcLabel" },
|
|
21
|
+
{ name: "NumberOfActors", kind: "single", dataType: "IfcCountMeasure" },
|
|
22
|
+
{ name: "SkillLevel", kind: "single", dataType: "IfcLabel" },
|
|
23
|
+
],
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
name: "Pset_ActuatorTypeCommon",
|
|
27
|
+
applicableEntities: ["IfcActuatorType"],
|
|
28
|
+
properties: [
|
|
29
|
+
{ name: "FailPosition", kind: "enumeration", enumeration: ["FailOpen", "FailClosed", "NotKnown", "Unset"] },
|
|
30
|
+
{ name: "ManualOverride", kind: "single", dataType: "IfcBoolean" },
|
|
31
|
+
],
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
name: "Pset_ActuatorTypeElectricActuator",
|
|
35
|
+
applicableEntities: ["IfcActuatorType"],
|
|
36
|
+
properties: [
|
|
37
|
+
{ name: "ElectricActuatorType", kind: "enumeration", enumeration: ["MotorDrive", "Magnetic", "Other", "NotKnown", "Unset"] },
|
|
38
|
+
{ name: "ActuatorInputPower", kind: "single", dataType: "IfcPowerMeasure" },
|
|
39
|
+
],
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
name: "Pset_ActuatorTypeHydraulicActuator",
|
|
43
|
+
applicableEntities: ["IfcActuatorType"],
|
|
44
|
+
properties: [
|
|
45
|
+
{ name: "InputFlowrate", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
46
|
+
{ name: "InputPressure", kind: "single", dataType: "IfcPressureMeasure" },
|
|
47
|
+
],
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
name: "Pset_ActuatorTypeLinearActuation",
|
|
51
|
+
applicableEntities: ["IfcActuatorType"],
|
|
52
|
+
properties: [
|
|
53
|
+
{ name: "Force", kind: "single", dataType: "IfcForceMeasure" },
|
|
54
|
+
{ name: "Stroke", kind: "single", dataType: "IfcLengthMeasure" },
|
|
55
|
+
],
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
name: "Pset_ActuatorTypePneumaticActuator",
|
|
59
|
+
applicableEntities: ["IfcActuatorType"],
|
|
60
|
+
properties: [
|
|
61
|
+
{ name: "InputFlowrate", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
62
|
+
{ name: "InputPressure", kind: "single", dataType: "IfcPressureMeasure" },
|
|
63
|
+
],
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
name: "Pset_ActuatorTypeRotationalActuation",
|
|
67
|
+
applicableEntities: ["IfcActuatorType"],
|
|
68
|
+
properties: [
|
|
69
|
+
{ name: "RangeAngle", kind: "single", dataType: "IfcPlaneAngleMeasure" },
|
|
70
|
+
{ name: "Torque", kind: "single", dataType: "IfcTorqueMeasure" },
|
|
71
|
+
],
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
name: "Pset_AirSideSystemInformation",
|
|
75
|
+
applicableEntities: ["IfcSpatialStructureElement", "IfcSystem"],
|
|
76
|
+
properties: [
|
|
77
|
+
{ name: "AirSideSystemDistributionType", kind: "enumeration", enumeration: ["SINGLEDUCT", "DUALDUCT", "MULTIZONE", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
78
|
+
{ name: "AirSideSystemType", kind: "enumeration", enumeration: ["CONSTANTVOLUME", "CONSTANTVOLUMESINGLEZONE", "CONSTANTVOLUMEMULTIPLEZONEREHEAT", "CONSTANTVOLUMEBYPASS", "VARIABLEAIRVOLUME", "VARIABLEAIRVOLUMEREHEAT", "VARIABLEAIRVOLUMEINDUCTION", "VARIABLEAIRVOLUMEFANPOWERED", "VARIABLEAIRVOLUMEDUALCONDUIT", "VARIABLEAIRVOLUMEVARIABLEDIFFUSERS", "VARIABLEAIRVOLUMEVARIABLETEMPERATURE", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
79
|
+
{ name: "AirflowSensible", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
80
|
+
{ name: "ApplianceDiversity", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
81
|
+
{ name: "CoolingTemperatureDelta", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
82
|
+
{ name: "Description", kind: "single", dataType: "IfcLabel" },
|
|
83
|
+
{ name: "EnergyGainSensible", kind: "single", dataType: "IfcPowerMeasure" },
|
|
84
|
+
{ name: "EnergyGainTotal", kind: "single", dataType: "IfcPowerMeasure" },
|
|
85
|
+
{ name: "EnergyLoss", kind: "single", dataType: "IfcPowerMeasure" },
|
|
86
|
+
{ name: "FanPower", kind: "single", dataType: "IfcPowerMeasure" },
|
|
87
|
+
{ name: "HeatingTemperatureDelta", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
88
|
+
{ name: "InfiltrationDiversitySummer", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
89
|
+
{ name: "InfiltrationDiversityWinter", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
90
|
+
{ name: "LightingDiversity", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
91
|
+
{ name: "LoadSafetyFactor", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
92
|
+
{ name: "Name", kind: "single", dataType: "IfcLabel" },
|
|
93
|
+
{ name: "TotalAirflow", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
94
|
+
{ name: "Ventilation", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
95
|
+
],
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
name: "Pset_AirTerminalBoxPHistory",
|
|
99
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
100
|
+
properties: [],
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
name: "Pset_AirTerminalBoxTypeCommon",
|
|
104
|
+
applicableEntities: ["IfcAirTerminalBoxType"],
|
|
105
|
+
properties: [
|
|
106
|
+
{ name: "ArrangementType", kind: "enumeration", enumeration: ["SINGLEDUCT", "DUALDUCT", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
107
|
+
{ name: "ReheatType", kind: "enumeration", enumeration: ["ELECTRICALREHEAT", "WATERCOILREHEAT", "STEAMCOILREHEAT", "GASREHEAT", "NONE", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
108
|
+
{ name: "AirflowRateRange", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
109
|
+
{ name: "AirPressureRange", kind: "single", dataType: "IfcPressureMeasure" },
|
|
110
|
+
{ name: "HasFan", kind: "single", dataType: "IfcBoolean" },
|
|
111
|
+
{ name: "HasReturnAir", kind: "single", dataType: "IfcBoolean" },
|
|
112
|
+
{ name: "HasSoundAttenuator", kind: "single", dataType: "IfcBoolean" },
|
|
113
|
+
{ name: "HousingThickness", kind: "single", dataType: "IfcLengthMeasure" },
|
|
114
|
+
{ name: "NominalAirFlowRate", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
115
|
+
{ name: "NominalDamperDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
116
|
+
{ name: "NominalInletAirPressure", kind: "single", dataType: "IfcPressureMeasure" },
|
|
117
|
+
{ name: "OperationTemperatureRange", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
118
|
+
{ name: "ReturnAirFractionRange", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
119
|
+
{ name: "Weight", kind: "single", dataType: "IfcMassMeasure" },
|
|
120
|
+
],
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
name: "Pset_AirTerminalPHistory",
|
|
124
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
125
|
+
properties: [
|
|
126
|
+
{ name: "CenterlineAirVelocity", kind: "unknown" },
|
|
127
|
+
{ name: "InductionRatio", kind: "unknown" },
|
|
128
|
+
],
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
name: "Pset_AirTerminalTypeCommon",
|
|
132
|
+
applicableEntities: ["IfcAirTerminalType"],
|
|
133
|
+
properties: [
|
|
134
|
+
{ name: "CoreType", kind: "enumeration", enumeration: ["SHUTTERBLADE", "CURVEDBLADE", "REMOVABLE", "REVERSIBLE", "NONE", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
135
|
+
{ name: "DischargeDirection", kind: "enumeration", enumeration: ["PARALLEL", "PERPENDICULAR", "ADJUSTABLE", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
136
|
+
{ name: "FinishType", kind: "enumeration", enumeration: ["ANNODIZED", "PAINTED", "NONE", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
137
|
+
{ name: "FlowControlType", kind: "enumeration", enumeration: ["DAMPER", "BELLOWS", "NONE", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
138
|
+
{ name: "FlowPattern", kind: "enumeration", enumeration: ["LINEARSINGLE", "LINEARDOUBLE", "LINEARFOURWAY", "RADIAL", "SWIRL", "DISPLACMENT", "COMPACTJET", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
139
|
+
{ name: "MountingType", kind: "enumeration", enumeration: ["SURFACE", "FLATFLUSH", "LAYIN", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
140
|
+
{ name: "Shape", kind: "enumeration", enumeration: ["ROUND", "RECTANGULAR", "SQUARE", "SLOT", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
141
|
+
{ name: "AirDiffusionPerformanceIndex", kind: "single", dataType: "IfcReal" },
|
|
142
|
+
{ name: "AirFlowrateRange", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
143
|
+
{ name: "CoreSetHorizontal", kind: "single", dataType: "IfcPlaneAngleMeasure" },
|
|
144
|
+
{ name: "CoreSetVertical", kind: "single", dataType: "IfcPlaneAngleMeasure" },
|
|
145
|
+
{ name: "EffectiveArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
146
|
+
{ name: "FinishColor", kind: "single", dataType: "IfcLabel" },
|
|
147
|
+
{ name: "HasIntegralControl", kind: "single", dataType: "IfcBoolean" },
|
|
148
|
+
{ name: "HasSoundAttenuator", kind: "single", dataType: "IfcBoolean" },
|
|
149
|
+
{ name: "HasThermalInsulation", kind: "single", dataType: "IfcBoolean" },
|
|
150
|
+
{ name: "NeckArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
151
|
+
{ name: "TemperatureRange", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
152
|
+
{ name: "ThrowLength", kind: "single", dataType: "IfcLengthMeasure" },
|
|
153
|
+
{ name: "Weight", kind: "single", dataType: "IfcMassMeasure" },
|
|
154
|
+
{ name: "AirFlowrateVersusFlowControlElement", kind: "unknown" },
|
|
155
|
+
],
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
name: "Pset_AirTerminalTypeRectangular",
|
|
159
|
+
applicableEntities: ["IfcAirTerminalType"],
|
|
160
|
+
properties: [
|
|
161
|
+
{ name: "FaceType", kind: "enumeration", enumeration: ["FOURWAYPATTERN", "SINGLEDEFLECTION", "DOUBLEDEFLECTION", "SIGHTPROOF", "EGGCRATE", "PERFORATED", "LOUVERED", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
162
|
+
],
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
name: "Pset_AirTerminalTypeRound",
|
|
166
|
+
applicableEntities: ["IfcAirTerminalType"],
|
|
167
|
+
properties: [
|
|
168
|
+
{ name: "FaceType", kind: "enumeration", enumeration: ["FOURWAYPATTERN", "SINGLEDEFLECTION", "DOUBLEDEFLECTION", "SIGHTPROOF", "EGGCRATE", "PERFORATED", "LOUVERED", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
169
|
+
],
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
name: "Pset_AirTerminalTypeSlot",
|
|
173
|
+
applicableEntities: ["IfcAirTerminalType"],
|
|
174
|
+
properties: [
|
|
175
|
+
{ name: "NumberOfSlots", kind: "single", dataType: "IfcInteger" },
|
|
176
|
+
{ name: "SlotLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
177
|
+
{ name: "SlotWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
178
|
+
],
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
name: "Pset_AirTerminalTypeSquare",
|
|
182
|
+
applicableEntities: ["IfcAirTerminalType"],
|
|
183
|
+
properties: [
|
|
184
|
+
{ name: "FaceType", kind: "enumeration", enumeration: ["FOURWAYPATTERN", "SINGLEDEFLECTION", "DOUBLEDEFLECTION", "SIGHTPROOF", "EGGCRATE", "PERFORATED", "LOUVERED", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
185
|
+
],
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
name: "Pset_AirToAirHeatRecoveryPHist",
|
|
189
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
190
|
+
properties: [],
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
name: "Pset_AirToAirHeatRecoveryTypeCommon",
|
|
194
|
+
applicableEntities: ["IfcAirToAirHeatRecoveryType"],
|
|
195
|
+
properties: [
|
|
196
|
+
{ name: "HeatTransferTypeEnum", kind: "enumeration", enumeration: ["SENSIBLE", "LATENT", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
197
|
+
{ name: "HasDefrost", kind: "single", dataType: "IfcBoolean" },
|
|
198
|
+
{ name: "OperationalTemperatureRange", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
199
|
+
{ name: "PrimaryAirflowRateRange", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
200
|
+
{ name: "SecondaryAirflowRateRange", kind: "single", dataType: "IfcPressureMeasure" },
|
|
201
|
+
{ name: "Weight", kind: "single", dataType: "IfcMassMeasure" },
|
|
202
|
+
],
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
name: "Pset_AnalogInput",
|
|
206
|
+
applicableEntities: ["IfcDistributionControlElement"],
|
|
207
|
+
properties: [
|
|
208
|
+
{ name: "EventEnable", kind: "enumeration", enumeration: ["To-OffNormal", "To-Fault", "To-Normal", "Other", "NotKnown", "Unset"] },
|
|
209
|
+
{ name: "NotifyType", kind: "enumeration", enumeration: ["Alarm", "Event", "AcknowledgeNotification", "Other", "NotKnown", "Unset"] },
|
|
210
|
+
{ name: "Deadband", kind: "single", dataType: "IfcReal" },
|
|
211
|
+
{ name: "HighLimit", kind: "single", dataType: "IfcReal" },
|
|
212
|
+
{ name: "HighLimitEnable", kind: "single", dataType: "IfcBoolean" },
|
|
213
|
+
{ name: "LowLimit", kind: "single", dataType: "IfcReal" },
|
|
214
|
+
{ name: "LowLimitEnable", kind: "single", dataType: "IfcBoolean" },
|
|
215
|
+
],
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
name: "Pset_AnalogOutput",
|
|
219
|
+
applicableEntities: ["IfcDistributionControlElement"],
|
|
220
|
+
properties: [
|
|
221
|
+
{ name: "EventEnable", kind: "enumeration", enumeration: ["To-OffNormal", "To-Fault", "To-Normal", "Other", "NotKnown", "Unset"] },
|
|
222
|
+
{ name: "NotifyType", kind: "enumeration", enumeration: ["Alarm", "Event", "AcknowledgeNotification", "Other", "NotKnown", "Unset"] },
|
|
223
|
+
{ name: "Deadband", kind: "single", dataType: "IfcReal" },
|
|
224
|
+
{ name: "HighLimit", kind: "single", dataType: "IfcReal" },
|
|
225
|
+
{ name: "HighLimitEnable", kind: "single", dataType: "IfcBoolean" },
|
|
226
|
+
{ name: "LowLimit", kind: "single", dataType: "IfcReal" },
|
|
227
|
+
{ name: "LowLimitEnable", kind: "single", dataType: "IfcBoolean" },
|
|
228
|
+
],
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
name: "Pset_Asset",
|
|
232
|
+
applicableEntities: ["IfcAsset"],
|
|
233
|
+
properties: [
|
|
234
|
+
{ name: "AssetAccountingType", kind: "enumeration", enumeration: ["Fixed", "NonFixed", "Other", "NotKnown", "Unset"] },
|
|
235
|
+
{ name: "AssetInsuranceType", kind: "enumeration", enumeration: ["Personal", "Real", "Other", "NotKnown", "Unset"] },
|
|
236
|
+
{ name: "AssetTaxType", kind: "enumeration", enumeration: ["Capitalised", "Expensed", "Other", "NotKnown", "Unset"] },
|
|
237
|
+
],
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
name: "Pset_BeamCommon",
|
|
241
|
+
applicableEntities: ["IfcBeam"],
|
|
242
|
+
properties: [
|
|
243
|
+
{ name: "FireRating", kind: "single", dataType: "IfcLabel" },
|
|
244
|
+
{ name: "IsExternal", kind: "single", dataType: "IfcBoolean" },
|
|
245
|
+
{ name: "LoadBearing", kind: "single", dataType: "IfcBoolean" },
|
|
246
|
+
{ name: "Reference", kind: "single", dataType: "IfcIdentifier" },
|
|
247
|
+
{ name: "Slope", kind: "single", dataType: "IfcPlaneAngleMeasure" },
|
|
248
|
+
{ name: "Span", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
249
|
+
],
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
name: "Pset_BinaryInput",
|
|
253
|
+
applicableEntities: ["IfcDistributionControlElement"],
|
|
254
|
+
properties: [
|
|
255
|
+
{ name: "AckedTransitions", kind: "enumeration", enumeration: ["To-OffNormal", "To-Fault", "To-Normal", "Other", "NotKnown", "Unset"] },
|
|
256
|
+
{ name: "EventEnable", kind: "enumeration", enumeration: ["To-OffNormal", "To-Fault", "To-Normal", "Other", "NotKnown", "Unset"] },
|
|
257
|
+
{ name: "FeedbackValue", kind: "enumeration", enumeration: ["Active", "Inactive", "Other", "NotKnown", "Unset"] },
|
|
258
|
+
{ name: "Polarity", kind: "enumeration", enumeration: ["Normal", "Reverse", "Other", "NotKnown", "Unset"] },
|
|
259
|
+
{ name: "ActiveText", kind: "single", dataType: "IfcText" },
|
|
260
|
+
{ name: "InactiveText", kind: "single", dataType: "IfcText" },
|
|
261
|
+
],
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
name: "Pset_BinaryOutput",
|
|
265
|
+
applicableEntities: ["IfcDistributionControlElement"],
|
|
266
|
+
properties: [
|
|
267
|
+
{ name: "AckedTransitions", kind: "enumeration", enumeration: ["To-OffNormal", "To-Fault", "To-Normal", "Other", "NotKnown", "Unset"] },
|
|
268
|
+
{ name: "AlarmValue", kind: "enumeration", enumeration: ["Active", "Inactive", "Other", "NotKnown", "Unset"] },
|
|
269
|
+
{ name: "EventEnable", kind: "enumeration", enumeration: ["To-OffNormal", "To-Fault", "To-Normal", "Other", "NotKnown", "Unset"] },
|
|
270
|
+
{ name: "Polarity", kind: "enumeration", enumeration: ["Normal", "Reverse", "Other", "NotKnown", "Unset"] },
|
|
271
|
+
{ name: "ActiveText", kind: "single", dataType: "IfcText" },
|
|
272
|
+
{ name: "InactiveText", kind: "single", dataType: "IfcText" },
|
|
273
|
+
],
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
name: "Pset_BoilerPHistory",
|
|
277
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
278
|
+
properties: [],
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
name: "Pset_BoilerTypeCommon",
|
|
282
|
+
applicableEntities: ["IfcBoilerType"],
|
|
283
|
+
properties: [
|
|
284
|
+
{ name: "OperatingMode", kind: "enumeration", enumeration: ["FIXED", "TWOSTEP", "MODULATING", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
285
|
+
{ name: "HeatOutput", kind: "single", dataType: "IfcReal" },
|
|
286
|
+
{ name: "HeatTransferSurfaceArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
287
|
+
{ name: "IsWaterStorageHeater", kind: "single", dataType: "IfcBoolean" },
|
|
288
|
+
{ name: "NominalEfficiency", kind: "single", dataType: "IfcReal" },
|
|
289
|
+
{ name: "NominalEnergyConsumption", kind: "single", dataType: "IfcPowerMeasure" },
|
|
290
|
+
{ name: "NominalPartLoadRatio", kind: "single", dataType: "IfcReal" },
|
|
291
|
+
{ name: "OutletTemperatureRange", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
292
|
+
{ name: "PartialLoadEfficiencyCurves", kind: "single", dataType: "IfcReal" },
|
|
293
|
+
{ name: "PressureRating", kind: "single", dataType: "IfcPressureMeasure" },
|
|
294
|
+
{ name: "WaterInletTemperatureRange", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
295
|
+
{ name: "WaterStorageCapacity", kind: "single", dataType: "IfcVolumeMeasure" },
|
|
296
|
+
{ name: "Weight", kind: "single", dataType: "IfcMassMeasure" },
|
|
297
|
+
],
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
name: "Pset_BoilerTypeSteam",
|
|
301
|
+
applicableEntities: ["IfcBoilerType"],
|
|
302
|
+
properties: [
|
|
303
|
+
{ name: "MaximumOutletPressure", kind: "single", dataType: "IfcPressureMeasure" },
|
|
304
|
+
],
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
name: "Pset_BuildingCommon",
|
|
308
|
+
applicableEntities: ["IfcBuilding"],
|
|
309
|
+
properties: [
|
|
310
|
+
{ name: "AncillaryFireUse", kind: "single", dataType: "IfcLabel" },
|
|
311
|
+
{ name: "BuildingID", kind: "single", dataType: "IfcIdentifier" },
|
|
312
|
+
{ name: "GrossPlannedArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
313
|
+
{ name: "IsLandmarked", kind: "single", dataType: "IfcLogical" },
|
|
314
|
+
{ name: "IsPermanentID", kind: "single", dataType: "IfcBoolean" },
|
|
315
|
+
{ name: "MainFireUse", kind: "single", dataType: "IfcLabel" },
|
|
316
|
+
{ name: "NumberOfStoreys", kind: "single", dataType: "IfcInteger" },
|
|
317
|
+
{ name: "OccupancyType", kind: "single", dataType: "IfcLabel" },
|
|
318
|
+
{ name: "SprinklerProtection", kind: "single", dataType: "IfcBoolean" },
|
|
319
|
+
{ name: "SprinklerProtectionAutomatic", kind: "single", dataType: "IfcBoolean" },
|
|
320
|
+
{ name: "YearOfConstruction", kind: "single", dataType: "IfcLabel" },
|
|
321
|
+
],
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
name: "Pset_BuildingElementProxyCommon",
|
|
325
|
+
applicableEntities: ["IfcBuildingElementProxy"],
|
|
326
|
+
properties: [
|
|
327
|
+
{ name: "Reference", kind: "single", dataType: "IfcIdentifier" },
|
|
328
|
+
],
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
name: "Pset_BuildingStoreyCommon",
|
|
332
|
+
applicableEntities: ["IfcBuildingStorey"],
|
|
333
|
+
properties: [
|
|
334
|
+
{ name: "AboveGround", kind: "single", dataType: "IfcLogical" },
|
|
335
|
+
{ name: "EntranceLevel", kind: "single", dataType: "IfcBoolean" },
|
|
336
|
+
{ name: "GrossAreaPlanned", kind: "single", dataType: "IfcAreaMeasure" },
|
|
337
|
+
{ name: "NetAreaPlanned", kind: "single", dataType: "IfcAreaMeasure" },
|
|
338
|
+
{ name: "SprinklerProtection", kind: "single", dataType: "IfcBoolean" },
|
|
339
|
+
{ name: "SprinklerProtectionAutomatic", kind: "single", dataType: "IfcBoolean" },
|
|
340
|
+
],
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
name: "Pset_BuildingUse",
|
|
344
|
+
applicableEntities: ["IfcBuilding"],
|
|
345
|
+
properties: [
|
|
346
|
+
{ name: "MarketCategory", kind: "single", dataType: "IfcLabel" },
|
|
347
|
+
{ name: "MarketSubCategoriesAvailableFuture", kind: "single", dataType: "IfcLabel" },
|
|
348
|
+
{ name: "MarketSubCategoriesAvailableNow", kind: "single", dataType: "IfcLabel" },
|
|
349
|
+
{ name: "MarketSubCategory", kind: "single", dataType: "IfcLabel" },
|
|
350
|
+
{ name: "NarrativeText", kind: "single", dataType: "IfcText" },
|
|
351
|
+
{ name: "PlanningControlStatus", kind: "single", dataType: "IfcLabel" },
|
|
352
|
+
{ name: "RentalRatesInCategoryFuture", kind: "single", dataType: "IfcMonetaryMeasure" },
|
|
353
|
+
{ name: "RentalRatesInCategoryNow", kind: "single", dataType: "IfcMonetaryMeasure" },
|
|
354
|
+
{ name: "TenureModesAvailableFuture", kind: "single", dataType: "IfcLabel" },
|
|
355
|
+
{ name: "TenureModesAvailableNow", kind: "single", dataType: "IfcLabel" },
|
|
356
|
+
{ name: "VacancyRateInCategoryFuture", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
357
|
+
{ name: "VacancyRateInCategoryNow", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
358
|
+
],
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
name: "Pset_BuildingUseAdjacent",
|
|
362
|
+
applicableEntities: ["IfcBuilding"],
|
|
363
|
+
properties: [
|
|
364
|
+
{ name: "MarketCategory", kind: "single", dataType: "IfcLabel" },
|
|
365
|
+
{ name: "MarketSubCategory", kind: "single", dataType: "IfcLabel" },
|
|
366
|
+
{ name: "NarrativeText", kind: "single", dataType: "IfcText" },
|
|
367
|
+
{ name: "PlanningControlStatus", kind: "single", dataType: "IfcLabel" },
|
|
368
|
+
],
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
name: "Pset_BuildingWaterStorage",
|
|
372
|
+
applicableEntities: ["IfcBuilding"],
|
|
373
|
+
properties: [
|
|
374
|
+
{ name: "OneDayCoolingTowerMakeupWater", kind: "single", dataType: "IfcVolumeMeasure" },
|
|
375
|
+
{ name: "OneDayEssentialWater", kind: "single", dataType: "IfcVolumeMeasure" },
|
|
376
|
+
{ name: "OneDayPotableWater", kind: "single", dataType: "IfcVolumeMeasure" },
|
|
377
|
+
{ name: "OneDayProcessOrProductionWater", kind: "single", dataType: "IfcVolumeMeasure" },
|
|
378
|
+
{ name: "WaterStorageRatePerPerson", kind: "single", dataType: "IfcVolumeMeasure" },
|
|
379
|
+
],
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
name: "Pset_CableCarrierSegmentTypeCableLadderSegment",
|
|
383
|
+
applicableEntities: ["IfcCableCarrierSegmentType"],
|
|
384
|
+
properties: [
|
|
385
|
+
{ name: "LadderConfiguration", kind: "single", dataType: "IfcText" },
|
|
386
|
+
{ name: "NominalHeight", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
387
|
+
{ name: "NominalLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
388
|
+
{ name: "NominalWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
389
|
+
],
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
name: "Pset_CableCarrierSegmentTypeCableTraySegment",
|
|
393
|
+
applicableEntities: ["IfcCableCarrierSegmentType"],
|
|
394
|
+
properties: [
|
|
395
|
+
{ name: "HasCover", kind: "single", dataType: "IfcBoolean" },
|
|
396
|
+
{ name: "NominalHeight", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
397
|
+
{ name: "NominalLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
398
|
+
{ name: "NominalWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
399
|
+
],
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
name: "Pset_CableCarrierSegmentTypeCableTrunkingSegment",
|
|
403
|
+
applicableEntities: ["IfcCableCarrierSegmentType"],
|
|
404
|
+
properties: [
|
|
405
|
+
{ name: "NominalHeight", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
406
|
+
{ name: "NominalLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
407
|
+
{ name: "NominalWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
408
|
+
{ name: "NumberOfCompartments", kind: "single", dataType: "IfcInteger" },
|
|
409
|
+
],
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
name: "Pset_CableCarrierSegmentTypeConduitSegment",
|
|
413
|
+
applicableEntities: ["IfcCableCarrierSegmentType"],
|
|
414
|
+
properties: [
|
|
415
|
+
{ name: "ConduitShapeType", kind: "enumeration", enumeration: ["Circular", "Oval", "Other", "NotKnown", "Unset"] },
|
|
416
|
+
{ name: "IsRigid", kind: "single", dataType: "IfcBoolean" },
|
|
417
|
+
{ name: "NominalHeight", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
418
|
+
{ name: "NominalLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
419
|
+
{ name: "NominalWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
420
|
+
],
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
name: "Pset_CableSegmentTypeCableSegment",
|
|
424
|
+
applicableEntities: ["IfcCableSegmentType"],
|
|
425
|
+
properties: [
|
|
426
|
+
{ name: "CrossSectionalArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
427
|
+
{ name: "MaxOperatingTemperature", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
428
|
+
{ name: "NominalHeight", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
429
|
+
{ name: "NominalLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
430
|
+
{ name: "NominalWidthOrDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
431
|
+
{ name: "NormalOperatingTemperature", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
432
|
+
{ name: "SheathColor", kind: "single", dataType: "IfcLabel" },
|
|
433
|
+
],
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
name: "Pset_CableSegmentTypeConductorSegment",
|
|
437
|
+
applicableEntities: ["IfcCableSegmentType"],
|
|
438
|
+
properties: [
|
|
439
|
+
{ name: "ElectricalConductorFunction", kind: "enumeration", enumeration: ["Phase", "Neutral", "ProtectiveGround", "Other", "NotKnown", "Unset"] },
|
|
440
|
+
{ name: "CrossSectionalArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
441
|
+
{ name: "IsFireResistant", kind: "single", dataType: "IfcBoolean" },
|
|
442
|
+
{ name: "MaximumOperatingTemperature", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
443
|
+
{ name: "NominalLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
444
|
+
{ name: "PhaseReference", kind: "single", dataType: "IfcIdentifier" },
|
|
445
|
+
{ name: "SheathColor", kind: "single", dataType: "IfcLabel" },
|
|
446
|
+
],
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
name: "Pset_ChillerPHistory",
|
|
450
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
451
|
+
properties: [],
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
name: "Pset_ChillerTypeCommon",
|
|
455
|
+
applicableEntities: ["IfcChillerType"],
|
|
456
|
+
properties: [
|
|
457
|
+
{ name: "NominalCapacity", kind: "single", dataType: "IfcPowerMeasure" },
|
|
458
|
+
{ name: "NominalCondensingTemperature", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
459
|
+
{ name: "NominalEfficiency", kind: "single", dataType: "IfcReal" },
|
|
460
|
+
{ name: "NominalEvaporatingTemperature", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
461
|
+
{ name: "NominalHeatRejectionRate", kind: "single", dataType: "IfcPowerMeasure" },
|
|
462
|
+
{ name: "NominalPowerConsumption", kind: "single", dataType: "IfcPowerMeasure" },
|
|
463
|
+
],
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
name: "Pset_CoilPHistory",
|
|
467
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
468
|
+
properties: [],
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
name: "Pset_CoilTypeCommon",
|
|
472
|
+
applicableEntities: ["IfcCoilType"],
|
|
473
|
+
properties: [
|
|
474
|
+
{ name: "AirflowRateRange", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
475
|
+
{ name: "NominalLatentCapacity", kind: "single", dataType: "IfcPowerMeasure" },
|
|
476
|
+
{ name: "NominalSensibleCapacity", kind: "single", dataType: "IfcPowerMeasure" },
|
|
477
|
+
{ name: "NominalUA", kind: "single", dataType: "IfcReal" },
|
|
478
|
+
{ name: "OperationalTemperatureRange", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
479
|
+
],
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
name: "Pset_CoilTypeHydronic",
|
|
483
|
+
applicableEntities: ["IfcCoilType"],
|
|
484
|
+
properties: [
|
|
485
|
+
{ name: "CoilConnectionDirection", kind: "enumeration", enumeration: ["LEFT", "RIGHT", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
486
|
+
{ name: "CoilCoolant", kind: "enumeration", enumeration: ["WATER", "BRINE", "GLYCOL", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
487
|
+
{ name: "CoilFluidArrangement", kind: "enumeration", enumeration: ["CROSSFLOW", "CROSSCOUNTERFLOW", "CROSSPARALLELFLOW", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
488
|
+
{ name: "BypassFactor", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
489
|
+
{ name: "CoilFaceArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
490
|
+
{ name: "FluidPressureRange", kind: "single", dataType: "IfcPressureMeasure" },
|
|
491
|
+
{ name: "HeatExchangeSurfaceArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
492
|
+
{ name: "PrimarySurfaceArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
493
|
+
{ name: "SecondarySurfaceArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
494
|
+
{ name: "SensibleHeatRatio", kind: "single", dataType: "IfcReal" },
|
|
495
|
+
{ name: "WetCoilFraction", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
496
|
+
{ name: "TotalUACurves", kind: "unknown" },
|
|
497
|
+
{ name: "WaterPressureDropCurve", kind: "unknown" },
|
|
498
|
+
],
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
name: "Pset_ColumnCommon",
|
|
502
|
+
applicableEntities: ["IfcColumn"],
|
|
503
|
+
properties: [
|
|
504
|
+
{ name: "FireRating", kind: "single", dataType: "IfcLabel" },
|
|
505
|
+
{ name: "IsExternal", kind: "single", dataType: "IfcBoolean" },
|
|
506
|
+
{ name: "LoadBearing", kind: "single", dataType: "IfcBoolean" },
|
|
507
|
+
{ name: "Reference", kind: "single", dataType: "IfcIdentifier" },
|
|
508
|
+
{ name: "Slope", kind: "single", dataType: "IfcPlaneAngleMeasure" },
|
|
509
|
+
],
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
name: "Pset_CompressorPHistory",
|
|
513
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
514
|
+
properties: [
|
|
515
|
+
{ name: "FullLoadRatioCurve", kind: "single", dataType: "IfcReal" },
|
|
516
|
+
],
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
name: "Pset_CompressorTypeCommon",
|
|
520
|
+
applicableEntities: ["IfcCompressorType"],
|
|
521
|
+
properties: [
|
|
522
|
+
{ name: "PowerSource", kind: "enumeration", enumeration: ["MOTORDRIVEN", "ENGINEDRIVEN", "GASTURBINE", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
523
|
+
{ name: "RefrigerantClass", kind: "enumeration", enumeration: ["CFC", "HCFC", "HFC", "HYDROCARBONS", "AMMONIA", "CO2", "H2O", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
524
|
+
{ name: "CompressorSpeed", kind: "single", dataType: "IfcRotationalFrequencyMeasure" },
|
|
525
|
+
{ name: "HasHotGasBypass", kind: "single", dataType: "IfcBoolean" },
|
|
526
|
+
{ name: "IdealCapacity", kind: "single", dataType: "IfcPowerMeasure" },
|
|
527
|
+
{ name: "IdealShaftPower", kind: "single", dataType: "IfcPowerMeasure" },
|
|
528
|
+
{ name: "MaximumPartLoadRatio", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
529
|
+
{ name: "MinimumPartLoadRatio", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
530
|
+
{ name: "NominalCapacity", kind: "single", dataType: "IfcPowerMeasure" },
|
|
531
|
+
],
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
name: "Pset_ConcreteElementGeneral",
|
|
535
|
+
applicableEntities: ["IfcBeam", "IfcBuildingElementPart", "IfcBuildingElementProxy", "IfcColumn", "IfcCovering", "IfcCurtainWall", "IfcDoor", "IfcFooting", "IfcMember", "IfcPile", "IfcRailing", "IfcRamp", "IfcRampFlight", "IfcRoof", "IfcSlab", "IfcStair", "IfcStairFlight", "IfcWall", "IfcWallStandardCase"],
|
|
536
|
+
properties: [
|
|
537
|
+
{ name: "ConcreteCoverAtLinks", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
538
|
+
{ name: "ConcreteCoverAtMainBars", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
539
|
+
{ name: "ConstructionToleranceClass", kind: "single", dataType: "IfcLabel" },
|
|
540
|
+
{ name: "ConstructionType", kind: "single", dataType: "IfcLabel" },
|
|
541
|
+
{ name: "DimensionalAccuracyClass", kind: "single", dataType: "IfcLabel" },
|
|
542
|
+
{ name: "EnvironmentalClass", kind: "single", dataType: "IfcLabel" },
|
|
543
|
+
{ name: "FireRating", kind: "single", dataType: "IfcLabel" },
|
|
544
|
+
{ name: "LifeCycleEnvironmentalLoad", kind: "single", dataType: "IfcText" },
|
|
545
|
+
{ name: "ServiceLife", kind: "single", dataType: "IfcTimeMeasure" },
|
|
546
|
+
{ name: "StructuralClass", kind: "single", dataType: "IfcLabel" },
|
|
547
|
+
],
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
name: "Pset_ConcreteElementQuantityGeneral",
|
|
551
|
+
applicableEntities: ["IfcBeam", "IfcBuildingElementPart", "IfcBuildingElementProxy", "IfcColumn", "IfcCovering", "IfcCurtainWall", "IfcDoor", "IfcFooting", "IfcMember", "IfcPile", "IfcRailing", "IfcRamp", "IfcRampFlight", "IfcRoof", "IfcSlab", "IfcStair", "IfcStairFlight", "IfcWall", "IfcWallStandardCase"],
|
|
552
|
+
properties: [
|
|
553
|
+
{ name: "TotalConcreteQuantity", kind: "single", dataType: "IfcVolumeMeasure" },
|
|
554
|
+
],
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
name: "Pset_ConcreteElementSurfaceFinishQuantityGeneral",
|
|
558
|
+
applicableEntities: ["IfcBeam", "IfcBuildingElementPart", "IfcBuildingElementProxy", "IfcColumn", "IfcCovering", "IfcCurtainWall", "IfcDoor", "IfcFooting", "IfcMember", "IfcPile", "IfcRailing", "IfcRamp", "IfcRampFlight", "IfcRoof", "IfcSlab", "IfcStair", "IfcStairFlight", "IfcWall", "IfcWallStandardCase"],
|
|
559
|
+
properties: [],
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
name: "Pset_CondenserPHistory",
|
|
563
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
564
|
+
properties: [],
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
name: "Pset_CondenserTypeCommon",
|
|
568
|
+
applicableEntities: ["IfcCondenserType"],
|
|
569
|
+
properties: [
|
|
570
|
+
{ name: "RefrigerantClass", kind: "enumeration", enumeration: ["CFC", "HCFC", "HFC", "HYDROCARBONS", "AMMONIA", "CO2", "H2O", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
571
|
+
{ name: "ExternalSurfaceArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
572
|
+
{ name: "InternalRefrigerantVolume", kind: "single", dataType: "IfcVolumeMeasure" },
|
|
573
|
+
{ name: "InternalSurfaceArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
574
|
+
{ name: "InternalWaterVolume", kind: "single", dataType: "IfcVolumeMeasure" },
|
|
575
|
+
{ name: "NominalHeatTransferArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
576
|
+
{ name: "NominalHeatTransferCoefficient", kind: "single", dataType: "IfcThermalTransmittanceMeasure" },
|
|
577
|
+
],
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
name: "Pset_ControllerTypeCommon",
|
|
581
|
+
applicableEntities: ["IfcControllerType"],
|
|
582
|
+
properties: [
|
|
583
|
+
{ name: "ControlType", kind: "enumeration", enumeration: ["Hysteresis", "Constant", "Divide", "Integral", "Subtract", "Report", "Absolute", "Sum", "Average", "Maximum", "Minimum", "Modifier", "Product", "Split", "RunningAverage", "Inverse", "Binary", "LowerLimitControl", "LowerLimitControl", "Other", "NotKnown", "Unset"] },
|
|
584
|
+
{ name: "SignalFactor", kind: "single", dataType: "IfcReal" },
|
|
585
|
+
{ name: "SignalOffset", kind: "single", dataType: "IfcReal" },
|
|
586
|
+
{ name: "SignalTime", kind: "single", dataType: "IfcTimeMeasure" },
|
|
587
|
+
],
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
name: "Pset_ControllerTypeProportional",
|
|
591
|
+
applicableEntities: ["IfcControllerType"],
|
|
592
|
+
properties: [
|
|
593
|
+
{ name: "ControlType", kind: "enumeration", enumeration: ["Proportional", "ProportionalIntegral", "ExponentialDelay", "Other", "NotKnown", "Unset"] },
|
|
594
|
+
{ name: "SignalFactor1", kind: "single", dataType: "IfcReal" },
|
|
595
|
+
{ name: "SignalFactor2", kind: "single", dataType: "IfcReal" },
|
|
596
|
+
{ name: "SignalTime1", kind: "single", dataType: "IfcTimeMeasure" },
|
|
597
|
+
{ name: "SignalTime2", kind: "single", dataType: "IfcTimeMeasure" },
|
|
598
|
+
],
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
name: "Pset_ControllerTypeTwoPosition",
|
|
602
|
+
applicableEntities: ["IfcControllerType"],
|
|
603
|
+
properties: [
|
|
604
|
+
{ name: "ControlType", kind: "enumeration", enumeration: ["Not", "And", "Or", "Xor", "LowerLimitSwitch", "UpperLimitSwitch", "LowerBandSwitch", "UpperBandSwitch", "Average", "Other", "NotKnown", "Unset"] },
|
|
605
|
+
{ name: "BandWidth", kind: "single", dataType: "IfcReal" },
|
|
606
|
+
],
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
name: "Pset_CooledBeamPHistory",
|
|
610
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
611
|
+
properties: [],
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
name: "Pset_CooledBeamPHistoryActive",
|
|
615
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
616
|
+
properties: [],
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
name: "Pset_CooledBeamTypeActive",
|
|
620
|
+
applicableEntities: ["IfcCooledBeamType"],
|
|
621
|
+
properties: [
|
|
622
|
+
{ name: "AirFlowConfiguration", kind: "enumeration", enumeration: ["BIDIRECTIONAL", "UNIDIRECTIONALRIGHT", "UNIDIRECTIONALLEFT", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
623
|
+
{ name: "SupplyAirConnectionType", kind: "enumeration", enumeration: ["STRAIGHT", "RIGHT", "LEFT", "TOP", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
624
|
+
{ name: "AirflowRateRange", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
625
|
+
{ name: "ConnectionSize", kind: "single", dataType: "IfcLengthMeasure" },
|
|
626
|
+
],
|
|
627
|
+
},
|
|
628
|
+
{
|
|
629
|
+
name: "Pset_CooledBeamTypeCommon",
|
|
630
|
+
applicableEntities: ["IfcCooledBeamType"],
|
|
631
|
+
properties: [
|
|
632
|
+
{ name: "IntegratedLightingType", kind: "enumeration", enumeration: ["NONE", "DIRECT", "INDIRECT", "DIRECTANDINDIRECT", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
633
|
+
{ name: "PipeConnectionEnum", kind: "enumeration", enumeration: ["STRAIGHT", "RIGHT", "LEFT", "TOP", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
634
|
+
{ name: "WaterFlowControlSystemType", kind: "enumeration", enumeration: ["NONE", "ONOFFVALVE", "2WAYVALVE", "3WAYVALVE", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
635
|
+
{ name: "CoilLength", kind: "single", dataType: "IfcLengthMeasure" },
|
|
636
|
+
{ name: "CoilWidth", kind: "single", dataType: "IfcLengthMeasure" },
|
|
637
|
+
{ name: "ConnectionSize", kind: "single", dataType: "IfcLengthMeasure" },
|
|
638
|
+
{ name: "FinishColor", kind: "single", dataType: "IfcLabel" },
|
|
639
|
+
{ name: "IsFreeHanging", kind: "single", dataType: "IfcBoolean" },
|
|
640
|
+
{ name: "NominalCoolingCapacity", kind: "single", dataType: "IfcPowerMeasure" },
|
|
641
|
+
{ name: "NominalHeatingCapacity", kind: "single", dataType: "IfcPowerMeasure" },
|
|
642
|
+
{ name: "NominalReturnWaterTemperatureCooling", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
643
|
+
{ name: "NominalReturnWaterTemperatureHeating", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
644
|
+
{ name: "NominalSupplyWaterTemperatureCooling", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
645
|
+
{ name: "NominalSupplyWaterTemperatureHeating", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
646
|
+
{ name: "NominalSurroundingHumidityCooling", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
647
|
+
{ name: "NominalSurroundingTemperatureCooling", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
648
|
+
{ name: "NominalSurroundingTemperatureHeating", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
649
|
+
{ name: "NominalWaterFlowCooling", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
650
|
+
{ name: "NominalWaterFlowHeating", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
651
|
+
{ name: "WaterPressureRange", kind: "single", dataType: "IfcPressureMeasure" },
|
|
652
|
+
{ name: "Weight", kind: "single", dataType: "IfcMassMeasure" },
|
|
653
|
+
],
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
name: "Pset_CoolingTowerPHistory",
|
|
657
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
658
|
+
properties: [],
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
name: "Pset_CoolingTowerTypeCommon",
|
|
662
|
+
applicableEntities: ["IfcCoolingTowerType"],
|
|
663
|
+
properties: [
|
|
664
|
+
{ name: "CapacityControl", kind: "enumeration", enumeration: ["FANCYCLING", "TWOSPEEDFAN", "VARIABLESPEEDFAN", "DAMPERSCONTROL", "BYPASSVALVECONTROL", "MULTIPLESERIESPUMPS", "TWOSPEEDPUMP", "VARIABLESPEEDPUMP", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
665
|
+
{ name: "CircuitType", kind: "enumeration", enumeration: ["OPENCIRCUIT", "CLOSEDCIRCUITWET", "CLOSEDCIRCUITDRY", "CLOSEDCIRCUITDRYWET", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
666
|
+
{ name: "ControlStrategy", kind: "enumeration", enumeration: ["FIXEDEXITINGWATERTEMP", "WETBULBTEMPRESET", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
667
|
+
{ name: "FlowArrangement", kind: "enumeration", enumeration: ["COUNTERFLOW", "CROSSFLOW", "PARALLELFLOW", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
668
|
+
{ name: "SprayType", kind: "enumeration", enumeration: ["SPRAYFILLED", "SPLASHTYPEFILL", "FILMTYPEFILL", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
669
|
+
{ name: "AmbientDesignDryBulbTemperature", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
670
|
+
{ name: "AmbientDesignWetBulbTemperature", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
671
|
+
{ name: "BasinReserveVolume", kind: "single", dataType: "IfcVolumeMeasure" },
|
|
672
|
+
{ name: "LiftElevationDifference", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
673
|
+
{ name: "NominalCapacity", kind: "single", dataType: "IfcPowerMeasure" },
|
|
674
|
+
{ name: "NumberOfCells", kind: "single", dataType: "IfcInteger" },
|
|
675
|
+
{ name: "OperationTemperatureRange", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
676
|
+
{ name: "WaterRequirement", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
677
|
+
{ name: "Weight", kind: "single", dataType: "IfcMassMeasure" },
|
|
678
|
+
],
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
name: "Pset_CoveringCeiling",
|
|
682
|
+
applicableEntities: ["IfcCovering"],
|
|
683
|
+
properties: [
|
|
684
|
+
{ name: "FragilityRating", kind: "single", dataType: "IfcLabel" },
|
|
685
|
+
{ name: "Permeability", kind: "single", dataType: "IfcNormalisedRatioMeasure" },
|
|
686
|
+
{ name: "TileLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
687
|
+
{ name: "TileWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
688
|
+
],
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
name: "Pset_CoveringCommon",
|
|
692
|
+
applicableEntities: ["IfcCovering", "IfcCoveringType"],
|
|
693
|
+
properties: [
|
|
694
|
+
{ name: "AcousticRating", kind: "single", dataType: "IfcLabel" },
|
|
695
|
+
{ name: "Combustible", kind: "single", dataType: "IfcBoolean" },
|
|
696
|
+
{ name: "Finish", kind: "single", dataType: "IfcText" },
|
|
697
|
+
{ name: "FireRating", kind: "single", dataType: "IfcLabel" },
|
|
698
|
+
{ name: "FlammabilityRating", kind: "single", dataType: "IfcLabel" },
|
|
699
|
+
{ name: "FragilityRating", kind: "single", dataType: "IfcLabel" },
|
|
700
|
+
{ name: "Material", kind: "single", dataType: "IfcLabel" },
|
|
701
|
+
{ name: "Reference", kind: "single", dataType: "IfcIdentifier" },
|
|
702
|
+
{ name: "SurfaceSpreadOfFlame", kind: "single", dataType: "IfcLabel" },
|
|
703
|
+
{ name: "TotalThickness", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
704
|
+
],
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
name: "Pset_CoveringFlooring",
|
|
708
|
+
applicableEntities: ["IfcCovering"],
|
|
709
|
+
properties: [
|
|
710
|
+
{ name: "HasAntiStaticSurface", kind: "single", dataType: "IfcBoolean" },
|
|
711
|
+
{ name: "HasNonSkidSurface", kind: "single", dataType: "IfcBoolean" },
|
|
712
|
+
],
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
name: "Pset_CurtainWallCommon",
|
|
716
|
+
applicableEntities: ["IfcCurtainWall"],
|
|
717
|
+
properties: [
|
|
718
|
+
{ name: "AcousticRating", kind: "single", dataType: "IfcLabel" },
|
|
719
|
+
{ name: "Combustible", kind: "single", dataType: "IfcBoolean" },
|
|
720
|
+
{ name: "FireRating", kind: "single", dataType: "IfcLabel" },
|
|
721
|
+
{ name: "IsExternal", kind: "single", dataType: "IfcBoolean" },
|
|
722
|
+
{ name: "Reference", kind: "single", dataType: "IfcIdentifier" },
|
|
723
|
+
{ name: "SurfaceSpreadOfFlame", kind: "single", dataType: "IfcLabel" },
|
|
724
|
+
{ name: "ThermalTransmittance", kind: "single", dataType: "IfcThermalTransmittanceMeasure" },
|
|
725
|
+
],
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
name: "Pset_DamperPHistory",
|
|
729
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
730
|
+
properties: [],
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
name: "Pset_DamperTypeCommon",
|
|
734
|
+
applicableEntities: ["IfcDamperType"],
|
|
735
|
+
properties: [
|
|
736
|
+
{ name: "BladeAction", kind: "enumeration", enumeration: ["FOLDINGCURTAIN", "PARALLEL", "OPPOSED", "SINGLE", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
737
|
+
{ name: "BladeEdge", kind: "enumeration", enumeration: ["CRIMPED", "UNCRIMPED", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
738
|
+
{ name: "BladeShape", kind: "enumeration", enumeration: ["FLAT", "FABRICATEDAIRFOIL", "EXTRUDEDAIRFOIL", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
739
|
+
{ name: "Operation", kind: "enumeration", enumeration: ["AUTOMATIC", "MANUAL", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
740
|
+
{ name: "Orientation", kind: "enumeration", enumeration: ["VERTICAL", "HORIZONTAL", "VERTICALORHORIZONTAL", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
741
|
+
{ name: "BladeThickness", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
742
|
+
{ name: "CloseOffRating", kind: "single", dataType: "IfcPressureMeasure" },
|
|
743
|
+
{ name: "FaceArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
744
|
+
{ name: "FrameDepth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
745
|
+
{ name: "FrameThickness", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
746
|
+
{ name: "FrameType", kind: "single", dataType: "IfcLabel" },
|
|
747
|
+
{ name: "LeakageFullyClosed", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
748
|
+
{ name: "MaximumAirFlowRate", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
749
|
+
{ name: "MaximumWorkingPressure", kind: "single", dataType: "IfcPressureMeasure" },
|
|
750
|
+
{ name: "NominalAirFlowRate", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
751
|
+
{ name: "NumberofBlades", kind: "single", dataType: "IfcInteger" },
|
|
752
|
+
{ name: "OpenPressureDrop", kind: "single", dataType: "IfcPressureMeasure" },
|
|
753
|
+
{ name: "TemperatureRange", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
754
|
+
{ name: "TemperatureRating", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
755
|
+
{ name: "TorqueRange", kind: "single", dataType: "IfcTorqueMeasure" },
|
|
756
|
+
{ name: "LeakageCurve", kind: "unknown" },
|
|
757
|
+
{ name: "LossCoefficentCurve", kind: "unknown" },
|
|
758
|
+
{ name: "RegeneratedSoundCurve", kind: "unknown" },
|
|
759
|
+
],
|
|
760
|
+
},
|
|
761
|
+
{
|
|
762
|
+
name: "Pset_DamperTypeControlDamper",
|
|
763
|
+
applicableEntities: ["IfcDamperType"],
|
|
764
|
+
properties: [
|
|
765
|
+
{ name: "ControlDamperOperation", kind: "enumeration", enumeration: ["LINEAR", "EXPONENTIAL", "IFCPOLYLINE", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
766
|
+
{ name: "TorqueRange", kind: "single", dataType: "IfcTorqueMeasure" },
|
|
767
|
+
],
|
|
768
|
+
},
|
|
769
|
+
{
|
|
770
|
+
name: "Pset_DamperTypeFireDamper",
|
|
771
|
+
applicableEntities: ["IfcDamperType"],
|
|
772
|
+
properties: [
|
|
773
|
+
{ name: "ActuationType", kind: "enumeration", enumeration: ["GRAVITY", "SPRING", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
774
|
+
{ name: "ClosureRatingEnum", kind: "enumeration", enumeration: ["DYNAMIC", "STATIC", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
775
|
+
{ name: "FireResistanceRating", kind: "single", dataType: "IfcLabel" },
|
|
776
|
+
{ name: "FusibleLinkTemperature", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
777
|
+
],
|
|
778
|
+
},
|
|
779
|
+
{
|
|
780
|
+
name: "Pset_DamperTypeFireSmokeDamper",
|
|
781
|
+
applicableEntities: ["IfcDamperType"],
|
|
782
|
+
properties: [
|
|
783
|
+
{ name: "ControlType", kind: "single", dataType: "IfcLabel" },
|
|
784
|
+
],
|
|
785
|
+
},
|
|
786
|
+
{
|
|
787
|
+
name: "Pset_DamperTypeSmokeDamper",
|
|
788
|
+
applicableEntities: ["IfcDamperType"],
|
|
789
|
+
properties: [
|
|
790
|
+
{ name: "ControlType", kind: "single", dataType: "IfcLabel" },
|
|
791
|
+
],
|
|
792
|
+
},
|
|
793
|
+
{
|
|
794
|
+
name: "Pset_DesignPoint",
|
|
795
|
+
applicableEntities: ["IfcDistributionPort"],
|
|
796
|
+
properties: [
|
|
797
|
+
{ name: "IsDesignPoint", kind: "single", dataType: "IfcBoolean" },
|
|
798
|
+
],
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
name: "Pset_DiscreteAccessoryAnchorBolt",
|
|
802
|
+
applicableEntities: ["IfcDiscreteAccessory", "IfcDiscreteAccessoryType"],
|
|
803
|
+
properties: [
|
|
804
|
+
{ name: "AnchorBoltDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
805
|
+
{ name: "AnchorBoltLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
806
|
+
{ name: "AnchorBoltProtrusionLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
807
|
+
{ name: "AnchorBoltThreadLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
808
|
+
],
|
|
809
|
+
},
|
|
810
|
+
{
|
|
811
|
+
name: "Pset_DiscreteAccessoryColumnShoe",
|
|
812
|
+
applicableEntities: ["IfcDiscreteAccessory", "IfcDiscreteAccessoryType"],
|
|
813
|
+
properties: [
|
|
814
|
+
{ name: "ColumnShoeBasePlateDepth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
815
|
+
{ name: "ColumnShoeBasePlateThickness", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
816
|
+
{ name: "ColumnShoeBasePlateWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
817
|
+
{ name: "ColumnShoeCasingDepth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
818
|
+
{ name: "ColumnShoeCasingHeight", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
819
|
+
{ name: "ColumnShoeCasingWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
820
|
+
],
|
|
821
|
+
},
|
|
822
|
+
{
|
|
823
|
+
name: "Pset_DiscreteAccessoryCornerFixingPlate",
|
|
824
|
+
applicableEntities: ["IfcDiscreteAccessory", "IfcDiscreteAccessoryType"],
|
|
825
|
+
properties: [
|
|
826
|
+
{ name: "CornerFixingPlateFlangeWidthInPlaneX", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
827
|
+
{ name: "CornerFixingPlateFlangeWidthInPlaneZ", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
828
|
+
{ name: "CornerFixingPlateLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
829
|
+
{ name: "CornerFixingPlateThickness", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
830
|
+
],
|
|
831
|
+
},
|
|
832
|
+
{
|
|
833
|
+
name: "Pset_DiscreteAccessoryDiagonalTrussConnector",
|
|
834
|
+
applicableEntities: ["IfcDiscreteAccessory", "IfcDiscreteAccessoryType"],
|
|
835
|
+
properties: [
|
|
836
|
+
{ name: "DiagonalTrussBaseBarDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
837
|
+
{ name: "DiagonalTrussCrossBarDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
838
|
+
{ name: "DiagonalTrussCrossBarSpacing", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
839
|
+
{ name: "DiagonalTrussHeight", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
840
|
+
{ name: "DiagonalTrussLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
841
|
+
{ name: "DiagonalTrussSecondaryBarDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
842
|
+
],
|
|
843
|
+
},
|
|
844
|
+
{
|
|
845
|
+
name: "Pset_DiscreteAccessoryEdgeFixingPlate",
|
|
846
|
+
applicableEntities: ["IfcDiscreteAccessory", "IfcDiscreteAccessoryType"],
|
|
847
|
+
properties: [
|
|
848
|
+
{ name: "EdgeFixingPlateFlangeWidthInPlaneX", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
849
|
+
{ name: "EdgeFixingPlateFlangeWidthInPlaneZ", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
850
|
+
{ name: "EdgeFixingPlateLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
851
|
+
{ name: "EdgeFixingPlateThickness", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
852
|
+
],
|
|
853
|
+
},
|
|
854
|
+
{
|
|
855
|
+
name: "Pset_DiscreteAccessoryFixingSocket",
|
|
856
|
+
applicableEntities: ["IfcDiscreteAccessory", "IfcDiscreteAccessoryType"],
|
|
857
|
+
properties: [
|
|
858
|
+
{ name: "FixingSocketHeight", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
859
|
+
{ name: "FixingSocketThreadDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
860
|
+
{ name: "FixingSocketThreadLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
861
|
+
],
|
|
862
|
+
},
|
|
863
|
+
{
|
|
864
|
+
name: "Pset_DiscreteAccessoryLadderTrussConnector",
|
|
865
|
+
applicableEntities: ["IfcDiscreteAccessory", "IfcDiscreteAccessoryType"],
|
|
866
|
+
properties: [
|
|
867
|
+
{ name: "LadderTrussBaseBarDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
868
|
+
{ name: "LadderTrussCrossBarDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
869
|
+
{ name: "LadderTrussCrossBarSpacing", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
870
|
+
{ name: "LadderTrussHeight", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
871
|
+
{ name: "LadderTrussLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
872
|
+
{ name: "LadderTrussSecondaryBarDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
873
|
+
],
|
|
874
|
+
},
|
|
875
|
+
{
|
|
876
|
+
name: "Pset_DiscreteAccessoryStandardFixingPlate",
|
|
877
|
+
applicableEntities: ["IfcDiscreteAccessory", "IfcDiscreteAccessoryType"],
|
|
878
|
+
properties: [
|
|
879
|
+
{ name: "StandardFixingPlateDepth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
880
|
+
{ name: "StandardFixingPlateThickness", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
881
|
+
{ name: "StandardFixingPlateWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
882
|
+
],
|
|
883
|
+
},
|
|
884
|
+
{
|
|
885
|
+
name: "Pset_DiscreteAccessoryWireLoop",
|
|
886
|
+
applicableEntities: ["IfcDiscreteAccessory", "IfcDiscreteAccessoryType"],
|
|
887
|
+
properties: [
|
|
888
|
+
{ name: "WireDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
889
|
+
{ name: "WireEmbeddingLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
890
|
+
{ name: "WireLoopBasePlateLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
891
|
+
{ name: "WireLoopBasePlateThickness", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
892
|
+
{ name: "WireLoopBasePlateWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
893
|
+
{ name: "WireLoopLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
894
|
+
],
|
|
895
|
+
},
|
|
896
|
+
{
|
|
897
|
+
name: "Pset_DistributionChamberElementTypeFormedDuct",
|
|
898
|
+
applicableEntities: ["IfcDistributionChamberElementType"],
|
|
899
|
+
properties: [
|
|
900
|
+
{ name: "AccessCoverLoadRating", kind: "single", dataType: "IfcText" },
|
|
901
|
+
{ name: "BaseThickness", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
902
|
+
{ name: "ClearDepth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
903
|
+
{ name: "ClearWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
904
|
+
{ name: "WallThickness", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
905
|
+
],
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
name: "Pset_DistributionChamberElementTypeInspectionChamber",
|
|
909
|
+
applicableEntities: ["IfcDistributionChamberElementType"],
|
|
910
|
+
properties: [
|
|
911
|
+
{ name: "AccessCoverLoadRating", kind: "single", dataType: "IfcText" },
|
|
912
|
+
{ name: "AccessLengthOrRadius", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
913
|
+
{ name: "AccessWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
914
|
+
{ name: "BaseThickness", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
915
|
+
{ name: "ChamberLengthOrRadius", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
916
|
+
{ name: "ChamberWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
917
|
+
{ name: "InvertLevel", kind: "single", dataType: "IfcLengthMeasure" },
|
|
918
|
+
{ name: "SoffitLevel", kind: "single", dataType: "IfcLengthMeasure" },
|
|
919
|
+
{ name: "WallThickness", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
920
|
+
{ name: "WithBackdrop", kind: "single", dataType: "IfcBoolean" },
|
|
921
|
+
],
|
|
922
|
+
},
|
|
923
|
+
{
|
|
924
|
+
name: "Pset_DistributionChamberElementTypeInspectionPit",
|
|
925
|
+
applicableEntities: ["IfcDistributionChamberElementType"],
|
|
926
|
+
properties: [
|
|
927
|
+
{ name: "Depth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
928
|
+
{ name: "Length", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
929
|
+
{ name: "Width", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
930
|
+
],
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
name: "Pset_DistributionChamberElementTypeManhole",
|
|
934
|
+
applicableEntities: ["IfcDistributionChamberElementType"],
|
|
935
|
+
properties: [
|
|
936
|
+
{ name: "AccessCoverLoadRating", kind: "single", dataType: "IfcText" },
|
|
937
|
+
{ name: "AccessLengthOrRadius", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
938
|
+
{ name: "AccessWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
939
|
+
{ name: "BaseThickness", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
940
|
+
{ name: "HasSteps", kind: "single", dataType: "IfcBoolean" },
|
|
941
|
+
{ name: "InvertLevel", kind: "single", dataType: "IfcLengthMeasure" },
|
|
942
|
+
{ name: "IsShallow", kind: "single", dataType: "IfcBoolean" },
|
|
943
|
+
{ name: "SoffitLevel", kind: "single", dataType: "IfcLengthMeasure" },
|
|
944
|
+
{ name: "WallThickness", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
945
|
+
{ name: "WithBackdrop", kind: "single", dataType: "IfcBoolean" },
|
|
946
|
+
],
|
|
947
|
+
},
|
|
948
|
+
{
|
|
949
|
+
name: "Pset_DistributionChamberElementTypeMeterChamber",
|
|
950
|
+
applicableEntities: ["IfcDistributionChamberElementType"],
|
|
951
|
+
properties: [
|
|
952
|
+
{ name: "BaseThickness", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
953
|
+
{ name: "ChamberLengthOrRadius", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
954
|
+
{ name: "ChamberWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
955
|
+
{ name: "WallThickness", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
956
|
+
],
|
|
957
|
+
},
|
|
958
|
+
{
|
|
959
|
+
name: "Pset_DistributionChamberElementTypeSump",
|
|
960
|
+
applicableEntities: ["IfcDistributionChamberElementType"],
|
|
961
|
+
properties: [
|
|
962
|
+
{ name: "InvertLevel", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
963
|
+
{ name: "Length", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
964
|
+
{ name: "Width", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
965
|
+
],
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
name: "Pset_DistributionChamberElementTypeTrench",
|
|
969
|
+
applicableEntities: ["IfcDistributionChamberElementType"],
|
|
970
|
+
properties: [
|
|
971
|
+
{ name: "Depth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
972
|
+
{ name: "InvertLevel", kind: "single", dataType: "IfcLengthMeasure" },
|
|
973
|
+
{ name: "Width", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
974
|
+
],
|
|
975
|
+
},
|
|
976
|
+
{
|
|
977
|
+
name: "Pset_DistributionChamberElementTypeValveChamber",
|
|
978
|
+
applicableEntities: ["IfcDistributionChamberElementType"],
|
|
979
|
+
properties: [
|
|
980
|
+
{ name: "BaseThickness", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
981
|
+
{ name: "ChamberLengthOrRadius", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
982
|
+
{ name: "ChamberWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
983
|
+
{ name: "WallThickness", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
984
|
+
],
|
|
985
|
+
},
|
|
986
|
+
{
|
|
987
|
+
name: "Pset_DistributionFlowElementCommon",
|
|
988
|
+
applicableEntities: ["IfcDistributionChamberElement", "IfcDistributionFlowElement", "IfcEnergyConversionDevice", "IfcFlowController", "IfcFlowFitting", "IfcFlowMovingDevice", "IfcFlowSegment", "IfcFlowStorageDevice", "IfcFlowTerminal", "IfcFlowTreatmentDevice"],
|
|
989
|
+
properties: [
|
|
990
|
+
{ name: "Reference", kind: "single", dataType: "IfcIdentifier" },
|
|
991
|
+
],
|
|
992
|
+
},
|
|
993
|
+
{
|
|
994
|
+
name: "Pset_DistributionPortDuct",
|
|
995
|
+
applicableEntities: ["IfcDistributionPort"],
|
|
996
|
+
properties: [
|
|
997
|
+
{ name: "ConnectionType", kind: "enumeration", enumeration: ["BEADEDSLEEVE", "COMPRESSION", "CRIMP", "DRAWBAND", "DRIVESLIP", "FLANGED", "OUTSIDESLEEVE", "SLIPON", "SOLDERED", "SSLIP", "STANDINGSEAM", "SWEDGE", "WELDED", "OTHER", "NONE", "USERDEFINED", "NOTDEFINED"] },
|
|
998
|
+
{ name: "PortNumber", kind: "single", dataType: "IfcInteger" },
|
|
999
|
+
],
|
|
1000
|
+
},
|
|
1001
|
+
{
|
|
1002
|
+
name: "Pset_DistributionPortPipe",
|
|
1003
|
+
applicableEntities: ["IfcDistributionPort"],
|
|
1004
|
+
properties: [
|
|
1005
|
+
{ name: "ConnectionType", kind: "enumeration", enumeration: ["BRAZED", "COMPRESSION", "FLANGED", "GROOVED", "OUTSIDESLEEVE", "SOLDERED", "SWEDGE", "THREADED", "WELDED", "OTHER", "NONE", "UNSET"] },
|
|
1006
|
+
{ name: "PortNumber", kind: "single", dataType: "IfcInteger" },
|
|
1007
|
+
],
|
|
1008
|
+
},
|
|
1009
|
+
{
|
|
1010
|
+
name: "Pset_DoorCommon",
|
|
1011
|
+
applicableEntities: ["IfcDoor"],
|
|
1012
|
+
properties: [
|
|
1013
|
+
{ name: "AcousticRating", kind: "single", dataType: "IfcLabel" },
|
|
1014
|
+
{ name: "FireExit", kind: "single", dataType: "IfcBoolean" },
|
|
1015
|
+
{ name: "FireRating", kind: "single", dataType: "IfcLabel" },
|
|
1016
|
+
{ name: "GlazingAreaFraction", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
1017
|
+
{ name: "HandicapAccessible", kind: "single", dataType: "IfcBoolean" },
|
|
1018
|
+
{ name: "Infiltration", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
1019
|
+
{ name: "IsExternal", kind: "single", dataType: "IfcBoolean" },
|
|
1020
|
+
{ name: "Reference", kind: "single", dataType: "IfcIdentifier" },
|
|
1021
|
+
{ name: "SecurityRating", kind: "single", dataType: "IfcLabel" },
|
|
1022
|
+
{ name: "SelfClosing", kind: "single", dataType: "IfcBoolean" },
|
|
1023
|
+
{ name: "SmokeStop", kind: "single", dataType: "IfcBoolean" },
|
|
1024
|
+
{ name: "ThermalTransmittance", kind: "single", dataType: "IfcThermalTransmittanceMeasure" },
|
|
1025
|
+
],
|
|
1026
|
+
},
|
|
1027
|
+
{
|
|
1028
|
+
name: "Pset_DoorWindowGlazingType",
|
|
1029
|
+
applicableEntities: ["IfcDoor", "IfcWindow"],
|
|
1030
|
+
properties: [
|
|
1031
|
+
{ name: "BeamRadiationTransmittance", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
1032
|
+
{ name: "FillGas", kind: "single", dataType: "IfcLabel" },
|
|
1033
|
+
{ name: "GlassColor", kind: "single", dataType: "IfcLabel" },
|
|
1034
|
+
{ name: "GlassLayers", kind: "single", dataType: "IfcCountMeasure" },
|
|
1035
|
+
{ name: "GlassThickness1", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1036
|
+
{ name: "GlassThickness2", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1037
|
+
{ name: "GlassThickness3", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1038
|
+
{ name: "IsCoated", kind: "single", dataType: "IfcBoolean" },
|
|
1039
|
+
{ name: "IsLaminated", kind: "single", dataType: "IfcBoolean" },
|
|
1040
|
+
{ name: "IsTempered", kind: "single", dataType: "IfcBoolean" },
|
|
1041
|
+
{ name: "IsWired", kind: "single", dataType: "IfcBoolean" },
|
|
1042
|
+
{ name: "Reflectivity", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
1043
|
+
{ name: "SolarHeatGainTransmittance", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
1044
|
+
{ name: "ThermalTransmittanceSummer", kind: "single", dataType: "IfcThermalTransmittanceMeasure" },
|
|
1045
|
+
{ name: "ThermalTransmittanceWinter", kind: "single", dataType: "IfcThermalTransmittanceMeasure" },
|
|
1046
|
+
{ name: "Translucency", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
1047
|
+
],
|
|
1048
|
+
},
|
|
1049
|
+
{
|
|
1050
|
+
name: "Pset_DoorWindowShadingType",
|
|
1051
|
+
applicableEntities: ["IfcDoor", "IfcWindow"],
|
|
1052
|
+
properties: [
|
|
1053
|
+
{ name: "ExternalShadingCoefficient", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
1054
|
+
{ name: "InsetShadingCoefficient", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
1055
|
+
{ name: "InternalShadingCoefficient", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
1056
|
+
],
|
|
1057
|
+
},
|
|
1058
|
+
{
|
|
1059
|
+
name: "Pset_DrainageCatchment",
|
|
1060
|
+
applicableEntities: ["IfcSite"],
|
|
1061
|
+
properties: [
|
|
1062
|
+
{ name: "AreaDrained", kind: "single", dataType: "IfcAreaMeasure" },
|
|
1063
|
+
],
|
|
1064
|
+
},
|
|
1065
|
+
{
|
|
1066
|
+
name: "Pset_DrainageCulvert",
|
|
1067
|
+
applicableEntities: ["IfcSystem"],
|
|
1068
|
+
properties: [
|
|
1069
|
+
{ name: "ClearDepth", kind: "single", dataType: "IfcLengthMeasure" },
|
|
1070
|
+
{ name: "InternalWidth", kind: "single", dataType: "IfcLengthMeasure" },
|
|
1071
|
+
],
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
name: "Pset_DrainageOutfall",
|
|
1075
|
+
applicableEntities: ["IfcProxy"],
|
|
1076
|
+
properties: [
|
|
1077
|
+
{ name: "InvertLevel", kind: "single", dataType: "IfcLengthMeasure" },
|
|
1078
|
+
],
|
|
1079
|
+
},
|
|
1080
|
+
{
|
|
1081
|
+
name: "Pset_DrainageReserve",
|
|
1082
|
+
applicableEntities: ["IfcSite"],
|
|
1083
|
+
properties: [
|
|
1084
|
+
{ name: "Width", kind: "single", dataType: "IfcLengthMeasure" },
|
|
1085
|
+
],
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
name: "Pset_Draughting",
|
|
1089
|
+
applicableEntities: ["IfcElement", "IfcSpatialStructureElement"],
|
|
1090
|
+
properties: [
|
|
1091
|
+
{ name: "LayerName", kind: "single", dataType: "IfcIdentifier" },
|
|
1092
|
+
],
|
|
1093
|
+
},
|
|
1094
|
+
{
|
|
1095
|
+
name: "Pset_DuctConnection",
|
|
1096
|
+
applicableEntities: ["IfcDistributionElement"],
|
|
1097
|
+
properties: [
|
|
1098
|
+
{ name: "ConnectionType", kind: "single", dataType: "IfcText" },
|
|
1099
|
+
],
|
|
1100
|
+
},
|
|
1101
|
+
{
|
|
1102
|
+
name: "Pset_DuctDesignCriteria",
|
|
1103
|
+
applicableEntities: ["IfcSystem"],
|
|
1104
|
+
properties: [
|
|
1105
|
+
{ name: "DuctSizingMethod", kind: "enumeration", enumeration: ["CONSTANTFRICTION", "CONSTANTPRESSURE", "STATICREGAIN", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1106
|
+
{ name: "AspectRatio", kind: "single", dataType: "IfcReal" },
|
|
1107
|
+
{ name: "DesignName", kind: "single", dataType: "IfcText" },
|
|
1108
|
+
{ name: "FrictionLoss", kind: "single", dataType: "IfcReal" },
|
|
1109
|
+
{ name: "LeakageClass", kind: "single", dataType: "IfcPressureMeasure" },
|
|
1110
|
+
{ name: "MaximumVelocity", kind: "single", dataType: "IfcLinearVelocityMeasure" },
|
|
1111
|
+
{ name: "MinimumHeight", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1112
|
+
{ name: "MinimumWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1113
|
+
{ name: "PressureClass", kind: "single", dataType: "IfcPressureMeasure" },
|
|
1114
|
+
{ name: "ScrapFactor", kind: "single", dataType: "IfcReal" },
|
|
1115
|
+
],
|
|
1116
|
+
},
|
|
1117
|
+
{
|
|
1118
|
+
name: "Pset_DuctFittingPHistory",
|
|
1119
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
1120
|
+
properties: [],
|
|
1121
|
+
},
|
|
1122
|
+
{
|
|
1123
|
+
name: "Pset_DuctFittingTypeCommon",
|
|
1124
|
+
applicableEntities: ["IfcDuctFittingType"],
|
|
1125
|
+
properties: [
|
|
1126
|
+
{ name: "EndStyleTreatment", kind: "single", dataType: "IfcText" },
|
|
1127
|
+
{ name: "MaterialThickness", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1128
|
+
{ name: "NominalDiameterOrWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1129
|
+
{ name: "NominalHeight", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1130
|
+
{ name: "PressureClass", kind: "single", dataType: "IfcPressureMeasure" },
|
|
1131
|
+
{ name: "PressureRange", kind: "single", dataType: "IfcPressureMeasure" },
|
|
1132
|
+
{ name: "SubType", kind: "single", dataType: "IfcText" },
|
|
1133
|
+
{ name: "TemperatureRange", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
1134
|
+
{ name: "UnitWeight", kind: "single", dataType: "IfcMassPerLengthMeasure" },
|
|
1135
|
+
],
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
name: "Pset_DuctSegmentPHistory",
|
|
1139
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
1140
|
+
properties: [],
|
|
1141
|
+
},
|
|
1142
|
+
{
|
|
1143
|
+
name: "Pset_DuctSegmentTypeCommon",
|
|
1144
|
+
applicableEntities: ["IfcDuctSegmentType"],
|
|
1145
|
+
properties: [
|
|
1146
|
+
{ name: "Shape", kind: "enumeration", enumeration: ["FLATOVAL", "RECTANGULAR", "ROUND", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1147
|
+
{ name: "EndStyleTreatment", kind: "single", dataType: "IfcText" },
|
|
1148
|
+
{ name: "Length", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1149
|
+
{ name: "LongitudinalSeam", kind: "single", dataType: "IfcText" },
|
|
1150
|
+
{ name: "MaterialThickness", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1151
|
+
{ name: "NominalDiameterOrWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1152
|
+
{ name: "NominalHeight", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1153
|
+
{ name: "PressureRange", kind: "single", dataType: "IfcPressureMeasure" },
|
|
1154
|
+
{ name: "Reinforcement", kind: "single", dataType: "IfcLabel" },
|
|
1155
|
+
{ name: "ReinforcementSpacing", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1156
|
+
{ name: "TemperatureRange", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
1157
|
+
{ name: "UnitWeight", kind: "single", dataType: "IfcMassMeasure" },
|
|
1158
|
+
{ name: "WorkingPressure", kind: "single", dataType: "IfcPressureMeasure" },
|
|
1159
|
+
],
|
|
1160
|
+
},
|
|
1161
|
+
{
|
|
1162
|
+
name: "Pset_DuctSilencerPHistory",
|
|
1163
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
1164
|
+
properties: [
|
|
1165
|
+
{ name: "AirPressureDropCurve", kind: "single", dataType: "IfcPressureMeasure" },
|
|
1166
|
+
],
|
|
1167
|
+
},
|
|
1168
|
+
{
|
|
1169
|
+
name: "Pset_DuctSilencerTypeCommon",
|
|
1170
|
+
applicableEntities: ["IfcDuctSilencerType"],
|
|
1171
|
+
properties: [
|
|
1172
|
+
{ name: "Shape", kind: "enumeration", enumeration: ["FLATOVAL", "RECTANGULAR", "ROUND", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1173
|
+
{ name: "AirFlowrateRange", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
1174
|
+
{ name: "HasExteriorInsulation", kind: "single", dataType: "IfcBoolean" },
|
|
1175
|
+
{ name: "HydraulicDiameter", kind: "single", dataType: "IfcLengthMeasure" },
|
|
1176
|
+
{ name: "Length", kind: "single", dataType: "IfcLengthMeasure" },
|
|
1177
|
+
{ name: "TemperatureRange", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
1178
|
+
{ name: "Weight", kind: "single", dataType: "IfcMassMeasure" },
|
|
1179
|
+
{ name: "WorkingPressureRange", kind: "single", dataType: "IfcPressureMeasure" },
|
|
1180
|
+
],
|
|
1181
|
+
},
|
|
1182
|
+
{
|
|
1183
|
+
name: "Pset_ElectricalCircuit",
|
|
1184
|
+
applicableEntities: ["IfcElectricalCircuit"],
|
|
1185
|
+
properties: [
|
|
1186
|
+
{ name: "Diversity", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
1187
|
+
{ name: "MaximumAllowedVoltageDrop", kind: "single", dataType: "IfcElectricVoltageMeasure" },
|
|
1188
|
+
{ name: "NetImpedance", kind: "single", dataType: "IfcElectricResistanceMeasure" },
|
|
1189
|
+
{ name: "NumberOfPhases", kind: "single", dataType: "IfcInteger" },
|
|
1190
|
+
],
|
|
1191
|
+
},
|
|
1192
|
+
{
|
|
1193
|
+
name: "Pset_ElectricalDeviceCommon",
|
|
1194
|
+
applicableEntities: ["IfcDistributionElement"],
|
|
1195
|
+
properties: [
|
|
1196
|
+
{ name: "InsulationStandardClass", kind: "enumeration", enumeration: ["Class0Appliance", "Class0IAppliance", "ClassIAppliance", "ClassIIAppliance", "ClassIIIAppliance", "NotKnown", "Unset"] },
|
|
1197
|
+
{ name: "ElectricalDeviceNominalPower", kind: "single", dataType: "IfcPowerMeasure" },
|
|
1198
|
+
{ name: "HasProtectiveEarth", kind: "single", dataType: "IfcBoolean" },
|
|
1199
|
+
{ name: "IP_Code", kind: "single", dataType: "IfcLabel" },
|
|
1200
|
+
{ name: "NominalCurrent", kind: "single", dataType: "IfcElectricCurrentMeasure" },
|
|
1201
|
+
{ name: "NominalFrequencyRange", kind: "single", dataType: "IfcFrequencyMeasure" },
|
|
1202
|
+
{ name: "NominalVoltage", kind: "single", dataType: "IfcElectricVoltageMeasure" },
|
|
1203
|
+
{ name: "NumberOfPoles", kind: "single", dataType: "IfcInteger" },
|
|
1204
|
+
{ name: "PhaseAngle", kind: "single", dataType: "IfcPositivePlaneAngleMeasure" },
|
|
1205
|
+
{ name: "PhaseReference", kind: "single", dataType: "IfcIdentifier" },
|
|
1206
|
+
{ name: "UsageCurrent", kind: "single", dataType: "IfcElectricCurrentMeasure" },
|
|
1207
|
+
],
|
|
1208
|
+
},
|
|
1209
|
+
{
|
|
1210
|
+
name: "Pset_ElectricDistributionPointCommon",
|
|
1211
|
+
applicableEntities: ["IfcElectricDistributionPoint"],
|
|
1212
|
+
properties: [
|
|
1213
|
+
{ name: "CaseWeight", kind: "single", dataType: "IfcMassMeasure" },
|
|
1214
|
+
{ name: "IsMain", kind: "single", dataType: "IfcBoolean" },
|
|
1215
|
+
{ name: "NumberOfDoors", kind: "single", dataType: "IfcInteger" },
|
|
1216
|
+
{ name: "NumberOfOpenings", kind: "single", dataType: "IfcInteger" },
|
|
1217
|
+
],
|
|
1218
|
+
},
|
|
1219
|
+
{
|
|
1220
|
+
name: "Pset_ElectricGeneratorTypeCommon",
|
|
1221
|
+
applicableEntities: ["IfcElectricGeneratorType"],
|
|
1222
|
+
properties: [
|
|
1223
|
+
{ name: "ElectricGeneratorEfficiency", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
1224
|
+
{ name: "MaximumPowerOutput", kind: "single", dataType: "IfcPowerMeasure" },
|
|
1225
|
+
{ name: "StartCurrentFactor", kind: "single", dataType: "IfcReal" },
|
|
1226
|
+
],
|
|
1227
|
+
},
|
|
1228
|
+
{
|
|
1229
|
+
name: "Pset_ElectricHeaterTypeElectricalCableHeater",
|
|
1230
|
+
applicableEntities: ["IfcElectricHeaterType"],
|
|
1231
|
+
properties: [
|
|
1232
|
+
{ name: "HeatOutputPerUnitLength", kind: "single", dataType: "IfcPowerMeasure" },
|
|
1233
|
+
],
|
|
1234
|
+
},
|
|
1235
|
+
{
|
|
1236
|
+
name: "Pset_ElectricHeaterTypeElectricalMatHeater",
|
|
1237
|
+
applicableEntities: ["IfcElectricHeaterType"],
|
|
1238
|
+
properties: [
|
|
1239
|
+
{ name: "HeatOutputPerUnitArea", kind: "single", dataType: "IfcPowerMeasure" },
|
|
1240
|
+
],
|
|
1241
|
+
},
|
|
1242
|
+
{
|
|
1243
|
+
name: "Pset_ElectricHeaterTypeElectricalPointHeater",
|
|
1244
|
+
applicableEntities: ["IfcElectricHeaterType"],
|
|
1245
|
+
properties: [
|
|
1246
|
+
{ name: "HeatOutput", kind: "single", dataType: "IfcPowerMeasure" },
|
|
1247
|
+
],
|
|
1248
|
+
},
|
|
1249
|
+
{
|
|
1250
|
+
name: "Pset_ElectricMotorTypeCommon",
|
|
1251
|
+
applicableEntities: ["IfcElectricMotorType", "IfcFanType", "IfcPumpType"],
|
|
1252
|
+
properties: [
|
|
1253
|
+
{ name: "MotorEnclosureType", kind: "enumeration", enumeration: ["OpenDripProof", "TotallyEnclosedAirOver", "TotallyEnclosedFanCooled", "TotallyEnclosedNonVentilated", "Other", "NotKnown", "Unset"] },
|
|
1254
|
+
{ name: "ElectricMotorEfficiency", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
1255
|
+
{ name: "FrameSize", kind: "single", dataType: "IfcLabel" },
|
|
1256
|
+
{ name: "HasPartWinding", kind: "single", dataType: "IfcBoolean" },
|
|
1257
|
+
{ name: "IsGuarded", kind: "single", dataType: "IfcBoolean" },
|
|
1258
|
+
{ name: "LockedRotorCurrent", kind: "single", dataType: "IfcElectricCurrentMeasure" },
|
|
1259
|
+
{ name: "MaximumPowerOutput", kind: "single", dataType: "IfcPowerMeasure" },
|
|
1260
|
+
{ name: "StartCurrentFactor", kind: "single", dataType: "IfcReal" },
|
|
1261
|
+
],
|
|
1262
|
+
},
|
|
1263
|
+
{
|
|
1264
|
+
name: "Pset_ElementShading",
|
|
1265
|
+
applicableEntities: ["IfcElement"],
|
|
1266
|
+
properties: [
|
|
1267
|
+
{ name: "ShadingDeviceType", kind: "enumeration", enumeration: ["FIXED", "MOVABLE", "EXTERIOR", "INTERIOR", "OVERHANG", "SIDEFIN", "USERDEFINED", "NOTDEFINED"] },
|
|
1268
|
+
{ name: "AverageSolarTransmittance", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
1269
|
+
{ name: "AverageVisibleTransmittance", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
1270
|
+
{ name: "Azimuth", kind: "single", dataType: "IfcPositivePlaneAngleMeasure" },
|
|
1271
|
+
{ name: "Color", kind: "single", dataType: "IfcLabel" },
|
|
1272
|
+
{ name: "Inclination", kind: "single", dataType: "IfcPositivePlaneAngleMeasure" },
|
|
1273
|
+
{ name: "Reflectance", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
1274
|
+
{ name: "Roughness", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1275
|
+
{ name: "TiltRange", kind: "single", dataType: "IfcPlaneAngleMeasure" },
|
|
1276
|
+
],
|
|
1277
|
+
},
|
|
1278
|
+
{
|
|
1279
|
+
name: "Pset_EnergyConsumptionPHistoryElectricity",
|
|
1280
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
1281
|
+
properties: [],
|
|
1282
|
+
},
|
|
1283
|
+
{
|
|
1284
|
+
name: "Pset_EnergyConsumptionPHistoryFuel",
|
|
1285
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
1286
|
+
properties: [],
|
|
1287
|
+
},
|
|
1288
|
+
{
|
|
1289
|
+
name: "Pset_EnergyConsumptionPHistorySteam",
|
|
1290
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
1291
|
+
properties: [],
|
|
1292
|
+
},
|
|
1293
|
+
{
|
|
1294
|
+
name: "Pset_EnergyConversionDeviceCoil",
|
|
1295
|
+
applicableEntities: ["IfcEnergyConversionDevice"],
|
|
1296
|
+
properties: [
|
|
1297
|
+
{ name: "HasSoundAttentuation", kind: "single", dataType: "IfcBoolean" },
|
|
1298
|
+
],
|
|
1299
|
+
},
|
|
1300
|
+
{
|
|
1301
|
+
name: "Pset_EnergyConversionDeviceSpaceHeaterPanel",
|
|
1302
|
+
applicableEntities: ["IfcEnergyConversionDevice"],
|
|
1303
|
+
properties: [
|
|
1304
|
+
{ name: "NumberOfPanels", kind: "single", dataType: "IfcInteger" },
|
|
1305
|
+
],
|
|
1306
|
+
},
|
|
1307
|
+
{
|
|
1308
|
+
name: "Pset_EnergyConversionDeviceSpaceHeaterSectional",
|
|
1309
|
+
applicableEntities: ["IfcEnergyConversionDevice"],
|
|
1310
|
+
properties: [
|
|
1311
|
+
{ name: "NumberOfSections", kind: "single", dataType: "IfcInteger" },
|
|
1312
|
+
],
|
|
1313
|
+
},
|
|
1314
|
+
{
|
|
1315
|
+
name: "Pset_EvaporativeCoolerPHistory",
|
|
1316
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
1317
|
+
properties: [
|
|
1318
|
+
{ name: "AirPressureDropCurve", kind: "single", dataType: "IfcPressureMeasure" },
|
|
1319
|
+
{ name: "EffectivenessTable", kind: "single", dataType: "IfcReal" },
|
|
1320
|
+
{ name: "WaterPressDropCurve", kind: "single", dataType: "IfcPressureMeasure" },
|
|
1321
|
+
],
|
|
1322
|
+
},
|
|
1323
|
+
{
|
|
1324
|
+
name: "Pset_EvaporativeCoolerTypeCommon",
|
|
1325
|
+
applicableEntities: ["IfcEvaporativeCoolerType"],
|
|
1326
|
+
properties: [
|
|
1327
|
+
{ name: "FlowArrangement", kind: "enumeration", enumeration: ["COUNTERFLOW", "CROSSFLOW", "PARALLELFLOW", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1328
|
+
{ name: "HeatExchangeArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
1329
|
+
{ name: "OperationTemperatureRange", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
1330
|
+
{ name: "WaterRequirement", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
1331
|
+
{ name: "Weight", kind: "single", dataType: "IfcMassMeasure" },
|
|
1332
|
+
],
|
|
1333
|
+
},
|
|
1334
|
+
{
|
|
1335
|
+
name: "Pset_EvaporatorPHistory",
|
|
1336
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
1337
|
+
properties: [],
|
|
1338
|
+
},
|
|
1339
|
+
{
|
|
1340
|
+
name: "Pset_EvaporatorTypeCommon",
|
|
1341
|
+
applicableEntities: ["IfcEvaporatorType"],
|
|
1342
|
+
properties: [
|
|
1343
|
+
{ name: "EvaporatorCoolant", kind: "enumeration", enumeration: ["WATER", "BRINE", "GLYCOL", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1344
|
+
{ name: "EvaporatorMediumType", kind: "enumeration", enumeration: ["COLDLIQUID", "COLDAIR", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1345
|
+
{ name: "RefrigerantClass", kind: "enumeration", enumeration: ["CFC", "HCFC", "HFC", "HYDROCARBONS", "AMMONIA", "CO2", "H2O", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1346
|
+
{ name: "ExternalSurfaceArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
1347
|
+
{ name: "InternalRefrigerantVolume", kind: "single", dataType: "IfcVolumeMeasure" },
|
|
1348
|
+
{ name: "InternalSurfaceArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
1349
|
+
{ name: "InternalWaterVolume", kind: "single", dataType: "IfcVolumeMeasure" },
|
|
1350
|
+
{ name: "NominalHeatTransferArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
1351
|
+
{ name: "NominalHeatTransferCoefficient", kind: "single", dataType: "IfcThermalTransmittanceMeasure" },
|
|
1352
|
+
],
|
|
1353
|
+
},
|
|
1354
|
+
{
|
|
1355
|
+
name: "Pset_FanPHistory",
|
|
1356
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
1357
|
+
properties: [
|
|
1358
|
+
{ name: "EfficiencyCurve", kind: "unknown" },
|
|
1359
|
+
{ name: "PressureCurve", kind: "unknown" },
|
|
1360
|
+
],
|
|
1361
|
+
},
|
|
1362
|
+
{
|
|
1363
|
+
name: "Pset_FanTypeCommon",
|
|
1364
|
+
applicableEntities: ["IfcFanType"],
|
|
1365
|
+
properties: [
|
|
1366
|
+
{ name: "CapacityControlType", kind: "enumeration", enumeration: ["INLETVANE", "VARIABLESPEEDDRIVE", "BLADEPITCHANGLE", "TWOSPEED", "DISCHARGEDAMPER", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1367
|
+
{ name: "MotorDriveType", kind: "enumeration", enumeration: ["DIRECTDRIVE", "BELTDRIVE", "COUPLING", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1368
|
+
{ name: "NominalAirFlowRate", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
1369
|
+
{ name: "NominalPowerRate", kind: "single", dataType: "IfcPowerMeasure" },
|
|
1370
|
+
{ name: "NominalRotationSpeed", kind: "single", dataType: "IfcRotationalFrequencyMeasure" },
|
|
1371
|
+
{ name: "NominalStaticPressure", kind: "single", dataType: "IfcPressureMeasure" },
|
|
1372
|
+
{ name: "NominalTotalPressure", kind: "single", dataType: "IfcPressureMeasure" },
|
|
1373
|
+
{ name: "OperationalCriteria", kind: "single", dataType: "IfcTimeMeasure" },
|
|
1374
|
+
{ name: "OperationTemperatureRange", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
1375
|
+
{ name: "Weight", kind: "single", dataType: "IfcMassMeasure" },
|
|
1376
|
+
],
|
|
1377
|
+
},
|
|
1378
|
+
{
|
|
1379
|
+
name: "Pset_FanTypeSmokeControl",
|
|
1380
|
+
applicableEntities: ["IfcFanType"],
|
|
1381
|
+
properties: [
|
|
1382
|
+
{ name: "MaximumDesignTemperature", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
1383
|
+
{ name: "OperationalCriteria", kind: "single", dataType: "IfcTimeMeasure" },
|
|
1384
|
+
{ name: "SmokeControlFlowrate", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
1385
|
+
],
|
|
1386
|
+
},
|
|
1387
|
+
{
|
|
1388
|
+
name: "Pset_FilterPHistory",
|
|
1389
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
1390
|
+
properties: [],
|
|
1391
|
+
},
|
|
1392
|
+
{
|
|
1393
|
+
name: "Pset_FilterTypeAirParticleFilter",
|
|
1394
|
+
applicableEntities: ["IfcFilterType"],
|
|
1395
|
+
properties: [
|
|
1396
|
+
{ name: "AirParticleFilterType", kind: "enumeration", enumeration: ["COARSEMETALSCREEN", "COARSECELLFOAMS", "COARSESPUNGLASS", "MEDIUMELECTRETFILTER", "MEDIUMNATURALFIBERFILTER", "HEPAFILTER", "ULPAFILTER", "MEMBRANEFILTERS", "RENEWABLEMOVINGCURTIANDRYMEDIAFILTER", "ELECTRICALFILTER", "ROLLFORM", "ADHESIVERESERVOIR", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1397
|
+
{ name: "SeparationType", kind: "enumeration", enumeration: ["BAG", "PLEAT", "TREADSEPARATION", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1398
|
+
{ name: "DustHoldingCapacity", kind: "single", dataType: "IfcMassMeasure" },
|
|
1399
|
+
{ name: "FaceSurfaceArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
1400
|
+
{ name: "MediaExtendedArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
1401
|
+
{ name: "NominalCountedEfficiency", kind: "single", dataType: "IfcReal" },
|
|
1402
|
+
{ name: "NominalWeightedEfficiency", kind: "single", dataType: "IfcReal" },
|
|
1403
|
+
{ name: "CountedEfficiencyCurve", kind: "unknown" },
|
|
1404
|
+
{ name: "PressureDropCurve", kind: "unknown" },
|
|
1405
|
+
{ name: "WeightedEfficiencyCurve", kind: "unknown" },
|
|
1406
|
+
],
|
|
1407
|
+
},
|
|
1408
|
+
{
|
|
1409
|
+
name: "Pset_FilterTypeCommon",
|
|
1410
|
+
applicableEntities: ["IfcFilterType"],
|
|
1411
|
+
properties: [
|
|
1412
|
+
{ name: "FinalResistance", kind: "single", dataType: "IfcPressureMeasure" },
|
|
1413
|
+
{ name: "FlowRateRange", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
1414
|
+
{ name: "InitialResistance", kind: "single", dataType: "IfcPressureMeasure" },
|
|
1415
|
+
{ name: "NominalFilterFaceVelocity", kind: "single", dataType: "IfcLinearVelocityMeasure" },
|
|
1416
|
+
{ name: "NominalFlowrate", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
1417
|
+
{ name: "NominalMediaSurfaceVelocity", kind: "single", dataType: "IfcLinearVelocityMeasure" },
|
|
1418
|
+
{ name: "NominalParticleGeometricMeanDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1419
|
+
{ name: "NominalParticleGeometricStandardDeviation", kind: "single", dataType: "IfcReal" },
|
|
1420
|
+
{ name: "NominalPressureDrop", kind: "single", dataType: "IfcPressureMeasure" },
|
|
1421
|
+
{ name: "OperationTemperatureRange", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
1422
|
+
{ name: "Weight", kind: "single", dataType: "IfcMassMeasure" },
|
|
1423
|
+
],
|
|
1424
|
+
},
|
|
1425
|
+
{
|
|
1426
|
+
name: "Pset_FireRatingProperties",
|
|
1427
|
+
applicableEntities: ["IfcElement", "IfcSpatialStructureElement"],
|
|
1428
|
+
properties: [
|
|
1429
|
+
{ name: "FireResistanceRating", kind: "single", dataType: "IfcLabel" },
|
|
1430
|
+
{ name: "IsCombustible", kind: "single", dataType: "IfcBoolean" },
|
|
1431
|
+
{ name: "SurfaceSpreadOfFlame", kind: "single", dataType: "IfcLabel" },
|
|
1432
|
+
],
|
|
1433
|
+
},
|
|
1434
|
+
{
|
|
1435
|
+
name: "Pset_FireSuppressionTerminalTypeBreechingInlet",
|
|
1436
|
+
applicableEntities: ["IfcFireSuppressionTerminalType"],
|
|
1437
|
+
properties: [
|
|
1438
|
+
{ name: "BreechingInletType", kind: "enumeration", enumeration: ["TWOWAY", "FOURWAY", "OTHER", "USERDEFINED", "NOTDEFINED"] },
|
|
1439
|
+
{ name: "CouplingType", kind: "enumeration", enumeration: ["INSTANTANEOUS_FEMALE", "INSTANTANEOUS_MALE", "OTHER", "USERDEFINED", "NOTDEFINED"] },
|
|
1440
|
+
{ name: "HasCaps", kind: "single", dataType: "IfcBoolean" },
|
|
1441
|
+
{ name: "InletDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1442
|
+
{ name: "OutletDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1443
|
+
],
|
|
1444
|
+
},
|
|
1445
|
+
{
|
|
1446
|
+
name: "Pset_FireSuppressionTerminalTypeFireHydrant",
|
|
1447
|
+
applicableEntities: ["IfcFireSuppressionTerminalType"],
|
|
1448
|
+
properties: [
|
|
1449
|
+
{ name: "FireHydrantType", kind: "enumeration", enumeration: ["DryBarrel", "WetBarrel", "Other", "NotKnown", "Unset"] },
|
|
1450
|
+
{ name: "BodyColor", kind: "single", dataType: "IfcText" },
|
|
1451
|
+
{ name: "CapColor", kind: "single", dataType: "IfcText" },
|
|
1452
|
+
{ name: "DischargeFlowRate", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
1453
|
+
{ name: "FlowClass", kind: "single", dataType: "IfcLabel" },
|
|
1454
|
+
{ name: "HoseConnectionSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1455
|
+
{ name: "NumberOfHoseConnections", kind: "single", dataType: "IfcInteger" },
|
|
1456
|
+
{ name: "PressureRating", kind: "single", dataType: "IfcPressureMeasure" },
|
|
1457
|
+
{ name: "PumperConnectionSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1458
|
+
{ name: "WaterIsPotable", kind: "single", dataType: "IfcBoolean" },
|
|
1459
|
+
],
|
|
1460
|
+
},
|
|
1461
|
+
{
|
|
1462
|
+
name: "Pset_FireSuppressionTerminalTypeHoseReel",
|
|
1463
|
+
applicableEntities: ["IfcFireSuppressionTerminalType"],
|
|
1464
|
+
properties: [
|
|
1465
|
+
{ name: "HoseNozzleType", kind: "enumeration", enumeration: ["Fog", "StraightStream", "Other", "NotKnown", "Unset"] },
|
|
1466
|
+
{ name: "HoseReelMountingType", kind: "enumeration", enumeration: ["Cabinet_Recessed", "Cabinet_SemiRecessed", "Surface", "Other", "NotKnown", "Unset"] },
|
|
1467
|
+
{ name: "HoseReelType", kind: "enumeration", enumeration: ["Rack", "Reel", "Other", "NotKnown", "Unset"] },
|
|
1468
|
+
{ name: "ClassificationAuthority", kind: "single", dataType: "IfcLabel" },
|
|
1469
|
+
{ name: "ClassOfService", kind: "single", dataType: "IfcLabel" },
|
|
1470
|
+
{ name: "HoseDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1471
|
+
{ name: "HoseLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1472
|
+
{ name: "InletConnectionSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1473
|
+
],
|
|
1474
|
+
},
|
|
1475
|
+
{
|
|
1476
|
+
name: "Pset_FireSuppressionTerminalTypeSprinkler",
|
|
1477
|
+
applicableEntities: ["IfcFireSuppressionTerminalType"],
|
|
1478
|
+
properties: [
|
|
1479
|
+
{ name: "Activation", kind: "enumeration", enumeration: ["Bulb", "FusibleSolder", "Other", "NotKnown", "Unset"] },
|
|
1480
|
+
{ name: "BulbLiquidColor", kind: "enumeration", enumeration: ["Orange", "Red", "Yellow", "Green", "Blue", "Mauve", "Other", "NotKnown", "Unset"] },
|
|
1481
|
+
{ name: "Response", kind: "enumeration", enumeration: ["Quick", "Standard"] },
|
|
1482
|
+
{ name: "SprinklerType", kind: "enumeration", enumeration: ["Ceiling", "Concealed", "Cut-off", "Pendant", "RecessedPendant", "Sidewall", "Upright", "Other", "NotKnown", "Unset"] },
|
|
1483
|
+
{ name: "ActivationTemperature", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
1484
|
+
{ name: "ConnectionSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1485
|
+
{ name: "CoverageArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
1486
|
+
{ name: "DischargeCoefficient", kind: "single", dataType: "IfcReal" },
|
|
1487
|
+
{ name: "DischargeFlowRate", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
1488
|
+
{ name: "HasDeflector", kind: "single", dataType: "IfcBoolean" },
|
|
1489
|
+
{ name: "MaximumWorkingPressure", kind: "single", dataType: "IfcPressureMeasure" },
|
|
1490
|
+
{ name: "ResidualFlowingPressure", kind: "single", dataType: "IfcPressureMeasure" },
|
|
1491
|
+
],
|
|
1492
|
+
},
|
|
1493
|
+
{
|
|
1494
|
+
name: "Pset_FlowControllerDamper",
|
|
1495
|
+
applicableEntities: ["IfcFlowController"],
|
|
1496
|
+
properties: [
|
|
1497
|
+
{ name: "SizingMethod", kind: "enumeration", enumeration: ["NOMINAL", "EXACT", "NOTKNOWN", "UNSET"] },
|
|
1498
|
+
],
|
|
1499
|
+
},
|
|
1500
|
+
{
|
|
1501
|
+
name: "Pset_FlowControllerFlowMeter",
|
|
1502
|
+
applicableEntities: ["IfcFlowController"],
|
|
1503
|
+
properties: [
|
|
1504
|
+
{ name: "Purpose", kind: "enumeration", enumeration: ["MASTER", "SUBMASTER", "SUBMETER", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1505
|
+
],
|
|
1506
|
+
},
|
|
1507
|
+
{
|
|
1508
|
+
name: "Pset_FlowFittingDuctFitting",
|
|
1509
|
+
applicableEntities: ["IfcFlowFitting"],
|
|
1510
|
+
properties: [
|
|
1511
|
+
{ name: "AbsoluteRoughnessFactor", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1512
|
+
{ name: "Color", kind: "single", dataType: "IfcLabel" },
|
|
1513
|
+
{ name: "HasLiner", kind: "single", dataType: "IfcBoolean" },
|
|
1514
|
+
],
|
|
1515
|
+
},
|
|
1516
|
+
{
|
|
1517
|
+
name: "Pset_FlowFittingPipeFitting",
|
|
1518
|
+
applicableEntities: ["IfcFlowFitting"],
|
|
1519
|
+
properties: [
|
|
1520
|
+
{ name: "Color", kind: "single", dataType: "IfcLabel" },
|
|
1521
|
+
{ name: "InteriorRoughnessCoefficient", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1522
|
+
],
|
|
1523
|
+
},
|
|
1524
|
+
{
|
|
1525
|
+
name: "Pset_FlowInstrumentTypePressureGauge",
|
|
1526
|
+
applicableEntities: ["IfcFlowInstrumentType"],
|
|
1527
|
+
properties: [
|
|
1528
|
+
{ name: "PressureGaugeType", kind: "enumeration", enumeration: ["Dial", "Digital", "Manometer", "Other", "NotKnown", "Unset"] },
|
|
1529
|
+
{ name: "DisplaySize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1530
|
+
],
|
|
1531
|
+
},
|
|
1532
|
+
{
|
|
1533
|
+
name: "Pset_FlowInstrumentTypeThermometer",
|
|
1534
|
+
applicableEntities: ["IfcFlowInstrumentType"],
|
|
1535
|
+
properties: [
|
|
1536
|
+
{ name: "ThermometerType", kind: "enumeration", enumeration: ["Dial", "Digital", "Stem", "Other", "NotKnown", "Unset"] },
|
|
1537
|
+
{ name: "DisplaySize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1538
|
+
],
|
|
1539
|
+
},
|
|
1540
|
+
{
|
|
1541
|
+
name: "Pset_FlowMeterTypeCommon",
|
|
1542
|
+
applicableEntities: ["IfcFlowMeterType"],
|
|
1543
|
+
properties: [
|
|
1544
|
+
{ name: "ReadOutType", kind: "enumeration", enumeration: ["DIAL", "DIGITAL", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1545
|
+
{ name: "IsMain", kind: "single", dataType: "IfcBoolean" },
|
|
1546
|
+
{ name: "RemoteReading", kind: "single", dataType: "IfcBoolean" },
|
|
1547
|
+
],
|
|
1548
|
+
},
|
|
1549
|
+
{
|
|
1550
|
+
name: "Pset_FlowMeterTypeEnergyMeter",
|
|
1551
|
+
applicableEntities: ["IfcFlowMeterType"],
|
|
1552
|
+
properties: [
|
|
1553
|
+
{ name: "ConnectionSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1554
|
+
],
|
|
1555
|
+
},
|
|
1556
|
+
{
|
|
1557
|
+
name: "Pset_FlowMeterTypeGasMeter",
|
|
1558
|
+
applicableEntities: ["IfcFlowMeterType"],
|
|
1559
|
+
properties: [
|
|
1560
|
+
{ name: "GasType", kind: "enumeration", enumeration: ["COMMERCIALBUTANE", "COMMERCIALPROPANE", "LIQUEFIEDPETROLEUMGAS", "NATURALGAS", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1561
|
+
{ name: "ConnectionSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1562
|
+
{ name: "MaximumFlowRate", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
1563
|
+
{ name: "MaximumPressureLoss", kind: "single", dataType: "IfcPressureMeasure" },
|
|
1564
|
+
],
|
|
1565
|
+
},
|
|
1566
|
+
{
|
|
1567
|
+
name: "Pset_FlowMeterTypeOilMeter",
|
|
1568
|
+
applicableEntities: ["IfcFlowMeterType"],
|
|
1569
|
+
properties: [
|
|
1570
|
+
{ name: "ConnectionSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1571
|
+
{ name: "MaximumFlowRate", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
1572
|
+
],
|
|
1573
|
+
},
|
|
1574
|
+
{
|
|
1575
|
+
name: "Pset_FlowMeterTypeWaterMeter",
|
|
1576
|
+
applicableEntities: ["IfcFlowMeterType"],
|
|
1577
|
+
properties: [
|
|
1578
|
+
{ name: "BackflowPreventerType", kind: "enumeration", enumeration: ["NONE", "ATMOSPHERICVACUUMBREAKER", "ANTISIPHONVALVE", "DOUBLECHECKBACKFLOWPREVENTER", "PRESSUREVACUUMBREAKER", "REDUCEDPRESSUREBACKFLOWPREVENTER", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1579
|
+
{ name: "Type", kind: "enumeration", enumeration: ["COMPOUND", "INFERENTIAL", "PISTON", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1580
|
+
{ name: "ConnectionSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1581
|
+
{ name: "MaximumFlowRate", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
1582
|
+
{ name: "MaximumPressureLoss", kind: "single", dataType: "IfcPressureMeasure" },
|
|
1583
|
+
],
|
|
1584
|
+
},
|
|
1585
|
+
{
|
|
1586
|
+
name: "Pset_FlowMovingDeviceCompressor",
|
|
1587
|
+
applicableEntities: ["IfcFlowMovingDevice"],
|
|
1588
|
+
properties: [
|
|
1589
|
+
{ name: "ImpellerDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1590
|
+
],
|
|
1591
|
+
},
|
|
1592
|
+
{
|
|
1593
|
+
name: "Pset_FlowMovingDeviceFan",
|
|
1594
|
+
applicableEntities: ["IfcFlowMovingDevice"],
|
|
1595
|
+
properties: [
|
|
1596
|
+
{ name: "ApplicationOfFan", kind: "enumeration", enumeration: ["SUPPLY", "RETURN", "EXHAUST", "COOLINGTOWER", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1597
|
+
{ name: "CoilPosition", kind: "enumeration", enumeration: ["DRAWTHROUGH", "BLOWTHROUGH", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1598
|
+
{ name: "DischargeType", kind: "enumeration", enumeration: ["DUCT", "SCREEN", "LOUVER", "DAMPER", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1599
|
+
{ name: "FanMountingType", kind: "enumeration", enumeration: ["MANUFACTUREDCURB", "FIELDERECTEDCURB", "CONCRETEPAD", "SUSPENDED", "WALLMOUNTED", "DUCTMOUNTED", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1600
|
+
{ name: "MotorPosition", kind: "enumeration", enumeration: ["INAIRSTREAM", "OUTOFAIRSTREAM", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1601
|
+
{ name: "FractionOfMotorHeatToAirStream", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
1602
|
+
{ name: "ImpellerDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1603
|
+
],
|
|
1604
|
+
},
|
|
1605
|
+
{
|
|
1606
|
+
name: "Pset_FlowMovingDeviceFanCentrifugal",
|
|
1607
|
+
applicableEntities: ["IfcFlowMovingDevice"],
|
|
1608
|
+
properties: [
|
|
1609
|
+
{ name: "Arrangement", kind: "enumeration", enumeration: ["ARRANGEMENT1", "ARRANGEMENT2", "ARRANGEMENT3", "ARRANGEMENT4", "ARRANGEMENT7", "ARRANGEMENT8", "ARRANGEMENT9", "ARRANGEMENT10", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1610
|
+
{ name: "DirectionOfRotation", kind: "enumeration", enumeration: ["CLOCKWISE", "COUNTERCLOCKWISE", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1611
|
+
{ name: "DischargePosition", kind: "enumeration", enumeration: ["TOPHORIZONTAL", "TOPANGULARDOWN", "TOPANGULARUP", "DOWNBLAST", "BOTTOMANGULARDOWN", "BOTTOMHORIZONTAL", "BOTTOMANGULARUP", "UPBLAST", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1612
|
+
],
|
|
1613
|
+
},
|
|
1614
|
+
{
|
|
1615
|
+
name: "Pset_FlowMovingDevicePump",
|
|
1616
|
+
applicableEntities: ["IfcFlowMovingDevice"],
|
|
1617
|
+
properties: [
|
|
1618
|
+
{ name: "BaseType", kind: "enumeration", enumeration: ["FRAME", "BASE", "NONE", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1619
|
+
{ name: "DriveConnectionType", kind: "enumeration", enumeration: ["DIRECTDRIVE", "BELTDRIVE", "COUPLING", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1620
|
+
{ name: "ImpellerDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1621
|
+
],
|
|
1622
|
+
},
|
|
1623
|
+
{
|
|
1624
|
+
name: "Pset_FlowSegmentDuctSegment",
|
|
1625
|
+
applicableEntities: ["IfcFlowSegment"],
|
|
1626
|
+
properties: [
|
|
1627
|
+
{ name: "Color", kind: "single", dataType: "IfcLabel" },
|
|
1628
|
+
{ name: "HasLiner", kind: "single", dataType: "IfcBoolean" },
|
|
1629
|
+
{ name: "InteriorRoughnessCoefficient", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1630
|
+
{ name: "Length", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1631
|
+
{ name: "MaterialThickness", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1632
|
+
],
|
|
1633
|
+
},
|
|
1634
|
+
{
|
|
1635
|
+
name: "Pset_FlowSegmentPipeSegment",
|
|
1636
|
+
applicableEntities: ["IfcFlowSegment"],
|
|
1637
|
+
properties: [
|
|
1638
|
+
{ name: "Color", kind: "single", dataType: "IfcLabel" },
|
|
1639
|
+
{ name: "Gradient", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
1640
|
+
{ name: "InteriorRoughnessCoefficient", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1641
|
+
{ name: "InvertElevation", kind: "single", dataType: "IfcLengthMeasure" },
|
|
1642
|
+
{ name: "Length", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1643
|
+
],
|
|
1644
|
+
},
|
|
1645
|
+
{
|
|
1646
|
+
name: "Pset_FlowStorageDeviceTank",
|
|
1647
|
+
applicableEntities: ["IfcFlowStorageDevice"],
|
|
1648
|
+
properties: [
|
|
1649
|
+
{ name: "TankComposition", kind: "enumeration", enumeration: ["COMPLEX", "ELEMENT", "PARTIAL", "NOTKNOWN", "UNSET"] },
|
|
1650
|
+
{ name: "HasLadder", kind: "single", dataType: "IfcBoolean" },
|
|
1651
|
+
{ name: "HasVisualIndicator", kind: "single", dataType: "IfcBoolean" },
|
|
1652
|
+
],
|
|
1653
|
+
},
|
|
1654
|
+
{
|
|
1655
|
+
name: "Pset_FlowTerminalAirTerminal",
|
|
1656
|
+
applicableEntities: ["IfcFlowTerminal"],
|
|
1657
|
+
properties: [
|
|
1658
|
+
{ name: "AirflowType", kind: "enumeration", enumeration: ["SUPPLYAIR", "RETURNAIR", "EXHAUSTAIR", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1659
|
+
{ name: "Location", kind: "enumeration", enumeration: ["SIDEWALLHIGH", "SIDEWALLLOW", "CEILINGPERIMETER", "CEILINGINTERIOR", "FLOOR", "SILL", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1660
|
+
],
|
|
1661
|
+
},
|
|
1662
|
+
{
|
|
1663
|
+
name: "Pset_FurnitureTypeChair",
|
|
1664
|
+
applicableEntities: ["IfcFurnitureType"],
|
|
1665
|
+
properties: [
|
|
1666
|
+
{ name: "HighestSeatingHeight", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1667
|
+
{ name: "LowestSeatingHeight", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1668
|
+
{ name: "SeatingHeight", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1669
|
+
],
|
|
1670
|
+
},
|
|
1671
|
+
{
|
|
1672
|
+
name: "Pset_FurnitureTypeCommon",
|
|
1673
|
+
applicableEntities: ["IfcFurnitureType"],
|
|
1674
|
+
properties: [
|
|
1675
|
+
{ name: "Description", kind: "single", dataType: "IfcText" },
|
|
1676
|
+
{ name: "MainColor", kind: "single", dataType: "IfcLabel" },
|
|
1677
|
+
{ name: "NominalDepth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1678
|
+
{ name: "NominalHeight", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1679
|
+
{ name: "NominalLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1680
|
+
{ name: "Style", kind: "single", dataType: "IfcLabel" },
|
|
1681
|
+
],
|
|
1682
|
+
},
|
|
1683
|
+
{
|
|
1684
|
+
name: "Pset_FurnitureTypeDesk",
|
|
1685
|
+
applicableEntities: ["IfcFurnitureType"],
|
|
1686
|
+
properties: [
|
|
1687
|
+
{ name: "WorksurfaceArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
1688
|
+
],
|
|
1689
|
+
},
|
|
1690
|
+
{
|
|
1691
|
+
name: "Pset_FurnitureTypeFileCabinet",
|
|
1692
|
+
applicableEntities: ["IfcFurnitureType"],
|
|
1693
|
+
properties: [
|
|
1694
|
+
{ name: "WithLock", kind: "single", dataType: "IfcBoolean" },
|
|
1695
|
+
],
|
|
1696
|
+
},
|
|
1697
|
+
{
|
|
1698
|
+
name: "Pset_FurnitureTypeTable",
|
|
1699
|
+
applicableEntities: ["IfcFurnitureType"],
|
|
1700
|
+
properties: [
|
|
1701
|
+
{ name: "NumberOfChairs", kind: "single", dataType: "IfcInteger" },
|
|
1702
|
+
{ name: "WorksurfaceArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
1703
|
+
],
|
|
1704
|
+
},
|
|
1705
|
+
{
|
|
1706
|
+
name: "Pset_GasTerminalPHistory",
|
|
1707
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
1708
|
+
properties: [],
|
|
1709
|
+
},
|
|
1710
|
+
{
|
|
1711
|
+
name: "Pset_GasTerminalTypeCommon",
|
|
1712
|
+
applicableEntities: ["IfcGasTerminalType"],
|
|
1713
|
+
properties: [
|
|
1714
|
+
{ name: "GasFlowRateRange", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
1715
|
+
],
|
|
1716
|
+
},
|
|
1717
|
+
{
|
|
1718
|
+
name: "Pset_GasTerminalTypeGasAppliance",
|
|
1719
|
+
applicableEntities: ["IfcGasTerminalType"],
|
|
1720
|
+
properties: [
|
|
1721
|
+
{ name: "FlueType", kind: "enumeration", enumeration: ["BALANCEDFLUE", "FLUED", "FLUELESS", "OPENFLUED", "ROOMSEALED", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1722
|
+
{ name: "GasApplianceType", kind: "enumeration", enumeration: ["GASFIRE", "GASCOOKER", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1723
|
+
],
|
|
1724
|
+
},
|
|
1725
|
+
{
|
|
1726
|
+
name: "Pset_GasTerminalTypeGasBurner",
|
|
1727
|
+
applicableEntities: ["IfcGasTerminalType"],
|
|
1728
|
+
properties: [
|
|
1729
|
+
{ name: "GasBurnerType", kind: "enumeration", enumeration: ["FORCEDDRAFT", "NATURALDRAFT", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1730
|
+
],
|
|
1731
|
+
},
|
|
1732
|
+
{
|
|
1733
|
+
name: "Pset_HeatExchangerTypeCommon",
|
|
1734
|
+
applicableEntities: ["IfcHeatExchangerType"],
|
|
1735
|
+
properties: [
|
|
1736
|
+
{ name: "Arrangement", kind: "enumeration", enumeration: ["COUNTERFLOW", "CROSSFLOW", "PARALLELFLOW", "MULTIPASS", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1737
|
+
],
|
|
1738
|
+
},
|
|
1739
|
+
{
|
|
1740
|
+
name: "Pset_HeatExchangerTypePlate",
|
|
1741
|
+
applicableEntities: ["IfcHeatExchangerType"],
|
|
1742
|
+
properties: [
|
|
1743
|
+
{ name: "NumberOfPlates", kind: "single", dataType: "IfcInteger" },
|
|
1744
|
+
],
|
|
1745
|
+
},
|
|
1746
|
+
{
|
|
1747
|
+
name: "Pset_HumidifierPHistory",
|
|
1748
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
1749
|
+
properties: [
|
|
1750
|
+
{ name: "AirPressureDropCurve", kind: "unknown" },
|
|
1751
|
+
{ name: "SaturationEfficiencyCurve", kind: "unknown" },
|
|
1752
|
+
],
|
|
1753
|
+
},
|
|
1754
|
+
{
|
|
1755
|
+
name: "Pset_HumidifierTypeCommon",
|
|
1756
|
+
applicableEntities: ["IfcHumidifierType"],
|
|
1757
|
+
properties: [
|
|
1758
|
+
{ name: "Application", kind: "enumeration", enumeration: ["PORTABLE", "FIXED", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1759
|
+
{ name: "InternalControl", kind: "enumeration", enumeration: ["ONOFF", "STEPPED", "MODULATING", "NONE", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
1760
|
+
{ name: "NominalAirFlowRate", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
1761
|
+
{ name: "NominalMoistureGain", kind: "single", dataType: "IfcMassFlowRateMeasure" },
|
|
1762
|
+
{ name: "WaterRequirement", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
1763
|
+
{ name: "Weight", kind: "single", dataType: "IfcMassMeasure" },
|
|
1764
|
+
],
|
|
1765
|
+
},
|
|
1766
|
+
{
|
|
1767
|
+
name: "Pset_LampTypeCommon",
|
|
1768
|
+
applicableEntities: ["IfcLampType"],
|
|
1769
|
+
properties: [
|
|
1770
|
+
{ name: "LampBallastType", kind: "enumeration", enumeration: ["Conventional", "Electronic", "LowLoss", "Other", "NotKnown", "Unset"] },
|
|
1771
|
+
{ name: "LampCompensationType", kind: "enumeration", enumeration: ["Capacitive", "Inductive", "Other", "NotKnown", "Unset"] },
|
|
1772
|
+
{ name: "ColorAppearance", kind: "single", dataType: "IfcLabel" },
|
|
1773
|
+
{ name: "ColorRenderingIndex", kind: "single", dataType: "IfcInteger" },
|
|
1774
|
+
{ name: "ColorTemperature", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
1775
|
+
{ name: "ContributedLuminousFlux", kind: "single", dataType: "IfcLuminousFluxMeasure" },
|
|
1776
|
+
{ name: "LampMaintenanceFactor", kind: "single", dataType: "IfcReal" },
|
|
1777
|
+
{ name: "LightEmitterNominalPower", kind: "single", dataType: "IfcPowerMeasure" },
|
|
1778
|
+
{ name: "Spectrum", kind: "unknown" },
|
|
1779
|
+
],
|
|
1780
|
+
},
|
|
1781
|
+
{
|
|
1782
|
+
name: "Pset_LightFixtureTypeCommon",
|
|
1783
|
+
applicableEntities: ["IfcLightFixtureType"],
|
|
1784
|
+
properties: [
|
|
1785
|
+
{ name: "LightFixtureMountingType", kind: "enumeration", enumeration: ["CableSpanned", "FreeStanding", "Pole_Side", "Pole_Top", "Recessed", "Surface", "Suspended", "TrackMounted", "Other", "NotKnown", "Unset"] },
|
|
1786
|
+
{ name: "LightFixturePlacingType", kind: "enumeration", enumeration: ["Ceiling", "Floor", "Furniture", "Pole", "Wall", "Other", "NotKnown", "Unset"] },
|
|
1787
|
+
{ name: "MaintenanceFactor", kind: "single", dataType: "IfcReal" },
|
|
1788
|
+
{ name: "ManufacturersSpecificInformation", kind: "single", dataType: "IfcText" },
|
|
1789
|
+
{ name: "NumberOfSources", kind: "single", dataType: "IfcInteger" },
|
|
1790
|
+
{ name: "TotalWattage", kind: "single", dataType: "IfcPowerMeasure" },
|
|
1791
|
+
],
|
|
1792
|
+
},
|
|
1793
|
+
{
|
|
1794
|
+
name: "Pset_LightFixtureTypeExitSign",
|
|
1795
|
+
applicableEntities: ["IfcLightFixtureType"],
|
|
1796
|
+
properties: [
|
|
1797
|
+
{ name: "Addressablility", kind: "enumeration", enumeration: ["Implemented", "UpgradeableTo", "NotImplemented", "Other", "NotKnown", "Unset"] },
|
|
1798
|
+
{ name: "BackupSupplySystem", kind: "enumeration", enumeration: ["LocalBattery", "CentralBattery", "Other", "NotKnown", "Unset"] },
|
|
1799
|
+
{ name: "PictogramEscapeDirection", kind: "enumeration", enumeration: ["RightArrow", "LeftArrow", "DownArrow", "UpArrow", "Other", "NotKnown", "Unset"] },
|
|
1800
|
+
{ name: "SelfTestFunction", kind: "enumeration", enumeration: ["Central", "Local", "None", "Other", "NotKnown", "Unset"] },
|
|
1801
|
+
{ name: "MinimumTextHeight", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1802
|
+
],
|
|
1803
|
+
},
|
|
1804
|
+
{
|
|
1805
|
+
name: "Pset_LightFixtureTypeThermal",
|
|
1806
|
+
applicableEntities: ["IfcLightFixtureType"],
|
|
1807
|
+
properties: [
|
|
1808
|
+
{ name: "MaximumPlenumSensibleLoad", kind: "single", dataType: "IfcPowerMeasure" },
|
|
1809
|
+
{ name: "MaximumSpaceSensibleLoad", kind: "single", dataType: "IfcPowerMeasure" },
|
|
1810
|
+
{ name: "SensibleLoadToRadiant", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
1811
|
+
],
|
|
1812
|
+
},
|
|
1813
|
+
{
|
|
1814
|
+
name: "Pset_ManufacturerOccurrence",
|
|
1815
|
+
applicableEntities: ["IfcElement"],
|
|
1816
|
+
properties: [
|
|
1817
|
+
{ name: "BarCode", kind: "single", dataType: "IfcIdentifier" },
|
|
1818
|
+
{ name: "BatchReference", kind: "single", dataType: "IfcIdentifier" },
|
|
1819
|
+
{ name: "SerialNumber", kind: "single", dataType: "IfcIdentifier" },
|
|
1820
|
+
],
|
|
1821
|
+
},
|
|
1822
|
+
{
|
|
1823
|
+
name: "Pset_ManufacturerTypeInformation",
|
|
1824
|
+
applicableEntities: ["IfcElement"],
|
|
1825
|
+
properties: [
|
|
1826
|
+
{ name: "ArticleNumber", kind: "single", dataType: "IfcIdentifier" },
|
|
1827
|
+
{ name: "Manufacturer", kind: "single", dataType: "IfcLabel" },
|
|
1828
|
+
{ name: "ModelLabel", kind: "single", dataType: "IfcLabel" },
|
|
1829
|
+
{ name: "ModelReference", kind: "single", dataType: "IfcLabel" },
|
|
1830
|
+
{ name: "ProductionYear", kind: "single", dataType: "IfcLabel" },
|
|
1831
|
+
],
|
|
1832
|
+
},
|
|
1833
|
+
{
|
|
1834
|
+
name: "Pset_MemberCommon",
|
|
1835
|
+
applicableEntities: ["IfcMember"],
|
|
1836
|
+
properties: [
|
|
1837
|
+
{ name: "FireRating", kind: "single", dataType: "IfcLabel" },
|
|
1838
|
+
{ name: "IsExternal", kind: "single", dataType: "IfcBoolean" },
|
|
1839
|
+
{ name: "LoadBearing", kind: "single", dataType: "IfcBoolean" },
|
|
1840
|
+
{ name: "Reference", kind: "single", dataType: "IfcIdentifier" },
|
|
1841
|
+
{ name: "Slope", kind: "single", dataType: "IfcPlaneAngleMeasure" },
|
|
1842
|
+
{ name: "Span", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1843
|
+
],
|
|
1844
|
+
},
|
|
1845
|
+
{
|
|
1846
|
+
name: "Pset_MultiStateInput",
|
|
1847
|
+
applicableEntities: ["IfcDistributionControlElement"],
|
|
1848
|
+
properties: [
|
|
1849
|
+
{ name: "EventEnable", kind: "enumeration", enumeration: ["To-OffNormal", "To-Fault", "To-Normal", "Other", "NotKnown", "Unset"] },
|
|
1850
|
+
{ name: "NotifyType", kind: "enumeration", enumeration: ["Alarm", "Event", "AcknowledgeNotification", "Other", "NotKnown", "Unset"] },
|
|
1851
|
+
{ name: "AlarmValues", kind: "single", dataType: "IfcInteger" },
|
|
1852
|
+
{ name: "NumberOfStates", kind: "single", dataType: "IfcInteger" },
|
|
1853
|
+
{ name: "StateText", kind: "single", dataType: "IfcText" },
|
|
1854
|
+
],
|
|
1855
|
+
},
|
|
1856
|
+
{
|
|
1857
|
+
name: "Pset_MultiStateOutput",
|
|
1858
|
+
applicableEntities: ["IfcDistributionControlElement"],
|
|
1859
|
+
properties: [
|
|
1860
|
+
{ name: "EventEnable", kind: "enumeration", enumeration: ["To-OffNormal", "To-Fault", "To-Normal", "Other", "NotKnown", "Unset"] },
|
|
1861
|
+
{ name: "NotifyType", kind: "enumeration", enumeration: ["Alarm", "Event", "AcknowledgeNotification", "Other", "NotKnown", "Unset"] },
|
|
1862
|
+
{ name: "AlarmValues", kind: "single", dataType: "IfcInteger" },
|
|
1863
|
+
{ name: "NumberOfStates", kind: "single", dataType: "IfcInteger" },
|
|
1864
|
+
{ name: "StateText", kind: "single", dataType: "IfcText" },
|
|
1865
|
+
],
|
|
1866
|
+
},
|
|
1867
|
+
{
|
|
1868
|
+
name: "Pset_OpeningElementCommon",
|
|
1869
|
+
applicableEntities: ["IfcOpeningElement"],
|
|
1870
|
+
properties: [
|
|
1871
|
+
{ name: "FireExit", kind: "single", dataType: "IfcBoolean" },
|
|
1872
|
+
{ name: "ParallelJambs", kind: "single", dataType: "IfcBoolean" },
|
|
1873
|
+
{ name: "ProtectedOpening", kind: "single", dataType: "IfcBoolean" },
|
|
1874
|
+
{ name: "Purpose", kind: "single", dataType: "IfcLabel" },
|
|
1875
|
+
{ name: "Reference", kind: "single", dataType: "IfcIdentifier" },
|
|
1876
|
+
],
|
|
1877
|
+
},
|
|
1878
|
+
{
|
|
1879
|
+
name: "Pset_OutletTypeCommon",
|
|
1880
|
+
applicableEntities: ["IfcOutletType"],
|
|
1881
|
+
properties: [
|
|
1882
|
+
{ name: "IsPluggableOutlet", kind: "single", dataType: "IfcLogical" },
|
|
1883
|
+
],
|
|
1884
|
+
},
|
|
1885
|
+
{
|
|
1886
|
+
name: "Pset_OutsideDesignCriteria",
|
|
1887
|
+
applicableEntities: ["IfcBuilding"],
|
|
1888
|
+
properties: [
|
|
1889
|
+
{ name: "BuildingThermalExposure", kind: "enumeration", enumeration: ["LIGHT", "MEDIUM", "HEAVY", "NOTKNOWN", "UNSET"] },
|
|
1890
|
+
{ name: "CoolingDryBulb", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
1891
|
+
{ name: "CoolingWetBulb", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
1892
|
+
{ name: "HeatingDryBulb", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
1893
|
+
{ name: "HeatingWetBulb", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
1894
|
+
{ name: "PrevailingWindDirection", kind: "single", dataType: "IfcPlaneAngleMeasure" },
|
|
1895
|
+
{ name: "PrevailingWindVelocity", kind: "single", dataType: "IfcLinearVelocityMeasure" },
|
|
1896
|
+
{ name: "WeatherDataStation", kind: "single", dataType: "IfcText" },
|
|
1897
|
+
],
|
|
1898
|
+
},
|
|
1899
|
+
{
|
|
1900
|
+
name: "Pset_PackingInstructions",
|
|
1901
|
+
applicableEntities: ["IfcProduct"],
|
|
1902
|
+
properties: [
|
|
1903
|
+
{ name: "PackingCareType", kind: "enumeration", enumeration: ["Fragile", "HandleWithCare", "Other", "NotKnown", "Unset"] },
|
|
1904
|
+
{ name: "SpecialInstructions", kind: "single", dataType: "IfcText" },
|
|
1905
|
+
],
|
|
1906
|
+
},
|
|
1907
|
+
{
|
|
1908
|
+
name: "Pset_Permit",
|
|
1909
|
+
applicableEntities: ["IfcPermit"],
|
|
1910
|
+
properties: [
|
|
1911
|
+
{ name: "PermitType", kind: "enumeration", enumeration: ["Access", "Work", "Other", "NotKnown", "Unset"] },
|
|
1912
|
+
{ name: "EscortRequirement", kind: "single", dataType: "IfcBoolean" },
|
|
1913
|
+
{ name: "SpecialRequirements", kind: "single", dataType: "IfcText" },
|
|
1914
|
+
],
|
|
1915
|
+
},
|
|
1916
|
+
{
|
|
1917
|
+
name: "Pset_PipeConnection",
|
|
1918
|
+
applicableEntities: ["IfcDistributionElement"],
|
|
1919
|
+
properties: [
|
|
1920
|
+
{ name: "ConnectionType", kind: "single", dataType: "IfcLabel" },
|
|
1921
|
+
],
|
|
1922
|
+
},
|
|
1923
|
+
{
|
|
1924
|
+
name: "Pset_PipeConnectionFlanged",
|
|
1925
|
+
applicableEntities: ["IfcDistributionElement"],
|
|
1926
|
+
properties: [
|
|
1927
|
+
{ name: "BoltholePitch", kind: "single", dataType: "IfcLengthMeasure" },
|
|
1928
|
+
{ name: "BoltSize", kind: "single", dataType: "IfcLengthMeasure" },
|
|
1929
|
+
{ name: "BoreSize", kind: "single", dataType: "IfcLengthMeasure" },
|
|
1930
|
+
{ name: "FlangeDiameter", kind: "single", dataType: "IfcLengthMeasure" },
|
|
1931
|
+
{ name: "FlangeStandard", kind: "single", dataType: "IfcLabel" },
|
|
1932
|
+
{ name: "FlangeTable", kind: "single", dataType: "IfcLabel" },
|
|
1933
|
+
{ name: "FlangeThickness", kind: "single", dataType: "IfcLengthMeasure" },
|
|
1934
|
+
{ name: "NumberOfBoltholes", kind: "single", dataType: "IfcInteger" },
|
|
1935
|
+
],
|
|
1936
|
+
},
|
|
1937
|
+
{
|
|
1938
|
+
name: "Pset_PipeFittingPHistory",
|
|
1939
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
1940
|
+
properties: [],
|
|
1941
|
+
},
|
|
1942
|
+
{
|
|
1943
|
+
name: "Pset_PipeFittingTypeCommon",
|
|
1944
|
+
applicableEntities: ["IfcPipeFittingType"],
|
|
1945
|
+
properties: [
|
|
1946
|
+
{ name: "EndStyleTreatment", kind: "single", dataType: "IfcLabel" },
|
|
1947
|
+
{ name: "FittingLossFactor", kind: "single", dataType: "IfcReal" },
|
|
1948
|
+
{ name: "InnerDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1949
|
+
{ name: "NominalDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1950
|
+
{ name: "OuterDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1951
|
+
{ name: "PressureClass", kind: "single", dataType: "IfcPressureMeasure" },
|
|
1952
|
+
{ name: "PressureRange", kind: "single", dataType: "IfcPressureMeasure" },
|
|
1953
|
+
{ name: "SubType", kind: "single", dataType: "IfcLabel" },
|
|
1954
|
+
{ name: "TemperatureRange", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
1955
|
+
{ name: "UnitWeight", kind: "single", dataType: "IfcMassMeasure" },
|
|
1956
|
+
],
|
|
1957
|
+
},
|
|
1958
|
+
{
|
|
1959
|
+
name: "Pset_PipeSegmentPHistory",
|
|
1960
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
1961
|
+
properties: [],
|
|
1962
|
+
},
|
|
1963
|
+
{
|
|
1964
|
+
name: "Pset_PipeSegmentTypeCommon",
|
|
1965
|
+
applicableEntities: ["IfcPipeSegmentType"],
|
|
1966
|
+
properties: [
|
|
1967
|
+
{ name: "EndStyleTreatment", kind: "single", dataType: "IfcLabel" },
|
|
1968
|
+
{ name: "InnerDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1969
|
+
{ name: "NominalDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1970
|
+
{ name: "OuterDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
1971
|
+
{ name: "PressureRange", kind: "single", dataType: "IfcPressureMeasure" },
|
|
1972
|
+
{ name: "TemperatureRange", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
1973
|
+
{ name: "UnitWeight", kind: "single", dataType: "IfcMassMeasure" },
|
|
1974
|
+
{ name: "WorkingPressure", kind: "single", dataType: "IfcPressureMeasure" },
|
|
1975
|
+
],
|
|
1976
|
+
},
|
|
1977
|
+
{
|
|
1978
|
+
name: "Pset_PipeSegmentTypeGutter",
|
|
1979
|
+
applicableEntities: ["IfcPipeSegmentType"],
|
|
1980
|
+
properties: [
|
|
1981
|
+
{ name: "FlowRating", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
1982
|
+
{ name: "Slope", kind: "single", dataType: "IfcPlaneAngleMeasure" },
|
|
1983
|
+
],
|
|
1984
|
+
},
|
|
1985
|
+
{
|
|
1986
|
+
name: "Pset_PlateCommon",
|
|
1987
|
+
applicableEntities: ["IfcPlate"],
|
|
1988
|
+
properties: [
|
|
1989
|
+
{ name: "AcousticRating", kind: "single", dataType: "IfcLabel" },
|
|
1990
|
+
{ name: "FireRating", kind: "single", dataType: "IfcLabel" },
|
|
1991
|
+
{ name: "IsExternal", kind: "single", dataType: "IfcBoolean" },
|
|
1992
|
+
{ name: "LoadBearing", kind: "single", dataType: "IfcBoolean" },
|
|
1993
|
+
{ name: "Reference", kind: "single", dataType: "IfcIdentifier" },
|
|
1994
|
+
{ name: "ThermalTransmittance", kind: "single", dataType: "IfcThermalTransmittanceMeasure" },
|
|
1995
|
+
],
|
|
1996
|
+
},
|
|
1997
|
+
{
|
|
1998
|
+
name: "Pset_PrecastConcreteElementGeneral",
|
|
1999
|
+
applicableEntities: ["IfcBeam", "IfcBuildingElementPart", "IfcBuildingElementProxy", "IfcColumn", "IfcCovering", "IfcCurtainWall", "IfcDoor", "IfcFooting", "IfcMember", "IfcPile", "IfcRailing", "IfcRamp", "IfcRampFlight", "IfcRoof", "IfcSlab", "IfcStair", "IfcStairFlight", "IfcWall", "IfcWallStandardCase"],
|
|
2000
|
+
properties: [
|
|
2001
|
+
{ name: "CornerChamfer", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2002
|
+
{ name: "ElementGrossVolume", kind: "single", dataType: "IfcVolumeMeasure" },
|
|
2003
|
+
{ name: "ElementNetVolume", kind: "single", dataType: "IfcVolumeMeasure" },
|
|
2004
|
+
{ name: "ElementWeight", kind: "single", dataType: "IfcMassMeasure" },
|
|
2005
|
+
{ name: "FormStrippingStrength", kind: "single", dataType: "IfcPressureMeasure" },
|
|
2006
|
+
{ name: "HollowCorePlugging", kind: "single", dataType: "IfcLabel" },
|
|
2007
|
+
{ name: "InitialTension", kind: "single", dataType: "IfcPressureMeasure" },
|
|
2008
|
+
{ name: "LiftingStrength", kind: "single", dataType: "IfcPressureMeasure" },
|
|
2009
|
+
{ name: "ManufacturingToleranceClass", kind: "single", dataType: "IfcLabel" },
|
|
2010
|
+
{ name: "MinimumAllowableSupportLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2011
|
+
{ name: "ProductionLotId", kind: "single", dataType: "IfcIdentifier" },
|
|
2012
|
+
{ name: "ReleaseStrength", kind: "single", dataType: "IfcPressureMeasure" },
|
|
2013
|
+
{ name: "SerialNumber", kind: "single", dataType: "IfcIdentifier" },
|
|
2014
|
+
{ name: "SupportDuringTransportDescription", kind: "single", dataType: "IfcText" },
|
|
2015
|
+
{ name: "TendonRelaxation", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
2016
|
+
{ name: "TransportationStrength", kind: "single", dataType: "IfcPressureMeasure" },
|
|
2017
|
+
{ name: "TypeDesignator", kind: "single", dataType: "IfcLabel" },
|
|
2018
|
+
],
|
|
2019
|
+
},
|
|
2020
|
+
{
|
|
2021
|
+
name: "Pset_ProductRequirements",
|
|
2022
|
+
applicableEntities: ["IfcProduct"],
|
|
2023
|
+
properties: [
|
|
2024
|
+
{ name: "Category", kind: "single", dataType: "IfcLabel" },
|
|
2025
|
+
{ name: "DemandImportanceValue", kind: "single", dataType: "IfcLabel" },
|
|
2026
|
+
{ name: "DemandThresholdValue", kind: "single", dataType: "IfcLabel" },
|
|
2027
|
+
{ name: "DemandValue", kind: "single", dataType: "IfcLabel" },
|
|
2028
|
+
{ name: "GapValue", kind: "single", dataType: "IfcLabel" },
|
|
2029
|
+
{ name: "GapValueWeighted", kind: "single", dataType: "IfcLabel" },
|
|
2030
|
+
{ name: "GroupName", kind: "single", dataType: "IfcLabel" },
|
|
2031
|
+
{ name: "Name", kind: "single", dataType: "IfcLabel" },
|
|
2032
|
+
{ name: "SupplyEvaluationValue", kind: "single", dataType: "IfcLabel" },
|
|
2033
|
+
],
|
|
2034
|
+
},
|
|
2035
|
+
{
|
|
2036
|
+
name: "Pset_ProjectCommon",
|
|
2037
|
+
applicableEntities: ["IfcProject"],
|
|
2038
|
+
properties: [
|
|
2039
|
+
{ name: "BuildingPermitId", kind: "single", dataType: "IfcIdentifier" },
|
|
2040
|
+
{ name: "ConstructionMode", kind: "single", dataType: "IfcLabel" },
|
|
2041
|
+
{ name: "GrossAreaPlanned", kind: "single", dataType: "IfcAreaMeasure" },
|
|
2042
|
+
],
|
|
2043
|
+
},
|
|
2044
|
+
{
|
|
2045
|
+
name: "Pset_ProjectionElementShadingDevicePHistory",
|
|
2046
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
2047
|
+
properties: [],
|
|
2048
|
+
},
|
|
2049
|
+
{
|
|
2050
|
+
name: "Pset_ProjectOrderChangeOrder",
|
|
2051
|
+
applicableEntities: ["IfcProjectOrder"],
|
|
2052
|
+
properties: [
|
|
2053
|
+
{ name: "BudgetSource", kind: "single", dataType: "IfcText" },
|
|
2054
|
+
{ name: "ChangeDescription", kind: "single", dataType: "IfcText" },
|
|
2055
|
+
{ name: "ReasonForChange", kind: "single", dataType: "IfcText" },
|
|
2056
|
+
],
|
|
2057
|
+
},
|
|
2058
|
+
{
|
|
2059
|
+
name: "Pset_ProjectOrderMaintenanceWorkOrder",
|
|
2060
|
+
applicableEntities: ["IfcProjectOrder"],
|
|
2061
|
+
properties: [
|
|
2062
|
+
{ name: "FaultPriorityType", kind: "enumeration", enumeration: ["High", "Medium", "Low", "Other", "NotKnown", "Unset"] },
|
|
2063
|
+
{ name: "LocationPriorityType", kind: "enumeration", enumeration: ["High", "Medium", "Low", "Other", "NotKnown", "Unset"] },
|
|
2064
|
+
{ name: "MaintenaceType", kind: "enumeration", enumeration: ["ConditionBased", "Corrective", "PlannedCorrective", "Scheduled", "Other", "NotKnown", "Unset"] },
|
|
2065
|
+
{ name: "ContractualType", kind: "single", dataType: "IfcText" },
|
|
2066
|
+
{ name: "IfNotAccomplished", kind: "single", dataType: "IfcText" },
|
|
2067
|
+
{ name: "LongJobDescription", kind: "single", dataType: "IfcText" },
|
|
2068
|
+
{ name: "ProductDescription", kind: "single", dataType: "IfcText" },
|
|
2069
|
+
{ name: "ScheduledFrequency", kind: "single", dataType: "IfcTimeMeasure" },
|
|
2070
|
+
{ name: "ShortJobDescription", kind: "single", dataType: "IfcText" },
|
|
2071
|
+
{ name: "WorkTypeRequested", kind: "single", dataType: "IfcText" },
|
|
2072
|
+
],
|
|
2073
|
+
},
|
|
2074
|
+
{
|
|
2075
|
+
name: "Pset_ProjectOrderMoveOrder",
|
|
2076
|
+
applicableEntities: ["IfcProjectOrder"],
|
|
2077
|
+
properties: [
|
|
2078
|
+
{ name: "MoveDescription", kind: "single", dataType: "IfcText" },
|
|
2079
|
+
{ name: "SpecialInstructions", kind: "single", dataType: "IfcText" },
|
|
2080
|
+
],
|
|
2081
|
+
},
|
|
2082
|
+
{
|
|
2083
|
+
name: "Pset_ProjectOrderPurchaseOrder",
|
|
2084
|
+
applicableEntities: ["IfcProjectOrder"],
|
|
2085
|
+
properties: [
|
|
2086
|
+
{ name: "IsFOB", kind: "single", dataType: "IfcBoolean" },
|
|
2087
|
+
{ name: "ShipMethod", kind: "single", dataType: "IfcText" },
|
|
2088
|
+
],
|
|
2089
|
+
},
|
|
2090
|
+
{
|
|
2091
|
+
name: "Pset_ProjectOrderWorkOrder",
|
|
2092
|
+
applicableEntities: ["IfcProjectOrder"],
|
|
2093
|
+
properties: [
|
|
2094
|
+
{ name: "ContractualType", kind: "single", dataType: "IfcText" },
|
|
2095
|
+
{ name: "IfNotAccomplished", kind: "single", dataType: "IfcText" },
|
|
2096
|
+
{ name: "LongJobDescription", kind: "single", dataType: "IfcText" },
|
|
2097
|
+
{ name: "ProductDescription", kind: "single", dataType: "IfcText" },
|
|
2098
|
+
{ name: "ShortJobDescription", kind: "single", dataType: "IfcText" },
|
|
2099
|
+
{ name: "WorkTypeRequested", kind: "single", dataType: "IfcText" },
|
|
2100
|
+
],
|
|
2101
|
+
},
|
|
2102
|
+
{
|
|
2103
|
+
name: "Pset_PropertyAgreement",
|
|
2104
|
+
applicableEntities: ["IfcSpatialStructureElement"],
|
|
2105
|
+
properties: [
|
|
2106
|
+
{ name: "AgreementType", kind: "enumeration", enumeration: ["Assignment", "Lease", "Tenant", "Other", "NotKnown", "Unset"] },
|
|
2107
|
+
{ name: "ConditionCommencement", kind: "single", dataType: "IfcText" },
|
|
2108
|
+
{ name: "ConditionTermination", kind: "single", dataType: "IfcText" },
|
|
2109
|
+
{ name: "Duration", kind: "single", dataType: "IfcTimeMeasure" },
|
|
2110
|
+
{ name: "Identifier", kind: "single", dataType: "IfcIdentifier" },
|
|
2111
|
+
{ name: "Options", kind: "single", dataType: "IfcText" },
|
|
2112
|
+
{ name: "PropertyName", kind: "single", dataType: "IfcLabel" },
|
|
2113
|
+
{ name: "Restrictions", kind: "single", dataType: "IfcText" },
|
|
2114
|
+
{ name: "Version", kind: "single", dataType: "IfcLabel" },
|
|
2115
|
+
],
|
|
2116
|
+
},
|
|
2117
|
+
{
|
|
2118
|
+
name: "Pset_ProtectiveDeviceTypeCircuitBreaker",
|
|
2119
|
+
applicableEntities: ["IfcProtectiveDeviceType"],
|
|
2120
|
+
properties: [
|
|
2121
|
+
{ name: "CircuitBreakerType", kind: "enumeration", enumeration: ["ACB", "MCB", "MCCB", "Vacuum", "Other", "NotKnown", "Unset"] },
|
|
2122
|
+
],
|
|
2123
|
+
},
|
|
2124
|
+
{
|
|
2125
|
+
name: "Pset_ProtectiveDeviceTypeCommon",
|
|
2126
|
+
applicableEntities: ["IfcProtectiveDeviceType"],
|
|
2127
|
+
properties: [
|
|
2128
|
+
{ name: "CutOffCurrent", kind: "single", dataType: "IfcElectricCurrentMeasure" },
|
|
2129
|
+
{ name: "LimitingTerminalSize", kind: "single", dataType: "IfcAreaMeasure" },
|
|
2130
|
+
{ name: "MaximumRatedVoltage", kind: "single", dataType: "IfcElectricVoltageMeasure" },
|
|
2131
|
+
{ name: "ProtectiveTagType", kind: "single", dataType: "IfcLabel" },
|
|
2132
|
+
{ name: "RatedShortCircuitCurrent", kind: "single", dataType: "IfcElectricCurrentMeasure" },
|
|
2133
|
+
{ name: "StandardUsed", kind: "single", dataType: "IfcLabel" },
|
|
2134
|
+
{ name: "SwitchingDuty", kind: "single", dataType: "IfcInteger" },
|
|
2135
|
+
{ name: "CharacteristicTripCurve", kind: "unknown" },
|
|
2136
|
+
],
|
|
2137
|
+
},
|
|
2138
|
+
{
|
|
2139
|
+
name: "Pset_ProtectiveDeviceTypeEarthFailureDevice",
|
|
2140
|
+
applicableEntities: ["IfcProtectiveDeviceType"],
|
|
2141
|
+
properties: [
|
|
2142
|
+
{ name: "EarthFailureDeviceType", kind: "enumeration", enumeration: ["Standard", "TimeDelayed", "Other", "NotKnown", "Unset"] },
|
|
2143
|
+
{ name: "Sensitivity", kind: "single", dataType: "IfcElectricCurrentMeasure" },
|
|
2144
|
+
],
|
|
2145
|
+
},
|
|
2146
|
+
{
|
|
2147
|
+
name: "Pset_ProtectiveDeviceTypeFuseDisconnector",
|
|
2148
|
+
applicableEntities: ["IfcProtectiveDeviceType"],
|
|
2149
|
+
properties: [
|
|
2150
|
+
{ name: "FuseDisconnectorType", kind: "enumeration", enumeration: ["EngineProtectionDevice", "FusedSwitch", "HRC", "OverloadProtectionDevice", "SwitchDisconnectorFuse", "Other", "NotKnown", "Unset"] },
|
|
2151
|
+
],
|
|
2152
|
+
},
|
|
2153
|
+
{
|
|
2154
|
+
name: "Pset_ProtectiveDeviceTypeResidualCurrentCircuitBreaker",
|
|
2155
|
+
applicableEntities: ["IfcProtectiveDeviceType"],
|
|
2156
|
+
properties: [
|
|
2157
|
+
{ name: "Sensitivity", kind: "single", dataType: "IfcElectricCurrentMeasure" },
|
|
2158
|
+
],
|
|
2159
|
+
},
|
|
2160
|
+
{
|
|
2161
|
+
name: "Pset_ProtectiveDeviceTypeResidualCurrentSwitch",
|
|
2162
|
+
applicableEntities: ["IfcProtectiveDeviceType"],
|
|
2163
|
+
properties: [
|
|
2164
|
+
{ name: "Sensitivity", kind: "single", dataType: "IfcElectricCurrentMeasure" },
|
|
2165
|
+
],
|
|
2166
|
+
},
|
|
2167
|
+
{
|
|
2168
|
+
name: "Pset_ProtectiveDeviceTypeVaristor",
|
|
2169
|
+
applicableEntities: ["IfcProtectiveDeviceType"],
|
|
2170
|
+
properties: [
|
|
2171
|
+
{ name: "VaristorType", kind: "enumeration", enumeration: ["MetalOxide", "ZincOxide", "Other", "NotKnown", "Unset"] },
|
|
2172
|
+
],
|
|
2173
|
+
},
|
|
2174
|
+
{
|
|
2175
|
+
name: "Pset_PumpPHistory",
|
|
2176
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
2177
|
+
properties: [],
|
|
2178
|
+
},
|
|
2179
|
+
{
|
|
2180
|
+
name: "Pset_PumpTypeCommon",
|
|
2181
|
+
applicableEntities: ["IfcPumpType"],
|
|
2182
|
+
properties: [
|
|
2183
|
+
{ name: "ConnectionSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2184
|
+
{ name: "FlowRateRange", kind: "single", dataType: "IfcMassFlowRateMeasure" },
|
|
2185
|
+
{ name: "FlowResistanceRange", kind: "single", dataType: "IfcPressureMeasure" },
|
|
2186
|
+
{ name: "NetPositiveSuctionHead", kind: "single", dataType: "IfcPressureMeasure" },
|
|
2187
|
+
{ name: "NominalRotationSpeed", kind: "single", dataType: "IfcRotationalFrequencyMeasure" },
|
|
2188
|
+
{ name: "TemperatureRange", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
2189
|
+
],
|
|
2190
|
+
},
|
|
2191
|
+
{
|
|
2192
|
+
name: "Pset_QuantityTakeOff",
|
|
2193
|
+
applicableEntities: ["IfcElement"],
|
|
2194
|
+
properties: [
|
|
2195
|
+
{ name: "LocalContext", kind: "single", dataType: "IfcText" },
|
|
2196
|
+
{ name: "Reference", kind: "single", dataType: "IfcIdentifier" },
|
|
2197
|
+
],
|
|
2198
|
+
},
|
|
2199
|
+
{
|
|
2200
|
+
name: "Pset_RailingCommon",
|
|
2201
|
+
applicableEntities: ["IfcRailing"],
|
|
2202
|
+
properties: [
|
|
2203
|
+
{ name: "Diameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2204
|
+
{ name: "Height", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2205
|
+
{ name: "IsExternal", kind: "single", dataType: "IfcBoolean" },
|
|
2206
|
+
{ name: "Reference", kind: "single", dataType: "IfcIdentifier" },
|
|
2207
|
+
],
|
|
2208
|
+
},
|
|
2209
|
+
{
|
|
2210
|
+
name: "Pset_RampCommon",
|
|
2211
|
+
applicableEntities: ["IfcRamp"],
|
|
2212
|
+
properties: [
|
|
2213
|
+
{ name: "FireExit", kind: "single", dataType: "IfcBoolean" },
|
|
2214
|
+
{ name: "FireRating", kind: "single", dataType: "IfcLabel" },
|
|
2215
|
+
{ name: "HandicapAccessible", kind: "single", dataType: "IfcBoolean" },
|
|
2216
|
+
{ name: "HasNonSkidSurface", kind: "single", dataType: "IfcBoolean" },
|
|
2217
|
+
{ name: "IsExternal", kind: "single", dataType: "IfcBoolean" },
|
|
2218
|
+
{ name: "Reference", kind: "single", dataType: "IfcIdentifier" },
|
|
2219
|
+
{ name: "RequiredHeadroom", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2220
|
+
{ name: "RequiredSlope", kind: "single", dataType: "IfcPlaneAngleMeasure" },
|
|
2221
|
+
],
|
|
2222
|
+
},
|
|
2223
|
+
{
|
|
2224
|
+
name: "Pset_RampFlightCommon",
|
|
2225
|
+
applicableEntities: ["IfcRampFlight"],
|
|
2226
|
+
properties: [
|
|
2227
|
+
{ name: "Headroom", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2228
|
+
{ name: "Reference", kind: "single", dataType: "IfcIdentifier" },
|
|
2229
|
+
{ name: "Slope", kind: "single", dataType: "IfcPlaneAngleMeasure" },
|
|
2230
|
+
],
|
|
2231
|
+
},
|
|
2232
|
+
{
|
|
2233
|
+
name: "Pset_ReinforcementBarCountOfIndependentFooting",
|
|
2234
|
+
applicableEntities: ["IfcFooting"],
|
|
2235
|
+
properties: [
|
|
2236
|
+
{ name: "Description", kind: "single", dataType: "IfcText" },
|
|
2237
|
+
{ name: "Reference", kind: "single", dataType: "IfcLabel" },
|
|
2238
|
+
{ name: "XDirectionLowerBarCount", kind: "single", dataType: "IfcInteger" },
|
|
2239
|
+
{ name: "XDirectionUpperBarCount", kind: "single", dataType: "IfcInteger" },
|
|
2240
|
+
{ name: "YDirectionLowerBarCount", kind: "single", dataType: "IfcInteger" },
|
|
2241
|
+
{ name: "YDirectionUpperBarCount", kind: "single", dataType: "IfcInteger" },
|
|
2242
|
+
],
|
|
2243
|
+
},
|
|
2244
|
+
{
|
|
2245
|
+
name: "Pset_ReinforcementBarPitchOfBeam",
|
|
2246
|
+
applicableEntities: ["IfcBeam"],
|
|
2247
|
+
properties: [
|
|
2248
|
+
{ name: "Description", kind: "single", dataType: "IfcText" },
|
|
2249
|
+
{ name: "Reference", kind: "single", dataType: "IfcLabel" },
|
|
2250
|
+
{ name: "SpacingBarPitch", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2251
|
+
{ name: "StirrupBarPitch", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2252
|
+
],
|
|
2253
|
+
},
|
|
2254
|
+
{
|
|
2255
|
+
name: "Pset_ReinforcementBarPitchOfColumn",
|
|
2256
|
+
applicableEntities: ["IfcColumn"],
|
|
2257
|
+
properties: [
|
|
2258
|
+
{ name: "ReinforcementBarType", kind: "enumeration", enumeration: ["RING", "SPIRAL", "OTHER", "USERDEFINED", "NOTDEFINED"] },
|
|
2259
|
+
{ name: "Description", kind: "single", dataType: "IfcText" },
|
|
2260
|
+
{ name: "HoopBarPitch", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2261
|
+
{ name: "Reference", kind: "single", dataType: "IfcLabel" },
|
|
2262
|
+
{ name: "XDirectionTieHoopBarPitch", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2263
|
+
{ name: "XDirectionTieHoopCount", kind: "single", dataType: "IfcInteger" },
|
|
2264
|
+
{ name: "YDirectionTieHoopBarPitch", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2265
|
+
{ name: "YDirectionTieHoopCount", kind: "single", dataType: "IfcInteger" },
|
|
2266
|
+
],
|
|
2267
|
+
},
|
|
2268
|
+
{
|
|
2269
|
+
name: "Pset_ReinforcementBarPitchOfContinuousFooting",
|
|
2270
|
+
applicableEntities: ["IfcFooting"],
|
|
2271
|
+
properties: [
|
|
2272
|
+
{ name: "CrossingLowerBarPitch", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2273
|
+
{ name: "CrossingUpperBarPitch", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2274
|
+
{ name: "Description", kind: "single", dataType: "IfcText" },
|
|
2275
|
+
{ name: "Reference", kind: "single", dataType: "IfcLabel" },
|
|
2276
|
+
],
|
|
2277
|
+
},
|
|
2278
|
+
{
|
|
2279
|
+
name: "Pset_ReinforcementBarPitchOfSlab",
|
|
2280
|
+
applicableEntities: ["IfcSlab"],
|
|
2281
|
+
properties: [
|
|
2282
|
+
{ name: "Description", kind: "single", dataType: "IfcText" },
|
|
2283
|
+
{ name: "LongInsideCenterLowerBarPitch", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2284
|
+
{ name: "LongInsideCenterTopBarPitch", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2285
|
+
{ name: "LongInsideEndLowerBarPitch", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2286
|
+
{ name: "LongInsideEndTopBarPitch", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2287
|
+
{ name: "LongOutsideLowerBarPitch", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2288
|
+
{ name: "LongOutsideTopBarPitch", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2289
|
+
{ name: "Reference", kind: "single", dataType: "IfcLabel" },
|
|
2290
|
+
{ name: "ShortInsideCenterLowerBarPitch", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2291
|
+
{ name: "ShortInsideCenterTopBarPitch", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2292
|
+
{ name: "ShortInsideEndLowerBarPitch", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2293
|
+
{ name: "ShortInsideEndTopBarPitch", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2294
|
+
{ name: "ShortOutsideLowerBarPitch", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2295
|
+
{ name: "ShortOutsideTopBarPitch", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2296
|
+
],
|
|
2297
|
+
},
|
|
2298
|
+
{
|
|
2299
|
+
name: "Pset_ReinforcementBarPitchOfWall",
|
|
2300
|
+
applicableEntities: ["IfcWall"],
|
|
2301
|
+
properties: [
|
|
2302
|
+
{ name: "BarAllocationType", kind: "enumeration", enumeration: ["SINGLE", "DOUBLE", "ALTERNATE", "OTHER", "USERDEFINED", "NOTDEFINED"] },
|
|
2303
|
+
{ name: "Description", kind: "single", dataType: "IfcText" },
|
|
2304
|
+
{ name: "HorizontalBarPitch", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2305
|
+
{ name: "Reference", kind: "single", dataType: "IfcLabel" },
|
|
2306
|
+
{ name: "SpacingBarPitch", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2307
|
+
{ name: "VerticalBarPitch", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2308
|
+
],
|
|
2309
|
+
},
|
|
2310
|
+
{
|
|
2311
|
+
name: "Pset_ReinforcingBarBendingsBECCommon",
|
|
2312
|
+
applicableEntities: ["IfcReinforcingBar", "IfcReinforcingMesh"],
|
|
2313
|
+
properties: [
|
|
2314
|
+
{ name: "BECBarShapeCode", kind: "single", dataType: "IfcLabel" },
|
|
2315
|
+
{ name: "BECBendingParameter_u", kind: "single", dataType: "IfcPlaneAngleMeasure" },
|
|
2316
|
+
{ name: "BECBendingParameter_u1", kind: "single", dataType: "IfcPlaneAngleMeasure" },
|
|
2317
|
+
{ name: "BECBendingParameter_v", kind: "single", dataType: "IfcPlaneAngleMeasure" },
|
|
2318
|
+
{ name: "BECBendingParameter_v1", kind: "single", dataType: "IfcPlaneAngleMeasure" },
|
|
2319
|
+
{ name: "BECCuttingLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2320
|
+
{ name: "BECRollerDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2321
|
+
{ name: "BECShapeAid_x", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2322
|
+
{ name: "BECShapeAid_y", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2323
|
+
{ name: "BECShapeParameter_a", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2324
|
+
{ name: "BECShapeParameter_b", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2325
|
+
{ name: "BECShapeParameter_c", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2326
|
+
{ name: "BECShapeParameter_d", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2327
|
+
{ name: "BECShapeParameter_e", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2328
|
+
{ name: "BECShapeParameter_f", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2329
|
+
{ name: "BECShapeParameter_g", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2330
|
+
{ name: "BECShapeParameter_h", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2331
|
+
{ name: "BECShapeParameter_i", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2332
|
+
{ name: "BECShapeParameter_j", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2333
|
+
{ name: "BECShapeParameter_k", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2334
|
+
{ name: "BECShapeParameter_l", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2335
|
+
],
|
|
2336
|
+
},
|
|
2337
|
+
{
|
|
2338
|
+
name: "Pset_ReinforcingBarBendingsBS8666Common",
|
|
2339
|
+
applicableEntities: ["IfcReinforcingBar"],
|
|
2340
|
+
properties: [
|
|
2341
|
+
{ name: "BS8666ShapeCode", kind: "single", dataType: "IfcLabel" },
|
|
2342
|
+
{ name: "BS8666ShapeParameter_A", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2343
|
+
{ name: "BS8666ShapeParameter_B", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2344
|
+
{ name: "BS8666ShapeParameter_C", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2345
|
+
{ name: "BS8666ShapeParameter_D", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2346
|
+
{ name: "BS8666ShapeParameter_E", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2347
|
+
{ name: "BS8666ShapeParameter_r", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2348
|
+
],
|
|
2349
|
+
},
|
|
2350
|
+
{
|
|
2351
|
+
name: "Pset_ReinforcingBarBendingsDIN135610Common",
|
|
2352
|
+
applicableEntities: ["IfcReinforcingBar"],
|
|
2353
|
+
properties: [
|
|
2354
|
+
{ name: "DIN135610ShapeCode", kind: "single", dataType: "IfcLabel" },
|
|
2355
|
+
{ name: "DIN135610ShapeParameter_a", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2356
|
+
{ name: "DIN135610ShapeParameter_b", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2357
|
+
{ name: "DIN135610ShapeParameter_c", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2358
|
+
{ name: "DIN135610ShapeParameter_d", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2359
|
+
{ name: "DIN135610ShapeParameter_e", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2360
|
+
{ name: "DIN135610ShapeParameter_z", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2361
|
+
],
|
|
2362
|
+
},
|
|
2363
|
+
{
|
|
2364
|
+
name: "Pset_ReinforcingBarBendingsISOCD3766Common",
|
|
2365
|
+
applicableEntities: ["IfcReinforcingBar"],
|
|
2366
|
+
properties: [
|
|
2367
|
+
{ name: "ISOCD3766BendingEndHook", kind: "single", dataType: "IfcPlaneAngleMeasure" },
|
|
2368
|
+
{ name: "ISOCD3766BendingStartHook", kind: "single", dataType: "IfcPlaneAngleMeasure" },
|
|
2369
|
+
{ name: "ISOCD3766ShapeCode", kind: "single", dataType: "IfcLabel" },
|
|
2370
|
+
{ name: "ISOCD3766ShapeParameter_a", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2371
|
+
{ name: "ISOCD3766ShapeParameter_b", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2372
|
+
{ name: "ISOCD3766ShapeParameter_c", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2373
|
+
{ name: "ISOCD3766ShapeParameter_d", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2374
|
+
{ name: "ISOCD3766ShapeParameter_e", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2375
|
+
{ name: "ISOCD3766ShapeParameter_R", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2376
|
+
],
|
|
2377
|
+
},
|
|
2378
|
+
{
|
|
2379
|
+
name: "Pset_Reliability",
|
|
2380
|
+
applicableEntities: ["IfcProduct"],
|
|
2381
|
+
properties: [
|
|
2382
|
+
{ name: "MeanTimeBetweenFailure", kind: "single", dataType: "IfcTimeMeasure" },
|
|
2383
|
+
],
|
|
2384
|
+
},
|
|
2385
|
+
{
|
|
2386
|
+
name: "Pset_Risk",
|
|
2387
|
+
applicableEntities: ["IfcObject"],
|
|
2388
|
+
properties: [
|
|
2389
|
+
{ name: "AssessmentOfRisk", kind: "enumeration", enumeration: ["AlmostCertain", "VeryLikely", "Likely", "VeryPossible", "Possible", "SomewhatPossible", "Unlikely", "VeryUnlikely", "Rare", "Other", "NotKnown", "Unset"] },
|
|
2390
|
+
{ name: "RiskConsequence", kind: "enumeration", enumeration: ["Catastrophic", "Severe", "Major", "Considerable", "Moderate", "Some", "Minor", "VeryLow", "Insignificant", "Other", "NotKnown", "Unset"] },
|
|
2391
|
+
{ name: "RiskOwner", kind: "enumeration", enumeration: ["Designer", "Specifier", "Constructor", "Installer", "Maintainer", "Other", "NotKnown", "Unset"] },
|
|
2392
|
+
{ name: "RiskRating", kind: "enumeration", enumeration: ["Critical", "VeryHigh", "High", "Considerable", "Moderate", "Some", "Low", "VeryLow", "Insignificant", "Other", "NotKnown", "Unset"] },
|
|
2393
|
+
{ name: "RiskType", kind: "enumeration", enumeration: ["Business", "Hazard", "HealthAndSafety", "Insurance", "Other", "NotKnown", "Unset"] },
|
|
2394
|
+
{ name: "AffectsSurroundings", kind: "single", dataType: "IfcBoolean" },
|
|
2395
|
+
{ name: "NatureOfRisk", kind: "single", dataType: "IfcLabel" },
|
|
2396
|
+
{ name: "PreventiveMeassures", kind: "single", dataType: "IfcText" },
|
|
2397
|
+
{ name: "RiskCause", kind: "single", dataType: "IfcText" },
|
|
2398
|
+
{ name: "SubNatureOfRisk1", kind: "single", dataType: "IfcLabel" },
|
|
2399
|
+
{ name: "SubNatureOfRisk2", kind: "single", dataType: "IfcLabel" },
|
|
2400
|
+
],
|
|
2401
|
+
},
|
|
2402
|
+
{
|
|
2403
|
+
name: "Pset_RoofCommon",
|
|
2404
|
+
applicableEntities: ["IfcRoof"],
|
|
2405
|
+
properties: [
|
|
2406
|
+
{ name: "FireRating", kind: "single", dataType: "IfcLabel" },
|
|
2407
|
+
{ name: "IsExternal", kind: "single", dataType: "IfcBoolean" },
|
|
2408
|
+
{ name: "ProjectedArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
2409
|
+
{ name: "Reference", kind: "single", dataType: "IfcIdentifier" },
|
|
2410
|
+
{ name: "TotalArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
2411
|
+
],
|
|
2412
|
+
},
|
|
2413
|
+
{
|
|
2414
|
+
name: "Pset_SanitaryTerminalTypeBath",
|
|
2415
|
+
applicableEntities: ["IfcSanitaryTerminalType"],
|
|
2416
|
+
properties: [
|
|
2417
|
+
{ name: "BathType", kind: "enumeration", enumeration: ["Domestic", "DomesticCorner", "Foot", "Jacuzzi", "Plunge", "Sitz", "Treatment", "Whirlpool", "Other", "NotKnown", "Unset"] },
|
|
2418
|
+
{ name: "Color", kind: "single", dataType: "IfcText" },
|
|
2419
|
+
{ name: "DrainSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2420
|
+
{ name: "HasGrabHandles", kind: "single", dataType: "IfcBoolean" },
|
|
2421
|
+
{ name: "MaterialThickness", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2422
|
+
{ name: "NominalDepth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2423
|
+
{ name: "NominalLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2424
|
+
{ name: "NominalWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2425
|
+
],
|
|
2426
|
+
},
|
|
2427
|
+
{
|
|
2428
|
+
name: "Pset_SanitaryTerminalTypeBidet",
|
|
2429
|
+
applicableEntities: ["IfcSanitaryTerminalType"],
|
|
2430
|
+
properties: [
|
|
2431
|
+
{ name: "BidetMounting", kind: "enumeration", enumeration: ["BackToWall", "Pedestal", "CounterTop", "WallHung", "NotKnown", "Unset"] },
|
|
2432
|
+
{ name: "Color", kind: "single", dataType: "IfcText" },
|
|
2433
|
+
{ name: "DrainSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2434
|
+
{ name: "NominalDepth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2435
|
+
{ name: "NominalLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2436
|
+
{ name: "NominalWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2437
|
+
{ name: "SpilloverLevel", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2438
|
+
],
|
|
2439
|
+
},
|
|
2440
|
+
{
|
|
2441
|
+
name: "Pset_SanitaryTerminalTypeCistern",
|
|
2442
|
+
applicableEntities: ["IfcSanitaryTerminalType"],
|
|
2443
|
+
properties: [
|
|
2444
|
+
{ name: "CisternHeight", kind: "enumeration", enumeration: ["HighLevel", "LowLevel", "None", "Other", "NotKnown", "Unset"] },
|
|
2445
|
+
{ name: "FlushType", kind: "enumeration", enumeration: ["Lever", "Pull", "Push", "Sensor", "Other", "NotKnown", "Unset"] },
|
|
2446
|
+
{ name: "CisternCapacity", kind: "single", dataType: "IfcVolumeMeasure" },
|
|
2447
|
+
{ name: "CisternColor", kind: "single", dataType: "IfcText" },
|
|
2448
|
+
{ name: "FlushRate", kind: "single", dataType: "IfcVolumeMeasure" },
|
|
2449
|
+
{ name: "IsAutomaticFlush", kind: "single", dataType: "IfcBoolean" },
|
|
2450
|
+
{ name: "IsSingleFlush", kind: "single", dataType: "IfcBoolean" },
|
|
2451
|
+
],
|
|
2452
|
+
},
|
|
2453
|
+
{
|
|
2454
|
+
name: "Pset_SanitaryTerminalTypeSanitaryFountain",
|
|
2455
|
+
applicableEntities: ["IfcSanitaryTerminalType"],
|
|
2456
|
+
properties: [
|
|
2457
|
+
{ name: "FountainType", kind: "enumeration", enumeration: ["DrinkingWater", "Eyewash", "Other", "NotKnown", "Unset"] },
|
|
2458
|
+
{ name: "Mounting", kind: "enumeration", enumeration: ["BackToWall", "Pedestal", "CounterTop", "WallHung", "Other", "NotKnown", "Unset"] },
|
|
2459
|
+
{ name: "Color", kind: "single", dataType: "IfcText" },
|
|
2460
|
+
{ name: "DrainSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2461
|
+
{ name: "NominalDepth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2462
|
+
{ name: "NominalLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2463
|
+
{ name: "NominalWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2464
|
+
],
|
|
2465
|
+
},
|
|
2466
|
+
{
|
|
2467
|
+
name: "Pset_SanitaryTerminalTypeShower",
|
|
2468
|
+
applicableEntities: ["IfcSanitaryTerminalType"],
|
|
2469
|
+
properties: [
|
|
2470
|
+
{ name: "ShowerType", kind: "enumeration", enumeration: ["Drench", "Individual", "Tunnel", "Other", "NotKnown", "Unset"] },
|
|
2471
|
+
{ name: "Color", kind: "single", dataType: "IfcText" },
|
|
2472
|
+
{ name: "DrainSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2473
|
+
{ name: "HasTray", kind: "single", dataType: "IfcBoolean" },
|
|
2474
|
+
{ name: "MaterialThickness", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2475
|
+
{ name: "NominalDepth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2476
|
+
{ name: "NominalLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2477
|
+
{ name: "NominalWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2478
|
+
{ name: "ShowerHeadDescription", kind: "single", dataType: "IfcText" },
|
|
2479
|
+
],
|
|
2480
|
+
},
|
|
2481
|
+
{
|
|
2482
|
+
name: "Pset_SanitaryTerminalTypeSink",
|
|
2483
|
+
applicableEntities: ["IfcSanitaryTerminalType"],
|
|
2484
|
+
properties: [
|
|
2485
|
+
{ name: "SinkMounting", kind: "enumeration", enumeration: ["BackToWall", "Pedestal", "CounterTop", "WallHung", "Other", "NotKnown", "Unset"] },
|
|
2486
|
+
{ name: "SinkType", kind: "enumeration", enumeration: ["Belfast", "Bucket", "Cleaners", "Combination_Left", "Combination_Right", "Combination_Double", "Drip", "Laboratory", "London", "Plaster", "Pot", "Rinsing", "Shelf", "VegetablePreparation", "Other", "NotKnown", "Unset"] },
|
|
2487
|
+
{ name: "Color", kind: "single", dataType: "IfcText" },
|
|
2488
|
+
{ name: "DrainSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2489
|
+
{ name: "NominalDepth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2490
|
+
{ name: "NominalLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2491
|
+
{ name: "NominalWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2492
|
+
],
|
|
2493
|
+
},
|
|
2494
|
+
{
|
|
2495
|
+
name: "Pset_SanitaryTerminalTypeToiletPan",
|
|
2496
|
+
applicableEntities: ["IfcSanitaryTerminalType"],
|
|
2497
|
+
properties: [
|
|
2498
|
+
{ name: "PanMounting", kind: "enumeration", enumeration: ["BackToWall", "Pedestal", "CounterTop", "WallHung", "Other", "NotKnown", "Unset"] },
|
|
2499
|
+
{ name: "ToiletPanType", kind: "enumeration", enumeration: ["Siphonic", "Squat", "WashDown", "WashOut", "Other", "NotKnown", "Unset"] },
|
|
2500
|
+
{ name: "ToiletType", kind: "enumeration", enumeration: ["BedPanWasher", "Chemical", "CloseCoupled", "LooseCoupled", "SlopHopper", "Other", "NotKnown", "Unset"] },
|
|
2501
|
+
{ name: "NominalDepth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2502
|
+
{ name: "NominalLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2503
|
+
{ name: "NominalWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2504
|
+
{ name: "PanColor", kind: "single", dataType: "IfcText" },
|
|
2505
|
+
{ name: "SpilloverLevel", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2506
|
+
],
|
|
2507
|
+
},
|
|
2508
|
+
{
|
|
2509
|
+
name: "Pset_SanitaryTerminalTypeUrinal",
|
|
2510
|
+
applicableEntities: ["IfcSanitaryTerminalType"],
|
|
2511
|
+
properties: [
|
|
2512
|
+
{ name: "UrinalType", kind: "enumeration", enumeration: ["Bowl", "Slab", "Stall", "Trough", "Other", "NotKnown", "Unset"] },
|
|
2513
|
+
{ name: "NominalDepth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2514
|
+
{ name: "NominalLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2515
|
+
{ name: "NominalWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2516
|
+
{ name: "SpilloverLevel", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2517
|
+
{ name: "UrinalColor", kind: "single", dataType: "IfcText" },
|
|
2518
|
+
],
|
|
2519
|
+
},
|
|
2520
|
+
{
|
|
2521
|
+
name: "Pset_SanitaryTerminalTypeWashHandBasin",
|
|
2522
|
+
applicableEntities: ["IfcSanitaryTerminalType"],
|
|
2523
|
+
properties: [
|
|
2524
|
+
{ name: "WashHandBasinMounting", kind: "enumeration", enumeration: ["BackToWall", "Pedestal", "CounterTop", "WallHung", "Other", "NotKnown", "Unset"] },
|
|
2525
|
+
{ name: "WashHandBasinType", kind: "enumeration", enumeration: ["DentalCuspidor", "HandRinse", "Hospital", "Tipup", "Washfountain", "WashingTrough", "Other", "NotKnown", "Unset"] },
|
|
2526
|
+
{ name: "Color", kind: "single", dataType: "IfcText" },
|
|
2527
|
+
{ name: "DrainSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2528
|
+
{ name: "NominalDepth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2529
|
+
{ name: "NominalLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2530
|
+
{ name: "NominalWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2531
|
+
],
|
|
2532
|
+
},
|
|
2533
|
+
{
|
|
2534
|
+
name: "Pset_SanitaryTerminalTypeWCSeat",
|
|
2535
|
+
applicableEntities: ["IfcSanitaryTerminalType"],
|
|
2536
|
+
properties: [
|
|
2537
|
+
{ name: "SeatType", kind: "enumeration", enumeration: ["Extension", "Inset", "OpenFrontSeat", "RingSeat", "SelfRaising", "None", "Other", "NotKnown", "Unset"] },
|
|
2538
|
+
{ name: "SeatColor", kind: "single", dataType: "IfcText" },
|
|
2539
|
+
{ name: "SeatHasCover", kind: "single", dataType: "IfcBoolean" },
|
|
2540
|
+
],
|
|
2541
|
+
},
|
|
2542
|
+
{
|
|
2543
|
+
name: "Pset_SensorTypeCO2Sensor",
|
|
2544
|
+
applicableEntities: ["IfcSensorType"],
|
|
2545
|
+
properties: [
|
|
2546
|
+
{ name: "AccuracyOfCO2Sensor", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
2547
|
+
{ name: "CO2SensorRange", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
2548
|
+
{ name: "CoverageArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
2549
|
+
{ name: "TimeConstant", kind: "single", dataType: "IfcTimeMeasure" },
|
|
2550
|
+
{ name: "WashHandBasinSetPoint", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
2551
|
+
],
|
|
2552
|
+
},
|
|
2553
|
+
{
|
|
2554
|
+
name: "Pset_SensorTypeFireSensor",
|
|
2555
|
+
applicableEntities: ["IfcSensorType"],
|
|
2556
|
+
properties: [
|
|
2557
|
+
{ name: "AccuracyOfFireSensor", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
2558
|
+
{ name: "FireSensorSetPoint", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
2559
|
+
{ name: "TimeConstant", kind: "single", dataType: "IfcTimeMeasure" },
|
|
2560
|
+
],
|
|
2561
|
+
},
|
|
2562
|
+
{
|
|
2563
|
+
name: "Pset_SensorTypeGasSensor",
|
|
2564
|
+
applicableEntities: ["IfcSensorType"],
|
|
2565
|
+
properties: [
|
|
2566
|
+
{ name: "AccuracyOfGasSensor", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
2567
|
+
{ name: "GasDetected", kind: "single", dataType: "IfcLabel" },
|
|
2568
|
+
{ name: "GasSensorRange", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
2569
|
+
{ name: "GasSensorSetPoint", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
2570
|
+
{ name: "TimeConstant", kind: "single", dataType: "IfcTimeMeasure" },
|
|
2571
|
+
],
|
|
2572
|
+
},
|
|
2573
|
+
{
|
|
2574
|
+
name: "Pset_SensorTypeHeatSensor",
|
|
2575
|
+
applicableEntities: ["IfcSensorType"],
|
|
2576
|
+
properties: [
|
|
2577
|
+
{ name: "CoverageArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
2578
|
+
{ name: "HeatSensorAccuracy", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
2579
|
+
{ name: "HeatSensorRange", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
2580
|
+
{ name: "HeatSensorSetPoint", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
2581
|
+
{ name: "TimeConstant", kind: "single", dataType: "IfcTimeMeasure" },
|
|
2582
|
+
],
|
|
2583
|
+
},
|
|
2584
|
+
{
|
|
2585
|
+
name: "Pset_SensorTypeHumiditySensor",
|
|
2586
|
+
applicableEntities: ["IfcSensorType"],
|
|
2587
|
+
properties: [
|
|
2588
|
+
{ name: "AccuracyOfHumiditySensor", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
2589
|
+
{ name: "HumiditySensorRange", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
2590
|
+
{ name: "HumiditySetPoint", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
2591
|
+
{ name: "TimeConstant", kind: "single", dataType: "IfcTimeMeasure" },
|
|
2592
|
+
],
|
|
2593
|
+
},
|
|
2594
|
+
{
|
|
2595
|
+
name: "Pset_SensorTypeLightSensor",
|
|
2596
|
+
applicableEntities: ["IfcSensorType"],
|
|
2597
|
+
properties: [
|
|
2598
|
+
{ name: "LightSensorAccuracy", kind: "single", dataType: "IfcIlluminanceMeasure" },
|
|
2599
|
+
{ name: "LightSensorRange", kind: "single", dataType: "IfcIlluminanceMeasure" },
|
|
2600
|
+
{ name: "LightSensorSetPoint", kind: "single", dataType: "IfcIlluminanceMeasure" },
|
|
2601
|
+
{ name: "TimeConstant", kind: "single", dataType: "IfcTimeMeasure" },
|
|
2602
|
+
],
|
|
2603
|
+
},
|
|
2604
|
+
{
|
|
2605
|
+
name: "Pset_SensorTypeMovementSensor",
|
|
2606
|
+
applicableEntities: ["IfcSensorType"],
|
|
2607
|
+
properties: [
|
|
2608
|
+
{ name: "MovementSensingType", kind: "enumeration", enumeration: ["PhotoElectricCell", "PressurePad", "Other", "NotKnown", "Unset"] },
|
|
2609
|
+
{ name: "TimeConstant", kind: "single", dataType: "IfcTimeMeasure" },
|
|
2610
|
+
],
|
|
2611
|
+
},
|
|
2612
|
+
{
|
|
2613
|
+
name: "Pset_SensorTypePressureSensor",
|
|
2614
|
+
applicableEntities: ["IfcSensorType"],
|
|
2615
|
+
properties: [
|
|
2616
|
+
{ name: "AccuracyOfPressureSensor", kind: "single", dataType: "IfcPressureMeasure" },
|
|
2617
|
+
{ name: "IsSwitch", kind: "single", dataType: "IfcBoolean" },
|
|
2618
|
+
{ name: "PressureSensorRange", kind: "single", dataType: "IfcPressureMeasure" },
|
|
2619
|
+
{ name: "PressureSensorSetPoint", kind: "single", dataType: "IfcPressureMeasure" },
|
|
2620
|
+
{ name: "TimeConstant", kind: "single", dataType: "IfcTimeMeasure" },
|
|
2621
|
+
],
|
|
2622
|
+
},
|
|
2623
|
+
{
|
|
2624
|
+
name: "Pset_SensorTypeSmokeSensor",
|
|
2625
|
+
applicableEntities: ["IfcSensorType"],
|
|
2626
|
+
properties: [
|
|
2627
|
+
{ name: "AccuracyOfSmokeSensor", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
2628
|
+
{ name: "CoverageArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
2629
|
+
{ name: "HasBuiltInAlarm", kind: "single", dataType: "IfcBoolean" },
|
|
2630
|
+
{ name: "PressureSensorSetPoint", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
2631
|
+
{ name: "SmokeSensorRange", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
2632
|
+
{ name: "TimeConstant", kind: "single", dataType: "IfcTimeMeasure" },
|
|
2633
|
+
],
|
|
2634
|
+
},
|
|
2635
|
+
{
|
|
2636
|
+
name: "Pset_SensorTypeSoundSensor",
|
|
2637
|
+
applicableEntities: ["IfcSensorType"],
|
|
2638
|
+
properties: [
|
|
2639
|
+
{ name: "SoundSensorAccuracy", kind: "single", dataType: "IfcSoundPressureMeasure" },
|
|
2640
|
+
{ name: "SoundSensorRange", kind: "single", dataType: "IfcSoundPressureMeasure" },
|
|
2641
|
+
{ name: "SoundSensorSetPoint", kind: "single", dataType: "IfcSoundPressureMeasure" },
|
|
2642
|
+
{ name: "TimeConstant", kind: "single", dataType: "IfcTimeMeasure" },
|
|
2643
|
+
],
|
|
2644
|
+
},
|
|
2645
|
+
{
|
|
2646
|
+
name: "Pset_SensorTypeTemperatureSensor",
|
|
2647
|
+
applicableEntities: ["IfcSensorType"],
|
|
2648
|
+
properties: [
|
|
2649
|
+
{ name: "TemperatureSensorType", kind: "enumeration", enumeration: ["HighLimit", "LowLimit", "OutsideTemperature", "OperatingTemperature", "RoomTemperature", "Other", "NotKnown", "Unset"] },
|
|
2650
|
+
{ name: "AccuracyOfTemperatureSensor", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
2651
|
+
{ name: "TemperatureSensorRange", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
2652
|
+
{ name: "TemperatureSensorSetPoint", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
2653
|
+
{ name: "TimeConstant", kind: "single", dataType: "IfcTimeMeasure" },
|
|
2654
|
+
],
|
|
2655
|
+
},
|
|
2656
|
+
{
|
|
2657
|
+
name: "Pset_SiteCommon",
|
|
2658
|
+
applicableEntities: ["IfcSite"],
|
|
2659
|
+
properties: [
|
|
2660
|
+
{ name: "BuildableArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
2661
|
+
{ name: "BuildingHeightLimit", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2662
|
+
{ name: "TotalArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
2663
|
+
],
|
|
2664
|
+
},
|
|
2665
|
+
{
|
|
2666
|
+
name: "Pset_SlabCommon",
|
|
2667
|
+
applicableEntities: ["IfcSlab"],
|
|
2668
|
+
properties: [
|
|
2669
|
+
{ name: "AcousticRating", kind: "single", dataType: "IfcLabel" },
|
|
2670
|
+
{ name: "Combustible", kind: "single", dataType: "IfcBoolean" },
|
|
2671
|
+
{ name: "Compartmentation", kind: "single", dataType: "IfcBoolean" },
|
|
2672
|
+
{ name: "FireRating", kind: "single", dataType: "IfcLabel" },
|
|
2673
|
+
{ name: "IsExternal", kind: "single", dataType: "IfcBoolean" },
|
|
2674
|
+
{ name: "LoadBearing", kind: "single", dataType: "IfcBoolean" },
|
|
2675
|
+
{ name: "PitchAngle", kind: "single", dataType: "IfcPlaneAngleMeasure" },
|
|
2676
|
+
{ name: "Reference", kind: "single", dataType: "IfcIdentifier" },
|
|
2677
|
+
{ name: "SurfaceSpreadOfFlame", kind: "single", dataType: "IfcLabel" },
|
|
2678
|
+
{ name: "ThermalTransmittance", kind: "single", dataType: "IfcThermalTransmittanceMeasure" },
|
|
2679
|
+
],
|
|
2680
|
+
},
|
|
2681
|
+
{
|
|
2682
|
+
name: "Pset_SpaceCommon",
|
|
2683
|
+
applicableEntities: ["IfcSpace"],
|
|
2684
|
+
properties: [
|
|
2685
|
+
{ name: "Category", kind: "single", dataType: "IfcLabel" },
|
|
2686
|
+
{ name: "CeilingCovering", kind: "single", dataType: "IfcLabel" },
|
|
2687
|
+
{ name: "ConcealedCeiling", kind: "single", dataType: "IfcBoolean" },
|
|
2688
|
+
{ name: "ConcealedFlooring", kind: "single", dataType: "IfcBoolean" },
|
|
2689
|
+
{ name: "FloorCovering", kind: "single", dataType: "IfcLabel" },
|
|
2690
|
+
{ name: "GrossPlannedArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
2691
|
+
{ name: "HandicapAccessible", kind: "single", dataType: "IfcBoolean" },
|
|
2692
|
+
{ name: "NetPlannedArea", kind: "single", dataType: "IfcAreaMeasure" },
|
|
2693
|
+
{ name: "PubliclyAccessible", kind: "single", dataType: "IfcBoolean" },
|
|
2694
|
+
{ name: "Reference", kind: "single", dataType: "IfcIdentifier" },
|
|
2695
|
+
{ name: "SkirtingBoard", kind: "single", dataType: "IfcLabel" },
|
|
2696
|
+
{ name: "WallCovering", kind: "single", dataType: "IfcLabel" },
|
|
2697
|
+
],
|
|
2698
|
+
},
|
|
2699
|
+
{
|
|
2700
|
+
name: "Pset_SpaceFireSafetyRequirements",
|
|
2701
|
+
applicableEntities: ["IfcSpace", "IfcZone"],
|
|
2702
|
+
properties: [
|
|
2703
|
+
{ name: "AirPressurization", kind: "single", dataType: "IfcBoolean" },
|
|
2704
|
+
{ name: "AncillaryFireUse", kind: "single", dataType: "IfcLabel" },
|
|
2705
|
+
{ name: "FireExit", kind: "single", dataType: "IfcBoolean" },
|
|
2706
|
+
{ name: "FireHazardFactor", kind: "single", dataType: "IfcLabel" },
|
|
2707
|
+
{ name: "FireRiskFactor", kind: "single", dataType: "IfcLabel" },
|
|
2708
|
+
{ name: "FlammableStorage", kind: "single", dataType: "IfcBoolean" },
|
|
2709
|
+
{ name: "MainFireUse", kind: "single", dataType: "IfcLabel" },
|
|
2710
|
+
{ name: "SprinklerProtection", kind: "single", dataType: "IfcBoolean" },
|
|
2711
|
+
{ name: "SprinklerProtectionAutomatic", kind: "single", dataType: "IfcBoolean" },
|
|
2712
|
+
],
|
|
2713
|
+
},
|
|
2714
|
+
{
|
|
2715
|
+
name: "Pset_SpaceHeaterPHistoryCommon",
|
|
2716
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
2717
|
+
properties: [],
|
|
2718
|
+
},
|
|
2719
|
+
{
|
|
2720
|
+
name: "Pset_SpaceHeaterTypeCommon",
|
|
2721
|
+
applicableEntities: ["IfcSpaceHeaterType"],
|
|
2722
|
+
properties: [
|
|
2723
|
+
{ name: "HeatingSource", kind: "enumeration", enumeration: ["FUEL", "GAS", "ELECTRICITY", "HOTWATER", "STEAM", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
2724
|
+
{ name: "TemperatureClassification", kind: "enumeration", enumeration: ["LOWTEMPERATURE", "HIGHTEMPERATURE", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
2725
|
+
{ name: "BodyMass", kind: "single", dataType: "IfcMassMeasure" },
|
|
2726
|
+
{ name: "OutputCapacity", kind: "single", dataType: "IfcPowerMeasure" },
|
|
2727
|
+
{ name: "ThermalEfficiency", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
2728
|
+
{ name: "ThermalMassHeatCapacity", kind: "single", dataType: "IfcReal" },
|
|
2729
|
+
],
|
|
2730
|
+
},
|
|
2731
|
+
{
|
|
2732
|
+
name: "Pset_SpaceHeaterTypeHydronic",
|
|
2733
|
+
applicableEntities: ["IfcSpaceHeaterType"],
|
|
2734
|
+
properties: [
|
|
2735
|
+
{ name: "TubingLength", kind: "single", dataType: "IfcLengthMeasure" },
|
|
2736
|
+
{ name: "WaterContent", kind: "single", dataType: "IfcMassMeasure" },
|
|
2737
|
+
],
|
|
2738
|
+
},
|
|
2739
|
+
{
|
|
2740
|
+
name: "Pset_SpaceLightingRequirements",
|
|
2741
|
+
applicableEntities: ["IfcSpace", "IfcZone"],
|
|
2742
|
+
properties: [
|
|
2743
|
+
{ name: "ArtificialLighting", kind: "single", dataType: "IfcBoolean" },
|
|
2744
|
+
{ name: "Illuminance", kind: "single", dataType: "IfcIlluminanceMeasure" },
|
|
2745
|
+
],
|
|
2746
|
+
},
|
|
2747
|
+
{
|
|
2748
|
+
name: "Pset_SpaceOccupancyRequirements",
|
|
2749
|
+
applicableEntities: ["IfcSpace", "IfcZone"],
|
|
2750
|
+
properties: [
|
|
2751
|
+
{ name: "AreaPerOccupant", kind: "single", dataType: "IfcAreaMeasure" },
|
|
2752
|
+
{ name: "IsOutlookDesirable", kind: "single", dataType: "IfcBoolean" },
|
|
2753
|
+
{ name: "MinimumHeadroom", kind: "single", dataType: "IfcLengthMeasure" },
|
|
2754
|
+
{ name: "OccupancyNumber", kind: "single", dataType: "IfcCountMeasure" },
|
|
2755
|
+
{ name: "OccupancyNumberPeak", kind: "single", dataType: "IfcCountMeasure" },
|
|
2756
|
+
{ name: "OccupancyTimePerDay", kind: "single", dataType: "IfcTimeMeasure" },
|
|
2757
|
+
{ name: "OccupancyType", kind: "single", dataType: "IfcLabel" },
|
|
2758
|
+
],
|
|
2759
|
+
},
|
|
2760
|
+
{
|
|
2761
|
+
name: "Pset_SpaceParking",
|
|
2762
|
+
applicableEntities: ["IfcSpace"],
|
|
2763
|
+
properties: [
|
|
2764
|
+
{ name: "HandicapAccessible", kind: "single", dataType: "IfcBoolean" },
|
|
2765
|
+
{ name: "ParkingUnits", kind: "single", dataType: "IfcCountMeasure" },
|
|
2766
|
+
{ name: "ParkingUse", kind: "single", dataType: "IfcLabel" },
|
|
2767
|
+
],
|
|
2768
|
+
},
|
|
2769
|
+
{
|
|
2770
|
+
name: "Pset_SpaceParkingAisle",
|
|
2771
|
+
applicableEntities: ["IfcSpace"],
|
|
2772
|
+
properties: [
|
|
2773
|
+
{ name: "IsOneWay", kind: "single", dataType: "IfcBoolean" },
|
|
2774
|
+
],
|
|
2775
|
+
},
|
|
2776
|
+
{
|
|
2777
|
+
name: "Pset_SpaceProgramCommon",
|
|
2778
|
+
applicableEntities: ["IfcSpaceProgram"],
|
|
2779
|
+
properties: [
|
|
2780
|
+
{ name: "EmployeeType", kind: "single", dataType: "IfcLabel" },
|
|
2781
|
+
{ name: "FFETypeRequirement", kind: "single", dataType: "IfcLabel" },
|
|
2782
|
+
{ name: "FunctionRequirement", kind: "single", dataType: "IfcLabel" },
|
|
2783
|
+
{ name: "LightingRequirement", kind: "single", dataType: "IfcLabel" },
|
|
2784
|
+
{ name: "Location", kind: "single", dataType: "IfcLabel" },
|
|
2785
|
+
{ name: "OccupancyNumber", kind: "single", dataType: "IfcCountMeasure" },
|
|
2786
|
+
{ name: "OccupancyType", kind: "single", dataType: "IfcLabel" },
|
|
2787
|
+
{ name: "PrivacyRequirement", kind: "single", dataType: "IfcLabel" },
|
|
2788
|
+
{ name: "SecurityRequirement", kind: "single", dataType: "IfcLabel" },
|
|
2789
|
+
],
|
|
2790
|
+
},
|
|
2791
|
+
{
|
|
2792
|
+
name: "Pset_SpaceThermalDesign",
|
|
2793
|
+
applicableEntities: ["IfcSpace"],
|
|
2794
|
+
properties: [
|
|
2795
|
+
{ name: "BoundaryAreaHeatLoss", kind: "single", dataType: "IfcHeatFluxDensityMeasure" },
|
|
2796
|
+
{ name: "CeilingRAPlenum", kind: "single", dataType: "IfcBoolean" },
|
|
2797
|
+
{ name: "CoolingDesignAirflow", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
2798
|
+
{ name: "CoolingDryBulb", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
2799
|
+
{ name: "CoolingRelativeHumidity", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
2800
|
+
{ name: "ExhaustAirFlowrate", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
2801
|
+
{ name: "HeatingDesignAirflow", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
2802
|
+
{ name: "HeatingDryBulb", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
2803
|
+
{ name: "HeatingRelativeHumidity", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
2804
|
+
{ name: "TotalHeatGain", kind: "single", dataType: "IfcPowerMeasure" },
|
|
2805
|
+
{ name: "TotalHeatLoss", kind: "single", dataType: "IfcPowerMeasure" },
|
|
2806
|
+
{ name: "TotalSensibleHeatGain", kind: "single", dataType: "IfcPowerMeasure" },
|
|
2807
|
+
{ name: "VentilationAirFlowrate", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
2808
|
+
],
|
|
2809
|
+
},
|
|
2810
|
+
{
|
|
2811
|
+
name: "Pset_SpaceThermalPHistory",
|
|
2812
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
2813
|
+
properties: [],
|
|
2814
|
+
},
|
|
2815
|
+
{
|
|
2816
|
+
name: "Pset_SpaceThermalRequirements",
|
|
2817
|
+
applicableEntities: ["IfcSpace", "IfcZone"],
|
|
2818
|
+
properties: [
|
|
2819
|
+
{ name: "AirConditioning", kind: "single", dataType: "IfcBoolean" },
|
|
2820
|
+
{ name: "AirConditioningCentral", kind: "single", dataType: "IfcBoolean" },
|
|
2821
|
+
{ name: "DiscontinuedHeating", kind: "single", dataType: "IfcBoolean" },
|
|
2822
|
+
{ name: "MechanicalVentilationRate", kind: "single", dataType: "IfcCountMeasure" },
|
|
2823
|
+
{ name: "NaturalVentilation", kind: "single", dataType: "IfcBoolean" },
|
|
2824
|
+
{ name: "NaturalVentilationRate", kind: "single", dataType: "IfcCountMeasure" },
|
|
2825
|
+
{ name: "SpaceHumidity", kind: "single", dataType: "IfcRatioMeasure" },
|
|
2826
|
+
{ name: "SpaceHumiditySummer", kind: "single", dataType: "IfcRatioMeasure" },
|
|
2827
|
+
{ name: "SpaceHumidityWinter", kind: "single", dataType: "IfcRatioMeasure" },
|
|
2828
|
+
{ name: "SpaceTemperatureMax", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
2829
|
+
{ name: "SpaceTemperatureMin", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
2830
|
+
{ name: "SpaceTemperatureSummerMax", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
2831
|
+
{ name: "SpaceTemperatureSummerMin", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
2832
|
+
{ name: "SpaceTemperatureWinterMax", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
2833
|
+
{ name: "SpaceTemperatureWinterMin", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
2834
|
+
],
|
|
2835
|
+
},
|
|
2836
|
+
{
|
|
2837
|
+
name: "Pset_StairCommon",
|
|
2838
|
+
applicableEntities: ["IfcStair"],
|
|
2839
|
+
properties: [
|
|
2840
|
+
{ name: "FireExit", kind: "single", dataType: "IfcBoolean" },
|
|
2841
|
+
{ name: "FireRating", kind: "single", dataType: "IfcLabel" },
|
|
2842
|
+
{ name: "HandicapAccessible", kind: "single", dataType: "IfcBoolean" },
|
|
2843
|
+
{ name: "HasNonSkidSurface", kind: "single", dataType: "IfcBoolean" },
|
|
2844
|
+
{ name: "IsExternal", kind: "single", dataType: "IfcBoolean" },
|
|
2845
|
+
{ name: "NumberOfRiser", kind: "single", dataType: "IfcCountMeasure" },
|
|
2846
|
+
{ name: "NumberOfTreads", kind: "single", dataType: "IfcCountMeasure" },
|
|
2847
|
+
{ name: "Reference", kind: "single", dataType: "IfcIdentifier" },
|
|
2848
|
+
{ name: "RequiredHeadroom", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2849
|
+
{ name: "RiserHeight", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2850
|
+
{ name: "TreadLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2851
|
+
],
|
|
2852
|
+
},
|
|
2853
|
+
{
|
|
2854
|
+
name: "Pset_StairFlightCommon",
|
|
2855
|
+
applicableEntities: ["IfcStairFlight"],
|
|
2856
|
+
properties: [
|
|
2857
|
+
{ name: "Headroom", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2858
|
+
{ name: "NosingLength", kind: "single", dataType: "IfcLengthMeasure" },
|
|
2859
|
+
{ name: "NumberOfRiser", kind: "single", dataType: "IfcCountMeasure" },
|
|
2860
|
+
{ name: "NumberOfTreads", kind: "single", dataType: "IfcCountMeasure" },
|
|
2861
|
+
{ name: "Reference", kind: "single", dataType: "IfcIdentifier" },
|
|
2862
|
+
{ name: "RiserHeight", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2863
|
+
{ name: "TreadLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2864
|
+
{ name: "TreadLengthAtInnerSide", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2865
|
+
{ name: "TreadLengthAtOffset", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2866
|
+
{ name: "WaistThickness", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2867
|
+
{ name: "WalkingLineOffset", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2868
|
+
],
|
|
2869
|
+
},
|
|
2870
|
+
{
|
|
2871
|
+
name: "Pset_SwitchingDeviceTypeCommon",
|
|
2872
|
+
applicableEntities: ["IfcSwitchingDeviceType"],
|
|
2873
|
+
properties: [
|
|
2874
|
+
{ name: "SwitchFunction", kind: "enumeration", enumeration: ["OnOffSwitch", "IntermediateSwitch", "DoubleThrowSwitch", "Other", "NotKnown", "Unset"] },
|
|
2875
|
+
{ name: "HasLock", kind: "single", dataType: "IfcBoolean" },
|
|
2876
|
+
{ name: "NumberOfGangs", kind: "single", dataType: "IfcInteger" },
|
|
2877
|
+
],
|
|
2878
|
+
},
|
|
2879
|
+
{
|
|
2880
|
+
name: "Pset_SwitchingDeviceTypeContactor",
|
|
2881
|
+
applicableEntities: ["IfcSwitchingDeviceType"],
|
|
2882
|
+
properties: [
|
|
2883
|
+
{ name: "ContactorType", kind: "enumeration", enumeration: ["CapacitorSwitching", "LowCurrent", "MagneticLatching", "MechanicalLatching", "Modular", "Reversing", "Standard", "Other", "NotKnown", "Unset"] },
|
|
2884
|
+
],
|
|
2885
|
+
},
|
|
2886
|
+
{
|
|
2887
|
+
name: "Pset_SwitchingDeviceTypeEmergencyStop",
|
|
2888
|
+
applicableEntities: ["IfcSwitchingDeviceType"],
|
|
2889
|
+
properties: [
|
|
2890
|
+
{ name: "SwitchOperation", kind: "enumeration", enumeration: ["Mushroom", "Other", "NotKnown", "Unset"] },
|
|
2891
|
+
],
|
|
2892
|
+
},
|
|
2893
|
+
{
|
|
2894
|
+
name: "Pset_SwitchingDeviceTypeStarter",
|
|
2895
|
+
applicableEntities: ["IfcSwitchingDeviceType"],
|
|
2896
|
+
properties: [
|
|
2897
|
+
{ name: "StarterType", kind: "enumeration", enumeration: ["AutoTransformer", "Manual", "DirectOnLine", "Frequency", "nStep", "Rheostatic", "StarDelta", "Other", "NotKnown", "Unset"] },
|
|
2898
|
+
],
|
|
2899
|
+
},
|
|
2900
|
+
{
|
|
2901
|
+
name: "Pset_SwitchingDeviceTypeSwitchDisconnector",
|
|
2902
|
+
applicableEntities: ["IfcSwitchingDeviceType"],
|
|
2903
|
+
properties: [
|
|
2904
|
+
{ name: "LoadDisconnectionType", kind: "enumeration", enumeration: ["OffLoad", "OnLoad", "Other", "NotKnown", "Unset"] },
|
|
2905
|
+
{ name: "SwitchDisconnectorType", kind: "enumeration", enumeration: ["CenterBreak", "DividedSupport", "DoubleBreak", "EarthingSwitch", "Isolator", "Other", "NotKnown", "Unset"] },
|
|
2906
|
+
{ name: "HasVisualIndication", kind: "single", dataType: "IfcBoolean" },
|
|
2907
|
+
],
|
|
2908
|
+
},
|
|
2909
|
+
{
|
|
2910
|
+
name: "Pset_SwitchingDeviceTypeToggleSwitch",
|
|
2911
|
+
applicableEntities: ["IfcSwitchingDeviceType"],
|
|
2912
|
+
properties: [
|
|
2913
|
+
{ name: "SwitchActivation", kind: "enumeration", enumeration: ["Actuator", "Foot", "Hand", "Proximity", "Sound", "TwoHand", "Wire", "NotKnown", "Unset"] },
|
|
2914
|
+
{ name: "SwitchUsage", kind: "enumeration", enumeration: ["Emergency", "Guard", "Limit", "Start", "Stop", "Other", "NotKnown", "Unset"] },
|
|
2915
|
+
{ name: "ToggleSwitchType", kind: "enumeration", enumeration: ["BreakGlass", "Changeover", "Dimmer", "KeyOperated", "ManualPull", "PushButton", "Pullcord", "Rocker", "Selector", "Twist", "Other", "NotKnown", "Unset"] },
|
|
2916
|
+
{ name: "IsIlluminated", kind: "single", dataType: "IfcBoolean" },
|
|
2917
|
+
{ name: "Legend", kind: "single", dataType: "IfcLabel" },
|
|
2918
|
+
],
|
|
2919
|
+
},
|
|
2920
|
+
{
|
|
2921
|
+
name: "Pset_SystemFurnitureElementTypeCommon",
|
|
2922
|
+
applicableEntities: ["IfcSystemFurnitureElementType"],
|
|
2923
|
+
properties: [
|
|
2924
|
+
{ name: "Finishing", kind: "single", dataType: "IfcLabel" },
|
|
2925
|
+
{ name: "GroupCode", kind: "single", dataType: "IfcIdentifier" },
|
|
2926
|
+
{ name: "IsUsed", kind: "single", dataType: "IfcBoolean" },
|
|
2927
|
+
{ name: "NominalHeight", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2928
|
+
{ name: "NominalWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2929
|
+
],
|
|
2930
|
+
},
|
|
2931
|
+
{
|
|
2932
|
+
name: "Pset_SystemFurnitureElementTypePanel",
|
|
2933
|
+
applicableEntities: ["IfcSystemFurnitureElementType"],
|
|
2934
|
+
properties: [
|
|
2935
|
+
{ name: "FurniturePanelType", kind: "enumeration", enumeration: ["Acoustical", "Glazed", "Horz_Seg", "Monolithic", "Open", "Ends", "Door", "Screen", "Other", "NotKnown", "Unset"] },
|
|
2936
|
+
{ name: "HasOpening", kind: "single", dataType: "IfcBoolean" },
|
|
2937
|
+
{ name: "NominalThickness", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2938
|
+
],
|
|
2939
|
+
},
|
|
2940
|
+
{
|
|
2941
|
+
name: "Pset_SystemFurnitureElementTypeWorkSurface",
|
|
2942
|
+
applicableEntities: ["IfcSystemFurnitureElementType"],
|
|
2943
|
+
properties: [
|
|
2944
|
+
{ name: "SupportType", kind: "enumeration", enumeration: ["Freestanding", "Supported", "Other", "NotKnown", "Unset"] },
|
|
2945
|
+
{ name: "HangingHeight", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2946
|
+
{ name: "NominalThickness", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2947
|
+
{ name: "ShapeDescription", kind: "single", dataType: "IfcLabel" },
|
|
2948
|
+
{ name: "UsePurpose", kind: "single", dataType: "IfcLabel" },
|
|
2949
|
+
],
|
|
2950
|
+
},
|
|
2951
|
+
{
|
|
2952
|
+
name: "Pset_TankTypeCommon",
|
|
2953
|
+
applicableEntities: ["IfcTankType"],
|
|
2954
|
+
properties: [
|
|
2955
|
+
{ name: "AccessType", kind: "enumeration", enumeration: ["NONE", "LOOSECOVER", "MANHOLE", "SECUREDCOVER", "SECUREDCOVERWITHMANHOLE", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
2956
|
+
{ name: "Type", kind: "enumeration", enumeration: ["BREAKPRESSURE", "EXPANSION", "FEEDANDEXPANSION", "GASSTORAGEBUTANE", "GASSTORAGELIQUIFIEDPETROLEUMGAS", "GASSTORAGEPROPANE", "OILSERVICE", "OILSTORAGE", "PRESSUREVESSEL", "WATERSTORAGEGENERAL", "WATERSTORAGEPOTABLE", "WATERSTORAGEPROCESS", "WATERSTORAGECOOLINGTOWERMAKEUP", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
2957
|
+
{ name: "EffectiveCapacity", kind: "single", dataType: "IfcVolumeMeasure" },
|
|
2958
|
+
{ name: "MaterialThickness", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2959
|
+
{ name: "NominalCapacity", kind: "single", dataType: "IfcVolumeMeasure" },
|
|
2960
|
+
{ name: "NominalDepth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2961
|
+
{ name: "NominalLengthOrDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2962
|
+
{ name: "NominalWidthOrDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2963
|
+
{ name: "OperatingWeight", kind: "single", dataType: "IfcMassMeasure" },
|
|
2964
|
+
],
|
|
2965
|
+
},
|
|
2966
|
+
{
|
|
2967
|
+
name: "Pset_TankTypeExpansion",
|
|
2968
|
+
applicableEntities: ["IfcTankType"],
|
|
2969
|
+
properties: [
|
|
2970
|
+
{ name: "ChargePressure", kind: "single", dataType: "IfcPressureMeasure" },
|
|
2971
|
+
{ name: "PressureRegulatorSetting", kind: "single", dataType: "IfcPressureMeasure" },
|
|
2972
|
+
{ name: "ReliefValveSetting", kind: "single", dataType: "IfcPressureMeasure" },
|
|
2973
|
+
],
|
|
2974
|
+
},
|
|
2975
|
+
{
|
|
2976
|
+
name: "Pset_TankTypePreformed",
|
|
2977
|
+
applicableEntities: ["IfcTankType"],
|
|
2978
|
+
properties: [
|
|
2979
|
+
{ name: "EndShapeType", kind: "enumeration", enumeration: ["CONCAVECONVEX", "FLATCONVEX", "CONVEXCONVEX", "CONCAVEFLAT", "FLATFLAT", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
2980
|
+
{ name: "PatternType", kind: "enumeration", enumeration: ["HORIZONTALCYLINDER", "VERTICALCYLINDER", "RECTANGULAR", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
2981
|
+
{ name: "FirstCurvatureRadius", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2982
|
+
{ name: "SecondCurvatureRadius", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
2983
|
+
],
|
|
2984
|
+
},
|
|
2985
|
+
{
|
|
2986
|
+
name: "Pset_TankTypePressureVessel",
|
|
2987
|
+
applicableEntities: ["IfcTankType"],
|
|
2988
|
+
properties: [
|
|
2989
|
+
{ name: "ChargePressure", kind: "single", dataType: "IfcPressureMeasure" },
|
|
2990
|
+
{ name: "PressureRegulatorSetting", kind: "single", dataType: "IfcPressureMeasure" },
|
|
2991
|
+
{ name: "ReliefValveSetting", kind: "single", dataType: "IfcPressureMeasure" },
|
|
2992
|
+
],
|
|
2993
|
+
},
|
|
2994
|
+
{
|
|
2995
|
+
name: "Pset_TankTypeSectional",
|
|
2996
|
+
applicableEntities: ["IfcTankType"],
|
|
2997
|
+
properties: [
|
|
2998
|
+
{ name: "NumberOfSections", kind: "single", dataType: "IfcInteger" },
|
|
2999
|
+
{ name: "SectionLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3000
|
+
{ name: "SectionWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3001
|
+
],
|
|
3002
|
+
},
|
|
3003
|
+
{
|
|
3004
|
+
name: "Pset_ThermalLoadAggregate",
|
|
3005
|
+
applicableEntities: ["IfcSpatialStructureElement", "IfcSystem", "IfcZone"],
|
|
3006
|
+
properties: [
|
|
3007
|
+
{ name: "ApplianceDiversity", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
3008
|
+
{ name: "InfiltrationDiversitySummer", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
3009
|
+
{ name: "InfiltrationDiversityWinter", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
3010
|
+
{ name: "LightingDiversity", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
3011
|
+
{ name: "LoadSafetyFactor", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
3012
|
+
{ name: "TotalCoolingLoad", kind: "single", dataType: "IfcPowerMeasure" },
|
|
3013
|
+
{ name: "TotalHeatingLoad", kind: "single", dataType: "IfcPowerMeasure" },
|
|
3014
|
+
],
|
|
3015
|
+
},
|
|
3016
|
+
{
|
|
3017
|
+
name: "Pset_ThermalLoadDesignCriteria",
|
|
3018
|
+
applicableEntities: ["IfcBuilding", "IfcSpatialStructureElement", "IfcSystem", "IfcZone"],
|
|
3019
|
+
properties: [
|
|
3020
|
+
{ name: "AppliancePercentLoadToRadiant", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
3021
|
+
{ name: "LightingLoadIntensity", kind: "single", dataType: "IfcReal" },
|
|
3022
|
+
{ name: "LightingPercentLoadToReturnAir", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
3023
|
+
{ name: "OccupancyDiversity", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
3024
|
+
{ name: "OutsideAirPerPerson", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
3025
|
+
{ name: "ReceptacleLoadIntensity", kind: "single", dataType: "IfcReal" },
|
|
3026
|
+
],
|
|
3027
|
+
},
|
|
3028
|
+
{
|
|
3029
|
+
name: "Pset_TransformerTypeCommon",
|
|
3030
|
+
applicableEntities: ["IfcTransformerType"],
|
|
3031
|
+
properties: [
|
|
3032
|
+
{ name: "SecondaryCurrentType", kind: "enumeration", enumeration: ["AC", "DC", "NotKnown", "Unset"] },
|
|
3033
|
+
{ name: "MaximumApparentPower", kind: "single", dataType: "IfcPowerMeasure" },
|
|
3034
|
+
{ name: "PrimaryApparentPower", kind: "single", dataType: "IfcPowerMeasure" },
|
|
3035
|
+
{ name: "PrimaryCurrent", kind: "single", dataType: "IfcElectricCurrentMeasure" },
|
|
3036
|
+
{ name: "PrimaryFrequency", kind: "single", dataType: "IfcFrequencyMeasure" },
|
|
3037
|
+
{ name: "PrimaryVoltage", kind: "single", dataType: "IfcElectricVoltageMeasure" },
|
|
3038
|
+
{ name: "SecondaryApparentPower", kind: "single", dataType: "IfcPowerMeasure" },
|
|
3039
|
+
{ name: "SecondaryCurrent", kind: "single", dataType: "IfcElectricCurrentMeasure" },
|
|
3040
|
+
{ name: "SecondaryFrequency", kind: "single", dataType: "IfcFrequencyMeasure" },
|
|
3041
|
+
{ name: "SecondaryVoltage", kind: "single", dataType: "IfcElectricVoltageMeasure" },
|
|
3042
|
+
],
|
|
3043
|
+
},
|
|
3044
|
+
{
|
|
3045
|
+
name: "Pset_TransportElementCommon",
|
|
3046
|
+
applicableEntities: ["IfcTransportElement"],
|
|
3047
|
+
properties: [
|
|
3048
|
+
{ name: "FireExit", kind: "single", dataType: "IfcBoolean" },
|
|
3049
|
+
{ name: "Reference", kind: "single", dataType: "IfcIdentifier" },
|
|
3050
|
+
],
|
|
3051
|
+
},
|
|
3052
|
+
{
|
|
3053
|
+
name: "Pset_TransportElementElevator",
|
|
3054
|
+
applicableEntities: ["IfcTransportElement"],
|
|
3055
|
+
properties: [
|
|
3056
|
+
{ name: "ClearDepth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3057
|
+
{ name: "ClearHeight", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3058
|
+
{ name: "ClearWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3059
|
+
],
|
|
3060
|
+
},
|
|
3061
|
+
{
|
|
3062
|
+
name: "Pset_TubeBundleTypeCommon",
|
|
3063
|
+
applicableEntities: ["IfcTubeBundleType"],
|
|
3064
|
+
properties: [
|
|
3065
|
+
{ name: "FoulingFactor", kind: "single", dataType: "IfcThermalResistanceMeasure" },
|
|
3066
|
+
{ name: "HasTurbulator", kind: "single", dataType: "IfcBoolean" },
|
|
3067
|
+
{ name: "HorizontalSpacing", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3068
|
+
{ name: "InLineRowSpacing", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3069
|
+
{ name: "InsideDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3070
|
+
{ name: "Length", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3071
|
+
{ name: "NominalDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3072
|
+
{ name: "NumberOfCircuits", kind: "single", dataType: "IfcInteger" },
|
|
3073
|
+
{ name: "NumberOfRows", kind: "single", dataType: "IfcInteger" },
|
|
3074
|
+
{ name: "OutsideDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3075
|
+
{ name: "StaggeredRowSpacing", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3076
|
+
{ name: "ThermalConductivity", kind: "single", dataType: "IfcThermalConductivityMeasure" },
|
|
3077
|
+
{ name: "VerticalSpacing", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3078
|
+
{ name: "Volume", kind: "single", dataType: "IfcVolumeMeasure" },
|
|
3079
|
+
],
|
|
3080
|
+
},
|
|
3081
|
+
{
|
|
3082
|
+
name: "Pset_TubeBundleTypeFinned",
|
|
3083
|
+
applicableEntities: ["IfcTubeBundleType"],
|
|
3084
|
+
properties: [
|
|
3085
|
+
{ name: "Diameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3086
|
+
{ name: "FinCorrugatedType", kind: "single", dataType: "IfcLabel" },
|
|
3087
|
+
{ name: "HasCoating", kind: "single", dataType: "IfcBoolean" },
|
|
3088
|
+
{ name: "Height", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3089
|
+
{ name: "Length", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3090
|
+
{ name: "Spacing", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3091
|
+
{ name: "ThermalConductivity", kind: "single", dataType: "IfcThermalConductivityMeasure" },
|
|
3092
|
+
{ name: "Thickness", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3093
|
+
],
|
|
3094
|
+
},
|
|
3095
|
+
{
|
|
3096
|
+
name: "Pset_UnitaryEquipmentTypeAirConditioningUnit",
|
|
3097
|
+
applicableEntities: ["IfcUnitaryEquipmentType"],
|
|
3098
|
+
properties: [
|
|
3099
|
+
{ name: "CondenserEnteringTemperature", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
3100
|
+
{ name: "CondenserFlowrate", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
3101
|
+
{ name: "CondenserLeavingTemperature", kind: "single", dataType: "IfcThermodynamicTemperatureMeasure" },
|
|
3102
|
+
{ name: "CoolingEfficiency", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
3103
|
+
{ name: "HeatingCapacity", kind: "single", dataType: "IfcPowerMeasure" },
|
|
3104
|
+
{ name: "HeatingEfficiency", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
3105
|
+
{ name: "LatentCoolingCapacity", kind: "single", dataType: "IfcPowerMeasure" },
|
|
3106
|
+
{ name: "OutsideAirFlowrate", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
3107
|
+
{ name: "SensibleCoolingCapacity", kind: "single", dataType: "IfcPowerMeasure" },
|
|
3108
|
+
],
|
|
3109
|
+
},
|
|
3110
|
+
{
|
|
3111
|
+
name: "Pset_UnitaryEquipmentTypeAirHandler",
|
|
3112
|
+
applicableEntities: ["IfcUnitaryEquipmentType"],
|
|
3113
|
+
properties: [
|
|
3114
|
+
{ name: "AirHandlerConstruction", kind: "enumeration", enumeration: ["MANUFACTUREDITEM", "CONSTRUCTEDONSITE", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
3115
|
+
{ name: "AirHandlerFanCoilArrangement", kind: "enumeration", enumeration: ["BLOWTHROUGH", "DRAWTHROUGH", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
3116
|
+
{ name: "DualDeck", kind: "single", dataType: "IfcBoolean" },
|
|
3117
|
+
],
|
|
3118
|
+
},
|
|
3119
|
+
{
|
|
3120
|
+
name: "Pset_UtilityConsumption",
|
|
3121
|
+
applicableEntities: ["IfcBuilding"],
|
|
3122
|
+
properties: [],
|
|
3123
|
+
},
|
|
3124
|
+
{
|
|
3125
|
+
name: "Pset_ValvePHistory",
|
|
3126
|
+
applicableEntities: ["IfcPerformanceHistory"],
|
|
3127
|
+
properties: [],
|
|
3128
|
+
},
|
|
3129
|
+
{
|
|
3130
|
+
name: "Pset_ValveTypeAirRelease",
|
|
3131
|
+
applicableEntities: ["IfcValveType"],
|
|
3132
|
+
properties: [
|
|
3133
|
+
{ name: "IsAutomatic", kind: "single", dataType: "IfcBoolean" },
|
|
3134
|
+
],
|
|
3135
|
+
},
|
|
3136
|
+
{
|
|
3137
|
+
name: "Pset_ValveTypeCommon",
|
|
3138
|
+
applicableEntities: ["IfcValveType"],
|
|
3139
|
+
properties: [
|
|
3140
|
+
{ name: "ValveMechanism", kind: "enumeration", enumeration: ["BALL", "BUTTERFLY", "CONFIGUREDGATE", "GLAND", "GLOBE", "LUBRICATEDPLUG", "NEEDLE", "PARALLELSLIDE", "PLUG", "WEDGEGATE", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
3141
|
+
{ name: "ValveOperation", kind: "enumeration", enumeration: ["DROPWEIGHT", "FLOAT", "HYDRAULIC", "LEVER", "LOCKSHIELD", "MOTORIZED", "PNEUMATIC", "SOLENOID", "SPRING", "THERMOSTATIC", "WHEEL", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
3142
|
+
{ name: "ValvePattern", kind: "enumeration", enumeration: ["SINGLEPORT", "ANGLED_2_PORT", "STRAIGHT_2_PORT", "STRAIGHT_3_PORT", "CROSSOVER_4_PORT", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
3143
|
+
{ name: "CloseOffRating", kind: "single", dataType: "IfcPressureMeasure" },
|
|
3144
|
+
{ name: "FlowCoefficient", kind: "single", dataType: "IfcReal" },
|
|
3145
|
+
{ name: "Size", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3146
|
+
{ name: "TestPressure", kind: "single", dataType: "IfcPressureMeasure" },
|
|
3147
|
+
{ name: "WorkingPressure", kind: "single", dataType: "IfcPressureMeasure" },
|
|
3148
|
+
],
|
|
3149
|
+
},
|
|
3150
|
+
{
|
|
3151
|
+
name: "Pset_ValveTypeDrawOffCock",
|
|
3152
|
+
applicableEntities: ["IfcValveType"],
|
|
3153
|
+
properties: [
|
|
3154
|
+
{ name: "HasHoseUnion", kind: "single", dataType: "IfcBoolean" },
|
|
3155
|
+
],
|
|
3156
|
+
},
|
|
3157
|
+
{
|
|
3158
|
+
name: "Pset_ValveTypeFaucet",
|
|
3159
|
+
applicableEntities: ["IfcValveType"],
|
|
3160
|
+
properties: [
|
|
3161
|
+
{ name: "FaucetFunction", kind: "enumeration", enumeration: ["COLD", "HOT", "MIXED", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
3162
|
+
{ name: "FaucetOperation", kind: "enumeration", enumeration: ["CERAMICDISC", "LEVERHANDLE", "NONCONCUSSIVESELFCLOSING", "QUATERTURN", "QUICKACTION", "SCREWDOWN", "SELFCLOSING", "TIMEDSELFCLOSING", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
3163
|
+
{ name: "FaucetType", kind: "enumeration", enumeration: ["BIB", "GLOBE", "DIVERTER", "DIVIDEDFLOWCOMBINATION", "PILLAR", "SINGLEOUTLETCOMBINATION", "SPRAY", "SPRAYMIXING", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
3164
|
+
{ name: "FaucetTopDescription", kind: "single", dataType: "IfcText" },
|
|
3165
|
+
{ name: "Finish", kind: "single", dataType: "IfcText" },
|
|
3166
|
+
],
|
|
3167
|
+
},
|
|
3168
|
+
{
|
|
3169
|
+
name: "Pset_ValveTypeFlushing",
|
|
3170
|
+
applicableEntities: ["IfcValveType"],
|
|
3171
|
+
properties: [
|
|
3172
|
+
{ name: "FlushingRate", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
3173
|
+
{ name: "HasIntegralShutOffDevice", kind: "single", dataType: "IfcBoolean" },
|
|
3174
|
+
{ name: "IsHighPressure", kind: "single", dataType: "IfcBoolean" },
|
|
3175
|
+
],
|
|
3176
|
+
},
|
|
3177
|
+
{
|
|
3178
|
+
name: "Pset_ValveTypeGasTap",
|
|
3179
|
+
applicableEntities: ["IfcValveType"],
|
|
3180
|
+
properties: [
|
|
3181
|
+
{ name: "HasHoseUnion", kind: "single", dataType: "IfcBoolean" },
|
|
3182
|
+
],
|
|
3183
|
+
},
|
|
3184
|
+
{
|
|
3185
|
+
name: "Pset_ValveTypeIsolating",
|
|
3186
|
+
applicableEntities: ["IfcValveType"],
|
|
3187
|
+
properties: [
|
|
3188
|
+
{ name: "IsolatingPurpose", kind: "enumeration", enumeration: ["LANDING", "LANDINGWITHPRESSUREREGULATION", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
3189
|
+
{ name: "IsNormallyOpen", kind: "single", dataType: "IfcBoolean" },
|
|
3190
|
+
],
|
|
3191
|
+
},
|
|
3192
|
+
{
|
|
3193
|
+
name: "Pset_ValveTypeMixing",
|
|
3194
|
+
applicableEntities: ["IfcValveType"],
|
|
3195
|
+
properties: [
|
|
3196
|
+
{ name: "MixerControl", kind: "enumeration", enumeration: ["MANUAL", "PREDEFINED", "THERMOSTATIC", "OTHER", "NOTKNOWN", "UNSET"] },
|
|
3197
|
+
{ name: "OutletConnectionSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3198
|
+
],
|
|
3199
|
+
},
|
|
3200
|
+
{
|
|
3201
|
+
name: "Pset_ValveTypePressureReducing",
|
|
3202
|
+
applicableEntities: ["IfcValveType"],
|
|
3203
|
+
properties: [
|
|
3204
|
+
{ name: "DownstreamPressure", kind: "single", dataType: "IfcPressureMeasure" },
|
|
3205
|
+
{ name: "UpstreamPressure", kind: "single", dataType: "IfcPressureMeasure" },
|
|
3206
|
+
],
|
|
3207
|
+
},
|
|
3208
|
+
{
|
|
3209
|
+
name: "Pset_ValveTypePressureRelief",
|
|
3210
|
+
applicableEntities: ["IfcValveType"],
|
|
3211
|
+
properties: [
|
|
3212
|
+
{ name: "ReliefPressure", kind: "single", dataType: "IfcPressureMeasure" },
|
|
3213
|
+
],
|
|
3214
|
+
},
|
|
3215
|
+
{
|
|
3216
|
+
name: "Pset_VibrationIsolatorTypeCommon",
|
|
3217
|
+
applicableEntities: ["IfcVibrationIsolatorType"],
|
|
3218
|
+
properties: [
|
|
3219
|
+
{ name: "Height", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3220
|
+
{ name: "IsolatorCompressibility", kind: "single", dataType: "IfcRatioMeasure" },
|
|
3221
|
+
{ name: "IsolatorStaticDeflection", kind: "single", dataType: "IfcLengthMeasure" },
|
|
3222
|
+
{ name: "MaximumSupportedWeight", kind: "single", dataType: "IfcMassMeasure" },
|
|
3223
|
+
{ name: "VibrationTransmissibility", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
3224
|
+
],
|
|
3225
|
+
},
|
|
3226
|
+
{
|
|
3227
|
+
name: "Pset_WallCommon",
|
|
3228
|
+
applicableEntities: ["IfcWall", "IfcWallStandardCase"],
|
|
3229
|
+
properties: [
|
|
3230
|
+
{ name: "AcousticRating", kind: "single", dataType: "IfcLabel" },
|
|
3231
|
+
{ name: "Combustible", kind: "single", dataType: "IfcBoolean" },
|
|
3232
|
+
{ name: "Compartmentation", kind: "single", dataType: "IfcBoolean" },
|
|
3233
|
+
{ name: "ExtendToStructure", kind: "single", dataType: "IfcBoolean" },
|
|
3234
|
+
{ name: "FireRating", kind: "single", dataType: "IfcLabel" },
|
|
3235
|
+
{ name: "IsExternal", kind: "single", dataType: "IfcBoolean" },
|
|
3236
|
+
{ name: "LoadBearing", kind: "single", dataType: "IfcBoolean" },
|
|
3237
|
+
{ name: "Reference", kind: "single", dataType: "IfcIdentifier" },
|
|
3238
|
+
{ name: "SurfaceSpreadOfFlame", kind: "single", dataType: "IfcLabel" },
|
|
3239
|
+
{ name: "ThermalTransmittance", kind: "single", dataType: "IfcThermalTransmittanceMeasure" },
|
|
3240
|
+
],
|
|
3241
|
+
},
|
|
3242
|
+
{
|
|
3243
|
+
name: "Pset_Warranty",
|
|
3244
|
+
applicableEntities: ["IfcProduct", "IfcSystem"],
|
|
3245
|
+
properties: [
|
|
3246
|
+
{ name: "Exclusions", kind: "single", dataType: "IfcText" },
|
|
3247
|
+
{ name: "IsExtendedWarranty", kind: "single", dataType: "IfcBoolean" },
|
|
3248
|
+
{ name: "WarrantyContent", kind: "single", dataType: "IfcText" },
|
|
3249
|
+
{ name: "WarrantyIdentifier", kind: "single", dataType: "IfcIdentifier" },
|
|
3250
|
+
{ name: "WarrantyPeriod", kind: "single", dataType: "IfcTimeMeasure" },
|
|
3251
|
+
],
|
|
3252
|
+
},
|
|
3253
|
+
{
|
|
3254
|
+
name: "Pset_WasteTerminalTypeFloorTrap",
|
|
3255
|
+
applicableEntities: ["IfcWasteTerminalType"],
|
|
3256
|
+
properties: [
|
|
3257
|
+
{ name: "InletPatternType", kind: "enumeration", enumeration: ["None", "1", "2", "3", "4", "12", "13", "14", "23", "24", "34", "123", "124", "134", "234", "1234"] },
|
|
3258
|
+
{ name: "TrapType", kind: "enumeration", enumeration: ["None", "P_Trap", "Q_Trap", "S_Trap", "Other", "NotKnown", "Unset"] },
|
|
3259
|
+
{ name: "CoverLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3260
|
+
{ name: "CoverWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3261
|
+
{ name: "HasStrainer", kind: "single", dataType: "IfcBoolean" },
|
|
3262
|
+
{ name: "InletConnectionSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3263
|
+
{ name: "IsForSullageWater", kind: "single", dataType: "IfcBoolean" },
|
|
3264
|
+
{ name: "NominalBodyDepth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3265
|
+
{ name: "NominalBodyLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3266
|
+
{ name: "NominalBodyWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3267
|
+
{ name: "OutletConnectionSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3268
|
+
{ name: "SpilloverLevel", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3269
|
+
],
|
|
3270
|
+
},
|
|
3271
|
+
{
|
|
3272
|
+
name: "Pset_WasteTerminalTypeFloorWaste",
|
|
3273
|
+
applicableEntities: ["IfcWasteTerminalType"],
|
|
3274
|
+
properties: [
|
|
3275
|
+
{ name: "CoverLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3276
|
+
{ name: "CoverWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3277
|
+
{ name: "NominalBodyDepth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3278
|
+
{ name: "NominalBodyLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3279
|
+
{ name: "NominalBodyWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3280
|
+
{ name: "OutletConnectionSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3281
|
+
],
|
|
3282
|
+
},
|
|
3283
|
+
{
|
|
3284
|
+
name: "Pset_WasteTerminalTypeGreaseInterceptor",
|
|
3285
|
+
applicableEntities: ["IfcWasteTerminalType"],
|
|
3286
|
+
properties: [
|
|
3287
|
+
{ name: "BodyDepth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3288
|
+
{ name: "CoverLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3289
|
+
{ name: "CoverWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3290
|
+
{ name: "InletConnectionSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3291
|
+
{ name: "NominalBodyLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3292
|
+
{ name: "NominalBodyWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3293
|
+
{ name: "OutletConnectionSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3294
|
+
{ name: "StrainerDepth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3295
|
+
{ name: "StrainerDiameter", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3296
|
+
],
|
|
3297
|
+
},
|
|
3298
|
+
{
|
|
3299
|
+
name: "Pset_WasteTerminalTypeGullySump",
|
|
3300
|
+
applicableEntities: ["IfcWasteTerminalType"],
|
|
3301
|
+
properties: [
|
|
3302
|
+
{ name: "BackInletPatternType", kind: "enumeration", enumeration: ["None", "1", "2", "3", "4", "12", "13", "14", "23", "24", "34", "123", "124", "134", "234", "1234"] },
|
|
3303
|
+
{ name: "GullyType", kind: "enumeration", enumeration: ["Vertical", "BackInlet", "Other", "NotKnown", "Unset"] },
|
|
3304
|
+
{ name: "TrapType", kind: "enumeration", enumeration: ["None", "P_Trap", "Q_Trap", "S_Trap", "Other", "NotKnown", "Unset"] },
|
|
3305
|
+
{ name: "CoverLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3306
|
+
{ name: "CoverWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3307
|
+
{ name: "InletConnectionSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3308
|
+
{ name: "NominalSumpDepth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3309
|
+
{ name: "NominalSumpLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3310
|
+
{ name: "NominalSumpWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3311
|
+
{ name: "OutletConnectionSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3312
|
+
],
|
|
3313
|
+
},
|
|
3314
|
+
{
|
|
3315
|
+
name: "Pset_WasteTerminalTypeGullyTrap",
|
|
3316
|
+
applicableEntities: ["IfcWasteTerminalType"],
|
|
3317
|
+
properties: [
|
|
3318
|
+
{ name: "BackInletPatternType", kind: "enumeration", enumeration: ["None", "1", "2", "3", "4", "12", "13", "14", "23", "24", "34", "123", "124", "134", "234", "1234"] },
|
|
3319
|
+
{ name: "GullyType", kind: "enumeration", enumeration: ["Vertical", "BackInlet", "Other", "NotKnown", "Unset"] },
|
|
3320
|
+
{ name: "TrapType", kind: "enumeration", enumeration: ["None", "P_Trap", "Q_Trap", "S_Trap", "Other", "NotKnown", "Unset"] },
|
|
3321
|
+
{ name: "CoverLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3322
|
+
{ name: "CoverWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3323
|
+
{ name: "HasStrainer", kind: "single", dataType: "IfcBoolean" },
|
|
3324
|
+
{ name: "InletConnectionSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3325
|
+
{ name: "NominalBodyDepth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3326
|
+
{ name: "NominalBodyLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3327
|
+
{ name: "NominalBodyWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3328
|
+
{ name: "OutletConnectionSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3329
|
+
],
|
|
3330
|
+
},
|
|
3331
|
+
{
|
|
3332
|
+
name: "Pset_WasteTerminalTypeOilInterceptor",
|
|
3333
|
+
applicableEntities: ["IfcWasteTerminalType"],
|
|
3334
|
+
properties: [
|
|
3335
|
+
{ name: "CoverLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3336
|
+
{ name: "CoverWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3337
|
+
{ name: "InletConnectionSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3338
|
+
{ name: "NominalBodyDepth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3339
|
+
{ name: "NominalBodyLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3340
|
+
{ name: "NominalBodyWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3341
|
+
{ name: "OutletConnectionSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3342
|
+
],
|
|
3343
|
+
},
|
|
3344
|
+
{
|
|
3345
|
+
name: "Pset_WasteTerminalTypePetrolInterceptor",
|
|
3346
|
+
applicableEntities: ["IfcWasteTerminalType"],
|
|
3347
|
+
properties: [
|
|
3348
|
+
{ name: "CoverLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3349
|
+
{ name: "CoverWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3350
|
+
{ name: "InletConnectionSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3351
|
+
{ name: "NominalBodyDepth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3352
|
+
{ name: "NominalBodyLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3353
|
+
{ name: "NominalBodyWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3354
|
+
{ name: "OutletConnectionSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3355
|
+
{ name: "VentilatingPipeSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3356
|
+
],
|
|
3357
|
+
},
|
|
3358
|
+
{
|
|
3359
|
+
name: "Pset_WasteTerminalTypeRoofDrain",
|
|
3360
|
+
applicableEntities: ["IfcWasteTerminalType"],
|
|
3361
|
+
properties: [
|
|
3362
|
+
{ name: "CoverLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3363
|
+
{ name: "CoverWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3364
|
+
{ name: "NominalBodyDepth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3365
|
+
{ name: "NominalBodyLength", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3366
|
+
{ name: "NominalBodyWidth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3367
|
+
{ name: "OutletConnectionSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3368
|
+
],
|
|
3369
|
+
},
|
|
3370
|
+
{
|
|
3371
|
+
name: "Pset_WasteTerminalTypeWasteDisposalUnit",
|
|
3372
|
+
applicableEntities: ["IfcWasteTerminalType"],
|
|
3373
|
+
properties: [
|
|
3374
|
+
{ name: "DrainConnectionSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3375
|
+
{ name: "NominalDepth", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3376
|
+
{ name: "OutletConnectionSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3377
|
+
],
|
|
3378
|
+
},
|
|
3379
|
+
{
|
|
3380
|
+
name: "Pset_WasteTerminalTypeWasteTrap",
|
|
3381
|
+
applicableEntities: ["IfcWasteTerminalType"],
|
|
3382
|
+
properties: [
|
|
3383
|
+
{ name: "WasteTrapType", kind: "enumeration", enumeration: ["None", "P_Trap", "Q_Trap", "S_Trap", "Other", "NotKnown", "Unset"] },
|
|
3384
|
+
{ name: "InletConnectionSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3385
|
+
{ name: "OutletConnectionSize", kind: "single", dataType: "IfcPositiveLengthMeasure" },
|
|
3386
|
+
],
|
|
3387
|
+
},
|
|
3388
|
+
{
|
|
3389
|
+
name: "Pset_WindowCommon",
|
|
3390
|
+
applicableEntities: ["IfcWindow"],
|
|
3391
|
+
properties: [
|
|
3392
|
+
{ name: "AcousticRating", kind: "single", dataType: "IfcLabel" },
|
|
3393
|
+
{ name: "FireRating", kind: "single", dataType: "IfcLabel" },
|
|
3394
|
+
{ name: "GlazingAreaFraction", kind: "single", dataType: "IfcPositiveRatioMeasure" },
|
|
3395
|
+
{ name: "Infiltration", kind: "single", dataType: "IfcVolumetricFlowRateMeasure" },
|
|
3396
|
+
{ name: "IsExternal", kind: "single", dataType: "IfcBoolean" },
|
|
3397
|
+
{ name: "Reference", kind: "single", dataType: "IfcIdentifier" },
|
|
3398
|
+
{ name: "SecurityRating", kind: "single", dataType: "IfcLabel" },
|
|
3399
|
+
{ name: "SmokeStop", kind: "single", dataType: "IfcBoolean" },
|
|
3400
|
+
{ name: "ThermalTransmittance", kind: "single", dataType: "IfcThermalTransmittanceMeasure" },
|
|
3401
|
+
],
|
|
3402
|
+
},
|
|
3403
|
+
{
|
|
3404
|
+
name: "Pset_ZoneCommon",
|
|
3405
|
+
applicableEntities: ["IfcZone"],
|
|
3406
|
+
properties: [
|
|
3407
|
+
{ name: "Category", kind: "single", dataType: "IfcLabel" },
|
|
3408
|
+
{ name: "GrossAreaPlanned", kind: "single", dataType: "IfcAreaMeasure" },
|
|
3409
|
+
{ name: "HandicapAccessible", kind: "single", dataType: "IfcBoolean" },
|
|
3410
|
+
{ name: "NetAreaPlanned", kind: "single", dataType: "IfcAreaMeasure" },
|
|
3411
|
+
{ name: "PubliclyAccessible", kind: "single", dataType: "IfcBoolean" },
|
|
3412
|
+
{ name: "Reference", kind: "single", dataType: "IfcIdentifier" },
|
|
3413
|
+
],
|
|
3414
|
+
},
|
|
3415
|
+
];
|
|
3416
|
+
//# sourceMappingURL=psets-ifc2x3.js.map
|