@ifc-lite/codegen 1.0.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.
Files changed (49) hide show
  1. package/INTEGRATION.md +354 -0
  2. package/LICENSE +373 -0
  3. package/README.md +101 -0
  4. package/dist/cli.d.ts +3 -0
  5. package/dist/cli.d.ts.map +1 -0
  6. package/dist/cli.js +35 -0
  7. package/dist/cli.js.map +1 -0
  8. package/dist/express-parser.d.ts +75 -0
  9. package/dist/express-parser.d.ts.map +1 -0
  10. package/dist/express-parser.js +318 -0
  11. package/dist/express-parser.js.map +1 -0
  12. package/dist/generator.d.ts +10 -0
  13. package/dist/generator.d.ts.map +1 -0
  14. package/dist/generator.js +64 -0
  15. package/dist/generator.js.map +1 -0
  16. package/dist/index.d.ts +9 -0
  17. package/dist/index.d.ts.map +1 -0
  18. package/dist/index.js +12 -0
  19. package/dist/index.js.map +1 -0
  20. package/dist/typescript-generator.d.ts +28 -0
  21. package/dist/typescript-generator.d.ts.map +1 -0
  22. package/dist/typescript-generator.js +400 -0
  23. package/dist/typescript-generator.js.map +1 -0
  24. package/generated/ifc4/entities.ts +6978 -0
  25. package/generated/ifc4/enums.ts +2471 -0
  26. package/generated/ifc4/index.ts +15 -0
  27. package/generated/ifc4/schema-registry.ts +60726 -0
  28. package/generated/ifc4/selects.ts +191 -0
  29. package/generated/ifc4/test-compile.ts +37 -0
  30. package/generated/ifc4/types.ts +3104 -0
  31. package/generated/ifc4x3/entities.ts +7836 -0
  32. package/generated/ifc4x3/enums.ts +3100 -0
  33. package/generated/ifc4x3/index.ts +15 -0
  34. package/generated/ifc4x3/schema-registry.ts +71023 -0
  35. package/generated/ifc4x3/selects.ts +194 -0
  36. package/generated/ifc4x3/types.ts +3707 -0
  37. package/package.json +32 -0
  38. package/schemas/IFC4X3.exp +13984 -0
  39. package/schemas/IFC4_ADD2_TC1.exp +12399 -0
  40. package/src/cli.ts +41 -0
  41. package/src/express-parser.ts +441 -0
  42. package/src/generator.ts +81 -0
  43. package/src/index.ts +31 -0
  44. package/src/typescript-generator.ts +496 -0
  45. package/test/express-parser.test.ts +363 -0
  46. package/test/integration.test.ts +246 -0
  47. package/test/typescript-generator.test.ts +348 -0
  48. package/tsconfig.json +20 -0
  49. package/vitest.config.ts +18 -0
@@ -0,0 +1,3707 @@
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
+
5
+ /**
6
+ * IFC Type Aliases
7
+ * Generated from EXPRESS schema: IFC4X3_DEV_923b0514
8
+ *
9
+ * DO NOT EDIT - This file is auto-generated
10
+ */
11
+
12
+ /** IfcAbsorbedDoseMeasure */
13
+ export type IfcAbsorbedDoseMeasure = number;
14
+
15
+ /** IfcAccelerationMeasure */
16
+ export type IfcAccelerationMeasure = number;
17
+
18
+ /** IfcAmountOfSubstanceMeasure */
19
+ export type IfcAmountOfSubstanceMeasure = number;
20
+
21
+ /** IfcAngularVelocityMeasure */
22
+ export type IfcAngularVelocityMeasure = number;
23
+
24
+ /** IfcArcIndex */
25
+ export type IfcArcIndex = LIST [3:3] OF IfcPositiveInteger;
26
+
27
+ /** IfcAreaDensityMeasure */
28
+ export type IfcAreaDensityMeasure = number;
29
+
30
+ /** IfcAreaMeasure */
31
+ export type IfcAreaMeasure = number;
32
+
33
+ /** IfcBinary */
34
+ export type IfcBinary = string;
35
+
36
+ /** IfcBoolean */
37
+ export type IfcBoolean = boolean;
38
+
39
+ /** IfcBoxAlignment */
40
+ export type IfcBoxAlignment = IfcLabel;
41
+
42
+ /** IfcCardinalPointReference */
43
+ export type IfcCardinalPointReference = number;
44
+
45
+ /** IfcComplexNumber */
46
+ export type IfcComplexNumber = ARRAY [1:2] OF REAL;
47
+
48
+ /** IfcCompoundPlaneAngleMeasure */
49
+ export type IfcCompoundPlaneAngleMeasure = LIST [3:4] OF INTEGER;
50
+
51
+ /** IfcContextDependentMeasure */
52
+ export type IfcContextDependentMeasure = number;
53
+
54
+ /** IfcCountMeasure */
55
+ export type IfcCountMeasure = number;
56
+
57
+ /** IfcCurvatureMeasure */
58
+ export type IfcCurvatureMeasure = number;
59
+
60
+ /** IfcDate */
61
+ export type IfcDate = string;
62
+
63
+ /** IfcDateTime */
64
+ export type IfcDateTime = string;
65
+
66
+ /** IfcDayInMonthNumber */
67
+ export type IfcDayInMonthNumber = number;
68
+
69
+ /** IfcDayInWeekNumber */
70
+ export type IfcDayInWeekNumber = number;
71
+
72
+ /** IfcDescriptiveMeasure */
73
+ export type IfcDescriptiveMeasure = string;
74
+
75
+ /** IfcDimensionCount */
76
+ export type IfcDimensionCount = number;
77
+
78
+ /** IfcDoseEquivalentMeasure */
79
+ export type IfcDoseEquivalentMeasure = number;
80
+
81
+ /** IfcDuration */
82
+ export type IfcDuration = string;
83
+
84
+ /** IfcDynamicViscosityMeasure */
85
+ export type IfcDynamicViscosityMeasure = number;
86
+
87
+ /** IfcElectricCapacitanceMeasure */
88
+ export type IfcElectricCapacitanceMeasure = number;
89
+
90
+ /** IfcElectricChargeMeasure */
91
+ export type IfcElectricChargeMeasure = number;
92
+
93
+ /** IfcElectricConductanceMeasure */
94
+ export type IfcElectricConductanceMeasure = number;
95
+
96
+ /** IfcElectricCurrentMeasure */
97
+ export type IfcElectricCurrentMeasure = number;
98
+
99
+ /** IfcElectricResistanceMeasure */
100
+ export type IfcElectricResistanceMeasure = number;
101
+
102
+ /** IfcElectricVoltageMeasure */
103
+ export type IfcElectricVoltageMeasure = number;
104
+
105
+ /** IfcEnergyMeasure */
106
+ export type IfcEnergyMeasure = number;
107
+
108
+ /** IfcFontStyle */
109
+ export type IfcFontStyle = string;
110
+
111
+ /** IfcFontVariant */
112
+ export type IfcFontVariant = string;
113
+
114
+ /** IfcFontWeight */
115
+ export type IfcFontWeight = string;
116
+
117
+ /** IfcForceMeasure */
118
+ export type IfcForceMeasure = number;
119
+
120
+ /** IfcFrequencyMeasure */
121
+ export type IfcFrequencyMeasure = number;
122
+
123
+ /** IfcGloballyUniqueId */
124
+ export type IfcGloballyUniqueId = STRING(22) FIXED;
125
+
126
+ /** IfcHeatFluxDensityMeasure */
127
+ export type IfcHeatFluxDensityMeasure = number;
128
+
129
+ /** IfcHeatingValueMeasure */
130
+ export type IfcHeatingValueMeasure = number;
131
+
132
+ /** IfcIdentifier */
133
+ export type IfcIdentifier = STRING(255);
134
+
135
+ /** IfcIlluminanceMeasure */
136
+ export type IfcIlluminanceMeasure = number;
137
+
138
+ /** IfcInductanceMeasure */
139
+ export type IfcInductanceMeasure = number;
140
+
141
+ /** IfcInteger */
142
+ export type IfcInteger = number;
143
+
144
+ /** IfcIntegerCountRateMeasure */
145
+ export type IfcIntegerCountRateMeasure = number;
146
+
147
+ /** IfcIonConcentrationMeasure */
148
+ export type IfcIonConcentrationMeasure = number;
149
+
150
+ /** IfcIsothermalMoistureCapacityMeasure */
151
+ export type IfcIsothermalMoistureCapacityMeasure = number;
152
+
153
+ /** IfcKinematicViscosityMeasure */
154
+ export type IfcKinematicViscosityMeasure = number;
155
+
156
+ /** IfcLabel */
157
+ export type IfcLabel = STRING(255);
158
+
159
+ /** IfcLanguageId */
160
+ export type IfcLanguageId = IfcIdentifier;
161
+
162
+ /** IfcLengthMeasure */
163
+ export type IfcLengthMeasure = number;
164
+
165
+ /** IfcLineIndex */
166
+ export type IfcLineIndex = LIST [2:?] OF IfcPositiveInteger;
167
+
168
+ /** IfcLinearForceMeasure */
169
+ export type IfcLinearForceMeasure = number;
170
+
171
+ /** IfcLinearMomentMeasure */
172
+ export type IfcLinearMomentMeasure = number;
173
+
174
+ /** IfcLinearStiffnessMeasure */
175
+ export type IfcLinearStiffnessMeasure = number;
176
+
177
+ /** IfcLinearVelocityMeasure */
178
+ export type IfcLinearVelocityMeasure = number;
179
+
180
+ /** IfcLogical */
181
+ export type IfcLogical = boolean | null;
182
+
183
+ /** IfcLuminousFluxMeasure */
184
+ export type IfcLuminousFluxMeasure = number;
185
+
186
+ /** IfcLuminousIntensityDistributionMeasure */
187
+ export type IfcLuminousIntensityDistributionMeasure = number;
188
+
189
+ /** IfcLuminousIntensityMeasure */
190
+ export type IfcLuminousIntensityMeasure = number;
191
+
192
+ /** IfcMagneticFluxDensityMeasure */
193
+ export type IfcMagneticFluxDensityMeasure = number;
194
+
195
+ /** IfcMagneticFluxMeasure */
196
+ export type IfcMagneticFluxMeasure = number;
197
+
198
+ /** IfcMassDensityMeasure */
199
+ export type IfcMassDensityMeasure = number;
200
+
201
+ /** IfcMassFlowRateMeasure */
202
+ export type IfcMassFlowRateMeasure = number;
203
+
204
+ /** IfcMassMeasure */
205
+ export type IfcMassMeasure = number;
206
+
207
+ /** IfcMassPerLengthMeasure */
208
+ export type IfcMassPerLengthMeasure = number;
209
+
210
+ /** IfcModulusOfElasticityMeasure */
211
+ export type IfcModulusOfElasticityMeasure = number;
212
+
213
+ /** IfcModulusOfLinearSubgradeReactionMeasure */
214
+ export type IfcModulusOfLinearSubgradeReactionMeasure = number;
215
+
216
+ /** IfcModulusOfRotationalSubgradeReactionMeasure */
217
+ export type IfcModulusOfRotationalSubgradeReactionMeasure = number;
218
+
219
+ /** IfcModulusOfSubgradeReactionMeasure */
220
+ export type IfcModulusOfSubgradeReactionMeasure = number;
221
+
222
+ /** IfcMoistureDiffusivityMeasure */
223
+ export type IfcMoistureDiffusivityMeasure = number;
224
+
225
+ /** IfcMolecularWeightMeasure */
226
+ export type IfcMolecularWeightMeasure = number;
227
+
228
+ /** IfcMomentOfInertiaMeasure */
229
+ export type IfcMomentOfInertiaMeasure = number;
230
+
231
+ /** IfcMonetaryMeasure */
232
+ export type IfcMonetaryMeasure = number;
233
+
234
+ /** IfcMonthInYearNumber */
235
+ export type IfcMonthInYearNumber = number;
236
+
237
+ /** IfcNonNegativeLengthMeasure */
238
+ export type IfcNonNegativeLengthMeasure = number;
239
+
240
+ /** IfcNormalisedRatioMeasure */
241
+ export type IfcNormalisedRatioMeasure = number;
242
+
243
+ /** IfcNumericMeasure */
244
+ export type IfcNumericMeasure = number;
245
+
246
+ /** IfcPHMeasure */
247
+ export type IfcPHMeasure = number;
248
+
249
+ /** IfcParameterValue */
250
+ export type IfcParameterValue = number;
251
+
252
+ /** IfcPlanarForceMeasure */
253
+ export type IfcPlanarForceMeasure = number;
254
+
255
+ /** IfcPlaneAngleMeasure */
256
+ export type IfcPlaneAngleMeasure = number;
257
+
258
+ /** IfcPositiveInteger */
259
+ export type IfcPositiveInteger = IfcInteger;
260
+
261
+ /** IfcPositiveLengthMeasure */
262
+ export type IfcPositiveLengthMeasure = number;
263
+
264
+ /** IfcPositivePlaneAngleMeasure */
265
+ export type IfcPositivePlaneAngleMeasure = number;
266
+
267
+ /** IfcPositiveRatioMeasure */
268
+ export type IfcPositiveRatioMeasure = number;
269
+
270
+ /** IfcPowerMeasure */
271
+ export type IfcPowerMeasure = number;
272
+
273
+ /** IfcPresentableText */
274
+ export type IfcPresentableText = string;
275
+
276
+ /** IfcPressureMeasure */
277
+ export type IfcPressureMeasure = number;
278
+
279
+ /** IfcPropertySetDefinitionSet */
280
+ export type IfcPropertySetDefinitionSet = SET [1:?] OF IfcPropertySetDefinition;
281
+
282
+ /** IfcRadioActivityMeasure */
283
+ export type IfcRadioActivityMeasure = number;
284
+
285
+ /** IfcRatioMeasure */
286
+ export type IfcRatioMeasure = number;
287
+
288
+ /** IfcReal */
289
+ export type IfcReal = number;
290
+
291
+ /** IfcRotationalFrequencyMeasure */
292
+ export type IfcRotationalFrequencyMeasure = number;
293
+
294
+ /** IfcRotationalMassMeasure */
295
+ export type IfcRotationalMassMeasure = number;
296
+
297
+ /** IfcRotationalStiffnessMeasure */
298
+ export type IfcRotationalStiffnessMeasure = number;
299
+
300
+ /** IfcSectionModulusMeasure */
301
+ export type IfcSectionModulusMeasure = number;
302
+
303
+ /** IfcSectionalAreaIntegralMeasure */
304
+ export type IfcSectionalAreaIntegralMeasure = number;
305
+
306
+ /** IfcShearModulusMeasure */
307
+ export type IfcShearModulusMeasure = number;
308
+
309
+ /** IfcSolidAngleMeasure */
310
+ export type IfcSolidAngleMeasure = number;
311
+
312
+ /** IfcSoundPowerLevelMeasure */
313
+ export type IfcSoundPowerLevelMeasure = number;
314
+
315
+ /** IfcSoundPowerMeasure */
316
+ export type IfcSoundPowerMeasure = number;
317
+
318
+ /** IfcSoundPressureLevelMeasure */
319
+ export type IfcSoundPressureLevelMeasure = number;
320
+
321
+ /** IfcSoundPressureMeasure */
322
+ export type IfcSoundPressureMeasure = number;
323
+
324
+ /** IfcSpecificHeatCapacityMeasure */
325
+ export type IfcSpecificHeatCapacityMeasure = number;
326
+
327
+ /** IfcSpecularExponent */
328
+ export type IfcSpecularExponent = number;
329
+
330
+ /** IfcSpecularRoughness */
331
+ export type IfcSpecularRoughness = number;
332
+
333
+ /** IfcStrippedOptional */
334
+ export type IfcStrippedOptional = boolean;
335
+
336
+ /** IfcTemperatureGradientMeasure */
337
+ export type IfcTemperatureGradientMeasure = number;
338
+
339
+ /** IfcTemperatureRateOfChangeMeasure */
340
+ export type IfcTemperatureRateOfChangeMeasure = number;
341
+
342
+ /** IfcText */
343
+ export type IfcText = string;
344
+
345
+ /** IfcTextAlignment */
346
+ export type IfcTextAlignment = string;
347
+
348
+ /** IfcTextDecoration */
349
+ export type IfcTextDecoration = string;
350
+
351
+ /** IfcTextFontName */
352
+ export type IfcTextFontName = string;
353
+
354
+ /** IfcTextTransformation */
355
+ export type IfcTextTransformation = string;
356
+
357
+ /** IfcThermalAdmittanceMeasure */
358
+ export type IfcThermalAdmittanceMeasure = number;
359
+
360
+ /** IfcThermalConductivityMeasure */
361
+ export type IfcThermalConductivityMeasure = number;
362
+
363
+ /** IfcThermalExpansionCoefficientMeasure */
364
+ export type IfcThermalExpansionCoefficientMeasure = number;
365
+
366
+ /** IfcThermalResistanceMeasure */
367
+ export type IfcThermalResistanceMeasure = number;
368
+
369
+ /** IfcThermalTransmittanceMeasure */
370
+ export type IfcThermalTransmittanceMeasure = number;
371
+
372
+ /** IfcThermodynamicTemperatureMeasure */
373
+ export type IfcThermodynamicTemperatureMeasure = number;
374
+
375
+ /** IfcTime */
376
+ export type IfcTime = string;
377
+
378
+ /** IfcTimeMeasure */
379
+ export type IfcTimeMeasure = number;
380
+
381
+ /** IfcTimeStamp */
382
+ export type IfcTimeStamp = number;
383
+
384
+ /** IfcTorqueMeasure */
385
+ export type IfcTorqueMeasure = number;
386
+
387
+ /** IfcURIReference */
388
+ export type IfcURIReference = string;
389
+
390
+ /** IfcVaporPermeabilityMeasure */
391
+ export type IfcVaporPermeabilityMeasure = number;
392
+
393
+ /** IfcVolumeMeasure */
394
+ export type IfcVolumeMeasure = number;
395
+
396
+ /** IfcVolumetricFlowRateMeasure */
397
+ export type IfcVolumetricFlowRateMeasure = number;
398
+
399
+ /** IfcWarpingConstantMeasure */
400
+ export type IfcWarpingConstantMeasure = number;
401
+
402
+ /** IfcWarpingMomentMeasure */
403
+ export type IfcWarpingMomentMeasure = number;
404
+
405
+ /** IfcWellKnownTextLiteral */
406
+ export type IfcWellKnownTextLiteral = string;
407
+
408
+ /** IfcActionRequestTypeEnum */
409
+ export type IfcActionRequestTypeEnum = ENUMERATION OF
410
+ (EMAIL
411
+ ,FAX
412
+ ,PHONE
413
+ ,POST
414
+ ,VERBAL
415
+ ,USERDEFINED
416
+ ,NOTDEFINED);
417
+
418
+ /** IfcActionSourceTypeEnum */
419
+ export type IfcActionSourceTypeEnum = ENUMERATION OF
420
+ (BRAKES
421
+ ,BUOYANCY
422
+ ,COMPLETION_G1
423
+ ,CREEP
424
+ ,CURRENT
425
+ ,DEAD_LOAD_G
426
+ ,EARTHQUAKE_E
427
+ ,ERECTION
428
+ ,FIRE
429
+ ,ICE
430
+ ,IMPACT
431
+ ,IMPULSE
432
+ ,LACK_OF_FIT
433
+ ,LIVE_LOAD_Q
434
+ ,PRESTRESSING_P
435
+ ,PROPPING
436
+ ,RAIN
437
+ ,SETTLEMENT_U
438
+ ,SHRINKAGE
439
+ ,SNOW_S
440
+ ,SYSTEM_IMPERFECTION
441
+ ,TEMPERATURE_T
442
+ ,TRANSPORT
443
+ ,WAVE
444
+ ,WIND_W
445
+ ,USERDEFINED
446
+ ,NOTDEFINED);
447
+
448
+ /** IfcActionTypeEnum */
449
+ export type IfcActionTypeEnum = ENUMERATION OF
450
+ (EXTRAORDINARY_A
451
+ ,PERMANENT_G
452
+ ,VARIABLE_Q
453
+ ,USERDEFINED
454
+ ,NOTDEFINED);
455
+
456
+ /** IfcActuatorTypeEnum */
457
+ export type IfcActuatorTypeEnum = ENUMERATION OF
458
+ (ELECTRICACTUATOR
459
+ ,HANDOPERATEDACTUATOR
460
+ ,HYDRAULICACTUATOR
461
+ ,PNEUMATICACTUATOR
462
+ ,THERMOSTATICACTUATOR
463
+ ,USERDEFINED
464
+ ,NOTDEFINED);
465
+
466
+ /** IfcAddressTypeEnum */
467
+ export type IfcAddressTypeEnum = ENUMERATION OF
468
+ (DISTRIBUTIONPOINT
469
+ ,HOME
470
+ ,OFFICE
471
+ ,SITE
472
+ ,USERDEFINED);
473
+
474
+ /** IfcAirTerminalBoxTypeEnum */
475
+ export type IfcAirTerminalBoxTypeEnum = ENUMERATION OF
476
+ (CONSTANTFLOW
477
+ ,VARIABLEFLOWPRESSUREDEPENDANT
478
+ ,VARIABLEFLOWPRESSUREINDEPENDANT
479
+ ,USERDEFINED
480
+ ,NOTDEFINED);
481
+
482
+ /** IfcAirTerminalTypeEnum */
483
+ export type IfcAirTerminalTypeEnum = ENUMERATION OF
484
+ (DIFFUSER
485
+ ,GRILLE
486
+ ,LOUVRE
487
+ ,REGISTER
488
+ ,USERDEFINED
489
+ ,NOTDEFINED);
490
+
491
+ /** IfcAirToAirHeatRecoveryTypeEnum */
492
+ export type IfcAirToAirHeatRecoveryTypeEnum = ENUMERATION OF
493
+ (FIXEDPLATECOUNTERFLOWEXCHANGER
494
+ ,FIXEDPLATECROSSFLOWEXCHANGER
495
+ ,FIXEDPLATEPARALLELFLOWEXCHANGER
496
+ ,HEATPIPE
497
+ ,ROTARYWHEEL
498
+ ,RUNAROUNDCOILLOOP
499
+ ,THERMOSIPHONCOILTYPEHEATEXCHANGERS
500
+ ,THERMOSIPHONSEALEDTUBEHEATEXCHANGERS
501
+ ,TWINTOWERENTHALPYRECOVERYLOOPS
502
+ ,USERDEFINED
503
+ ,NOTDEFINED);
504
+
505
+ /** IfcAlarmTypeEnum */
506
+ export type IfcAlarmTypeEnum = ENUMERATION OF
507
+ (BELL
508
+ ,BREAKGLASSBUTTON
509
+ ,LIGHT
510
+ ,MANUALPULLBOX
511
+ ,RAILWAYCROCODILE
512
+ ,RAILWAYDETONATOR
513
+ ,SIREN
514
+ ,WHISTLE
515
+ ,USERDEFINED
516
+ ,NOTDEFINED);
517
+
518
+ /** IfcAlignmentCantSegmentTypeEnum */
519
+ export type IfcAlignmentCantSegmentTypeEnum = ENUMERATION OF
520
+ (BLOSSCURVE
521
+ ,CONSTANTCANT
522
+ ,COSINECURVE
523
+ ,HELMERTCURVE
524
+ ,LINEARTRANSITION
525
+ ,SINECURVE
526
+ ,VIENNESEBEND);
527
+
528
+ /** IfcAlignmentHorizontalSegmentTypeEnum */
529
+ export type IfcAlignmentHorizontalSegmentTypeEnum = ENUMERATION OF
530
+ (BLOSSCURVE
531
+ ,CIRCULARARC
532
+ ,CLOTHOID
533
+ ,COSINECURVE
534
+ ,CUBIC
535
+ ,HELMERTCURVE
536
+ ,LINE
537
+ ,SINECURVE
538
+ ,VIENNESEBEND);
539
+
540
+ /** IfcAlignmentTypeEnum */
541
+ export type IfcAlignmentTypeEnum = ENUMERATION OF
542
+ (USERDEFINED
543
+ ,NOTDEFINED);
544
+
545
+ /** IfcAlignmentVerticalSegmentTypeEnum */
546
+ export type IfcAlignmentVerticalSegmentTypeEnum = ENUMERATION OF
547
+ (CIRCULARARC
548
+ ,CLOTHOID
549
+ ,CONSTANTGRADIENT
550
+ ,PARABOLICARC);
551
+
552
+ /** IfcAnalysisModelTypeEnum */
553
+ export type IfcAnalysisModelTypeEnum = ENUMERATION OF
554
+ (IN_PLANE_LOADING_2D
555
+ ,LOADING_3D
556
+ ,OUT_PLANE_LOADING_2D
557
+ ,USERDEFINED
558
+ ,NOTDEFINED);
559
+
560
+ /** IfcAnalysisTheoryTypeEnum */
561
+ export type IfcAnalysisTheoryTypeEnum = ENUMERATION OF
562
+ (FIRST_ORDER_THEORY
563
+ ,FULL_NONLINEAR_THEORY
564
+ ,SECOND_ORDER_THEORY
565
+ ,THIRD_ORDER_THEORY
566
+ ,USERDEFINED
567
+ ,NOTDEFINED);
568
+
569
+ /** IfcAnnotationTypeEnum */
570
+ export type IfcAnnotationTypeEnum = ENUMERATION OF
571
+ (CONTOURLINE
572
+ ,DIMENSION
573
+ ,ISOBAR
574
+ ,ISOLUX
575
+ ,ISOTHERM
576
+ ,LEADER
577
+ ,SURVEY
578
+ ,SYMBOL
579
+ ,TEXT
580
+ ,USERDEFINED
581
+ ,NOTDEFINED);
582
+
583
+ /** IfcArithmeticOperatorEnum */
584
+ export type IfcArithmeticOperatorEnum = ENUMERATION OF
585
+ (ADD
586
+ ,DIVIDE
587
+ ,MODULO
588
+ ,MULTIPLY
589
+ ,SUBTRACT);
590
+
591
+ /** IfcAssemblyPlaceEnum */
592
+ export type IfcAssemblyPlaceEnum = ENUMERATION OF
593
+ (FACTORY
594
+ ,SITE
595
+ ,NOTDEFINED);
596
+
597
+ /** IfcAudioVisualApplianceTypeEnum */
598
+ export type IfcAudioVisualApplianceTypeEnum = ENUMERATION OF
599
+ (AMPLIFIER
600
+ ,CAMERA
601
+ ,COMMUNICATIONTERMINAL
602
+ ,DISPLAY
603
+ ,MICROPHONE
604
+ ,PLAYER
605
+ ,PROJECTOR
606
+ ,RECEIVER
607
+ ,RECORDINGEQUIPMENT
608
+ ,SPEAKER
609
+ ,SWITCHER
610
+ ,TELEPHONE
611
+ ,TUNER
612
+ ,USERDEFINED
613
+ ,NOTDEFINED);
614
+
615
+ /** IfcBSplineCurveForm */
616
+ export type IfcBSplineCurveForm = ENUMERATION OF
617
+ (CIRCULAR_ARC
618
+ ,ELLIPTIC_ARC
619
+ ,HYPERBOLIC_ARC
620
+ ,PARABOLIC_ARC
621
+ ,POLYLINE_FORM
622
+ ,UNSPECIFIED);
623
+
624
+ /** IfcBSplineSurfaceForm */
625
+ export type IfcBSplineSurfaceForm = ENUMERATION OF
626
+ (CONICAL_SURF
627
+ ,CYLINDRICAL_SURF
628
+ ,GENERALISED_CONE
629
+ ,PLANE_SURF
630
+ ,QUADRIC_SURF
631
+ ,RULED_SURF
632
+ ,SPHERICAL_SURF
633
+ ,SURF_OF_LINEAR_EXTRUSION
634
+ ,SURF_OF_REVOLUTION
635
+ ,TOROIDAL_SURF
636
+ ,UNSPECIFIED);
637
+
638
+ /** IfcBeamTypeEnum */
639
+ export type IfcBeamTypeEnum = ENUMERATION OF
640
+ (BEAM
641
+ ,CORNICE
642
+ ,DIAPHRAGM
643
+ ,EDGEBEAM
644
+ ,GIRDER_SEGMENT
645
+ ,HATSTONE
646
+ ,HOLLOWCORE
647
+ ,JOIST
648
+ ,LINTEL
649
+ ,PIERCAP
650
+ ,SPANDREL
651
+ ,T_BEAM
652
+ ,USERDEFINED
653
+ ,NOTDEFINED);
654
+
655
+ /** IfcBearingTypeEnum */
656
+ export type IfcBearingTypeEnum = ENUMERATION OF
657
+ (CYLINDRICAL
658
+ ,DISK
659
+ ,ELASTOMERIC
660
+ ,GUIDE
661
+ ,POT
662
+ ,ROCKER
663
+ ,ROLLER
664
+ ,SPHERICAL
665
+ ,USERDEFINED
666
+ ,NOTDEFINED);
667
+
668
+ /** IfcBenchmarkEnum */
669
+ export type IfcBenchmarkEnum = ENUMERATION OF
670
+ (EQUALTO
671
+ ,GREATERTHAN
672
+ ,GREATERTHANOREQUALTO
673
+ ,INCLUDEDIN
674
+ ,INCLUDES
675
+ ,LESSTHAN
676
+ ,LESSTHANOREQUALTO
677
+ ,NOTEQUALTO
678
+ ,NOTINCLUDEDIN
679
+ ,NOTINCLUDES);
680
+
681
+ /** IfcBoilerTypeEnum */
682
+ export type IfcBoilerTypeEnum = ENUMERATION OF
683
+ (STEAM
684
+ ,WATER
685
+ ,USERDEFINED
686
+ ,NOTDEFINED);
687
+
688
+ /** IfcBooleanOperator */
689
+ export type IfcBooleanOperator = ENUMERATION OF
690
+ (DIFFERENCE
691
+ ,INTERSECTION
692
+ ,UNION);
693
+
694
+ /** IfcBridgePartTypeEnum */
695
+ export type IfcBridgePartTypeEnum = ENUMERATION OF
696
+ (ABUTMENT
697
+ ,DECK
698
+ ,DECK_SEGMENT
699
+ ,FOUNDATION
700
+ ,PIER
701
+ ,PIER_SEGMENT
702
+ ,PYLON
703
+ ,SUBSTRUCTURE
704
+ ,SUPERSTRUCTURE
705
+ ,SURFACESTRUCTURE
706
+ ,USERDEFINED
707
+ ,NOTDEFINED);
708
+
709
+ /** IfcBridgeTypeEnum */
710
+ export type IfcBridgeTypeEnum = ENUMERATION OF
711
+ (ARCHED
712
+ ,CABLE_STAYED
713
+ ,CANTILEVER
714
+ ,CULVERT
715
+ ,FRAMEWORK
716
+ ,GIRDER
717
+ ,SUSPENSION
718
+ ,TRUSS
719
+ ,USERDEFINED
720
+ ,NOTDEFINED);
721
+
722
+ /** IfcBuildingElementPartTypeEnum */
723
+ export type IfcBuildingElementPartTypeEnum = ENUMERATION OF
724
+ (APRON
725
+ ,ARMOURUNIT
726
+ ,INSULATION
727
+ ,PRECASTPANEL
728
+ ,SAFETYCAGE
729
+ ,USERDEFINED
730
+ ,NOTDEFINED);
731
+
732
+ /** IfcBuildingElementProxyTypeEnum */
733
+ export type IfcBuildingElementProxyTypeEnum = ENUMERATION OF
734
+ (COMPLEX
735
+ ,ELEMENT
736
+ ,PARTIAL
737
+ ,PROVISIONFORSPACE
738
+ ,PROVISIONFORVOID
739
+ ,USERDEFINED
740
+ ,NOTDEFINED);
741
+
742
+ /** IfcBuildingSystemTypeEnum */
743
+ export type IfcBuildingSystemTypeEnum = ENUMERATION OF
744
+ (FENESTRATION
745
+ ,FOUNDATION
746
+ ,LOADBEARING
747
+ ,OUTERSHELL
748
+ ,SHADING
749
+ ,TRANSPORT
750
+ ,USERDEFINED
751
+ ,NOTDEFINED);
752
+
753
+ /** IfcBuiltSystemTypeEnum */
754
+ export type IfcBuiltSystemTypeEnum = ENUMERATION OF
755
+ (EROSIONPREVENTION
756
+ ,FENESTRATION
757
+ ,FOUNDATION
758
+ ,LOADBEARING
759
+ ,MOORING
760
+ ,OUTERSHELL
761
+ ,PRESTRESSING
762
+ ,RAILWAYLINE
763
+ ,RAILWAYTRACK
764
+ ,REINFORCING
765
+ ,SHADING
766
+ ,TRACKCIRCUIT
767
+ ,TRANSPORT
768
+ ,USERDEFINED
769
+ ,NOTDEFINED);
770
+
771
+ /** IfcBurnerTypeEnum */
772
+ export type IfcBurnerTypeEnum = ENUMERATION OF
773
+ (USERDEFINED
774
+ ,NOTDEFINED);
775
+
776
+ /** IfcCableCarrierFittingTypeEnum */
777
+ export type IfcCableCarrierFittingTypeEnum = ENUMERATION OF
778
+ (BEND
779
+ ,CONNECTOR
780
+ ,CROSS
781
+ ,JUNCTION
782
+ ,REDUCER
783
+ ,TEE
784
+ ,TRANSITION
785
+ ,USERDEFINED
786
+ ,NOTDEFINED);
787
+
788
+ /** IfcCableCarrierSegmentTypeEnum */
789
+ export type IfcCableCarrierSegmentTypeEnum = ENUMERATION OF
790
+ (CABLEBRACKET
791
+ ,CABLELADDERSEGMENT
792
+ ,CABLETRAYSEGMENT
793
+ ,CABLETRUNKINGSEGMENT
794
+ ,CATENARYWIRE
795
+ ,CONDUITSEGMENT
796
+ ,DROPPER
797
+ ,USERDEFINED
798
+ ,NOTDEFINED);
799
+
800
+ /** IfcCableFittingTypeEnum */
801
+ export type IfcCableFittingTypeEnum = ENUMERATION OF
802
+ (CONNECTOR
803
+ ,ENTRY
804
+ ,EXIT
805
+ ,FANOUT
806
+ ,JUNCTION
807
+ ,TRANSITION
808
+ ,USERDEFINED
809
+ ,NOTDEFINED);
810
+
811
+ /** IfcCableSegmentTypeEnum */
812
+ export type IfcCableSegmentTypeEnum = ENUMERATION OF
813
+ (BUSBARSEGMENT
814
+ ,CABLESEGMENT
815
+ ,CONDUCTORSEGMENT
816
+ ,CONTACTWIRESEGMENT
817
+ ,CORESEGMENT
818
+ ,FIBERSEGMENT
819
+ ,FIBERTUBE
820
+ ,OPTICALCABLESEGMENT
821
+ ,STITCHWIRE
822
+ ,WIREPAIRSEGMENT
823
+ ,USERDEFINED
824
+ ,NOTDEFINED);
825
+
826
+ /** IfcCaissonFoundationTypeEnum */
827
+ export type IfcCaissonFoundationTypeEnum = ENUMERATION OF
828
+ (CAISSON
829
+ ,WELL
830
+ ,USERDEFINED
831
+ ,NOTDEFINED);
832
+
833
+ /** IfcChangeActionEnum */
834
+ export type IfcChangeActionEnum = ENUMERATION OF
835
+ (ADDED
836
+ ,DELETED
837
+ ,MODIFIED
838
+ ,NOCHANGE
839
+ ,NOTDEFINED);
840
+
841
+ /** IfcChillerTypeEnum */
842
+ export type IfcChillerTypeEnum = ENUMERATION OF
843
+ (AIRCOOLED
844
+ ,HEATRECOVERY
845
+ ,WATERCOOLED
846
+ ,USERDEFINED
847
+ ,NOTDEFINED);
848
+
849
+ /** IfcChimneyTypeEnum */
850
+ export type IfcChimneyTypeEnum = ENUMERATION OF
851
+ (USERDEFINED
852
+ ,NOTDEFINED);
853
+
854
+ /** IfcCoilTypeEnum */
855
+ export type IfcCoilTypeEnum = ENUMERATION OF
856
+ (DXCOOLINGCOIL
857
+ ,ELECTRICHEATINGCOIL
858
+ ,GASHEATINGCOIL
859
+ ,HYDRONICCOIL
860
+ ,STEAMHEATINGCOIL
861
+ ,WATERCOOLINGCOIL
862
+ ,WATERHEATINGCOIL
863
+ ,USERDEFINED
864
+ ,NOTDEFINED);
865
+
866
+ /** IfcColumnTypeEnum */
867
+ export type IfcColumnTypeEnum = ENUMERATION OF
868
+ (COLUMN
869
+ ,PIERSTEM
870
+ ,PIERSTEM_SEGMENT
871
+ ,PILASTER
872
+ ,STANDCOLUMN
873
+ ,USERDEFINED
874
+ ,NOTDEFINED);
875
+
876
+ /** IfcCommunicationsApplianceTypeEnum */
877
+ export type IfcCommunicationsApplianceTypeEnum = ENUMERATION OF
878
+ (ANTENNA
879
+ ,AUTOMATON
880
+ ,COMPUTER
881
+ ,FAX
882
+ ,GATEWAY
883
+ ,INTELLIGENTPERIPHERAL
884
+ ,IPNETWORKEQUIPMENT
885
+ ,LINESIDEELECTRONICUNIT
886
+ ,MODEM
887
+ ,NETWORKAPPLIANCE
888
+ ,NETWORKBRIDGE
889
+ ,NETWORKHUB
890
+ ,OPTICALLINETERMINAL
891
+ ,OPTICALNETWORKUNIT
892
+ ,PRINTER
893
+ ,RADIOBLOCKCENTER
894
+ ,REPEATER
895
+ ,ROUTER
896
+ ,SCANNER
897
+ ,TELECOMMAND
898
+ ,TELEPHONYEXCHANGE
899
+ ,TRANSITIONCOMPONENT
900
+ ,TRANSPONDER
901
+ ,TRANSPORTEQUIPMENT
902
+ ,USERDEFINED
903
+ ,NOTDEFINED);
904
+
905
+ /** IfcComplexPropertyTemplateTypeEnum */
906
+ export type IfcComplexPropertyTemplateTypeEnum = ENUMERATION OF
907
+ (P_COMPLEX
908
+ ,Q_COMPLEX);
909
+
910
+ /** IfcCompressorTypeEnum */
911
+ export type IfcCompressorTypeEnum = ENUMERATION OF
912
+ (BOOSTER
913
+ ,DYNAMIC
914
+ ,HERMETIC
915
+ ,OPENTYPE
916
+ ,RECIPROCATING
917
+ ,ROLLINGPISTON
918
+ ,ROTARY
919
+ ,ROTARYVANE
920
+ ,SCROLL
921
+ ,SEMIHERMETIC
922
+ ,SINGLESCREW
923
+ ,SINGLESTAGE
924
+ ,TROCHOIDAL
925
+ ,TWINSCREW
926
+ ,WELDEDSHELLHERMETIC
927
+ ,USERDEFINED
928
+ ,NOTDEFINED);
929
+
930
+ /** IfcCondenserTypeEnum */
931
+ export type IfcCondenserTypeEnum = ENUMERATION OF
932
+ (AIRCOOLED
933
+ ,EVAPORATIVECOOLED
934
+ ,WATERCOOLED
935
+ ,WATERCOOLEDBRAZEDPLATE
936
+ ,WATERCOOLEDSHELLCOIL
937
+ ,WATERCOOLEDSHELLTUBE
938
+ ,WATERCOOLEDTUBEINTUBE
939
+ ,USERDEFINED
940
+ ,NOTDEFINED);
941
+
942
+ /** IfcConnectionTypeEnum */
943
+ export type IfcConnectionTypeEnum = ENUMERATION OF
944
+ (ATEND
945
+ ,ATPATH
946
+ ,ATSTART
947
+ ,NOTDEFINED);
948
+
949
+ /** IfcConstraintEnum */
950
+ export type IfcConstraintEnum = ENUMERATION OF
951
+ (ADVISORY
952
+ ,HARD
953
+ ,SOFT
954
+ ,USERDEFINED
955
+ ,NOTDEFINED);
956
+
957
+ /** IfcConstructionEquipmentResourceTypeEnum */
958
+ export type IfcConstructionEquipmentResourceTypeEnum = ENUMERATION OF
959
+ (DEMOLISHING
960
+ ,EARTHMOVING
961
+ ,ERECTING
962
+ ,HEATING
963
+ ,LIGHTING
964
+ ,PAVING
965
+ ,PUMPING
966
+ ,TRANSPORTING
967
+ ,USERDEFINED
968
+ ,NOTDEFINED);
969
+
970
+ /** IfcConstructionMaterialResourceTypeEnum */
971
+ export type IfcConstructionMaterialResourceTypeEnum = ENUMERATION OF
972
+ (AGGREGATES
973
+ ,CONCRETE
974
+ ,DRYWALL
975
+ ,FUEL
976
+ ,GYPSUM
977
+ ,MASONRY
978
+ ,METAL
979
+ ,PLASTIC
980
+ ,WOOD
981
+ ,USERDEFINED
982
+ ,NOTDEFINED);
983
+
984
+ /** IfcConstructionProductResourceTypeEnum */
985
+ export type IfcConstructionProductResourceTypeEnum = ENUMERATION OF
986
+ (ASSEMBLY
987
+ ,FORMWORK
988
+ ,USERDEFINED
989
+ ,NOTDEFINED);
990
+
991
+ /** IfcControllerTypeEnum */
992
+ export type IfcControllerTypeEnum = ENUMERATION OF
993
+ (FLOATING
994
+ ,MULTIPOSITION
995
+ ,PROGRAMMABLE
996
+ ,PROPORTIONAL
997
+ ,TWOPOSITION
998
+ ,USERDEFINED
999
+ ,NOTDEFINED);
1000
+
1001
+ /** IfcConveyorSegmentTypeEnum */
1002
+ export type IfcConveyorSegmentTypeEnum = ENUMERATION OF
1003
+ (BELTCONVEYOR
1004
+ ,BUCKETCONVEYOR
1005
+ ,CHUTECONVEYOR
1006
+ ,SCREWCONVEYOR
1007
+ ,USERDEFINED
1008
+ ,NOTDEFINED);
1009
+
1010
+ /** IfcCooledBeamTypeEnum */
1011
+ export type IfcCooledBeamTypeEnum = ENUMERATION OF
1012
+ (ACTIVE
1013
+ ,PASSIVE
1014
+ ,USERDEFINED
1015
+ ,NOTDEFINED);
1016
+
1017
+ /** IfcCoolingTowerTypeEnum */
1018
+ export type IfcCoolingTowerTypeEnum = ENUMERATION OF
1019
+ (MECHANICALFORCEDDRAFT
1020
+ ,MECHANICALINDUCEDDRAFT
1021
+ ,NATURALDRAFT
1022
+ ,USERDEFINED
1023
+ ,NOTDEFINED);
1024
+
1025
+ /** IfcCostItemTypeEnum */
1026
+ export type IfcCostItemTypeEnum = ENUMERATION OF
1027
+ (USERDEFINED
1028
+ ,NOTDEFINED);
1029
+
1030
+ /** IfcCostScheduleTypeEnum */
1031
+ export type IfcCostScheduleTypeEnum = ENUMERATION OF
1032
+ (BUDGET
1033
+ ,COSTPLAN
1034
+ ,ESTIMATE
1035
+ ,PRICEDBILLOFQUANTITIES
1036
+ ,SCHEDULEOFRATES
1037
+ ,TENDER
1038
+ ,UNPRICEDBILLOFQUANTITIES
1039
+ ,USERDEFINED
1040
+ ,NOTDEFINED);
1041
+
1042
+ /** IfcCourseTypeEnum */
1043
+ export type IfcCourseTypeEnum = ENUMERATION OF
1044
+ (ARMOUR
1045
+ ,BALLASTBED
1046
+ ,CORE
1047
+ ,FILTER
1048
+ ,PAVEMENT
1049
+ ,PROTECTION
1050
+ ,USERDEFINED
1051
+ ,NOTDEFINED);
1052
+
1053
+ /** IfcCoveringTypeEnum */
1054
+ export type IfcCoveringTypeEnum = ENUMERATION OF
1055
+ (CEILING
1056
+ ,CLADDING
1057
+ ,COPING
1058
+ ,FLOORING
1059
+ ,INSULATION
1060
+ ,MEMBRANE
1061
+ ,MOLDING
1062
+ ,ROOFING
1063
+ ,SKIRTINGBOARD
1064
+ ,SLEEVING
1065
+ ,TOPPING
1066
+ ,WRAPPING
1067
+ ,USERDEFINED
1068
+ ,NOTDEFINED);
1069
+
1070
+ /** IfcCrewResourceTypeEnum */
1071
+ export type IfcCrewResourceTypeEnum = ENUMERATION OF
1072
+ (OFFICE
1073
+ ,SITE
1074
+ ,USERDEFINED
1075
+ ,NOTDEFINED);
1076
+
1077
+ /** IfcCurtainWallTypeEnum */
1078
+ export type IfcCurtainWallTypeEnum = ENUMERATION OF
1079
+ (USERDEFINED
1080
+ ,NOTDEFINED);
1081
+
1082
+ /** IfcCurveInterpolationEnum */
1083
+ export type IfcCurveInterpolationEnum = ENUMERATION OF
1084
+ (LINEAR
1085
+ ,LOG_LINEAR
1086
+ ,LOG_LOG
1087
+ ,NOTDEFINED);
1088
+
1089
+ /** IfcDamperTypeEnum */
1090
+ export type IfcDamperTypeEnum = ENUMERATION OF
1091
+ (BACKDRAFTDAMPER
1092
+ ,BALANCINGDAMPER
1093
+ ,BLASTDAMPER
1094
+ ,CONTROLDAMPER
1095
+ ,FIREDAMPER
1096
+ ,FIRESMOKEDAMPER
1097
+ ,FUMEHOODEXHAUST
1098
+ ,GRAVITYDAMPER
1099
+ ,GRAVITYRELIEFDAMPER
1100
+ ,RELIEFDAMPER
1101
+ ,SMOKEDAMPER
1102
+ ,USERDEFINED
1103
+ ,NOTDEFINED);
1104
+
1105
+ /** IfcDataOriginEnum */
1106
+ export type IfcDataOriginEnum = ENUMERATION OF
1107
+ (MEASURED
1108
+ ,PREDICTED
1109
+ ,SIMULATED
1110
+ ,USERDEFINED
1111
+ ,NOTDEFINED);
1112
+
1113
+ /** IfcDerivedUnitEnum */
1114
+ export type IfcDerivedUnitEnum = ENUMERATION OF
1115
+ (ACCELERATIONUNIT
1116
+ ,ANGULARVELOCITYUNIT
1117
+ ,AREADENSITYUNIT
1118
+ ,COMPOUNDPLANEANGLEUNIT
1119
+ ,CURVATUREUNIT
1120
+ ,DYNAMICVISCOSITYUNIT
1121
+ ,HEATFLUXDENSITYUNIT
1122
+ ,HEATINGVALUEUNIT
1123
+ ,INTEGERCOUNTRATEUNIT
1124
+ ,IONCONCENTRATIONUNIT
1125
+ ,ISOTHERMALMOISTURECAPACITYUNIT
1126
+ ,KINEMATICVISCOSITYUNIT
1127
+ ,LINEARFORCEUNIT
1128
+ ,LINEARMOMENTUNIT
1129
+ ,LINEARSTIFFNESSUNIT
1130
+ ,LINEARVELOCITYUNIT
1131
+ ,LUMINOUSINTENSITYDISTRIBUTIONUNIT
1132
+ ,MASSDENSITYUNIT
1133
+ ,MASSFLOWRATEUNIT
1134
+ ,MASSPERLENGTHUNIT
1135
+ ,MODULUSOFELASTICITYUNIT
1136
+ ,MODULUSOFLINEARSUBGRADEREACTIONUNIT
1137
+ ,MODULUSOFROTATIONALSUBGRADEREACTIONUNIT
1138
+ ,MODULUSOFSUBGRADEREACTIONUNIT
1139
+ ,MOISTUREDIFFUSIVITYUNIT
1140
+ ,MOLECULARWEIGHTUNIT
1141
+ ,MOMENTOFINERTIAUNIT
1142
+ ,PHUNIT
1143
+ ,PLANARFORCEUNIT
1144
+ ,ROTATIONALFREQUENCYUNIT
1145
+ ,ROTATIONALMASSUNIT
1146
+ ,ROTATIONALSTIFFNESSUNIT
1147
+ ,SECTIONAREAINTEGRALUNIT
1148
+ ,SECTIONMODULUSUNIT
1149
+ ,SHEARMODULUSUNIT
1150
+ ,SOUNDPOWERLEVELUNIT
1151
+ ,SOUNDPOWERUNIT
1152
+ ,SOUNDPRESSURELEVELUNIT
1153
+ ,SOUNDPRESSUREUNIT
1154
+ ,SPECIFICHEATCAPACITYUNIT
1155
+ ,TEMPERATUREGRADIENTUNIT
1156
+ ,TEMPERATURERATEOFCHANGEUNIT
1157
+ ,THERMALADMITTANCEUNIT
1158
+ ,THERMALCONDUCTANCEUNIT
1159
+ ,THERMALEXPANSIONCOEFFICIENTUNIT
1160
+ ,THERMALRESISTANCEUNIT
1161
+ ,THERMALTRANSMITTANCEUNIT
1162
+ ,TORQUEUNIT
1163
+ ,VAPORPERMEABILITYUNIT
1164
+ ,VOLUMETRICFLOWRATEUNIT
1165
+ ,WARPINGCONSTANTUNIT
1166
+ ,WARPINGMOMENTUNIT
1167
+ ,USERDEFINED);
1168
+
1169
+ /** IfcDirectionSenseEnum */
1170
+ export type IfcDirectionSenseEnum = ENUMERATION OF
1171
+ (NEGATIVE
1172
+ ,POSITIVE);
1173
+
1174
+ /** IfcDiscreteAccessoryTypeEnum */
1175
+ export type IfcDiscreteAccessoryTypeEnum = ENUMERATION OF
1176
+ (ANCHORPLATE
1177
+ ,BIRDPROTECTION
1178
+ ,BRACKET
1179
+ ,CABLEARRANGER
1180
+ ,ELASTIC_CUSHION
1181
+ ,EXPANSION_JOINT_DEVICE
1182
+ ,FILLER
1183
+ ,FLASHING
1184
+ ,INSULATOR
1185
+ ,LOCK
1186
+ ,PANEL_STRENGTHENING
1187
+ ,POINTMACHINEMOUNTINGDEVICE
1188
+ ,POINT_MACHINE_LOCKING_DEVICE
1189
+ ,RAILBRACE
1190
+ ,RAILPAD
1191
+ ,RAIL_LUBRICATION
1192
+ ,RAIL_MECHANICAL_EQUIPMENT
1193
+ ,SHOE
1194
+ ,SLIDINGCHAIR
1195
+ ,SOUNDABSORPTION
1196
+ ,TENSIONINGEQUIPMENT
1197
+ ,USERDEFINED
1198
+ ,NOTDEFINED);
1199
+
1200
+ /** IfcDistributionBoardTypeEnum */
1201
+ export type IfcDistributionBoardTypeEnum = ENUMERATION OF
1202
+ (CONSUMERUNIT
1203
+ ,DISPATCHINGBOARD
1204
+ ,DISTRIBUTIONBOARD
1205
+ ,DISTRIBUTIONFRAME
1206
+ ,MOTORCONTROLCENTRE
1207
+ ,SWITCHBOARD
1208
+ ,USERDEFINED
1209
+ ,NOTDEFINED);
1210
+
1211
+ /** IfcDistributionChamberElementTypeEnum */
1212
+ export type IfcDistributionChamberElementTypeEnum = ENUMERATION OF
1213
+ (FORMEDDUCT
1214
+ ,INSPECTIONCHAMBER
1215
+ ,INSPECTIONPIT
1216
+ ,MANHOLE
1217
+ ,METERCHAMBER
1218
+ ,SUMP
1219
+ ,TRENCH
1220
+ ,VALVECHAMBER
1221
+ ,USERDEFINED
1222
+ ,NOTDEFINED);
1223
+
1224
+ /** IfcDistributionPortTypeEnum */
1225
+ export type IfcDistributionPortTypeEnum = ENUMERATION OF
1226
+ (CABLE
1227
+ ,CABLECARRIER
1228
+ ,DUCT
1229
+ ,PIPE
1230
+ ,WIRELESS
1231
+ ,USERDEFINED
1232
+ ,NOTDEFINED);
1233
+
1234
+ /** IfcDistributionSystemEnum */
1235
+ export type IfcDistributionSystemEnum = ENUMERATION OF
1236
+ (AIRCONDITIONING
1237
+ ,AUDIOVISUAL
1238
+ ,CATENARY_SYSTEM
1239
+ ,CHEMICAL
1240
+ ,CHILLEDWATER
1241
+ ,COMMUNICATION
1242
+ ,COMPRESSEDAIR
1243
+ ,CONDENSERWATER
1244
+ ,CONTROL
1245
+ ,CONVEYING
1246
+ ,DATA
1247
+ ,DISPOSAL
1248
+ ,DOMESTICCOLDWATER
1249
+ ,DOMESTICHOTWATER
1250
+ ,DRAINAGE
1251
+ ,EARTHING
1252
+ ,ELECTRICAL
1253
+ ,ELECTROACOUSTIC
1254
+ ,EXHAUST
1255
+ ,FIREPROTECTION
1256
+ ,FIXEDTRANSMISSIONNETWORK
1257
+ ,FUEL
1258
+ ,GAS
1259
+ ,HAZARDOUS
1260
+ ,HEATING
1261
+ ,LIGHTING
1262
+ ,LIGHTNINGPROTECTION
1263
+ ,MOBILENETWORK
1264
+ ,MONITORINGSYSTEM
1265
+ ,MUNICIPALSOLIDWASTE
1266
+ ,OIL
1267
+ ,OPERATIONAL
1268
+ ,OPERATIONALTELEPHONYSYSTEM
1269
+ ,OVERHEAD_CONTACTLINE_SYSTEM
1270
+ ,POWERGENERATION
1271
+ ,RAINWATER
1272
+ ,REFRIGERATION
1273
+ ,RETURN_CIRCUIT
1274
+ ,SECURITY
1275
+ ,SEWAGE
1276
+ ,SIGNAL
1277
+ ,STORMWATER
1278
+ ,TELEPHONE
1279
+ ,TV
1280
+ ,VACUUM
1281
+ ,VENT
1282
+ ,VENTILATION
1283
+ ,WASTEWATER
1284
+ ,WATERSUPPLY
1285
+ ,USERDEFINED
1286
+ ,NOTDEFINED);
1287
+
1288
+ /** IfcDocumentConfidentialityEnum */
1289
+ export type IfcDocumentConfidentialityEnum = ENUMERATION OF
1290
+ (CONFIDENTIAL
1291
+ ,PERSONAL
1292
+ ,PUBLIC
1293
+ ,RESTRICTED
1294
+ ,USERDEFINED
1295
+ ,NOTDEFINED);
1296
+
1297
+ /** IfcDocumentStatusEnum */
1298
+ export type IfcDocumentStatusEnum = ENUMERATION OF
1299
+ (DRAFT
1300
+ ,FINAL
1301
+ ,FINALDRAFT
1302
+ ,REVISION
1303
+ ,NOTDEFINED);
1304
+
1305
+ /** IfcDoorPanelOperationEnum */
1306
+ export type IfcDoorPanelOperationEnum = ENUMERATION OF
1307
+ (DOUBLE_ACTING
1308
+ ,FIXEDPANEL
1309
+ ,FOLDING
1310
+ ,REVOLVING
1311
+ ,ROLLINGUP
1312
+ ,SLIDING
1313
+ ,SWINGING
1314
+ ,USERDEFINED
1315
+ ,NOTDEFINED);
1316
+
1317
+ /** IfcDoorPanelPositionEnum */
1318
+ export type IfcDoorPanelPositionEnum = ENUMERATION OF
1319
+ (LEFT
1320
+ ,MIDDLE
1321
+ ,RIGHT
1322
+ ,NOTDEFINED);
1323
+
1324
+ /** IfcDoorTypeEnum */
1325
+ export type IfcDoorTypeEnum = ENUMERATION OF
1326
+ (BOOM_BARRIER
1327
+ ,DOOR
1328
+ ,GATE
1329
+ ,TRAPDOOR
1330
+ ,TURNSTILE
1331
+ ,USERDEFINED
1332
+ ,NOTDEFINED);
1333
+
1334
+ /** IfcDoorTypeOperationEnum */
1335
+ export type IfcDoorTypeOperationEnum = ENUMERATION OF
1336
+ (DOUBLE_DOOR_DOUBLE_SWING
1337
+ ,DOUBLE_DOOR_FOLDING
1338
+ ,DOUBLE_DOOR_LIFTING_VERTICAL
1339
+ ,DOUBLE_DOOR_SINGLE_SWING
1340
+ ,DOUBLE_DOOR_SINGLE_SWING_OPPOSITE_LEFT
1341
+ ,DOUBLE_DOOR_SINGLE_SWING_OPPOSITE_RIGHT
1342
+ ,DOUBLE_DOOR_SLIDING
1343
+ ,DOUBLE_SWING_LEFT
1344
+ ,DOUBLE_SWING_RIGHT
1345
+ ,FOLDING_TO_LEFT
1346
+ ,FOLDING_TO_RIGHT
1347
+ ,LIFTING_HORIZONTAL
1348
+ ,LIFTING_VERTICAL_LEFT
1349
+ ,LIFTING_VERTICAL_RIGHT
1350
+ ,REVOLVING
1351
+ ,REVOLVING_VERTICAL
1352
+ ,ROLLINGUP
1353
+ ,SINGLE_SWING_LEFT
1354
+ ,SINGLE_SWING_RIGHT
1355
+ ,SLIDING_TO_LEFT
1356
+ ,SLIDING_TO_RIGHT
1357
+ ,SWING_FIXED_LEFT
1358
+ ,SWING_FIXED_RIGHT
1359
+ ,USERDEFINED
1360
+ ,NOTDEFINED);
1361
+
1362
+ /** IfcDuctFittingTypeEnum */
1363
+ export type IfcDuctFittingTypeEnum = ENUMERATION OF
1364
+ (BEND
1365
+ ,CONNECTOR
1366
+ ,ENTRY
1367
+ ,EXIT
1368
+ ,JUNCTION
1369
+ ,OBSTRUCTION
1370
+ ,TRANSITION
1371
+ ,USERDEFINED
1372
+ ,NOTDEFINED);
1373
+
1374
+ /** IfcDuctSegmentTypeEnum */
1375
+ export type IfcDuctSegmentTypeEnum = ENUMERATION OF
1376
+ (FLEXIBLESEGMENT
1377
+ ,RIGIDSEGMENT
1378
+ ,USERDEFINED
1379
+ ,NOTDEFINED);
1380
+
1381
+ /** IfcDuctSilencerTypeEnum */
1382
+ export type IfcDuctSilencerTypeEnum = ENUMERATION OF
1383
+ (FLATOVAL
1384
+ ,RECTANGULAR
1385
+ ,ROUND
1386
+ ,USERDEFINED
1387
+ ,NOTDEFINED);
1388
+
1389
+ /** IfcEarthworksCutTypeEnum */
1390
+ export type IfcEarthworksCutTypeEnum = ENUMERATION OF
1391
+ (BASE_EXCAVATION
1392
+ ,CUT
1393
+ ,DREDGING
1394
+ ,EXCAVATION
1395
+ ,OVEREXCAVATION
1396
+ ,PAVEMENTMILLING
1397
+ ,STEPEXCAVATION
1398
+ ,TOPSOILREMOVAL
1399
+ ,TRENCH
1400
+ ,USERDEFINED
1401
+ ,NOTDEFINED);
1402
+
1403
+ /** IfcEarthworksFillTypeEnum */
1404
+ export type IfcEarthworksFillTypeEnum = ENUMERATION OF
1405
+ (BACKFILL
1406
+ ,COUNTERWEIGHT
1407
+ ,EMBANKMENT
1408
+ ,SLOPEFILL
1409
+ ,SUBGRADE
1410
+ ,SUBGRADEBED
1411
+ ,TRANSITIONSECTION
1412
+ ,USERDEFINED
1413
+ ,NOTDEFINED);
1414
+
1415
+ /** IfcElectricApplianceTypeEnum */
1416
+ export type IfcElectricApplianceTypeEnum = ENUMERATION OF
1417
+ (DISHWASHER
1418
+ ,ELECTRICCOOKER
1419
+ ,FREESTANDINGELECTRICHEATER
1420
+ ,FREESTANDINGFAN
1421
+ ,FREESTANDINGWATERCOOLER
1422
+ ,FREESTANDINGWATERHEATER
1423
+ ,FREEZER
1424
+ ,FRIDGE_FREEZER
1425
+ ,HANDDRYER
1426
+ ,KITCHENMACHINE
1427
+ ,MICROWAVE
1428
+ ,PHOTOCOPIER
1429
+ ,REFRIGERATOR
1430
+ ,TUMBLEDRYER
1431
+ ,VENDINGMACHINE
1432
+ ,WASHINGMACHINE
1433
+ ,USERDEFINED
1434
+ ,NOTDEFINED);
1435
+
1436
+ /** IfcElectricDistributionBoardTypeEnum */
1437
+ export type IfcElectricDistributionBoardTypeEnum = ENUMERATION OF
1438
+ (CONSUMERUNIT
1439
+ ,DISTRIBUTIONBOARD
1440
+ ,MOTORCONTROLCENTRE
1441
+ ,SWITCHBOARD
1442
+ ,USERDEFINED
1443
+ ,NOTDEFINED);
1444
+
1445
+ /** IfcElectricFlowStorageDeviceTypeEnum */
1446
+ export type IfcElectricFlowStorageDeviceTypeEnum = ENUMERATION OF
1447
+ (BATTERY
1448
+ ,CAPACITOR
1449
+ ,CAPACITORBANK
1450
+ ,COMPENSATOR
1451
+ ,HARMONICFILTER
1452
+ ,INDUCTOR
1453
+ ,INDUCTORBANK
1454
+ ,RECHARGER
1455
+ ,UPS
1456
+ ,USERDEFINED
1457
+ ,NOTDEFINED);
1458
+
1459
+ /** IfcElectricFlowTreatmentDeviceTypeEnum */
1460
+ export type IfcElectricFlowTreatmentDeviceTypeEnum = ENUMERATION OF
1461
+ (ELECTRONICFILTER
1462
+ ,USERDEFINED
1463
+ ,NOTDEFINED);
1464
+
1465
+ /** IfcElectricGeneratorTypeEnum */
1466
+ export type IfcElectricGeneratorTypeEnum = ENUMERATION OF
1467
+ (CHP
1468
+ ,ENGINEGENERATOR
1469
+ ,STANDALONE
1470
+ ,USERDEFINED
1471
+ ,NOTDEFINED);
1472
+
1473
+ /** IfcElectricMotorTypeEnum */
1474
+ export type IfcElectricMotorTypeEnum = ENUMERATION OF
1475
+ (DC
1476
+ ,INDUCTION
1477
+ ,POLYPHASE
1478
+ ,RELUCTANCESYNCHRONOUS
1479
+ ,SYNCHRONOUS
1480
+ ,USERDEFINED
1481
+ ,NOTDEFINED);
1482
+
1483
+ /** IfcElectricTimeControlTypeEnum */
1484
+ export type IfcElectricTimeControlTypeEnum = ENUMERATION OF
1485
+ (RELAY
1486
+ ,TIMECLOCK
1487
+ ,TIMEDELAY
1488
+ ,USERDEFINED
1489
+ ,NOTDEFINED);
1490
+
1491
+ /** IfcElementAssemblyTypeEnum */
1492
+ export type IfcElementAssemblyTypeEnum = ENUMERATION OF
1493
+ (ABUTMENT
1494
+ ,ACCESSORY_ASSEMBLY
1495
+ ,ARCH
1496
+ ,BEAM_GRID
1497
+ ,BRACED_FRAME
1498
+ ,CROSS_BRACING
1499
+ ,DECK
1500
+ ,DILATATIONPANEL
1501
+ ,ENTRANCEWORKS
1502
+ ,GIRDER
1503
+ ,GRID
1504
+ ,MAST
1505
+ ,PIER
1506
+ ,PYLON
1507
+ ,RAIL_MECHANICAL_EQUIPMENT_ASSEMBLY
1508
+ ,REINFORCEMENT_UNIT
1509
+ ,RIGID_FRAME
1510
+ ,SHELTER
1511
+ ,SIGNALASSEMBLY
1512
+ ,SLAB_FIELD
1513
+ ,SUMPBUSTER
1514
+ ,SUPPORTINGASSEMBLY
1515
+ ,SUSPENSIONASSEMBLY
1516
+ ,TRACKPANEL
1517
+ ,TRACTION_SWITCHING_ASSEMBLY
1518
+ ,TRAFFIC_CALMING_DEVICE
1519
+ ,TRUSS
1520
+ ,TURNOUTPANEL
1521
+ ,USERDEFINED
1522
+ ,NOTDEFINED);
1523
+
1524
+ /** IfcElementCompositionEnum */
1525
+ export type IfcElementCompositionEnum = ENUMERATION OF
1526
+ (COMPLEX
1527
+ ,ELEMENT
1528
+ ,PARTIAL);
1529
+
1530
+ /** IfcEngineTypeEnum */
1531
+ export type IfcEngineTypeEnum = ENUMERATION OF
1532
+ (EXTERNALCOMBUSTION
1533
+ ,INTERNALCOMBUSTION
1534
+ ,USERDEFINED
1535
+ ,NOTDEFINED);
1536
+
1537
+ /** IfcEvaporativeCoolerTypeEnum */
1538
+ export type IfcEvaporativeCoolerTypeEnum = ENUMERATION OF
1539
+ (DIRECTEVAPORATIVEAIRWASHER
1540
+ ,DIRECTEVAPORATIVEPACKAGEDROTARYAIRCOOLER
1541
+ ,DIRECTEVAPORATIVERANDOMMEDIAAIRCOOLER
1542
+ ,DIRECTEVAPORATIVERIGIDMEDIAAIRCOOLER
1543
+ ,DIRECTEVAPORATIVESLINGERSPACKAGEDAIRCOOLER
1544
+ ,INDIRECTDIRECTCOMBINATION
1545
+ ,INDIRECTEVAPORATIVECOOLINGTOWERORCOILCOOLER
1546
+ ,INDIRECTEVAPORATIVEPACKAGEAIRCOOLER
1547
+ ,INDIRECTEVAPORATIVEWETCOIL
1548
+ ,USERDEFINED
1549
+ ,NOTDEFINED);
1550
+
1551
+ /** IfcEvaporatorTypeEnum */
1552
+ export type IfcEvaporatorTypeEnum = ENUMERATION OF
1553
+ (DIRECTEXPANSION
1554
+ ,DIRECTEXPANSIONBRAZEDPLATE
1555
+ ,DIRECTEXPANSIONSHELLANDTUBE
1556
+ ,DIRECTEXPANSIONTUBEINTUBE
1557
+ ,FLOODEDSHELLANDTUBE
1558
+ ,SHELLANDCOIL
1559
+ ,USERDEFINED
1560
+ ,NOTDEFINED);
1561
+
1562
+ /** IfcEventTriggerTypeEnum */
1563
+ export type IfcEventTriggerTypeEnum = ENUMERATION OF
1564
+ (EVENTCOMPLEX
1565
+ ,EVENTMESSAGE
1566
+ ,EVENTRULE
1567
+ ,EVENTTIME
1568
+ ,USERDEFINED
1569
+ ,NOTDEFINED);
1570
+
1571
+ /** IfcEventTypeEnum */
1572
+ export type IfcEventTypeEnum = ENUMERATION OF
1573
+ (ENDEVENT
1574
+ ,INTERMEDIATEEVENT
1575
+ ,STARTEVENT
1576
+ ,USERDEFINED
1577
+ ,NOTDEFINED);
1578
+
1579
+ /** IfcExternalSpatialElementTypeEnum */
1580
+ export type IfcExternalSpatialElementTypeEnum = ENUMERATION OF
1581
+ (EXTERNAL
1582
+ ,EXTERNAL_EARTH
1583
+ ,EXTERNAL_FIRE
1584
+ ,EXTERNAL_WATER
1585
+ ,USERDEFINED
1586
+ ,NOTDEFINED);
1587
+
1588
+ /** IfcFacilityPartCommonTypeEnum */
1589
+ export type IfcFacilityPartCommonTypeEnum = ENUMERATION OF
1590
+ (ABOVEGROUND
1591
+ ,BELOWGROUND
1592
+ ,JUNCTION
1593
+ ,LEVELCROSSING
1594
+ ,SEGMENT
1595
+ ,SUBSTRUCTURE
1596
+ ,SUPERSTRUCTURE
1597
+ ,TERMINAL
1598
+ ,USERDEFINED
1599
+ ,NOTDEFINED);
1600
+
1601
+ /** IfcFacilityUsageEnum */
1602
+ export type IfcFacilityUsageEnum = ENUMERATION OF
1603
+ (LATERAL
1604
+ ,LONGITUDINAL
1605
+ ,REGION
1606
+ ,VERTICAL
1607
+ ,USERDEFINED
1608
+ ,NOTDEFINED);
1609
+
1610
+ /** IfcFanTypeEnum */
1611
+ export type IfcFanTypeEnum = ENUMERATION OF
1612
+ (CENTRIFUGALAIRFOIL
1613
+ ,CENTRIFUGALBACKWARDINCLINEDCURVED
1614
+ ,CENTRIFUGALFORWARDCURVED
1615
+ ,CENTRIFUGALRADIAL
1616
+ ,PROPELLORAXIAL
1617
+ ,TUBEAXIAL
1618
+ ,VANEAXIAL
1619
+ ,USERDEFINED
1620
+ ,NOTDEFINED);
1621
+
1622
+ /** IfcFastenerTypeEnum */
1623
+ export type IfcFastenerTypeEnum = ENUMERATION OF
1624
+ (GLUE
1625
+ ,MORTAR
1626
+ ,WELD
1627
+ ,USERDEFINED
1628
+ ,NOTDEFINED);
1629
+
1630
+ /** IfcFilterTypeEnum */
1631
+ export type IfcFilterTypeEnum = ENUMERATION OF
1632
+ (AIRPARTICLEFILTER
1633
+ ,COMPRESSEDAIRFILTER
1634
+ ,ODORFILTER
1635
+ ,OILFILTER
1636
+ ,STRAINER
1637
+ ,WATERFILTER
1638
+ ,USERDEFINED
1639
+ ,NOTDEFINED);
1640
+
1641
+ /** IfcFireSuppressionTerminalTypeEnum */
1642
+ export type IfcFireSuppressionTerminalTypeEnum = ENUMERATION OF
1643
+ (BREECHINGINLET
1644
+ ,FIREHYDRANT
1645
+ ,FIREMONITOR
1646
+ ,HOSEREEL
1647
+ ,SPRINKLER
1648
+ ,SPRINKLERDEFLECTOR
1649
+ ,USERDEFINED
1650
+ ,NOTDEFINED);
1651
+
1652
+ /** IfcFlowDirectionEnum */
1653
+ export type IfcFlowDirectionEnum = ENUMERATION OF
1654
+ (SINK
1655
+ ,SOURCE
1656
+ ,SOURCEANDSINK
1657
+ ,NOTDEFINED);
1658
+
1659
+ /** IfcFlowInstrumentTypeEnum */
1660
+ export type IfcFlowInstrumentTypeEnum = ENUMERATION OF
1661
+ (AMMETER
1662
+ ,COMBINED
1663
+ ,FREQUENCYMETER
1664
+ ,PHASEANGLEMETER
1665
+ ,POWERFACTORMETER
1666
+ ,PRESSUREGAUGE
1667
+ ,THERMOMETER
1668
+ ,VOLTMETER
1669
+ ,VOLTMETER_PEAK
1670
+ ,VOLTMETER_RMS
1671
+ ,USERDEFINED
1672
+ ,NOTDEFINED);
1673
+
1674
+ /** IfcFlowMeterTypeEnum */
1675
+ export type IfcFlowMeterTypeEnum = ENUMERATION OF
1676
+ (ENERGYMETER
1677
+ ,GASMETER
1678
+ ,OILMETER
1679
+ ,WATERMETER
1680
+ ,USERDEFINED
1681
+ ,NOTDEFINED);
1682
+
1683
+ /** IfcFootingTypeEnum */
1684
+ export type IfcFootingTypeEnum = ENUMERATION OF
1685
+ (CAISSON_FOUNDATION
1686
+ ,FOOTING_BEAM
1687
+ ,PAD_FOOTING
1688
+ ,PILE_CAP
1689
+ ,STRIP_FOOTING
1690
+ ,USERDEFINED
1691
+ ,NOTDEFINED);
1692
+
1693
+ /** IfcFurnitureTypeEnum */
1694
+ export type IfcFurnitureTypeEnum = ENUMERATION OF
1695
+ (BED
1696
+ ,CHAIR
1697
+ ,DESK
1698
+ ,FILECABINET
1699
+ ,SHELF
1700
+ ,SOFA
1701
+ ,TABLE
1702
+ ,TECHNICALCABINET
1703
+ ,USERDEFINED
1704
+ ,NOTDEFINED);
1705
+
1706
+ /** IfcGeographicElementTypeEnum */
1707
+ export type IfcGeographicElementTypeEnum = ENUMERATION OF
1708
+ (SOIL_BORING_POINT
1709
+ ,TERRAIN
1710
+ ,VEGETATION
1711
+ ,USERDEFINED
1712
+ ,NOTDEFINED);
1713
+
1714
+ /** IfcGeometricProjectionEnum */
1715
+ export type IfcGeometricProjectionEnum = ENUMERATION OF
1716
+ (ELEVATION_VIEW
1717
+ ,GRAPH_VIEW
1718
+ ,MODEL_VIEW
1719
+ ,PLAN_VIEW
1720
+ ,REFLECTED_PLAN_VIEW
1721
+ ,SECTION_VIEW
1722
+ ,SKETCH_VIEW
1723
+ ,USERDEFINED
1724
+ ,NOTDEFINED);
1725
+
1726
+ /** IfcGeotechnicalStratumTypeEnum */
1727
+ export type IfcGeotechnicalStratumTypeEnum = ENUMERATION OF
1728
+ (SOLID
1729
+ ,VOID
1730
+ ,WATER
1731
+ ,USERDEFINED
1732
+ ,NOTDEFINED);
1733
+
1734
+ /** IfcGlobalOrLocalEnum */
1735
+ export type IfcGlobalOrLocalEnum = ENUMERATION OF
1736
+ (GLOBAL_COORDS
1737
+ ,LOCAL_COORDS);
1738
+
1739
+ /** IfcGridTypeEnum */
1740
+ export type IfcGridTypeEnum = ENUMERATION OF
1741
+ (IRREGULAR
1742
+ ,RADIAL
1743
+ ,RECTANGULAR
1744
+ ,TRIANGULAR
1745
+ ,USERDEFINED
1746
+ ,NOTDEFINED);
1747
+
1748
+ /** IfcHeatExchangerTypeEnum */
1749
+ export type IfcHeatExchangerTypeEnum = ENUMERATION OF
1750
+ (PLATE
1751
+ ,SHELLANDTUBE
1752
+ ,TURNOUTHEATING
1753
+ ,USERDEFINED
1754
+ ,NOTDEFINED);
1755
+
1756
+ /** IfcHumidifierTypeEnum */
1757
+ export type IfcHumidifierTypeEnum = ENUMERATION OF
1758
+ (ADIABATICAIRWASHER
1759
+ ,ADIABATICATOMIZING
1760
+ ,ADIABATICCOMPRESSEDAIRNOZZLE
1761
+ ,ADIABATICPAN
1762
+ ,ADIABATICRIGIDMEDIA
1763
+ ,ADIABATICULTRASONIC
1764
+ ,ADIABATICWETTEDELEMENT
1765
+ ,ASSISTEDBUTANE
1766
+ ,ASSISTEDELECTRIC
1767
+ ,ASSISTEDNATURALGAS
1768
+ ,ASSISTEDPROPANE
1769
+ ,ASSISTEDSTEAM
1770
+ ,STEAMINJECTION
1771
+ ,USERDEFINED
1772
+ ,NOTDEFINED);
1773
+
1774
+ /** IfcImpactProtectionDeviceTypeEnum */
1775
+ export type IfcImpactProtectionDeviceTypeEnum = ENUMERATION OF
1776
+ (BUMPER
1777
+ ,CRASHCUSHION
1778
+ ,DAMPINGSYSTEM
1779
+ ,FENDER
1780
+ ,USERDEFINED
1781
+ ,NOTDEFINED);
1782
+
1783
+ /** IfcInterceptorTypeEnum */
1784
+ export type IfcInterceptorTypeEnum = ENUMERATION OF
1785
+ (CYCLONIC
1786
+ ,GREASE
1787
+ ,OIL
1788
+ ,PETROL
1789
+ ,USERDEFINED
1790
+ ,NOTDEFINED);
1791
+
1792
+ /** IfcInternalOrExternalEnum */
1793
+ export type IfcInternalOrExternalEnum = ENUMERATION OF
1794
+ (EXTERNAL
1795
+ ,EXTERNAL_EARTH
1796
+ ,EXTERNAL_FIRE
1797
+ ,EXTERNAL_WATER
1798
+ ,INTERNAL
1799
+ ,NOTDEFINED);
1800
+
1801
+ /** IfcInventoryTypeEnum */
1802
+ export type IfcInventoryTypeEnum = ENUMERATION OF
1803
+ (ASSETINVENTORY
1804
+ ,FURNITUREINVENTORY
1805
+ ,SPACEINVENTORY
1806
+ ,USERDEFINED
1807
+ ,NOTDEFINED);
1808
+
1809
+ /** IfcJunctionBoxTypeEnum */
1810
+ export type IfcJunctionBoxTypeEnum = ENUMERATION OF
1811
+ (DATA
1812
+ ,POWER
1813
+ ,USERDEFINED
1814
+ ,NOTDEFINED);
1815
+
1816
+ /** IfcKerbTypeEnum */
1817
+ export type IfcKerbTypeEnum = ENUMERATION OF
1818
+ (USERDEFINED
1819
+ ,NOTDEFINED);
1820
+
1821
+ /** IfcKnotType */
1822
+ export type IfcKnotType = ENUMERATION OF
1823
+ (PIECEWISE_BEZIER_KNOTS
1824
+ ,QUASI_UNIFORM_KNOTS
1825
+ ,UNIFORM_KNOTS
1826
+ ,UNSPECIFIED);
1827
+
1828
+ /** IfcLaborResourceTypeEnum */
1829
+ export type IfcLaborResourceTypeEnum = ENUMERATION OF
1830
+ (ADMINISTRATION
1831
+ ,CARPENTRY
1832
+ ,CLEANING
1833
+ ,CONCRETE
1834
+ ,DRYWALL
1835
+ ,ELECTRIC
1836
+ ,FINISHING
1837
+ ,FLOORING
1838
+ ,GENERAL
1839
+ ,HVAC
1840
+ ,LANDSCAPING
1841
+ ,MASONRY
1842
+ ,PAINTING
1843
+ ,PAVING
1844
+ ,PLUMBING
1845
+ ,ROOFING
1846
+ ,SITEGRADING
1847
+ ,STEELWORK
1848
+ ,SURVEYING
1849
+ ,USERDEFINED
1850
+ ,NOTDEFINED);
1851
+
1852
+ /** IfcLampTypeEnum */
1853
+ export type IfcLampTypeEnum = ENUMERATION OF
1854
+ (COMPACTFLUORESCENT
1855
+ ,FLUORESCENT
1856
+ ,HALOGEN
1857
+ ,HIGHPRESSUREMERCURY
1858
+ ,HIGHPRESSURESODIUM
1859
+ ,LED
1860
+ ,METALHALIDE
1861
+ ,OLED
1862
+ ,TUNGSTENFILAMENT
1863
+ ,USERDEFINED
1864
+ ,NOTDEFINED);
1865
+
1866
+ /** IfcLayerSetDirectionEnum */
1867
+ export type IfcLayerSetDirectionEnum = ENUMERATION OF
1868
+ (AXIS1
1869
+ ,AXIS2
1870
+ ,AXIS3);
1871
+
1872
+ /** IfcLightDistributionCurveEnum */
1873
+ export type IfcLightDistributionCurveEnum = ENUMERATION OF
1874
+ (TYPE_A
1875
+ ,TYPE_B
1876
+ ,TYPE_C
1877
+ ,NOTDEFINED);
1878
+
1879
+ /** IfcLightEmissionSourceEnum */
1880
+ export type IfcLightEmissionSourceEnum = ENUMERATION OF
1881
+ (COMPACTFLUORESCENT
1882
+ ,FLUORESCENT
1883
+ ,HIGHPRESSUREMERCURY
1884
+ ,HIGHPRESSURESODIUM
1885
+ ,LIGHTEMITTINGDIODE
1886
+ ,LOWPRESSURESODIUM
1887
+ ,LOWVOLTAGEHALOGEN
1888
+ ,MAINVOLTAGEHALOGEN
1889
+ ,METALHALIDE
1890
+ ,TUNGSTENFILAMENT
1891
+ ,NOTDEFINED);
1892
+
1893
+ /** IfcLightFixtureTypeEnum */
1894
+ export type IfcLightFixtureTypeEnum = ENUMERATION OF
1895
+ (DIRECTIONSOURCE
1896
+ ,POINTSOURCE
1897
+ ,SECURITYLIGHTING
1898
+ ,USERDEFINED
1899
+ ,NOTDEFINED);
1900
+
1901
+ /** IfcLiquidTerminalTypeEnum */
1902
+ export type IfcLiquidTerminalTypeEnum = ENUMERATION OF
1903
+ (HOSEREEL
1904
+ ,LOADINGARM
1905
+ ,USERDEFINED
1906
+ ,NOTDEFINED);
1907
+
1908
+ /** IfcLoadGroupTypeEnum */
1909
+ export type IfcLoadGroupTypeEnum = ENUMERATION OF
1910
+ (LOAD_CASE
1911
+ ,LOAD_COMBINATION
1912
+ ,LOAD_GROUP
1913
+ ,USERDEFINED
1914
+ ,NOTDEFINED);
1915
+
1916
+ /** IfcLogicalOperatorEnum */
1917
+ export type IfcLogicalOperatorEnum = ENUMERATION OF
1918
+ (LOGICALAND
1919
+ ,LOGICALNOTAND
1920
+ ,LOGICALNOTOR
1921
+ ,LOGICALOR
1922
+ ,LOGICALXOR);
1923
+
1924
+ /** IfcMarineFacilityTypeEnum */
1925
+ export type IfcMarineFacilityTypeEnum = ENUMERATION OF
1926
+ (BARRIERBEACH
1927
+ ,BREAKWATER
1928
+ ,CANAL
1929
+ ,DRYDOCK
1930
+ ,FLOATINGDOCK
1931
+ ,HYDROLIFT
1932
+ ,JETTY
1933
+ ,LAUNCHRECOVERY
1934
+ ,MARINEDEFENCE
1935
+ ,NAVIGATIONALCHANNEL
1936
+ ,PORT
1937
+ ,QUAY
1938
+ ,REVETMENT
1939
+ ,SHIPLIFT
1940
+ ,SHIPLOCK
1941
+ ,SHIPYARD
1942
+ ,SLIPWAY
1943
+ ,WATERWAY
1944
+ ,WATERWAYSHIPLIFT
1945
+ ,USERDEFINED
1946
+ ,NOTDEFINED);
1947
+
1948
+ /** IfcMarinePartTypeEnum */
1949
+ export type IfcMarinePartTypeEnum = ENUMERATION OF
1950
+ (ABOVEWATERLINE
1951
+ ,ANCHORAGE
1952
+ ,APPROACHCHANNEL
1953
+ ,BELOWWATERLINE
1954
+ ,BERTHINGSTRUCTURE
1955
+ ,CHAMBER
1956
+ ,CILL_LEVEL
1957
+ ,COPELEVEL
1958
+ ,CORE
1959
+ ,CREST
1960
+ ,GATEHEAD
1961
+ ,GUDINGSTRUCTURE
1962
+ ,HIGHWATERLINE
1963
+ ,LANDFIELD
1964
+ ,LEEWARDSIDE
1965
+ ,LOWWATERLINE
1966
+ ,MANUFACTURING
1967
+ ,NAVIGATIONALAREA
1968
+ ,PROTECTION
1969
+ ,SHIPTRANSFER
1970
+ ,STORAGEAREA
1971
+ ,VEHICLESERVICING
1972
+ ,WATERFIELD
1973
+ ,WEATHERSIDE
1974
+ ,USERDEFINED
1975
+ ,NOTDEFINED);
1976
+
1977
+ /** IfcMechanicalFastenerTypeEnum */
1978
+ export type IfcMechanicalFastenerTypeEnum = ENUMERATION OF
1979
+ (ANCHORBOLT
1980
+ ,BOLT
1981
+ ,CHAIN
1982
+ ,COUPLER
1983
+ ,DOWEL
1984
+ ,NAIL
1985
+ ,NAILPLATE
1986
+ ,RAILFASTENING
1987
+ ,RAILJOINT
1988
+ ,RIVET
1989
+ ,ROPE
1990
+ ,SCREW
1991
+ ,SHEARCONNECTOR
1992
+ ,STAPLE
1993
+ ,STUDSHEARCONNECTOR
1994
+ ,USERDEFINED
1995
+ ,NOTDEFINED);
1996
+
1997
+ /** IfcMedicalDeviceTypeEnum */
1998
+ export type IfcMedicalDeviceTypeEnum = ENUMERATION OF
1999
+ (AIRSTATION
2000
+ ,FEEDAIRUNIT
2001
+ ,OXYGENGENERATOR
2002
+ ,OXYGENPLANT
2003
+ ,VACUUMSTATION
2004
+ ,USERDEFINED
2005
+ ,NOTDEFINED);
2006
+
2007
+ /** IfcMemberTypeEnum */
2008
+ export type IfcMemberTypeEnum = ENUMERATION OF
2009
+ (ARCH_SEGMENT
2010
+ ,BRACE
2011
+ ,CHORD
2012
+ ,COLLAR
2013
+ ,MEMBER
2014
+ ,MULLION
2015
+ ,PLATE
2016
+ ,POST
2017
+ ,PURLIN
2018
+ ,RAFTER
2019
+ ,STAY_CABLE
2020
+ ,STIFFENING_RIB
2021
+ ,STRINGER
2022
+ ,STRUCTURALCABLE
2023
+ ,STRUT
2024
+ ,STUD
2025
+ ,SUSPENDER
2026
+ ,SUSPENSION_CABLE
2027
+ ,TIEBAR
2028
+ ,USERDEFINED
2029
+ ,NOTDEFINED);
2030
+
2031
+ /** IfcMobileTelecommunicationsApplianceTypeEnum */
2032
+ export type IfcMobileTelecommunicationsApplianceTypeEnum = ENUMERATION OF
2033
+ (ACCESSPOINT
2034
+ ,BASEBANDUNIT
2035
+ ,BASETRANSCEIVERSTATION
2036
+ ,E_UTRAN_NODE_B
2037
+ ,GATEWAY_GPRS_SUPPORT_NODE
2038
+ ,MASTERUNIT
2039
+ ,MOBILESWITCHINGCENTER
2040
+ ,MSCSERVER
2041
+ ,PACKETCONTROLUNIT
2042
+ ,REMOTERADIOUNIT
2043
+ ,REMOTEUNIT
2044
+ ,SERVICE_GPRS_SUPPORT_NODE
2045
+ ,SUBSCRIBERSERVER
2046
+ ,USERDEFINED
2047
+ ,NOTDEFINED);
2048
+
2049
+ /** IfcMooringDeviceTypeEnum */
2050
+ export type IfcMooringDeviceTypeEnum = ENUMERATION OF
2051
+ (BOLLARD
2052
+ ,LINETENSIONER
2053
+ ,MAGNETICDEVICE
2054
+ ,MOORINGHOOKS
2055
+ ,VACUUMDEVICE
2056
+ ,USERDEFINED
2057
+ ,NOTDEFINED);
2058
+
2059
+ /** IfcMotorConnectionTypeEnum */
2060
+ export type IfcMotorConnectionTypeEnum = ENUMERATION OF
2061
+ (BELTDRIVE
2062
+ ,COUPLING
2063
+ ,DIRECTDRIVE
2064
+ ,USERDEFINED
2065
+ ,NOTDEFINED);
2066
+
2067
+ /** IfcNavigationElementTypeEnum */
2068
+ export type IfcNavigationElementTypeEnum = ENUMERATION OF
2069
+ (BEACON
2070
+ ,BUOY
2071
+ ,USERDEFINED
2072
+ ,NOTDEFINED);
2073
+
2074
+ /** IfcObjectiveEnum */
2075
+ export type IfcObjectiveEnum = ENUMERATION OF
2076
+ (CODECOMPLIANCE
2077
+ ,CODEWAIVER
2078
+ ,DESIGNINTENT
2079
+ ,EXTERNAL
2080
+ ,HEALTHANDSAFETY
2081
+ ,MERGECONFLICT
2082
+ ,MODELVIEW
2083
+ ,PARAMETER
2084
+ ,REQUIREMENT
2085
+ ,SPECIFICATION
2086
+ ,TRIGGERCONDITION
2087
+ ,USERDEFINED
2088
+ ,NOTDEFINED);
2089
+
2090
+ /** IfcOccupantTypeEnum */
2091
+ export type IfcOccupantTypeEnum = ENUMERATION OF
2092
+ (ASSIGNEE
2093
+ ,ASSIGNOR
2094
+ ,LESSEE
2095
+ ,LESSOR
2096
+ ,LETTINGAGENT
2097
+ ,OWNER
2098
+ ,TENANT
2099
+ ,USERDEFINED
2100
+ ,NOTDEFINED);
2101
+
2102
+ /** IfcOpeningElementTypeEnum */
2103
+ export type IfcOpeningElementTypeEnum = ENUMERATION OF
2104
+ (OPENING
2105
+ ,RECESS
2106
+ ,USERDEFINED
2107
+ ,NOTDEFINED);
2108
+
2109
+ /** IfcOutletTypeEnum */
2110
+ export type IfcOutletTypeEnum = ENUMERATION OF
2111
+ (AUDIOVISUALOUTLET
2112
+ ,COMMUNICATIONSOUTLET
2113
+ ,DATAOUTLET
2114
+ ,POWEROUTLET
2115
+ ,TELEPHONEOUTLET
2116
+ ,USERDEFINED
2117
+ ,NOTDEFINED);
2118
+
2119
+ /** IfcPavementTypeEnum */
2120
+ export type IfcPavementTypeEnum = ENUMERATION OF
2121
+ (FLEXIBLE
2122
+ ,RIGID
2123
+ ,USERDEFINED
2124
+ ,NOTDEFINED);
2125
+
2126
+ /** IfcPerformanceHistoryTypeEnum */
2127
+ export type IfcPerformanceHistoryTypeEnum = ENUMERATION OF
2128
+ (USERDEFINED
2129
+ ,NOTDEFINED);
2130
+
2131
+ /** IfcPermeableCoveringOperationEnum */
2132
+ export type IfcPermeableCoveringOperationEnum = ENUMERATION OF
2133
+ (GRILL
2134
+ ,LOUVER
2135
+ ,SCREEN
2136
+ ,USERDEFINED
2137
+ ,NOTDEFINED);
2138
+
2139
+ /** IfcPermitTypeEnum */
2140
+ export type IfcPermitTypeEnum = ENUMERATION OF
2141
+ (ACCESS
2142
+ ,BUILDING
2143
+ ,WORK
2144
+ ,USERDEFINED
2145
+ ,NOTDEFINED);
2146
+
2147
+ /** IfcPhysicalOrVirtualEnum */
2148
+ export type IfcPhysicalOrVirtualEnum = ENUMERATION OF
2149
+ (PHYSICAL
2150
+ ,VIRTUAL
2151
+ ,NOTDEFINED);
2152
+
2153
+ /** IfcPileConstructionEnum */
2154
+ export type IfcPileConstructionEnum = ENUMERATION OF
2155
+ (CAST_IN_PLACE
2156
+ ,COMPOSITE
2157
+ ,PRECAST_CONCRETE
2158
+ ,PREFAB_STEEL
2159
+ ,USERDEFINED
2160
+ ,NOTDEFINED);
2161
+
2162
+ /** IfcPileTypeEnum */
2163
+ export type IfcPileTypeEnum = ENUMERATION OF
2164
+ (BORED
2165
+ ,COHESION
2166
+ ,DRIVEN
2167
+ ,FRICTION
2168
+ ,JETGROUTING
2169
+ ,SUPPORT
2170
+ ,USERDEFINED
2171
+ ,NOTDEFINED);
2172
+
2173
+ /** IfcPipeFittingTypeEnum */
2174
+ export type IfcPipeFittingTypeEnum = ENUMERATION OF
2175
+ (BEND
2176
+ ,CONNECTOR
2177
+ ,ENTRY
2178
+ ,EXIT
2179
+ ,JUNCTION
2180
+ ,OBSTRUCTION
2181
+ ,TRANSITION
2182
+ ,USERDEFINED
2183
+ ,NOTDEFINED);
2184
+
2185
+ /** IfcPipeSegmentTypeEnum */
2186
+ export type IfcPipeSegmentTypeEnum = ENUMERATION OF
2187
+ (CULVERT
2188
+ ,FLEXIBLESEGMENT
2189
+ ,GUTTER
2190
+ ,RIGIDSEGMENT
2191
+ ,SPOOL
2192
+ ,USERDEFINED
2193
+ ,NOTDEFINED);
2194
+
2195
+ /** IfcPlateTypeEnum */
2196
+ export type IfcPlateTypeEnum = ENUMERATION OF
2197
+ (BASE_PLATE
2198
+ ,COVER_PLATE
2199
+ ,CURTAIN_PANEL
2200
+ ,FLANGE_PLATE
2201
+ ,GUSSET_PLATE
2202
+ ,SHEET
2203
+ ,SPLICE_PLATE
2204
+ ,STIFFENER_PLATE
2205
+ ,WEB_PLATE
2206
+ ,USERDEFINED
2207
+ ,NOTDEFINED);
2208
+
2209
+ /** IfcPreferredSurfaceCurveRepresentation */
2210
+ export type IfcPreferredSurfaceCurveRepresentation = ENUMERATION OF
2211
+ (CURVE3D
2212
+ ,PCURVE_S1
2213
+ ,PCURVE_S2);
2214
+
2215
+ /** IfcProcedureTypeEnum */
2216
+ export type IfcProcedureTypeEnum = ENUMERATION OF
2217
+ (ADVICE_CAUTION
2218
+ ,ADVICE_NOTE
2219
+ ,ADVICE_WARNING
2220
+ ,CALIBRATION
2221
+ ,DIAGNOSTIC
2222
+ ,SHUTDOWN
2223
+ ,STARTUP
2224
+ ,USERDEFINED
2225
+ ,NOTDEFINED);
2226
+
2227
+ /** IfcProfileTypeEnum */
2228
+ export type IfcProfileTypeEnum = ENUMERATION OF
2229
+ (AREA
2230
+ ,CURVE);
2231
+
2232
+ /** IfcProjectOrderTypeEnum */
2233
+ export type IfcProjectOrderTypeEnum = ENUMERATION OF
2234
+ (CHANGEORDER
2235
+ ,MAINTENANCEWORKORDER
2236
+ ,MOVEORDER
2237
+ ,PURCHASEORDER
2238
+ ,WORKORDER
2239
+ ,USERDEFINED
2240
+ ,NOTDEFINED);
2241
+
2242
+ /** IfcProjectedOrTrueLengthEnum */
2243
+ export type IfcProjectedOrTrueLengthEnum = ENUMERATION OF
2244
+ (PROJECTED_LENGTH
2245
+ ,TRUE_LENGTH);
2246
+
2247
+ /** IfcProjectionElementTypeEnum */
2248
+ export type IfcProjectionElementTypeEnum = ENUMERATION OF
2249
+ (BLISTER
2250
+ ,DEVIATOR
2251
+ ,USERDEFINED
2252
+ ,NOTDEFINED);
2253
+
2254
+ /** IfcPropertySetTemplateTypeEnum */
2255
+ export type IfcPropertySetTemplateTypeEnum = ENUMERATION OF
2256
+ (PSET_MATERIALDRIVEN
2257
+ ,PSET_OCCURRENCEDRIVEN
2258
+ ,PSET_PERFORMANCEDRIVEN
2259
+ ,PSET_PROFILEDRIVEN
2260
+ ,PSET_TYPEDRIVENONLY
2261
+ ,PSET_TYPEDRIVENOVERRIDE
2262
+ ,QTO_OCCURRENCEDRIVEN
2263
+ ,QTO_TYPEDRIVENONLY
2264
+ ,QTO_TYPEDRIVENOVERRIDE
2265
+ ,NOTDEFINED);
2266
+
2267
+ /** IfcProtectiveDeviceTrippingUnitTypeEnum */
2268
+ export type IfcProtectiveDeviceTrippingUnitTypeEnum = ENUMERATION OF
2269
+ (ELECTROMAGNETIC
2270
+ ,ELECTRONIC
2271
+ ,RESIDUALCURRENT
2272
+ ,THERMAL
2273
+ ,USERDEFINED
2274
+ ,NOTDEFINED);
2275
+
2276
+ /** IfcProtectiveDeviceTypeEnum */
2277
+ export type IfcProtectiveDeviceTypeEnum = ENUMERATION OF
2278
+ (ANTI_ARCING_DEVICE
2279
+ ,CIRCUITBREAKER
2280
+ ,EARTHINGSWITCH
2281
+ ,EARTHLEAKAGECIRCUITBREAKER
2282
+ ,FUSEDISCONNECTOR
2283
+ ,RESIDUALCURRENTCIRCUITBREAKER
2284
+ ,RESIDUALCURRENTSWITCH
2285
+ ,SPARKGAP
2286
+ ,VARISTOR
2287
+ ,VOLTAGELIMITER
2288
+ ,USERDEFINED
2289
+ ,NOTDEFINED);
2290
+
2291
+ /** IfcPumpTypeEnum */
2292
+ export type IfcPumpTypeEnum = ENUMERATION OF
2293
+ (CIRCULATOR
2294
+ ,ENDSUCTION
2295
+ ,SPLITCASE
2296
+ ,SUBMERSIBLEPUMP
2297
+ ,SUMPPUMP
2298
+ ,VERTICALINLINE
2299
+ ,VERTICALTURBINE
2300
+ ,USERDEFINED
2301
+ ,NOTDEFINED);
2302
+
2303
+ /** IfcRailTypeEnum */
2304
+ export type IfcRailTypeEnum = ENUMERATION OF
2305
+ (BLADE
2306
+ ,CHECKRAIL
2307
+ ,GUARDRAIL
2308
+ ,RACKRAIL
2309
+ ,RAIL
2310
+ ,STOCKRAIL
2311
+ ,USERDEFINED
2312
+ ,NOTDEFINED);
2313
+
2314
+ /** IfcRailingTypeEnum */
2315
+ export type IfcRailingTypeEnum = ENUMERATION OF
2316
+ (BALUSTRADE
2317
+ ,FENCE
2318
+ ,GUARDRAIL
2319
+ ,HANDRAIL
2320
+ ,USERDEFINED
2321
+ ,NOTDEFINED);
2322
+
2323
+ /** IfcRailwayPartTypeEnum */
2324
+ export type IfcRailwayPartTypeEnum = ENUMERATION OF
2325
+ (ABOVETRACK
2326
+ ,DILATIONTRACK
2327
+ ,LINESIDE
2328
+ ,LINESIDEPART
2329
+ ,PLAINTRACK
2330
+ ,SUBSTRUCTURE
2331
+ ,TRACK
2332
+ ,TRACKPART
2333
+ ,TURNOUTTRACK
2334
+ ,USERDEFINED
2335
+ ,NOTDEFINED);
2336
+
2337
+ /** IfcRailwayTypeEnum */
2338
+ export type IfcRailwayTypeEnum = ENUMERATION OF
2339
+ (USERDEFINED
2340
+ ,NOTDEFINED);
2341
+
2342
+ /** IfcRampFlightTypeEnum */
2343
+ export type IfcRampFlightTypeEnum = ENUMERATION OF
2344
+ (SPIRAL
2345
+ ,STRAIGHT
2346
+ ,USERDEFINED
2347
+ ,NOTDEFINED);
2348
+
2349
+ /** IfcRampTypeEnum */
2350
+ export type IfcRampTypeEnum = ENUMERATION OF
2351
+ (HALF_TURN_RAMP
2352
+ ,QUARTER_TURN_RAMP
2353
+ ,SPIRAL_RAMP
2354
+ ,STRAIGHT_RUN_RAMP
2355
+ ,TWO_QUARTER_TURN_RAMP
2356
+ ,TWO_STRAIGHT_RUN_RAMP
2357
+ ,USERDEFINED
2358
+ ,NOTDEFINED);
2359
+
2360
+ /** IfcRecurrenceTypeEnum */
2361
+ export type IfcRecurrenceTypeEnum = ENUMERATION OF
2362
+ (BY_DAY_COUNT
2363
+ ,BY_WEEKDAY_COUNT
2364
+ ,DAILY
2365
+ ,MONTHLY_BY_DAY_OF_MONTH
2366
+ ,MONTHLY_BY_POSITION
2367
+ ,WEEKLY
2368
+ ,YEARLY_BY_DAY_OF_MONTH
2369
+ ,YEARLY_BY_POSITION);
2370
+
2371
+ /** IfcReferentTypeEnum */
2372
+ export type IfcReferentTypeEnum = ENUMERATION OF
2373
+ (BOUNDARY
2374
+ ,INTERSECTION
2375
+ ,KILOPOINT
2376
+ ,LANDMARK
2377
+ ,MILEPOINT
2378
+ ,POSITION
2379
+ ,REFERENCEMARKER
2380
+ ,STATION
2381
+ ,SUPERELEVATIONEVENT
2382
+ ,WIDTHEVENT
2383
+ ,USERDEFINED
2384
+ ,NOTDEFINED);
2385
+
2386
+ /** IfcReflectanceMethodEnum */
2387
+ export type IfcReflectanceMethodEnum = ENUMERATION OF
2388
+ (BLINN
2389
+ ,FLAT
2390
+ ,GLASS
2391
+ ,MATT
2392
+ ,METAL
2393
+ ,MIRROR
2394
+ ,PHONG
2395
+ ,PHYSICAL
2396
+ ,PLASTIC
2397
+ ,STRAUSS
2398
+ ,NOTDEFINED);
2399
+
2400
+ /** IfcReinforcedSoilTypeEnum */
2401
+ export type IfcReinforcedSoilTypeEnum = ENUMERATION OF
2402
+ (DYNAMICALLYCOMPACTED
2403
+ ,GROUTED
2404
+ ,REPLACED
2405
+ ,ROLLERCOMPACTED
2406
+ ,SURCHARGEPRELOADED
2407
+ ,VERTICALLYDRAINED
2408
+ ,USERDEFINED
2409
+ ,NOTDEFINED);
2410
+
2411
+ /** IfcReinforcingBarRoleEnum */
2412
+ export type IfcReinforcingBarRoleEnum = ENUMERATION OF
2413
+ (ANCHORING
2414
+ ,EDGE
2415
+ ,LIGATURE
2416
+ ,MAIN
2417
+ ,PUNCHING
2418
+ ,RING
2419
+ ,SHEAR
2420
+ ,STUD
2421
+ ,USERDEFINED
2422
+ ,NOTDEFINED);
2423
+
2424
+ /** IfcReinforcingBarSurfaceEnum */
2425
+ export type IfcReinforcingBarSurfaceEnum = ENUMERATION OF
2426
+ (PLAIN
2427
+ ,TEXTURED);
2428
+
2429
+ /** IfcReinforcingBarTypeEnum */
2430
+ export type IfcReinforcingBarTypeEnum = ENUMERATION OF
2431
+ (ANCHORING
2432
+ ,EDGE
2433
+ ,LIGATURE
2434
+ ,MAIN
2435
+ ,PUNCHING
2436
+ ,RING
2437
+ ,SHEAR
2438
+ ,SPACEBAR
2439
+ ,STUD
2440
+ ,USERDEFINED
2441
+ ,NOTDEFINED);
2442
+
2443
+ /** IfcReinforcingMeshTypeEnum */
2444
+ export type IfcReinforcingMeshTypeEnum = ENUMERATION OF
2445
+ (USERDEFINED
2446
+ ,NOTDEFINED);
2447
+
2448
+ /** IfcRoadPartTypeEnum */
2449
+ export type IfcRoadPartTypeEnum = ENUMERATION OF
2450
+ (BICYCLECROSSING
2451
+ ,BUS_STOP
2452
+ ,CARRIAGEWAY
2453
+ ,CENTRALISLAND
2454
+ ,CENTRALRESERVE
2455
+ ,HARDSHOULDER
2456
+ ,INTERSECTION
2457
+ ,LAYBY
2458
+ ,PARKINGBAY
2459
+ ,PASSINGBAY
2460
+ ,PEDESTRIAN_CROSSING
2461
+ ,RAILWAYCROSSING
2462
+ ,REFUGEISLAND
2463
+ ,ROADSEGMENT
2464
+ ,ROADSIDE
2465
+ ,ROADSIDEPART
2466
+ ,ROADWAYPLATEAU
2467
+ ,ROUNDABOUT
2468
+ ,SHOULDER
2469
+ ,SIDEWALK
2470
+ ,SOFTSHOULDER
2471
+ ,TOLLPLAZA
2472
+ ,TRAFFICISLAND
2473
+ ,TRAFFICLANE
2474
+ ,USERDEFINED
2475
+ ,NOTDEFINED);
2476
+
2477
+ /** IfcRoadTypeEnum */
2478
+ export type IfcRoadTypeEnum = ENUMERATION OF
2479
+ (USERDEFINED
2480
+ ,NOTDEFINED);
2481
+
2482
+ /** IfcRoleEnum */
2483
+ export type IfcRoleEnum = ENUMERATION OF
2484
+ (ARCHITECT
2485
+ ,BUILDINGOPERATOR
2486
+ ,BUILDINGOWNER
2487
+ ,CIVILENGINEER
2488
+ ,CLIENT
2489
+ ,COMMISSIONINGENGINEER
2490
+ ,CONSTRUCTIONMANAGER
2491
+ ,CONSULTANT
2492
+ ,CONTRACTOR
2493
+ ,COSTENGINEER
2494
+ ,ELECTRICALENGINEER
2495
+ ,ENGINEER
2496
+ ,FACILITIESMANAGER
2497
+ ,FIELDCONSTRUCTIONMANAGER
2498
+ ,MANUFACTURER
2499
+ ,MECHANICALENGINEER
2500
+ ,OWNER
2501
+ ,PROJECTMANAGER
2502
+ ,RESELLER
2503
+ ,STRUCTURALENGINEER
2504
+ ,SUBCONTRACTOR
2505
+ ,SUPPLIER
2506
+ ,USERDEFINED);
2507
+
2508
+ /** IfcRoofTypeEnum */
2509
+ export type IfcRoofTypeEnum = ENUMERATION OF
2510
+ (BARREL_ROOF
2511
+ ,BUTTERFLY_ROOF
2512
+ ,DOME_ROOF
2513
+ ,FLAT_ROOF
2514
+ ,FREEFORM
2515
+ ,GABLE_ROOF
2516
+ ,GAMBREL_ROOF
2517
+ ,HIPPED_GABLE_ROOF
2518
+ ,HIP_ROOF
2519
+ ,MANSARD_ROOF
2520
+ ,PAVILION_ROOF
2521
+ ,RAINBOW_ROOF
2522
+ ,SHED_ROOF
2523
+ ,USERDEFINED
2524
+ ,NOTDEFINED);
2525
+
2526
+ /** IfcSIPrefix */
2527
+ export type IfcSIPrefix = ENUMERATION OF
2528
+ (ATTO
2529
+ ,CENTI
2530
+ ,DECA
2531
+ ,DECI
2532
+ ,EXA
2533
+ ,FEMTO
2534
+ ,GIGA
2535
+ ,HECTO
2536
+ ,KILO
2537
+ ,MEGA
2538
+ ,MICRO
2539
+ ,MILLI
2540
+ ,NANO
2541
+ ,PETA
2542
+ ,PICO
2543
+ ,TERA);
2544
+
2545
+ /** IfcSIUnitName */
2546
+ export type IfcSIUnitName = ENUMERATION OF
2547
+ (AMPERE
2548
+ ,BECQUEREL
2549
+ ,CANDELA
2550
+ ,COULOMB
2551
+ ,CUBIC_METRE
2552
+ ,DEGREE_CELSIUS
2553
+ ,FARAD
2554
+ ,GRAM
2555
+ ,GRAY
2556
+ ,HENRY
2557
+ ,HERTZ
2558
+ ,JOULE
2559
+ ,KELVIN
2560
+ ,LUMEN
2561
+ ,LUX
2562
+ ,METRE
2563
+ ,MOLE
2564
+ ,NEWTON
2565
+ ,OHM
2566
+ ,PASCAL
2567
+ ,RADIAN
2568
+ ,SECOND
2569
+ ,SIEMENS
2570
+ ,SIEVERT
2571
+ ,SQUARE_METRE
2572
+ ,STERADIAN
2573
+ ,TESLA
2574
+ ,VOLT
2575
+ ,WATT
2576
+ ,WEBER);
2577
+
2578
+ /** IfcSanitaryTerminalTypeEnum */
2579
+ export type IfcSanitaryTerminalTypeEnum = ENUMERATION OF
2580
+ (BATH
2581
+ ,BIDET
2582
+ ,CISTERN
2583
+ ,SANITARYFOUNTAIN
2584
+ ,SHOWER
2585
+ ,SINK
2586
+ ,TOILETPAN
2587
+ ,URINAL
2588
+ ,WASHHANDBASIN
2589
+ ,WCSEAT
2590
+ ,USERDEFINED
2591
+ ,NOTDEFINED);
2592
+
2593
+ /** IfcSectionTypeEnum */
2594
+ export type IfcSectionTypeEnum = ENUMERATION OF
2595
+ (TAPERED
2596
+ ,UNIFORM);
2597
+
2598
+ /** IfcSensorTypeEnum */
2599
+ export type IfcSensorTypeEnum = ENUMERATION OF
2600
+ (CO2SENSOR
2601
+ ,CONDUCTANCESENSOR
2602
+ ,CONTACTSENSOR
2603
+ ,COSENSOR
2604
+ ,EARTHQUAKESENSOR
2605
+ ,FIRESENSOR
2606
+ ,FLOWSENSOR
2607
+ ,FOREIGNOBJECTDETECTIONSENSOR
2608
+ ,FROSTSENSOR
2609
+ ,GASSENSOR
2610
+ ,HEATSENSOR
2611
+ ,HUMIDITYSENSOR
2612
+ ,IDENTIFIERSENSOR
2613
+ ,IONCONCENTRATIONSENSOR
2614
+ ,LEVELSENSOR
2615
+ ,LIGHTSENSOR
2616
+ ,MOISTURESENSOR
2617
+ ,MOVEMENTSENSOR
2618
+ ,OBSTACLESENSOR
2619
+ ,PHSENSOR
2620
+ ,PRESSURESENSOR
2621
+ ,RADIATIONSENSOR
2622
+ ,RADIOACTIVITYSENSOR
2623
+ ,RAINSENSOR
2624
+ ,SMOKESENSOR
2625
+ ,SNOWDEPTHSENSOR
2626
+ ,SOUNDSENSOR
2627
+ ,TEMPERATURESENSOR
2628
+ ,TRAINSENSOR
2629
+ ,TURNOUTCLOSURESENSOR
2630
+ ,WHEELSENSOR
2631
+ ,WINDSENSOR
2632
+ ,USERDEFINED
2633
+ ,NOTDEFINED);
2634
+
2635
+ /** IfcSequenceEnum */
2636
+ export type IfcSequenceEnum = ENUMERATION OF
2637
+ (FINISH_FINISH
2638
+ ,FINISH_START
2639
+ ,START_FINISH
2640
+ ,START_START
2641
+ ,USERDEFINED
2642
+ ,NOTDEFINED);
2643
+
2644
+ /** IfcShadingDeviceTypeEnum */
2645
+ export type IfcShadingDeviceTypeEnum = ENUMERATION OF
2646
+ (AWNING
2647
+ ,JALOUSIE
2648
+ ,SHUTTER
2649
+ ,USERDEFINED
2650
+ ,NOTDEFINED);
2651
+
2652
+ /** IfcSignTypeEnum */
2653
+ export type IfcSignTypeEnum = ENUMERATION OF
2654
+ (MARKER
2655
+ ,MIRROR
2656
+ ,PICTORAL
2657
+ ,USERDEFINED
2658
+ ,NOTDEFINED);
2659
+
2660
+ /** IfcSignalTypeEnum */
2661
+ export type IfcSignalTypeEnum = ENUMERATION OF
2662
+ (AUDIO
2663
+ ,MIXED
2664
+ ,VISUAL
2665
+ ,USERDEFINED
2666
+ ,NOTDEFINED);
2667
+
2668
+ /** IfcSimplePropertyTemplateTypeEnum */
2669
+ export type IfcSimplePropertyTemplateTypeEnum = ENUMERATION OF
2670
+ (P_BOUNDEDVALUE
2671
+ ,P_ENUMERATEDVALUE
2672
+ ,P_LISTVALUE
2673
+ ,P_REFERENCEVALUE
2674
+ ,P_SINGLEVALUE
2675
+ ,P_TABLEVALUE
2676
+ ,Q_AREA
2677
+ ,Q_COUNT
2678
+ ,Q_LENGTH
2679
+ ,Q_NUMBER
2680
+ ,Q_TIME
2681
+ ,Q_VOLUME
2682
+ ,Q_WEIGHT);
2683
+
2684
+ /** IfcSlabTypeEnum */
2685
+ export type IfcSlabTypeEnum = ENUMERATION OF
2686
+ (APPROACH_SLAB
2687
+ ,BASESLAB
2688
+ ,FLOOR
2689
+ ,LANDING
2690
+ ,PAVING
2691
+ ,ROOF
2692
+ ,SIDEWALK
2693
+ ,TRACKSLAB
2694
+ ,WEARING
2695
+ ,USERDEFINED
2696
+ ,NOTDEFINED);
2697
+
2698
+ /** IfcSolarDeviceTypeEnum */
2699
+ export type IfcSolarDeviceTypeEnum = ENUMERATION OF
2700
+ (SOLARCOLLECTOR
2701
+ ,SOLARPANEL
2702
+ ,USERDEFINED
2703
+ ,NOTDEFINED);
2704
+
2705
+ /** IfcSpaceHeaterTypeEnum */
2706
+ export type IfcSpaceHeaterTypeEnum = ENUMERATION OF
2707
+ (CONVECTOR
2708
+ ,RADIATOR
2709
+ ,USERDEFINED
2710
+ ,NOTDEFINED);
2711
+
2712
+ /** IfcSpaceTypeEnum */
2713
+ export type IfcSpaceTypeEnum = ENUMERATION OF
2714
+ (BERTH
2715
+ ,EXTERNAL
2716
+ ,GFA
2717
+ ,INTERNAL
2718
+ ,PARKING
2719
+ ,SPACE
2720
+ ,USERDEFINED
2721
+ ,NOTDEFINED);
2722
+
2723
+ /** IfcSpatialZoneTypeEnum */
2724
+ export type IfcSpatialZoneTypeEnum = ENUMERATION OF
2725
+ (CONSTRUCTION
2726
+ ,FIRESAFETY
2727
+ ,INTERFERENCE
2728
+ ,LIGHTING
2729
+ ,OCCUPANCY
2730
+ ,RESERVATION
2731
+ ,SECURITY
2732
+ ,THERMAL
2733
+ ,TRANSPORT
2734
+ ,VENTILATION
2735
+ ,USERDEFINED
2736
+ ,NOTDEFINED);
2737
+
2738
+ /** IfcStackTerminalTypeEnum */
2739
+ export type IfcStackTerminalTypeEnum = ENUMERATION OF
2740
+ (BIRDCAGE
2741
+ ,COWL
2742
+ ,RAINWATERHOPPER
2743
+ ,USERDEFINED
2744
+ ,NOTDEFINED);
2745
+
2746
+ /** IfcStairFlightTypeEnum */
2747
+ export type IfcStairFlightTypeEnum = ENUMERATION OF
2748
+ (CURVED
2749
+ ,FREEFORM
2750
+ ,SPIRAL
2751
+ ,STRAIGHT
2752
+ ,WINDER
2753
+ ,USERDEFINED
2754
+ ,NOTDEFINED);
2755
+
2756
+ /** IfcStairTypeEnum */
2757
+ export type IfcStairTypeEnum = ENUMERATION OF
2758
+ (CURVED_RUN_STAIR
2759
+ ,DOUBLE_RETURN_STAIR
2760
+ ,HALF_TURN_STAIR
2761
+ ,HALF_WINDING_STAIR
2762
+ ,LADDER
2763
+ ,QUARTER_TURN_STAIR
2764
+ ,QUARTER_WINDING_STAIR
2765
+ ,SPIRAL_STAIR
2766
+ ,STRAIGHT_RUN_STAIR
2767
+ ,THREE_QUARTER_TURN_STAIR
2768
+ ,THREE_QUARTER_WINDING_STAIR
2769
+ ,TWO_CURVED_RUN_STAIR
2770
+ ,TWO_QUARTER_TURN_STAIR
2771
+ ,TWO_QUARTER_WINDING_STAIR
2772
+ ,TWO_STRAIGHT_RUN_STAIR
2773
+ ,USERDEFINED
2774
+ ,NOTDEFINED);
2775
+
2776
+ /** IfcStateEnum */
2777
+ export type IfcStateEnum = ENUMERATION OF
2778
+ (LOCKED
2779
+ ,READONLY
2780
+ ,READONLYLOCKED
2781
+ ,READWRITE
2782
+ ,READWRITELOCKED);
2783
+
2784
+ /** IfcStructuralCurveActivityTypeEnum */
2785
+ export type IfcStructuralCurveActivityTypeEnum = ENUMERATION OF
2786
+ (CONST
2787
+ ,DISCRETE
2788
+ ,EQUIDISTANT
2789
+ ,LINEAR
2790
+ ,PARABOLA
2791
+ ,POLYGONAL
2792
+ ,SINUS
2793
+ ,USERDEFINED
2794
+ ,NOTDEFINED);
2795
+
2796
+ /** IfcStructuralCurveMemberTypeEnum */
2797
+ export type IfcStructuralCurveMemberTypeEnum = ENUMERATION OF
2798
+ (CABLE
2799
+ ,COMPRESSION_MEMBER
2800
+ ,PIN_JOINED_MEMBER
2801
+ ,RIGID_JOINED_MEMBER
2802
+ ,TENSION_MEMBER
2803
+ ,USERDEFINED
2804
+ ,NOTDEFINED);
2805
+
2806
+ /** IfcStructuralSurfaceActivityTypeEnum */
2807
+ export type IfcStructuralSurfaceActivityTypeEnum = ENUMERATION OF
2808
+ (BILINEAR
2809
+ ,CONST
2810
+ ,DISCRETE
2811
+ ,ISOCONTOUR
2812
+ ,USERDEFINED
2813
+ ,NOTDEFINED);
2814
+
2815
+ /** IfcStructuralSurfaceMemberTypeEnum */
2816
+ export type IfcStructuralSurfaceMemberTypeEnum = ENUMERATION OF
2817
+ (BENDING_ELEMENT
2818
+ ,MEMBRANE_ELEMENT
2819
+ ,SHELL
2820
+ ,USERDEFINED
2821
+ ,NOTDEFINED);
2822
+
2823
+ /** IfcSubContractResourceTypeEnum */
2824
+ export type IfcSubContractResourceTypeEnum = ENUMERATION OF
2825
+ (PURCHASE
2826
+ ,WORK
2827
+ ,USERDEFINED
2828
+ ,NOTDEFINED);
2829
+
2830
+ /** IfcSurfaceFeatureTypeEnum */
2831
+ export type IfcSurfaceFeatureTypeEnum = ENUMERATION OF
2832
+ (DEFECT
2833
+ ,HATCHMARKING
2834
+ ,LINEMARKING
2835
+ ,MARK
2836
+ ,NONSKIDSURFACING
2837
+ ,PAVEMENTSURFACEMARKING
2838
+ ,RUMBLESTRIP
2839
+ ,SYMBOLMARKING
2840
+ ,TAG
2841
+ ,TRANSVERSERUMBLESTRIP
2842
+ ,TREATMENT
2843
+ ,USERDEFINED
2844
+ ,NOTDEFINED);
2845
+
2846
+ /** IfcSurfaceSide */
2847
+ export type IfcSurfaceSide = ENUMERATION OF
2848
+ (BOTH
2849
+ ,NEGATIVE
2850
+ ,POSITIVE);
2851
+
2852
+ /** IfcSwitchingDeviceTypeEnum */
2853
+ export type IfcSwitchingDeviceTypeEnum = ENUMERATION OF
2854
+ (CONTACTOR
2855
+ ,DIMMERSWITCH
2856
+ ,EMERGENCYSTOP
2857
+ ,KEYPAD
2858
+ ,MOMENTARYSWITCH
2859
+ ,RELAY
2860
+ ,SELECTORSWITCH
2861
+ ,STARTER
2862
+ ,START_AND_STOP_EQUIPMENT
2863
+ ,SWITCHDISCONNECTOR
2864
+ ,TOGGLESWITCH
2865
+ ,USERDEFINED
2866
+ ,NOTDEFINED);
2867
+
2868
+ /** IfcSystemFurnitureElementTypeEnum */
2869
+ export type IfcSystemFurnitureElementTypeEnum = ENUMERATION OF
2870
+ (PANEL
2871
+ ,SUBRACK
2872
+ ,WORKSURFACE
2873
+ ,USERDEFINED
2874
+ ,NOTDEFINED);
2875
+
2876
+ /** IfcTankTypeEnum */
2877
+ export type IfcTankTypeEnum = ENUMERATION OF
2878
+ (BASIN
2879
+ ,BREAKPRESSURE
2880
+ ,EXPANSION
2881
+ ,FEEDANDEXPANSION
2882
+ ,OILRETENTIONTRAY
2883
+ ,PRESSUREVESSEL
2884
+ ,STORAGE
2885
+ ,VESSEL
2886
+ ,USERDEFINED
2887
+ ,NOTDEFINED);
2888
+
2889
+ /** IfcTaskDurationEnum */
2890
+ export type IfcTaskDurationEnum = ENUMERATION OF
2891
+ (ELAPSEDTIME
2892
+ ,WORKTIME
2893
+ ,NOTDEFINED);
2894
+
2895
+ /** IfcTaskTypeEnum */
2896
+ export type IfcTaskTypeEnum = ENUMERATION OF
2897
+ (ADJUSTMENT
2898
+ ,ATTENDANCE
2899
+ ,CALIBRATION
2900
+ ,CONSTRUCTION
2901
+ ,DEMOLITION
2902
+ ,DISMANTLE
2903
+ ,DISPOSAL
2904
+ ,EMERGENCY
2905
+ ,INSPECTION
2906
+ ,INSTALLATION
2907
+ ,LOGISTIC
2908
+ ,MAINTENANCE
2909
+ ,MOVE
2910
+ ,OPERATION
2911
+ ,REMOVAL
2912
+ ,RENOVATION
2913
+ ,SAFETY
2914
+ ,SHUTDOWN
2915
+ ,STARTUP
2916
+ ,TESTING
2917
+ ,TROUBLESHOOTING
2918
+ ,USERDEFINED
2919
+ ,NOTDEFINED);
2920
+
2921
+ /** IfcTendonAnchorTypeEnum */
2922
+ export type IfcTendonAnchorTypeEnum = ENUMERATION OF
2923
+ (COUPLER
2924
+ ,FIXED_END
2925
+ ,TENSIONING_END
2926
+ ,USERDEFINED
2927
+ ,NOTDEFINED);
2928
+
2929
+ /** IfcTendonConduitTypeEnum */
2930
+ export type IfcTendonConduitTypeEnum = ENUMERATION OF
2931
+ (COUPLER
2932
+ ,DIABOLO
2933
+ ,DUCT
2934
+ ,GROUTING_DUCT
2935
+ ,TRUMPET
2936
+ ,USERDEFINED
2937
+ ,NOTDEFINED);
2938
+
2939
+ /** IfcTendonTypeEnum */
2940
+ export type IfcTendonTypeEnum = ENUMERATION OF
2941
+ (BAR
2942
+ ,COATED
2943
+ ,STRAND
2944
+ ,WIRE
2945
+ ,USERDEFINED
2946
+ ,NOTDEFINED);
2947
+
2948
+ /** IfcTextPath */
2949
+ export type IfcTextPath = ENUMERATION OF
2950
+ (DOWN
2951
+ ,LEFT
2952
+ ,RIGHT
2953
+ ,UP);
2954
+
2955
+ /** IfcTimeSeriesDataTypeEnum */
2956
+ export type IfcTimeSeriesDataTypeEnum = ENUMERATION OF
2957
+ (CONTINUOUS
2958
+ ,DISCRETE
2959
+ ,DISCRETEBINARY
2960
+ ,PIECEWISEBINARY
2961
+ ,PIECEWISECONSTANT
2962
+ ,PIECEWISECONTINUOUS
2963
+ ,NOTDEFINED);
2964
+
2965
+ /** IfcTrackElementTypeEnum */
2966
+ export type IfcTrackElementTypeEnum = ENUMERATION OF
2967
+ (BLOCKINGDEVICE
2968
+ ,DERAILER
2969
+ ,FROG
2970
+ ,HALF_SET_OF_BLADES
2971
+ ,SLEEPER
2972
+ ,SPEEDREGULATOR
2973
+ ,TRACKENDOFALIGNMENT
2974
+ ,VEHICLESTOP
2975
+ ,USERDEFINED
2976
+ ,NOTDEFINED);
2977
+
2978
+ /** IfcTransformerTypeEnum */
2979
+ export type IfcTransformerTypeEnum = ENUMERATION OF
2980
+ (CHOPPER
2981
+ ,COMBINED
2982
+ ,CURRENT
2983
+ ,FREQUENCY
2984
+ ,INVERTER
2985
+ ,RECTIFIER
2986
+ ,VOLTAGE
2987
+ ,USERDEFINED
2988
+ ,NOTDEFINED);
2989
+
2990
+ /** IfcTransitionCode */
2991
+ export type IfcTransitionCode = ENUMERATION OF
2992
+ (CONTINUOUS
2993
+ ,CONTSAMEGRADIENT
2994
+ ,CONTSAMEGRADIENTSAMECURVATURE
2995
+ ,DISCONTINUOUS);
2996
+
2997
+ /** IfcTransportElementTypeEnum */
2998
+ export type IfcTransportElementTypeEnum = ENUMERATION OF
2999
+ (CRANEWAY
3000
+ ,ELEVATOR
3001
+ ,ESCALATOR
3002
+ ,HAULINGGEAR
3003
+ ,LIFTINGGEAR
3004
+ ,MOVINGWALKWAY
3005
+ ,USERDEFINED
3006
+ ,NOTDEFINED);
3007
+
3008
+ /** IfcTrimmingPreference */
3009
+ export type IfcTrimmingPreference = ENUMERATION OF
3010
+ (CARTESIAN
3011
+ ,PARAMETER
3012
+ ,UNSPECIFIED);
3013
+
3014
+ /** IfcTubeBundleTypeEnum */
3015
+ export type IfcTubeBundleTypeEnum = ENUMERATION OF
3016
+ (FINNED
3017
+ ,USERDEFINED
3018
+ ,NOTDEFINED);
3019
+
3020
+ /** IfcUnitEnum */
3021
+ export type IfcUnitEnum = ENUMERATION OF
3022
+ (ABSORBEDDOSEUNIT
3023
+ ,AMOUNTOFSUBSTANCEUNIT
3024
+ ,AREAUNIT
3025
+ ,DOSEEQUIVALENTUNIT
3026
+ ,ELECTRICCAPACITANCEUNIT
3027
+ ,ELECTRICCHARGEUNIT
3028
+ ,ELECTRICCONDUCTANCEUNIT
3029
+ ,ELECTRICCURRENTUNIT
3030
+ ,ELECTRICRESISTANCEUNIT
3031
+ ,ELECTRICVOLTAGEUNIT
3032
+ ,ENERGYUNIT
3033
+ ,FORCEUNIT
3034
+ ,FREQUENCYUNIT
3035
+ ,ILLUMINANCEUNIT
3036
+ ,INDUCTANCEUNIT
3037
+ ,LENGTHUNIT
3038
+ ,LUMINOUSFLUXUNIT
3039
+ ,LUMINOUSINTENSITYUNIT
3040
+ ,MAGNETICFLUXDENSITYUNIT
3041
+ ,MAGNETICFLUXUNIT
3042
+ ,MASSUNIT
3043
+ ,PLANEANGLEUNIT
3044
+ ,POWERUNIT
3045
+ ,PRESSUREUNIT
3046
+ ,RADIOACTIVITYUNIT
3047
+ ,SOLIDANGLEUNIT
3048
+ ,THERMODYNAMICTEMPERATUREUNIT
3049
+ ,TIMEUNIT
3050
+ ,VOLUMEUNIT
3051
+ ,USERDEFINED);
3052
+
3053
+ /** IfcUnitaryControlElementTypeEnum */
3054
+ export type IfcUnitaryControlElementTypeEnum = ENUMERATION OF
3055
+ (ALARMPANEL
3056
+ ,BASESTATIONCONTROLLER
3057
+ ,COMBINED
3058
+ ,CONTROLPANEL
3059
+ ,GASDETECTIONPANEL
3060
+ ,HUMIDISTAT
3061
+ ,INDICATORPANEL
3062
+ ,MIMICPANEL
3063
+ ,THERMOSTAT
3064
+ ,WEATHERSTATION
3065
+ ,USERDEFINED
3066
+ ,NOTDEFINED);
3067
+
3068
+ /** IfcUnitaryEquipmentTypeEnum */
3069
+ export type IfcUnitaryEquipmentTypeEnum = ENUMERATION OF
3070
+ (AIRCONDITIONINGUNIT
3071
+ ,AIRHANDLER
3072
+ ,DEHUMIDIFIER
3073
+ ,ROOFTOPUNIT
3074
+ ,SPLITSYSTEM
3075
+ ,USERDEFINED
3076
+ ,NOTDEFINED);
3077
+
3078
+ /** IfcValveTypeEnum */
3079
+ export type IfcValveTypeEnum = ENUMERATION OF
3080
+ (AIRRELEASE
3081
+ ,ANTIVACUUM
3082
+ ,CHANGEOVER
3083
+ ,CHECK
3084
+ ,COMMISSIONING
3085
+ ,DIVERTING
3086
+ ,DOUBLECHECK
3087
+ ,DOUBLEREGULATING
3088
+ ,DRAWOFFCOCK
3089
+ ,FAUCET
3090
+ ,FLUSHING
3091
+ ,GASCOCK
3092
+ ,GASTAP
3093
+ ,ISOLATING
3094
+ ,MIXING
3095
+ ,PRESSUREREDUCING
3096
+ ,PRESSURERELIEF
3097
+ ,REGULATING
3098
+ ,SAFETYCUTOFF
3099
+ ,STEAMTRAP
3100
+ ,STOPCOCK
3101
+ ,USERDEFINED
3102
+ ,NOTDEFINED);
3103
+
3104
+ /** IfcVehicleTypeEnum */
3105
+ export type IfcVehicleTypeEnum = ENUMERATION OF
3106
+ (CARGO
3107
+ ,ROLLINGSTOCK
3108
+ ,VEHICLE
3109
+ ,VEHICLEAIR
3110
+ ,VEHICLEMARINE
3111
+ ,VEHICLETRACKED
3112
+ ,VEHICLEWHEELED
3113
+ ,USERDEFINED
3114
+ ,NOTDEFINED);
3115
+
3116
+ /** IfcVibrationDamperTypeEnum */
3117
+ export type IfcVibrationDamperTypeEnum = ENUMERATION OF
3118
+ (AXIAL_YIELD
3119
+ ,BENDING_YIELD
3120
+ ,FRICTION
3121
+ ,RUBBER
3122
+ ,SHEAR_YIELD
3123
+ ,VISCOUS
3124
+ ,USERDEFINED
3125
+ ,NOTDEFINED);
3126
+
3127
+ /** IfcVibrationIsolatorTypeEnum */
3128
+ export type IfcVibrationIsolatorTypeEnum = ENUMERATION OF
3129
+ (BASE
3130
+ ,COMPRESSION
3131
+ ,SPRING
3132
+ ,USERDEFINED
3133
+ ,NOTDEFINED);
3134
+
3135
+ /** IfcVirtualElementTypeEnum */
3136
+ export type IfcVirtualElementTypeEnum = ENUMERATION OF
3137
+ (BOUNDARY
3138
+ ,CLEARANCE
3139
+ ,PROVISIONFORVOID
3140
+ ,USERDEFINED
3141
+ ,NOTDEFINED);
3142
+
3143
+ /** IfcVoidingFeatureTypeEnum */
3144
+ export type IfcVoidingFeatureTypeEnum = ENUMERATION OF
3145
+ (CHAMFER
3146
+ ,CUTOUT
3147
+ ,EDGE
3148
+ ,HOLE
3149
+ ,MITER
3150
+ ,NOTCH
3151
+ ,USERDEFINED
3152
+ ,NOTDEFINED);
3153
+
3154
+ /** IfcWallTypeEnum */
3155
+ export type IfcWallTypeEnum = ENUMERATION OF
3156
+ (ELEMENTEDWALL
3157
+ ,MOVABLE
3158
+ ,PARAPET
3159
+ ,PARTITIONING
3160
+ ,PLUMBINGWALL
3161
+ ,POLYGONAL
3162
+ ,RETAININGWALL
3163
+ ,SHEAR
3164
+ ,SOLIDWALL
3165
+ ,STANDARD
3166
+ ,WAVEWALL
3167
+ ,USERDEFINED
3168
+ ,NOTDEFINED);
3169
+
3170
+ /** IfcWasteTerminalTypeEnum */
3171
+ export type IfcWasteTerminalTypeEnum = ENUMERATION OF
3172
+ (FLOORTRAP
3173
+ ,FLOORWASTE
3174
+ ,GULLYSUMP
3175
+ ,GULLYTRAP
3176
+ ,ROOFDRAIN
3177
+ ,WASTEDISPOSALUNIT
3178
+ ,WASTETRAP
3179
+ ,USERDEFINED
3180
+ ,NOTDEFINED);
3181
+
3182
+ /** IfcWindowPanelOperationEnum */
3183
+ export type IfcWindowPanelOperationEnum = ENUMERATION OF
3184
+ (BOTTOMHUNG
3185
+ ,FIXEDCASEMENT
3186
+ ,OTHEROPERATION
3187
+ ,PIVOTHORIZONTAL
3188
+ ,PIVOTVERTICAL
3189
+ ,REMOVABLECASEMENT
3190
+ ,SIDEHUNGLEFTHAND
3191
+ ,SIDEHUNGRIGHTHAND
3192
+ ,SLIDINGHORIZONTAL
3193
+ ,SLIDINGVERTICAL
3194
+ ,TILTANDTURNLEFTHAND
3195
+ ,TILTANDTURNRIGHTHAND
3196
+ ,TOPHUNG
3197
+ ,NOTDEFINED);
3198
+
3199
+ /** IfcWindowPanelPositionEnum */
3200
+ export type IfcWindowPanelPositionEnum = ENUMERATION OF
3201
+ (BOTTOM
3202
+ ,LEFT
3203
+ ,MIDDLE
3204
+ ,RIGHT
3205
+ ,TOP
3206
+ ,NOTDEFINED);
3207
+
3208
+ /** IfcWindowTypeEnum */
3209
+ export type IfcWindowTypeEnum = ENUMERATION OF
3210
+ (LIGHTDOME
3211
+ ,SKYLIGHT
3212
+ ,WINDOW
3213
+ ,USERDEFINED
3214
+ ,NOTDEFINED);
3215
+
3216
+ /** IfcWindowTypePartitioningEnum */
3217
+ export type IfcWindowTypePartitioningEnum = ENUMERATION OF
3218
+ (DOUBLE_PANEL_HORIZONTAL
3219
+ ,DOUBLE_PANEL_VERTICAL
3220
+ ,SINGLE_PANEL
3221
+ ,TRIPLE_PANEL_BOTTOM
3222
+ ,TRIPLE_PANEL_HORIZONTAL
3223
+ ,TRIPLE_PANEL_LEFT
3224
+ ,TRIPLE_PANEL_RIGHT
3225
+ ,TRIPLE_PANEL_TOP
3226
+ ,TRIPLE_PANEL_VERTICAL
3227
+ ,USERDEFINED
3228
+ ,NOTDEFINED);
3229
+
3230
+ /** IfcWorkCalendarTypeEnum */
3231
+ export type IfcWorkCalendarTypeEnum = ENUMERATION OF
3232
+ (FIRSTSHIFT
3233
+ ,SECONDSHIFT
3234
+ ,THIRDSHIFT
3235
+ ,USERDEFINED
3236
+ ,NOTDEFINED);
3237
+
3238
+ /** IfcWorkPlanTypeEnum */
3239
+ export type IfcWorkPlanTypeEnum = ENUMERATION OF
3240
+ (ACTUAL
3241
+ ,BASELINE
3242
+ ,PLANNED
3243
+ ,USERDEFINED
3244
+ ,NOTDEFINED);
3245
+
3246
+ /** IfcWorkScheduleTypeEnum */
3247
+ export type IfcWorkScheduleTypeEnum = ENUMERATION OF
3248
+ (ACTUAL
3249
+ ,BASELINE
3250
+ ,PLANNED
3251
+ ,USERDEFINED
3252
+ ,NOTDEFINED);
3253
+
3254
+ /** IfcActorSelect */
3255
+ export type IfcActorSelect = SELECT
3256
+ (IfcOrganization
3257
+ ,IfcPerson
3258
+ ,IfcPersonAndOrganization);
3259
+
3260
+ /** IfcAppliedValueSelect */
3261
+ export type IfcAppliedValueSelect = SELECT
3262
+ (IfcMeasureWithUnit
3263
+ ,IfcReference
3264
+ ,IfcValue);
3265
+
3266
+ /** IfcAxis2Placement */
3267
+ export type IfcAxis2Placement = SELECT
3268
+ (IfcAxis2Placement2D
3269
+ ,IfcAxis2Placement3D);
3270
+
3271
+ /** IfcBendingParameterSelect */
3272
+ export type IfcBendingParameterSelect = SELECT
3273
+ (IfcLengthMeasure
3274
+ ,IfcPlaneAngleMeasure);
3275
+
3276
+ /** IfcBooleanOperand */
3277
+ export type IfcBooleanOperand = SELECT
3278
+ (IfcBooleanResult
3279
+ ,IfcCsgPrimitive3D
3280
+ ,IfcHalfSpaceSolid
3281
+ ,IfcSolidModel
3282
+ ,IfcTessellatedFaceSet);
3283
+
3284
+ /** IfcClassificationReferenceSelect */
3285
+ export type IfcClassificationReferenceSelect = SELECT
3286
+ (IfcClassification
3287
+ ,IfcClassificationReference);
3288
+
3289
+ /** IfcClassificationSelect */
3290
+ export type IfcClassificationSelect = SELECT
3291
+ (IfcClassification
3292
+ ,IfcClassificationReference);
3293
+
3294
+ /** IfcColour */
3295
+ export type IfcColour = SELECT
3296
+ (IfcColourSpecification
3297
+ ,IfcPreDefinedColour);
3298
+
3299
+ /** IfcColourOrFactor */
3300
+ export type IfcColourOrFactor = SELECT
3301
+ (IfcColourRgb
3302
+ ,IfcNormalisedRatioMeasure);
3303
+
3304
+ /** IfcCoordinateReferenceSystemSelect */
3305
+ export type IfcCoordinateReferenceSystemSelect = SELECT
3306
+ (IfcCoordinateReferenceSystem
3307
+ ,IfcGeometricRepresentationContext);
3308
+
3309
+ /** IfcCsgSelect */
3310
+ export type IfcCsgSelect = SELECT
3311
+ (IfcBooleanResult
3312
+ ,IfcCsgPrimitive3D);
3313
+
3314
+ /** IfcCurveFontOrScaledCurveFontSelect */
3315
+ export type IfcCurveFontOrScaledCurveFontSelect = SELECT
3316
+ (IfcCurveStyleFontAndScaling
3317
+ ,IfcCurveStyleFontSelect);
3318
+
3319
+ /** IfcCurveMeasureSelect */
3320
+ export type IfcCurveMeasureSelect = SELECT
3321
+ (IfcLengthMeasure
3322
+ ,IfcParameterValue);
3323
+
3324
+ /** IfcCurveOnSurface */
3325
+ export type IfcCurveOnSurface = SELECT
3326
+ (IfcCompositeCurveOnSurface
3327
+ ,IfcPcurve
3328
+ ,IfcSurfaceCurve);
3329
+
3330
+ /** IfcCurveOrEdgeCurve */
3331
+ export type IfcCurveOrEdgeCurve = SELECT
3332
+ (IfcBoundedCurve
3333
+ ,IfcEdgeCurve);
3334
+
3335
+ /** IfcCurveStyleFontSelect */
3336
+ export type IfcCurveStyleFontSelect = SELECT
3337
+ (IfcCurveStyleFont
3338
+ ,IfcPreDefinedCurveFont);
3339
+
3340
+ /** IfcDefinitionSelect */
3341
+ export type IfcDefinitionSelect = SELECT
3342
+ (IfcObjectDefinition
3343
+ ,IfcPropertyDefinition);
3344
+
3345
+ /** IfcDerivedMeasureValue */
3346
+ export type IfcDerivedMeasureValue = SELECT
3347
+ (IfcAbsorbedDoseMeasure
3348
+ ,IfcAccelerationMeasure
3349
+ ,IfcAngularVelocityMeasure
3350
+ ,IfcAreaDensityMeasure
3351
+ ,IfcCompoundPlaneAngleMeasure
3352
+ ,IfcCurvatureMeasure
3353
+ ,IfcDoseEquivalentMeasure
3354
+ ,IfcDynamicViscosityMeasure
3355
+ ,IfcElectricCapacitanceMeasure
3356
+ ,IfcElectricChargeMeasure
3357
+ ,IfcElectricConductanceMeasure
3358
+ ,IfcElectricResistanceMeasure
3359
+ ,IfcElectricVoltageMeasure
3360
+ ,IfcEnergyMeasure
3361
+ ,IfcForceMeasure
3362
+ ,IfcFrequencyMeasure
3363
+ ,IfcHeatFluxDensityMeasure
3364
+ ,IfcHeatingValueMeasure
3365
+ ,IfcIlluminanceMeasure
3366
+ ,IfcInductanceMeasure
3367
+ ,IfcIntegerCountRateMeasure
3368
+ ,IfcIonConcentrationMeasure
3369
+ ,IfcIsothermalMoistureCapacityMeasure
3370
+ ,IfcKinematicViscosityMeasure
3371
+ ,IfcLinearForceMeasure
3372
+ ,IfcLinearMomentMeasure
3373
+ ,IfcLinearStiffnessMeasure
3374
+ ,IfcLinearVelocityMeasure
3375
+ ,IfcLuminousFluxMeasure
3376
+ ,IfcLuminousIntensityDistributionMeasure
3377
+ ,IfcMagneticFluxDensityMeasure
3378
+ ,IfcMagneticFluxMeasure
3379
+ ,IfcMassDensityMeasure
3380
+ ,IfcMassFlowRateMeasure
3381
+ ,IfcMassPerLengthMeasure
3382
+ ,IfcModulusOfElasticityMeasure
3383
+ ,IfcModulusOfLinearSubgradeReactionMeasure
3384
+ ,IfcModulusOfRotationalSubgradeReactionMeasure
3385
+ ,IfcModulusOfSubgradeReactionMeasure
3386
+ ,IfcMoistureDiffusivityMeasure
3387
+ ,IfcMolecularWeightMeasure
3388
+ ,IfcMomentOfInertiaMeasure
3389
+ ,IfcMonetaryMeasure
3390
+ ,IfcPHMeasure
3391
+ ,IfcPlanarForceMeasure
3392
+ ,IfcPowerMeasure
3393
+ ,IfcPressureMeasure
3394
+ ,IfcRadioActivityMeasure
3395
+ ,IfcRotationalFrequencyMeasure
3396
+ ,IfcRotationalMassMeasure
3397
+ ,IfcRotationalStiffnessMeasure
3398
+ ,IfcSectionModulusMeasure
3399
+ ,IfcSectionalAreaIntegralMeasure
3400
+ ,IfcShearModulusMeasure
3401
+ ,IfcSoundPowerLevelMeasure
3402
+ ,IfcSoundPowerMeasure
3403
+ ,IfcSoundPressureLevelMeasure
3404
+ ,IfcSoundPressureMeasure
3405
+ ,IfcSpecificHeatCapacityMeasure
3406
+ ,IfcTemperatureGradientMeasure
3407
+ ,IfcTemperatureRateOfChangeMeasure
3408
+ ,IfcThermalAdmittanceMeasure
3409
+ ,IfcThermalConductivityMeasure
3410
+ ,IfcThermalExpansionCoefficientMeasure
3411
+ ,IfcThermalResistanceMeasure
3412
+ ,IfcThermalTransmittanceMeasure
3413
+ ,IfcTorqueMeasure
3414
+ ,IfcVaporPermeabilityMeasure
3415
+ ,IfcVolumetricFlowRateMeasure
3416
+ ,IfcWarpingConstantMeasure
3417
+ ,IfcWarpingMomentMeasure);
3418
+
3419
+ /** IfcDocumentSelect */
3420
+ export type IfcDocumentSelect = SELECT
3421
+ (IfcDocumentInformation
3422
+ ,IfcDocumentReference);
3423
+
3424
+ /** IfcFillStyleSelect */
3425
+ export type IfcFillStyleSelect = SELECT
3426
+ (IfcColour
3427
+ ,IfcExternallyDefinedHatchStyle
3428
+ ,IfcFillAreaStyleHatching
3429
+ ,IfcFillAreaStyleTiles);
3430
+
3431
+ /** IfcGeometricSetSelect */
3432
+ export type IfcGeometricSetSelect = SELECT
3433
+ (IfcCurve
3434
+ ,IfcPoint
3435
+ ,IfcSurface);
3436
+
3437
+ /** IfcGridPlacementDirectionSelect */
3438
+ export type IfcGridPlacementDirectionSelect = SELECT
3439
+ (IfcDirection
3440
+ ,IfcVirtualGridIntersection);
3441
+
3442
+ /** IfcHatchLineDistanceSelect */
3443
+ export type IfcHatchLineDistanceSelect = SELECT
3444
+ (IfcPositiveLengthMeasure
3445
+ ,IfcVector);
3446
+
3447
+ /** IfcInterferenceSelect */
3448
+ export type IfcInterferenceSelect = SELECT
3449
+ (IfcElement
3450
+ ,IfcSpatialElement);
3451
+
3452
+ /** IfcLayeredItem */
3453
+ export type IfcLayeredItem = SELECT
3454
+ (IfcRepresentation
3455
+ ,IfcRepresentationItem);
3456
+
3457
+ /** IfcLibrarySelect */
3458
+ export type IfcLibrarySelect = SELECT
3459
+ (IfcLibraryInformation
3460
+ ,IfcLibraryReference);
3461
+
3462
+ /** IfcLightDistributionDataSourceSelect */
3463
+ export type IfcLightDistributionDataSourceSelect = SELECT
3464
+ (IfcExternalReference
3465
+ ,IfcLightIntensityDistribution);
3466
+
3467
+ /** IfcMaterialSelect */
3468
+ export type IfcMaterialSelect = SELECT
3469
+ (IfcMaterialDefinition
3470
+ ,IfcMaterialList
3471
+ ,IfcMaterialUsageDefinition);
3472
+
3473
+ /** IfcMeasureValue */
3474
+ export type IfcMeasureValue = SELECT
3475
+ (IfcAmountOfSubstanceMeasure
3476
+ ,IfcAreaMeasure
3477
+ ,IfcComplexNumber
3478
+ ,IfcContextDependentMeasure
3479
+ ,IfcCountMeasure
3480
+ ,IfcDescriptiveMeasure
3481
+ ,IfcElectricCurrentMeasure
3482
+ ,IfcLengthMeasure
3483
+ ,IfcLuminousIntensityMeasure
3484
+ ,IfcMassMeasure
3485
+ ,IfcNonNegativeLengthMeasure
3486
+ ,IfcNormalisedRatioMeasure
3487
+ ,IfcNumericMeasure
3488
+ ,IfcParameterValue
3489
+ ,IfcPlaneAngleMeasure
3490
+ ,IfcPositiveLengthMeasure
3491
+ ,IfcPositivePlaneAngleMeasure
3492
+ ,IfcPositiveRatioMeasure
3493
+ ,IfcRatioMeasure
3494
+ ,IfcSolidAngleMeasure
3495
+ ,IfcThermodynamicTemperatureMeasure
3496
+ ,IfcTimeMeasure
3497
+ ,IfcVolumeMeasure);
3498
+
3499
+ /** IfcMetricValueSelect */
3500
+ export type IfcMetricValueSelect = SELECT
3501
+ (IfcAppliedValue
3502
+ ,IfcMeasureWithUnit
3503
+ ,IfcReference
3504
+ ,IfcTable
3505
+ ,IfcTimeSeries
3506
+ ,IfcValue);
3507
+
3508
+ /** IfcModulusOfRotationalSubgradeReactionSelect */
3509
+ export type IfcModulusOfRotationalSubgradeReactionSelect = SELECT
3510
+ (IfcBoolean
3511
+ ,IfcModulusOfRotationalSubgradeReactionMeasure);
3512
+
3513
+ /** IfcModulusOfSubgradeReactionSelect */
3514
+ export type IfcModulusOfSubgradeReactionSelect = SELECT
3515
+ (IfcBoolean
3516
+ ,IfcModulusOfSubgradeReactionMeasure);
3517
+
3518
+ /** IfcModulusOfTranslationalSubgradeReactionSelect */
3519
+ export type IfcModulusOfTranslationalSubgradeReactionSelect = SELECT
3520
+ (IfcBoolean
3521
+ ,IfcModulusOfLinearSubgradeReactionMeasure);
3522
+
3523
+ /** IfcObjectReferenceSelect */
3524
+ export type IfcObjectReferenceSelect = SELECT
3525
+ (IfcAddress
3526
+ ,IfcAppliedValue
3527
+ ,IfcExternalReference
3528
+ ,IfcMaterialDefinition
3529
+ ,IfcOrganization
3530
+ ,IfcPerson
3531
+ ,IfcPersonAndOrganization
3532
+ ,IfcTable
3533
+ ,IfcTimeSeries);
3534
+
3535
+ /** IfcPointOrVertexPoint */
3536
+ export type IfcPointOrVertexPoint = SELECT
3537
+ (IfcPoint
3538
+ ,IfcVertexPoint);
3539
+
3540
+ /** IfcProcessSelect */
3541
+ export type IfcProcessSelect = SELECT
3542
+ (IfcProcess
3543
+ ,IfcTypeProcess);
3544
+
3545
+ /** IfcProductRepresentationSelect */
3546
+ export type IfcProductRepresentationSelect = SELECT
3547
+ (IfcProductDefinitionShape
3548
+ ,IfcRepresentationMap);
3549
+
3550
+ /** IfcProductSelect */
3551
+ export type IfcProductSelect = SELECT
3552
+ (IfcProduct
3553
+ ,IfcTypeProduct);
3554
+
3555
+ /** IfcPropertySetDefinitionSelect */
3556
+ export type IfcPropertySetDefinitionSelect = SELECT
3557
+ (IfcPropertySetDefinition
3558
+ ,IfcPropertySetDefinitionSet);
3559
+
3560
+ /** IfcResourceObjectSelect */
3561
+ export type IfcResourceObjectSelect = SELECT
3562
+ (IfcActorRole
3563
+ ,IfcAppliedValue
3564
+ ,IfcApproval
3565
+ ,IfcConstraint
3566
+ ,IfcContextDependentUnit
3567
+ ,IfcConversionBasedUnit
3568
+ ,IfcExternalInformation
3569
+ ,IfcExternalReference
3570
+ ,IfcMaterialDefinition
3571
+ ,IfcOrganization
3572
+ ,IfcPerson
3573
+ ,IfcPersonAndOrganization
3574
+ ,IfcPhysicalQuantity
3575
+ ,IfcProfileDef
3576
+ ,IfcPropertyAbstraction
3577
+ ,IfcShapeAspect
3578
+ ,IfcTimeSeries);
3579
+
3580
+ /** IfcResourceSelect */
3581
+ export type IfcResourceSelect = SELECT
3582
+ (IfcResource
3583
+ ,IfcTypeResource);
3584
+
3585
+ /** IfcRotationalStiffnessSelect */
3586
+ export type IfcRotationalStiffnessSelect = SELECT
3587
+ (IfcBoolean
3588
+ ,IfcRotationalStiffnessMeasure);
3589
+
3590
+ /** IfcSegmentIndexSelect */
3591
+ export type IfcSegmentIndexSelect = SELECT
3592
+ (IfcArcIndex
3593
+ ,IfcLineIndex);
3594
+
3595
+ /** IfcShell */
3596
+ export type IfcShell = SELECT
3597
+ (IfcClosedShell
3598
+ ,IfcOpenShell);
3599
+
3600
+ /** IfcSimpleValue */
3601
+ export type IfcSimpleValue = SELECT
3602
+ (IfcBinary
3603
+ ,IfcBoolean
3604
+ ,IfcDate
3605
+ ,IfcDateTime
3606
+ ,IfcDuration
3607
+ ,IfcIdentifier
3608
+ ,IfcInteger
3609
+ ,IfcLabel
3610
+ ,IfcLogical
3611
+ ,IfcPositiveInteger
3612
+ ,IfcReal
3613
+ ,IfcText
3614
+ ,IfcTime
3615
+ ,IfcTimeStamp
3616
+ ,IfcURIReference);
3617
+
3618
+ /** IfcSizeSelect */
3619
+ export type IfcSizeSelect = SELECT
3620
+ (IfcDescriptiveMeasure
3621
+ ,IfcLengthMeasure
3622
+ ,IfcNormalisedRatioMeasure
3623
+ ,IfcPositiveLengthMeasure
3624
+ ,IfcPositiveRatioMeasure
3625
+ ,IfcRatioMeasure);
3626
+
3627
+ /** IfcSolidOrShell */
3628
+ export type IfcSolidOrShell = SELECT
3629
+ (IfcClosedShell
3630
+ ,IfcSolidModel);
3631
+
3632
+ /** IfcSpaceBoundarySelect */
3633
+ export type IfcSpaceBoundarySelect = SELECT
3634
+ (IfcExternalSpatialElement
3635
+ ,IfcSpace);
3636
+
3637
+ /** IfcSpatialReferenceSelect */
3638
+ export type IfcSpatialReferenceSelect = SELECT
3639
+ (IfcGroup
3640
+ ,IfcProduct);
3641
+
3642
+ /** IfcSpecularHighlightSelect */
3643
+ export type IfcSpecularHighlightSelect = SELECT
3644
+ (IfcSpecularExponent
3645
+ ,IfcSpecularRoughness);
3646
+
3647
+ /** IfcStructuralActivityAssignmentSelect */
3648
+ export type IfcStructuralActivityAssignmentSelect = SELECT
3649
+ (IfcElement
3650
+ ,IfcStructuralItem);
3651
+
3652
+ /** IfcSurfaceOrFaceSurface */
3653
+ export type IfcSurfaceOrFaceSurface = SELECT
3654
+ (IfcFaceBasedSurfaceModel
3655
+ ,IfcFaceSurface
3656
+ ,IfcSurface);
3657
+
3658
+ /** IfcSurfaceStyleElementSelect */
3659
+ export type IfcSurfaceStyleElementSelect = SELECT
3660
+ (IfcExternallyDefinedSurfaceStyle
3661
+ ,IfcSurfaceStyleLighting
3662
+ ,IfcSurfaceStyleRefraction
3663
+ ,IfcSurfaceStyleShading
3664
+ ,IfcSurfaceStyleWithTextures);
3665
+
3666
+ /** IfcTextFontSelect */
3667
+ export type IfcTextFontSelect = SELECT
3668
+ (IfcExternallyDefinedTextFont
3669
+ ,IfcPreDefinedTextFont);
3670
+
3671
+ /** IfcTimeOrRatioSelect */
3672
+ export type IfcTimeOrRatioSelect = SELECT
3673
+ (IfcDuration
3674
+ ,IfcRatioMeasure);
3675
+
3676
+ /** IfcTranslationalStiffnessSelect */
3677
+ export type IfcTranslationalStiffnessSelect = SELECT
3678
+ (IfcBoolean
3679
+ ,IfcLinearStiffnessMeasure);
3680
+
3681
+ /** IfcTrimmingSelect */
3682
+ export type IfcTrimmingSelect = SELECT
3683
+ (IfcCartesianPoint
3684
+ ,IfcParameterValue);
3685
+
3686
+ /** IfcUnit */
3687
+ export type IfcUnit = SELECT
3688
+ (IfcDerivedUnit
3689
+ ,IfcMonetaryUnit
3690
+ ,IfcNamedUnit);
3691
+
3692
+ /** IfcValue */
3693
+ export type IfcValue = SELECT
3694
+ (IfcDerivedMeasureValue
3695
+ ,IfcMeasureValue
3696
+ ,IfcSimpleValue);
3697
+
3698
+ /** IfcVectorOrDirection */
3699
+ export type IfcVectorOrDirection = SELECT
3700
+ (IfcDirection
3701
+ ,IfcVector);
3702
+
3703
+ /** IfcWarpingStiffnessSelect */
3704
+ export type IfcWarpingStiffnessSelect = SELECT
3705
+ (IfcBoolean
3706
+ ,IfcWarpingMomentMeasure);
3707
+