2022-12-26 11:29:32 +01:00
|
|
|
import ifcopenshell
|
|
|
|
|
|
|
|
|
|
def exists(v):
|
|
|
|
|
if callable(v):
|
2023-02-14 10:03:42 +01:00
|
|
|
try:
|
|
|
|
|
return v() is not None
|
|
|
|
|
except IndexError as e:
|
|
|
|
|
return False
|
|
|
|
|
else:
|
|
|
|
|
return v is not None
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def nvl(v, default):
|
|
|
|
|
return v if v is not None else default
|
2023-03-11 20:44:11 +01:00
|
|
|
|
|
|
|
|
def is_entity(inst):
|
|
|
|
|
if isinstance(inst, ifcopenshell.entity_instance):
|
|
|
|
|
schema_name = inst.is_a(True).split('.')[0].lower()
|
|
|
|
|
decl = ifcopenshell.ifcopenshell_wrapper.schema_by_name(schema_name).declaration_by_name(inst.is_a())
|
|
|
|
|
return isinstance(decl, ifcopenshell.ifcopenshell_wrapper.entity)
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
def express_len(v):
|
|
|
|
|
if isinstance(v, ifcopenshell.entity_instance) and (not is_entity(v)):
|
|
|
|
|
v = v[0]
|
|
|
|
|
elif v is None or v is INDETERMINATE:
|
|
|
|
|
return INDETERMINATE
|
|
|
|
|
return len(v)
|
|
|
|
|
old_range = range
|
|
|
|
|
|
|
|
|
|
def range(*args):
|
|
|
|
|
if INDETERMINATE in args:
|
|
|
|
|
return
|
|
|
|
|
yield from old_range(*args)
|
|
|
|
|
sizeof = express_len
|
|
|
|
|
hiindex = express_len
|
|
|
|
|
blength = express_len
|
2022-12-26 11:29:32 +01:00
|
|
|
loindex = lambda x: 1
|
|
|
|
|
from math import *
|
|
|
|
|
unknown = 'UNKNOWN'
|
|
|
|
|
|
|
|
|
|
def usedin(inst, ref_name):
|
|
|
|
|
if inst is None:
|
|
|
|
|
return []
|
2023-02-14 10:03:42 +01:00
|
|
|
(_, __, attr) = ref_name.split('.')
|
|
|
|
|
|
2022-12-26 11:29:32 +01:00
|
|
|
def filter():
|
2023-02-14 10:03:42 +01:00
|
|
|
for (ref, attr_idx) in inst.wrapped_data.file.get_inverse(inst, allow_duplicate=True, with_attribute_indices=True):
|
2022-12-26 11:29:32 +01:00
|
|
|
if ref.wrapped_data.get_attribute_names()[attr_idx].lower() == attr:
|
|
|
|
|
yield ref
|
|
|
|
|
return list(filter())
|
|
|
|
|
|
|
|
|
|
class express_set(set):
|
2023-02-14 10:03:42 +01:00
|
|
|
|
2023-01-13 12:12:26 +01:00
|
|
|
def __mul__(self, other):
|
2022-12-26 11:29:32 +01:00
|
|
|
return express_set(set(other) & self)
|
2023-01-13 12:12:26 +01:00
|
|
|
__rmul__ = __mul__
|
2023-02-14 10:03:42 +01:00
|
|
|
|
2022-12-26 11:29:32 +01:00
|
|
|
def __add__(self, other):
|
2023-02-14 10:03:42 +01:00
|
|
|
|
2022-12-26 11:29:32 +01:00
|
|
|
def make_list(v):
|
|
|
|
|
if isinstance(v, (list, tuple, set, express_set)):
|
|
|
|
|
return list(v)
|
|
|
|
|
else:
|
|
|
|
|
return [v]
|
|
|
|
|
return express_set(list(self) + make_list(other))
|
|
|
|
|
__radd__ = __add__
|
2023-02-14 10:03:42 +01:00
|
|
|
|
2022-12-26 11:29:32 +01:00
|
|
|
def __repr__(self):
|
|
|
|
|
return repr(set(self))
|
2023-02-14 10:03:42 +01:00
|
|
|
|
2023-02-03 22:22:40 +01:00
|
|
|
def __getitem__(self, k):
|
2023-02-14 10:03:42 +01:00
|
|
|
return express_getitem(list(self), k, INDETERMINATE)
|
|
|
|
|
|
|
|
|
|
def express_getitem(aggr, idx, default):
|
|
|
|
|
if aggr is None:
|
|
|
|
|
return default
|
2023-03-11 20:44:11 +01:00
|
|
|
if isinstance(aggr, ifcopenshell.entity_instance) and (not is_entity(aggr)):
|
|
|
|
|
aggr = aggr[0]
|
2023-02-14 10:03:42 +01:00
|
|
|
try:
|
|
|
|
|
return aggr[idx]
|
|
|
|
|
except IndexError as e:
|
|
|
|
|
return None
|
2025-12-24 15:33:36 +01:00
|
|
|
|
|
|
|
|
def express_getattr(aggr, name, default):
|
|
|
|
|
v = getattr(aggr, name, default)
|
|
|
|
|
if v is None:
|
|
|
|
|
return default
|
|
|
|
|
else:
|
|
|
|
|
return v
|
2023-02-14 10:03:42 +01:00
|
|
|
EXPRESS_ONE_BASED_INDEXING = 1
|
2022-12-26 11:29:32 +01:00
|
|
|
|
|
|
|
|
def typeof(inst):
|
|
|
|
|
if not inst:
|
|
|
|
|
return express_set([])
|
|
|
|
|
schema_name = inst.is_a(True).split('.')[0].lower()
|
2023-02-14 10:03:42 +01:00
|
|
|
|
2022-12-26 11:29:32 +01:00
|
|
|
def inner():
|
|
|
|
|
decl = ifcopenshell.ifcopenshell_wrapper.schema_by_name(schema_name).declaration_by_name(inst.is_a())
|
|
|
|
|
while decl:
|
|
|
|
|
yield '.'.join((schema_name, decl.name().lower()))
|
2023-01-11 13:38:12 +01:00
|
|
|
if isinstance(decl, ifcopenshell.ifcopenshell_wrapper.entity):
|
|
|
|
|
decl = decl.supertype()
|
|
|
|
|
else:
|
|
|
|
|
decl = decl.declared_type()
|
|
|
|
|
while isinstance(decl, ifcopenshell.ifcopenshell_wrapper.named_type):
|
|
|
|
|
decl = decl.declared_type()
|
|
|
|
|
if not isinstance(decl, ifcopenshell.ifcopenshell_wrapper.type_declaration):
|
|
|
|
|
break
|
2022-12-26 11:29:32 +01:00
|
|
|
return express_set(inner())
|
|
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class indeterminate_type:
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def __bool__(self):
|
|
|
|
|
return False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def bop(self, *other):
|
|
|
|
|
return self
|
|
|
|
|
__lt__ = bop
|
|
|
|
|
__le__ = bop
|
|
|
|
|
__eq__ = bop
|
|
|
|
|
__ne__ = bop
|
|
|
|
|
__gt__ = bop
|
|
|
|
|
__ge__ = bop
|
|
|
|
|
__add__ = bop
|
|
|
|
|
__radd__ = bop
|
|
|
|
|
__sub__ = bop
|
|
|
|
|
__rsub__ = bop
|
|
|
|
|
__mul__ = bop
|
|
|
|
|
__rmul__ = bop
|
|
|
|
|
__truediv__ = bop
|
|
|
|
|
__floordiv__ = bop
|
|
|
|
|
__rtruediv__ = bop
|
|
|
|
|
__rfloordiv__ = bop
|
|
|
|
|
__mod__ = bop
|
|
|
|
|
__rmod__ = bop
|
|
|
|
|
__pow__ = bop
|
|
|
|
|
__rpow__ = bop
|
|
|
|
|
__neg__ = bop
|
|
|
|
|
__pos__ = bop
|
|
|
|
|
__getitem__ = bop
|
|
|
|
|
__getattr__ = bop
|
2024-12-18 11:45:47 +01:00
|
|
|
|
|
|
|
|
def __iter__(self):
|
|
|
|
|
return iter(())
|
2023-02-14 10:03:42 +01:00
|
|
|
INDETERMINATE = indeterminate_type()
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class enum_namespace:
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def __getattr__(self, k):
|
2025-12-24 15:33:36 +01:00
|
|
|
return express_getattr(k, 'upper', INDETERMINATE)()
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcActionSourceTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
dead_load_g = express_getattr(IfcActionSourceTypeEnum, 'DEAD_LOAD_G', INDETERMINATE)
|
|
|
|
|
completion_g1 = express_getattr(IfcActionSourceTypeEnum, 'COMPLETION_G1', INDETERMINATE)
|
|
|
|
|
live_load_q = express_getattr(IfcActionSourceTypeEnum, 'LIVE_LOAD_Q', INDETERMINATE)
|
|
|
|
|
snow_s = express_getattr(IfcActionSourceTypeEnum, 'SNOW_S', INDETERMINATE)
|
|
|
|
|
wind_w = express_getattr(IfcActionSourceTypeEnum, 'WIND_W', INDETERMINATE)
|
|
|
|
|
prestressing_p = express_getattr(IfcActionSourceTypeEnum, 'PRESTRESSING_P', INDETERMINATE)
|
|
|
|
|
settlement_u = express_getattr(IfcActionSourceTypeEnum, 'SETTLEMENT_U', INDETERMINATE)
|
|
|
|
|
temperature_t = express_getattr(IfcActionSourceTypeEnum, 'TEMPERATURE_T', INDETERMINATE)
|
|
|
|
|
earthquake_e = express_getattr(IfcActionSourceTypeEnum, 'EARTHQUAKE_E', INDETERMINATE)
|
|
|
|
|
fire = express_getattr(IfcActionSourceTypeEnum, 'FIRE', INDETERMINATE)
|
|
|
|
|
impulse = express_getattr(IfcActionSourceTypeEnum, 'IMPULSE', INDETERMINATE)
|
|
|
|
|
impact = express_getattr(IfcActionSourceTypeEnum, 'IMPACT', INDETERMINATE)
|
|
|
|
|
transport = express_getattr(IfcActionSourceTypeEnum, 'TRANSPORT', INDETERMINATE)
|
|
|
|
|
erection = express_getattr(IfcActionSourceTypeEnum, 'ERECTION', INDETERMINATE)
|
|
|
|
|
propping = express_getattr(IfcActionSourceTypeEnum, 'PROPPING', INDETERMINATE)
|
|
|
|
|
system_imperfection = express_getattr(IfcActionSourceTypeEnum, 'SYSTEM_IMPERFECTION', INDETERMINATE)
|
|
|
|
|
shrinkage = express_getattr(IfcActionSourceTypeEnum, 'SHRINKAGE', INDETERMINATE)
|
|
|
|
|
creep = express_getattr(IfcActionSourceTypeEnum, 'CREEP', INDETERMINATE)
|
|
|
|
|
lack_of_fit = express_getattr(IfcActionSourceTypeEnum, 'LACK_OF_FIT', INDETERMINATE)
|
|
|
|
|
buoyancy = express_getattr(IfcActionSourceTypeEnum, 'BUOYANCY', INDETERMINATE)
|
|
|
|
|
ice = express_getattr(IfcActionSourceTypeEnum, 'ICE', INDETERMINATE)
|
|
|
|
|
current = express_getattr(IfcActionSourceTypeEnum, 'CURRENT', INDETERMINATE)
|
|
|
|
|
wave = express_getattr(IfcActionSourceTypeEnum, 'WAVE', INDETERMINATE)
|
|
|
|
|
rain = express_getattr(IfcActionSourceTypeEnum, 'RAIN', INDETERMINATE)
|
|
|
|
|
brakes = express_getattr(IfcActionSourceTypeEnum, 'BRAKES', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcActionSourceTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcActionSourceTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcActionTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
permanent_g = express_getattr(IfcActionTypeEnum, 'PERMANENT_G', INDETERMINATE)
|
|
|
|
|
variable_q = express_getattr(IfcActionTypeEnum, 'VARIABLE_Q', INDETERMINATE)
|
|
|
|
|
extraordinary_a = express_getattr(IfcActionTypeEnum, 'EXTRAORDINARY_A', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcActionTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcActionTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcActuatorTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
electricactuator = express_getattr(IfcActuatorTypeEnum, 'ELECTRICACTUATOR', INDETERMINATE)
|
|
|
|
|
handoperatedactuator = express_getattr(IfcActuatorTypeEnum, 'HANDOPERATEDACTUATOR', INDETERMINATE)
|
|
|
|
|
hydraulicactuator = express_getattr(IfcActuatorTypeEnum, 'HYDRAULICACTUATOR', INDETERMINATE)
|
|
|
|
|
pneumaticactuator = express_getattr(IfcActuatorTypeEnum, 'PNEUMATICACTUATOR', INDETERMINATE)
|
|
|
|
|
thermostaticactuator = express_getattr(IfcActuatorTypeEnum, 'THERMOSTATICACTUATOR', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcActuatorTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcActuatorTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcAddressTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
office = express_getattr(IfcAddressTypeEnum, 'OFFICE', INDETERMINATE)
|
|
|
|
|
site = express_getattr(IfcAddressTypeEnum, 'SITE', INDETERMINATE)
|
|
|
|
|
home = express_getattr(IfcAddressTypeEnum, 'HOME', INDETERMINATE)
|
|
|
|
|
distributionpoint = express_getattr(IfcAddressTypeEnum, 'DISTRIBUTIONPOINT', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcAddressTypeEnum, 'USERDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcAheadOrBehind = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
ahead = express_getattr(IfcAheadOrBehind, 'AHEAD', INDETERMINATE)
|
|
|
|
|
behind = express_getattr(IfcAheadOrBehind, 'BEHIND', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcAirTerminalBoxTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
constantflow = express_getattr(IfcAirTerminalBoxTypeEnum, 'CONSTANTFLOW', INDETERMINATE)
|
|
|
|
|
variableflowpressuredependant = express_getattr(IfcAirTerminalBoxTypeEnum, 'VARIABLEFLOWPRESSUREDEPENDANT', INDETERMINATE)
|
|
|
|
|
variableflowpressureindependant = express_getattr(IfcAirTerminalBoxTypeEnum, 'VARIABLEFLOWPRESSUREINDEPENDANT', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcAirTerminalBoxTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcAirTerminalBoxTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcAirTerminalTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
grille = express_getattr(IfcAirTerminalTypeEnum, 'GRILLE', INDETERMINATE)
|
|
|
|
|
register = express_getattr(IfcAirTerminalTypeEnum, 'REGISTER', INDETERMINATE)
|
|
|
|
|
diffuser = express_getattr(IfcAirTerminalTypeEnum, 'DIFFUSER', INDETERMINATE)
|
|
|
|
|
eyeball = express_getattr(IfcAirTerminalTypeEnum, 'EYEBALL', INDETERMINATE)
|
|
|
|
|
iris = express_getattr(IfcAirTerminalTypeEnum, 'IRIS', INDETERMINATE)
|
|
|
|
|
lineargrille = express_getattr(IfcAirTerminalTypeEnum, 'LINEARGRILLE', INDETERMINATE)
|
|
|
|
|
lineardiffuser = express_getattr(IfcAirTerminalTypeEnum, 'LINEARDIFFUSER', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcAirTerminalTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcAirTerminalTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcAirToAirHeatRecoveryTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
fixedplatecounterflowexchanger = express_getattr(IfcAirToAirHeatRecoveryTypeEnum, 'FIXEDPLATECOUNTERFLOWEXCHANGER', INDETERMINATE)
|
|
|
|
|
fixedplatecrossflowexchanger = express_getattr(IfcAirToAirHeatRecoveryTypeEnum, 'FIXEDPLATECROSSFLOWEXCHANGER', INDETERMINATE)
|
|
|
|
|
fixedplateparallelflowexchanger = express_getattr(IfcAirToAirHeatRecoveryTypeEnum, 'FIXEDPLATEPARALLELFLOWEXCHANGER', INDETERMINATE)
|
|
|
|
|
rotarywheel = express_getattr(IfcAirToAirHeatRecoveryTypeEnum, 'ROTARYWHEEL', INDETERMINATE)
|
|
|
|
|
runaroundcoilloop = express_getattr(IfcAirToAirHeatRecoveryTypeEnum, 'RUNAROUNDCOILLOOP', INDETERMINATE)
|
|
|
|
|
heatpipe = express_getattr(IfcAirToAirHeatRecoveryTypeEnum, 'HEATPIPE', INDETERMINATE)
|
|
|
|
|
twintowerenthalpyrecoveryloops = express_getattr(IfcAirToAirHeatRecoveryTypeEnum, 'TWINTOWERENTHALPYRECOVERYLOOPS', INDETERMINATE)
|
|
|
|
|
thermosiphonsealedtubeheatexchangers = express_getattr(IfcAirToAirHeatRecoveryTypeEnum, 'THERMOSIPHONSEALEDTUBEHEATEXCHANGERS', INDETERMINATE)
|
|
|
|
|
thermosiphoncoiltypeheatexchangers = express_getattr(IfcAirToAirHeatRecoveryTypeEnum, 'THERMOSIPHONCOILTYPEHEATEXCHANGERS', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcAirToAirHeatRecoveryTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcAirToAirHeatRecoveryTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcAlarmTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
bell = express_getattr(IfcAlarmTypeEnum, 'BELL', INDETERMINATE)
|
|
|
|
|
breakglassbutton = express_getattr(IfcAlarmTypeEnum, 'BREAKGLASSBUTTON', INDETERMINATE)
|
|
|
|
|
light = express_getattr(IfcAlarmTypeEnum, 'LIGHT', INDETERMINATE)
|
|
|
|
|
manualpullbox = express_getattr(IfcAlarmTypeEnum, 'MANUALPULLBOX', INDETERMINATE)
|
|
|
|
|
siren = express_getattr(IfcAlarmTypeEnum, 'SIREN', INDETERMINATE)
|
|
|
|
|
whistle = express_getattr(IfcAlarmTypeEnum, 'WHISTLE', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcAlarmTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcAlarmTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcAnalysisModelTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
in_plane_loading_2d = express_getattr(IfcAnalysisModelTypeEnum, 'IN_PLANE_LOADING_2D', INDETERMINATE)
|
|
|
|
|
out_plane_loading_2d = express_getattr(IfcAnalysisModelTypeEnum, 'OUT_PLANE_LOADING_2D', INDETERMINATE)
|
|
|
|
|
loading_3d = express_getattr(IfcAnalysisModelTypeEnum, 'LOADING_3D', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcAnalysisModelTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcAnalysisModelTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcAnalysisTheoryTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
first_order_theory = express_getattr(IfcAnalysisTheoryTypeEnum, 'FIRST_ORDER_THEORY', INDETERMINATE)
|
|
|
|
|
second_order_theory = express_getattr(IfcAnalysisTheoryTypeEnum, 'SECOND_ORDER_THEORY', INDETERMINATE)
|
|
|
|
|
third_order_theory = express_getattr(IfcAnalysisTheoryTypeEnum, 'THIRD_ORDER_THEORY', INDETERMINATE)
|
|
|
|
|
full_nonlinear_theory = express_getattr(IfcAnalysisTheoryTypeEnum, 'FULL_NONLINEAR_THEORY', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcAnalysisTheoryTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcAnalysisTheoryTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcArithmeticOperatorEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
add = express_getattr(IfcArithmeticOperatorEnum, 'ADD', INDETERMINATE)
|
|
|
|
|
divide = express_getattr(IfcArithmeticOperatorEnum, 'DIVIDE', INDETERMINATE)
|
|
|
|
|
multiply = express_getattr(IfcArithmeticOperatorEnum, 'MULTIPLY', INDETERMINATE)
|
|
|
|
|
subtract = express_getattr(IfcArithmeticOperatorEnum, 'SUBTRACT', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcAssemblyPlaceEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
site = express_getattr(IfcAssemblyPlaceEnum, 'SITE', INDETERMINATE)
|
|
|
|
|
factory = express_getattr(IfcAssemblyPlaceEnum, 'FACTORY', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcAssemblyPlaceEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcBSplineCurveForm = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
polyline_form = express_getattr(IfcBSplineCurveForm, 'POLYLINE_FORM', INDETERMINATE)
|
|
|
|
|
circular_arc = express_getattr(IfcBSplineCurveForm, 'CIRCULAR_ARC', INDETERMINATE)
|
|
|
|
|
elliptic_arc = express_getattr(IfcBSplineCurveForm, 'ELLIPTIC_ARC', INDETERMINATE)
|
|
|
|
|
parabolic_arc = express_getattr(IfcBSplineCurveForm, 'PARABOLIC_ARC', INDETERMINATE)
|
|
|
|
|
hyperbolic_arc = express_getattr(IfcBSplineCurveForm, 'HYPERBOLIC_ARC', INDETERMINATE)
|
|
|
|
|
unspecified = express_getattr(IfcBSplineCurveForm, 'UNSPECIFIED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcBeamTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
beam = express_getattr(IfcBeamTypeEnum, 'BEAM', INDETERMINATE)
|
|
|
|
|
joist = express_getattr(IfcBeamTypeEnum, 'JOIST', INDETERMINATE)
|
|
|
|
|
lintel = express_getattr(IfcBeamTypeEnum, 'LINTEL', INDETERMINATE)
|
|
|
|
|
t_beam = express_getattr(IfcBeamTypeEnum, 'T_BEAM', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcBeamTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcBeamTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcBenchmarkEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
greaterthan = express_getattr(IfcBenchmarkEnum, 'GREATERTHAN', INDETERMINATE)
|
|
|
|
|
greaterthanorequalto = express_getattr(IfcBenchmarkEnum, 'GREATERTHANOREQUALTO', INDETERMINATE)
|
|
|
|
|
lessthan = express_getattr(IfcBenchmarkEnum, 'LESSTHAN', INDETERMINATE)
|
|
|
|
|
lessthanorequalto = express_getattr(IfcBenchmarkEnum, 'LESSTHANOREQUALTO', INDETERMINATE)
|
|
|
|
|
equalto = express_getattr(IfcBenchmarkEnum, 'EQUALTO', INDETERMINATE)
|
|
|
|
|
notequalto = express_getattr(IfcBenchmarkEnum, 'NOTEQUALTO', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcBoilerTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
water = express_getattr(IfcBoilerTypeEnum, 'WATER', INDETERMINATE)
|
|
|
|
|
steam = express_getattr(IfcBoilerTypeEnum, 'STEAM', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcBoilerTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcBoilerTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcBooleanOperator = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
union = express_getattr(IfcBooleanOperator, 'UNION', INDETERMINATE)
|
|
|
|
|
intersection = express_getattr(IfcBooleanOperator, 'INTERSECTION', INDETERMINATE)
|
|
|
|
|
difference = express_getattr(IfcBooleanOperator, 'DIFFERENCE', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcBuildingElementProxyTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
userdefined = express_getattr(IfcBuildingElementProxyTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcBuildingElementProxyTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcCableCarrierFittingTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
bend = express_getattr(IfcCableCarrierFittingTypeEnum, 'BEND', INDETERMINATE)
|
|
|
|
|
cross = express_getattr(IfcCableCarrierFittingTypeEnum, 'CROSS', INDETERMINATE)
|
|
|
|
|
reducer = express_getattr(IfcCableCarrierFittingTypeEnum, 'REDUCER', INDETERMINATE)
|
|
|
|
|
tee = express_getattr(IfcCableCarrierFittingTypeEnum, 'TEE', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcCableCarrierFittingTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcCableCarrierFittingTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcCableCarrierSegmentTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
cableladdersegment = express_getattr(IfcCableCarrierSegmentTypeEnum, 'CABLELADDERSEGMENT', INDETERMINATE)
|
|
|
|
|
cabletraysegment = express_getattr(IfcCableCarrierSegmentTypeEnum, 'CABLETRAYSEGMENT', INDETERMINATE)
|
|
|
|
|
cabletrunkingsegment = express_getattr(IfcCableCarrierSegmentTypeEnum, 'CABLETRUNKINGSEGMENT', INDETERMINATE)
|
|
|
|
|
conduitsegment = express_getattr(IfcCableCarrierSegmentTypeEnum, 'CONDUITSEGMENT', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcCableCarrierSegmentTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcCableCarrierSegmentTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcCableSegmentTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
cablesegment = express_getattr(IfcCableSegmentTypeEnum, 'CABLESEGMENT', INDETERMINATE)
|
|
|
|
|
conductorsegment = express_getattr(IfcCableSegmentTypeEnum, 'CONDUCTORSEGMENT', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcCableSegmentTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcCableSegmentTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcChangeActionEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
nochange = express_getattr(IfcChangeActionEnum, 'NOCHANGE', INDETERMINATE)
|
|
|
|
|
modified = express_getattr(IfcChangeActionEnum, 'MODIFIED', INDETERMINATE)
|
|
|
|
|
added = express_getattr(IfcChangeActionEnum, 'ADDED', INDETERMINATE)
|
|
|
|
|
deleted = express_getattr(IfcChangeActionEnum, 'DELETED', INDETERMINATE)
|
|
|
|
|
modifiedadded = express_getattr(IfcChangeActionEnum, 'MODIFIEDADDED', INDETERMINATE)
|
|
|
|
|
modifieddeleted = express_getattr(IfcChangeActionEnum, 'MODIFIEDDELETED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcChillerTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
aircooled = express_getattr(IfcChillerTypeEnum, 'AIRCOOLED', INDETERMINATE)
|
|
|
|
|
watercooled = express_getattr(IfcChillerTypeEnum, 'WATERCOOLED', INDETERMINATE)
|
|
|
|
|
heatrecovery = express_getattr(IfcChillerTypeEnum, 'HEATRECOVERY', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcChillerTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcChillerTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcCoilTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
dxcoolingcoil = express_getattr(IfcCoilTypeEnum, 'DXCOOLINGCOIL', INDETERMINATE)
|
|
|
|
|
watercoolingcoil = express_getattr(IfcCoilTypeEnum, 'WATERCOOLINGCOIL', INDETERMINATE)
|
|
|
|
|
steamheatingcoil = express_getattr(IfcCoilTypeEnum, 'STEAMHEATINGCOIL', INDETERMINATE)
|
|
|
|
|
waterheatingcoil = express_getattr(IfcCoilTypeEnum, 'WATERHEATINGCOIL', INDETERMINATE)
|
|
|
|
|
electricheatingcoil = express_getattr(IfcCoilTypeEnum, 'ELECTRICHEATINGCOIL', INDETERMINATE)
|
|
|
|
|
gasheatingcoil = express_getattr(IfcCoilTypeEnum, 'GASHEATINGCOIL', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcCoilTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcCoilTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcColumnTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
column = express_getattr(IfcColumnTypeEnum, 'COLUMN', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcColumnTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcColumnTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcCompressorTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
dynamic = express_getattr(IfcCompressorTypeEnum, 'DYNAMIC', INDETERMINATE)
|
|
|
|
|
reciprocating = express_getattr(IfcCompressorTypeEnum, 'RECIPROCATING', INDETERMINATE)
|
|
|
|
|
rotary = express_getattr(IfcCompressorTypeEnum, 'ROTARY', INDETERMINATE)
|
|
|
|
|
scroll = express_getattr(IfcCompressorTypeEnum, 'SCROLL', INDETERMINATE)
|
|
|
|
|
trochoidal = express_getattr(IfcCompressorTypeEnum, 'TROCHOIDAL', INDETERMINATE)
|
|
|
|
|
singlestage = express_getattr(IfcCompressorTypeEnum, 'SINGLESTAGE', INDETERMINATE)
|
|
|
|
|
booster = express_getattr(IfcCompressorTypeEnum, 'BOOSTER', INDETERMINATE)
|
|
|
|
|
opentype = express_getattr(IfcCompressorTypeEnum, 'OPENTYPE', INDETERMINATE)
|
|
|
|
|
hermetic = express_getattr(IfcCompressorTypeEnum, 'HERMETIC', INDETERMINATE)
|
|
|
|
|
semihermetic = express_getattr(IfcCompressorTypeEnum, 'SEMIHERMETIC', INDETERMINATE)
|
|
|
|
|
weldedshellhermetic = express_getattr(IfcCompressorTypeEnum, 'WELDEDSHELLHERMETIC', INDETERMINATE)
|
|
|
|
|
rollingpiston = express_getattr(IfcCompressorTypeEnum, 'ROLLINGPISTON', INDETERMINATE)
|
|
|
|
|
rotaryvane = express_getattr(IfcCompressorTypeEnum, 'ROTARYVANE', INDETERMINATE)
|
|
|
|
|
singlescrew = express_getattr(IfcCompressorTypeEnum, 'SINGLESCREW', INDETERMINATE)
|
|
|
|
|
twinscrew = express_getattr(IfcCompressorTypeEnum, 'TWINSCREW', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcCompressorTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcCompressorTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcCondenserTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
watercooledshelltube = express_getattr(IfcCondenserTypeEnum, 'WATERCOOLEDSHELLTUBE', INDETERMINATE)
|
|
|
|
|
watercooledshellcoil = express_getattr(IfcCondenserTypeEnum, 'WATERCOOLEDSHELLCOIL', INDETERMINATE)
|
|
|
|
|
watercooledtubeintube = express_getattr(IfcCondenserTypeEnum, 'WATERCOOLEDTUBEINTUBE', INDETERMINATE)
|
|
|
|
|
watercooledbrazedplate = express_getattr(IfcCondenserTypeEnum, 'WATERCOOLEDBRAZEDPLATE', INDETERMINATE)
|
|
|
|
|
aircooled = express_getattr(IfcCondenserTypeEnum, 'AIRCOOLED', INDETERMINATE)
|
|
|
|
|
evaporativecooled = express_getattr(IfcCondenserTypeEnum, 'EVAPORATIVECOOLED', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcCondenserTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcCondenserTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcConnectionTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
atpath = express_getattr(IfcConnectionTypeEnum, 'ATPATH', INDETERMINATE)
|
|
|
|
|
atstart = express_getattr(IfcConnectionTypeEnum, 'ATSTART', INDETERMINATE)
|
|
|
|
|
atend = express_getattr(IfcConnectionTypeEnum, 'ATEND', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcConnectionTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcConstraintEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
hard = express_getattr(IfcConstraintEnum, 'HARD', INDETERMINATE)
|
|
|
|
|
soft = express_getattr(IfcConstraintEnum, 'SOFT', INDETERMINATE)
|
|
|
|
|
advisory = express_getattr(IfcConstraintEnum, 'ADVISORY', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcConstraintEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcConstraintEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcControllerTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
floating = express_getattr(IfcControllerTypeEnum, 'FLOATING', INDETERMINATE)
|
|
|
|
|
proportional = express_getattr(IfcControllerTypeEnum, 'PROPORTIONAL', INDETERMINATE)
|
|
|
|
|
proportionalintegral = express_getattr(IfcControllerTypeEnum, 'PROPORTIONALINTEGRAL', INDETERMINATE)
|
|
|
|
|
proportionalintegralderivative = express_getattr(IfcControllerTypeEnum, 'PROPORTIONALINTEGRALDERIVATIVE', INDETERMINATE)
|
|
|
|
|
timedtwoposition = express_getattr(IfcControllerTypeEnum, 'TIMEDTWOPOSITION', INDETERMINATE)
|
|
|
|
|
twoposition = express_getattr(IfcControllerTypeEnum, 'TWOPOSITION', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcControllerTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcControllerTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcCooledBeamTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
active = express_getattr(IfcCooledBeamTypeEnum, 'ACTIVE', INDETERMINATE)
|
|
|
|
|
passive = express_getattr(IfcCooledBeamTypeEnum, 'PASSIVE', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcCooledBeamTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcCooledBeamTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcCoolingTowerTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
naturaldraft = express_getattr(IfcCoolingTowerTypeEnum, 'NATURALDRAFT', INDETERMINATE)
|
|
|
|
|
mechanicalinduceddraft = express_getattr(IfcCoolingTowerTypeEnum, 'MECHANICALINDUCEDDRAFT', INDETERMINATE)
|
|
|
|
|
mechanicalforceddraft = express_getattr(IfcCoolingTowerTypeEnum, 'MECHANICALFORCEDDRAFT', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcCoolingTowerTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcCoolingTowerTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcCostScheduleTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
budget = express_getattr(IfcCostScheduleTypeEnum, 'BUDGET', INDETERMINATE)
|
|
|
|
|
costplan = express_getattr(IfcCostScheduleTypeEnum, 'COSTPLAN', INDETERMINATE)
|
|
|
|
|
estimate = express_getattr(IfcCostScheduleTypeEnum, 'ESTIMATE', INDETERMINATE)
|
|
|
|
|
tender = express_getattr(IfcCostScheduleTypeEnum, 'TENDER', INDETERMINATE)
|
|
|
|
|
pricedbillofquantities = express_getattr(IfcCostScheduleTypeEnum, 'PRICEDBILLOFQUANTITIES', INDETERMINATE)
|
|
|
|
|
unpricedbillofquantities = express_getattr(IfcCostScheduleTypeEnum, 'UNPRICEDBILLOFQUANTITIES', INDETERMINATE)
|
|
|
|
|
scheduleofrates = express_getattr(IfcCostScheduleTypeEnum, 'SCHEDULEOFRATES', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcCostScheduleTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcCostScheduleTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcCoveringTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
ceiling = express_getattr(IfcCoveringTypeEnum, 'CEILING', INDETERMINATE)
|
|
|
|
|
flooring = express_getattr(IfcCoveringTypeEnum, 'FLOORING', INDETERMINATE)
|
|
|
|
|
cladding = express_getattr(IfcCoveringTypeEnum, 'CLADDING', INDETERMINATE)
|
|
|
|
|
roofing = express_getattr(IfcCoveringTypeEnum, 'ROOFING', INDETERMINATE)
|
|
|
|
|
insulation = express_getattr(IfcCoveringTypeEnum, 'INSULATION', INDETERMINATE)
|
|
|
|
|
membrane = express_getattr(IfcCoveringTypeEnum, 'MEMBRANE', INDETERMINATE)
|
|
|
|
|
sleeving = express_getattr(IfcCoveringTypeEnum, 'SLEEVING', INDETERMINATE)
|
|
|
|
|
wrapping = express_getattr(IfcCoveringTypeEnum, 'WRAPPING', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcCoveringTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcCoveringTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcCurrencyEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
aed = express_getattr(IfcCurrencyEnum, 'AED', INDETERMINATE)
|
|
|
|
|
aes = express_getattr(IfcCurrencyEnum, 'AES', INDETERMINATE)
|
|
|
|
|
ats = express_getattr(IfcCurrencyEnum, 'ATS', INDETERMINATE)
|
|
|
|
|
aud = express_getattr(IfcCurrencyEnum, 'AUD', INDETERMINATE)
|
|
|
|
|
bbd = express_getattr(IfcCurrencyEnum, 'BBD', INDETERMINATE)
|
|
|
|
|
beg = express_getattr(IfcCurrencyEnum, 'BEG', INDETERMINATE)
|
|
|
|
|
bgl = express_getattr(IfcCurrencyEnum, 'BGL', INDETERMINATE)
|
|
|
|
|
bhd = express_getattr(IfcCurrencyEnum, 'BHD', INDETERMINATE)
|
|
|
|
|
bmd = express_getattr(IfcCurrencyEnum, 'BMD', INDETERMINATE)
|
|
|
|
|
bnd = express_getattr(IfcCurrencyEnum, 'BND', INDETERMINATE)
|
|
|
|
|
brl = express_getattr(IfcCurrencyEnum, 'BRL', INDETERMINATE)
|
|
|
|
|
bsd = express_getattr(IfcCurrencyEnum, 'BSD', INDETERMINATE)
|
|
|
|
|
bwp = express_getattr(IfcCurrencyEnum, 'BWP', INDETERMINATE)
|
|
|
|
|
bzd = express_getattr(IfcCurrencyEnum, 'BZD', INDETERMINATE)
|
|
|
|
|
cad = express_getattr(IfcCurrencyEnum, 'CAD', INDETERMINATE)
|
|
|
|
|
cbd = express_getattr(IfcCurrencyEnum, 'CBD', INDETERMINATE)
|
|
|
|
|
chf = express_getattr(IfcCurrencyEnum, 'CHF', INDETERMINATE)
|
|
|
|
|
clp = express_getattr(IfcCurrencyEnum, 'CLP', INDETERMINATE)
|
|
|
|
|
cny = express_getattr(IfcCurrencyEnum, 'CNY', INDETERMINATE)
|
|
|
|
|
cys = express_getattr(IfcCurrencyEnum, 'CYS', INDETERMINATE)
|
|
|
|
|
czk = express_getattr(IfcCurrencyEnum, 'CZK', INDETERMINATE)
|
|
|
|
|
ddp = express_getattr(IfcCurrencyEnum, 'DDP', INDETERMINATE)
|
|
|
|
|
dem = express_getattr(IfcCurrencyEnum, 'DEM', INDETERMINATE)
|
|
|
|
|
dkk = express_getattr(IfcCurrencyEnum, 'DKK', INDETERMINATE)
|
|
|
|
|
egl = express_getattr(IfcCurrencyEnum, 'EGL', INDETERMINATE)
|
|
|
|
|
est = express_getattr(IfcCurrencyEnum, 'EST', INDETERMINATE)
|
|
|
|
|
eur = express_getattr(IfcCurrencyEnum, 'EUR', INDETERMINATE)
|
|
|
|
|
fak = express_getattr(IfcCurrencyEnum, 'FAK', INDETERMINATE)
|
|
|
|
|
fim = express_getattr(IfcCurrencyEnum, 'FIM', INDETERMINATE)
|
|
|
|
|
fjd = express_getattr(IfcCurrencyEnum, 'FJD', INDETERMINATE)
|
|
|
|
|
fkp = express_getattr(IfcCurrencyEnum, 'FKP', INDETERMINATE)
|
|
|
|
|
frf = express_getattr(IfcCurrencyEnum, 'FRF', INDETERMINATE)
|
|
|
|
|
gbp = express_getattr(IfcCurrencyEnum, 'GBP', INDETERMINATE)
|
|
|
|
|
gip = express_getattr(IfcCurrencyEnum, 'GIP', INDETERMINATE)
|
|
|
|
|
gmd = express_getattr(IfcCurrencyEnum, 'GMD', INDETERMINATE)
|
|
|
|
|
grx = express_getattr(IfcCurrencyEnum, 'GRX', INDETERMINATE)
|
|
|
|
|
hkd = express_getattr(IfcCurrencyEnum, 'HKD', INDETERMINATE)
|
|
|
|
|
huf = express_getattr(IfcCurrencyEnum, 'HUF', INDETERMINATE)
|
|
|
|
|
ick = express_getattr(IfcCurrencyEnum, 'ICK', INDETERMINATE)
|
|
|
|
|
idr = express_getattr(IfcCurrencyEnum, 'IDR', INDETERMINATE)
|
|
|
|
|
ils = express_getattr(IfcCurrencyEnum, 'ILS', INDETERMINATE)
|
|
|
|
|
inr = express_getattr(IfcCurrencyEnum, 'INR', INDETERMINATE)
|
|
|
|
|
irp = express_getattr(IfcCurrencyEnum, 'IRP', INDETERMINATE)
|
|
|
|
|
itl = express_getattr(IfcCurrencyEnum, 'ITL', INDETERMINATE)
|
|
|
|
|
jmd = express_getattr(IfcCurrencyEnum, 'JMD', INDETERMINATE)
|
|
|
|
|
jod = express_getattr(IfcCurrencyEnum, 'JOD', INDETERMINATE)
|
|
|
|
|
jpy = express_getattr(IfcCurrencyEnum, 'JPY', INDETERMINATE)
|
|
|
|
|
kes = express_getattr(IfcCurrencyEnum, 'KES', INDETERMINATE)
|
|
|
|
|
krw = express_getattr(IfcCurrencyEnum, 'KRW', INDETERMINATE)
|
|
|
|
|
kwd = express_getattr(IfcCurrencyEnum, 'KWD', INDETERMINATE)
|
|
|
|
|
kyd = express_getattr(IfcCurrencyEnum, 'KYD', INDETERMINATE)
|
|
|
|
|
lkr = express_getattr(IfcCurrencyEnum, 'LKR', INDETERMINATE)
|
|
|
|
|
luf = express_getattr(IfcCurrencyEnum, 'LUF', INDETERMINATE)
|
|
|
|
|
mtl = express_getattr(IfcCurrencyEnum, 'MTL', INDETERMINATE)
|
|
|
|
|
mur = express_getattr(IfcCurrencyEnum, 'MUR', INDETERMINATE)
|
|
|
|
|
mxn = express_getattr(IfcCurrencyEnum, 'MXN', INDETERMINATE)
|
|
|
|
|
myr = express_getattr(IfcCurrencyEnum, 'MYR', INDETERMINATE)
|
|
|
|
|
nlg = express_getattr(IfcCurrencyEnum, 'NLG', INDETERMINATE)
|
|
|
|
|
nzd = express_getattr(IfcCurrencyEnum, 'NZD', INDETERMINATE)
|
|
|
|
|
omr = express_getattr(IfcCurrencyEnum, 'OMR', INDETERMINATE)
|
|
|
|
|
pgk = express_getattr(IfcCurrencyEnum, 'PGK', INDETERMINATE)
|
|
|
|
|
php = express_getattr(IfcCurrencyEnum, 'PHP', INDETERMINATE)
|
|
|
|
|
pkr = express_getattr(IfcCurrencyEnum, 'PKR', INDETERMINATE)
|
|
|
|
|
pln = express_getattr(IfcCurrencyEnum, 'PLN', INDETERMINATE)
|
|
|
|
|
ptn = express_getattr(IfcCurrencyEnum, 'PTN', INDETERMINATE)
|
|
|
|
|
qar = express_getattr(IfcCurrencyEnum, 'QAR', INDETERMINATE)
|
|
|
|
|
rur = express_getattr(IfcCurrencyEnum, 'RUR', INDETERMINATE)
|
|
|
|
|
sar = express_getattr(IfcCurrencyEnum, 'SAR', INDETERMINATE)
|
|
|
|
|
scr = express_getattr(IfcCurrencyEnum, 'SCR', INDETERMINATE)
|
|
|
|
|
sek = express_getattr(IfcCurrencyEnum, 'SEK', INDETERMINATE)
|
|
|
|
|
sgd = express_getattr(IfcCurrencyEnum, 'SGD', INDETERMINATE)
|
|
|
|
|
skp = express_getattr(IfcCurrencyEnum, 'SKP', INDETERMINATE)
|
|
|
|
|
thb = express_getattr(IfcCurrencyEnum, 'THB', INDETERMINATE)
|
|
|
|
|
trl = express_getattr(IfcCurrencyEnum, 'TRL', INDETERMINATE)
|
|
|
|
|
ttd = express_getattr(IfcCurrencyEnum, 'TTD', INDETERMINATE)
|
|
|
|
|
twd = express_getattr(IfcCurrencyEnum, 'TWD', INDETERMINATE)
|
|
|
|
|
usd = express_getattr(IfcCurrencyEnum, 'USD', INDETERMINATE)
|
|
|
|
|
veb = express_getattr(IfcCurrencyEnum, 'VEB', INDETERMINATE)
|
|
|
|
|
vnd = express_getattr(IfcCurrencyEnum, 'VND', INDETERMINATE)
|
|
|
|
|
xeu = express_getattr(IfcCurrencyEnum, 'XEU', INDETERMINATE)
|
|
|
|
|
zar = express_getattr(IfcCurrencyEnum, 'ZAR', INDETERMINATE)
|
|
|
|
|
zwd = express_getattr(IfcCurrencyEnum, 'ZWD', INDETERMINATE)
|
|
|
|
|
nok = express_getattr(IfcCurrencyEnum, 'NOK', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcCurtainWallTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
userdefined = express_getattr(IfcCurtainWallTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcCurtainWallTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcDamperTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
controldamper = express_getattr(IfcDamperTypeEnum, 'CONTROLDAMPER', INDETERMINATE)
|
|
|
|
|
firedamper = express_getattr(IfcDamperTypeEnum, 'FIREDAMPER', INDETERMINATE)
|
|
|
|
|
smokedamper = express_getattr(IfcDamperTypeEnum, 'SMOKEDAMPER', INDETERMINATE)
|
|
|
|
|
firesmokedamper = express_getattr(IfcDamperTypeEnum, 'FIRESMOKEDAMPER', INDETERMINATE)
|
|
|
|
|
backdraftdamper = express_getattr(IfcDamperTypeEnum, 'BACKDRAFTDAMPER', INDETERMINATE)
|
|
|
|
|
reliefdamper = express_getattr(IfcDamperTypeEnum, 'RELIEFDAMPER', INDETERMINATE)
|
|
|
|
|
blastdamper = express_getattr(IfcDamperTypeEnum, 'BLASTDAMPER', INDETERMINATE)
|
|
|
|
|
gravitydamper = express_getattr(IfcDamperTypeEnum, 'GRAVITYDAMPER', INDETERMINATE)
|
|
|
|
|
gravityreliefdamper = express_getattr(IfcDamperTypeEnum, 'GRAVITYRELIEFDAMPER', INDETERMINATE)
|
|
|
|
|
balancingdamper = express_getattr(IfcDamperTypeEnum, 'BALANCINGDAMPER', INDETERMINATE)
|
|
|
|
|
fumehoodexhaust = express_getattr(IfcDamperTypeEnum, 'FUMEHOODEXHAUST', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcDamperTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcDamperTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcDataOriginEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
measured = express_getattr(IfcDataOriginEnum, 'MEASURED', INDETERMINATE)
|
|
|
|
|
predicted = express_getattr(IfcDataOriginEnum, 'PREDICTED', INDETERMINATE)
|
|
|
|
|
simulated = express_getattr(IfcDataOriginEnum, 'SIMULATED', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcDataOriginEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcDataOriginEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcDerivedUnitEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
angularvelocityunit = express_getattr(IfcDerivedUnitEnum, 'ANGULARVELOCITYUNIT', INDETERMINATE)
|
|
|
|
|
compoundplaneangleunit = express_getattr(IfcDerivedUnitEnum, 'COMPOUNDPLANEANGLEUNIT', INDETERMINATE)
|
|
|
|
|
dynamicviscosityunit = express_getattr(IfcDerivedUnitEnum, 'DYNAMICVISCOSITYUNIT', INDETERMINATE)
|
|
|
|
|
heatfluxdensityunit = express_getattr(IfcDerivedUnitEnum, 'HEATFLUXDENSITYUNIT', INDETERMINATE)
|
|
|
|
|
integercountrateunit = express_getattr(IfcDerivedUnitEnum, 'INTEGERCOUNTRATEUNIT', INDETERMINATE)
|
|
|
|
|
isothermalmoisturecapacityunit = express_getattr(IfcDerivedUnitEnum, 'ISOTHERMALMOISTURECAPACITYUNIT', INDETERMINATE)
|
|
|
|
|
kinematicviscosityunit = express_getattr(IfcDerivedUnitEnum, 'KINEMATICVISCOSITYUNIT', INDETERMINATE)
|
|
|
|
|
linearvelocityunit = express_getattr(IfcDerivedUnitEnum, 'LINEARVELOCITYUNIT', INDETERMINATE)
|
|
|
|
|
massdensityunit = express_getattr(IfcDerivedUnitEnum, 'MASSDENSITYUNIT', INDETERMINATE)
|
|
|
|
|
massflowrateunit = express_getattr(IfcDerivedUnitEnum, 'MASSFLOWRATEUNIT', INDETERMINATE)
|
|
|
|
|
moisturediffusivityunit = express_getattr(IfcDerivedUnitEnum, 'MOISTUREDIFFUSIVITYUNIT', INDETERMINATE)
|
|
|
|
|
molecularweightunit = express_getattr(IfcDerivedUnitEnum, 'MOLECULARWEIGHTUNIT', INDETERMINATE)
|
|
|
|
|
specificheatcapacityunit = express_getattr(IfcDerivedUnitEnum, 'SPECIFICHEATCAPACITYUNIT', INDETERMINATE)
|
|
|
|
|
thermaladmittanceunit = express_getattr(IfcDerivedUnitEnum, 'THERMALADMITTANCEUNIT', INDETERMINATE)
|
|
|
|
|
thermalconductanceunit = express_getattr(IfcDerivedUnitEnum, 'THERMALCONDUCTANCEUNIT', INDETERMINATE)
|
|
|
|
|
thermalresistanceunit = express_getattr(IfcDerivedUnitEnum, 'THERMALRESISTANCEUNIT', INDETERMINATE)
|
|
|
|
|
thermaltransmittanceunit = express_getattr(IfcDerivedUnitEnum, 'THERMALTRANSMITTANCEUNIT', INDETERMINATE)
|
|
|
|
|
vaporpermeabilityunit = express_getattr(IfcDerivedUnitEnum, 'VAPORPERMEABILITYUNIT', INDETERMINATE)
|
|
|
|
|
volumetricflowrateunit = express_getattr(IfcDerivedUnitEnum, 'VOLUMETRICFLOWRATEUNIT', INDETERMINATE)
|
|
|
|
|
rotationalfrequencyunit = express_getattr(IfcDerivedUnitEnum, 'ROTATIONALFREQUENCYUNIT', INDETERMINATE)
|
|
|
|
|
torqueunit = express_getattr(IfcDerivedUnitEnum, 'TORQUEUNIT', INDETERMINATE)
|
|
|
|
|
momentofinertiaunit = express_getattr(IfcDerivedUnitEnum, 'MOMENTOFINERTIAUNIT', INDETERMINATE)
|
|
|
|
|
linearmomentunit = express_getattr(IfcDerivedUnitEnum, 'LINEARMOMENTUNIT', INDETERMINATE)
|
|
|
|
|
linearforceunit = express_getattr(IfcDerivedUnitEnum, 'LINEARFORCEUNIT', INDETERMINATE)
|
|
|
|
|
planarforceunit = express_getattr(IfcDerivedUnitEnum, 'PLANARFORCEUNIT', INDETERMINATE)
|
|
|
|
|
modulusofelasticityunit = express_getattr(IfcDerivedUnitEnum, 'MODULUSOFELASTICITYUNIT', INDETERMINATE)
|
|
|
|
|
shearmodulusunit = express_getattr(IfcDerivedUnitEnum, 'SHEARMODULUSUNIT', INDETERMINATE)
|
|
|
|
|
linearstiffnessunit = express_getattr(IfcDerivedUnitEnum, 'LINEARSTIFFNESSUNIT', INDETERMINATE)
|
|
|
|
|
rotationalstiffnessunit = express_getattr(IfcDerivedUnitEnum, 'ROTATIONALSTIFFNESSUNIT', INDETERMINATE)
|
|
|
|
|
modulusofsubgradereactionunit = express_getattr(IfcDerivedUnitEnum, 'MODULUSOFSUBGRADEREACTIONUNIT', INDETERMINATE)
|
|
|
|
|
accelerationunit = express_getattr(IfcDerivedUnitEnum, 'ACCELERATIONUNIT', INDETERMINATE)
|
|
|
|
|
curvatureunit = express_getattr(IfcDerivedUnitEnum, 'CURVATUREUNIT', INDETERMINATE)
|
|
|
|
|
heatingvalueunit = express_getattr(IfcDerivedUnitEnum, 'HEATINGVALUEUNIT', INDETERMINATE)
|
|
|
|
|
ionconcentrationunit = express_getattr(IfcDerivedUnitEnum, 'IONCONCENTRATIONUNIT', INDETERMINATE)
|
|
|
|
|
luminousintensitydistributionunit = express_getattr(IfcDerivedUnitEnum, 'LUMINOUSINTENSITYDISTRIBUTIONUNIT', INDETERMINATE)
|
|
|
|
|
massperlengthunit = express_getattr(IfcDerivedUnitEnum, 'MASSPERLENGTHUNIT', INDETERMINATE)
|
|
|
|
|
modulusoflinearsubgradereactionunit = express_getattr(IfcDerivedUnitEnum, 'MODULUSOFLINEARSUBGRADEREACTIONUNIT', INDETERMINATE)
|
|
|
|
|
modulusofrotationalsubgradereactionunit = express_getattr(IfcDerivedUnitEnum, 'MODULUSOFROTATIONALSUBGRADEREACTIONUNIT', INDETERMINATE)
|
|
|
|
|
phunit = express_getattr(IfcDerivedUnitEnum, 'PHUNIT', INDETERMINATE)
|
|
|
|
|
rotationalmassunit = express_getattr(IfcDerivedUnitEnum, 'ROTATIONALMASSUNIT', INDETERMINATE)
|
|
|
|
|
sectionareaintegralunit = express_getattr(IfcDerivedUnitEnum, 'SECTIONAREAINTEGRALUNIT', INDETERMINATE)
|
|
|
|
|
sectionmodulusunit = express_getattr(IfcDerivedUnitEnum, 'SECTIONMODULUSUNIT', INDETERMINATE)
|
|
|
|
|
soundpowerunit = express_getattr(IfcDerivedUnitEnum, 'SOUNDPOWERUNIT', INDETERMINATE)
|
|
|
|
|
soundpressureunit = express_getattr(IfcDerivedUnitEnum, 'SOUNDPRESSUREUNIT', INDETERMINATE)
|
|
|
|
|
temperaturegradientunit = express_getattr(IfcDerivedUnitEnum, 'TEMPERATUREGRADIENTUNIT', INDETERMINATE)
|
|
|
|
|
thermalexpansioncoefficientunit = express_getattr(IfcDerivedUnitEnum, 'THERMALEXPANSIONCOEFFICIENTUNIT', INDETERMINATE)
|
|
|
|
|
warpingconstantunit = express_getattr(IfcDerivedUnitEnum, 'WARPINGCONSTANTUNIT', INDETERMINATE)
|
|
|
|
|
warpingmomentunit = express_getattr(IfcDerivedUnitEnum, 'WARPINGMOMENTUNIT', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcDerivedUnitEnum, 'USERDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcDimensionExtentUsage = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
origin = express_getattr(IfcDimensionExtentUsage, 'ORIGIN', INDETERMINATE)
|
|
|
|
|
target = express_getattr(IfcDimensionExtentUsage, 'TARGET', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcDirectionSenseEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
positive = express_getattr(IfcDirectionSenseEnum, 'POSITIVE', INDETERMINATE)
|
|
|
|
|
negative = express_getattr(IfcDirectionSenseEnum, 'NEGATIVE', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcDistributionChamberElementTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
formedduct = express_getattr(IfcDistributionChamberElementTypeEnum, 'FORMEDDUCT', INDETERMINATE)
|
|
|
|
|
inspectionchamber = express_getattr(IfcDistributionChamberElementTypeEnum, 'INSPECTIONCHAMBER', INDETERMINATE)
|
|
|
|
|
inspectionpit = express_getattr(IfcDistributionChamberElementTypeEnum, 'INSPECTIONPIT', INDETERMINATE)
|
|
|
|
|
manhole = express_getattr(IfcDistributionChamberElementTypeEnum, 'MANHOLE', INDETERMINATE)
|
|
|
|
|
meterchamber = express_getattr(IfcDistributionChamberElementTypeEnum, 'METERCHAMBER', INDETERMINATE)
|
|
|
|
|
sump = express_getattr(IfcDistributionChamberElementTypeEnum, 'SUMP', INDETERMINATE)
|
|
|
|
|
trench = express_getattr(IfcDistributionChamberElementTypeEnum, 'TRENCH', INDETERMINATE)
|
|
|
|
|
valvechamber = express_getattr(IfcDistributionChamberElementTypeEnum, 'VALVECHAMBER', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcDistributionChamberElementTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcDistributionChamberElementTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcDocumentConfidentialityEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
public = express_getattr(IfcDocumentConfidentialityEnum, 'PUBLIC', INDETERMINATE)
|
|
|
|
|
restricted = express_getattr(IfcDocumentConfidentialityEnum, 'RESTRICTED', INDETERMINATE)
|
|
|
|
|
confidential = express_getattr(IfcDocumentConfidentialityEnum, 'CONFIDENTIAL', INDETERMINATE)
|
|
|
|
|
personal = express_getattr(IfcDocumentConfidentialityEnum, 'PERSONAL', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcDocumentConfidentialityEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcDocumentConfidentialityEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcDocumentStatusEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
draft = express_getattr(IfcDocumentStatusEnum, 'DRAFT', INDETERMINATE)
|
|
|
|
|
finaldraft = express_getattr(IfcDocumentStatusEnum, 'FINALDRAFT', INDETERMINATE)
|
|
|
|
|
final = express_getattr(IfcDocumentStatusEnum, 'FINAL', INDETERMINATE)
|
|
|
|
|
revision = express_getattr(IfcDocumentStatusEnum, 'REVISION', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcDocumentStatusEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcDoorPanelOperationEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
swinging = express_getattr(IfcDoorPanelOperationEnum, 'SWINGING', INDETERMINATE)
|
|
|
|
|
double_acting = express_getattr(IfcDoorPanelOperationEnum, 'DOUBLE_ACTING', INDETERMINATE)
|
|
|
|
|
sliding = express_getattr(IfcDoorPanelOperationEnum, 'SLIDING', INDETERMINATE)
|
|
|
|
|
folding = express_getattr(IfcDoorPanelOperationEnum, 'FOLDING', INDETERMINATE)
|
|
|
|
|
revolving = express_getattr(IfcDoorPanelOperationEnum, 'REVOLVING', INDETERMINATE)
|
|
|
|
|
rollingup = express_getattr(IfcDoorPanelOperationEnum, 'ROLLINGUP', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcDoorPanelOperationEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcDoorPanelOperationEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcDoorPanelPositionEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
left = express_getattr(IfcDoorPanelPositionEnum, 'LEFT', INDETERMINATE)
|
|
|
|
|
middle = express_getattr(IfcDoorPanelPositionEnum, 'MIDDLE', INDETERMINATE)
|
|
|
|
|
right = express_getattr(IfcDoorPanelPositionEnum, 'RIGHT', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcDoorPanelPositionEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcDoorStyleConstructionEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
aluminium = express_getattr(IfcDoorStyleConstructionEnum, 'ALUMINIUM', INDETERMINATE)
|
|
|
|
|
high_grade_steel = express_getattr(IfcDoorStyleConstructionEnum, 'HIGH_GRADE_STEEL', INDETERMINATE)
|
|
|
|
|
steel = express_getattr(IfcDoorStyleConstructionEnum, 'STEEL', INDETERMINATE)
|
|
|
|
|
wood = express_getattr(IfcDoorStyleConstructionEnum, 'WOOD', INDETERMINATE)
|
|
|
|
|
aluminium_wood = express_getattr(IfcDoorStyleConstructionEnum, 'ALUMINIUM_WOOD', INDETERMINATE)
|
|
|
|
|
aluminium_plastic = express_getattr(IfcDoorStyleConstructionEnum, 'ALUMINIUM_PLASTIC', INDETERMINATE)
|
|
|
|
|
plastic = express_getattr(IfcDoorStyleConstructionEnum, 'PLASTIC', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcDoorStyleConstructionEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcDoorStyleConstructionEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcDoorStyleOperationEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
single_swing_left = express_getattr(IfcDoorStyleOperationEnum, 'SINGLE_SWING_LEFT', INDETERMINATE)
|
|
|
|
|
single_swing_right = express_getattr(IfcDoorStyleOperationEnum, 'SINGLE_SWING_RIGHT', INDETERMINATE)
|
|
|
|
|
double_door_single_swing = express_getattr(IfcDoorStyleOperationEnum, 'DOUBLE_DOOR_SINGLE_SWING', INDETERMINATE)
|
|
|
|
|
double_door_single_swing_opposite_left = express_getattr(IfcDoorStyleOperationEnum, 'DOUBLE_DOOR_SINGLE_SWING_OPPOSITE_LEFT', INDETERMINATE)
|
|
|
|
|
double_door_single_swing_opposite_right = express_getattr(IfcDoorStyleOperationEnum, 'DOUBLE_DOOR_SINGLE_SWING_OPPOSITE_RIGHT', INDETERMINATE)
|
|
|
|
|
double_swing_left = express_getattr(IfcDoorStyleOperationEnum, 'DOUBLE_SWING_LEFT', INDETERMINATE)
|
|
|
|
|
double_swing_right = express_getattr(IfcDoorStyleOperationEnum, 'DOUBLE_SWING_RIGHT', INDETERMINATE)
|
|
|
|
|
double_door_double_swing = express_getattr(IfcDoorStyleOperationEnum, 'DOUBLE_DOOR_DOUBLE_SWING', INDETERMINATE)
|
|
|
|
|
sliding_to_left = express_getattr(IfcDoorStyleOperationEnum, 'SLIDING_TO_LEFT', INDETERMINATE)
|
|
|
|
|
sliding_to_right = express_getattr(IfcDoorStyleOperationEnum, 'SLIDING_TO_RIGHT', INDETERMINATE)
|
|
|
|
|
double_door_sliding = express_getattr(IfcDoorStyleOperationEnum, 'DOUBLE_DOOR_SLIDING', INDETERMINATE)
|
|
|
|
|
folding_to_left = express_getattr(IfcDoorStyleOperationEnum, 'FOLDING_TO_LEFT', INDETERMINATE)
|
|
|
|
|
folding_to_right = express_getattr(IfcDoorStyleOperationEnum, 'FOLDING_TO_RIGHT', INDETERMINATE)
|
|
|
|
|
double_door_folding = express_getattr(IfcDoorStyleOperationEnum, 'DOUBLE_DOOR_FOLDING', INDETERMINATE)
|
|
|
|
|
revolving = express_getattr(IfcDoorStyleOperationEnum, 'REVOLVING', INDETERMINATE)
|
|
|
|
|
rollingup = express_getattr(IfcDoorStyleOperationEnum, 'ROLLINGUP', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcDoorStyleOperationEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcDoorStyleOperationEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcDuctFittingTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
bend = express_getattr(IfcDuctFittingTypeEnum, 'BEND', INDETERMINATE)
|
|
|
|
|
connector = express_getattr(IfcDuctFittingTypeEnum, 'CONNECTOR', INDETERMINATE)
|
|
|
|
|
entry = express_getattr(IfcDuctFittingTypeEnum, 'ENTRY', INDETERMINATE)
|
|
|
|
|
exit = express_getattr(IfcDuctFittingTypeEnum, 'EXIT', INDETERMINATE)
|
|
|
|
|
junction = express_getattr(IfcDuctFittingTypeEnum, 'JUNCTION', INDETERMINATE)
|
|
|
|
|
obstruction = express_getattr(IfcDuctFittingTypeEnum, 'OBSTRUCTION', INDETERMINATE)
|
|
|
|
|
transition = express_getattr(IfcDuctFittingTypeEnum, 'TRANSITION', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcDuctFittingTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcDuctFittingTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcDuctSegmentTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
rigidsegment = express_getattr(IfcDuctSegmentTypeEnum, 'RIGIDSEGMENT', INDETERMINATE)
|
|
|
|
|
flexiblesegment = express_getattr(IfcDuctSegmentTypeEnum, 'FLEXIBLESEGMENT', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcDuctSegmentTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcDuctSegmentTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcDuctSilencerTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
flatoval = express_getattr(IfcDuctSilencerTypeEnum, 'FLATOVAL', INDETERMINATE)
|
|
|
|
|
rectangular = express_getattr(IfcDuctSilencerTypeEnum, 'RECTANGULAR', INDETERMINATE)
|
|
|
|
|
round = express_getattr(IfcDuctSilencerTypeEnum, 'ROUND', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcDuctSilencerTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcDuctSilencerTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcElectricApplianceTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
computer = express_getattr(IfcElectricApplianceTypeEnum, 'COMPUTER', INDETERMINATE)
|
|
|
|
|
directwaterheater = express_getattr(IfcElectricApplianceTypeEnum, 'DIRECTWATERHEATER', INDETERMINATE)
|
|
|
|
|
dishwasher = express_getattr(IfcElectricApplianceTypeEnum, 'DISHWASHER', INDETERMINATE)
|
|
|
|
|
electriccooker = express_getattr(IfcElectricApplianceTypeEnum, 'ELECTRICCOOKER', INDETERMINATE)
|
|
|
|
|
electricheater = express_getattr(IfcElectricApplianceTypeEnum, 'ELECTRICHEATER', INDETERMINATE)
|
|
|
|
|
facsimile = express_getattr(IfcElectricApplianceTypeEnum, 'FACSIMILE', INDETERMINATE)
|
|
|
|
|
freestandingfan = express_getattr(IfcElectricApplianceTypeEnum, 'FREESTANDINGFAN', INDETERMINATE)
|
|
|
|
|
freezer = express_getattr(IfcElectricApplianceTypeEnum, 'FREEZER', INDETERMINATE)
|
|
|
|
|
fridge_freezer = express_getattr(IfcElectricApplianceTypeEnum, 'FRIDGE_FREEZER', INDETERMINATE)
|
|
|
|
|
handdryer = express_getattr(IfcElectricApplianceTypeEnum, 'HANDDRYER', INDETERMINATE)
|
|
|
|
|
indirectwaterheater = express_getattr(IfcElectricApplianceTypeEnum, 'INDIRECTWATERHEATER', INDETERMINATE)
|
|
|
|
|
microwave = express_getattr(IfcElectricApplianceTypeEnum, 'MICROWAVE', INDETERMINATE)
|
|
|
|
|
photocopier = express_getattr(IfcElectricApplianceTypeEnum, 'PHOTOCOPIER', INDETERMINATE)
|
|
|
|
|
printer = express_getattr(IfcElectricApplianceTypeEnum, 'PRINTER', INDETERMINATE)
|
|
|
|
|
refrigerator = express_getattr(IfcElectricApplianceTypeEnum, 'REFRIGERATOR', INDETERMINATE)
|
|
|
|
|
radiantheater = express_getattr(IfcElectricApplianceTypeEnum, 'RADIANTHEATER', INDETERMINATE)
|
|
|
|
|
scanner = express_getattr(IfcElectricApplianceTypeEnum, 'SCANNER', INDETERMINATE)
|
|
|
|
|
telephone = express_getattr(IfcElectricApplianceTypeEnum, 'TELEPHONE', INDETERMINATE)
|
|
|
|
|
tumbledryer = express_getattr(IfcElectricApplianceTypeEnum, 'TUMBLEDRYER', INDETERMINATE)
|
|
|
|
|
tv = express_getattr(IfcElectricApplianceTypeEnum, 'TV', INDETERMINATE)
|
|
|
|
|
vendingmachine = express_getattr(IfcElectricApplianceTypeEnum, 'VENDINGMACHINE', INDETERMINATE)
|
|
|
|
|
washingmachine = express_getattr(IfcElectricApplianceTypeEnum, 'WASHINGMACHINE', INDETERMINATE)
|
|
|
|
|
waterheater = express_getattr(IfcElectricApplianceTypeEnum, 'WATERHEATER', INDETERMINATE)
|
|
|
|
|
watercooler = express_getattr(IfcElectricApplianceTypeEnum, 'WATERCOOLER', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcElectricApplianceTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcElectricApplianceTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcElectricCurrentEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
alternating = express_getattr(IfcElectricCurrentEnum, 'ALTERNATING', INDETERMINATE)
|
|
|
|
|
direct = express_getattr(IfcElectricCurrentEnum, 'DIRECT', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcElectricCurrentEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcElectricDistributionPointFunctionEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
alarmpanel = express_getattr(IfcElectricDistributionPointFunctionEnum, 'ALARMPANEL', INDETERMINATE)
|
|
|
|
|
consumerunit = express_getattr(IfcElectricDistributionPointFunctionEnum, 'CONSUMERUNIT', INDETERMINATE)
|
|
|
|
|
controlpanel = express_getattr(IfcElectricDistributionPointFunctionEnum, 'CONTROLPANEL', INDETERMINATE)
|
|
|
|
|
distributionboard = express_getattr(IfcElectricDistributionPointFunctionEnum, 'DISTRIBUTIONBOARD', INDETERMINATE)
|
|
|
|
|
gasdetectorpanel = express_getattr(IfcElectricDistributionPointFunctionEnum, 'GASDETECTORPANEL', INDETERMINATE)
|
|
|
|
|
indicatorpanel = express_getattr(IfcElectricDistributionPointFunctionEnum, 'INDICATORPANEL', INDETERMINATE)
|
|
|
|
|
mimicpanel = express_getattr(IfcElectricDistributionPointFunctionEnum, 'MIMICPANEL', INDETERMINATE)
|
|
|
|
|
motorcontrolcentre = express_getattr(IfcElectricDistributionPointFunctionEnum, 'MOTORCONTROLCENTRE', INDETERMINATE)
|
|
|
|
|
switchboard = express_getattr(IfcElectricDistributionPointFunctionEnum, 'SWITCHBOARD', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcElectricDistributionPointFunctionEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcElectricDistributionPointFunctionEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcElectricFlowStorageDeviceTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
battery = express_getattr(IfcElectricFlowStorageDeviceTypeEnum, 'BATTERY', INDETERMINATE)
|
|
|
|
|
capacitorbank = express_getattr(IfcElectricFlowStorageDeviceTypeEnum, 'CAPACITORBANK', INDETERMINATE)
|
|
|
|
|
harmonicfilter = express_getattr(IfcElectricFlowStorageDeviceTypeEnum, 'HARMONICFILTER', INDETERMINATE)
|
|
|
|
|
inductorbank = express_getattr(IfcElectricFlowStorageDeviceTypeEnum, 'INDUCTORBANK', INDETERMINATE)
|
|
|
|
|
ups = express_getattr(IfcElectricFlowStorageDeviceTypeEnum, 'UPS', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcElectricFlowStorageDeviceTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcElectricFlowStorageDeviceTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcElectricGeneratorTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
userdefined = express_getattr(IfcElectricGeneratorTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcElectricGeneratorTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcElectricHeaterTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
electricpointheater = express_getattr(IfcElectricHeaterTypeEnum, 'ELECTRICPOINTHEATER', INDETERMINATE)
|
|
|
|
|
electriccableheater = express_getattr(IfcElectricHeaterTypeEnum, 'ELECTRICCABLEHEATER', INDETERMINATE)
|
|
|
|
|
electricmatheater = express_getattr(IfcElectricHeaterTypeEnum, 'ELECTRICMATHEATER', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcElectricHeaterTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcElectricHeaterTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcElectricMotorTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
dc = express_getattr(IfcElectricMotorTypeEnum, 'DC', INDETERMINATE)
|
|
|
|
|
induction = express_getattr(IfcElectricMotorTypeEnum, 'INDUCTION', INDETERMINATE)
|
|
|
|
|
polyphase = express_getattr(IfcElectricMotorTypeEnum, 'POLYPHASE', INDETERMINATE)
|
|
|
|
|
reluctancesynchronous = express_getattr(IfcElectricMotorTypeEnum, 'RELUCTANCESYNCHRONOUS', INDETERMINATE)
|
|
|
|
|
synchronous = express_getattr(IfcElectricMotorTypeEnum, 'SYNCHRONOUS', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcElectricMotorTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcElectricMotorTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcElectricTimeControlTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
timeclock = express_getattr(IfcElectricTimeControlTypeEnum, 'TIMECLOCK', INDETERMINATE)
|
|
|
|
|
timedelay = express_getattr(IfcElectricTimeControlTypeEnum, 'TIMEDELAY', INDETERMINATE)
|
|
|
|
|
relay = express_getattr(IfcElectricTimeControlTypeEnum, 'RELAY', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcElectricTimeControlTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcElectricTimeControlTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcElementAssemblyTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
accessory_assembly = express_getattr(IfcElementAssemblyTypeEnum, 'ACCESSORY_ASSEMBLY', INDETERMINATE)
|
|
|
|
|
arch = express_getattr(IfcElementAssemblyTypeEnum, 'ARCH', INDETERMINATE)
|
|
|
|
|
beam_grid = express_getattr(IfcElementAssemblyTypeEnum, 'BEAM_GRID', INDETERMINATE)
|
|
|
|
|
braced_frame = express_getattr(IfcElementAssemblyTypeEnum, 'BRACED_FRAME', INDETERMINATE)
|
|
|
|
|
girder = express_getattr(IfcElementAssemblyTypeEnum, 'GIRDER', INDETERMINATE)
|
|
|
|
|
reinforcement_unit = express_getattr(IfcElementAssemblyTypeEnum, 'REINFORCEMENT_UNIT', INDETERMINATE)
|
|
|
|
|
rigid_frame = express_getattr(IfcElementAssemblyTypeEnum, 'RIGID_FRAME', INDETERMINATE)
|
|
|
|
|
slab_field = express_getattr(IfcElementAssemblyTypeEnum, 'SLAB_FIELD', INDETERMINATE)
|
|
|
|
|
truss = express_getattr(IfcElementAssemblyTypeEnum, 'TRUSS', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcElementAssemblyTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcElementAssemblyTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcElementCompositionEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
complex = express_getattr(IfcElementCompositionEnum, 'COMPLEX', INDETERMINATE)
|
|
|
|
|
element = express_getattr(IfcElementCompositionEnum, 'ELEMENT', INDETERMINATE)
|
|
|
|
|
partial = express_getattr(IfcElementCompositionEnum, 'PARTIAL', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcEnergySequenceEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
primary = express_getattr(IfcEnergySequenceEnum, 'PRIMARY', INDETERMINATE)
|
|
|
|
|
secondary = express_getattr(IfcEnergySequenceEnum, 'SECONDARY', INDETERMINATE)
|
|
|
|
|
tertiary = express_getattr(IfcEnergySequenceEnum, 'TERTIARY', INDETERMINATE)
|
|
|
|
|
auxiliary = express_getattr(IfcEnergySequenceEnum, 'AUXILIARY', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcEnergySequenceEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcEnergySequenceEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcEnvironmentalImpactCategoryEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
combinedvalue = express_getattr(IfcEnvironmentalImpactCategoryEnum, 'COMBINEDVALUE', INDETERMINATE)
|
|
|
|
|
disposal = express_getattr(IfcEnvironmentalImpactCategoryEnum, 'DISPOSAL', INDETERMINATE)
|
|
|
|
|
extraction = express_getattr(IfcEnvironmentalImpactCategoryEnum, 'EXTRACTION', INDETERMINATE)
|
|
|
|
|
installation = express_getattr(IfcEnvironmentalImpactCategoryEnum, 'INSTALLATION', INDETERMINATE)
|
|
|
|
|
manufacture = express_getattr(IfcEnvironmentalImpactCategoryEnum, 'MANUFACTURE', INDETERMINATE)
|
|
|
|
|
transportation = express_getattr(IfcEnvironmentalImpactCategoryEnum, 'TRANSPORTATION', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcEnvironmentalImpactCategoryEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcEnvironmentalImpactCategoryEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcEvaporativeCoolerTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
directevaporativerandommediaaircooler = express_getattr(IfcEvaporativeCoolerTypeEnum, 'DIRECTEVAPORATIVERANDOMMEDIAAIRCOOLER', INDETERMINATE)
|
|
|
|
|
directevaporativerigidmediaaircooler = express_getattr(IfcEvaporativeCoolerTypeEnum, 'DIRECTEVAPORATIVERIGIDMEDIAAIRCOOLER', INDETERMINATE)
|
|
|
|
|
directevaporativeslingerspackagedaircooler = express_getattr(IfcEvaporativeCoolerTypeEnum, 'DIRECTEVAPORATIVESLINGERSPACKAGEDAIRCOOLER', INDETERMINATE)
|
|
|
|
|
directevaporativepackagedrotaryaircooler = express_getattr(IfcEvaporativeCoolerTypeEnum, 'DIRECTEVAPORATIVEPACKAGEDROTARYAIRCOOLER', INDETERMINATE)
|
|
|
|
|
directevaporativeairwasher = express_getattr(IfcEvaporativeCoolerTypeEnum, 'DIRECTEVAPORATIVEAIRWASHER', INDETERMINATE)
|
|
|
|
|
indirectevaporativepackageaircooler = express_getattr(IfcEvaporativeCoolerTypeEnum, 'INDIRECTEVAPORATIVEPACKAGEAIRCOOLER', INDETERMINATE)
|
|
|
|
|
indirectevaporativewetcoil = express_getattr(IfcEvaporativeCoolerTypeEnum, 'INDIRECTEVAPORATIVEWETCOIL', INDETERMINATE)
|
|
|
|
|
indirectevaporativecoolingtowerorcoilcooler = express_getattr(IfcEvaporativeCoolerTypeEnum, 'INDIRECTEVAPORATIVECOOLINGTOWERORCOILCOOLER', INDETERMINATE)
|
|
|
|
|
indirectdirectcombination = express_getattr(IfcEvaporativeCoolerTypeEnum, 'INDIRECTDIRECTCOMBINATION', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcEvaporativeCoolerTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcEvaporativeCoolerTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcEvaporatorTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
directexpansionshellandtube = express_getattr(IfcEvaporatorTypeEnum, 'DIRECTEXPANSIONSHELLANDTUBE', INDETERMINATE)
|
|
|
|
|
directexpansiontubeintube = express_getattr(IfcEvaporatorTypeEnum, 'DIRECTEXPANSIONTUBEINTUBE', INDETERMINATE)
|
|
|
|
|
directexpansionbrazedplate = express_getattr(IfcEvaporatorTypeEnum, 'DIRECTEXPANSIONBRAZEDPLATE', INDETERMINATE)
|
|
|
|
|
floodedshellandtube = express_getattr(IfcEvaporatorTypeEnum, 'FLOODEDSHELLANDTUBE', INDETERMINATE)
|
|
|
|
|
shellandcoil = express_getattr(IfcEvaporatorTypeEnum, 'SHELLANDCOIL', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcEvaporatorTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcEvaporatorTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcFanTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
centrifugalforwardcurved = express_getattr(IfcFanTypeEnum, 'CENTRIFUGALFORWARDCURVED', INDETERMINATE)
|
|
|
|
|
centrifugalradial = express_getattr(IfcFanTypeEnum, 'CENTRIFUGALRADIAL', INDETERMINATE)
|
|
|
|
|
centrifugalbackwardinclinedcurved = express_getattr(IfcFanTypeEnum, 'CENTRIFUGALBACKWARDINCLINEDCURVED', INDETERMINATE)
|
|
|
|
|
centrifugalairfoil = express_getattr(IfcFanTypeEnum, 'CENTRIFUGALAIRFOIL', INDETERMINATE)
|
|
|
|
|
tubeaxial = express_getattr(IfcFanTypeEnum, 'TUBEAXIAL', INDETERMINATE)
|
|
|
|
|
vaneaxial = express_getattr(IfcFanTypeEnum, 'VANEAXIAL', INDETERMINATE)
|
|
|
|
|
propelloraxial = express_getattr(IfcFanTypeEnum, 'PROPELLORAXIAL', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcFanTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcFanTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcFilterTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
airparticlefilter = express_getattr(IfcFilterTypeEnum, 'AIRPARTICLEFILTER', INDETERMINATE)
|
|
|
|
|
odorfilter = express_getattr(IfcFilterTypeEnum, 'ODORFILTER', INDETERMINATE)
|
|
|
|
|
oilfilter = express_getattr(IfcFilterTypeEnum, 'OILFILTER', INDETERMINATE)
|
|
|
|
|
strainer = express_getattr(IfcFilterTypeEnum, 'STRAINER', INDETERMINATE)
|
|
|
|
|
waterfilter = express_getattr(IfcFilterTypeEnum, 'WATERFILTER', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcFilterTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcFilterTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcFireSuppressionTerminalTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
breechinginlet = express_getattr(IfcFireSuppressionTerminalTypeEnum, 'BREECHINGINLET', INDETERMINATE)
|
|
|
|
|
firehydrant = express_getattr(IfcFireSuppressionTerminalTypeEnum, 'FIREHYDRANT', INDETERMINATE)
|
|
|
|
|
hosereel = express_getattr(IfcFireSuppressionTerminalTypeEnum, 'HOSEREEL', INDETERMINATE)
|
|
|
|
|
sprinkler = express_getattr(IfcFireSuppressionTerminalTypeEnum, 'SPRINKLER', INDETERMINATE)
|
|
|
|
|
sprinklerdeflector = express_getattr(IfcFireSuppressionTerminalTypeEnum, 'SPRINKLERDEFLECTOR', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcFireSuppressionTerminalTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcFireSuppressionTerminalTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcFlowDirectionEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
source = express_getattr(IfcFlowDirectionEnum, 'SOURCE', INDETERMINATE)
|
|
|
|
|
sink = express_getattr(IfcFlowDirectionEnum, 'SINK', INDETERMINATE)
|
|
|
|
|
sourceandsink = express_getattr(IfcFlowDirectionEnum, 'SOURCEANDSINK', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcFlowDirectionEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcFlowInstrumentTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
pressuregauge = express_getattr(IfcFlowInstrumentTypeEnum, 'PRESSUREGAUGE', INDETERMINATE)
|
|
|
|
|
thermometer = express_getattr(IfcFlowInstrumentTypeEnum, 'THERMOMETER', INDETERMINATE)
|
|
|
|
|
ammeter = express_getattr(IfcFlowInstrumentTypeEnum, 'AMMETER', INDETERMINATE)
|
|
|
|
|
frequencymeter = express_getattr(IfcFlowInstrumentTypeEnum, 'FREQUENCYMETER', INDETERMINATE)
|
|
|
|
|
powerfactormeter = express_getattr(IfcFlowInstrumentTypeEnum, 'POWERFACTORMETER', INDETERMINATE)
|
|
|
|
|
phaseanglemeter = express_getattr(IfcFlowInstrumentTypeEnum, 'PHASEANGLEMETER', INDETERMINATE)
|
|
|
|
|
voltmeter_peak = express_getattr(IfcFlowInstrumentTypeEnum, 'VOLTMETER_PEAK', INDETERMINATE)
|
|
|
|
|
voltmeter_rms = express_getattr(IfcFlowInstrumentTypeEnum, 'VOLTMETER_RMS', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcFlowInstrumentTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcFlowInstrumentTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcFlowMeterTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
electricmeter = express_getattr(IfcFlowMeterTypeEnum, 'ELECTRICMETER', INDETERMINATE)
|
|
|
|
|
energymeter = express_getattr(IfcFlowMeterTypeEnum, 'ENERGYMETER', INDETERMINATE)
|
|
|
|
|
flowmeter = express_getattr(IfcFlowMeterTypeEnum, 'FLOWMETER', INDETERMINATE)
|
|
|
|
|
gasmeter = express_getattr(IfcFlowMeterTypeEnum, 'GASMETER', INDETERMINATE)
|
|
|
|
|
oilmeter = express_getattr(IfcFlowMeterTypeEnum, 'OILMETER', INDETERMINATE)
|
|
|
|
|
watermeter = express_getattr(IfcFlowMeterTypeEnum, 'WATERMETER', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcFlowMeterTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcFlowMeterTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcFootingTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
footing_beam = express_getattr(IfcFootingTypeEnum, 'FOOTING_BEAM', INDETERMINATE)
|
|
|
|
|
pad_footing = express_getattr(IfcFootingTypeEnum, 'PAD_FOOTING', INDETERMINATE)
|
|
|
|
|
pile_cap = express_getattr(IfcFootingTypeEnum, 'PILE_CAP', INDETERMINATE)
|
|
|
|
|
strip_footing = express_getattr(IfcFootingTypeEnum, 'STRIP_FOOTING', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcFootingTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcFootingTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcGasTerminalTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
gasappliance = express_getattr(IfcGasTerminalTypeEnum, 'GASAPPLIANCE', INDETERMINATE)
|
|
|
|
|
gasbooster = express_getattr(IfcGasTerminalTypeEnum, 'GASBOOSTER', INDETERMINATE)
|
|
|
|
|
gasburner = express_getattr(IfcGasTerminalTypeEnum, 'GASBURNER', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcGasTerminalTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcGasTerminalTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcGeometricProjectionEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
graph_view = express_getattr(IfcGeometricProjectionEnum, 'GRAPH_VIEW', INDETERMINATE)
|
|
|
|
|
sketch_view = express_getattr(IfcGeometricProjectionEnum, 'SKETCH_VIEW', INDETERMINATE)
|
|
|
|
|
model_view = express_getattr(IfcGeometricProjectionEnum, 'MODEL_VIEW', INDETERMINATE)
|
|
|
|
|
plan_view = express_getattr(IfcGeometricProjectionEnum, 'PLAN_VIEW', INDETERMINATE)
|
|
|
|
|
reflected_plan_view = express_getattr(IfcGeometricProjectionEnum, 'REFLECTED_PLAN_VIEW', INDETERMINATE)
|
|
|
|
|
section_view = express_getattr(IfcGeometricProjectionEnum, 'SECTION_VIEW', INDETERMINATE)
|
|
|
|
|
elevation_view = express_getattr(IfcGeometricProjectionEnum, 'ELEVATION_VIEW', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcGeometricProjectionEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcGeometricProjectionEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcGlobalOrLocalEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
global_coords = express_getattr(IfcGlobalOrLocalEnum, 'GLOBAL_COORDS', INDETERMINATE)
|
|
|
|
|
local_coords = express_getattr(IfcGlobalOrLocalEnum, 'LOCAL_COORDS', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcHeatExchangerTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
plate = express_getattr(IfcHeatExchangerTypeEnum, 'PLATE', INDETERMINATE)
|
|
|
|
|
shellandtube = express_getattr(IfcHeatExchangerTypeEnum, 'SHELLANDTUBE', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcHeatExchangerTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcHeatExchangerTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcHumidifierTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
steaminjection = express_getattr(IfcHumidifierTypeEnum, 'STEAMINJECTION', INDETERMINATE)
|
|
|
|
|
adiabaticairwasher = express_getattr(IfcHumidifierTypeEnum, 'ADIABATICAIRWASHER', INDETERMINATE)
|
|
|
|
|
adiabaticpan = express_getattr(IfcHumidifierTypeEnum, 'ADIABATICPAN', INDETERMINATE)
|
|
|
|
|
adiabaticwettedelement = express_getattr(IfcHumidifierTypeEnum, 'ADIABATICWETTEDELEMENT', INDETERMINATE)
|
|
|
|
|
adiabaticatomizing = express_getattr(IfcHumidifierTypeEnum, 'ADIABATICATOMIZING', INDETERMINATE)
|
|
|
|
|
adiabaticultrasonic = express_getattr(IfcHumidifierTypeEnum, 'ADIABATICULTRASONIC', INDETERMINATE)
|
|
|
|
|
adiabaticrigidmedia = express_getattr(IfcHumidifierTypeEnum, 'ADIABATICRIGIDMEDIA', INDETERMINATE)
|
|
|
|
|
adiabaticcompressedairnozzle = express_getattr(IfcHumidifierTypeEnum, 'ADIABATICCOMPRESSEDAIRNOZZLE', INDETERMINATE)
|
|
|
|
|
assistedelectric = express_getattr(IfcHumidifierTypeEnum, 'ASSISTEDELECTRIC', INDETERMINATE)
|
|
|
|
|
assistednaturalgas = express_getattr(IfcHumidifierTypeEnum, 'ASSISTEDNATURALGAS', INDETERMINATE)
|
|
|
|
|
assistedpropane = express_getattr(IfcHumidifierTypeEnum, 'ASSISTEDPROPANE', INDETERMINATE)
|
|
|
|
|
assistedbutane = express_getattr(IfcHumidifierTypeEnum, 'ASSISTEDBUTANE', INDETERMINATE)
|
|
|
|
|
assistedsteam = express_getattr(IfcHumidifierTypeEnum, 'ASSISTEDSTEAM', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcHumidifierTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcHumidifierTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcInternalOrExternalEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
internal = express_getattr(IfcInternalOrExternalEnum, 'INTERNAL', INDETERMINATE)
|
|
|
|
|
external = express_getattr(IfcInternalOrExternalEnum, 'EXTERNAL', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcInternalOrExternalEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcInventoryTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
assetinventory = express_getattr(IfcInventoryTypeEnum, 'ASSETINVENTORY', INDETERMINATE)
|
|
|
|
|
spaceinventory = express_getattr(IfcInventoryTypeEnum, 'SPACEINVENTORY', INDETERMINATE)
|
|
|
|
|
furnitureinventory = express_getattr(IfcInventoryTypeEnum, 'FURNITUREINVENTORY', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcInventoryTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcInventoryTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcJunctionBoxTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
userdefined = express_getattr(IfcJunctionBoxTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcJunctionBoxTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcLampTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
compactfluorescent = express_getattr(IfcLampTypeEnum, 'COMPACTFLUORESCENT', INDETERMINATE)
|
|
|
|
|
fluorescent = express_getattr(IfcLampTypeEnum, 'FLUORESCENT', INDETERMINATE)
|
|
|
|
|
highpressuremercury = express_getattr(IfcLampTypeEnum, 'HIGHPRESSUREMERCURY', INDETERMINATE)
|
|
|
|
|
highpressuresodium = express_getattr(IfcLampTypeEnum, 'HIGHPRESSURESODIUM', INDETERMINATE)
|
|
|
|
|
metalhalide = express_getattr(IfcLampTypeEnum, 'METALHALIDE', INDETERMINATE)
|
|
|
|
|
tungstenfilament = express_getattr(IfcLampTypeEnum, 'TUNGSTENFILAMENT', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcLampTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcLampTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcLayerSetDirectionEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
axis1 = express_getattr(IfcLayerSetDirectionEnum, 'AXIS1', INDETERMINATE)
|
|
|
|
|
axis2 = express_getattr(IfcLayerSetDirectionEnum, 'AXIS2', INDETERMINATE)
|
|
|
|
|
axis3 = express_getattr(IfcLayerSetDirectionEnum, 'AXIS3', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcLightDistributionCurveEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
type_a = express_getattr(IfcLightDistributionCurveEnum, 'TYPE_A', INDETERMINATE)
|
|
|
|
|
type_b = express_getattr(IfcLightDistributionCurveEnum, 'TYPE_B', INDETERMINATE)
|
|
|
|
|
type_c = express_getattr(IfcLightDistributionCurveEnum, 'TYPE_C', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcLightDistributionCurveEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcLightEmissionSourceEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
compactfluorescent = express_getattr(IfcLightEmissionSourceEnum, 'COMPACTFLUORESCENT', INDETERMINATE)
|
|
|
|
|
fluorescent = express_getattr(IfcLightEmissionSourceEnum, 'FLUORESCENT', INDETERMINATE)
|
|
|
|
|
highpressuremercury = express_getattr(IfcLightEmissionSourceEnum, 'HIGHPRESSUREMERCURY', INDETERMINATE)
|
|
|
|
|
highpressuresodium = express_getattr(IfcLightEmissionSourceEnum, 'HIGHPRESSURESODIUM', INDETERMINATE)
|
|
|
|
|
lightemittingdiode = express_getattr(IfcLightEmissionSourceEnum, 'LIGHTEMITTINGDIODE', INDETERMINATE)
|
|
|
|
|
lowpressuresodium = express_getattr(IfcLightEmissionSourceEnum, 'LOWPRESSURESODIUM', INDETERMINATE)
|
|
|
|
|
lowvoltagehalogen = express_getattr(IfcLightEmissionSourceEnum, 'LOWVOLTAGEHALOGEN', INDETERMINATE)
|
|
|
|
|
mainvoltagehalogen = express_getattr(IfcLightEmissionSourceEnum, 'MAINVOLTAGEHALOGEN', INDETERMINATE)
|
|
|
|
|
metalhalide = express_getattr(IfcLightEmissionSourceEnum, 'METALHALIDE', INDETERMINATE)
|
|
|
|
|
tungstenfilament = express_getattr(IfcLightEmissionSourceEnum, 'TUNGSTENFILAMENT', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcLightEmissionSourceEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcLightFixtureTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
pointsource = express_getattr(IfcLightFixtureTypeEnum, 'POINTSOURCE', INDETERMINATE)
|
|
|
|
|
directionsource = express_getattr(IfcLightFixtureTypeEnum, 'DIRECTIONSOURCE', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcLightFixtureTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcLightFixtureTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcLoadGroupTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
load_group = express_getattr(IfcLoadGroupTypeEnum, 'LOAD_GROUP', INDETERMINATE)
|
|
|
|
|
load_case = express_getattr(IfcLoadGroupTypeEnum, 'LOAD_CASE', INDETERMINATE)
|
|
|
|
|
load_combination_group = express_getattr(IfcLoadGroupTypeEnum, 'LOAD_COMBINATION_GROUP', INDETERMINATE)
|
|
|
|
|
load_combination = express_getattr(IfcLoadGroupTypeEnum, 'LOAD_COMBINATION', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcLoadGroupTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcLoadGroupTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcLogicalOperatorEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
logicaland = express_getattr(IfcLogicalOperatorEnum, 'LOGICALAND', INDETERMINATE)
|
|
|
|
|
logicalor = express_getattr(IfcLogicalOperatorEnum, 'LOGICALOR', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcMemberTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
brace = express_getattr(IfcMemberTypeEnum, 'BRACE', INDETERMINATE)
|
|
|
|
|
chord = express_getattr(IfcMemberTypeEnum, 'CHORD', INDETERMINATE)
|
|
|
|
|
collar = express_getattr(IfcMemberTypeEnum, 'COLLAR', INDETERMINATE)
|
|
|
|
|
member = express_getattr(IfcMemberTypeEnum, 'MEMBER', INDETERMINATE)
|
|
|
|
|
mullion = express_getattr(IfcMemberTypeEnum, 'MULLION', INDETERMINATE)
|
|
|
|
|
plate = express_getattr(IfcMemberTypeEnum, 'PLATE', INDETERMINATE)
|
|
|
|
|
post = express_getattr(IfcMemberTypeEnum, 'POST', INDETERMINATE)
|
|
|
|
|
purlin = express_getattr(IfcMemberTypeEnum, 'PURLIN', INDETERMINATE)
|
|
|
|
|
rafter = express_getattr(IfcMemberTypeEnum, 'RAFTER', INDETERMINATE)
|
|
|
|
|
stringer = express_getattr(IfcMemberTypeEnum, 'STRINGER', INDETERMINATE)
|
|
|
|
|
strut = express_getattr(IfcMemberTypeEnum, 'STRUT', INDETERMINATE)
|
|
|
|
|
stud = express_getattr(IfcMemberTypeEnum, 'STUD', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcMemberTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcMemberTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcMotorConnectionTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
beltdrive = express_getattr(IfcMotorConnectionTypeEnum, 'BELTDRIVE', INDETERMINATE)
|
|
|
|
|
coupling = express_getattr(IfcMotorConnectionTypeEnum, 'COUPLING', INDETERMINATE)
|
|
|
|
|
directdrive = express_getattr(IfcMotorConnectionTypeEnum, 'DIRECTDRIVE', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcMotorConnectionTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcMotorConnectionTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcNullStyle = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
null = express_getattr(IfcNullStyle, 'NULL', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcObjectTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
product = express_getattr(IfcObjectTypeEnum, 'PRODUCT', INDETERMINATE)
|
|
|
|
|
process = express_getattr(IfcObjectTypeEnum, 'PROCESS', INDETERMINATE)
|
|
|
|
|
control = express_getattr(IfcObjectTypeEnum, 'CONTROL', INDETERMINATE)
|
|
|
|
|
resource = express_getattr(IfcObjectTypeEnum, 'RESOURCE', INDETERMINATE)
|
|
|
|
|
actor = express_getattr(IfcObjectTypeEnum, 'ACTOR', INDETERMINATE)
|
|
|
|
|
group = express_getattr(IfcObjectTypeEnum, 'GROUP', INDETERMINATE)
|
|
|
|
|
project = express_getattr(IfcObjectTypeEnum, 'PROJECT', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcObjectTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcObjectiveEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
codecompliance = express_getattr(IfcObjectiveEnum, 'CODECOMPLIANCE', INDETERMINATE)
|
|
|
|
|
designintent = express_getattr(IfcObjectiveEnum, 'DESIGNINTENT', INDETERMINATE)
|
|
|
|
|
healthandsafety = express_getattr(IfcObjectiveEnum, 'HEALTHANDSAFETY', INDETERMINATE)
|
|
|
|
|
requirement = express_getattr(IfcObjectiveEnum, 'REQUIREMENT', INDETERMINATE)
|
|
|
|
|
specification = express_getattr(IfcObjectiveEnum, 'SPECIFICATION', INDETERMINATE)
|
|
|
|
|
triggercondition = express_getattr(IfcObjectiveEnum, 'TRIGGERCONDITION', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcObjectiveEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcObjectiveEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcOccupantTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
assignee = express_getattr(IfcOccupantTypeEnum, 'ASSIGNEE', INDETERMINATE)
|
|
|
|
|
assignor = express_getattr(IfcOccupantTypeEnum, 'ASSIGNOR', INDETERMINATE)
|
|
|
|
|
lessee = express_getattr(IfcOccupantTypeEnum, 'LESSEE', INDETERMINATE)
|
|
|
|
|
lessor = express_getattr(IfcOccupantTypeEnum, 'LESSOR', INDETERMINATE)
|
|
|
|
|
lettingagent = express_getattr(IfcOccupantTypeEnum, 'LETTINGAGENT', INDETERMINATE)
|
|
|
|
|
owner = express_getattr(IfcOccupantTypeEnum, 'OWNER', INDETERMINATE)
|
|
|
|
|
tenant = express_getattr(IfcOccupantTypeEnum, 'TENANT', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcOccupantTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcOccupantTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcOutletTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
audiovisualoutlet = express_getattr(IfcOutletTypeEnum, 'AUDIOVISUALOUTLET', INDETERMINATE)
|
|
|
|
|
communicationsoutlet = express_getattr(IfcOutletTypeEnum, 'COMMUNICATIONSOUTLET', INDETERMINATE)
|
|
|
|
|
poweroutlet = express_getattr(IfcOutletTypeEnum, 'POWEROUTLET', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcOutletTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcOutletTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcPermeableCoveringOperationEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
grill = express_getattr(IfcPermeableCoveringOperationEnum, 'GRILL', INDETERMINATE)
|
|
|
|
|
louver = express_getattr(IfcPermeableCoveringOperationEnum, 'LOUVER', INDETERMINATE)
|
|
|
|
|
screen = express_getattr(IfcPermeableCoveringOperationEnum, 'SCREEN', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcPermeableCoveringOperationEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcPermeableCoveringOperationEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcPhysicalOrVirtualEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
physical = express_getattr(IfcPhysicalOrVirtualEnum, 'PHYSICAL', INDETERMINATE)
|
|
|
|
|
virtual = express_getattr(IfcPhysicalOrVirtualEnum, 'VIRTUAL', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcPhysicalOrVirtualEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcPileConstructionEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
cast_in_place = express_getattr(IfcPileConstructionEnum, 'CAST_IN_PLACE', INDETERMINATE)
|
|
|
|
|
composite = express_getattr(IfcPileConstructionEnum, 'COMPOSITE', INDETERMINATE)
|
|
|
|
|
precast_concrete = express_getattr(IfcPileConstructionEnum, 'PRECAST_CONCRETE', INDETERMINATE)
|
|
|
|
|
prefab_steel = express_getattr(IfcPileConstructionEnum, 'PREFAB_STEEL', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcPileConstructionEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcPileConstructionEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcPileTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
cohesion = express_getattr(IfcPileTypeEnum, 'COHESION', INDETERMINATE)
|
|
|
|
|
friction = express_getattr(IfcPileTypeEnum, 'FRICTION', INDETERMINATE)
|
|
|
|
|
support = express_getattr(IfcPileTypeEnum, 'SUPPORT', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcPileTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcPileTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcPipeFittingTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
bend = express_getattr(IfcPipeFittingTypeEnum, 'BEND', INDETERMINATE)
|
|
|
|
|
connector = express_getattr(IfcPipeFittingTypeEnum, 'CONNECTOR', INDETERMINATE)
|
|
|
|
|
entry = express_getattr(IfcPipeFittingTypeEnum, 'ENTRY', INDETERMINATE)
|
|
|
|
|
exit = express_getattr(IfcPipeFittingTypeEnum, 'EXIT', INDETERMINATE)
|
|
|
|
|
junction = express_getattr(IfcPipeFittingTypeEnum, 'JUNCTION', INDETERMINATE)
|
|
|
|
|
obstruction = express_getattr(IfcPipeFittingTypeEnum, 'OBSTRUCTION', INDETERMINATE)
|
|
|
|
|
transition = express_getattr(IfcPipeFittingTypeEnum, 'TRANSITION', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcPipeFittingTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcPipeFittingTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcPipeSegmentTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
flexiblesegment = express_getattr(IfcPipeSegmentTypeEnum, 'FLEXIBLESEGMENT', INDETERMINATE)
|
|
|
|
|
rigidsegment = express_getattr(IfcPipeSegmentTypeEnum, 'RIGIDSEGMENT', INDETERMINATE)
|
|
|
|
|
gutter = express_getattr(IfcPipeSegmentTypeEnum, 'GUTTER', INDETERMINATE)
|
|
|
|
|
spool = express_getattr(IfcPipeSegmentTypeEnum, 'SPOOL', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcPipeSegmentTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcPipeSegmentTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcPlateTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
curtain_panel = express_getattr(IfcPlateTypeEnum, 'CURTAIN_PANEL', INDETERMINATE)
|
|
|
|
|
sheet = express_getattr(IfcPlateTypeEnum, 'SHEET', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcPlateTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcPlateTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcProcedureTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
advice_caution = express_getattr(IfcProcedureTypeEnum, 'ADVICE_CAUTION', INDETERMINATE)
|
|
|
|
|
advice_note = express_getattr(IfcProcedureTypeEnum, 'ADVICE_NOTE', INDETERMINATE)
|
|
|
|
|
advice_warning = express_getattr(IfcProcedureTypeEnum, 'ADVICE_WARNING', INDETERMINATE)
|
|
|
|
|
calibration = express_getattr(IfcProcedureTypeEnum, 'CALIBRATION', INDETERMINATE)
|
|
|
|
|
diagnostic = express_getattr(IfcProcedureTypeEnum, 'DIAGNOSTIC', INDETERMINATE)
|
|
|
|
|
shutdown = express_getattr(IfcProcedureTypeEnum, 'SHUTDOWN', INDETERMINATE)
|
|
|
|
|
startup = express_getattr(IfcProcedureTypeEnum, 'STARTUP', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcProcedureTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcProcedureTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcProfileTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
curve = express_getattr(IfcProfileTypeEnum, 'CURVE', INDETERMINATE)
|
|
|
|
|
area = express_getattr(IfcProfileTypeEnum, 'AREA', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcProjectOrderRecordTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
change = express_getattr(IfcProjectOrderRecordTypeEnum, 'CHANGE', INDETERMINATE)
|
|
|
|
|
maintenance = express_getattr(IfcProjectOrderRecordTypeEnum, 'MAINTENANCE', INDETERMINATE)
|
|
|
|
|
move = express_getattr(IfcProjectOrderRecordTypeEnum, 'MOVE', INDETERMINATE)
|
|
|
|
|
purchase = express_getattr(IfcProjectOrderRecordTypeEnum, 'PURCHASE', INDETERMINATE)
|
|
|
|
|
work = express_getattr(IfcProjectOrderRecordTypeEnum, 'WORK', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcProjectOrderRecordTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcProjectOrderRecordTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcProjectOrderTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
changeorder = express_getattr(IfcProjectOrderTypeEnum, 'CHANGEORDER', INDETERMINATE)
|
|
|
|
|
maintenanceworkorder = express_getattr(IfcProjectOrderTypeEnum, 'MAINTENANCEWORKORDER', INDETERMINATE)
|
|
|
|
|
moveorder = express_getattr(IfcProjectOrderTypeEnum, 'MOVEORDER', INDETERMINATE)
|
|
|
|
|
purchaseorder = express_getattr(IfcProjectOrderTypeEnum, 'PURCHASEORDER', INDETERMINATE)
|
|
|
|
|
workorder = express_getattr(IfcProjectOrderTypeEnum, 'WORKORDER', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcProjectOrderTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcProjectOrderTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcProjectedOrTrueLengthEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
projected_length = express_getattr(IfcProjectedOrTrueLengthEnum, 'PROJECTED_LENGTH', INDETERMINATE)
|
|
|
|
|
true_length = express_getattr(IfcProjectedOrTrueLengthEnum, 'TRUE_LENGTH', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcPropertySourceEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
design = express_getattr(IfcPropertySourceEnum, 'DESIGN', INDETERMINATE)
|
|
|
|
|
designmaximum = express_getattr(IfcPropertySourceEnum, 'DESIGNMAXIMUM', INDETERMINATE)
|
|
|
|
|
designminimum = express_getattr(IfcPropertySourceEnum, 'DESIGNMINIMUM', INDETERMINATE)
|
|
|
|
|
simulated = express_getattr(IfcPropertySourceEnum, 'SIMULATED', INDETERMINATE)
|
|
|
|
|
asbuilt = express_getattr(IfcPropertySourceEnum, 'ASBUILT', INDETERMINATE)
|
|
|
|
|
commissioning = express_getattr(IfcPropertySourceEnum, 'COMMISSIONING', INDETERMINATE)
|
|
|
|
|
measured = express_getattr(IfcPropertySourceEnum, 'MEASURED', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcPropertySourceEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notknown = express_getattr(IfcPropertySourceEnum, 'NOTKNOWN', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcProtectiveDeviceTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
fusedisconnector = express_getattr(IfcProtectiveDeviceTypeEnum, 'FUSEDISCONNECTOR', INDETERMINATE)
|
|
|
|
|
circuitbreaker = express_getattr(IfcProtectiveDeviceTypeEnum, 'CIRCUITBREAKER', INDETERMINATE)
|
|
|
|
|
earthfailuredevice = express_getattr(IfcProtectiveDeviceTypeEnum, 'EARTHFAILUREDEVICE', INDETERMINATE)
|
|
|
|
|
residualcurrentcircuitbreaker = express_getattr(IfcProtectiveDeviceTypeEnum, 'RESIDUALCURRENTCIRCUITBREAKER', INDETERMINATE)
|
|
|
|
|
residualcurrentswitch = express_getattr(IfcProtectiveDeviceTypeEnum, 'RESIDUALCURRENTSWITCH', INDETERMINATE)
|
|
|
|
|
varistor = express_getattr(IfcProtectiveDeviceTypeEnum, 'VARISTOR', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcProtectiveDeviceTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcProtectiveDeviceTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcPumpTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
circulator = express_getattr(IfcPumpTypeEnum, 'CIRCULATOR', INDETERMINATE)
|
|
|
|
|
endsuction = express_getattr(IfcPumpTypeEnum, 'ENDSUCTION', INDETERMINATE)
|
|
|
|
|
splitcase = express_getattr(IfcPumpTypeEnum, 'SPLITCASE', INDETERMINATE)
|
|
|
|
|
verticalinline = express_getattr(IfcPumpTypeEnum, 'VERTICALINLINE', INDETERMINATE)
|
|
|
|
|
verticalturbine = express_getattr(IfcPumpTypeEnum, 'VERTICALTURBINE', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcPumpTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcPumpTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcRailingTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
handrail = express_getattr(IfcRailingTypeEnum, 'HANDRAIL', INDETERMINATE)
|
|
|
|
|
guardrail = express_getattr(IfcRailingTypeEnum, 'GUARDRAIL', INDETERMINATE)
|
|
|
|
|
balustrade = express_getattr(IfcRailingTypeEnum, 'BALUSTRADE', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcRailingTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcRailingTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcRampFlightTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
straight = express_getattr(IfcRampFlightTypeEnum, 'STRAIGHT', INDETERMINATE)
|
|
|
|
|
spiral = express_getattr(IfcRampFlightTypeEnum, 'SPIRAL', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcRampFlightTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcRampFlightTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcRampTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
straight_run_ramp = express_getattr(IfcRampTypeEnum, 'STRAIGHT_RUN_RAMP', INDETERMINATE)
|
|
|
|
|
two_straight_run_ramp = express_getattr(IfcRampTypeEnum, 'TWO_STRAIGHT_RUN_RAMP', INDETERMINATE)
|
|
|
|
|
quarter_turn_ramp = express_getattr(IfcRampTypeEnum, 'QUARTER_TURN_RAMP', INDETERMINATE)
|
|
|
|
|
two_quarter_turn_ramp = express_getattr(IfcRampTypeEnum, 'TWO_QUARTER_TURN_RAMP', INDETERMINATE)
|
|
|
|
|
half_turn_ramp = express_getattr(IfcRampTypeEnum, 'HALF_TURN_RAMP', INDETERMINATE)
|
|
|
|
|
spiral_ramp = express_getattr(IfcRampTypeEnum, 'SPIRAL_RAMP', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcRampTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcRampTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcReflectanceMethodEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
blinn = express_getattr(IfcReflectanceMethodEnum, 'BLINN', INDETERMINATE)
|
|
|
|
|
flat = express_getattr(IfcReflectanceMethodEnum, 'FLAT', INDETERMINATE)
|
|
|
|
|
glass = express_getattr(IfcReflectanceMethodEnum, 'GLASS', INDETERMINATE)
|
|
|
|
|
matt = express_getattr(IfcReflectanceMethodEnum, 'MATT', INDETERMINATE)
|
|
|
|
|
metal = express_getattr(IfcReflectanceMethodEnum, 'METAL', INDETERMINATE)
|
|
|
|
|
mirror = express_getattr(IfcReflectanceMethodEnum, 'MIRROR', INDETERMINATE)
|
|
|
|
|
phong = express_getattr(IfcReflectanceMethodEnum, 'PHONG', INDETERMINATE)
|
|
|
|
|
plastic = express_getattr(IfcReflectanceMethodEnum, 'PLASTIC', INDETERMINATE)
|
|
|
|
|
strauss = express_getattr(IfcReflectanceMethodEnum, 'STRAUSS', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcReflectanceMethodEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcReinforcingBarRoleEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
main = express_getattr(IfcReinforcingBarRoleEnum, 'MAIN', INDETERMINATE)
|
|
|
|
|
shear = express_getattr(IfcReinforcingBarRoleEnum, 'SHEAR', INDETERMINATE)
|
|
|
|
|
ligature = express_getattr(IfcReinforcingBarRoleEnum, 'LIGATURE', INDETERMINATE)
|
|
|
|
|
stud = express_getattr(IfcReinforcingBarRoleEnum, 'STUD', INDETERMINATE)
|
|
|
|
|
punching = express_getattr(IfcReinforcingBarRoleEnum, 'PUNCHING', INDETERMINATE)
|
|
|
|
|
edge = express_getattr(IfcReinforcingBarRoleEnum, 'EDGE', INDETERMINATE)
|
|
|
|
|
ring = express_getattr(IfcReinforcingBarRoleEnum, 'RING', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcReinforcingBarRoleEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcReinforcingBarRoleEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcReinforcingBarSurfaceEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
plain = express_getattr(IfcReinforcingBarSurfaceEnum, 'PLAIN', INDETERMINATE)
|
|
|
|
|
textured = express_getattr(IfcReinforcingBarSurfaceEnum, 'TEXTURED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcResourceConsumptionEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
consumed = express_getattr(IfcResourceConsumptionEnum, 'CONSUMED', INDETERMINATE)
|
|
|
|
|
partiallyconsumed = express_getattr(IfcResourceConsumptionEnum, 'PARTIALLYCONSUMED', INDETERMINATE)
|
|
|
|
|
notconsumed = express_getattr(IfcResourceConsumptionEnum, 'NOTCONSUMED', INDETERMINATE)
|
|
|
|
|
occupied = express_getattr(IfcResourceConsumptionEnum, 'OCCUPIED', INDETERMINATE)
|
|
|
|
|
partiallyoccupied = express_getattr(IfcResourceConsumptionEnum, 'PARTIALLYOCCUPIED', INDETERMINATE)
|
|
|
|
|
notoccupied = express_getattr(IfcResourceConsumptionEnum, 'NOTOCCUPIED', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcResourceConsumptionEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcResourceConsumptionEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcRibPlateDirectionEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
direction_x = express_getattr(IfcRibPlateDirectionEnum, 'DIRECTION_X', INDETERMINATE)
|
|
|
|
|
direction_y = express_getattr(IfcRibPlateDirectionEnum, 'DIRECTION_Y', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcRoleEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
supplier = express_getattr(IfcRoleEnum, 'SUPPLIER', INDETERMINATE)
|
|
|
|
|
manufacturer = express_getattr(IfcRoleEnum, 'MANUFACTURER', INDETERMINATE)
|
|
|
|
|
contractor = express_getattr(IfcRoleEnum, 'CONTRACTOR', INDETERMINATE)
|
|
|
|
|
subcontractor = express_getattr(IfcRoleEnum, 'SUBCONTRACTOR', INDETERMINATE)
|
|
|
|
|
architect = express_getattr(IfcRoleEnum, 'ARCHITECT', INDETERMINATE)
|
|
|
|
|
structuralengineer = express_getattr(IfcRoleEnum, 'STRUCTURALENGINEER', INDETERMINATE)
|
|
|
|
|
costengineer = express_getattr(IfcRoleEnum, 'COSTENGINEER', INDETERMINATE)
|
|
|
|
|
client = express_getattr(IfcRoleEnum, 'CLIENT', INDETERMINATE)
|
|
|
|
|
buildingowner = express_getattr(IfcRoleEnum, 'BUILDINGOWNER', INDETERMINATE)
|
|
|
|
|
buildingoperator = express_getattr(IfcRoleEnum, 'BUILDINGOPERATOR', INDETERMINATE)
|
|
|
|
|
mechanicalengineer = express_getattr(IfcRoleEnum, 'MECHANICALENGINEER', INDETERMINATE)
|
|
|
|
|
electricalengineer = express_getattr(IfcRoleEnum, 'ELECTRICALENGINEER', INDETERMINATE)
|
|
|
|
|
projectmanager = express_getattr(IfcRoleEnum, 'PROJECTMANAGER', INDETERMINATE)
|
|
|
|
|
facilitiesmanager = express_getattr(IfcRoleEnum, 'FACILITIESMANAGER', INDETERMINATE)
|
|
|
|
|
civilengineer = express_getattr(IfcRoleEnum, 'CIVILENGINEER', INDETERMINATE)
|
|
|
|
|
comissioningengineer = express_getattr(IfcRoleEnum, 'COMISSIONINGENGINEER', INDETERMINATE)
|
|
|
|
|
engineer = express_getattr(IfcRoleEnum, 'ENGINEER', INDETERMINATE)
|
|
|
|
|
owner = express_getattr(IfcRoleEnum, 'OWNER', INDETERMINATE)
|
|
|
|
|
consultant = express_getattr(IfcRoleEnum, 'CONSULTANT', INDETERMINATE)
|
|
|
|
|
constructionmanager = express_getattr(IfcRoleEnum, 'CONSTRUCTIONMANAGER', INDETERMINATE)
|
|
|
|
|
fieldconstructionmanager = express_getattr(IfcRoleEnum, 'FIELDCONSTRUCTIONMANAGER', INDETERMINATE)
|
|
|
|
|
reseller = express_getattr(IfcRoleEnum, 'RESELLER', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcRoleEnum, 'USERDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcRoofTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
flat_roof = express_getattr(IfcRoofTypeEnum, 'FLAT_ROOF', INDETERMINATE)
|
|
|
|
|
shed_roof = express_getattr(IfcRoofTypeEnum, 'SHED_ROOF', INDETERMINATE)
|
|
|
|
|
gable_roof = express_getattr(IfcRoofTypeEnum, 'GABLE_ROOF', INDETERMINATE)
|
|
|
|
|
hip_roof = express_getattr(IfcRoofTypeEnum, 'HIP_ROOF', INDETERMINATE)
|
|
|
|
|
hipped_gable_roof = express_getattr(IfcRoofTypeEnum, 'HIPPED_GABLE_ROOF', INDETERMINATE)
|
|
|
|
|
gambrel_roof = express_getattr(IfcRoofTypeEnum, 'GAMBREL_ROOF', INDETERMINATE)
|
|
|
|
|
mansard_roof = express_getattr(IfcRoofTypeEnum, 'MANSARD_ROOF', INDETERMINATE)
|
|
|
|
|
barrel_roof = express_getattr(IfcRoofTypeEnum, 'BARREL_ROOF', INDETERMINATE)
|
|
|
|
|
rainbow_roof = express_getattr(IfcRoofTypeEnum, 'RAINBOW_ROOF', INDETERMINATE)
|
|
|
|
|
butterfly_roof = express_getattr(IfcRoofTypeEnum, 'BUTTERFLY_ROOF', INDETERMINATE)
|
|
|
|
|
pavilion_roof = express_getattr(IfcRoofTypeEnum, 'PAVILION_ROOF', INDETERMINATE)
|
|
|
|
|
dome_roof = express_getattr(IfcRoofTypeEnum, 'DOME_ROOF', INDETERMINATE)
|
|
|
|
|
freeform = express_getattr(IfcRoofTypeEnum, 'FREEFORM', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcRoofTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcSIPrefix = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
exa = express_getattr(IfcSIPrefix, 'EXA', INDETERMINATE)
|
|
|
|
|
peta = express_getattr(IfcSIPrefix, 'PETA', INDETERMINATE)
|
|
|
|
|
tera = express_getattr(IfcSIPrefix, 'TERA', INDETERMINATE)
|
|
|
|
|
giga = express_getattr(IfcSIPrefix, 'GIGA', INDETERMINATE)
|
|
|
|
|
mega = express_getattr(IfcSIPrefix, 'MEGA', INDETERMINATE)
|
|
|
|
|
kilo = express_getattr(IfcSIPrefix, 'KILO', INDETERMINATE)
|
|
|
|
|
hecto = express_getattr(IfcSIPrefix, 'HECTO', INDETERMINATE)
|
|
|
|
|
deca = express_getattr(IfcSIPrefix, 'DECA', INDETERMINATE)
|
|
|
|
|
deci = express_getattr(IfcSIPrefix, 'DECI', INDETERMINATE)
|
|
|
|
|
centi = express_getattr(IfcSIPrefix, 'CENTI', INDETERMINATE)
|
|
|
|
|
milli = express_getattr(IfcSIPrefix, 'MILLI', INDETERMINATE)
|
|
|
|
|
micro = express_getattr(IfcSIPrefix, 'MICRO', INDETERMINATE)
|
|
|
|
|
nano = express_getattr(IfcSIPrefix, 'NANO', INDETERMINATE)
|
|
|
|
|
pico = express_getattr(IfcSIPrefix, 'PICO', INDETERMINATE)
|
|
|
|
|
femto = express_getattr(IfcSIPrefix, 'FEMTO', INDETERMINATE)
|
|
|
|
|
atto = express_getattr(IfcSIPrefix, 'ATTO', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcSIUnitName = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
ampere = express_getattr(IfcSIUnitName, 'AMPERE', INDETERMINATE)
|
|
|
|
|
becquerel = express_getattr(IfcSIUnitName, 'BECQUEREL', INDETERMINATE)
|
|
|
|
|
candela = express_getattr(IfcSIUnitName, 'CANDELA', INDETERMINATE)
|
|
|
|
|
coulomb = express_getattr(IfcSIUnitName, 'COULOMB', INDETERMINATE)
|
|
|
|
|
cubic_metre = express_getattr(IfcSIUnitName, 'CUBIC_METRE', INDETERMINATE)
|
|
|
|
|
degree_celsius = express_getattr(IfcSIUnitName, 'DEGREE_CELSIUS', INDETERMINATE)
|
|
|
|
|
farad = express_getattr(IfcSIUnitName, 'FARAD', INDETERMINATE)
|
|
|
|
|
gram = express_getattr(IfcSIUnitName, 'GRAM', INDETERMINATE)
|
|
|
|
|
gray = express_getattr(IfcSIUnitName, 'GRAY', INDETERMINATE)
|
|
|
|
|
henry = express_getattr(IfcSIUnitName, 'HENRY', INDETERMINATE)
|
|
|
|
|
hertz = express_getattr(IfcSIUnitName, 'HERTZ', INDETERMINATE)
|
|
|
|
|
joule = express_getattr(IfcSIUnitName, 'JOULE', INDETERMINATE)
|
|
|
|
|
kelvin = express_getattr(IfcSIUnitName, 'KELVIN', INDETERMINATE)
|
|
|
|
|
lumen = express_getattr(IfcSIUnitName, 'LUMEN', INDETERMINATE)
|
|
|
|
|
lux = express_getattr(IfcSIUnitName, 'LUX', INDETERMINATE)
|
|
|
|
|
metre = express_getattr(IfcSIUnitName, 'METRE', INDETERMINATE)
|
|
|
|
|
mole = express_getattr(IfcSIUnitName, 'MOLE', INDETERMINATE)
|
|
|
|
|
newton = express_getattr(IfcSIUnitName, 'NEWTON', INDETERMINATE)
|
|
|
|
|
ohm = express_getattr(IfcSIUnitName, 'OHM', INDETERMINATE)
|
|
|
|
|
pascal = express_getattr(IfcSIUnitName, 'PASCAL', INDETERMINATE)
|
|
|
|
|
radian = express_getattr(IfcSIUnitName, 'RADIAN', INDETERMINATE)
|
|
|
|
|
second = express_getattr(IfcSIUnitName, 'SECOND', INDETERMINATE)
|
|
|
|
|
siemens = express_getattr(IfcSIUnitName, 'SIEMENS', INDETERMINATE)
|
|
|
|
|
sievert = express_getattr(IfcSIUnitName, 'SIEVERT', INDETERMINATE)
|
|
|
|
|
square_metre = express_getattr(IfcSIUnitName, 'SQUARE_METRE', INDETERMINATE)
|
|
|
|
|
steradian = express_getattr(IfcSIUnitName, 'STERADIAN', INDETERMINATE)
|
|
|
|
|
tesla = express_getattr(IfcSIUnitName, 'TESLA', INDETERMINATE)
|
|
|
|
|
volt = express_getattr(IfcSIUnitName, 'VOLT', INDETERMINATE)
|
|
|
|
|
watt = express_getattr(IfcSIUnitName, 'WATT', INDETERMINATE)
|
|
|
|
|
weber = express_getattr(IfcSIUnitName, 'WEBER', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcSanitaryTerminalTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
bath = express_getattr(IfcSanitaryTerminalTypeEnum, 'BATH', INDETERMINATE)
|
|
|
|
|
bidet = express_getattr(IfcSanitaryTerminalTypeEnum, 'BIDET', INDETERMINATE)
|
|
|
|
|
cistern = express_getattr(IfcSanitaryTerminalTypeEnum, 'CISTERN', INDETERMINATE)
|
|
|
|
|
shower = express_getattr(IfcSanitaryTerminalTypeEnum, 'SHOWER', INDETERMINATE)
|
|
|
|
|
sink = express_getattr(IfcSanitaryTerminalTypeEnum, 'SINK', INDETERMINATE)
|
|
|
|
|
sanitaryfountain = express_getattr(IfcSanitaryTerminalTypeEnum, 'SANITARYFOUNTAIN', INDETERMINATE)
|
|
|
|
|
toiletpan = express_getattr(IfcSanitaryTerminalTypeEnum, 'TOILETPAN', INDETERMINATE)
|
|
|
|
|
urinal = express_getattr(IfcSanitaryTerminalTypeEnum, 'URINAL', INDETERMINATE)
|
|
|
|
|
washhandbasin = express_getattr(IfcSanitaryTerminalTypeEnum, 'WASHHANDBASIN', INDETERMINATE)
|
|
|
|
|
wcseat = express_getattr(IfcSanitaryTerminalTypeEnum, 'WCSEAT', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcSanitaryTerminalTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcSanitaryTerminalTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcSectionTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
uniform = express_getattr(IfcSectionTypeEnum, 'UNIFORM', INDETERMINATE)
|
|
|
|
|
tapered = express_getattr(IfcSectionTypeEnum, 'TAPERED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcSensorTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
co2sensor = express_getattr(IfcSensorTypeEnum, 'CO2SENSOR', INDETERMINATE)
|
|
|
|
|
firesensor = express_getattr(IfcSensorTypeEnum, 'FIRESENSOR', INDETERMINATE)
|
|
|
|
|
flowsensor = express_getattr(IfcSensorTypeEnum, 'FLOWSENSOR', INDETERMINATE)
|
|
|
|
|
gassensor = express_getattr(IfcSensorTypeEnum, 'GASSENSOR', INDETERMINATE)
|
|
|
|
|
heatsensor = express_getattr(IfcSensorTypeEnum, 'HEATSENSOR', INDETERMINATE)
|
|
|
|
|
humiditysensor = express_getattr(IfcSensorTypeEnum, 'HUMIDITYSENSOR', INDETERMINATE)
|
|
|
|
|
lightsensor = express_getattr(IfcSensorTypeEnum, 'LIGHTSENSOR', INDETERMINATE)
|
|
|
|
|
moisturesensor = express_getattr(IfcSensorTypeEnum, 'MOISTURESENSOR', INDETERMINATE)
|
|
|
|
|
movementsensor = express_getattr(IfcSensorTypeEnum, 'MOVEMENTSENSOR', INDETERMINATE)
|
|
|
|
|
pressuresensor = express_getattr(IfcSensorTypeEnum, 'PRESSURESENSOR', INDETERMINATE)
|
|
|
|
|
smokesensor = express_getattr(IfcSensorTypeEnum, 'SMOKESENSOR', INDETERMINATE)
|
|
|
|
|
soundsensor = express_getattr(IfcSensorTypeEnum, 'SOUNDSENSOR', INDETERMINATE)
|
|
|
|
|
temperaturesensor = express_getattr(IfcSensorTypeEnum, 'TEMPERATURESENSOR', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcSensorTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcSensorTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcSequenceEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
start_start = express_getattr(IfcSequenceEnum, 'START_START', INDETERMINATE)
|
|
|
|
|
start_finish = express_getattr(IfcSequenceEnum, 'START_FINISH', INDETERMINATE)
|
|
|
|
|
finish_start = express_getattr(IfcSequenceEnum, 'FINISH_START', INDETERMINATE)
|
|
|
|
|
finish_finish = express_getattr(IfcSequenceEnum, 'FINISH_FINISH', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcSequenceEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcServiceLifeFactorTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
a_qualityofcomponents = express_getattr(IfcServiceLifeFactorTypeEnum, 'A_QUALITYOFCOMPONENTS', INDETERMINATE)
|
|
|
|
|
b_designlevel = express_getattr(IfcServiceLifeFactorTypeEnum, 'B_DESIGNLEVEL', INDETERMINATE)
|
|
|
|
|
c_workexecutionlevel = express_getattr(IfcServiceLifeFactorTypeEnum, 'C_WORKEXECUTIONLEVEL', INDETERMINATE)
|
|
|
|
|
d_indoorenvironment = express_getattr(IfcServiceLifeFactorTypeEnum, 'D_INDOORENVIRONMENT', INDETERMINATE)
|
|
|
|
|
e_outdoorenvironment = express_getattr(IfcServiceLifeFactorTypeEnum, 'E_OUTDOORENVIRONMENT', INDETERMINATE)
|
|
|
|
|
f_inuseconditions = express_getattr(IfcServiceLifeFactorTypeEnum, 'F_INUSECONDITIONS', INDETERMINATE)
|
|
|
|
|
g_maintenancelevel = express_getattr(IfcServiceLifeFactorTypeEnum, 'G_MAINTENANCELEVEL', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcServiceLifeFactorTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcServiceLifeFactorTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcServiceLifeTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
actualservicelife = express_getattr(IfcServiceLifeTypeEnum, 'ACTUALSERVICELIFE', INDETERMINATE)
|
|
|
|
|
expectedservicelife = express_getattr(IfcServiceLifeTypeEnum, 'EXPECTEDSERVICELIFE', INDETERMINATE)
|
|
|
|
|
optimisticreferenceservicelife = express_getattr(IfcServiceLifeTypeEnum, 'OPTIMISTICREFERENCESERVICELIFE', INDETERMINATE)
|
|
|
|
|
pessimisticreferenceservicelife = express_getattr(IfcServiceLifeTypeEnum, 'PESSIMISTICREFERENCESERVICELIFE', INDETERMINATE)
|
|
|
|
|
referenceservicelife = express_getattr(IfcServiceLifeTypeEnum, 'REFERENCESERVICELIFE', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcSlabTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
floor = express_getattr(IfcSlabTypeEnum, 'FLOOR', INDETERMINATE)
|
|
|
|
|
roof = express_getattr(IfcSlabTypeEnum, 'ROOF', INDETERMINATE)
|
|
|
|
|
landing = express_getattr(IfcSlabTypeEnum, 'LANDING', INDETERMINATE)
|
|
|
|
|
baseslab = express_getattr(IfcSlabTypeEnum, 'BASESLAB', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcSlabTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcSlabTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcSoundScaleEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
dba = express_getattr(IfcSoundScaleEnum, 'DBA', INDETERMINATE)
|
|
|
|
|
dbb = express_getattr(IfcSoundScaleEnum, 'DBB', INDETERMINATE)
|
|
|
|
|
dbc = express_getattr(IfcSoundScaleEnum, 'DBC', INDETERMINATE)
|
|
|
|
|
nc = express_getattr(IfcSoundScaleEnum, 'NC', INDETERMINATE)
|
|
|
|
|
nr = express_getattr(IfcSoundScaleEnum, 'NR', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcSoundScaleEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcSoundScaleEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcSpaceHeaterTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
sectionalradiator = express_getattr(IfcSpaceHeaterTypeEnum, 'SECTIONALRADIATOR', INDETERMINATE)
|
|
|
|
|
panelradiator = express_getattr(IfcSpaceHeaterTypeEnum, 'PANELRADIATOR', INDETERMINATE)
|
|
|
|
|
tubularradiator = express_getattr(IfcSpaceHeaterTypeEnum, 'TUBULARRADIATOR', INDETERMINATE)
|
|
|
|
|
convector = express_getattr(IfcSpaceHeaterTypeEnum, 'CONVECTOR', INDETERMINATE)
|
|
|
|
|
baseboardheater = express_getattr(IfcSpaceHeaterTypeEnum, 'BASEBOARDHEATER', INDETERMINATE)
|
|
|
|
|
finnedtubeunit = express_getattr(IfcSpaceHeaterTypeEnum, 'FINNEDTUBEUNIT', INDETERMINATE)
|
|
|
|
|
unitheater = express_getattr(IfcSpaceHeaterTypeEnum, 'UNITHEATER', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcSpaceHeaterTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcSpaceHeaterTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcSpaceTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
userdefined = express_getattr(IfcSpaceTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcSpaceTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcStackTerminalTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
birdcage = express_getattr(IfcStackTerminalTypeEnum, 'BIRDCAGE', INDETERMINATE)
|
|
|
|
|
cowl = express_getattr(IfcStackTerminalTypeEnum, 'COWL', INDETERMINATE)
|
|
|
|
|
rainwaterhopper = express_getattr(IfcStackTerminalTypeEnum, 'RAINWATERHOPPER', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcStackTerminalTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcStackTerminalTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcStairFlightTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
straight = express_getattr(IfcStairFlightTypeEnum, 'STRAIGHT', INDETERMINATE)
|
|
|
|
|
winder = express_getattr(IfcStairFlightTypeEnum, 'WINDER', INDETERMINATE)
|
|
|
|
|
spiral = express_getattr(IfcStairFlightTypeEnum, 'SPIRAL', INDETERMINATE)
|
|
|
|
|
curved = express_getattr(IfcStairFlightTypeEnum, 'CURVED', INDETERMINATE)
|
|
|
|
|
freeform = express_getattr(IfcStairFlightTypeEnum, 'FREEFORM', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcStairFlightTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcStairFlightTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcStairTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
straight_run_stair = express_getattr(IfcStairTypeEnum, 'STRAIGHT_RUN_STAIR', INDETERMINATE)
|
|
|
|
|
two_straight_run_stair = express_getattr(IfcStairTypeEnum, 'TWO_STRAIGHT_RUN_STAIR', INDETERMINATE)
|
|
|
|
|
quarter_winding_stair = express_getattr(IfcStairTypeEnum, 'QUARTER_WINDING_STAIR', INDETERMINATE)
|
|
|
|
|
quarter_turn_stair = express_getattr(IfcStairTypeEnum, 'QUARTER_TURN_STAIR', INDETERMINATE)
|
|
|
|
|
half_winding_stair = express_getattr(IfcStairTypeEnum, 'HALF_WINDING_STAIR', INDETERMINATE)
|
|
|
|
|
half_turn_stair = express_getattr(IfcStairTypeEnum, 'HALF_TURN_STAIR', INDETERMINATE)
|
|
|
|
|
two_quarter_winding_stair = express_getattr(IfcStairTypeEnum, 'TWO_QUARTER_WINDING_STAIR', INDETERMINATE)
|
|
|
|
|
two_quarter_turn_stair = express_getattr(IfcStairTypeEnum, 'TWO_QUARTER_TURN_STAIR', INDETERMINATE)
|
|
|
|
|
three_quarter_winding_stair = express_getattr(IfcStairTypeEnum, 'THREE_QUARTER_WINDING_STAIR', INDETERMINATE)
|
|
|
|
|
three_quarter_turn_stair = express_getattr(IfcStairTypeEnum, 'THREE_QUARTER_TURN_STAIR', INDETERMINATE)
|
|
|
|
|
spiral_stair = express_getattr(IfcStairTypeEnum, 'SPIRAL_STAIR', INDETERMINATE)
|
|
|
|
|
double_return_stair = express_getattr(IfcStairTypeEnum, 'DOUBLE_RETURN_STAIR', INDETERMINATE)
|
|
|
|
|
curved_run_stair = express_getattr(IfcStairTypeEnum, 'CURVED_RUN_STAIR', INDETERMINATE)
|
|
|
|
|
two_curved_run_stair = express_getattr(IfcStairTypeEnum, 'TWO_CURVED_RUN_STAIR', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcStairTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcStairTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcStateEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
readwrite = express_getattr(IfcStateEnum, 'READWRITE', INDETERMINATE)
|
|
|
|
|
readonly = express_getattr(IfcStateEnum, 'READONLY', INDETERMINATE)
|
|
|
|
|
locked = express_getattr(IfcStateEnum, 'LOCKED', INDETERMINATE)
|
|
|
|
|
readwritelocked = express_getattr(IfcStateEnum, 'READWRITELOCKED', INDETERMINATE)
|
|
|
|
|
readonlylocked = express_getattr(IfcStateEnum, 'READONLYLOCKED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcStructuralCurveTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
rigid_joined_member = express_getattr(IfcStructuralCurveTypeEnum, 'RIGID_JOINED_MEMBER', INDETERMINATE)
|
|
|
|
|
pin_joined_member = express_getattr(IfcStructuralCurveTypeEnum, 'PIN_JOINED_MEMBER', INDETERMINATE)
|
|
|
|
|
cable = express_getattr(IfcStructuralCurveTypeEnum, 'CABLE', INDETERMINATE)
|
|
|
|
|
tension_member = express_getattr(IfcStructuralCurveTypeEnum, 'TENSION_MEMBER', INDETERMINATE)
|
|
|
|
|
compression_member = express_getattr(IfcStructuralCurveTypeEnum, 'COMPRESSION_MEMBER', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcStructuralCurveTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcStructuralCurveTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcStructuralSurfaceTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
bending_element = express_getattr(IfcStructuralSurfaceTypeEnum, 'BENDING_ELEMENT', INDETERMINATE)
|
|
|
|
|
membrane_element = express_getattr(IfcStructuralSurfaceTypeEnum, 'MEMBRANE_ELEMENT', INDETERMINATE)
|
|
|
|
|
shell = express_getattr(IfcStructuralSurfaceTypeEnum, 'SHELL', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcStructuralSurfaceTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcStructuralSurfaceTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcSurfaceSide = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
positive = express_getattr(IfcSurfaceSide, 'POSITIVE', INDETERMINATE)
|
|
|
|
|
negative = express_getattr(IfcSurfaceSide, 'NEGATIVE', INDETERMINATE)
|
|
|
|
|
both = express_getattr(IfcSurfaceSide, 'BOTH', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcSurfaceTextureEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
bump = express_getattr(IfcSurfaceTextureEnum, 'BUMP', INDETERMINATE)
|
|
|
|
|
opacity = express_getattr(IfcSurfaceTextureEnum, 'OPACITY', INDETERMINATE)
|
|
|
|
|
reflection = express_getattr(IfcSurfaceTextureEnum, 'REFLECTION', INDETERMINATE)
|
|
|
|
|
selfillumination = express_getattr(IfcSurfaceTextureEnum, 'SELFILLUMINATION', INDETERMINATE)
|
|
|
|
|
shininess = express_getattr(IfcSurfaceTextureEnum, 'SHININESS', INDETERMINATE)
|
|
|
|
|
specular = express_getattr(IfcSurfaceTextureEnum, 'SPECULAR', INDETERMINATE)
|
|
|
|
|
texture = express_getattr(IfcSurfaceTextureEnum, 'TEXTURE', INDETERMINATE)
|
|
|
|
|
transparencymap = express_getattr(IfcSurfaceTextureEnum, 'TRANSPARENCYMAP', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcSurfaceTextureEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcSwitchingDeviceTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
contactor = express_getattr(IfcSwitchingDeviceTypeEnum, 'CONTACTOR', INDETERMINATE)
|
|
|
|
|
emergencystop = express_getattr(IfcSwitchingDeviceTypeEnum, 'EMERGENCYSTOP', INDETERMINATE)
|
|
|
|
|
starter = express_getattr(IfcSwitchingDeviceTypeEnum, 'STARTER', INDETERMINATE)
|
|
|
|
|
switchdisconnector = express_getattr(IfcSwitchingDeviceTypeEnum, 'SWITCHDISCONNECTOR', INDETERMINATE)
|
|
|
|
|
toggleswitch = express_getattr(IfcSwitchingDeviceTypeEnum, 'TOGGLESWITCH', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcSwitchingDeviceTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcSwitchingDeviceTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcTankTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
preformed = express_getattr(IfcTankTypeEnum, 'PREFORMED', INDETERMINATE)
|
|
|
|
|
sectional = express_getattr(IfcTankTypeEnum, 'SECTIONAL', INDETERMINATE)
|
|
|
|
|
expansion = express_getattr(IfcTankTypeEnum, 'EXPANSION', INDETERMINATE)
|
|
|
|
|
pressurevessel = express_getattr(IfcTankTypeEnum, 'PRESSUREVESSEL', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcTankTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcTankTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcTendonTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
strand = express_getattr(IfcTendonTypeEnum, 'STRAND', INDETERMINATE)
|
|
|
|
|
wire = express_getattr(IfcTendonTypeEnum, 'WIRE', INDETERMINATE)
|
|
|
|
|
bar = express_getattr(IfcTendonTypeEnum, 'BAR', INDETERMINATE)
|
|
|
|
|
coated = express_getattr(IfcTendonTypeEnum, 'COATED', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcTendonTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcTendonTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcTextPath = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
left = express_getattr(IfcTextPath, 'LEFT', INDETERMINATE)
|
|
|
|
|
right = express_getattr(IfcTextPath, 'RIGHT', INDETERMINATE)
|
|
|
|
|
up = express_getattr(IfcTextPath, 'UP', INDETERMINATE)
|
|
|
|
|
down = express_getattr(IfcTextPath, 'DOWN', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcThermalLoadSourceEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
people = express_getattr(IfcThermalLoadSourceEnum, 'PEOPLE', INDETERMINATE)
|
|
|
|
|
lighting = express_getattr(IfcThermalLoadSourceEnum, 'LIGHTING', INDETERMINATE)
|
|
|
|
|
equipment = express_getattr(IfcThermalLoadSourceEnum, 'EQUIPMENT', INDETERMINATE)
|
|
|
|
|
ventilationindoorair = express_getattr(IfcThermalLoadSourceEnum, 'VENTILATIONINDOORAIR', INDETERMINATE)
|
|
|
|
|
ventilationoutsideair = express_getattr(IfcThermalLoadSourceEnum, 'VENTILATIONOUTSIDEAIR', INDETERMINATE)
|
|
|
|
|
recirculatedair = express_getattr(IfcThermalLoadSourceEnum, 'RECIRCULATEDAIR', INDETERMINATE)
|
|
|
|
|
exhaustair = express_getattr(IfcThermalLoadSourceEnum, 'EXHAUSTAIR', INDETERMINATE)
|
|
|
|
|
airexchangerate = express_getattr(IfcThermalLoadSourceEnum, 'AIREXCHANGERATE', INDETERMINATE)
|
|
|
|
|
drybulbtemperature = express_getattr(IfcThermalLoadSourceEnum, 'DRYBULBTEMPERATURE', INDETERMINATE)
|
|
|
|
|
relativehumidity = express_getattr(IfcThermalLoadSourceEnum, 'RELATIVEHUMIDITY', INDETERMINATE)
|
|
|
|
|
infiltration = express_getattr(IfcThermalLoadSourceEnum, 'INFILTRATION', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcThermalLoadSourceEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcThermalLoadSourceEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcThermalLoadTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
sensible = express_getattr(IfcThermalLoadTypeEnum, 'SENSIBLE', INDETERMINATE)
|
|
|
|
|
latent = express_getattr(IfcThermalLoadTypeEnum, 'LATENT', INDETERMINATE)
|
|
|
|
|
radiant = express_getattr(IfcThermalLoadTypeEnum, 'RADIANT', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcThermalLoadTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcTimeSeriesDataTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
continuous = express_getattr(IfcTimeSeriesDataTypeEnum, 'CONTINUOUS', INDETERMINATE)
|
|
|
|
|
discrete = express_getattr(IfcTimeSeriesDataTypeEnum, 'DISCRETE', INDETERMINATE)
|
|
|
|
|
discretebinary = express_getattr(IfcTimeSeriesDataTypeEnum, 'DISCRETEBINARY', INDETERMINATE)
|
|
|
|
|
piecewisebinary = express_getattr(IfcTimeSeriesDataTypeEnum, 'PIECEWISEBINARY', INDETERMINATE)
|
|
|
|
|
piecewiseconstant = express_getattr(IfcTimeSeriesDataTypeEnum, 'PIECEWISECONSTANT', INDETERMINATE)
|
|
|
|
|
piecewisecontinuous = express_getattr(IfcTimeSeriesDataTypeEnum, 'PIECEWISECONTINUOUS', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcTimeSeriesDataTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcTimeSeriesScheduleTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
annual = express_getattr(IfcTimeSeriesScheduleTypeEnum, 'ANNUAL', INDETERMINATE)
|
|
|
|
|
monthly = express_getattr(IfcTimeSeriesScheduleTypeEnum, 'MONTHLY', INDETERMINATE)
|
|
|
|
|
weekly = express_getattr(IfcTimeSeriesScheduleTypeEnum, 'WEEKLY', INDETERMINATE)
|
|
|
|
|
daily = express_getattr(IfcTimeSeriesScheduleTypeEnum, 'DAILY', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcTimeSeriesScheduleTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcTimeSeriesScheduleTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcTransformerTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
current = express_getattr(IfcTransformerTypeEnum, 'CURRENT', INDETERMINATE)
|
|
|
|
|
frequency = express_getattr(IfcTransformerTypeEnum, 'FREQUENCY', INDETERMINATE)
|
|
|
|
|
voltage = express_getattr(IfcTransformerTypeEnum, 'VOLTAGE', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcTransformerTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcTransformerTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcTransitionCode = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
discontinuous = express_getattr(IfcTransitionCode, 'DISCONTINUOUS', INDETERMINATE)
|
|
|
|
|
continuous = express_getattr(IfcTransitionCode, 'CONTINUOUS', INDETERMINATE)
|
|
|
|
|
contsamegradient = express_getattr(IfcTransitionCode, 'CONTSAMEGRADIENT', INDETERMINATE)
|
|
|
|
|
contsamegradientsamecurvature = express_getattr(IfcTransitionCode, 'CONTSAMEGRADIENTSAMECURVATURE', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcTransportElementTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
elevator = express_getattr(IfcTransportElementTypeEnum, 'ELEVATOR', INDETERMINATE)
|
|
|
|
|
escalator = express_getattr(IfcTransportElementTypeEnum, 'ESCALATOR', INDETERMINATE)
|
|
|
|
|
movingwalkway = express_getattr(IfcTransportElementTypeEnum, 'MOVINGWALKWAY', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcTransportElementTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcTransportElementTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcTrimmingPreference = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
cartesian = express_getattr(IfcTrimmingPreference, 'CARTESIAN', INDETERMINATE)
|
|
|
|
|
parameter = express_getattr(IfcTrimmingPreference, 'PARAMETER', INDETERMINATE)
|
|
|
|
|
unspecified = express_getattr(IfcTrimmingPreference, 'UNSPECIFIED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcTubeBundleTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
finned = express_getattr(IfcTubeBundleTypeEnum, 'FINNED', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcTubeBundleTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcTubeBundleTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcUnitEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
absorbeddoseunit = express_getattr(IfcUnitEnum, 'ABSORBEDDOSEUNIT', INDETERMINATE)
|
|
|
|
|
amountofsubstanceunit = express_getattr(IfcUnitEnum, 'AMOUNTOFSUBSTANCEUNIT', INDETERMINATE)
|
|
|
|
|
areaunit = express_getattr(IfcUnitEnum, 'AREAUNIT', INDETERMINATE)
|
|
|
|
|
doseequivalentunit = express_getattr(IfcUnitEnum, 'DOSEEQUIVALENTUNIT', INDETERMINATE)
|
|
|
|
|
electriccapacitanceunit = express_getattr(IfcUnitEnum, 'ELECTRICCAPACITANCEUNIT', INDETERMINATE)
|
|
|
|
|
electricchargeunit = express_getattr(IfcUnitEnum, 'ELECTRICCHARGEUNIT', INDETERMINATE)
|
|
|
|
|
electricconductanceunit = express_getattr(IfcUnitEnum, 'ELECTRICCONDUCTANCEUNIT', INDETERMINATE)
|
|
|
|
|
electriccurrentunit = express_getattr(IfcUnitEnum, 'ELECTRICCURRENTUNIT', INDETERMINATE)
|
|
|
|
|
electricresistanceunit = express_getattr(IfcUnitEnum, 'ELECTRICRESISTANCEUNIT', INDETERMINATE)
|
|
|
|
|
electricvoltageunit = express_getattr(IfcUnitEnum, 'ELECTRICVOLTAGEUNIT', INDETERMINATE)
|
|
|
|
|
energyunit = express_getattr(IfcUnitEnum, 'ENERGYUNIT', INDETERMINATE)
|
|
|
|
|
forceunit = express_getattr(IfcUnitEnum, 'FORCEUNIT', INDETERMINATE)
|
|
|
|
|
frequencyunit = express_getattr(IfcUnitEnum, 'FREQUENCYUNIT', INDETERMINATE)
|
|
|
|
|
illuminanceunit = express_getattr(IfcUnitEnum, 'ILLUMINANCEUNIT', INDETERMINATE)
|
|
|
|
|
inductanceunit = express_getattr(IfcUnitEnum, 'INDUCTANCEUNIT', INDETERMINATE)
|
|
|
|
|
lengthunit = express_getattr(IfcUnitEnum, 'LENGTHUNIT', INDETERMINATE)
|
|
|
|
|
luminousfluxunit = express_getattr(IfcUnitEnum, 'LUMINOUSFLUXUNIT', INDETERMINATE)
|
|
|
|
|
luminousintensityunit = express_getattr(IfcUnitEnum, 'LUMINOUSINTENSITYUNIT', INDETERMINATE)
|
|
|
|
|
magneticfluxdensityunit = express_getattr(IfcUnitEnum, 'MAGNETICFLUXDENSITYUNIT', INDETERMINATE)
|
|
|
|
|
magneticfluxunit = express_getattr(IfcUnitEnum, 'MAGNETICFLUXUNIT', INDETERMINATE)
|
|
|
|
|
massunit = express_getattr(IfcUnitEnum, 'MASSUNIT', INDETERMINATE)
|
|
|
|
|
planeangleunit = express_getattr(IfcUnitEnum, 'PLANEANGLEUNIT', INDETERMINATE)
|
|
|
|
|
powerunit = express_getattr(IfcUnitEnum, 'POWERUNIT', INDETERMINATE)
|
|
|
|
|
pressureunit = express_getattr(IfcUnitEnum, 'PRESSUREUNIT', INDETERMINATE)
|
|
|
|
|
radioactivityunit = express_getattr(IfcUnitEnum, 'RADIOACTIVITYUNIT', INDETERMINATE)
|
|
|
|
|
solidangleunit = express_getattr(IfcUnitEnum, 'SOLIDANGLEUNIT', INDETERMINATE)
|
|
|
|
|
thermodynamictemperatureunit = express_getattr(IfcUnitEnum, 'THERMODYNAMICTEMPERATUREUNIT', INDETERMINATE)
|
|
|
|
|
timeunit = express_getattr(IfcUnitEnum, 'TIMEUNIT', INDETERMINATE)
|
|
|
|
|
volumeunit = express_getattr(IfcUnitEnum, 'VOLUMEUNIT', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcUnitEnum, 'USERDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcUnitaryEquipmentTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
airhandler = express_getattr(IfcUnitaryEquipmentTypeEnum, 'AIRHANDLER', INDETERMINATE)
|
|
|
|
|
airconditioningunit = express_getattr(IfcUnitaryEquipmentTypeEnum, 'AIRCONDITIONINGUNIT', INDETERMINATE)
|
|
|
|
|
splitsystem = express_getattr(IfcUnitaryEquipmentTypeEnum, 'SPLITSYSTEM', INDETERMINATE)
|
|
|
|
|
rooftopunit = express_getattr(IfcUnitaryEquipmentTypeEnum, 'ROOFTOPUNIT', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcUnitaryEquipmentTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcUnitaryEquipmentTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcValveTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
airrelease = express_getattr(IfcValveTypeEnum, 'AIRRELEASE', INDETERMINATE)
|
|
|
|
|
antivacuum = express_getattr(IfcValveTypeEnum, 'ANTIVACUUM', INDETERMINATE)
|
|
|
|
|
changeover = express_getattr(IfcValveTypeEnum, 'CHANGEOVER', INDETERMINATE)
|
|
|
|
|
check = express_getattr(IfcValveTypeEnum, 'CHECK', INDETERMINATE)
|
|
|
|
|
commissioning = express_getattr(IfcValveTypeEnum, 'COMMISSIONING', INDETERMINATE)
|
|
|
|
|
diverting = express_getattr(IfcValveTypeEnum, 'DIVERTING', INDETERMINATE)
|
|
|
|
|
drawoffcock = express_getattr(IfcValveTypeEnum, 'DRAWOFFCOCK', INDETERMINATE)
|
|
|
|
|
doublecheck = express_getattr(IfcValveTypeEnum, 'DOUBLECHECK', INDETERMINATE)
|
|
|
|
|
doubleregulating = express_getattr(IfcValveTypeEnum, 'DOUBLEREGULATING', INDETERMINATE)
|
|
|
|
|
faucet = express_getattr(IfcValveTypeEnum, 'FAUCET', INDETERMINATE)
|
|
|
|
|
flushing = express_getattr(IfcValveTypeEnum, 'FLUSHING', INDETERMINATE)
|
|
|
|
|
gascock = express_getattr(IfcValveTypeEnum, 'GASCOCK', INDETERMINATE)
|
|
|
|
|
gastap = express_getattr(IfcValveTypeEnum, 'GASTAP', INDETERMINATE)
|
|
|
|
|
isolating = express_getattr(IfcValveTypeEnum, 'ISOLATING', INDETERMINATE)
|
|
|
|
|
mixing = express_getattr(IfcValveTypeEnum, 'MIXING', INDETERMINATE)
|
|
|
|
|
pressurereducing = express_getattr(IfcValveTypeEnum, 'PRESSUREREDUCING', INDETERMINATE)
|
|
|
|
|
pressurerelief = express_getattr(IfcValveTypeEnum, 'PRESSURERELIEF', INDETERMINATE)
|
|
|
|
|
regulating = express_getattr(IfcValveTypeEnum, 'REGULATING', INDETERMINATE)
|
|
|
|
|
safetycutoff = express_getattr(IfcValveTypeEnum, 'SAFETYCUTOFF', INDETERMINATE)
|
|
|
|
|
steamtrap = express_getattr(IfcValveTypeEnum, 'STEAMTRAP', INDETERMINATE)
|
|
|
|
|
stopcock = express_getattr(IfcValveTypeEnum, 'STOPCOCK', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcValveTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcValveTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcVibrationIsolatorTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
compression = express_getattr(IfcVibrationIsolatorTypeEnum, 'COMPRESSION', INDETERMINATE)
|
|
|
|
|
spring = express_getattr(IfcVibrationIsolatorTypeEnum, 'SPRING', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcVibrationIsolatorTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcVibrationIsolatorTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcWallTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
standard = express_getattr(IfcWallTypeEnum, 'STANDARD', INDETERMINATE)
|
|
|
|
|
polygonal = express_getattr(IfcWallTypeEnum, 'POLYGONAL', INDETERMINATE)
|
|
|
|
|
shear = express_getattr(IfcWallTypeEnum, 'SHEAR', INDETERMINATE)
|
|
|
|
|
elementedwall = express_getattr(IfcWallTypeEnum, 'ELEMENTEDWALL', INDETERMINATE)
|
|
|
|
|
plumbingwall = express_getattr(IfcWallTypeEnum, 'PLUMBINGWALL', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcWallTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcWallTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcWasteTerminalTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
floortrap = express_getattr(IfcWasteTerminalTypeEnum, 'FLOORTRAP', INDETERMINATE)
|
|
|
|
|
floorwaste = express_getattr(IfcWasteTerminalTypeEnum, 'FLOORWASTE', INDETERMINATE)
|
|
|
|
|
gullysump = express_getattr(IfcWasteTerminalTypeEnum, 'GULLYSUMP', INDETERMINATE)
|
|
|
|
|
gullytrap = express_getattr(IfcWasteTerminalTypeEnum, 'GULLYTRAP', INDETERMINATE)
|
|
|
|
|
greaseinterceptor = express_getattr(IfcWasteTerminalTypeEnum, 'GREASEINTERCEPTOR', INDETERMINATE)
|
|
|
|
|
oilinterceptor = express_getattr(IfcWasteTerminalTypeEnum, 'OILINTERCEPTOR', INDETERMINATE)
|
|
|
|
|
petrolinterceptor = express_getattr(IfcWasteTerminalTypeEnum, 'PETROLINTERCEPTOR', INDETERMINATE)
|
|
|
|
|
roofdrain = express_getattr(IfcWasteTerminalTypeEnum, 'ROOFDRAIN', INDETERMINATE)
|
|
|
|
|
wastedisposalunit = express_getattr(IfcWasteTerminalTypeEnum, 'WASTEDISPOSALUNIT', INDETERMINATE)
|
|
|
|
|
wastetrap = express_getattr(IfcWasteTerminalTypeEnum, 'WASTETRAP', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcWasteTerminalTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcWasteTerminalTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcWindowPanelOperationEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
sidehungrighthand = express_getattr(IfcWindowPanelOperationEnum, 'SIDEHUNGRIGHTHAND', INDETERMINATE)
|
|
|
|
|
sidehunglefthand = express_getattr(IfcWindowPanelOperationEnum, 'SIDEHUNGLEFTHAND', INDETERMINATE)
|
|
|
|
|
tiltandturnrighthand = express_getattr(IfcWindowPanelOperationEnum, 'TILTANDTURNRIGHTHAND', INDETERMINATE)
|
|
|
|
|
tiltandturnlefthand = express_getattr(IfcWindowPanelOperationEnum, 'TILTANDTURNLEFTHAND', INDETERMINATE)
|
|
|
|
|
tophung = express_getattr(IfcWindowPanelOperationEnum, 'TOPHUNG', INDETERMINATE)
|
|
|
|
|
bottomhung = express_getattr(IfcWindowPanelOperationEnum, 'BOTTOMHUNG', INDETERMINATE)
|
|
|
|
|
pivothorizontal = express_getattr(IfcWindowPanelOperationEnum, 'PIVOTHORIZONTAL', INDETERMINATE)
|
|
|
|
|
pivotvertical = express_getattr(IfcWindowPanelOperationEnum, 'PIVOTVERTICAL', INDETERMINATE)
|
|
|
|
|
slidinghorizontal = express_getattr(IfcWindowPanelOperationEnum, 'SLIDINGHORIZONTAL', INDETERMINATE)
|
|
|
|
|
slidingvertical = express_getattr(IfcWindowPanelOperationEnum, 'SLIDINGVERTICAL', INDETERMINATE)
|
|
|
|
|
removablecasement = express_getattr(IfcWindowPanelOperationEnum, 'REMOVABLECASEMENT', INDETERMINATE)
|
|
|
|
|
fixedcasement = express_getattr(IfcWindowPanelOperationEnum, 'FIXEDCASEMENT', INDETERMINATE)
|
|
|
|
|
otheroperation = express_getattr(IfcWindowPanelOperationEnum, 'OTHEROPERATION', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcWindowPanelOperationEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcWindowPanelPositionEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
left = express_getattr(IfcWindowPanelPositionEnum, 'LEFT', INDETERMINATE)
|
|
|
|
|
middle = express_getattr(IfcWindowPanelPositionEnum, 'MIDDLE', INDETERMINATE)
|
|
|
|
|
right = express_getattr(IfcWindowPanelPositionEnum, 'RIGHT', INDETERMINATE)
|
|
|
|
|
bottom = express_getattr(IfcWindowPanelPositionEnum, 'BOTTOM', INDETERMINATE)
|
|
|
|
|
top = express_getattr(IfcWindowPanelPositionEnum, 'TOP', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcWindowPanelPositionEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcWindowStyleConstructionEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
aluminium = express_getattr(IfcWindowStyleConstructionEnum, 'ALUMINIUM', INDETERMINATE)
|
|
|
|
|
high_grade_steel = express_getattr(IfcWindowStyleConstructionEnum, 'HIGH_GRADE_STEEL', INDETERMINATE)
|
|
|
|
|
steel = express_getattr(IfcWindowStyleConstructionEnum, 'STEEL', INDETERMINATE)
|
|
|
|
|
wood = express_getattr(IfcWindowStyleConstructionEnum, 'WOOD', INDETERMINATE)
|
|
|
|
|
aluminium_wood = express_getattr(IfcWindowStyleConstructionEnum, 'ALUMINIUM_WOOD', INDETERMINATE)
|
|
|
|
|
plastic = express_getattr(IfcWindowStyleConstructionEnum, 'PLASTIC', INDETERMINATE)
|
|
|
|
|
other_construction = express_getattr(IfcWindowStyleConstructionEnum, 'OTHER_CONSTRUCTION', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcWindowStyleConstructionEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcWindowStyleOperationEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
single_panel = express_getattr(IfcWindowStyleOperationEnum, 'SINGLE_PANEL', INDETERMINATE)
|
|
|
|
|
double_panel_vertical = express_getattr(IfcWindowStyleOperationEnum, 'DOUBLE_PANEL_VERTICAL', INDETERMINATE)
|
|
|
|
|
double_panel_horizontal = express_getattr(IfcWindowStyleOperationEnum, 'DOUBLE_PANEL_HORIZONTAL', INDETERMINATE)
|
|
|
|
|
triple_panel_vertical = express_getattr(IfcWindowStyleOperationEnum, 'TRIPLE_PANEL_VERTICAL', INDETERMINATE)
|
|
|
|
|
triple_panel_bottom = express_getattr(IfcWindowStyleOperationEnum, 'TRIPLE_PANEL_BOTTOM', INDETERMINATE)
|
|
|
|
|
triple_panel_top = express_getattr(IfcWindowStyleOperationEnum, 'TRIPLE_PANEL_TOP', INDETERMINATE)
|
|
|
|
|
triple_panel_left = express_getattr(IfcWindowStyleOperationEnum, 'TRIPLE_PANEL_LEFT', INDETERMINATE)
|
|
|
|
|
triple_panel_right = express_getattr(IfcWindowStyleOperationEnum, 'TRIPLE_PANEL_RIGHT', INDETERMINATE)
|
|
|
|
|
triple_panel_horizontal = express_getattr(IfcWindowStyleOperationEnum, 'TRIPLE_PANEL_HORIZONTAL', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcWindowStyleOperationEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcWindowStyleOperationEnum, 'NOTDEFINED', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
IfcWorkControlTypeEnum = enum_namespace()
|
2025-12-24 15:33:36 +01:00
|
|
|
actual = express_getattr(IfcWorkControlTypeEnum, 'ACTUAL', INDETERMINATE)
|
|
|
|
|
baseline = express_getattr(IfcWorkControlTypeEnum, 'BASELINE', INDETERMINATE)
|
|
|
|
|
planned = express_getattr(IfcWorkControlTypeEnum, 'PLANNED', INDETERMINATE)
|
|
|
|
|
userdefined = express_getattr(IfcWorkControlTypeEnum, 'USERDEFINED', INDETERMINATE)
|
|
|
|
|
notdefined = express_getattr(IfcWorkControlTypeEnum, 'NOTDEFINED', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def Ifc2DCompositeCurve(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('Ifc2DCompositeCurve', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcActionRequest(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcActionRequest', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcActor(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcActor', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcActorRole(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcActorRole', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcActuatorType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcActuatorType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcAddress(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcAddress', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcAirTerminalBoxType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcAirTerminalBoxType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcAirTerminalType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcAirTerminalType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcAirToAirHeatRecoveryType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcAirToAirHeatRecoveryType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcAlarmType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcAlarmType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcAngularDimension(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcAngularDimension', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcAnnotation(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcAnnotation', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcAnnotationCurveOccurrence(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcAnnotationCurveOccurrence', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcAnnotationFillArea(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcAnnotationFillArea', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcAnnotationFillAreaOccurrence(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcAnnotationFillAreaOccurrence', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcAnnotationOccurrence(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcAnnotationOccurrence', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcAnnotationSurface(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcAnnotationSurface', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcAnnotationSurfaceOccurrence(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcAnnotationSurfaceOccurrence', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcAnnotationSymbolOccurrence(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcAnnotationSymbolOccurrence', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcAnnotationTextOccurrence(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcAnnotationTextOccurrence', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcApplication(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcApplication', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcAppliedValue(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcAppliedValue', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcAppliedValueRelationship(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcAppliedValueRelationship', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcApproval(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcApproval', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcApprovalActorRelationship(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcApprovalActorRelationship', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcApprovalPropertyRelationship(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcApprovalPropertyRelationship', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcApprovalRelationship(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcApprovalRelationship', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcArbitraryClosedProfileDef(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcArbitraryClosedProfileDef', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcArbitraryOpenProfileDef(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcArbitraryOpenProfileDef', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcArbitraryProfileDefWithVoids(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcArbitraryProfileDefWithVoids', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcAsset(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcAsset', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcAsymmetricIShapeProfileDef(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcAsymmetricIShapeProfileDef', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcAxis1Placement(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcAxis1Placement', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcAxis2Placement2D(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcAxis2Placement2D', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcAxis2Placement3D(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcAxis2Placement3D', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcBSplineCurve(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcBSplineCurve', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcBeam(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcBeam', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcBeamType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcBeamType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcBezierCurve(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcBezierCurve', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcBlobTexture(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcBlobTexture', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcBlock(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcBlock', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcBoilerType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcBoilerType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcBooleanClippingResult(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcBooleanClippingResult', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcBooleanResult(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcBooleanResult', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcBoundaryCondition(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcBoundaryCondition', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcBoundaryEdgeCondition(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcBoundaryEdgeCondition', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcBoundaryFaceCondition(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcBoundaryFaceCondition', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcBoundaryNodeCondition(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcBoundaryNodeCondition', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcBoundaryNodeConditionWarping(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcBoundaryNodeConditionWarping', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcBoundedCurve(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcBoundedCurve', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcBoundedSurface(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcBoundedSurface', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcBoundingBox(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcBoundingBox', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcBoxedHalfSpace(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcBoxedHalfSpace', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcBuilding(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcBuilding', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcBuildingElement(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcBuildingElement', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcBuildingElementComponent(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcBuildingElementComponent', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcBuildingElementPart(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcBuildingElementPart', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcBuildingElementProxy(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcBuildingElementProxy', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcBuildingElementProxyType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcBuildingElementProxyType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcBuildingElementType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcBuildingElementType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcBuildingStorey(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcBuildingStorey', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCShapeProfileDef(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCShapeProfileDef', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCableCarrierFittingType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCableCarrierFittingType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCableCarrierSegmentType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCableCarrierSegmentType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCableSegmentType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCableSegmentType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCalendarDate(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCalendarDate', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCartesianPoint(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCartesianPoint', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCartesianTransformationOperator(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCartesianTransformationOperator', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCartesianTransformationOperator2D(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCartesianTransformationOperator2D', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCartesianTransformationOperator2DnonUniform(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCartesianTransformationOperator2DnonUniform', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCartesianTransformationOperator3D(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCartesianTransformationOperator3D', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCartesianTransformationOperator3DnonUniform(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCartesianTransformationOperator3DnonUniform', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCenterLineProfileDef(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCenterLineProfileDef', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcChamferEdgeFeature(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcChamferEdgeFeature', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcChillerType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcChillerType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCircle(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCircle', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCircleHollowProfileDef(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCircleHollowProfileDef', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCircleProfileDef(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCircleProfileDef', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcClassification(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcClassification', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcClassificationItem(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcClassificationItem', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcClassificationItemRelationship(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcClassificationItemRelationship', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcClassificationNotation(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcClassificationNotation', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcClassificationNotationFacet(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcClassificationNotationFacet', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcClassificationReference(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcClassificationReference', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcClosedShell(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcClosedShell', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCoilType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCoilType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcColourRgb(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcColourRgb', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcColourSpecification(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcColourSpecification', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcColumn(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcColumn', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcColumnType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcColumnType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcComplexProperty(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcComplexProperty', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCompositeCurve(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCompositeCurve', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCompositeCurveSegment(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCompositeCurveSegment', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCompositeProfileDef(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCompositeProfileDef', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCompressorType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCompressorType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCondenserType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCondenserType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCondition(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCondition', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcConditionCriterion(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcConditionCriterion', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcConic(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcConic', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcConnectedFaceSet(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcConnectedFaceSet', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcConnectionCurveGeometry(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcConnectionCurveGeometry', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcConnectionGeometry(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcConnectionGeometry', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcConnectionPointEccentricity(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcConnectionPointEccentricity', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcConnectionPointGeometry(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcConnectionPointGeometry', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcConnectionPortGeometry(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcConnectionPortGeometry', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcConnectionSurfaceGeometry(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcConnectionSurfaceGeometry', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcConstraint(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcConstraint', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcConstraintAggregationRelationship(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcConstraintAggregationRelationship', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcConstraintClassificationRelationship(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcConstraintClassificationRelationship', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcConstraintRelationship(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcConstraintRelationship', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcConstructionEquipmentResource(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcConstructionEquipmentResource', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcConstructionMaterialResource(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcConstructionMaterialResource', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcConstructionProductResource(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcConstructionProductResource', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcConstructionResource(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcConstructionResource', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcContextDependentUnit(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcContextDependentUnit', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcControl(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcControl', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcControllerType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcControllerType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcConversionBasedUnit(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcConversionBasedUnit', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCooledBeamType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCooledBeamType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCoolingTowerType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCoolingTowerType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCoordinatedUniversalTimeOffset(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCoordinatedUniversalTimeOffset', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCostItem(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCostItem', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCostSchedule(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCostSchedule', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCostValue(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCostValue', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCovering(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCovering', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCoveringType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCoveringType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCraneRailAShapeProfileDef(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCraneRailAShapeProfileDef', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCraneRailFShapeProfileDef(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCraneRailFShapeProfileDef', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCrewResource(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCrewResource', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCsgPrimitive3D(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCsgPrimitive3D', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCsgSolid(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCsgSolid', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCurrencyRelationship(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCurrencyRelationship', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCurtainWall(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCurtainWall', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCurtainWallType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCurtainWallType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCurve(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCurve', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCurveBoundedPlane(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCurveBoundedPlane', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCurveStyle(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCurveStyle', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCurveStyleFont(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCurveStyleFont', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCurveStyleFontAndScaling(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCurveStyleFontAndScaling', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcCurveStyleFontPattern(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcCurveStyleFontPattern', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDamperType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDamperType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDateAndTime(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDateAndTime', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDefinedSymbol(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDefinedSymbol', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDerivedProfileDef(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDerivedProfileDef', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDerivedUnit(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDerivedUnit', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDerivedUnitElement(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDerivedUnitElement', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDiameterDimension(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDiameterDimension', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDimensionCalloutRelationship(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDimensionCalloutRelationship', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDimensionCurve(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDimensionCurve', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDimensionCurveDirectedCallout(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDimensionCurveDirectedCallout', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDimensionCurveTerminator(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDimensionCurveTerminator', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDimensionPair(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDimensionPair', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDimensionalExponents(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDimensionalExponents', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDirection(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDirection', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDiscreteAccessory(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDiscreteAccessory', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDiscreteAccessoryType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDiscreteAccessoryType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDistributionChamberElement(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDistributionChamberElement', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDistributionChamberElementType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDistributionChamberElementType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDistributionControlElement(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDistributionControlElement', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDistributionControlElementType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDistributionControlElementType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDistributionElement(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDistributionElement', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDistributionElementType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDistributionElementType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDistributionFlowElement(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDistributionFlowElement', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDistributionFlowElementType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDistributionFlowElementType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDistributionPort(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDistributionPort', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDocumentElectronicFormat(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDocumentElectronicFormat', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDocumentInformation(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDocumentInformation', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDocumentInformationRelationship(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDocumentInformationRelationship', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDocumentReference(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDocumentReference', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDoor(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDoor', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDoorLiningProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDoorLiningProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDoorPanelProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDoorPanelProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDoorStyle(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDoorStyle', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDraughtingCallout(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDraughtingCallout', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDraughtingCalloutRelationship(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDraughtingCalloutRelationship', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDraughtingPreDefinedColour(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDraughtingPreDefinedColour', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDraughtingPreDefinedCurveFont(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDraughtingPreDefinedCurveFont', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDraughtingPreDefinedTextFont(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDraughtingPreDefinedTextFont', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDuctFittingType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDuctFittingType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDuctSegmentType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDuctSegmentType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcDuctSilencerType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcDuctSilencerType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcEdge(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcEdge', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcEdgeCurve(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcEdgeCurve', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcEdgeFeature(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcEdgeFeature', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcEdgeLoop(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcEdgeLoop', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcElectricApplianceType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcElectricApplianceType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcElectricDistributionPoint(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcElectricDistributionPoint', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcElectricFlowStorageDeviceType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcElectricFlowStorageDeviceType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcElectricGeneratorType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcElectricGeneratorType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcElectricHeaterType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcElectricHeaterType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcElectricMotorType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcElectricMotorType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcElectricTimeControlType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcElectricTimeControlType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcElectricalBaseProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcElectricalBaseProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcElectricalCircuit(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcElectricalCircuit', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcElectricalElement(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcElectricalElement', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcElement(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcElement', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcElementAssembly(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcElementAssembly', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcElementComponent(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcElementComponent', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcElementComponentType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcElementComponentType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcElementQuantity(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcElementQuantity', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcElementType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcElementType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcElementarySurface(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcElementarySurface', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcEllipse(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcEllipse', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcEllipseProfileDef(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcEllipseProfileDef', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcEnergyConversionDevice(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcEnergyConversionDevice', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcEnergyConversionDeviceType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcEnergyConversionDeviceType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcEnergyProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcEnergyProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcEnvironmentalImpactValue(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcEnvironmentalImpactValue', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcEquipmentElement(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcEquipmentElement', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcEquipmentStandard(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcEquipmentStandard', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcEvaporativeCoolerType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcEvaporativeCoolerType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcEvaporatorType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcEvaporatorType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcExtendedMaterialProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcExtendedMaterialProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcExternalReference(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcExternalReference', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcExternallyDefinedHatchStyle(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcExternallyDefinedHatchStyle', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcExternallyDefinedSurfaceStyle(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcExternallyDefinedSurfaceStyle', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcExternallyDefinedSymbol(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcExternallyDefinedSymbol', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcExternallyDefinedTextFont(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcExternallyDefinedTextFont', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcExtrudedAreaSolid(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcExtrudedAreaSolid', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFace(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFace', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFaceBasedSurfaceModel(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFaceBasedSurfaceModel', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFaceBound(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFaceBound', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFaceOuterBound(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFaceOuterBound', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFaceSurface(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFaceSurface', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFacetedBrep(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFacetedBrep', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFacetedBrepWithVoids(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFacetedBrepWithVoids', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFailureConnectionCondition(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFailureConnectionCondition', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFanType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFanType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFastener(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFastener', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFastenerType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFastenerType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFeatureElement(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFeatureElement', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFeatureElementAddition(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFeatureElementAddition', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFeatureElementSubtraction(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFeatureElementSubtraction', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFillAreaStyle(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFillAreaStyle', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFillAreaStyleHatching(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFillAreaStyleHatching', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFillAreaStyleTileSymbolWithStyle(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFillAreaStyleTileSymbolWithStyle', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFillAreaStyleTiles(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFillAreaStyleTiles', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFilterType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFilterType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFireSuppressionTerminalType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFireSuppressionTerminalType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFlowController(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFlowController', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFlowControllerType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFlowControllerType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFlowFitting(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFlowFitting', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFlowFittingType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFlowFittingType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFlowInstrumentType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFlowInstrumentType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFlowMeterType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFlowMeterType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFlowMovingDevice(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFlowMovingDevice', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFlowMovingDeviceType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFlowMovingDeviceType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFlowSegment(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFlowSegment', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFlowSegmentType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFlowSegmentType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFlowStorageDevice(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFlowStorageDevice', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFlowStorageDeviceType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFlowStorageDeviceType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFlowTerminal(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFlowTerminal', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFlowTerminalType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFlowTerminalType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFlowTreatmentDevice(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFlowTreatmentDevice', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFlowTreatmentDeviceType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFlowTreatmentDeviceType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFluidFlowProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFluidFlowProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFooting(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFooting', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFuelProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFuelProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFurnishingElement(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFurnishingElement', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFurnishingElementType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFurnishingElementType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFurnitureStandard(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFurnitureStandard', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcFurnitureType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcFurnitureType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcGasTerminalType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcGasTerminalType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcGeneralMaterialProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcGeneralMaterialProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcGeneralProfileProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcGeneralProfileProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcGeometricCurveSet(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcGeometricCurveSet', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcGeometricRepresentationContext(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcGeometricRepresentationContext', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcGeometricRepresentationItem(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcGeometricRepresentationItem', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcGeometricRepresentationSubContext(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcGeometricRepresentationSubContext', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcGeometricSet(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcGeometricSet', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcGrid(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcGrid', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcGridAxis(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcGridAxis', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcGridPlacement(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcGridPlacement', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcGroup(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcGroup', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcHalfSpaceSolid(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcHalfSpaceSolid', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcHeatExchangerType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcHeatExchangerType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcHumidifierType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcHumidifierType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcHygroscopicMaterialProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcHygroscopicMaterialProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcIShapeProfileDef(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcIShapeProfileDef', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcImageTexture(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcImageTexture', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcInventory(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcInventory', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcIrregularTimeSeries(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcIrregularTimeSeries', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcIrregularTimeSeriesValue(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcIrregularTimeSeriesValue', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcJunctionBoxType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcJunctionBoxType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcLShapeProfileDef(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcLShapeProfileDef', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcLaborResource(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcLaborResource', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcLampType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcLampType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcLibraryInformation(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcLibraryInformation', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcLibraryReference(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcLibraryReference', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcLightDistributionData(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcLightDistributionData', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcLightFixtureType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcLightFixtureType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcLightIntensityDistribution(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcLightIntensityDistribution', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcLightSource(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcLightSource', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcLightSourceAmbient(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcLightSourceAmbient', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcLightSourceDirectional(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcLightSourceDirectional', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcLightSourceGoniometric(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcLightSourceGoniometric', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcLightSourcePositional(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcLightSourcePositional', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcLightSourceSpot(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcLightSourceSpot', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcLine(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcLine', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcLinearDimension(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcLinearDimension', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcLocalPlacement(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcLocalPlacement', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcLocalTime(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcLocalTime', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcLoop(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcLoop', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcManifoldSolidBrep(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcManifoldSolidBrep', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcMappedItem(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcMappedItem', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcMaterial(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcMaterial', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcMaterialClassificationRelationship(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcMaterialClassificationRelationship', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcMaterialDefinitionRepresentation(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcMaterialDefinitionRepresentation', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcMaterialLayer(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcMaterialLayer', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcMaterialLayerSet(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcMaterialLayerSet', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcMaterialLayerSetUsage(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcMaterialLayerSetUsage', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcMaterialList(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcMaterialList', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcMaterialProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcMaterialProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcMeasureWithUnit(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcMeasureWithUnit', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcMechanicalConcreteMaterialProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcMechanicalConcreteMaterialProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcMechanicalFastener(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcMechanicalFastener', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcMechanicalFastenerType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcMechanicalFastenerType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcMechanicalMaterialProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcMechanicalMaterialProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcMechanicalSteelMaterialProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcMechanicalSteelMaterialProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcMember(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcMember', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcMemberType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcMemberType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcMetric(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcMetric', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcMonetaryUnit(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcMonetaryUnit', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcMotorConnectionType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcMotorConnectionType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcMove(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcMove', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcNamedUnit(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcNamedUnit', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcObject(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcObject', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcObjectDefinition(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcObjectDefinition', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcObjectPlacement(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcObjectPlacement', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcObjective(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcObjective', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcOccupant(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcOccupant', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcOffsetCurve2D(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcOffsetCurve2D', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcOffsetCurve3D(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcOffsetCurve3D', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcOneDirectionRepeatFactor(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcOneDirectionRepeatFactor', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcOpenShell(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcOpenShell', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcOpeningElement(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcOpeningElement', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcOpticalMaterialProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcOpticalMaterialProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcOrderAction(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcOrderAction', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcOrganization(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcOrganization', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcOrganizationRelationship(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcOrganizationRelationship', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcOrientedEdge(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcOrientedEdge', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcOutletType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcOutletType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcOwnerHistory(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcOwnerHistory', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcParameterizedProfileDef(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcParameterizedProfileDef', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPath(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPath', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPerformanceHistory(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPerformanceHistory', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPermeableCoveringProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPermeableCoveringProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPermit(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPermit', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPerson(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPerson', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPersonAndOrganization(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPersonAndOrganization', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPhysicalComplexQuantity(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPhysicalComplexQuantity', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPhysicalQuantity(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPhysicalQuantity', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPhysicalSimpleQuantity(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPhysicalSimpleQuantity', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPile(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPile', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPipeFittingType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPipeFittingType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPipeSegmentType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPipeSegmentType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPixelTexture(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPixelTexture', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPlacement(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPlacement', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPlanarBox(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPlanarBox', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPlanarExtent(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPlanarExtent', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPlane(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPlane', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPlate(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPlate', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPlateType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPlateType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPoint(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPoint', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPointOnCurve(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPointOnCurve', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPointOnSurface(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPointOnSurface', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPolyLoop(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPolyLoop', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPolygonalBoundedHalfSpace(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPolygonalBoundedHalfSpace', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPolyline(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPolyline', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPort(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPort', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPostalAddress(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPostalAddress', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPreDefinedColour(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPreDefinedColour', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPreDefinedCurveFont(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPreDefinedCurveFont', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPreDefinedDimensionSymbol(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPreDefinedDimensionSymbol', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPreDefinedItem(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPreDefinedItem', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPreDefinedPointMarkerSymbol(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPreDefinedPointMarkerSymbol', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPreDefinedSymbol(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPreDefinedSymbol', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPreDefinedTerminatorSymbol(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPreDefinedTerminatorSymbol', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPreDefinedTextFont(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPreDefinedTextFont', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPresentationLayerAssignment(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPresentationLayerAssignment', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPresentationLayerWithStyle(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPresentationLayerWithStyle', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPresentationStyle(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPresentationStyle', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPresentationStyleAssignment(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPresentationStyleAssignment', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcProcedure(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcProcedure', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcProcess(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcProcess', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcProduct(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcProduct', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcProductDefinitionShape(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcProductDefinitionShape', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcProductRepresentation(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcProductRepresentation', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcProductsOfCombustionProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcProductsOfCombustionProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcProfileDef(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcProfileDef', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcProfileProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcProfileProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcProject(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcProject', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcProjectOrder(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcProjectOrder', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcProjectOrderRecord(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcProjectOrderRecord', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcProjectionCurve(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcProjectionCurve', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcProjectionElement(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcProjectionElement', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcProperty(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcProperty', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPropertyBoundedValue(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPropertyBoundedValue', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPropertyConstraintRelationship(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPropertyConstraintRelationship', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPropertyDefinition(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPropertyDefinition', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPropertyDependencyRelationship(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPropertyDependencyRelationship', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPropertyEnumeratedValue(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPropertyEnumeratedValue', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPropertyEnumeration(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPropertyEnumeration', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPropertyListValue(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPropertyListValue', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPropertyReferenceValue(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPropertyReferenceValue', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPropertySet(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPropertySet', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPropertySetDefinition(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPropertySetDefinition', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPropertySingleValue(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPropertySingleValue', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPropertyTableValue(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPropertyTableValue', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcProtectiveDeviceType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcProtectiveDeviceType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcProxy(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcProxy', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcPumpType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcPumpType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcQuantityArea(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcQuantityArea', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcQuantityCount(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcQuantityCount', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcQuantityLength(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcQuantityLength', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcQuantityTime(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcQuantityTime', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcQuantityVolume(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcQuantityVolume', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcQuantityWeight(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcQuantityWeight', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRadiusDimension(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRadiusDimension', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRailing(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRailing', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRailingType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRailingType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRamp(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRamp', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRampFlight(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRampFlight', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRampFlightType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRampFlightType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRationalBezierCurve(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRationalBezierCurve', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRectangleHollowProfileDef(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRectangleHollowProfileDef', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRectangleProfileDef(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRectangleProfileDef', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRectangularPyramid(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRectangularPyramid', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRectangularTrimmedSurface(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRectangularTrimmedSurface', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcReferencesValueDocument(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcReferencesValueDocument', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRegularTimeSeries(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRegularTimeSeries', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcReinforcementBarProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcReinforcementBarProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcReinforcementDefinitionProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcReinforcementDefinitionProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcReinforcingBar(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcReinforcingBar', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcReinforcingElement(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcReinforcingElement', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcReinforcingMesh(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcReinforcingMesh', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelAggregates(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelAggregates', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelAssigns(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelAssigns', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelAssignsTasks(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelAssignsTasks', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelAssignsToActor(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelAssignsToActor', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelAssignsToControl(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelAssignsToControl', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelAssignsToGroup(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelAssignsToGroup', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelAssignsToProcess(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelAssignsToProcess', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelAssignsToProduct(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelAssignsToProduct', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelAssignsToProjectOrder(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelAssignsToProjectOrder', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelAssignsToResource(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelAssignsToResource', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelAssociates(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelAssociates', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelAssociatesAppliedValue(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelAssociatesAppliedValue', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelAssociatesApproval(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelAssociatesApproval', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelAssociatesClassification(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelAssociatesClassification', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelAssociatesConstraint(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelAssociatesConstraint', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelAssociatesDocument(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelAssociatesDocument', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelAssociatesLibrary(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelAssociatesLibrary', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelAssociatesMaterial(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelAssociatesMaterial', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelAssociatesProfileProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelAssociatesProfileProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelConnects(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelConnects', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelConnectsElements(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelConnectsElements', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelConnectsPathElements(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelConnectsPathElements', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelConnectsPortToElement(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelConnectsPortToElement', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelConnectsPorts(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelConnectsPorts', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelConnectsStructuralActivity(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelConnectsStructuralActivity', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelConnectsStructuralElement(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelConnectsStructuralElement', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelConnectsStructuralMember(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelConnectsStructuralMember', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelConnectsWithEccentricity(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelConnectsWithEccentricity', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelConnectsWithRealizingElements(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelConnectsWithRealizingElements', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelContainedInSpatialStructure(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelContainedInSpatialStructure', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelCoversBldgElements(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelCoversBldgElements', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelCoversSpaces(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelCoversSpaces', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelDecomposes(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelDecomposes', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelDefines(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelDefines', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelDefinesByProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelDefinesByProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelDefinesByType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelDefinesByType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelFillsElement(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelFillsElement', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelFlowControlElements(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelFlowControlElements', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelInteractionRequirements(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelInteractionRequirements', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelNests(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelNests', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelOccupiesSpaces(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelOccupiesSpaces', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelOverridesProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelOverridesProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelProjectsElement(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelProjectsElement', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelReferencedInSpatialStructure(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelReferencedInSpatialStructure', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelSchedulesCostItems(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelSchedulesCostItems', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelSequence(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelSequence', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelServicesBuildings(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelServicesBuildings', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelSpaceBoundary(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelSpaceBoundary', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelVoidsElement(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelVoidsElement', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelationship(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelationship', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRelaxation(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRelaxation', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRepresentation(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRepresentation', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRepresentationContext(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRepresentationContext', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRepresentationItem(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRepresentationItem', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRepresentationMap(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRepresentationMap', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcResource(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcResource', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRevolvedAreaSolid(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRevolvedAreaSolid', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRibPlateProfileProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRibPlateProfileProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRightCircularCone(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRightCircularCone', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRightCircularCylinder(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRightCircularCylinder', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRoof(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRoof', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRoot(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRoot', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRoundedEdgeFeature(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRoundedEdgeFeature', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcRoundedRectangleProfileDef(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcRoundedRectangleProfileDef', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSIUnit(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSIUnit', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSanitaryTerminalType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSanitaryTerminalType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcScheduleTimeControl(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcScheduleTimeControl', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSectionProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSectionProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSectionReinforcementProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSectionReinforcementProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSectionedSpine(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSectionedSpine', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSensorType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSensorType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcServiceLife(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcServiceLife', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcServiceLifeFactor(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcServiceLifeFactor', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcShapeAspect(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcShapeAspect', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcShapeModel(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcShapeModel', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcShapeRepresentation(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcShapeRepresentation', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcShellBasedSurfaceModel(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcShellBasedSurfaceModel', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSimpleProperty(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSimpleProperty', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSite(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSite', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSlab(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSlab', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSlabType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSlabType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSlippageConnectionCondition(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSlippageConnectionCondition', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSolidModel(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSolidModel', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSoundProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSoundProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSoundValue(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSoundValue', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSpace(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSpace', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSpaceHeaterType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSpaceHeaterType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSpaceProgram(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSpaceProgram', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSpaceThermalLoadProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSpaceThermalLoadProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSpaceType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSpaceType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSpatialStructureElement(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSpatialStructureElement', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSpatialStructureElementType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSpatialStructureElementType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSphere(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSphere', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStackTerminalType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStackTerminalType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStair(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStair', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStairFlight(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStairFlight', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStairFlightType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStairFlightType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralAction(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralAction', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralActivity(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralActivity', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralAnalysisModel(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralAnalysisModel', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralConnection(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralConnection', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralConnectionCondition(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralConnectionCondition', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralCurveConnection(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralCurveConnection', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralCurveMember(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralCurveMember', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralCurveMemberVarying(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralCurveMemberVarying', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralItem(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralItem', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralLinearAction(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralLinearAction', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralLinearActionVarying(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralLinearActionVarying', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralLoad(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralLoad', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralLoadGroup(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralLoadGroup', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralLoadLinearForce(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralLoadLinearForce', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralLoadPlanarForce(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralLoadPlanarForce', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralLoadSingleDisplacement(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralLoadSingleDisplacement', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralLoadSingleDisplacementDistortion(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralLoadSingleDisplacementDistortion', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralLoadSingleForce(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralLoadSingleForce', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralLoadSingleForceWarping(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralLoadSingleForceWarping', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralLoadStatic(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralLoadStatic', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralLoadTemperature(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralLoadTemperature', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralMember(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralMember', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralPlanarAction(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralPlanarAction', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralPlanarActionVarying(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralPlanarActionVarying', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralPointAction(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralPointAction', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralPointConnection(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralPointConnection', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralPointReaction(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralPointReaction', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralProfileProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralProfileProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralReaction(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralReaction', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralResultGroup(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralResultGroup', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralSteelProfileProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralSteelProfileProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralSurfaceConnection(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralSurfaceConnection', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralSurfaceMember(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralSurfaceMember', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuralSurfaceMemberVarying(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuralSurfaceMemberVarying', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStructuredDimensionCallout(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStructuredDimensionCallout', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStyleModel(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStyleModel', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStyledItem(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStyledItem', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcStyledRepresentation(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcStyledRepresentation', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSubContractResource(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSubContractResource', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSubedge(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSubedge', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSurface(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSurface', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSurfaceCurveSweptAreaSolid(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSurfaceCurveSweptAreaSolid', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSurfaceOfLinearExtrusion(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSurfaceOfLinearExtrusion', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSurfaceOfRevolution(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSurfaceOfRevolution', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSurfaceStyle(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSurfaceStyle', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSurfaceStyleLighting(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSurfaceStyleLighting', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSurfaceStyleRefraction(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSurfaceStyleRefraction', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSurfaceStyleRendering(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSurfaceStyleRendering', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSurfaceStyleShading(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSurfaceStyleShading', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSurfaceStyleWithTextures(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSurfaceStyleWithTextures', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSurfaceTexture(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSurfaceTexture', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSweptAreaSolid(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSweptAreaSolid', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSweptDiskSolid(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSweptDiskSolid', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSweptSurface(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSweptSurface', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSwitchingDeviceType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSwitchingDeviceType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSymbolStyle(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSymbolStyle', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSystem(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSystem', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcSystemFurnitureElementType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcSystemFurnitureElementType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTShapeProfileDef(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTShapeProfileDef', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTable(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTable', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTableRow(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTableRow', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTankType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTankType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTask(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTask', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTelecomAddress(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTelecomAddress', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTendon(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTendon', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTendonAnchor(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTendonAnchor', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTerminatorSymbol(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTerminatorSymbol', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTextLiteral(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTextLiteral', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTextLiteralWithExtent(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTextLiteralWithExtent', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTextStyle(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTextStyle', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTextStyleFontModel(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTextStyleFontModel', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTextStyleForDefinedFont(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTextStyleForDefinedFont', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTextStyleTextModel(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTextStyleTextModel', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTextStyleWithBoxCharacteristics(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTextStyleWithBoxCharacteristics', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTextureCoordinate(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTextureCoordinate', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTextureCoordinateGenerator(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTextureCoordinateGenerator', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTextureMap(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTextureMap', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTextureVertex(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTextureVertex', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcThermalMaterialProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcThermalMaterialProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTimeSeries(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTimeSeries', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTimeSeriesReferenceRelationship(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTimeSeriesReferenceRelationship', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTimeSeriesSchedule(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTimeSeriesSchedule', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTimeSeriesValue(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTimeSeriesValue', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTopologicalRepresentationItem(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTopologicalRepresentationItem', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTopologyRepresentation(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTopologyRepresentation', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTransformerType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTransformerType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTransportElement(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTransportElement', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTransportElementType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTransportElementType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTrapeziumProfileDef(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTrapeziumProfileDef', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTrimmedCurve(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTrimmedCurve', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTubeBundleType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTubeBundleType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTwoDirectionRepeatFactor(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTwoDirectionRepeatFactor', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTypeObject(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTypeObject', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcTypeProduct(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcTypeProduct', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcUShapeProfileDef(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcUShapeProfileDef', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcUnitAssignment(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcUnitAssignment', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcUnitaryEquipmentType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcUnitaryEquipmentType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcValveType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcValveType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcVector(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcVector', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcVertex(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcVertex', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcVertexBasedTextureMap(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcVertexBasedTextureMap', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcVertexLoop(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcVertexLoop', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcVertexPoint(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcVertexPoint', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcVibrationIsolatorType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcVibrationIsolatorType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcVirtualElement(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcVirtualElement', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcVirtualGridIntersection(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcVirtualGridIntersection', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcWall(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcWall', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcWallStandardCase(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcWallStandardCase', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcWallType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcWallType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcWasteTerminalType(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcWasteTerminalType', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcWaterProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcWaterProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcWindow(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcWindow', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcWindowLiningProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcWindowLiningProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcWindowPanelProperties(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcWindowPanelProperties', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcWindowStyle(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcWindowStyle', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcWorkControl(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcWorkControl', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcWorkPlan(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcWorkPlan', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcWorkSchedule(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcWorkSchedule', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcZShapeProfileDef(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcZShapeProfileDef', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def IfcZone(*args, **kwargs):
|
|
|
|
|
return ifcopenshell.create_entity('IfcZone', 'IFC2X3', *args, **kwargs)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcBoxAlignment_WR1:
|
|
|
|
|
SCOPE = 'type'
|
|
|
|
|
TYPE_NAME = 'IfcBoxAlignment'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (express_getattr(self, 'lower', INDETERMINATE)() in ['top-left', 'top-middle', 'top-right', 'middle-left', 'center', 'middle-right', 'bottom-left', 'bottom-middle', 'bottom-right']) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCompoundPlaneAngleMeasure_WR1:
|
|
|
|
|
SCOPE = 'type'
|
|
|
|
|
TYPE_NAME = 'IfcCompoundPlaneAngleMeasure'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
|
|
|
|
assert (-360 <= express_getitem(self, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE) < 360) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCompoundPlaneAngleMeasure_WR2:
|
|
|
|
|
SCOPE = 'type'
|
|
|
|
|
TYPE_NAME = 'IfcCompoundPlaneAngleMeasure'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
|
|
|
|
assert (-60 <= express_getitem(self, 2 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE) < 60) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCompoundPlaneAngleMeasure_WR3:
|
|
|
|
|
SCOPE = 'type'
|
|
|
|
|
TYPE_NAME = 'IfcCompoundPlaneAngleMeasure'
|
|
|
|
|
RULE_NAME = 'WR3'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
|
|
|
|
assert (-60 <= express_getitem(self, 3 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE) < 60) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCompoundPlaneAngleMeasure_WR4:
|
|
|
|
|
SCOPE = 'type'
|
|
|
|
|
TYPE_NAME = 'IfcCompoundPlaneAngleMeasure'
|
|
|
|
|
RULE_NAME = 'WR4'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
|
|
|
|
assert (express_getitem(self, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE) >= 0 and express_getitem(self, 2 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE) >= 0 and (express_getitem(self, 3 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE) >= 0) or (express_getitem(self, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE) <= 0 and express_getitem(self, 2 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE) <= 0 and (express_getitem(self, 3 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE) <= 0))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDaylightSavingHour_WR1:
|
|
|
|
|
SCOPE = 'type'
|
|
|
|
|
TYPE_NAME = 'IfcDaylightSavingHour'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
|
|
|
|
assert (0 <= self <= 2) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDimensionCount_WR1:
|
|
|
|
|
SCOPE = 'type'
|
|
|
|
|
TYPE_NAME = 'IfcDimensionCount'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
|
|
|
|
assert (0 < self <= 3) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcFontStyle_WR1:
|
|
|
|
|
SCOPE = 'type'
|
|
|
|
|
TYPE_NAME = 'IfcFontStyle'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (express_getattr(self, 'lower', INDETERMINATE)() in ['normal', 'italic', 'oblique']) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcFontVariant_WR1:
|
|
|
|
|
SCOPE = 'type'
|
|
|
|
|
TYPE_NAME = 'IfcFontVariant'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (express_getattr(self, 'lower', INDETERMINATE)() in ['normal', 'small-caps']) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcFontWeight_WR1:
|
|
|
|
|
SCOPE = 'type'
|
|
|
|
|
TYPE_NAME = 'IfcFontWeight'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (express_getattr(self, 'lower', INDETERMINATE)() in ['normal', 'small-caps', '100', '200', '300', '400', '500', '600', '700', '800', '900']) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcHeatingValueMeasure_WR1:
|
|
|
|
|
SCOPE = 'type'
|
|
|
|
|
TYPE_NAME = 'IfcHeatingValueMeasure'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
|
|
|
|
assert (self > 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcHourInDay_WR1:
|
|
|
|
|
SCOPE = 'type'
|
|
|
|
|
TYPE_NAME = 'IfcHourInDay'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
|
|
|
|
assert (0 <= self < 24) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcMinuteInHour_WR1:
|
|
|
|
|
SCOPE = 'type'
|
|
|
|
|
TYPE_NAME = 'IfcMinuteInHour'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
|
|
|
|
assert (0 <= self <= 59) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcMonthInYearNumber_WR1:
|
|
|
|
|
SCOPE = 'type'
|
|
|
|
|
TYPE_NAME = 'IfcMonthInYearNumber'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
|
|
|
|
assert (1 <= self <= 12) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcNormalisedRatioMeasure_WR1:
|
|
|
|
|
SCOPE = 'type'
|
|
|
|
|
TYPE_NAME = 'IfcNormalisedRatioMeasure'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
|
|
|
|
assert (0.0 <= self <= 1.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPHMeasure_WR21:
|
|
|
|
|
SCOPE = 'type'
|
|
|
|
|
TYPE_NAME = 'IfcPHMeasure'
|
|
|
|
|
RULE_NAME = 'WR21'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (0.0 <= self <= 14.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPositiveLengthMeasure_WR1:
|
|
|
|
|
SCOPE = 'type'
|
|
|
|
|
TYPE_NAME = 'IfcPositiveLengthMeasure'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (self > 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPositivePlaneAngleMeasure_WR1:
|
|
|
|
|
SCOPE = 'type'
|
|
|
|
|
TYPE_NAME = 'IfcPositivePlaneAngleMeasure'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (self > 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPositiveRatioMeasure_WR1:
|
|
|
|
|
SCOPE = 'type'
|
|
|
|
|
TYPE_NAME = 'IfcPositiveRatioMeasure'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (self > 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcSecondInMinute_WR1:
|
|
|
|
|
SCOPE = 'type'
|
|
|
|
|
TYPE_NAME = 'IfcSecondInMinute'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (0.0 <= self < 60.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcSpecularRoughness_WR1:
|
|
|
|
|
SCOPE = 'type'
|
|
|
|
|
TYPE_NAME = 'IfcSpecularRoughness'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (0.0 <= self <= 1.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcTextAlignment_WR1:
|
|
|
|
|
SCOPE = 'type'
|
|
|
|
|
TYPE_NAME = 'IfcTextAlignment'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (express_getattr(self, 'lower', INDETERMINATE)() in ['left', 'right', 'center', 'justify']) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcTextDecoration_WR1:
|
|
|
|
|
SCOPE = 'type'
|
|
|
|
|
TYPE_NAME = 'IfcTextDecoration'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (express_getattr(self, 'lower', INDETERMINATE)() in ['none', 'underline', 'overline', 'line-through', 'blink']) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcTextTransformation_WR1:
|
|
|
|
|
SCOPE = 'type'
|
|
|
|
|
TYPE_NAME = 'IfcTextTransformation'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (express_getattr(self, 'lower', INDETERMINATE)() in ['capitalize', 'uppercase', 'lowercase', 'none']) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class Ifc2DCompositeCurve_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'Ifc2DCompositeCurve'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert express_getattr(self, 'ClosedCurve', INDETERMINATE) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class Ifc2DCompositeCurve_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'Ifc2DCompositeCurve'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (express_getattr(self, 'Dim', INDETERMINATE) == 2) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcActorRole_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcActorRole'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
role = express_getattr(self, 'Role', INDETERMINATE)
|
|
|
|
|
assert (role != express_getattr(IfcRoleEnum, 'USERDEFINED', INDETERMINATE) or (role == express_getattr(IfcRoleEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'UserDefinedRole', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcAddress_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcAddress'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
purpose = express_getattr(self, 'Purpose', INDETERMINATE)
|
|
|
|
|
assert (not exists(purpose) or (purpose != express_getattr(IfcAddressTypeEnum, 'USERDEFINED', INDETERMINATE) or (purpose == express_getattr(IfcAddressTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'UserDefinedPurpose', INDETERMINATE))))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcAirTerminalBoxType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcAirTerminalBoxType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcAirTerminalBoxTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcAirTerminalBoxTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcAirTerminalType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcAirTerminalType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcAirTerminalTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcAirTerminalTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcAirToAirHeatRecoveryType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcAirToAirHeatRecoveryType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcAirToAirHeatRecoveryTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcAirToAirHeatRecoveryTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcAnnotationCurveOccurrence_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcAnnotationCurveOccurrence'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (not exists(express_getattr(self, 'Item', INDETERMINATE)) or 'ifc2x3.ifccurve' in typeof(express_getattr(self, 'Item', INDETERMINATE))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcAnnotationFillAreaOccurrence_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcAnnotationFillAreaOccurrence'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (not exists(express_getattr(self, 'Item', INDETERMINATE)) or 'ifc2x3.ifcannotationfillarea' in typeof(express_getattr(self, 'Item', INDETERMINATE))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcAnnotationSurface_WR01:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcAnnotationSurface'
|
|
|
|
|
RULE_NAME = 'WR01'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
item = express_getattr(self, 'Item', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (sizeof(['ifc2x3.ifcsurface', 'ifc2x3.ifcshellbasedsurfacemodel', 'ifc2x3.ifcfacebasedsurfacemodel', 'ifc2x3.ifcsolidmodel', 'ifc2x3.ifcbooleanresult', 'ifc2x3.ifccsgprimitive3d'] * typeof(item)) >= 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcAnnotationSurfaceOccurrence_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcAnnotationSurfaceOccurrence'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (not exists(express_getattr(self, 'Item', INDETERMINATE)) or sizeof(['ifc2x3.ifcsurface', 'ifc2x3.ifcfacebasedsurfacemodel', 'ifc2x3.ifcshellbasedsurfacemodel', 'ifc2x3.ifcsolidmodel'] * typeof(express_getattr(self, 'Item', INDETERMINATE))) > 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcAnnotationSymbolOccurrence_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcAnnotationSymbolOccurrence'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (not exists(express_getattr(self, 'Item', INDETERMINATE)) or 'ifc2x3.ifcdefinedsymbol' in typeof(express_getattr(self, 'Item', INDETERMINATE))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcAnnotationTextOccurrence_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcAnnotationTextOccurrence'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (not exists(express_getattr(self, 'Item', INDETERMINATE)) or 'ifc2x3.ifctextliteral' in typeof(express_getattr(self, 'Item', INDETERMINATE))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcAppliedValue_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcAppliedValue'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
appliedvalue = express_getattr(self, 'AppliedValue', INDETERMINATE)
|
|
|
|
|
valueofcomponents = express_getattr(self, 'ValueOfComponents', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (exists(appliedvalue) or exists(valueofcomponents)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcArbitraryClosedProfileDef_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcArbitraryClosedProfileDef'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
outercurve = express_getattr(self, 'OuterCurve', INDETERMINATE)
|
|
|
|
|
assert (express_getattr(outercurve, 'Dim', INDETERMINATE) == 2) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcArbitraryClosedProfileDef_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcArbitraryClosedProfileDef'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
outercurve = express_getattr(self, 'OuterCurve', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not 'ifc2x3.ifcline' in typeof(outercurve)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcArbitraryClosedProfileDef_WR3:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcArbitraryClosedProfileDef'
|
|
|
|
|
RULE_NAME = 'WR3'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
outercurve = express_getattr(self, 'OuterCurve', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not 'ifc2x3.ifcoffsetcurve2d' in typeof(outercurve)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcArbitraryOpenProfileDef_WR11:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcArbitraryOpenProfileDef'
|
|
|
|
|
RULE_NAME = 'WR11'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert ('ifc2x3.ifccenterlineprofiledef' in typeof(self) or express_getattr(self, 'ProfileType', INDETERMINATE) == express_getattr(IfcProfileTypeEnum, 'CURVE', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcArbitraryOpenProfileDef_WR12:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcArbitraryOpenProfileDef'
|
|
|
|
|
RULE_NAME = 'WR12'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
curve = express_getattr(self, 'Curve', INDETERMINATE)
|
|
|
|
|
assert (express_getattr(curve, 'Dim', INDETERMINATE) == 2) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcArbitraryProfileDefWithVoids_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcArbitraryProfileDefWithVoids'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (express_getattr(self, 'ProfileType', INDETERMINATE) == area) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcArbitraryProfileDefWithVoids_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcArbitraryProfileDefWithVoids'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
innercurves = express_getattr(self, 'InnerCurves', INDETERMINATE)
|
|
|
|
|
assert (sizeof([temp for temp in innercurves if express_getattr(temp, 'Dim', INDETERMINATE) != 2]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcArbitraryProfileDefWithVoids_WR3:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcArbitraryProfileDefWithVoids'
|
|
|
|
|
RULE_NAME = 'WR3'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
innercurves = express_getattr(self, 'InnerCurves', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (sizeof([temp for temp in innercurves if 'ifc2x3.ifcline' in typeof(temp)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcAsset_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcAsset'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([temp for temp in express_getattr(express_getattr(self, 'IsGroupedBy', INDETERMINATE), 'RelatedObjects', INDETERMINATE) if not 'ifc2x3.ifcelement' in typeof(temp)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcAxis1Placement_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcAxis1Placement'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
axis = express_getattr(self, 'Axis', INDETERMINATE)
|
|
|
|
|
assert (not exists(axis) or express_getattr(axis, 'Dim', INDETERMINATE) == 3) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcAxis1Placement_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcAxis1Placement'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (express_getattr(express_getattr(self, 'Location', INDETERMINATE), 'Dim', INDETERMINATE) == 3) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcAxis1Placement_Z(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
axis = express_getattr(self, 'Axis', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
return nvl(IfcNormalise(axis), IfcDirection(DirectionRatios=[0.0, 0.0, 1.0]))
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcAxis2Placement2D_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcAxis2Placement2D'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
refdirection = express_getattr(self, 'RefDirection', INDETERMINATE)
|
|
|
|
|
assert (not exists(refdirection) or express_getattr(refdirection, 'Dim', INDETERMINATE) == 2) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcAxis2Placement2D_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcAxis2Placement2D'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (express_getattr(express_getattr(self, 'Location', INDETERMINATE), 'Dim', INDETERMINATE) == 2) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcAxis2Placement2D_P(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
refdirection = express_getattr(self, 'RefDirection', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcBuild2Axes(refdirection)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcAxis2Placement3D_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcAxis2Placement3D'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (express_getattr(express_getattr(self, 'Location', INDETERMINATE), 'Dim', INDETERMINATE) == 3) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcAxis2Placement3D_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcAxis2Placement3D'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
axis = express_getattr(self, 'Axis', INDETERMINATE)
|
|
|
|
|
assert (not exists(axis) or express_getattr(axis, 'Dim', INDETERMINATE) == 3) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcAxis2Placement3D_WR3:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcAxis2Placement3D'
|
|
|
|
|
RULE_NAME = 'WR3'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
refdirection = express_getattr(self, 'RefDirection', INDETERMINATE)
|
|
|
|
|
assert (not exists(refdirection) or express_getattr(refdirection, 'Dim', INDETERMINATE) == 3) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcAxis2Placement3D_WR4:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcAxis2Placement3D'
|
|
|
|
|
RULE_NAME = 'WR4'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
axis = express_getattr(self, 'Axis', INDETERMINATE)
|
|
|
|
|
refdirection = express_getattr(self, 'RefDirection', INDETERMINATE)
|
|
|
|
|
assert (not exists(axis) or not exists(refdirection) or express_getattr(IfcCrossProduct(axis, refdirection), 'Magnitude', INDETERMINATE) > 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcAxis2Placement3D_WR5:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcAxis2Placement3D'
|
|
|
|
|
RULE_NAME = 'WR5'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
axis = express_getattr(self, 'Axis', INDETERMINATE)
|
|
|
|
|
refdirection = express_getattr(self, 'RefDirection', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not exists(axis) ^ exists(refdirection)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcAxis2Placement3D_P(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
axis = express_getattr(self, 'Axis', INDETERMINATE)
|
|
|
|
|
refdirection = express_getattr(self, 'RefDirection', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcBuildAxes(axis, refdirection)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcBSplineCurve_WR41:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcBSplineCurve'
|
|
|
|
|
RULE_NAME = 'WR41'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
controlpointslist = express_getattr(self, 'ControlPointsList', INDETERMINATE)
|
|
|
|
|
assert (sizeof([temp for temp in controlpointslist if express_getattr(temp, 'Dim', INDETERMINATE) != express_getattr(express_getitem(controlpointslist, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Dim', INDETERMINATE)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcBSplineCurve_ControlPoints(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
controlpointslist = express_getattr(self, 'ControlPointsList', INDETERMINATE)
|
|
|
|
|
upperindexoncontrolpoints = express_getattr(self, 'UpperIndexOnControlPoints', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcListToArray(controlpointslist, 0, upperindexoncontrolpoints)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcBSplineCurve_UpperIndexOnControlPoints(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
controlpointslist = express_getattr(self, 'ControlPointsList', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
return sizeof(controlpointslist) - 1
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcBlobTexture_WR11:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcBlobTexture'
|
|
|
|
|
RULE_NAME = 'WR11'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (express_getattr(express_getattr(self, 'RasterFormat', INDETERMINATE), 'lower', INDETERMINATE)() in ['bmp', 'jpg', 'gif', 'png']) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcBoilerType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcBoilerType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcBoilerTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcBoilerTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcBooleanClippingResult_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcBooleanClippingResult'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
firstoperand = express_getattr(self, 'FirstOperand', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert ('ifc2x3.ifcsweptareasolid' in typeof(firstoperand) or 'ifc2x3.ifcbooleanclippingresult' in typeof(firstoperand)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcBooleanClippingResult_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcBooleanClippingResult'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
secondoperand = express_getattr(self, 'SecondOperand', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert ('ifc2x3.ifchalfspacesolid' in typeof(secondoperand)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcBooleanClippingResult_WR3:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcBooleanClippingResult'
|
|
|
|
|
RULE_NAME = 'WR3'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
operator = express_getattr(self, 'Operator', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (operator == difference) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcBooleanResult_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcBooleanResult'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
firstoperand = express_getattr(self, 'FirstOperand', INDETERMINATE)
|
|
|
|
|
secondoperand = express_getattr(self, 'SecondOperand', INDETERMINATE)
|
|
|
|
|
assert (express_getattr(firstoperand, 'Dim', INDETERMINATE) == express_getattr(secondoperand, 'Dim', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcBooleanResult_Dim(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
firstoperand = express_getattr(self, 'FirstOperand', INDETERMINATE)
|
|
|
|
|
return express_getattr(firstoperand, 'Dim', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcBoundingBox_Dim(self):
|
|
|
|
|
return 3
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcBoxedHalfSpace_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcBoxedHalfSpace'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (not 'ifc2x3.ifccurveboundedplane' in typeof(express_getattr(self, 'BaseSurface', INDETERMINATE))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcBuildingElementProxy_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcBuildingElementProxy'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert exists(express_getattr(self, 'Name', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCShapeProfileDef_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCShapeProfileDef'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
depth = express_getattr(self, 'Depth', INDETERMINATE)
|
|
|
|
|
girth = express_getattr(self, 'Girth', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (girth < depth / 2.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCShapeProfileDef_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCShapeProfileDef'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
depth = express_getattr(self, 'Depth', INDETERMINATE)
|
|
|
|
|
width = express_getattr(self, 'Width', INDETERMINATE)
|
|
|
|
|
internalfilletradius = express_getattr(self, 'InternalFilletRadius', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not exists(internalfilletradius) or (internalfilletradius <= width / 2.0 and internalfilletradius <= depth / 2.0)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCShapeProfileDef_WR3:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCShapeProfileDef'
|
|
|
|
|
RULE_NAME = 'WR3'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
depth = express_getattr(self, 'Depth', INDETERMINATE)
|
|
|
|
|
width = express_getattr(self, 'Width', INDETERMINATE)
|
|
|
|
|
wallthickness = express_getattr(self, 'WallThickness', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (wallthickness < width / 2.0 and wallthickness < depth / 2.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCableCarrierFittingType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCableCarrierFittingType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcCableCarrierFittingTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcCableCarrierFittingTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCalendarDate_WR21:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCalendarDate'
|
|
|
|
|
RULE_NAME = 'WR21'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
|
|
|
|
assert IfcValidCalendarDate(self) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCartesianPoint_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCartesianPoint'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
coordinates = express_getattr(self, 'Coordinates', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (hiindex(coordinates) >= 2) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcCartesianPoint_Dim(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
coordinates = express_getattr(self, 'Coordinates', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
return hiindex(coordinates)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCartesianTransformationOperator_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCartesianTransformationOperator'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
scl = express_getattr(self, 'Scl', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (scl > 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcCartesianTransformationOperator_Scl(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
scale = express_getattr(self, 'Scale', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
return nvl(scale, 1.0)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcCartesianTransformationOperator_Dim(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
localorigin = express_getattr(self, 'LocalOrigin', INDETERMINATE)
|
|
|
|
|
return express_getattr(localorigin, 'Dim', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCartesianTransformationOperator2D_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCartesianTransformationOperator2D'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (express_getattr(self, 'Dim', INDETERMINATE) == 2) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCartesianTransformationOperator2D_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCartesianTransformationOperator2D'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (not exists(express_getattr(self, 'Axis1', INDETERMINATE)) or express_getattr(express_getattr(self, 'Axis1', INDETERMINATE), 'Dim', INDETERMINATE) == 2) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCartesianTransformationOperator2D_WR3:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCartesianTransformationOperator2D'
|
|
|
|
|
RULE_NAME = 'WR3'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (not exists(express_getattr(self, 'Axis2', INDETERMINATE)) or express_getattr(express_getattr(self, 'Axis2', INDETERMINATE), 'Dim', INDETERMINATE) == 2) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcCartesianTransformationOperator2D_U(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
return IfcBaseAxis(2, express_getattr(self, 'Axis1', INDETERMINATE), express_getattr(self, 'Axis2', INDETERMINATE), None)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCartesianTransformationOperator2DnonUniform_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCartesianTransformationOperator2DnonUniform'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
scl2 = express_getattr(self, 'Scl2', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (scl2 > 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcCartesianTransformationOperator2DnonUniform_Scl2(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
scale2 = express_getattr(self, 'Scale2', INDETERMINATE)
|
|
|
|
|
return nvl(scale2, express_getattr(self, 'Scl', INDETERMINATE))
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCartesianTransformationOperator3D_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCartesianTransformationOperator3D'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (express_getattr(self, 'Dim', INDETERMINATE) == 3) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCartesianTransformationOperator3D_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCartesianTransformationOperator3D'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (not exists(express_getattr(self, 'Axis1', INDETERMINATE)) or express_getattr(express_getattr(self, 'Axis1', INDETERMINATE), 'Dim', INDETERMINATE) == 3) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCartesianTransformationOperator3D_WR3:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCartesianTransformationOperator3D'
|
|
|
|
|
RULE_NAME = 'WR3'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (not exists(express_getattr(self, 'Axis2', INDETERMINATE)) or express_getattr(express_getattr(self, 'Axis2', INDETERMINATE), 'Dim', INDETERMINATE) == 3) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCartesianTransformationOperator3D_WR4:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCartesianTransformationOperator3D'
|
|
|
|
|
RULE_NAME = 'WR4'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
axis3 = express_getattr(self, 'Axis3', INDETERMINATE)
|
|
|
|
|
assert (not exists(axis3) or express_getattr(axis3, 'Dim', INDETERMINATE) == 3) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcCartesianTransformationOperator3D_U(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
axis3 = express_getattr(self, 'Axis3', INDETERMINATE)
|
|
|
|
|
return IfcBaseAxis(3, express_getattr(self, 'Axis1', INDETERMINATE), express_getattr(self, 'Axis2', INDETERMINATE), axis3)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCartesianTransformationOperator3DnonUniform_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCartesianTransformationOperator3DnonUniform'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
scl2 = express_getattr(self, 'Scl2', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (scl2 > 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCartesianTransformationOperator3DnonUniform_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCartesianTransformationOperator3DnonUniform'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
scl3 = express_getattr(self, 'Scl3', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (scl3 > 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcCartesianTransformationOperator3DnonUniform_Scl2(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
scale2 = express_getattr(self, 'Scale2', INDETERMINATE)
|
|
|
|
|
return nvl(scale2, express_getattr(self, 'Scl', INDETERMINATE))
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcCartesianTransformationOperator3DnonUniform_Scl3(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
scale3 = express_getattr(self, 'Scale3', INDETERMINATE)
|
|
|
|
|
return nvl(scale3, express_getattr(self, 'Scl', INDETERMINATE))
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcChillerType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcChillerType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcChillerTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcChillerTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCircleHollowProfileDef_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCircleHollowProfileDef'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
wallthickness = express_getattr(self, 'WallThickness', INDETERMINATE)
|
|
|
|
|
assert (wallthickness < express_getattr(self, 'Radius', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCoilType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCoilType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcCoilTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcCoilTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcComplexProperty_WR21:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcComplexProperty'
|
|
|
|
|
RULE_NAME = 'WR21'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
hasproperties = express_getattr(self, 'HasProperties', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (sizeof([temp for temp in hasproperties if self == temp]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcComplexProperty_WR22:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcComplexProperty'
|
|
|
|
|
RULE_NAME = 'WR22'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
hasproperties = express_getattr(self, 'HasProperties', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert IfcUniquePropertyName(hasproperties) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCompositeCurve_WR41:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCompositeCurve'
|
|
|
|
|
RULE_NAME = 'WR41'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
segments = express_getattr(self, 'Segments', INDETERMINATE)
|
|
|
|
|
closedcurve = express_getattr(self, 'ClosedCurve', INDETERMINATE)
|
|
|
|
|
assert (not closedcurve and sizeof([temp for temp in segments if express_getattr(temp, 'Transition', INDETERMINATE) == discontinuous]) == 1 or (closedcurve and sizeof([temp for temp in segments if express_getattr(temp, 'Transition', INDETERMINATE) == discontinuous]) == 0)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCompositeCurve_WR42:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCompositeCurve'
|
|
|
|
|
RULE_NAME = 'WR42'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
segments = express_getattr(self, 'Segments', INDETERMINATE)
|
|
|
|
|
assert (sizeof([temp for temp in segments if express_getattr(temp, 'Dim', INDETERMINATE) != express_getattr(express_getitem(segments, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Dim', INDETERMINATE)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcCompositeCurve_NSegments(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
segments = express_getattr(self, 'Segments', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
return sizeof(segments)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcCompositeCurve_ClosedCurve(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
segments = express_getattr(self, 'Segments', INDETERMINATE)
|
|
|
|
|
nsegments = express_getattr(self, 'NSegments', INDETERMINATE)
|
|
|
|
|
return express_getattr(express_getitem(segments, nsegments - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Transition', INDETERMINATE) != discontinuous
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCompositeCurveSegment_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCompositeCurveSegment'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
parentcurve = express_getattr(self, 'ParentCurve', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert ('ifc2x3.ifcboundedcurve' in typeof(parentcurve)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcCompositeCurveSegment_Dim(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
parentcurve = express_getattr(self, 'ParentCurve', INDETERMINATE)
|
|
|
|
|
return express_getattr(parentcurve, 'Dim', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCompositeProfileDef_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCompositeProfileDef'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
profiles = express_getattr(self, 'Profiles', INDETERMINATE)
|
|
|
|
|
assert (sizeof([temp for temp in profiles if express_getattr(temp, 'ProfileType', INDETERMINATE) != express_getattr(express_getitem(profiles, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'ProfileType', INDETERMINATE)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCompositeProfileDef_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCompositeProfileDef'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
profiles = express_getattr(self, 'Profiles', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (sizeof([temp for temp in profiles if 'ifc2x3.ifccompositeprofiledef' in typeof(temp)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCompressorType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCompressorType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcCompressorTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcCompressorTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCondenserType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCondenserType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcCondenserTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcCondenserTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcConditionCriterion_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcConditionCriterion'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert exists(express_getattr(self, 'Name', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcConstraint_WR11:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcConstraint'
|
|
|
|
|
RULE_NAME = 'WR11'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
constraintgrade = express_getattr(self, 'ConstraintGrade', INDETERMINATE)
|
|
|
|
|
assert (constraintgrade != express_getattr(IfcConstraintEnum, 'USERDEFINED', INDETERMINATE) or (constraintgrade == express_getattr(IfcConstraintEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'UserDefinedGrade', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcConstraintAggregationRelationship_WR11:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcConstraintAggregationRelationship'
|
|
|
|
|
RULE_NAME = 'WR11'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
relatingconstraint = express_getattr(self, 'RelatingConstraint', INDETERMINATE)
|
|
|
|
|
relatedconstraints = express_getattr(self, 'RelatedConstraints', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (sizeof([temp for temp in relatedconstraints if temp == relatingconstraint]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcConstraintRelationship_WR11:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcConstraintRelationship'
|
|
|
|
|
RULE_NAME = 'WR11'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
relatingconstraint = express_getattr(self, 'RelatingConstraint', INDETERMINATE)
|
|
|
|
|
relatedconstraints = express_getattr(self, 'RelatedConstraints', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (sizeof([temp for temp in relatedconstraints if temp == relatingconstraint]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcConstructionMaterialResource_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcConstructionMaterialResource'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof(express_getattr(self, 'ResourceOf', INDETERMINATE)) <= 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcConstructionMaterialResource_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcConstructionMaterialResource'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (not exists(lambda : express_getitem(express_getattr(self, 'ResourceOf', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)) or express_getattr(express_getitem(express_getattr(self, 'ResourceOf', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'RelatedObjectsType', INDETERMINATE) == express_getattr(IfcObjectTypeEnum, 'PRODUCT', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcConstructionProductResource_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcConstructionProductResource'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof(express_getattr(self, 'ResourceOf', INDETERMINATE)) <= 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcConstructionProductResource_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcConstructionProductResource'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (not exists(lambda : express_getitem(express_getattr(self, 'ResourceOf', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)) or express_getattr(express_getitem(express_getattr(self, 'ResourceOf', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'RelatedObjectsType', INDETERMINATE) == express_getattr(IfcObjectTypeEnum, 'PRODUCT', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCooledBeamType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCooledBeamType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcCooledBeamTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcCooledBeamTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCoolingTowerType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCoolingTowerType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcCoolingTowerTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcCoolingTowerTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCovering_WR61:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCovering'
|
|
|
|
|
RULE_NAME = 'WR61'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (not exists(predefinedtype) or predefinedtype != express_getattr(IfcCoveringTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcCoveringTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ObjectType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcCsgPrimitive3D_Dim(self):
|
|
|
|
|
return 3
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcCurve_Dim(self):
|
|
|
|
|
return IfcCurveDim(self)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcCurveBoundedPlane_Dim(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
basissurface = express_getattr(self, 'BasisSurface', INDETERMINATE)
|
|
|
|
|
return express_getattr(basissurface, 'Dim', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCurveStyle_WR11:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCurveStyle'
|
|
|
|
|
RULE_NAME = 'WR11'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
curvewidth = express_getattr(self, 'CurveWidth', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not exists(curvewidth) or 'ifc2x3.ifcpositivelengthmeasure' in typeof(curvewidth) or ('ifc2x3.ifcdescriptivemeasure' in typeof(curvewidth) and curvewidth == 'bylayer')) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcCurveStyleFontPattern_WR01:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcCurveStyleFontPattern'
|
|
|
|
|
RULE_NAME = 'WR01'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
visiblesegmentlength = express_getattr(self, 'VisibleSegmentLength', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (visiblesegmentlength >= 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDamperType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDamperType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcDamperTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcDamperTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDerivedProfileDef_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDerivedProfileDef'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
parentprofile = express_getattr(self, 'ParentProfile', INDETERMINATE)
|
|
|
|
|
assert (express_getattr(self, 'ProfileType', INDETERMINATE) == express_getattr(parentprofile, 'ProfileType', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDerivedUnit_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDerivedUnit'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
elements = express_getattr(self, 'Elements', INDETERMINATE)
|
|
|
|
|
assert (sizeof(elements) > 1 or (sizeof(elements) == 1 and express_getattr(express_getitem(elements, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Exponent', INDETERMINATE) != 1)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDerivedUnit_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDerivedUnit'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
unittype = express_getattr(self, 'UnitType', INDETERMINATE)
|
|
|
|
|
assert (unittype != express_getattr(IfcDerivedUnitEnum, 'USERDEFINED', INDETERMINATE) or (unittype == express_getattr(IfcDerivedUnitEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'UserDefinedType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcDerivedUnit_Dimensions(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
elements = express_getattr(self, 'Elements', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDeriveDimensionalExponents(elements)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDimensionCalloutRelationship_WR11:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDimensionCalloutRelationship'
|
|
|
|
|
RULE_NAME = 'WR11'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (express_getattr(express_getattr(self, 'Name', INDETERMINATE), 'lower', INDETERMINATE)() in ['primary', 'secondary']) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDimensionCalloutRelationship_WR12:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDimensionCalloutRelationship'
|
|
|
|
|
RULE_NAME = 'WR12'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof(typeof(express_getattr(self, 'RelatingDraughtingCallout', INDETERMINATE)) * ['ifc2x3.ifcangulardimension', 'ifc2x3.ifcdiameterdimension', 'ifc2x3.ifclineardimension', 'ifc2x3.ifcradiusdimension']) == 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDimensionCalloutRelationship_WR13:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDimensionCalloutRelationship'
|
|
|
|
|
RULE_NAME = 'WR13'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (not 'ifc2x3.ifcdimensioncurvedirectedcallout' in typeof(express_getattr(self, 'RelatedDraughtingCallout', INDETERMINATE))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDimensionCurve_WR51:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDimensionCurve'
|
|
|
|
|
RULE_NAME = 'WR51'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
|
|
|
|
assert (sizeof(usedin(self, 'ifc2x3.ifcdraughtingcallout.contents')) >= 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDimensionCurve_WR52:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDimensionCurve'
|
|
|
|
|
RULE_NAME = 'WR52'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([dct1 for dct1 in usedin(self, 'ifc2x3.' + 'ifcterminatorsymbol.annotatedcurve') if express_getattr(dct1, 'Role', INDETERMINATE) == express_getattr(IfcDimensionExtentUsage, 'ORIGIN', INDETERMINATE)]) <= 1 and sizeof([dct2 for dct2 in usedin(self, 'ifc2x3.' + 'ifcterminatorsymbol.annotatedcurve') if express_getattr(dct2, 'Role', INDETERMINATE) == express_getattr(IfcDimensionExtentUsage, 'TARGET', INDETERMINATE)]) <= 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDimensionCurve_WR53:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDimensionCurve'
|
|
|
|
|
RULE_NAME = 'WR53'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
annotatedbysymbols = express_getattr(self, 'AnnotatedBySymbols', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (sizeof([dct for dct in annotatedbysymbols if not 'ifc2x3.ifcdimensioncurveterminator' in typeof(dct)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDimensionCurveDirectedCallout_WR41:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDimensionCurveDirectedCallout'
|
|
|
|
|
RULE_NAME = 'WR41'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([dc for dc in express_getattr(self, 'Contents', INDETERMINATE) if 'ifc2x3.ifcdimensioncurve' in typeof(dc)]) == 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDimensionCurveDirectedCallout_WR42:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDimensionCurveDirectedCallout'
|
|
|
|
|
RULE_NAME = 'WR42'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
contents = express_getattr(self, 'Contents', INDETERMINATE)
|
|
|
|
|
assert (sizeof([dc for dc in express_getattr(self, 'contents', INDETERMINATE) if 'ifc2x3.ifcprojectioncurve' in typeof(dc)]) <= 2) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDimensionCurveTerminator_WR61:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDimensionCurveTerminator'
|
|
|
|
|
RULE_NAME = 'WR61'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert ('ifc2x3.ifcdimensioncurve' in typeof(express_getattr(self, 'AnnotatedCurve', INDETERMINATE))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDimensionPair_WR11:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDimensionPair'
|
|
|
|
|
RULE_NAME = 'WR11'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (express_getattr(express_getattr(self, 'Name', INDETERMINATE), 'lower', INDETERMINATE)() in ['chained', 'parallel']) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDimensionPair_WR12:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDimensionPair'
|
|
|
|
|
RULE_NAME = 'WR12'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof(typeof(express_getattr(self, 'RelatingDraughtingCallout', INDETERMINATE)) * ['ifc2x3.ifcangulardimension', 'ifc2x3.ifcdiameterdimension', 'ifc2x3.ifclineardimension', 'ifc2x3.ifcradiusdimension']) == 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDimensionPair_WR13:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDimensionPair'
|
|
|
|
|
RULE_NAME = 'WR13'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof(typeof(express_getattr(self, 'RelatedDraughtingCallout', INDETERMINATE)) * ['ifc2x3.ifcangulardimension', 'ifc2x3.ifcdiameterdimension', 'ifc2x3.ifclineardimension', 'ifc2x3.ifcradiusdimension']) == 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcDirection_Dim(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
directionratios = express_getattr(self, 'DirectionRatios', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
return hiindex(directionratios)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDocumentElectronicFormat_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDocumentElectronicFormat'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
fileextension = express_getattr(self, 'FileExtension', INDETERMINATE)
|
|
|
|
|
mimecontenttype = express_getattr(self, 'MimeContentType', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (exists(fileextension) or exists(mimecontenttype)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDocumentReference_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDocumentReference'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
name = express_getattr(self, 'Name', INDETERMINATE)
|
|
|
|
|
referencetodocument = express_getattr(self, 'ReferenceToDocument', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert exists(name) ^ exists(lambda : express_getitem(referencetodocument, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDoorLiningProperties_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDoorLiningProperties'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
liningdepth = express_getattr(self, 'LiningDepth', INDETERMINATE)
|
|
|
|
|
liningthickness = express_getattr(self, 'LiningThickness', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not (not exists(liningdepth) and exists(liningthickness))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDoorLiningProperties_WR32:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDoorLiningProperties'
|
|
|
|
|
RULE_NAME = 'WR32'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
thresholddepth = express_getattr(self, 'ThresholdDepth', INDETERMINATE)
|
|
|
|
|
thresholdthickness = express_getattr(self, 'ThresholdThickness', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not (not exists(thresholddepth) and exists(thresholdthickness))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDoorLiningProperties_WR33:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDoorLiningProperties'
|
|
|
|
|
RULE_NAME = 'WR33'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
transomthickness = express_getattr(self, 'TransomThickness', INDETERMINATE)
|
|
|
|
|
transomoffset = express_getattr(self, 'TransomOffset', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (exists(transomoffset) and exists(transomthickness)) ^ (not exists(transomoffset) and (not exists(transomthickness))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDoorLiningProperties_WR34:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDoorLiningProperties'
|
|
|
|
|
RULE_NAME = 'WR34'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
casingthickness = express_getattr(self, 'CasingThickness', INDETERMINATE)
|
|
|
|
|
casingdepth = express_getattr(self, 'CasingDepth', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (exists(casingdepth) and exists(casingthickness)) ^ (not exists(casingdepth) and (not exists(casingthickness))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDoorLiningProperties_WR35:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDoorLiningProperties'
|
|
|
|
|
RULE_NAME = 'WR35'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (exists(lambda : express_getitem(express_getattr(self, 'DefinesType', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)) and 'ifc2x3.ifcdoorstyle' in typeof(express_getitem(express_getattr(self, 'DefinesType', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDoorPanelProperties_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDoorPanelProperties'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (exists(lambda : express_getitem(express_getattr(self, 'DefinesType', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)) and 'ifc2x3.ifcdoorstyle' in typeof(express_getitem(express_getattr(self, 'DefinesType', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDraughtingPreDefinedColour_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDraughtingPreDefinedColour'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (express_getattr(express_getattr(self, 'Name', INDETERMINATE), 'lower', INDETERMINATE)() in ['black', 'red', 'green', 'blue', 'yellow', 'magenta', 'cyan', 'white', 'bylayer']) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDraughtingPreDefinedCurveFont_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDraughtingPreDefinedCurveFont'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (express_getattr(express_getattr(self, 'Name', INDETERMINATE), 'lower', INDETERMINATE)() in ['continuous', 'chain', 'chaindoubledash', 'dashed', 'dotted', 'bylayer']) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDraughtingPreDefinedTextFont_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDraughtingPreDefinedTextFont'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (express_getattr(express_getattr(self, 'Name', INDETERMINATE), 'lower', INDETERMINATE)() in ['iso3098-1fonta', 'iso3098-1fontb']) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDuctFittingType_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDuctFittingType'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcDuctFittingTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcDuctFittingTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDuctSegmentType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDuctSegmentType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcDuctSegmentTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcDuctSegmentTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcDuctSilencerType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcDuctSilencerType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcDuctSilencerTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcDuctSilencerTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcEdgeLoop_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcEdgeLoop'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
edgelist = express_getattr(self, 'EdgeList', INDETERMINATE)
|
|
|
|
|
ne = express_getattr(self, 'Ne', INDETERMINATE)
|
|
|
|
|
assert (express_getattr(express_getitem(edgelist, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'EdgeStart', INDETERMINATE) == express_getattr(express_getitem(edgelist, ne - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'EdgeEnd', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcEdgeLoop_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcEdgeLoop'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
|
|
|
|
assert IfcLoopHeadToTail(self) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcEdgeLoop_Ne(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
edgelist = express_getattr(self, 'EdgeList', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
return sizeof(edgelist)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcElectricDistributionPoint_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcElectricDistributionPoint'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
distributionpointfunction = express_getattr(self, 'DistributionPointFunction', INDETERMINATE)
|
|
|
|
|
assert (distributionpointfunction != express_getattr(IfcElectricDistributionPointFunctionEnum, 'USERDEFINED', INDETERMINATE) or (distributionpointfunction == express_getattr(IfcElectricDistributionPointFunctionEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'UserDefinedFunction', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcElementAssembly_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcElementAssembly'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcElementAssemblyTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcElementAssemblyTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ObjectType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcElementarySurface_Dim(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
position = express_getattr(self, 'Position', INDETERMINATE)
|
|
|
|
|
return express_getattr(position, 'Dim', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcEnvironmentalImpactValue_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcEnvironmentalImpactValue'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
category = express_getattr(self, 'Category', INDETERMINATE)
|
|
|
|
|
assert (category != express_getattr(IfcEnvironmentalImpactCategoryEnum, 'USERDEFINED', INDETERMINATE) or (category == express_getattr(IfcEnvironmentalImpactCategoryEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'UserDefinedCategory', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcEvaporativeCoolerType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcEvaporativeCoolerType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcEvaporativeCoolerTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcEvaporativeCoolerTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcEvaporatorType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcEvaporatorType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcEvaporatorTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcEvaporatorTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcExternalReference_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcExternalReference'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
location = express_getattr(self, 'Location', INDETERMINATE)
|
|
|
|
|
itemreference = express_getattr(self, 'ItemReference', INDETERMINATE)
|
|
|
|
|
name = express_getattr(self, 'Name', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (exists(itemreference) or exists(location) or exists(name)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcExtrudedAreaSolid_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcExtrudedAreaSolid'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (IfcDotProduct(IfcDirection(DirectionRatios=[0.0, 0.0, 1.0]), express_getattr(self, 'ExtrudedDirection', INDETERMINATE)) != 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcFace_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcFace'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
bounds = express_getattr(self, 'Bounds', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (sizeof([temp for temp in bounds if 'ifc2x3.ifcfaceouterbound' in typeof(temp)]) <= 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcFaceBasedSurfaceModel_Dim(self):
|
|
|
|
|
return 3
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcFanType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcFanType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcFanTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcFanTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcFillAreaStyle_WR11:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcFillAreaStyle'
|
|
|
|
|
RULE_NAME = 'WR11'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([style for style in express_getattr(self, 'FillStyles', INDETERMINATE) if 'ifc2x3.ifccolour' in typeof(style)]) <= 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcFillAreaStyle_WR12:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcFillAreaStyle'
|
|
|
|
|
RULE_NAME = 'WR12'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([style for style in express_getattr(self, 'FillStyles', INDETERMINATE) if 'ifc2x3.ifcexternallydefinedhatchstyle' in typeof(style)]) <= 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcFillAreaStyle_WR13:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcFillAreaStyle'
|
|
|
|
|
RULE_NAME = 'WR13'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert IfcCorrectFillAreaStyle(express_getattr(self, 'FillStyles', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcFillAreaStyleHatching_WR21:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcFillAreaStyleHatching'
|
|
|
|
|
RULE_NAME = 'WR21'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
startofnexthatchline = express_getattr(self, 'StartOfNextHatchLine', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not 'ifc2x3.ifctwodirectionrepeatfactor' in typeof(startofnexthatchline)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcFillAreaStyleHatching_WR22:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcFillAreaStyleHatching'
|
|
|
|
|
RULE_NAME = 'WR22'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
patternstart = express_getattr(self, 'PatternStart', INDETERMINATE)
|
|
|
|
|
assert (not exists(patternstart) or express_getattr(patternstart, 'Dim', INDETERMINATE) == 2) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcFillAreaStyleHatching_WR23:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcFillAreaStyleHatching'
|
|
|
|
|
RULE_NAME = 'WR23'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
pointofreferencehatchline = express_getattr(self, 'PointOfReferenceHatchLine', INDETERMINATE)
|
|
|
|
|
assert (not exists(pointofreferencehatchline) or express_getattr(pointofreferencehatchline, 'Dim', INDETERMINATE) == 2) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcFilterType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcFilterType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcFilterTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcFilterTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcFlowMeterType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcFlowMeterType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcFlowMeterTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcFlowMeterTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcFooting_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcFooting'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcFootingTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcFootingTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ObjectType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcGasTerminalType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcGasTerminalType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcGasTerminalTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcGasTerminalTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2023-02-14 10:03:42 +01:00
|
|
|
|
|
|
|
|
class IfcGeneralProfileProperties_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcGeneralProfileProperties'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
crosssectionarea = express_getattr(self, 'CrossSectionArea', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not exists(crosssectionarea) or crosssectionarea > 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcGeometricCurveSet_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcGeometricCurveSet'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([temp for temp in express_getattr(self, 'Elements', INDETERMINATE) if 'ifc2x3.ifcsurface' in typeof(temp)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcGeometricRepresentationSubContext_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcGeometricRepresentationSubContext'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
parentcontext = express_getattr(self, 'ParentContext', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not 'ifc2x3.ifcgeometricrepresentationsubcontext' in typeof(parentcontext)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcGeometricRepresentationSubContext_WR32:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcGeometricRepresentationSubContext'
|
|
|
|
|
RULE_NAME = 'WR32'
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
targetview = express_getattr(self, 'TargetView', INDETERMINATE)
|
|
|
|
|
userdefinedtargetview = express_getattr(self, 'UserDefinedTargetView', INDETERMINATE)
|
|
|
|
|
assert (targetview != express_getattr(IfcGeometricProjectionEnum, 'USERDEFINED', INDETERMINATE) or (targetview == express_getattr(IfcGeometricProjectionEnum, 'USERDEFINED', INDETERMINATE) and exists(userdefinedtargetview))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcGeometricRepresentationSubContext_WorldCoordinateSystem(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
parentcontext = express_getattr(self, 'ParentContext', INDETERMINATE)
|
|
|
|
|
return express_getattr(parentcontext, 'WorldCoordinateSystem', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcGeometricRepresentationSubContext_CoordinateSpaceDimension(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
parentcontext = express_getattr(self, 'ParentContext', INDETERMINATE)
|
|
|
|
|
return express_getattr(parentcontext, 'CoordinateSpaceDimension', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcGeometricRepresentationSubContext_TrueNorth(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
parentcontext = express_getattr(self, 'ParentContext', INDETERMINATE)
|
|
|
|
|
return nvl(express_getattr(parentcontext, 'TrueNorth', INDETERMINATE), express_getitem(express_getattr(express_getattr(self, 'WorldCoordinateSystem', INDETERMINATE), 'P', INDETERMINATE), 2 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE))
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcGeometricRepresentationSubContext_Precision(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
parentcontext = express_getattr(self, 'ParentContext', INDETERMINATE)
|
|
|
|
|
return nvl(express_getattr(parentcontext, 'Precision', INDETERMINATE), 1)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcGeometricSet_WR21:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcGeometricSet'
|
|
|
|
|
RULE_NAME = 'WR21'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
elements = express_getattr(self, 'Elements', INDETERMINATE)
|
|
|
|
|
assert (sizeof([temp for temp in elements if express_getattr(temp, 'Dim', INDETERMINATE) != express_getattr(express_getitem(elements, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Dim', INDETERMINATE)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcGeometricSet_Dim(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
elements = express_getattr(self, 'Elements', INDETERMINATE)
|
|
|
|
|
return express_getattr(express_getitem(elements, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Dim', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcGrid_WR41:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcGrid'
|
|
|
|
|
RULE_NAME = 'WR41'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert exists(express_getattr(self, 'ObjectPlacement', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcGridAxis_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcGridAxis'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
axiscurve = express_getattr(self, 'AxisCurve', INDETERMINATE)
|
|
|
|
|
assert (express_getattr(axiscurve, 'Dim', INDETERMINATE) == 2) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcGridAxis_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcGridAxis'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
partofw = express_getattr(self, 'PartOfW', INDETERMINATE)
|
|
|
|
|
partofv = express_getattr(self, 'PartOfV', INDETERMINATE)
|
|
|
|
|
partofu = express_getattr(self, 'PartOfU', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (sizeof(partofu) == 1) ^ (sizeof(partofv) == 1) ^ (sizeof(partofw) == 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcHalfSpaceSolid_Dim(self):
|
|
|
|
|
return 3
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcHeatExchangerType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcHeatExchangerType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcHeatExchangerTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcHeatExchangerTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcHumidifierType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcHumidifierType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcHumidifierTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcHumidifierTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcIShapeProfileDef_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcIShapeProfileDef'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
overalldepth = express_getattr(self, 'OverallDepth', INDETERMINATE)
|
|
|
|
|
flangethickness = express_getattr(self, 'FlangeThickness', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (flangethickness < overalldepth / 2.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcIShapeProfileDef_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcIShapeProfileDef'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
overallwidth = express_getattr(self, 'OverallWidth', INDETERMINATE)
|
|
|
|
|
webthickness = express_getattr(self, 'WebThickness', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (webthickness < overallwidth) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcIShapeProfileDef_WR3:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcIShapeProfileDef'
|
|
|
|
|
RULE_NAME = 'WR3'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
overallwidth = express_getattr(self, 'OverallWidth', INDETERMINATE)
|
|
|
|
|
overalldepth = express_getattr(self, 'OverallDepth', INDETERMINATE)
|
|
|
|
|
webthickness = express_getattr(self, 'WebThickness', INDETERMINATE)
|
|
|
|
|
flangethickness = express_getattr(self, 'FlangeThickness', INDETERMINATE)
|
|
|
|
|
filletradius = express_getattr(self, 'FilletRadius', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not exists(filletradius) or (filletradius <= (overallwidth - webthickness) / 2.0 and filletradius <= (overalldepth - 2.0 * flangethickness) / 2.0)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcInventory_WR41:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcInventory'
|
|
|
|
|
RULE_NAME = 'WR41'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([temp for temp in express_getattr(express_getattr(self, 'IsGroupedBy', INDETERMINATE), 'RelatedObjects', INDETERMINATE) if not ('ifc2x3.ifcspace' in typeof(temp) or 'ifc2x3.ifcasset' in typeof(temp) or 'ifc2x3.ifcfurnishingelement' in typeof(temp))]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcLShapeProfileDef_WR21:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcLShapeProfileDef'
|
|
|
|
|
RULE_NAME = 'WR21'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
depth = express_getattr(self, 'Depth', INDETERMINATE)
|
|
|
|
|
thickness = express_getattr(self, 'Thickness', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (thickness < depth) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcLShapeProfileDef_WR22:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcLShapeProfileDef'
|
|
|
|
|
RULE_NAME = 'WR22'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
width = express_getattr(self, 'Width', INDETERMINATE)
|
|
|
|
|
thickness = express_getattr(self, 'Thickness', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not exists(width) or thickness < width) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcLine_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcLine'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
pnt = express_getattr(self, 'Pnt', INDETERMINATE)
|
|
|
|
|
dir = express_getattr(self, 'Dir', INDETERMINATE)
|
|
|
|
|
assert (express_getattr(dir, 'Dim', INDETERMINATE) == express_getattr(pnt, 'Dim', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcLocalPlacement_WR21:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcLocalPlacement'
|
|
|
|
|
RULE_NAME = 'WR21'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
placementrelto = express_getattr(self, 'PlacementRelTo', INDETERMINATE)
|
|
|
|
|
relativeplacement = express_getattr(self, 'RelativePlacement', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert IfcCorrectLocalPlacement(relativeplacement, placementrelto) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcLocalTime_WR21:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcLocalTime'
|
|
|
|
|
RULE_NAME = 'WR21'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
|
|
|
|
assert IfcValidTime(self) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcMaterialDefinitionRepresentation_WR11:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcMaterialDefinitionRepresentation'
|
|
|
|
|
RULE_NAME = 'WR11'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
representations = express_getattr(self, 'Representations', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (sizeof([temp for temp in representations if not 'ifc2x3.ifcstyledrepresentation' in typeof(temp)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcMaterialLayerSet_TotalThickness(self):
|
|
|
|
|
return IfcMlsTotalThickness(self)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcMechanicalMaterialProperties_WR21:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcMechanicalMaterialProperties'
|
|
|
|
|
RULE_NAME = 'WR21'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
youngmodulus = express_getattr(self, 'YoungModulus', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not exists(youngmodulus) or youngmodulus >= 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcMechanicalMaterialProperties_WR22:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcMechanicalMaterialProperties'
|
|
|
|
|
RULE_NAME = 'WR22'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
shearmodulus = express_getattr(self, 'ShearModulus', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not exists(shearmodulus) or shearmodulus >= 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcMechanicalSteelMaterialProperties_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcMechanicalSteelMaterialProperties'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
yieldstress = express_getattr(self, 'YieldStress', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not exists(yieldstress) or yieldstress >= 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcMechanicalSteelMaterialProperties_WR32:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcMechanicalSteelMaterialProperties'
|
|
|
|
|
RULE_NAME = 'WR32'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
ultimatestress = express_getattr(self, 'UltimateStress', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not exists(ultimatestress) or ultimatestress >= 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcMechanicalSteelMaterialProperties_WR33:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcMechanicalSteelMaterialProperties'
|
|
|
|
|
RULE_NAME = 'WR33'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
hardeningmodule = express_getattr(self, 'HardeningModule', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not exists(hardeningmodule) or hardeningmodule >= 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcMechanicalSteelMaterialProperties_WR34:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcMechanicalSteelMaterialProperties'
|
|
|
|
|
RULE_NAME = 'WR34'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
proportionalstress = express_getattr(self, 'ProportionalStress', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not exists(proportionalstress) or proportionalstress >= 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcMove_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcMove'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof(express_getattr(self, 'OperatesOn', INDETERMINATE)) >= 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcMove_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcMove'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
operateson = express_getattr(self, 'OperatesOn', INDETERMINATE)
|
|
|
|
|
assert (sizeof([temp for temp in operateson if sizeof([temp2 for temp2 in express_getattr(temp, 'RelatedObjects', INDETERMINATE) if 'ifc2x3.ifcactor' in typeof(temp2) or 'ifc2x3.ifcequipmentelement' in typeof(temp2) or 'ifc2x3.ifcfurnishingelement' in typeof(temp2)]) >= 1]) >= 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcMove_WR3:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcMove'
|
|
|
|
|
RULE_NAME = 'WR3'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert exists(express_getattr(self, 'Name', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcNamedUnit_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcNamedUnit'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert IfcCorrectDimensions(express_getattr(self, 'UnitType', INDETERMINATE), express_getattr(self, 'Dimensions', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcObject_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcObject'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
isdefinedby = express_getattr(self, 'IsDefinedBy', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (sizeof([temp for temp in isdefinedby if 'ifc2x3.ifcreldefinesbytype' in typeof(temp)]) <= 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcObjective_WR21:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcObjective'
|
|
|
|
|
RULE_NAME = 'WR21'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
objectivequalifier = express_getattr(self, 'ObjectiveQualifier', INDETERMINATE)
|
|
|
|
|
assert (objectivequalifier != express_getattr(IfcObjectiveEnum, 'USERDEFINED', INDETERMINATE) or (objectivequalifier == express_getattr(IfcObjectiveEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'UserDefinedQualifier', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcOccupant_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcOccupant'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (not predefinedtype == express_getattr(IfcOccupantTypeEnum, 'USERDEFINED', INDETERMINATE) or exists(express_getattr(self, 'ObjectType', INDETERMINATE))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcOffsetCurve2D_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcOffsetCurve2D'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
basiscurve = express_getattr(self, 'BasisCurve', INDETERMINATE)
|
|
|
|
|
assert (express_getattr(basiscurve, 'Dim', INDETERMINATE) == 2) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcOffsetCurve3D_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcOffsetCurve3D'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
basiscurve = express_getattr(self, 'BasisCurve', INDETERMINATE)
|
|
|
|
|
assert (express_getattr(basiscurve, 'Dim', INDETERMINATE) == 3) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcOrientedEdge_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcOrientedEdge'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
edgeelement = express_getattr(self, 'EdgeElement', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not 'ifc2x3.ifcorientededge' in typeof(edgeelement)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcOrientedEdge_EdgeStart(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
edgeelement = express_getattr(self, 'EdgeElement', INDETERMINATE)
|
|
|
|
|
orientation = express_getattr(self, 'Orientation', INDETERMINATE)
|
|
|
|
|
return IfcBooleanChoose(orientation, express_getattr(edgeelement, 'EdgeStart', INDETERMINATE), express_getattr(edgeelement, 'EdgeEnd', INDETERMINATE))
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcOrientedEdge_EdgeEnd(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
edgeelement = express_getattr(self, 'EdgeElement', INDETERMINATE)
|
|
|
|
|
orientation = express_getattr(self, 'Orientation', INDETERMINATE)
|
|
|
|
|
return IfcBooleanChoose(orientation, express_getattr(edgeelement, 'EdgeEnd', INDETERMINATE), express_getattr(edgeelement, 'EdgeStart', INDETERMINATE))
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPath_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPath'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
|
|
|
|
assert IfcPathHeadToTail(self) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPerson_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPerson'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
familyname = express_getattr(self, 'FamilyName', INDETERMINATE)
|
|
|
|
|
givenname = express_getattr(self, 'GivenName', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (exists(familyname) or exists(givenname)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPhysicalComplexQuantity_WR21:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPhysicalComplexQuantity'
|
|
|
|
|
RULE_NAME = 'WR21'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
hasquantities = express_getattr(self, 'HasQuantities', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (sizeof([temp for temp in hasquantities if self == temp]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPile_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPile'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcPileTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcPileTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ObjectType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPipeFittingType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPipeFittingType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcPipeFittingTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcPipeFittingTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPipeSegmentType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPipeSegmentType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcPipeSegmentTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcPipeSegmentTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPixelTexture_WR21:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPixelTexture'
|
|
|
|
|
RULE_NAME = 'WR21'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
width = express_getattr(self, 'Width', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (width >= 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPixelTexture_WR22:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPixelTexture'
|
|
|
|
|
RULE_NAME = 'WR22'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
height = express_getattr(self, 'Height', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (height >= 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPixelTexture_WR23:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPixelTexture'
|
|
|
|
|
RULE_NAME = 'WR23'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
colourcomponents = express_getattr(self, 'ColourComponents', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (1 <= colourcomponents <= 4) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPixelTexture_WR24:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPixelTexture'
|
|
|
|
|
RULE_NAME = 'WR24'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
width = express_getattr(self, 'Width', INDETERMINATE)
|
|
|
|
|
height = express_getattr(self, 'Height', INDETERMINATE)
|
|
|
|
|
pixel = express_getattr(self, 'Pixel', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (sizeof(pixel) == width * height) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcPlacement_Dim(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
location = express_getattr(self, 'Location', INDETERMINATE)
|
|
|
|
|
return express_getattr(location, 'Dim', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcPointOnCurve_Dim(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
basiscurve = express_getattr(self, 'BasisCurve', INDETERMINATE)
|
|
|
|
|
return express_getattr(basiscurve, 'Dim', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcPointOnSurface_Dim(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
basissurface = express_getattr(self, 'BasisSurface', INDETERMINATE)
|
|
|
|
|
return express_getattr(basissurface, 'Dim', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPolyLoop_WR21:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPolyLoop'
|
|
|
|
|
RULE_NAME = 'WR21'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
polygon = express_getattr(self, 'Polygon', INDETERMINATE)
|
|
|
|
|
assert (sizeof([temp for temp in polygon if express_getattr(temp, 'Dim', INDETERMINATE) != express_getattr(express_getitem(polygon, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Dim', INDETERMINATE)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPolygonalBoundedHalfSpace_WR41:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPolygonalBoundedHalfSpace'
|
|
|
|
|
RULE_NAME = 'WR41'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
polygonalboundary = express_getattr(self, 'PolygonalBoundary', INDETERMINATE)
|
|
|
|
|
assert (express_getattr(polygonalboundary, 'Dim', INDETERMINATE) == 2) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPolygonalBoundedHalfSpace_WR42:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPolygonalBoundedHalfSpace'
|
|
|
|
|
RULE_NAME = 'WR42'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
polygonalboundary = express_getattr(self, 'PolygonalBoundary', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (sizeof(typeof(polygonalboundary) * ['ifc2x3.ifcpolyline', 'ifc2x3.ifccompositecurve']) == 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPolyline_WR41:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPolyline'
|
|
|
|
|
RULE_NAME = 'WR41'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
points = express_getattr(self, 'Points', INDETERMINATE)
|
|
|
|
|
assert (sizeof([temp for temp in points if express_getattr(temp, 'Dim', INDETERMINATE) != express_getattr(express_getitem(points, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Dim', INDETERMINATE)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPostalAddress_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPostalAddress'
|
|
|
|
|
RULE_NAME = 'WR1'
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
internallocation = express_getattr(self, 'InternalLocation', INDETERMINATE)
|
|
|
|
|
addresslines = express_getattr(self, 'AddressLines', INDETERMINATE)
|
|
|
|
|
postalbox = express_getattr(self, 'PostalBox', INDETERMINATE)
|
|
|
|
|
town = express_getattr(self, 'Town', INDETERMINATE)
|
|
|
|
|
region = express_getattr(self, 'Region', INDETERMINATE)
|
|
|
|
|
postalcode = express_getattr(self, 'PostalCode', INDETERMINATE)
|
|
|
|
|
country = express_getattr(self, 'Country', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (exists(internallocation) or exists(addresslines) or exists(postalbox) or exists(postalcode) or exists(town) or exists(region) or exists(country)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPreDefinedDimensionSymbol_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPreDefinedDimensionSymbol'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (express_getattr(express_getattr(self, 'Name', INDETERMINATE), 'lower', INDETERMINATE)() in ['arclength', 'conicaltaper', 'counterbore', 'countersink', 'depth', 'diameter', 'plusminus', 'radius', 'slope', 'sphericaldiameter', 'sphericalradius', 'square']) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPreDefinedPointMarkerSymbol_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPreDefinedPointMarkerSymbol'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (express_getattr(express_getattr(self, 'Name', INDETERMINATE), 'lower', INDETERMINATE)() in ['asterisk', 'circle', 'dot', 'plus', 'square', 'triangle', 'x']) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPreDefinedTerminatorSymbol_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPreDefinedTerminatorSymbol'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (express_getattr(express_getattr(self, 'Name', INDETERMINATE), 'lower', INDETERMINATE)() in ['blankedarrow', 'blankedbox', 'blankeddot', 'dimensionorigin', 'filledarrow', 'filledbox', 'filleddot', 'integralsymbol', 'openarrow', 'slash', 'unfilledarrow']) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcProcedure_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcProcedure'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([temp for temp in express_getattr(self, 'Decomposes', INDETERMINATE) if not 'ifc2x3.ifcrelnests' in typeof(temp)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcProcedure_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcProcedure'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([temp for temp in express_getattr(self, 'IsDecomposedBy', INDETERMINATE) if not 'ifc2x3.ifcrelnests' in typeof(temp)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcProcedure_WR3:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcProcedure'
|
|
|
|
|
RULE_NAME = 'WR3'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert exists(express_getattr(self, 'Name', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcProcedure_WR4:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcProcedure'
|
|
|
|
|
RULE_NAME = 'WR4'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
proceduretype = express_getattr(self, 'ProcedureType', INDETERMINATE)
|
|
|
|
|
assert (proceduretype != express_getattr(IfcProcedureTypeEnum, 'USERDEFINED', INDETERMINATE) or (proceduretype == express_getattr(IfcProcedureTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'UserDefinedProcedureType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcProduct_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcProduct'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
objectplacement = express_getattr(self, 'ObjectPlacement', INDETERMINATE)
|
|
|
|
|
representation = express_getattr(self, 'Representation', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (exists(representation) and exists(objectplacement) or (exists(representation) and (not 'ifc2x3.ifcproductdefinitionshape' in typeof(representation))) or (not exists(representation))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcProductDefinitionShape_WR11:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcProductDefinitionShape'
|
|
|
|
|
RULE_NAME = 'WR11'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
representations = express_getattr(self, 'Representations', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (sizeof([temp for temp in representations if not 'ifc2x3.ifcshapemodel' in typeof(temp)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcProject_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcProject'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert exists(express_getattr(self, 'Name', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcProject_WR32:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcProject'
|
|
|
|
|
RULE_NAME = 'WR32'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
representationcontexts = express_getattr(self, 'RepresentationContexts', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (sizeof([temp for temp in representationcontexts if 'ifc2x3.ifcgeometricrepresentationsubcontext' in typeof(temp)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcProject_WR33:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcProject'
|
|
|
|
|
RULE_NAME = 'WR33'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof(express_getattr(self, 'Decomposes', INDETERMINATE)) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPropertyBoundedValue_WR21:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPropertyBoundedValue'
|
|
|
|
|
RULE_NAME = 'WR21'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
upperboundvalue = express_getattr(self, 'UpperBoundValue', INDETERMINATE)
|
|
|
|
|
lowerboundvalue = express_getattr(self, 'LowerBoundValue', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not exists(upperboundvalue) or not exists(lowerboundvalue) or typeof(upperboundvalue) == typeof(lowerboundvalue)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPropertyBoundedValue_WR22:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPropertyBoundedValue'
|
|
|
|
|
RULE_NAME = 'WR22'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
upperboundvalue = express_getattr(self, 'UpperBoundValue', INDETERMINATE)
|
|
|
|
|
lowerboundvalue = express_getattr(self, 'LowerBoundValue', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (exists(upperboundvalue) or exists(lowerboundvalue)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPropertyDependencyRelationship_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPropertyDependencyRelationship'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
dependingproperty = express_getattr(self, 'DependingProperty', INDETERMINATE)
|
|
|
|
|
dependantproperty = express_getattr(self, 'DependantProperty', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (dependingproperty != dependantproperty) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPropertyEnumeratedValue_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPropertyEnumeratedValue'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
enumerationvalues = express_getattr(self, 'EnumerationValues', INDETERMINATE)
|
|
|
|
|
enumerationreference = express_getattr(self, 'EnumerationReference', INDETERMINATE)
|
|
|
|
|
assert (not exists(enumerationreference) or sizeof([temp for temp in enumerationvalues if temp in express_getattr(enumerationreference, 'EnumerationValues', INDETERMINATE)]) == sizeof(enumerationvalues)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPropertyEnumeration_WR01:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPropertyEnumeration'
|
|
|
|
|
RULE_NAME = 'WR01'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([temp for temp in express_getattr(self, 'EnumerationValues', INDETERMINATE) if not typeof(express_getitem(express_getattr(self, 'EnumerationValues', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)) == typeof(temp)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPropertyListValue_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPropertyListValue'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([temp for temp in express_getattr(self, 'ListValues', INDETERMINATE) if not typeof(express_getitem(express_getattr(self, 'ListValues', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)) == typeof(temp)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPropertySet_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPropertySet'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert exists(express_getattr(self, 'Name', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPropertySet_WR32:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPropertySet'
|
|
|
|
|
RULE_NAME = 'WR32'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
hasproperties = express_getattr(self, 'HasProperties', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert IfcUniquePropertyName(hasproperties) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPropertyTableValue_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPropertyTableValue'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
definingvalues = express_getattr(self, 'DefiningValues', INDETERMINATE)
|
|
|
|
|
definedvalues = express_getattr(self, 'DefinedValues', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (sizeof(definingvalues) == sizeof(definedvalues)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPropertyTableValue_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPropertyTableValue'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([temp for temp in express_getattr(self, 'DefiningValues', INDETERMINATE) if typeof(temp) != typeof(express_getitem(express_getattr(self, 'DefiningValues', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE))]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPropertyTableValue_WR3:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPropertyTableValue'
|
|
|
|
|
RULE_NAME = 'WR3'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([temp for temp in express_getattr(self, 'DefinedValues', INDETERMINATE) if typeof(temp) != typeof(express_getitem(express_getattr(self, 'DefinedValues', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE))]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcProxy_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcProxy'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert exists(express_getattr(self, 'Name', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcPumpType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcPumpType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcPumpTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcPumpTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcQuantityArea_WR21:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcQuantityArea'
|
|
|
|
|
RULE_NAME = 'WR21'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (not exists(express_getattr(self, 'Unit', INDETERMINATE)) or express_getattr(express_getattr(self, 'Unit', INDETERMINATE), 'UnitType', INDETERMINATE) == express_getattr(IfcUnitEnum, 'AREAUNIT', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcQuantityArea_WR22:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcQuantityArea'
|
|
|
|
|
RULE_NAME = 'WR22'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
areavalue = express_getattr(self, 'AreaValue', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (areavalue >= 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcQuantityCount_WR21:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcQuantityCount'
|
|
|
|
|
RULE_NAME = 'WR21'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
countvalue = express_getattr(self, 'CountValue', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (countvalue >= 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcQuantityLength_WR21:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcQuantityLength'
|
|
|
|
|
RULE_NAME = 'WR21'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (not exists(express_getattr(self, 'Unit', INDETERMINATE)) or express_getattr(express_getattr(self, 'Unit', INDETERMINATE), 'UnitType', INDETERMINATE) == express_getattr(IfcUnitEnum, 'LENGTHUNIT', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcQuantityLength_WR22:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcQuantityLength'
|
|
|
|
|
RULE_NAME = 'WR22'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
lengthvalue = express_getattr(self, 'LengthValue', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (lengthvalue >= 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcQuantityTime_WR21:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcQuantityTime'
|
|
|
|
|
RULE_NAME = 'WR21'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (not exists(express_getattr(self, 'Unit', INDETERMINATE)) or express_getattr(express_getattr(self, 'Unit', INDETERMINATE), 'UnitType', INDETERMINATE) == express_getattr(IfcUnitEnum, 'TIMEUNIT', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcQuantityTime_WR22:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcQuantityTime'
|
|
|
|
|
RULE_NAME = 'WR22'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
timevalue = express_getattr(self, 'TimeValue', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (timevalue >= 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcQuantityVolume_WR21:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcQuantityVolume'
|
|
|
|
|
RULE_NAME = 'WR21'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (not exists(express_getattr(self, 'Unit', INDETERMINATE)) or express_getattr(express_getattr(self, 'Unit', INDETERMINATE), 'UnitType', INDETERMINATE) == express_getattr(IfcUnitEnum, 'VOLUMEUNIT', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcQuantityVolume_WR22:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcQuantityVolume'
|
|
|
|
|
RULE_NAME = 'WR22'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
volumevalue = express_getattr(self, 'VolumeValue', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (volumevalue >= 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcQuantityWeight_WR21:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcQuantityWeight'
|
|
|
|
|
RULE_NAME = 'WR21'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (not exists(express_getattr(self, 'Unit', INDETERMINATE)) or express_getattr(express_getattr(self, 'Unit', INDETERMINATE), 'UnitType', INDETERMINATE) == express_getattr(IfcUnitEnum, 'MASSUNIT', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcQuantityWeight_WR22:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcQuantityWeight'
|
|
|
|
|
RULE_NAME = 'WR22'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
weightvalue = express_getattr(self, 'WeightValue', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (weightvalue >= 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRailing_WR61:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRailing'
|
|
|
|
|
RULE_NAME = 'WR61'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (not exists(predefinedtype) or predefinedtype != express_getattr(IfcRailingTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcRailingTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ObjectType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRamp_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRamp'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (hiindex(express_getattr(self, 'IsDecomposedBy', INDETERMINATE)) == 0 or (hiindex(express_getattr(self, 'IsDecomposedBy', INDETERMINATE)) == 1 and (not exists(express_getattr(self, 'Representation', INDETERMINATE))))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRationalBezierCurve_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRationalBezierCurve'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
weightsdata = express_getattr(self, 'WeightsData', INDETERMINATE)
|
|
|
|
|
assert (sizeof(weightsdata) == sizeof(express_getattr(self, 'ControlPointsList', INDETERMINATE))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRationalBezierCurve_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRationalBezierCurve'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
|
|
|
|
assert IfcCurveWeightsPositive(self) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcRationalBezierCurve_Weights(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
weightsdata = express_getattr(self, 'WeightsData', INDETERMINATE)
|
|
|
|
|
return IfcListToArray(weightsdata, 0, express_getattr(self, 'UpperIndexOnControlPoints', INDETERMINATE))
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRectangleHollowProfileDef_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRectangleHollowProfileDef'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
wallthickness = express_getattr(self, 'WallThickness', INDETERMINATE)
|
|
|
|
|
assert (wallthickness < express_getattr(self, 'XDim', INDETERMINATE) / 2.0 and wallthickness < express_getattr(self, 'YDim', INDETERMINATE) / 2.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRectangleHollowProfileDef_WR32:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRectangleHollowProfileDef'
|
|
|
|
|
RULE_NAME = 'WR32'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
outerfilletradius = express_getattr(self, 'OuterFilletRadius', INDETERMINATE)
|
|
|
|
|
assert (not exists(outerfilletradius) or (outerfilletradius <= express_getattr(self, 'XDim', INDETERMINATE) / 2.0 and outerfilletradius <= express_getattr(self, 'YDim', INDETERMINATE) / 2.0)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRectangleHollowProfileDef_WR33:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRectangleHollowProfileDef'
|
|
|
|
|
RULE_NAME = 'WR33'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
wallthickness = express_getattr(self, 'WallThickness', INDETERMINATE)
|
|
|
|
|
innerfilletradius = express_getattr(self, 'InnerFilletRadius', INDETERMINATE)
|
|
|
|
|
assert (not exists(innerfilletradius) or (innerfilletradius <= express_getattr(self, 'XDim', INDETERMINATE) / 2.0 - wallthickness and innerfilletradius <= express_getattr(self, 'YDim', INDETERMINATE) / 2.0 - wallthickness)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRectangularTrimmedSurface_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRectangularTrimmedSurface'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
u1 = express_getattr(self, 'U1', INDETERMINATE)
|
|
|
|
|
u2 = express_getattr(self, 'U2', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (u1 != u2) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRectangularTrimmedSurface_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRectangularTrimmedSurface'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
v1 = express_getattr(self, 'V1', INDETERMINATE)
|
|
|
|
|
v2 = express_getattr(self, 'V2', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (v1 != v2) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRectangularTrimmedSurface_WR3:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRectangularTrimmedSurface'
|
|
|
|
|
RULE_NAME = 'WR3'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
basissurface = express_getattr(self, 'BasisSurface', INDETERMINATE)
|
|
|
|
|
u1 = express_getattr(self, 'U1', INDETERMINATE)
|
|
|
|
|
u2 = express_getattr(self, 'U2', INDETERMINATE)
|
|
|
|
|
usense = express_getattr(self, 'Usense', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert ('ifc2x3.ifcelementarysurface' in typeof(basissurface) and (not 'ifc2x3.ifcplane' in typeof(basissurface)) or 'ifc2x3.ifcsurfaceofrevolution' in typeof(basissurface) or usense == (u2 > u1)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRectangularTrimmedSurface_WR4:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRectangularTrimmedSurface'
|
|
|
|
|
RULE_NAME = 'WR4'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
v1 = express_getattr(self, 'V1', INDETERMINATE)
|
|
|
|
|
v2 = express_getattr(self, 'V2', INDETERMINATE)
|
|
|
|
|
vsense = express_getattr(self, 'Vsense', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (vsense == (v2 > v1)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcRectangularTrimmedSurface_Dim(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
basissurface = express_getattr(self, 'BasisSurface', INDETERMINATE)
|
|
|
|
|
return express_getattr(basissurface, 'Dim', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcReinforcingBar_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcReinforcingBar'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
barrole = express_getattr(self, 'BarRole', INDETERMINATE)
|
|
|
|
|
assert (barrole != express_getattr(IfcReinforcingBarRoleEnum, 'USERDEFINED', INDETERMINATE) or (barrole == express_getattr(IfcReinforcingBarRoleEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ObjectType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRelAssigns_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRelAssigns'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
relatedobjects = express_getattr(self, 'RelatedObjects', INDETERMINATE)
|
|
|
|
|
relatedobjectstype = express_getattr(self, 'RelatedObjectsType', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert IfcCorrectObjectAssignment(relatedobjectstype, relatedobjects) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRelAssignsTasks_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRelAssignsTasks'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (hiindex(express_getattr(self, 'RelatedObjects', INDETERMINATE)) == 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRelAssignsTasks_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRelAssignsTasks'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert ('ifc2x3.ifctask' in typeof(express_getitem(express_getattr(self, 'RelatedObjects', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRelAssignsTasks_WR3:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRelAssignsTasks'
|
|
|
|
|
RULE_NAME = 'WR3'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert ('ifc2x3.ifcworkcontrol' in typeof(express_getattr(self, 'RelatingControl', INDETERMINATE))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRelAssignsToActor_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRelAssignsToActor'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
relatingactor = express_getattr(self, 'RelatingActor', INDETERMINATE)
|
|
|
|
|
assert (sizeof([temp for temp in express_getattr(self, 'RelatedObjects', INDETERMINATE) if relatingactor == temp]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRelAssignsToControl_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRelAssignsToControl'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
relatingcontrol = express_getattr(self, 'RelatingControl', INDETERMINATE)
|
|
|
|
|
assert (sizeof([temp for temp in express_getattr(self, 'RelatedObjects', INDETERMINATE) if relatingcontrol == temp]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRelAssignsToGroup_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRelAssignsToGroup'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
relatinggroup = express_getattr(self, 'RelatingGroup', INDETERMINATE)
|
|
|
|
|
assert (sizeof([temp for temp in express_getattr(self, 'RelatedObjects', INDETERMINATE) if relatinggroup == temp]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRelAssignsToProcess_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRelAssignsToProcess'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
relatingprocess = express_getattr(self, 'RelatingProcess', INDETERMINATE)
|
|
|
|
|
assert (sizeof([temp for temp in express_getattr(self, 'RelatedObjects', INDETERMINATE) if relatingprocess == temp]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRelAssignsToProduct_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRelAssignsToProduct'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
relatingproduct = express_getattr(self, 'RelatingProduct', INDETERMINATE)
|
|
|
|
|
assert (sizeof([temp for temp in express_getattr(self, 'RelatedObjects', INDETERMINATE) if relatingproduct == temp]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRelAssignsToResource_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRelAssignsToResource'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
relatingresource = express_getattr(self, 'RelatingResource', INDETERMINATE)
|
|
|
|
|
assert (sizeof([temp for temp in express_getattr(self, 'RelatedObjects', INDETERMINATE) if relatingresource == temp]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRelAssociates_WR21:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRelAssociates'
|
|
|
|
|
RULE_NAME = 'WR21'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
relatedobjects = express_getattr(self, 'RelatedObjects', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (sizeof([temp for temp in relatedobjects if not ('ifc2x3.ifcobjectdefinition' in typeof(temp) or 'ifc2x3.ifcpropertydefinition' in typeof(temp))]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRelAssociatesMaterial_WR21:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRelAssociatesMaterial'
|
|
|
|
|
RULE_NAME = 'WR21'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([temp for temp in express_getattr(self, 'RelatedObjects', INDETERMINATE) if 'ifc2x3.ifcfeatureelementsubtraction' in typeof(temp) or 'ifc2x3.ifcvirtualelement' in typeof(temp)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRelAssociatesMaterial_WR22:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRelAssociatesMaterial'
|
|
|
|
|
RULE_NAME = 'WR22'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([temp for temp in express_getattr(self, 'RelatedObjects', INDETERMINATE) if not 'ifc2x3.ifcproduct' in typeof(temp) and (not 'ifc2x3.ifctypeproduct' in typeof(temp))]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRelConnectsElements_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRelConnectsElements'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
relatingelement = express_getattr(self, 'RelatingElement', INDETERMINATE)
|
|
|
|
|
relatedelement = express_getattr(self, 'RelatedElement', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (relatingelement != relatedelement) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRelContainedInSpatialStructure_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRelContainedInSpatialStructure'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
relatedelements = express_getattr(self, 'RelatedElements', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (sizeof([temp for temp in relatedelements if 'ifc2x3.ifcspatialstructureelement' in typeof(temp)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRelDecomposes_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRelDecomposes'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
relatingobject = express_getattr(self, 'RelatingObject', INDETERMINATE)
|
|
|
|
|
relatedobjects = express_getattr(self, 'RelatedObjects', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (sizeof([temp for temp in relatedobjects if relatingobject == temp]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRelNests_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRelNests'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([temp for temp in express_getattr(self, 'RelatedObjects', INDETERMINATE) if not typeof(express_getattr(self, 'RelatingObject', INDETERMINATE)) == typeof(temp)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRelOverridesProperties_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRelOverridesProperties'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof(express_getattr(self, 'RelatedObjects', INDETERMINATE)) == 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRelReferencedInSpatialStructure_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRelReferencedInSpatialStructure'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
relatedelements = express_getattr(self, 'RelatedElements', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (sizeof([temp for temp in relatedelements if 'ifc2x3.ifcspatialstructureelement' in typeof(temp)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRelSchedulesCostItems_WR11:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRelSchedulesCostItems'
|
|
|
|
|
RULE_NAME = 'WR11'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([temp for temp in express_getattr(self, 'RelatedObjects', INDETERMINATE) if not 'ifc2x3.ifccostitem' in typeof(temp)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRelSchedulesCostItems_WR12:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRelSchedulesCostItems'
|
|
|
|
|
RULE_NAME = 'WR12'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert ('ifc2x3.ifccostschedule' in typeof(express_getattr(self, 'RelatingControl', INDETERMINATE))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRelSequence_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRelSequence'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
relatingprocess = express_getattr(self, 'RelatingProcess', INDETERMINATE)
|
|
|
|
|
relatedprocess = express_getattr(self, 'RelatedProcess', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (relatingprocess != relatedprocess) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRelSpaceBoundary_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRelSpaceBoundary'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
relatedbuildingelement = express_getattr(self, 'RelatedBuildingElement', INDETERMINATE)
|
|
|
|
|
physicalorvirtualboundary = express_getattr(self, 'PhysicalOrVirtualBoundary', INDETERMINATE)
|
|
|
|
|
assert (physicalorvirtualboundary == express_getattr(IfcPhysicalOrVirtualEnum, 'Physical', INDETERMINATE) and (exists(relatedbuildingelement) and (not 'ifc2x3.ifcvirtualelement' in typeof(relatedbuildingelement))) or (physicalorvirtualboundary == express_getattr(IfcPhysicalOrVirtualEnum, 'Virtual', INDETERMINATE) and (not exists(relatedbuildingelement) or 'ifc2x3.ifcvirtualelement' in typeof(relatedbuildingelement))) or physicalorvirtualboundary == express_getattr(IfcPhysicalOrVirtualEnum, 'NotDefined', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRevolvedAreaSolid_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRevolvedAreaSolid'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
axis = express_getattr(self, 'Axis', INDETERMINATE)
|
|
|
|
|
assert (express_getitem(express_getattr(express_getattr(axis, 'Location', INDETERMINATE), 'Coordinates', INDETERMINATE), 3 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE) == 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRevolvedAreaSolid_WR32:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRevolvedAreaSolid'
|
|
|
|
|
RULE_NAME = 'WR32'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
axis = express_getattr(self, 'Axis', INDETERMINATE)
|
|
|
|
|
assert (express_getitem(express_getattr(express_getattr(axis, 'Z', INDETERMINATE), 'DirectionRatios', INDETERMINATE), 3 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE) == 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcRevolvedAreaSolid_AxisLine(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
axis = express_getattr(self, 'Axis', INDETERMINATE)
|
|
|
|
|
return IfcLine(Pnt=express_getattr(axis, 'Location', INDETERMINATE), Dir=IfcVector(Orientation=express_getattr(axis, 'Z', INDETERMINATE), Magnitude=1.0))
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRoof_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRoof'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (hiindex(express_getattr(self, 'IsDecomposedBy', INDETERMINATE)) == 0 or (hiindex(express_getattr(self, 'IsDecomposedBy', INDETERMINATE)) == 1 and (not exists(express_getattr(self, 'Representation', INDETERMINATE))))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcRoundedRectangleProfileDef_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcRoundedRectangleProfileDef'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
roundingradius = express_getattr(self, 'RoundingRadius', INDETERMINATE)
|
|
|
|
|
assert (roundingradius <= express_getattr(self, 'XDim', INDETERMINATE) / 2.0 and roundingradius <= express_getattr(self, 'YDim', INDETERMINATE) / 2.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcSIUnit_Dimensions(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
return IfcDimensionsForSiUnit(express_getattr(self, 'Name', INDETERMINATE))
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcSectionedSpine_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcSectionedSpine'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
crosssections = express_getattr(self, 'CrossSections', INDETERMINATE)
|
|
|
|
|
crosssectionpositions = express_getattr(self, 'CrossSectionPositions', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (sizeof(crosssections) == sizeof(crosssectionpositions)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcSectionedSpine_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcSectionedSpine'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
crosssections = express_getattr(self, 'CrossSections', INDETERMINATE)
|
|
|
|
|
assert (sizeof([temp for temp in crosssections if express_getattr(express_getitem(crosssections, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'ProfileType', INDETERMINATE) != express_getattr(temp, 'ProfileType', INDETERMINATE)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcSectionedSpine_WR3:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcSectionedSpine'
|
|
|
|
|
RULE_NAME = 'WR3'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
spinecurve = express_getattr(self, 'SpineCurve', INDETERMINATE)
|
|
|
|
|
assert (express_getattr(spinecurve, 'Dim', INDETERMINATE) == 3) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcSectionedSpine_Dim(self):
|
|
|
|
|
return 3
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcServiceLifeFactor_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcServiceLifeFactor'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (not predefinedtype == express_getattr(IfcServiceLifeFactorTypeEnum, 'USERDEFINED', INDETERMINATE) or exists(express_getattr(self, 'ObjectType', INDETERMINATE))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcShapeModel_WR11:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcShapeModel'
|
|
|
|
|
RULE_NAME = 'WR11'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
ofshapeaspect = express_getattr(self, 'OfShapeAspect', INDETERMINATE)
|
|
|
|
|
assert (sizeof(express_getattr(self, 'OfProductRepresentation', INDETERMINATE)) == 1) ^ (sizeof(express_getattr(self, 'RepresentationMap', INDETERMINATE)) == 1) ^ (sizeof(ofshapeaspect) == 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcShapeRepresentation_WR21:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcShapeRepresentation'
|
|
|
|
|
RULE_NAME = 'WR21'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert ('ifc2x3.ifcgeometricrepresentationcontext' in typeof(express_getattr(self, 'ContextOfItems', INDETERMINATE))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcShapeRepresentation_WR22:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcShapeRepresentation'
|
|
|
|
|
RULE_NAME = 'WR22'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
items = express_getattr(self, 'Items', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (sizeof([temp for temp in items if 'ifc2x3.ifctopologicalrepresentationitem' in typeof(temp) and (not sizeof(['ifc2x3.ifcvertexpoint', 'ifc2x3.ifcedgecurve', 'ifc2x3.ifcfacesurface'] * typeof(temp)) == 1)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcShapeRepresentation_WR23:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcShapeRepresentation'
|
|
|
|
|
RULE_NAME = 'WR23'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert exists(express_getattr(self, 'RepresentationType', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcShapeRepresentation_WR24:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcShapeRepresentation'
|
|
|
|
|
RULE_NAME = 'WR24'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert IfcShapeRepresentationTypes(express_getattr(self, 'RepresentationType', INDETERMINATE), express_getattr(self, 'Items', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcShellBasedSurfaceModel_Dim(self):
|
|
|
|
|
return 3
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcSlab_WR61:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcSlab'
|
|
|
|
|
RULE_NAME = 'WR61'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (not exists(predefinedtype) or predefinedtype != express_getattr(IfcSlabTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcSlabTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ObjectType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcSolidModel_Dim(self):
|
|
|
|
|
return 3
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcSpaceHeaterType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcSpaceHeaterType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcSpaceHeaterTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcSpaceHeaterTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcSpatialStructureElement_WR41:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcSpatialStructureElement'
|
|
|
|
|
RULE_NAME = 'WR41'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (hiindex(express_getattr(self, 'Decomposes', INDETERMINATE)) == 1 and 'ifc2x3.ifcrelaggregates' in typeof(express_getitem(express_getattr(self, 'Decomposes', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)) and ('ifc2x3.ifcproject' in typeof(express_getattr(express_getitem(express_getattr(self, 'Decomposes', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'RelatingObject', INDETERMINATE)) or 'ifc2x3.ifcspatialstructureelement' in typeof(express_getattr(express_getitem(express_getattr(self, 'Decomposes', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'RelatingObject', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcStair_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcStair'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (hiindex(express_getattr(self, 'IsDecomposedBy', INDETERMINATE)) == 0 or (hiindex(express_getattr(self, 'IsDecomposedBy', INDETERMINATE)) == 1 and (not exists(express_getattr(self, 'Representation', INDETERMINATE))))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcStructuralLinearAction_WR61:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcStructuralLinearAction'
|
|
|
|
|
RULE_NAME = 'WR61'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof(['ifc2x3.ifcstructuralloadlinearforce', 'ifc2x3.ifcstructuralloadtemperature'] * typeof(express_getattr(self, 'AppliedLoad', INDETERMINATE))) == 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcStructuralLinearActionVarying_VaryingAppliedLoads(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
subsequentappliedloads = express_getattr(self, 'SubsequentAppliedLoads', INDETERMINATE)
|
|
|
|
|
return IfcAddToBeginOfList(express_getattr(self, 'AppliedLoad', INDETERMINATE), subsequentappliedloads)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcStructuralPlanarAction_WR61:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcStructuralPlanarAction'
|
|
|
|
|
RULE_NAME = 'WR61'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof(['ifc2x3.ifcstructuralloadplanarforce', 'ifc2x3.ifcstructuralloadtemperature'] * typeof(express_getattr(self, 'AppliedLoad', INDETERMINATE))) == 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcStructuralPlanarActionVarying_VaryingAppliedLoads(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
subsequentappliedloads = express_getattr(self, 'SubsequentAppliedLoads', INDETERMINATE)
|
|
|
|
|
return IfcAddToBeginOfList(express_getattr(self, 'AppliedLoad', INDETERMINATE), subsequentappliedloads)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcStructuralPointAction_WR61:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcStructuralPointAction'
|
|
|
|
|
RULE_NAME = 'WR61'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof(['ifc2x3.ifcstructuralloadsingleforce', 'ifc2x3.ifcstructuralloadsingledisplacement'] * typeof(express_getattr(self, 'AppliedLoad', INDETERMINATE))) == 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcStructuralPointReaction_WR61:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcStructuralPointReaction'
|
|
|
|
|
RULE_NAME = 'WR61'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof(['ifc2x3.ifcstructuralloadsingleforce', 'ifc2x3.ifcstructuralloadsingledisplacement'] * typeof(express_getattr(self, 'AppliedLoad', INDETERMINATE))) == 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcStructuralProfileProperties_WR21:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcStructuralProfileProperties'
|
|
|
|
|
RULE_NAME = 'WR21'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
sheardeformationareay = express_getattr(self, 'ShearDeformationAreaY', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not exists(sheardeformationareay) or sheardeformationareay >= 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcStructuralProfileProperties_WR22:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcStructuralProfileProperties'
|
|
|
|
|
RULE_NAME = 'WR22'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
sheardeformationareaz = express_getattr(self, 'ShearDeformationAreaZ', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not exists(sheardeformationareaz) or sheardeformationareaz >= 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcStructuralSteelProfileProperties_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcStructuralSteelProfileProperties'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
shearareay = express_getattr(self, 'ShearAreaY', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not exists(shearareay) or shearareay >= 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcStructuralSteelProfileProperties_WR32:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcStructuralSteelProfileProperties'
|
|
|
|
|
RULE_NAME = 'WR32'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
shearareaz = express_getattr(self, 'ShearAreaZ', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not exists(shearareaz) or shearareaz >= 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcStructuralSurfaceMemberVarying_WR61:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcStructuralSurfaceMemberVarying'
|
|
|
|
|
RULE_NAME = 'WR61'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert exists(express_getattr(self, 'Thickness', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcStructuralSurfaceMemberVarying_WR62:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcStructuralSurfaceMemberVarying'
|
|
|
|
|
RULE_NAME = 'WR62'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([temp for temp in express_getattr(express_getattr(self, 'VaryingThicknessLocation', INDETERMINATE), 'ShapeRepresentations', INDETERMINATE) if not sizeof(express_getattr(temp, 'Items', INDETERMINATE)) == 1]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcStructuralSurfaceMemberVarying_WR63:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcStructuralSurfaceMemberVarying'
|
|
|
|
|
RULE_NAME = 'WR63'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([temp for temp in express_getattr(express_getattr(self, 'VaryingThicknessLocation', INDETERMINATE), 'ShapeRepresentations', INDETERMINATE) if not ('ifc2x3.ifccartesianpoint' in typeof(express_getitem(express_getattr(temp, 'Items', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)) or 'ifc2x3.ifcpointonsurface' in typeof(express_getitem(express_getattr(temp, 'Items', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)))]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcStructuralSurfaceMemberVarying_VaryingThickness(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
subsequentthickness = express_getattr(self, 'SubsequentThickness', INDETERMINATE)
|
|
|
|
|
return IfcAddToBeginOfList(express_getattr(self, 'Thickness', INDETERMINATE), subsequentthickness)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcStructuredDimensionCallout_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcStructuredDimensionCallout'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
contents = express_getattr(self, 'Contents', INDETERMINATE)
|
|
|
|
|
assert (sizeof([ato for ato in [con for con in express_getattr(self, 'contents', INDETERMINATE) if 'ifc2x3.ifcannotationtextoccurrence' in typeof(con)] if not express_getattr(express_getattr(ato, 'Name', INDETERMINATE), 'lower', INDETERMINATE)() in ['dimensionvalue', 'tolerancevalue', 'unittext', 'prefixtext', 'suffixtext']]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcStyledItem_WR11:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcStyledItem'
|
|
|
|
|
RULE_NAME = 'WR11'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
styles = express_getattr(self, 'Styles', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (sizeof(styles) == 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcStyledItem_WR12:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcStyledItem'
|
|
|
|
|
RULE_NAME = 'WR12'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
item = express_getattr(self, 'Item', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not 'ifc2x3.ifcstyleditem' in typeof(item)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcStyledRepresentation_WR21:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcStyledRepresentation'
|
|
|
|
|
RULE_NAME = 'WR21'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([temp for temp in express_getattr(self, 'Items', INDETERMINATE) if not 'ifc2x3.ifcstyleditem' in typeof(temp)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcSurfaceOfLinearExtrusion_WR41:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcSurfaceOfLinearExtrusion'
|
|
|
|
|
RULE_NAME = 'WR41'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
depth = express_getattr(self, 'Depth', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (depth > 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcSurfaceOfLinearExtrusion_ExtrusionAxis(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
extrudeddirection = express_getattr(self, 'ExtrudedDirection', INDETERMINATE)
|
|
|
|
|
depth = express_getattr(self, 'Depth', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcVector(Orientation=extrudeddirection, Magnitude=depth)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcSurfaceOfRevolution_AxisLine(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
axisposition = express_getattr(self, 'AxisPosition', INDETERMINATE)
|
|
|
|
|
return IfcLine(Pnt=express_getattr(axisposition, 'Location', INDETERMINATE), Dir=IfcVector(Orientation=express_getattr(axisposition, 'Z', INDETERMINATE), Magnitude=1.0))
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcSurfaceStyle_WR11:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcSurfaceStyle'
|
|
|
|
|
RULE_NAME = 'WR11'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([style for style in express_getattr(self, 'Styles', INDETERMINATE) if 'ifc2x3.ifcsurfacestyleshading' in typeof(style)]) <= 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcSurfaceStyle_WR12:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcSurfaceStyle'
|
|
|
|
|
RULE_NAME = 'WR12'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([style for style in express_getattr(self, 'Styles', INDETERMINATE) if 'ifc2x3.ifcsurfacestylelighting' in typeof(style)]) <= 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcSurfaceStyle_WR13:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcSurfaceStyle'
|
|
|
|
|
RULE_NAME = 'WR13'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([style for style in express_getattr(self, 'Styles', INDETERMINATE) if 'ifc2x3.ifcsurfacestylerefraction' in typeof(style)]) <= 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcSurfaceStyle_WR14:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcSurfaceStyle'
|
|
|
|
|
RULE_NAME = 'WR14'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([style for style in express_getattr(self, 'Styles', INDETERMINATE) if 'ifc2x3.ifcsurfacestylewithtextures' in typeof(style)]) <= 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcSurfaceStyle_WR15:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcSurfaceStyle'
|
|
|
|
|
RULE_NAME = 'WR15'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([style for style in express_getattr(self, 'Styles', INDETERMINATE) if 'ifc2x3.ifcexternallydefinedsurfacestyle' in typeof(style)]) <= 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcSweptAreaSolid_WR22:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcSweptAreaSolid'
|
|
|
|
|
RULE_NAME = 'WR22'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
sweptarea = express_getattr(self, 'SweptArea', INDETERMINATE)
|
|
|
|
|
assert (express_getattr(sweptarea, 'ProfileType', INDETERMINATE) == express_getattr(IfcProfileTypeEnum, 'Area', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcSweptDiskSolid_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcSweptDiskSolid'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
directrix = express_getattr(self, 'Directrix', INDETERMINATE)
|
|
|
|
|
assert (express_getattr(directrix, 'Dim', INDETERMINATE) == 3) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcSweptDiskSolid_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcSweptDiskSolid'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
radius = express_getattr(self, 'Radius', INDETERMINATE)
|
|
|
|
|
innerradius = express_getattr(self, 'InnerRadius', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not exists(innerradius) or radius > innerradius) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcSweptSurface_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcSweptSurface'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
sweptcurve = express_getattr(self, 'SweptCurve', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not 'ifc2x3.ifcderivedprofiledef' in typeof(sweptcurve)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcSweptSurface_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcSweptSurface'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
sweptcurve = express_getattr(self, 'SweptCurve', INDETERMINATE)
|
|
|
|
|
assert (express_getattr(sweptcurve, 'ProfileType', INDETERMINATE) == express_getattr(IfcProfileTypeEnum, 'Curve', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcSweptSurface_Dim(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
position = express_getattr(self, 'Position', INDETERMINATE)
|
|
|
|
|
return express_getattr(position, 'Dim', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcTShapeProfileDef_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcTShapeProfileDef'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
depth = express_getattr(self, 'Depth', INDETERMINATE)
|
|
|
|
|
flangethickness = express_getattr(self, 'FlangeThickness', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (flangethickness < depth) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcTShapeProfileDef_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcTShapeProfileDef'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
flangewidth = express_getattr(self, 'FlangeWidth', INDETERMINATE)
|
|
|
|
|
webthickness = express_getattr(self, 'WebThickness', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (webthickness < flangewidth) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcTable_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcTable'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
rows = express_getattr(self, 'Rows', INDETERMINATE)
|
|
|
|
|
assert (sizeof([temp for temp in rows if hiindex(express_getattr(temp, 'RowCells', INDETERMINATE)) != hiindex(express_getattr(express_getitem(rows, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'RowCells', INDETERMINATE))]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcTable_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcTable'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
rows = express_getattr(self, 'Rows', INDETERMINATE)
|
|
|
|
|
assert (sizeof([temp for temp in rows if hiindex(express_getattr(temp, 'RowCells', INDETERMINATE)) != hiindex(express_getattr(express_getitem(rows, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'RowCells', INDETERMINATE))]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcTable_WR3:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcTable'
|
|
|
|
|
RULE_NAME = 'WR3'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
numberofheadings = express_getattr(self, 'NumberOfHeadings', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (0 <= numberofheadings <= 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcTable_NumberOfCellsInRow(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
rows = express_getattr(self, 'Rows', INDETERMINATE)
|
|
|
|
|
return hiindex(express_getattr(express_getitem(rows, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'RowCells', INDETERMINATE))
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcTable_NumberOfHeadings(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
rows = express_getattr(self, 'Rows', INDETERMINATE)
|
|
|
|
|
return sizeof([temp for temp in rows if express_getattr(temp, 'IsHeading', INDETERMINATE)])
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcTable_NumberOfDataRows(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
rows = express_getattr(self, 'Rows', INDETERMINATE)
|
|
|
|
|
return sizeof([temp for temp in rows if not express_getattr(temp, 'IsHeading', INDETERMINATE)])
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcTankType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcTankType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcTankTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcTankTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcTask_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcTask'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([temp for temp in express_getattr(self, 'Decomposes', INDETERMINATE) if not 'ifc2x3.ifcrelnests' in typeof(temp)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcTask_WR2:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcTask'
|
|
|
|
|
RULE_NAME = 'WR2'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([temp for temp in express_getattr(self, 'IsDecomposedBy', INDETERMINATE) if not 'ifc2x3.ifcrelnests' in typeof(temp)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcTask_WR3:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcTask'
|
|
|
|
|
RULE_NAME = 'WR3'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert exists(express_getattr(self, 'Name', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcTelecomAddress_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcTelecomAddress'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
telephonenumbers = express_getattr(self, 'TelephoneNumbers', INDETERMINATE)
|
|
|
|
|
facsimilenumbers = express_getattr(self, 'FacsimileNumbers', INDETERMINATE)
|
|
|
|
|
pagernumber = express_getattr(self, 'PagerNumber', INDETERMINATE)
|
|
|
|
|
electronicmailaddresses = express_getattr(self, 'ElectronicMailAddresses', INDETERMINATE)
|
|
|
|
|
wwwhomepageurl = express_getattr(self, 'WWWHomePageURL', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (exists(telephonenumbers) or exists(pagernumber) or exists(facsimilenumbers) or exists(electronicmailaddresses) or exists(wwwhomepageurl)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcTendon_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcTendon'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcTendonTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcTendonTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ObjectType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcTextLiteralWithExtent_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcTextLiteralWithExtent'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
extent = express_getattr(self, 'Extent', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not 'ifc2x3.ifcplanarbox' in typeof(extent)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcTextStyleFontModel_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcTextStyleFontModel'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert ('ifc2x3.ifclengthmeasure' in typeof(express_getattr(self, 'FontSize', INDETERMINATE)) and express_getattr(self, 'FontSize', INDETERMINATE) > 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcTextureMap_WR11:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcTextureMap'
|
|
|
|
|
RULE_NAME = 'WR11'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof(['ifc2x3.ifcshellbasedsurfacemodel', 'ifc2x3.ifcfacebasedsurfacemodel', 'ifc2x3.ifcfacetedbrep', 'ifc2x3.ifcfacetedbrepwithvoids'] * typeof(express_getattr(express_getitem(express_getattr(self, 'AnnotatedSurface', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Item', INDETERMINATE))) >= 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcTimeSeriesSchedule_WR41:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcTimeSeriesSchedule'
|
|
|
|
|
RULE_NAME = 'WR41'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
timeseriesscheduletype = express_getattr(self, 'TimeSeriesScheduleType', INDETERMINATE)
|
|
|
|
|
assert (not timeseriesscheduletype == express_getattr(IfcTimeSeriesScheduleTypeEnum, 'USERDEFINED', INDETERMINATE) or exists(express_getattr(self, 'ObjectType', INDETERMINATE))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcTopologyRepresentation_WR21:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcTopologyRepresentation'
|
|
|
|
|
RULE_NAME = 'WR21'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([temp for temp in express_getattr(self, 'Items', INDETERMINATE) if not 'ifc2x3.ifctopologicalrepresentationitem' in typeof(temp)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcTopologyRepresentation_WR22:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcTopologyRepresentation'
|
|
|
|
|
RULE_NAME = 'WR22'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert exists(express_getattr(self, 'RepresentationType', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcTopologyRepresentation_WR23:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcTopologyRepresentation'
|
|
|
|
|
RULE_NAME = 'WR23'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert IfcTopologyRepresentationTypes(express_getattr(self, 'RepresentationType', INDETERMINATE), express_getattr(self, 'Items', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcTrimmedCurve_WR41:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcTrimmedCurve'
|
|
|
|
|
RULE_NAME = 'WR41'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
trim1 = express_getattr(self, 'Trim1', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (hiindex(trim1) == 1 or typeof(express_getitem(trim1, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)) != typeof(express_getitem(trim1, 2 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcTrimmedCurve_WR42:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcTrimmedCurve'
|
|
|
|
|
RULE_NAME = 'WR42'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
trim2 = express_getattr(self, 'Trim2', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (hiindex(trim2) == 1 or typeof(express_getitem(trim2, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)) != typeof(express_getitem(trim2, 2 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcTrimmedCurve_WR43:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcTrimmedCurve'
|
|
|
|
|
RULE_NAME = 'WR43'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
basiscurve = express_getattr(self, 'BasisCurve', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not 'ifc2x3.ifcboundedcurve' in typeof(basiscurve)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcTubeBundleType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcTubeBundleType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcTubeBundleTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcTubeBundleTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcTypeObject_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcTypeObject'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert exists(express_getattr(self, 'Name', INDETERMINATE)) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcTypeProduct_WR41:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcTypeProduct'
|
|
|
|
|
RULE_NAME = 'WR41'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (not exists(lambda : express_getitem(express_getattr(self, 'ObjectTypeOf', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)) or sizeof([temp for temp in express_getattr(express_getitem(express_getattr(self, 'ObjectTypeOf', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'RelatedObjects', INDETERMINATE) if not 'ifc2x3.ifcproduct' in typeof(temp)]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcUShapeProfileDef_WR21:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcUShapeProfileDef'
|
|
|
|
|
RULE_NAME = 'WR21'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
depth = express_getattr(self, 'Depth', INDETERMINATE)
|
|
|
|
|
flangethickness = express_getattr(self, 'FlangeThickness', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (flangethickness < depth / 2.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcUShapeProfileDef_WR22:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcUShapeProfileDef'
|
|
|
|
|
RULE_NAME = 'WR22'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
flangewidth = express_getattr(self, 'FlangeWidth', INDETERMINATE)
|
|
|
|
|
webthickness = express_getattr(self, 'WebThickness', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (webthickness < flangewidth) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcUnitAssignment_WR01:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcUnitAssignment'
|
|
|
|
|
RULE_NAME = 'WR01'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
units = express_getattr(self, 'Units', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert IfcCorrectUnitAssignment(units) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcUnitaryEquipmentType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcUnitaryEquipmentType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcUnitaryEquipmentTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcUnitaryEquipmentTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcValveType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcValveType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcValveTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcValveTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcVector_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcVector'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
magnitude = express_getattr(self, 'Magnitude', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (magnitude >= 0.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
def calc_IfcVector_Dim(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
orientation = express_getattr(self, 'Orientation', INDETERMINATE)
|
|
|
|
|
return express_getattr(orientation, 'Dim', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcVibrationIsolatorType_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcVibrationIsolatorType'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
predefinedtype = express_getattr(self, 'PredefinedType', INDETERMINATE)
|
|
|
|
|
assert (predefinedtype != express_getattr(IfcVibrationIsolatorTypeEnum, 'USERDEFINED', INDETERMINATE) or (predefinedtype == express_getattr(IfcVibrationIsolatorTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'ElementType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcWall_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcWall'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([temp for temp in express_getattr(self, 'HasAssociations', INDETERMINATE) if 'ifc2x3.ifcrelassociatesmaterial' in typeof(temp)]) <= 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcWallStandardCase_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcWallStandardCase'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([temp for temp in usedin(self, 'ifc2x3.ifcrelassociates.relatedobjects') if 'ifc2x3.ifcrelassociatesmaterial' in typeof(temp) and 'ifc2x3.ifcmateriallayersetusage' in typeof(express_getattr(temp, 'RelatingMaterial', INDETERMINATE))]) == 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcWindowLiningProperties_WR31:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcWindowLiningProperties'
|
|
|
|
|
RULE_NAME = 'WR31'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
liningdepth = express_getattr(self, 'LiningDepth', INDETERMINATE)
|
|
|
|
|
liningthickness = express_getattr(self, 'LiningThickness', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not (not exists(liningdepth) and exists(liningthickness))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcWindowLiningProperties_WR32:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcWindowLiningProperties'
|
|
|
|
|
RULE_NAME = 'WR32'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
firsttransomoffset = express_getattr(self, 'FirstTransomOffset', INDETERMINATE)
|
|
|
|
|
secondtransomoffset = express_getattr(self, 'SecondTransomOffset', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not (not exists(firsttransomoffset) and exists(secondtransomoffset))) is not False
|
|
|
|
|
|
|
|
|
|
class IfcWindowLiningProperties_WR33:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcWindowLiningProperties'
|
|
|
|
|
RULE_NAME = 'WR33'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
firstmullionoffset = express_getattr(self, 'FirstMullionOffset', INDETERMINATE)
|
|
|
|
|
secondmullionoffset = express_getattr(self, 'SecondMullionOffset', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (not (not exists(firstmullionoffset) and exists(secondmullionoffset))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcWindowLiningProperties_WR34:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcWindowLiningProperties'
|
|
|
|
|
RULE_NAME = 'WR34'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (exists(lambda : express_getitem(express_getattr(self, 'DefinesType', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)) and 'ifc2x3.ifcwindowstyle' in typeof(express_getitem(express_getattr(self, 'DefinesType', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcWorkControl_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcWorkControl'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
workcontroltype = express_getattr(self, 'WorkControlType', INDETERMINATE)
|
|
|
|
|
assert (workcontroltype != express_getattr(IfcWorkControlTypeEnum, 'USERDEFINED', INDETERMINATE) or (workcontroltype == express_getattr(IfcWorkControlTypeEnum, 'USERDEFINED', INDETERMINATE) and exists(express_getattr(self, 'UserDefinedControlType', INDETERMINATE)))) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcZShapeProfileDef_WR21:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcZShapeProfileDef'
|
|
|
|
|
RULE_NAME = 'WR21'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
depth = express_getattr(self, 'Depth', INDETERMINATE)
|
|
|
|
|
flangethickness = express_getattr(self, 'FlangeThickness', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
assert (flangethickness < depth / 2.0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
class IfcZone_WR1:
|
|
|
|
|
SCOPE = 'entity'
|
|
|
|
|
TYPE_NAME = 'IfcZone'
|
|
|
|
|
RULE_NAME = 'WR1'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
|
|
|
|
def __call__(self):
|
2025-12-24 15:33:36 +01:00
|
|
|
assert (sizeof([temp for temp in express_getattr(express_getattr(self, 'IsGroupedBy', INDETERMINATE), 'RelatedObjects', INDETERMINATE) if not ('ifc2x3.ifczone' in typeof(temp) or 'ifc2x3.ifcspace' in typeof(temp))]) == 0) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
|
|
|
|
class IfcRepresentationContextSameWCS:
|
2023-02-14 10:03:42 +01:00
|
|
|
SCOPE = 'file'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(file):
|
2025-12-24 15:33:36 +01:00
|
|
|
IfcGeometricRepresentationContext = express_getattr(file, 'by_type', INDETERMINATE)('IfcGeometricRepresentationContext')
|
2022-12-26 11:29:32 +01:00
|
|
|
isdifferent = False
|
|
|
|
|
if sizeof(IfcGeometricRepresentationContext) > 1:
|
|
|
|
|
for i in range(2, hiindex(IfcGeometricRepresentationContext) + 1):
|
2025-12-24 15:33:36 +01:00
|
|
|
if express_getattr(express_getitem(IfcGeometricRepresentationContext, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'WorldCoordinateSystem', INDETERMINATE) != express_getattr(express_getitem(IfcGeometricRepresentationContext, i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'WorldCoordinateSystem', INDETERMINATE):
|
|
|
|
|
isdifferent = not IfcSameValidPrecision(express_getattr(express_getitem(IfcGeometricRepresentationContext, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Precision', INDETERMINATE), express_getattr(express_getitem(IfcGeometricRepresentationContext, i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Precision', INDETERMINATE)) or not IfcSameAxis2Placement(express_getattr(express_getitem(IfcGeometricRepresentationContext, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'WorldCoordinateSystem', INDETERMINATE), express_getattr(express_getitem(IfcGeometricRepresentationContext, i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'WorldCoordinateSystem', INDETERMINATE), express_getattr(express_getitem(IfcGeometricRepresentationContext, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Precision', INDETERMINATE))
|
2022-12-26 11:29:32 +01:00
|
|
|
if isdifferent == True:
|
|
|
|
|
break
|
2023-01-11 13:38:12 +01:00
|
|
|
assert (isdifferent == False) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
|
|
|
|
class IfcSingleProjectInstance:
|
2023-02-14 10:03:42 +01:00
|
|
|
SCOPE = 'file'
|
2022-12-26 11:29:32 +01:00
|
|
|
|
2023-02-14 10:03:42 +01:00
|
|
|
@staticmethod
|
2022-12-26 11:29:32 +01:00
|
|
|
def __call__(file):
|
2025-12-24 15:33:36 +01:00
|
|
|
IfcProject = express_getattr(file, 'by_type', INDETERMINATE)('IfcProject')
|
2023-01-11 13:38:12 +01:00
|
|
|
assert (sizeof(IfcProject) <= 1) is not False
|
2022-12-26 11:29:32 +01:00
|
|
|
|
|
|
|
|
def IfcAddToBeginOfList(ascalar, alist):
|
|
|
|
|
result = []
|
|
|
|
|
if not exists(ascalar):
|
|
|
|
|
result = alist
|
|
|
|
|
else:
|
|
|
|
|
result = result + ascalar
|
|
|
|
|
if hiindex(alist) >= 1:
|
|
|
|
|
for i in range(1, hiindex(alist) + 1):
|
|
|
|
|
temp = list(result)
|
2023-03-11 20:44:11 +01:00
|
|
|
temp[i + 1 - EXPRESS_ONE_BASED_INDEXING] = express_getitem(alist, i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
result = temp
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
def IfcBaseAxis(dim, axis1, axis2, axis3):
|
|
|
|
|
if dim == 3:
|
2023-02-14 10:03:42 +01:00
|
|
|
d1 = nvl(IfcNormalise(axis3), IfcDirection(DirectionRatios=[0.0, 0.0, 1.0]))
|
|
|
|
|
d2 = IfcFirstProjAxis(d1, axis1)
|
|
|
|
|
u = [d2, IfcSecondProjAxis(d1, d2, axis2), d1]
|
|
|
|
|
elif exists(axis1):
|
|
|
|
|
d1 = IfcNormalise(axis1)
|
|
|
|
|
u = [d1, IfcOrthogonalComplement(d1)]
|
|
|
|
|
if exists(axis2):
|
|
|
|
|
factor = IfcDotProduct(axis2, express_getitem(u, 2 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE))
|
|
|
|
|
if factor < 0.0:
|
2025-12-24 15:33:36 +01:00
|
|
|
u[2 - EXPRESS_ONE_BASED_INDEXING].DirectionRatios[1 - EXPRESS_ONE_BASED_INDEXING] = -express_getitem(express_getattr(express_getitem(u, 2 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'DirectionRatios', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)
|
|
|
|
|
u[2 - EXPRESS_ONE_BASED_INDEXING].DirectionRatios[2 - EXPRESS_ONE_BASED_INDEXING] = -express_getitem(express_getattr(express_getitem(u, 2 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'DirectionRatios', INDETERMINATE), 2 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
elif exists(axis2):
|
|
|
|
|
d1 = IfcNormalise(axis2)
|
|
|
|
|
u = [IfcOrthogonalComplement(d1), d1]
|
2025-12-24 15:33:36 +01:00
|
|
|
u[1 - EXPRESS_ONE_BASED_INDEXING].DirectionRatios[1 - EXPRESS_ONE_BASED_INDEXING] = -express_getitem(express_getattr(express_getitem(u, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'DirectionRatios', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)
|
|
|
|
|
u[1 - EXPRESS_ONE_BASED_INDEXING].DirectionRatios[2 - EXPRESS_ONE_BASED_INDEXING] = -express_getitem(express_getattr(express_getitem(u, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'DirectionRatios', INDETERMINATE), 2 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
else:
|
2023-02-14 10:03:42 +01:00
|
|
|
u = [IfcDirection(DirectionRatios=[1.0, 0.0]), IfcDirection(DirectionRatios=[0.0, 1.0])]
|
2022-12-26 11:29:32 +01:00
|
|
|
return u
|
|
|
|
|
|
|
|
|
|
def IfcBooleanChoose(b, choice1, choice2):
|
|
|
|
|
if b:
|
|
|
|
|
return choice1
|
|
|
|
|
else:
|
|
|
|
|
return choice2
|
|
|
|
|
|
|
|
|
|
def IfcBuild2Axes(refdirection):
|
2023-02-14 10:03:42 +01:00
|
|
|
d = nvl(IfcNormalise(refdirection), IfcDirection(DirectionRatios=[1.0, 0.0]))
|
|
|
|
|
return [d, IfcOrthogonalComplement(d)]
|
2022-12-26 11:29:32 +01:00
|
|
|
|
|
|
|
|
def IfcBuildAxes(axis, refdirection):
|
2023-02-14 10:03:42 +01:00
|
|
|
d1 = nvl(IfcNormalise(axis), IfcDirection(DirectionRatios=[0.0, 0.0, 1.0]))
|
|
|
|
|
d2 = IfcFirstProjAxis(d1, refdirection)
|
2025-12-24 15:33:36 +01:00
|
|
|
return [d2, express_getattr(IfcNormalise(IfcCrossProduct(d1, d2)), 'Orientation', INDETERMINATE), d1]
|
2022-12-26 11:29:32 +01:00
|
|
|
|
|
|
|
|
def IfcCorrectDimensions(m, dim):
|
|
|
|
|
if m == lengthunit:
|
2023-02-14 10:03:42 +01:00
|
|
|
if dim == IfcDimensionalExponents(1, 0, 0, 0, 0, 0, 0):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
elif m == massunit:
|
2023-02-14 10:03:42 +01:00
|
|
|
if dim == IfcDimensionalExponents(0, 1, 0, 0, 0, 0, 0):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
elif m == timeunit:
|
2023-02-14 10:03:42 +01:00
|
|
|
if dim == IfcDimensionalExponents(0, 0, 1, 0, 0, 0, 0):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
elif m == electriccurrentunit:
|
2023-02-14 10:03:42 +01:00
|
|
|
if dim == IfcDimensionalExponents(0, 0, 0, 1, 0, 0, 0):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
elif m == thermodynamictemperatureunit:
|
2023-02-14 10:03:42 +01:00
|
|
|
if dim == IfcDimensionalExponents(0, 0, 0, 0, 1, 0, 0):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
elif m == amountofsubstanceunit:
|
2023-02-14 10:03:42 +01:00
|
|
|
if dim == IfcDimensionalExponents(0, 0, 0, 0, 0, 1, 0):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
elif m == luminousintensityunit:
|
2023-02-14 10:03:42 +01:00
|
|
|
if dim == IfcDimensionalExponents(0, 0, 0, 0, 0, 0, 1):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
elif m == planeangleunit:
|
2023-02-14 10:03:42 +01:00
|
|
|
if dim == IfcDimensionalExponents(0, 0, 0, 0, 0, 0, 0):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
elif m == solidangleunit:
|
2023-02-14 10:03:42 +01:00
|
|
|
if dim == IfcDimensionalExponents(0, 0, 0, 0, 0, 0, 0):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
elif m == areaunit:
|
2023-02-14 10:03:42 +01:00
|
|
|
if dim == IfcDimensionalExponents(2, 0, 0, 0, 0, 0, 0):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
elif m == volumeunit:
|
2023-02-14 10:03:42 +01:00
|
|
|
if dim == IfcDimensionalExponents(3, 0, 0, 0, 0, 0, 0):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
elif m == absorbeddoseunit:
|
2023-02-14 10:03:42 +01:00
|
|
|
if dim == IfcDimensionalExponents(2, 0, -2, 0, 0, 0, 0):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
elif m == radioactivityunit:
|
2023-02-14 10:03:42 +01:00
|
|
|
if dim == IfcDimensionalExponents(0, 0, -1, 0, 0, 0, 0):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
elif m == electriccapacitanceunit:
|
2023-02-14 10:03:42 +01:00
|
|
|
if dim == IfcDimensionalExponents(-2, 1, 4, 1, 0, 0, 0):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
elif m == doseequivalentunit:
|
2023-02-14 10:03:42 +01:00
|
|
|
if dim == IfcDimensionalExponents(2, 0, -2, 0, 0, 0, 0):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
elif m == electricchargeunit:
|
2023-02-14 10:03:42 +01:00
|
|
|
if dim == IfcDimensionalExponents(0, 0, 1, 1, 0, 0, 0):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
elif m == electricconductanceunit:
|
2023-02-14 10:03:42 +01:00
|
|
|
if dim == IfcDimensionalExponents(-2, -1, 3, 2, 0, 0, 0):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
elif m == electricvoltageunit:
|
2023-02-14 10:03:42 +01:00
|
|
|
if dim == IfcDimensionalExponents(2, 1, -3, -1, 0, 0, 0):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
elif m == electricresistanceunit:
|
2023-02-14 10:03:42 +01:00
|
|
|
if dim == IfcDimensionalExponents(2, 1, -3, -2, 0, 0, 0):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
elif m == energyunit:
|
2023-02-14 10:03:42 +01:00
|
|
|
if dim == IfcDimensionalExponents(2, 1, -2, 0, 0, 0, 0):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
elif m == forceunit:
|
2023-02-14 10:03:42 +01:00
|
|
|
if dim == IfcDimensionalExponents(1, 1, -2, 0, 0, 0, 0):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
elif m == frequencyunit:
|
2023-02-14 10:03:42 +01:00
|
|
|
if dim == IfcDimensionalExponents(0, 0, -1, 0, 0, 0, 0):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
elif m == inductanceunit:
|
2023-02-14 10:03:42 +01:00
|
|
|
if dim == IfcDimensionalExponents(2, 1, -2, -2, 0, 0, 0):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
elif m == illuminanceunit:
|
2023-02-14 10:03:42 +01:00
|
|
|
if dim == IfcDimensionalExponents(-2, 0, 0, 0, 0, 0, 1):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
elif m == luminousfluxunit:
|
2023-02-14 10:03:42 +01:00
|
|
|
if dim == IfcDimensionalExponents(0, 0, 0, 0, 0, 0, 1):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
elif m == magneticfluxunit:
|
2023-02-14 10:03:42 +01:00
|
|
|
if dim == IfcDimensionalExponents(2, 1, -2, -1, 0, 0, 0):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
elif m == magneticfluxdensityunit:
|
2023-02-14 10:03:42 +01:00
|
|
|
if dim == IfcDimensionalExponents(0, 1, -2, -1, 0, 0, 0):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
elif m == powerunit:
|
2023-02-14 10:03:42 +01:00
|
|
|
if dim == IfcDimensionalExponents(2, 1, -3, 0, 0, 0, 0):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
elif m == pressureunit:
|
2023-02-14 10:03:42 +01:00
|
|
|
if dim == IfcDimensionalExponents(-1, 1, -2, 0, 0, 0, 0):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
else:
|
|
|
|
|
return unknown
|
|
|
|
|
|
|
|
|
|
def IfcCorrectFillAreaStyle(styles):
|
|
|
|
|
hatching = 0
|
|
|
|
|
tiles = 0
|
|
|
|
|
colour = 0
|
|
|
|
|
external = 0
|
|
|
|
|
external = sizeof([style for style in styles if 'ifc2x3.ifcexternallydefinedhatchstyle' in typeof(style)])
|
|
|
|
|
hatching = sizeof([style for style in styles if 'ifc2x3.ifcfillareastylehatching' in typeof(style)])
|
|
|
|
|
tiles = sizeof([style for style in styles if 'ifc2x3.ifcfillareastyletiles' in typeof(style)])
|
|
|
|
|
colour = sizeof([style for style in styles if 'ifc2x3.ifccolour' in typeof(style)])
|
|
|
|
|
if external > 1:
|
|
|
|
|
return False
|
2023-02-14 10:03:42 +01:00
|
|
|
if external == 1 and (hatching > 0 or tiles > 0 or colour > 0):
|
2022-12-26 11:29:32 +01:00
|
|
|
return False
|
|
|
|
|
if colour > 1:
|
|
|
|
|
return False
|
2023-02-14 10:03:42 +01:00
|
|
|
if hatching > 0 and tiles > 0:
|
2022-12-26 11:29:32 +01:00
|
|
|
return False
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
def IfcCorrectLocalPlacement(axisplacement, relplacement):
|
|
|
|
|
if exists(relplacement):
|
|
|
|
|
if 'ifc2x3.ifcgridplacement' in typeof(relplacement):
|
|
|
|
|
return None
|
|
|
|
|
if 'ifc2x3.ifclocalplacement' in typeof(relplacement):
|
|
|
|
|
if 'ifc2x3.ifcaxis2placement2d' in typeof(axisplacement):
|
|
|
|
|
return True
|
|
|
|
|
if 'ifc2x3.ifcaxis2placement3d' in typeof(axisplacement):
|
2025-12-24 15:33:36 +01:00
|
|
|
if express_getattr(express_getattr(relplacement, 'RelativePlacement', INDETERMINATE), 'Dim', INDETERMINATE) == 3:
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
return True
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
def IfcCorrectObjectAssignment(constraint, objects):
|
|
|
|
|
count = 0
|
|
|
|
|
if not exists(constraint):
|
|
|
|
|
return True
|
2025-12-24 15:33:36 +01:00
|
|
|
if constraint == express_getattr(IfcObjectTypeEnum, 'NOTDEFINED', INDETERMINATE):
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
2025-12-24 15:33:36 +01:00
|
|
|
elif constraint == express_getattr(IfcObjectTypeEnum, 'PRODUCT', INDETERMINATE):
|
2023-02-14 10:03:42 +01:00
|
|
|
count = sizeof([temp for temp in objects if not 'ifc2x3.ifcproduct' in typeof(temp)])
|
2022-12-26 11:29:32 +01:00
|
|
|
return count == 0
|
2025-12-24 15:33:36 +01:00
|
|
|
elif constraint == express_getattr(IfcObjectTypeEnum, 'PROCESS', INDETERMINATE):
|
2023-02-14 10:03:42 +01:00
|
|
|
count = sizeof([temp for temp in objects if not 'ifc2x3.ifcprocess' in typeof(temp)])
|
2022-12-26 11:29:32 +01:00
|
|
|
return count == 0
|
2025-12-24 15:33:36 +01:00
|
|
|
elif constraint == express_getattr(IfcObjectTypeEnum, 'CONTROL', INDETERMINATE):
|
2023-02-14 10:03:42 +01:00
|
|
|
count = sizeof([temp for temp in objects if not 'ifc2x3.ifccontrol' in typeof(temp)])
|
2022-12-26 11:29:32 +01:00
|
|
|
return count == 0
|
2025-12-24 15:33:36 +01:00
|
|
|
elif constraint == express_getattr(IfcObjectTypeEnum, 'RESOURCE', INDETERMINATE):
|
2023-02-14 10:03:42 +01:00
|
|
|
count = sizeof([temp for temp in objects if not 'ifc2x3.ifcresource' in typeof(temp)])
|
2022-12-26 11:29:32 +01:00
|
|
|
return count == 0
|
2025-12-24 15:33:36 +01:00
|
|
|
elif constraint == express_getattr(IfcObjectTypeEnum, 'ACTOR', INDETERMINATE):
|
2023-02-14 10:03:42 +01:00
|
|
|
count = sizeof([temp for temp in objects if not 'ifc2x3.ifcactor' in typeof(temp)])
|
2022-12-26 11:29:32 +01:00
|
|
|
return count == 0
|
2025-12-24 15:33:36 +01:00
|
|
|
elif constraint == express_getattr(IfcObjectTypeEnum, 'GROUP', INDETERMINATE):
|
2023-02-14 10:03:42 +01:00
|
|
|
count = sizeof([temp for temp in objects if not 'ifc2x3.ifcgroup' in typeof(temp)])
|
2022-12-26 11:29:32 +01:00
|
|
|
return count == 0
|
2025-12-24 15:33:36 +01:00
|
|
|
elif constraint == express_getattr(IfcObjectTypeEnum, 'PROJECT', INDETERMINATE):
|
2023-02-14 10:03:42 +01:00
|
|
|
count = sizeof([temp for temp in objects if not 'ifc2x3.ifcproject' in typeof(temp)])
|
2022-12-26 11:29:32 +01:00
|
|
|
return count == 0
|
|
|
|
|
else:
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
def IfcCorrectUnitAssignment(units):
|
|
|
|
|
namedunitnumber = 0
|
|
|
|
|
derivedunitnumber = 0
|
|
|
|
|
monetaryunitnumber = 0
|
|
|
|
|
namedunitnames = express_set([])
|
|
|
|
|
derivedunitnames = express_set([])
|
2025-12-24 15:33:36 +01:00
|
|
|
namedunitnumber = sizeof([temp for temp in units if 'ifc2x3.ifcnamedunit' in typeof(temp) and (not express_getattr(temp, 'UnitType', INDETERMINATE) == express_getattr(IfcUnitEnum, 'USERDEFINED', INDETERMINATE))])
|
|
|
|
|
derivedunitnumber = sizeof([temp for temp in units if 'ifc2x3.ifcderivedunit' in typeof(temp) and (not express_getattr(temp, 'UnitType', INDETERMINATE) == express_getattr(IfcDerivedUnitEnum, 'USERDEFINED', INDETERMINATE))])
|
2022-12-26 11:29:32 +01:00
|
|
|
monetaryunitnumber = sizeof([temp for temp in units if 'ifc2x3.ifcmonetaryunit' in typeof(temp)])
|
|
|
|
|
for i in range(1, sizeof(units) + 1):
|
2025-12-24 15:33:36 +01:00
|
|
|
if 'ifc2x3.ifcnamedunit' in typeof(express_getitem(units, i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)) and (not express_getattr(express_getitem(units, i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'UnitType', INDETERMINATE) == express_getattr(IfcUnitEnum, 'USERDEFINED', INDETERMINATE)):
|
|
|
|
|
namedunitnames = namedunitnames + express_getattr(express_getitem(units, i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'UnitType', INDETERMINATE)
|
|
|
|
|
if 'ifc2x3.ifcderivedunit' in typeof(express_getitem(units, i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)) and (not express_getattr(express_getitem(units, i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'UnitType', INDETERMINATE) == express_getattr(IfcDerivedUnitEnum, 'USERDEFINED', INDETERMINATE)):
|
|
|
|
|
derivedunitnames = derivedunitnames + express_getattr(express_getitem(units, i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'UnitType', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
return sizeof(namedunitnames) == namedunitnumber and sizeof(derivedunitnames) == derivedunitnumber and (monetaryunitnumber <= 1)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
|
|
|
|
def IfcCrossProduct(arg1, arg2):
|
2025-12-24 15:33:36 +01:00
|
|
|
if (not exists(arg1) or express_getattr(arg1, 'Dim', INDETERMINATE) == 2) or (not exists(arg2) or express_getattr(arg2, 'Dim', INDETERMINATE) == 2):
|
2022-12-26 11:29:32 +01:00
|
|
|
return None
|
|
|
|
|
else:
|
2025-12-24 15:33:36 +01:00
|
|
|
v1 = express_getattr(IfcNormalise(arg1), 'DirectionRatios', INDETERMINATE)
|
|
|
|
|
v2 = express_getattr(IfcNormalise(arg2), 'DirectionRatios', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
res = IfcDirection(DirectionRatios=[express_getitem(v1, 2 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE) * express_getitem(v2, 3 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE) - express_getitem(v1, 3 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE) * express_getitem(v2, 2 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), express_getitem(v1, 3 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE) * express_getitem(v2, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE) - express_getitem(v1, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE) * express_getitem(v2, 3 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), express_getitem(v1, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE) * express_getitem(v2, 2 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE) - express_getitem(v1, 2 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE) * express_getitem(v2, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)])
|
2022-12-26 11:29:32 +01:00
|
|
|
mag = 0.0
|
|
|
|
|
for i in range(1, 3 + 1):
|
2025-12-24 15:33:36 +01:00
|
|
|
mag = mag + express_getitem(express_getattr(res, 'DirectionRatios', INDETERMINATE), i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE) * express_getitem(express_getattr(res, 'DirectionRatios', INDETERMINATE), i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
if mag > 0.0:
|
|
|
|
|
result = IfcVector(Orientation=res, Magnitude=sqrt(mag))
|
|
|
|
|
else:
|
|
|
|
|
result = IfcVector(Orientation=arg1, Magnitude=0.0)
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
def IfcCurveDim(curve):
|
|
|
|
|
if 'ifc2x3.ifcline' in typeof(curve):
|
2025-12-24 15:33:36 +01:00
|
|
|
return express_getattr(express_getattr(curve, 'Pnt', INDETERMINATE), 'Dim', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
if 'ifc2x3.ifcconic' in typeof(curve):
|
2025-12-24 15:33:36 +01:00
|
|
|
return express_getattr(express_getattr(curve, 'Position', INDETERMINATE), 'Dim', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
if 'ifc2x3.ifcpolyline' in typeof(curve):
|
2025-12-24 15:33:36 +01:00
|
|
|
return express_getattr(express_getitem(express_getattr(curve, 'Points', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Dim', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
if 'ifc2x3.ifctrimmedcurve' in typeof(curve):
|
2025-12-24 15:33:36 +01:00
|
|
|
return IfcCurveDim(express_getattr(curve, 'BasisCurve', INDETERMINATE))
|
2022-12-26 11:29:32 +01:00
|
|
|
if 'ifc2x3.ifccompositecurve' in typeof(curve):
|
2025-12-24 15:33:36 +01:00
|
|
|
return express_getattr(express_getitem(express_getattr(curve, 'Segments', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Dim', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
if 'ifc2x3.ifcbsplinecurve' in typeof(curve):
|
2025-12-24 15:33:36 +01:00
|
|
|
return express_getattr(express_getitem(express_getattr(curve, 'ControlPointsList', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Dim', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
if 'ifc2x3.ifcoffsetcurve2d' in typeof(curve):
|
|
|
|
|
return 2
|
|
|
|
|
if 'ifc2x3.ifcoffsetcurve3d' in typeof(curve):
|
|
|
|
|
return 3
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
def IfcCurveWeightsPositive(b):
|
|
|
|
|
result = True
|
2025-12-24 15:33:36 +01:00
|
|
|
for i in range(0, express_getattr(b, 'UpperIndexOnControlPoints', INDETERMINATE) + 1):
|
|
|
|
|
if express_getitem(express_getattr(b, 'Weights', INDETERMINATE), i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE) <= 0.0:
|
2022-12-26 11:29:32 +01:00
|
|
|
result = False
|
|
|
|
|
return result
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
def IfcDeriveDimensionalExponents(unitelements):
|
2023-02-14 10:03:42 +01:00
|
|
|
result = IfcDimensionalExponents(0, 0, 0, 0, 0, 0, 0)
|
2022-12-26 11:29:32 +01:00
|
|
|
for i in range(loindex(unitelements), hiindex(unitelements) + 1):
|
2025-12-24 15:33:36 +01:00
|
|
|
result.LengthExponent = express_getattr(result, 'LengthExponent', INDETERMINATE) + express_getattr(express_getitem(unitelements, i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Exponent', INDETERMINATE) * express_getattr(express_getattr(express_getattr(express_getitem(unitelements, i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Unit', INDETERMINATE), 'Dimensions', INDETERMINATE), 'LengthExponent', INDETERMINATE)
|
|
|
|
|
result.MassExponent = express_getattr(result, 'MassExponent', INDETERMINATE) + express_getattr(express_getitem(unitelements, i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Exponent', INDETERMINATE) * express_getattr(express_getattr(express_getattr(express_getitem(unitelements, i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Unit', INDETERMINATE), 'Dimensions', INDETERMINATE), 'MassExponent', INDETERMINATE)
|
|
|
|
|
result.TimeExponent = express_getattr(result, 'TimeExponent', INDETERMINATE) + express_getattr(express_getitem(unitelements, i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Exponent', INDETERMINATE) * express_getattr(express_getattr(express_getattr(express_getitem(unitelements, i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Unit', INDETERMINATE), 'Dimensions', INDETERMINATE), 'TimeExponent', INDETERMINATE)
|
|
|
|
|
result.ElectricCurrentExponent = express_getattr(result, 'ElectricCurrentExponent', INDETERMINATE) + express_getattr(express_getitem(unitelements, i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Exponent', INDETERMINATE) * express_getattr(express_getattr(express_getattr(express_getitem(unitelements, i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Unit', INDETERMINATE), 'Dimensions', INDETERMINATE), 'ElectricCurrentExponent', INDETERMINATE)
|
|
|
|
|
result.ThermodynamicTemperatureExponent = express_getattr(result, 'ThermodynamicTemperatureExponent', INDETERMINATE) + express_getattr(express_getitem(unitelements, i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Exponent', INDETERMINATE) * express_getattr(express_getattr(express_getattr(express_getitem(unitelements, i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Unit', INDETERMINATE), 'Dimensions', INDETERMINATE), 'ThermodynamicTemperatureExponent', INDETERMINATE)
|
|
|
|
|
result.AmountOfSubstanceExponent = express_getattr(result, 'AmountOfSubstanceExponent', INDETERMINATE) + express_getattr(express_getitem(unitelements, i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Exponent', INDETERMINATE) * express_getattr(express_getattr(express_getattr(express_getitem(unitelements, i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Unit', INDETERMINATE), 'Dimensions', INDETERMINATE), 'AmountOfSubstanceExponent', INDETERMINATE)
|
|
|
|
|
result.LuminousIntensityExponent = express_getattr(result, 'LuminousIntensityExponent', INDETERMINATE) + express_getattr(express_getitem(unitelements, i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Exponent', INDETERMINATE) * express_getattr(express_getattr(express_getattr(express_getitem(unitelements, i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Unit', INDETERMINATE), 'Dimensions', INDETERMINATE), 'LuminousIntensityExponent', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
def IfcDimensionsForSiUnit(n):
|
|
|
|
|
if n == metre:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(1, 0, 0, 0, 0, 0, 0)
|
2022-12-26 11:29:32 +01:00
|
|
|
elif n == square_metre:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(2, 0, 0, 0, 0, 0, 0)
|
2022-12-26 11:29:32 +01:00
|
|
|
elif n == cubic_metre:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(3, 0, 0, 0, 0, 0, 0)
|
2022-12-26 11:29:32 +01:00
|
|
|
elif n == gram:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(0, 1, 0, 0, 0, 0, 0)
|
2022-12-26 11:29:32 +01:00
|
|
|
elif n == second:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(0, 0, 1, 0, 0, 0, 0)
|
2022-12-26 11:29:32 +01:00
|
|
|
elif n == ampere:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(0, 0, 0, 1, 0, 0, 0)
|
2022-12-26 11:29:32 +01:00
|
|
|
elif n == kelvin:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(0, 0, 0, 0, 1, 0, 0)
|
2022-12-26 11:29:32 +01:00
|
|
|
elif n == mole:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(0, 0, 0, 0, 0, 1, 0)
|
2022-12-26 11:29:32 +01:00
|
|
|
elif n == candela:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(0, 0, 0, 0, 0, 0, 1)
|
2022-12-26 11:29:32 +01:00
|
|
|
elif n == radian:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(0, 0, 0, 0, 0, 0, 0)
|
2022-12-26 11:29:32 +01:00
|
|
|
elif n == steradian:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(0, 0, 0, 0, 0, 0, 0)
|
2022-12-26 11:29:32 +01:00
|
|
|
elif n == hertz:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(0, 0, -1, 0, 0, 0, 0)
|
2022-12-26 11:29:32 +01:00
|
|
|
elif n == newton:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(1, 1, -2, 0, 0, 0, 0)
|
2022-12-26 11:29:32 +01:00
|
|
|
elif n == pascal:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(-1, 1, -2, 0, 0, 0, 0)
|
2022-12-26 11:29:32 +01:00
|
|
|
elif n == joule:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(2, 1, -2, 0, 0, 0, 0)
|
2022-12-26 11:29:32 +01:00
|
|
|
elif n == watt:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(2, 1, -3, 0, 0, 0, 0)
|
2022-12-26 11:29:32 +01:00
|
|
|
elif n == coulomb:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(0, 0, 1, 1, 0, 0, 0)
|
2022-12-26 11:29:32 +01:00
|
|
|
elif n == volt:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(2, 1, -3, -1, 0, 0, 0)
|
2022-12-26 11:29:32 +01:00
|
|
|
elif n == farad:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(-2, -1, 4, 1, 0, 0, 0)
|
2022-12-26 11:29:32 +01:00
|
|
|
elif n == ohm:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(2, 1, -3, -2, 0, 0, 0)
|
2022-12-26 11:29:32 +01:00
|
|
|
elif n == siemens:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(-2, -1, 3, 2, 0, 0, 0)
|
2022-12-26 11:29:32 +01:00
|
|
|
elif n == weber:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(2, 1, -2, -1, 0, 0, 0)
|
2022-12-26 11:29:32 +01:00
|
|
|
elif n == tesla:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(0, 1, -2, -1, 0, 0, 0)
|
2022-12-26 11:29:32 +01:00
|
|
|
elif n == henry:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(2, 1, -2, -2, 0, 0, 0)
|
2022-12-26 11:29:32 +01:00
|
|
|
elif n == degree_celsius:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(0, 0, 0, 0, 1, 0, 0)
|
2022-12-26 11:29:32 +01:00
|
|
|
elif n == lumen:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(0, 0, 0, 0, 0, 0, 1)
|
2022-12-26 11:29:32 +01:00
|
|
|
elif n == lux:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(-2, 0, 0, 0, 0, 0, 1)
|
2022-12-26 11:29:32 +01:00
|
|
|
elif n == becquerel:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(0, 0, -1, 0, 0, 0, 0)
|
2022-12-26 11:29:32 +01:00
|
|
|
elif n == gray:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(2, 0, -2, 0, 0, 0, 0)
|
2022-12-26 11:29:32 +01:00
|
|
|
elif n == sievert:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(2, 0, -2, 0, 0, 0, 0)
|
2022-12-26 11:29:32 +01:00
|
|
|
else:
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcDimensionalExponents(0, 0, 0, 0, 0, 0, 0)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
|
|
|
|
def IfcDotProduct(arg1, arg2):
|
2023-02-14 10:03:42 +01:00
|
|
|
if not exists(arg1) or not exists(arg2):
|
|
|
|
|
scalar = None
|
2025-12-24 15:33:36 +01:00
|
|
|
elif express_getattr(arg1, 'Dim', INDETERMINATE) != express_getattr(arg2, 'Dim', INDETERMINATE):
|
2022-12-26 11:29:32 +01:00
|
|
|
scalar = None
|
|
|
|
|
else:
|
2023-02-14 10:03:42 +01:00
|
|
|
vec1 = IfcNormalise(arg1)
|
|
|
|
|
vec2 = IfcNormalise(arg2)
|
2025-12-24 15:33:36 +01:00
|
|
|
ndim = express_getattr(arg1, 'Dim', INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
scalar = 0.0
|
|
|
|
|
for i in range(1, ndim + 1):
|
2025-12-24 15:33:36 +01:00
|
|
|
scalar = scalar + express_getitem(express_getattr(vec1, 'DirectionRatios', INDETERMINATE), i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE) * express_getitem(express_getattr(vec2, 'DirectionRatios', INDETERMINATE), i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
return scalar
|
|
|
|
|
|
|
|
|
|
def IfcFirstProjAxis(zaxis, arg):
|
|
|
|
|
if not exists(zaxis):
|
|
|
|
|
return None
|
|
|
|
|
else:
|
|
|
|
|
z = IfcNormalise(zaxis)
|
|
|
|
|
if not exists(arg):
|
2025-12-24 15:33:36 +01:00
|
|
|
if express_getattr(z, 'DirectionRatios', INDETERMINATE) != [1.0, 0.0, 0.0]:
|
2023-02-14 10:03:42 +01:00
|
|
|
v = IfcDirection(DirectionRatios=[1.0, 0.0, 0.0])
|
2022-12-26 11:29:32 +01:00
|
|
|
else:
|
2023-02-14 10:03:42 +01:00
|
|
|
v = IfcDirection(DirectionRatios=[0.0, 1.0, 0.0])
|
2022-12-26 11:29:32 +01:00
|
|
|
else:
|
2025-12-24 15:33:36 +01:00
|
|
|
if express_getattr(arg, 'Dim', INDETERMINATE) != 3:
|
2022-12-26 11:29:32 +01:00
|
|
|
return None
|
2025-12-24 15:33:36 +01:00
|
|
|
if express_getattr(IfcCrossProduct(arg, z), 'Magnitude', INDETERMINATE) == 0.0:
|
2022-12-26 11:29:32 +01:00
|
|
|
return None
|
|
|
|
|
else:
|
|
|
|
|
v = IfcNormalise(arg)
|
2023-02-14 10:03:42 +01:00
|
|
|
xvec = IfcScalarTimesVector(IfcDotProduct(v, z), z)
|
2025-12-24 15:33:36 +01:00
|
|
|
xaxis = express_getattr(IfcVectorDifference(v, xvec), 'Orientation', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
xaxis = IfcNormalise(xaxis)
|
|
|
|
|
return xaxis
|
|
|
|
|
|
|
|
|
|
def IfcLeapYear(year):
|
2023-02-14 10:03:42 +01:00
|
|
|
if year % 4 == 0 and year % 100 != 0 or year % 400 == 0:
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
def IfcListToArray(lis, low, u):
|
|
|
|
|
n = sizeof(lis)
|
2023-02-14 10:03:42 +01:00
|
|
|
if n != u - low + 1:
|
2022-12-26 11:29:32 +01:00
|
|
|
return None
|
|
|
|
|
else:
|
2023-02-14 10:03:42 +01:00
|
|
|
res = [express_getitem(lis, 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)] * n
|
2022-12-26 11:29:32 +01:00
|
|
|
for i in range(2, n + 1):
|
|
|
|
|
temp = list(res)
|
2023-03-11 20:44:11 +01:00
|
|
|
temp[low + i - 1 - EXPRESS_ONE_BASED_INDEXING] = express_getitem(lis, i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
res = temp
|
|
|
|
|
return res
|
|
|
|
|
|
|
|
|
|
def IfcLoopHeadToTail(aloop):
|
|
|
|
|
p = True
|
2025-12-24 15:33:36 +01:00
|
|
|
n = sizeof(express_getattr(aloop, 'EdgeList', INDETERMINATE))
|
2022-12-26 11:29:32 +01:00
|
|
|
for i in range(2, n + 1):
|
2025-12-24 15:33:36 +01:00
|
|
|
p = p and express_getattr(express_getitem(express_getattr(aloop, 'EdgeList', INDETERMINATE), i - 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'EdgeEnd', INDETERMINATE) == express_getattr(express_getitem(express_getattr(aloop, 'EdgeList', INDETERMINATE), i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'EdgeStart', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
return p
|
|
|
|
|
|
|
|
|
|
def IfcMlsTotalThickness(layerset):
|
2025-12-24 15:33:36 +01:00
|
|
|
max = express_getattr(express_getitem(express_getattr(layerset, 'MaterialLayers', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'LayerThickness', INDETERMINATE)
|
|
|
|
|
if sizeof(express_getattr(layerset, 'MaterialLayers', INDETERMINATE)) > 1:
|
|
|
|
|
for i in range(2, hiindex(express_getattr(layerset, 'MaterialLayers', INDETERMINATE)) + 1):
|
|
|
|
|
max = max + express_getattr(express_getitem(express_getattr(layerset, 'MaterialLayers', INDETERMINATE), i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'LayerThickness', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
return max
|
|
|
|
|
|
|
|
|
|
def IfcNormalise(arg):
|
2023-02-14 10:03:42 +01:00
|
|
|
v = IfcDirection(DirectionRatios=[1.0, 0.0])
|
|
|
|
|
vec = IfcVector(Orientation=IfcDirection(DirectionRatios=[1.0, 0.0]), Magnitude=1.0)
|
2022-12-26 11:29:32 +01:00
|
|
|
result = v
|
|
|
|
|
if not exists(arg):
|
|
|
|
|
return None
|
|
|
|
|
else:
|
2025-12-24 15:33:36 +01:00
|
|
|
ndim = express_getattr(arg, 'Dim', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
if 'ifc2x3.ifcvector' in typeof(arg):
|
2025-12-24 15:33:36 +01:00
|
|
|
v.DirectionRatios = express_getattr(express_getattr(arg, 'Orientation', INDETERMINATE), 'DirectionRatios', INDETERMINATE)
|
|
|
|
|
vec.Magnitude = express_getattr(arg, 'Magnitude', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
vec.Orientation = v
|
2025-12-24 15:33:36 +01:00
|
|
|
if express_getattr(arg, 'Magnitude', INDETERMINATE) == 0.0:
|
2022-12-26 11:29:32 +01:00
|
|
|
return None
|
|
|
|
|
else:
|
|
|
|
|
vec.Magnitude = 1.0
|
|
|
|
|
else:
|
2025-12-24 15:33:36 +01:00
|
|
|
v.DirectionRatios = express_getattr(arg, 'DirectionRatios', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
mag = 0.0
|
|
|
|
|
for i in range(1, ndim + 1):
|
2025-12-24 15:33:36 +01:00
|
|
|
mag = mag + express_getitem(express_getattr(v, 'DirectionRatios', INDETERMINATE), i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE) * express_getitem(express_getattr(v, 'DirectionRatios', INDETERMINATE), i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
if mag > 0.0:
|
|
|
|
|
mag = sqrt(mag)
|
|
|
|
|
for i in range(1, ndim + 1):
|
2025-12-24 15:33:36 +01:00
|
|
|
temp = list(express_getattr(v, 'DirectionRatios', INDETERMINATE))
|
|
|
|
|
temp[i - EXPRESS_ONE_BASED_INDEXING] = express_getitem(express_getattr(v, 'DirectionRatios', INDETERMINATE), i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE) / mag
|
2022-12-26 11:29:32 +01:00
|
|
|
v.DirectionRatios = temp
|
|
|
|
|
if 'ifc2x3.ifcvector' in typeof(arg):
|
|
|
|
|
vec.Orientation = v
|
|
|
|
|
result = vec
|
|
|
|
|
else:
|
|
|
|
|
result = v
|
|
|
|
|
else:
|
|
|
|
|
return None
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
def IfcOrthogonalComplement(vec):
|
2025-12-24 15:33:36 +01:00
|
|
|
if not exists(vec) or express_getattr(vec, 'Dim', INDETERMINATE) != 2:
|
2022-12-26 11:29:32 +01:00
|
|
|
return None
|
|
|
|
|
else:
|
2025-12-24 15:33:36 +01:00
|
|
|
result = IfcDirection(DirectionRatios=[-express_getitem(express_getattr(vec, 'DirectionRatios', INDETERMINATE), 2 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), express_getitem(express_getattr(vec, 'DirectionRatios', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)])
|
2022-12-26 11:29:32 +01:00
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
def IfcPathHeadToTail(apath):
|
|
|
|
|
n = 0
|
|
|
|
|
p = unknown
|
2025-12-24 15:33:36 +01:00
|
|
|
n = sizeof(express_getattr(apath, 'EdgeList', INDETERMINATE))
|
2022-12-26 11:29:32 +01:00
|
|
|
for i in range(2, n + 1):
|
2025-12-24 15:33:36 +01:00
|
|
|
p = p and express_getattr(express_getitem(express_getattr(apath, 'EdgeList', INDETERMINATE), i - 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'EdgeEnd', INDETERMINATE) == express_getattr(express_getitem(express_getattr(apath, 'EdgeList', INDETERMINATE), i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'EdgeStart', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
return p
|
|
|
|
|
|
|
|
|
|
def IfcSameAxis2Placement(ap1, ap2, epsilon):
|
2025-12-24 15:33:36 +01:00
|
|
|
return IfcSameDirection(express_getitem(express_getattr(ap1, 'P', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), express_getitem(express_getattr(ap2, 'P', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), epsilon) and IfcSameDirection(express_getitem(express_getattr(ap1, 'P', INDETERMINATE), 2 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), express_getitem(express_getattr(ap2, 'P', INDETERMINATE), 2 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), epsilon) and IfcSameCartesianPoint(express_getattr(ap1, 'Location', INDETERMINATE), express_getattr(ap1, 'Location', INDETERMINATE), epsilon)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
|
|
|
|
def IfcSameCartesianPoint(cp1, cp2, epsilon):
|
2025-12-24 15:33:36 +01:00
|
|
|
cp1x = express_getitem(express_getattr(cp1, 'Coordinates', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)
|
|
|
|
|
cp1y = express_getitem(express_getattr(cp1, 'Coordinates', INDETERMINATE), 2 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
cp1z = 0
|
2025-12-24 15:33:36 +01:00
|
|
|
cp2x = express_getitem(express_getattr(cp2, 'Coordinates', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)
|
|
|
|
|
cp2y = express_getitem(express_getattr(cp2, 'Coordinates', INDETERMINATE), 2 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
cp2z = 0
|
2025-12-24 15:33:36 +01:00
|
|
|
if sizeof(express_getattr(cp1, 'Coordinates', INDETERMINATE)) > 2:
|
|
|
|
|
cp1z = express_getitem(express_getattr(cp1, 'Coordinates', INDETERMINATE), 3 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)
|
|
|
|
|
if sizeof(express_getattr(cp2, 'Coordinates', INDETERMINATE)) > 2:
|
|
|
|
|
cp2z = express_getitem(express_getattr(cp2, 'Coordinates', INDETERMINATE), 3 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcSameValue(cp1x, cp2x, epsilon) and IfcSameValue(cp1y, cp2y, epsilon) and IfcSameValue(cp1z, cp2z, epsilon)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
|
|
|
|
def IfcSameDirection(dir1, dir2, epsilon):
|
2025-12-24 15:33:36 +01:00
|
|
|
dir1x = express_getitem(express_getattr(dir1, 'DirectionRatios', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)
|
|
|
|
|
dir1y = express_getitem(express_getattr(dir1, 'DirectionRatios', INDETERMINATE), 2 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
dir1z = 0
|
2025-12-24 15:33:36 +01:00
|
|
|
dir2x = express_getitem(express_getattr(dir2, 'DirectionRatios', INDETERMINATE), 1 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)
|
|
|
|
|
dir2y = express_getitem(express_getattr(dir2, 'DirectionRatios', INDETERMINATE), 2 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
dir2z = 0
|
2025-12-24 15:33:36 +01:00
|
|
|
if sizeof(express_getattr(dir1, 'DirectionRatios', INDETERMINATE)) > 2:
|
|
|
|
|
dir1z = express_getitem(express_getattr(dir1, 'DirectionRatios', INDETERMINATE), 3 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)
|
|
|
|
|
if sizeof(express_getattr(dir2, 'DirectionRatios', INDETERMINATE)) > 2:
|
|
|
|
|
dir2z = express_getitem(express_getattr(dir2, 'DirectionRatios', INDETERMINATE), 3 - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)
|
2023-02-14 10:03:42 +01:00
|
|
|
return IfcSameValue(dir1x, dir2x, epsilon) and IfcSameValue(dir1y, dir2y, epsilon) and IfcSameValue(dir1z, dir2z, epsilon)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
|
|
|
|
def IfcSameValidPrecision(epsilon1, epsilon2):
|
2023-02-14 10:03:42 +01:00
|
|
|
defaulteps = 1e-06
|
2022-12-26 11:29:32 +01:00
|
|
|
derivationofeps = 1.001
|
|
|
|
|
uppereps = 1.0
|
2023-02-14 10:03:42 +01:00
|
|
|
valideps1 = nvl(epsilon1, defaulteps)
|
|
|
|
|
valideps2 = nvl(epsilon2, defaulteps)
|
|
|
|
|
return 0.0 < valideps1 and valideps1 <= derivationofeps * valideps2 and (valideps2 <= derivationofeps * valideps1) and (valideps2 < uppereps)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
|
|
|
|
def IfcSameValue(value1, value2, epsilon):
|
2023-02-14 10:03:42 +01:00
|
|
|
defaulteps = 1e-06
|
|
|
|
|
valideps = nvl(epsilon, defaulteps)
|
|
|
|
|
return value1 + valideps > value2 and value1 < value2 + valideps
|
2022-12-26 11:29:32 +01:00
|
|
|
|
|
|
|
|
def IfcScalarTimesVector(scalar, vec):
|
2023-02-14 10:03:42 +01:00
|
|
|
if not exists(scalar) or not exists(vec):
|
2022-12-26 11:29:32 +01:00
|
|
|
return None
|
|
|
|
|
else:
|
|
|
|
|
if 'ifc2x3.ifcvector' in typeof(vec):
|
2025-12-24 15:33:36 +01:00
|
|
|
v = express_getattr(vec, 'Orientation', INDETERMINATE)
|
|
|
|
|
mag = scalar * express_getattr(vec, 'Magnitude', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
else:
|
|
|
|
|
v = vec
|
|
|
|
|
mag = scalar
|
|
|
|
|
if mag < 0.0:
|
2025-12-24 15:33:36 +01:00
|
|
|
for i in range(1, sizeof(express_getattr(v, 'DirectionRatios', INDETERMINATE)) + 1):
|
|
|
|
|
temp = list(express_getattr(v, 'DirectionRatios', INDETERMINATE))
|
|
|
|
|
temp[i - EXPRESS_ONE_BASED_INDEXING] = -express_getitem(express_getattr(v, 'DirectionRatios', INDETERMINATE), i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
v.DirectionRatios = temp
|
|
|
|
|
mag = -mag
|
|
|
|
|
result = IfcVector(Orientation=IfcNormalise(v), Magnitude=mag)
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
def IfcSecondProjAxis(zaxis, xaxis, arg):
|
|
|
|
|
if not exists(arg):
|
2023-02-14 10:03:42 +01:00
|
|
|
v = IfcDirection(DirectionRatios=[0.0, 1.0, 0.0])
|
2022-12-26 11:29:32 +01:00
|
|
|
else:
|
|
|
|
|
v = arg
|
2023-02-14 10:03:42 +01:00
|
|
|
temp = IfcScalarTimesVector(IfcDotProduct(v, zaxis), zaxis)
|
|
|
|
|
yaxis = IfcVectorDifference(v, temp)
|
|
|
|
|
temp = IfcScalarTimesVector(IfcDotProduct(v, xaxis), xaxis)
|
|
|
|
|
yaxis = IfcVectorDifference(yaxis, temp)
|
2022-12-26 11:29:32 +01:00
|
|
|
yaxis = IfcNormalise(yaxis)
|
2025-12-24 15:33:36 +01:00
|
|
|
return express_getattr(yaxis, 'Orientation', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
|
|
|
|
|
def IfcShapeRepresentationTypes(reptype, items):
|
|
|
|
|
count = 0
|
2025-12-24 15:33:36 +01:00
|
|
|
if express_getattr(reptype, 'lower', INDETERMINATE)() == 'curve2d':
|
|
|
|
|
count = sizeof([temp for temp in items if 'ifc2x3.ifccurve' in typeof(temp) and express_getattr(temp, 'Dim', INDETERMINATE) == 2])
|
|
|
|
|
elif express_getattr(reptype, 'lower', INDETERMINATE)() == 'annotation2d':
|
2023-02-14 10:03:42 +01:00
|
|
|
count = sizeof([temp for temp in items if sizeof(typeof(temp) * ['ifc2x3.ifcpoint', 'ifc2x3.ifccurve', 'ifc2x3.ifcgeometriccurveset', 'ifc2x3.ifcannotationfillarea', 'ifc2x3.ifcdefinedsymbol', 'ifc2x3.ifctextliteral', 'ifc2x3.ifcdraughtingcallout']) == 1])
|
2025-12-24 15:33:36 +01:00
|
|
|
elif express_getattr(reptype, 'lower', INDETERMINATE)() == 'geometricset':
|
2023-02-14 10:03:42 +01:00
|
|
|
count = sizeof([temp for temp in items if 'ifc2x3.ifcgeometricset' in typeof(temp) or 'ifc2x3.ifcpoint' in typeof(temp) or 'ifc2x3.ifccurve' in typeof(temp) or ('ifc2x3.ifcsurface' in typeof(temp))])
|
2025-12-24 15:33:36 +01:00
|
|
|
elif express_getattr(reptype, 'lower', INDETERMINATE)() == 'geometriccurveset':
|
2023-02-14 10:03:42 +01:00
|
|
|
count = sizeof([temp for temp in items if 'ifc2x3.ifcgeometriccurveset' in typeof(temp) or 'ifc2x3.ifcgeometricset' in typeof(temp) or 'ifc2x3.ifcpoint' in typeof(temp) or ('ifc2x3.ifccurve' in typeof(temp))])
|
2022-12-26 11:29:32 +01:00
|
|
|
for i in range(1, hiindex(items) + 1):
|
2023-02-14 10:03:42 +01:00
|
|
|
if 'ifc2x3.ifcgeometricset' in typeof(express_getitem(items, i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)):
|
2025-12-24 15:33:36 +01:00
|
|
|
if sizeof([temp for temp in express_getattr(express_getitem(items, i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Elements', INDETERMINATE) if 'ifc2x3.ifcsurface' in typeof(temp)]) > 0:
|
2022-12-26 11:29:32 +01:00
|
|
|
count = count - 1
|
2025-12-24 15:33:36 +01:00
|
|
|
elif express_getattr(reptype, 'lower', INDETERMINATE)() == 'surfacemodel':
|
2023-02-14 10:03:42 +01:00
|
|
|
count = sizeof([temp for temp in items if sizeof(['ifc2x3.ifcshellbasedsurfacemodel', 'ifc2x3.ifcfacebasedsurfacemodel', 'ifc2x3.ifcfacetedbrep', 'ifc2x3.ifcfacetedbrepwithvoids'] * typeof(temp)) >= 1])
|
2025-12-24 15:33:36 +01:00
|
|
|
elif express_getattr(reptype, 'lower', INDETERMINATE)() == 'solidmodel':
|
2022-12-26 11:29:32 +01:00
|
|
|
count = sizeof([temp for temp in items if 'ifc2x3.ifcsolidmodel' in typeof(temp)])
|
2025-12-24 15:33:36 +01:00
|
|
|
elif express_getattr(reptype, 'lower', INDETERMINATE)() == 'sweptsolid':
|
2022-12-26 11:29:32 +01:00
|
|
|
count = sizeof([temp for temp in items if 'ifc2x3.ifcsweptareasolid' in typeof(temp)])
|
2025-12-24 15:33:36 +01:00
|
|
|
elif express_getattr(reptype, 'lower', INDETERMINATE)() == 'csg':
|
2022-12-26 11:29:32 +01:00
|
|
|
count = sizeof([temp for temp in items if 'ifc2x3.ifcbooleanresult' in typeof(temp)])
|
2025-12-24 15:33:36 +01:00
|
|
|
elif express_getattr(reptype, 'lower', INDETERMINATE)() == 'clipping':
|
2022-12-26 11:29:32 +01:00
|
|
|
count = sizeof([temp for temp in items if 'ifc2x3.ifcbooleanclippingresult' in typeof(temp)])
|
2025-12-24 15:33:36 +01:00
|
|
|
elif express_getattr(reptype, 'lower', INDETERMINATE)() == 'advancedsweptsolid':
|
2023-02-14 10:03:42 +01:00
|
|
|
count = sizeof([temp for temp in items if 'ifc2x3.ifcsurfacecurvesweptareasolid' in typeof(temp) or 'ifc2x3.ifcsweptdisksolid' in typeof(temp)])
|
2025-12-24 15:33:36 +01:00
|
|
|
elif express_getattr(reptype, 'lower', INDETERMINATE)() == 'brep':
|
2023-02-14 10:03:42 +01:00
|
|
|
count = sizeof([temp for temp in items if 'ifc2x3.ifcfacetedbrep' in typeof(temp) or 'ifc2x3.ifcfacetedbrepwithvoids' in typeof(temp)])
|
2025-12-24 15:33:36 +01:00
|
|
|
elif express_getattr(reptype, 'lower', INDETERMINATE)() == 'boundingbox':
|
2022-12-26 11:29:32 +01:00
|
|
|
count = sizeof([temp for temp in items if 'ifc2x3.ifcboundingbox' in typeof(temp)])
|
|
|
|
|
if sizeof(items) > 1:
|
|
|
|
|
count = 0
|
2025-12-24 15:33:36 +01:00
|
|
|
elif express_getattr(reptype, 'lower', INDETERMINATE)() == 'sectionedspine':
|
2022-12-26 11:29:32 +01:00
|
|
|
count = sizeof([temp for temp in items if 'ifc2x3.ifcsectionedspine' in typeof(temp)])
|
2025-12-24 15:33:36 +01:00
|
|
|
elif express_getattr(reptype, 'lower', INDETERMINATE)() == 'mappedrepresentation':
|
2022-12-26 11:29:32 +01:00
|
|
|
count = sizeof([temp for temp in items if 'ifc2x3.ifcmappeditem' in typeof(temp)])
|
|
|
|
|
else:
|
|
|
|
|
return None
|
|
|
|
|
return count == sizeof(items)
|
|
|
|
|
|
|
|
|
|
def IfcTopologyRepresentationTypes(reptype, items):
|
|
|
|
|
count = 0
|
2025-12-24 15:33:36 +01:00
|
|
|
if express_getattr(reptype, 'lower', INDETERMINATE)() == 'vertex':
|
2022-12-26 11:29:32 +01:00
|
|
|
count = sizeof([temp for temp in items if 'ifc2x3.ifcvertex' in typeof(temp)])
|
2025-12-24 15:33:36 +01:00
|
|
|
elif express_getattr(reptype, 'lower', INDETERMINATE)() == 'edge':
|
2022-12-26 11:29:32 +01:00
|
|
|
count = sizeof([temp for temp in items if 'ifc2x3.ifcedge' in typeof(temp)])
|
2025-12-24 15:33:36 +01:00
|
|
|
elif express_getattr(reptype, 'lower', INDETERMINATE)() == 'path':
|
2022-12-26 11:29:32 +01:00
|
|
|
count = sizeof([temp for temp in items if 'ifc2x3.ifcpath' in typeof(temp)])
|
2025-12-24 15:33:36 +01:00
|
|
|
elif express_getattr(reptype, 'lower', INDETERMINATE)() == 'face':
|
2022-12-26 11:29:32 +01:00
|
|
|
count = sizeof([temp for temp in items if 'ifc2x3.ifcface' in typeof(temp)])
|
2025-12-24 15:33:36 +01:00
|
|
|
elif express_getattr(reptype, 'lower', INDETERMINATE)() == 'shell':
|
2023-02-14 10:03:42 +01:00
|
|
|
count = sizeof([temp for temp in items if 'ifc2x3.ifcopenshell' in typeof(temp) or 'ifc2x3.ifcclosedshell' in typeof(temp)])
|
2025-12-24 15:33:36 +01:00
|
|
|
elif express_getattr(reptype, 'lower', INDETERMINATE)() == 'undefined':
|
2022-12-26 11:29:32 +01:00
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return None
|
|
|
|
|
return count == sizeof(items)
|
|
|
|
|
|
|
|
|
|
def IfcUniquePropertyName(properties):
|
|
|
|
|
names = express_set([])
|
|
|
|
|
for i in range(1, hiindex(properties) + 1):
|
2025-12-24 15:33:36 +01:00
|
|
|
names = names + express_getattr(express_getitem(properties, i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE), 'Name', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
return sizeof(names) == sizeof(properties)
|
|
|
|
|
|
|
|
|
|
def IfcValidCalendarDate(date):
|
2025-12-24 15:33:36 +01:00
|
|
|
if not 1 <= express_getattr(date, 'DayComponent', INDETERMINATE) <= 31:
|
2022-12-26 11:29:32 +01:00
|
|
|
return False
|
2025-12-24 15:33:36 +01:00
|
|
|
if express_getattr(date, 'MonthComponent', INDETERMINATE) == 4:
|
|
|
|
|
return 1 <= express_getattr(date, 'DayComponent', INDETERMINATE) <= 30
|
|
|
|
|
elif express_getattr(date, 'MonthComponent', INDETERMINATE) == 6:
|
|
|
|
|
return 1 <= express_getattr(date, 'DayComponent', INDETERMINATE) <= 30
|
|
|
|
|
elif express_getattr(date, 'MonthComponent', INDETERMINATE) == 9:
|
|
|
|
|
return 1 <= express_getattr(date, 'DayComponent', INDETERMINATE) <= 30
|
|
|
|
|
elif express_getattr(date, 'MonthComponent', INDETERMINATE) == 11:
|
|
|
|
|
return 1 <= express_getattr(date, 'DayComponent', INDETERMINATE) <= 30
|
|
|
|
|
elif express_getattr(date, 'MonthComponent', INDETERMINATE) == 2:
|
|
|
|
|
if IfcLeapYear(express_getattr(date, 'YearComponent', INDETERMINATE)):
|
|
|
|
|
return 1 <= express_getattr(date, 'DayComponent', INDETERMINATE) <= 29
|
2022-12-26 11:29:32 +01:00
|
|
|
else:
|
2025-12-24 15:33:36 +01:00
|
|
|
return 1 <= express_getattr(date, 'DayComponent', INDETERMINATE) <= 28
|
2022-12-26 11:29:32 +01:00
|
|
|
else:
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
def IfcValidTime(time):
|
2025-12-24 15:33:36 +01:00
|
|
|
if exists(express_getattr(time, 'SecondComponent', INDETERMINATE)):
|
|
|
|
|
return exists(express_getattr(time, 'MinuteComponent', INDETERMINATE))
|
2022-12-26 11:29:32 +01:00
|
|
|
else:
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
def IfcVectorDifference(arg1, arg2):
|
2025-12-24 15:33:36 +01:00
|
|
|
if (not exists(arg1) or not exists(arg2)) or express_getattr(arg1, 'Dim', INDETERMINATE) != express_getattr(arg2, 'Dim', INDETERMINATE):
|
2022-12-26 11:29:32 +01:00
|
|
|
return None
|
|
|
|
|
else:
|
|
|
|
|
if 'ifc2x3.ifcvector' in typeof(arg1):
|
2025-12-24 15:33:36 +01:00
|
|
|
mag1 = express_getattr(arg1, 'Magnitude', INDETERMINATE)
|
|
|
|
|
vec1 = express_getattr(arg1, 'Orientation', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
else:
|
|
|
|
|
mag1 = 1.0
|
|
|
|
|
vec1 = arg1
|
|
|
|
|
if 'ifc2x3.ifcvector' in typeof(arg2):
|
2025-12-24 15:33:36 +01:00
|
|
|
mag2 = express_getattr(arg2, 'Magnitude', INDETERMINATE)
|
|
|
|
|
vec2 = express_getattr(arg2, 'Orientation', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
else:
|
|
|
|
|
mag2 = 1.0
|
|
|
|
|
vec2 = arg2
|
|
|
|
|
vec1 = IfcNormalise(vec1)
|
|
|
|
|
vec2 = IfcNormalise(vec2)
|
2025-12-24 15:33:36 +01:00
|
|
|
ndim = sizeof(express_getattr(vec1, 'DirectionRatios', INDETERMINATE))
|
2022-12-26 11:29:32 +01:00
|
|
|
mag = 0.0
|
2023-02-14 10:03:42 +01:00
|
|
|
res = IfcDirection(DirectionRatios=[0.0] * ndim)
|
2022-12-26 11:29:32 +01:00
|
|
|
for i in range(1, ndim + 1):
|
2025-12-24 15:33:36 +01:00
|
|
|
temp = list(express_getattr(res, 'DirectionRatios', INDETERMINATE))
|
|
|
|
|
temp[i - EXPRESS_ONE_BASED_INDEXING] = mag1 * express_getitem(express_getattr(vec1, 'DirectionRatios', INDETERMINATE), i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE) - mag2 * express_getitem(express_getattr(vec2, 'DirectionRatios', INDETERMINATE), i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
res.DirectionRatios = temp
|
2025-12-24 15:33:36 +01:00
|
|
|
mag = mag + express_getitem(express_getattr(res, 'DirectionRatios', INDETERMINATE), i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE) * express_getitem(express_getattr(res, 'DirectionRatios', INDETERMINATE), i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
if mag > 0.0:
|
|
|
|
|
result = IfcVector(Orientation=res, Magnitude=sqrt(mag))
|
|
|
|
|
else:
|
|
|
|
|
result = IfcVector(Orientation=vec1, Magnitude=0.0)
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
def IfcVectorSum(arg1, arg2):
|
2025-12-24 15:33:36 +01:00
|
|
|
if (not exists(arg1) or not exists(arg2)) or express_getattr(arg1, 'Dim', INDETERMINATE) != express_getattr(arg2, 'Dim', INDETERMINATE):
|
2022-12-26 11:29:32 +01:00
|
|
|
return None
|
|
|
|
|
else:
|
|
|
|
|
if 'ifc2x3.ifcvector' in typeof(arg1):
|
2025-12-24 15:33:36 +01:00
|
|
|
mag1 = express_getattr(arg1, 'Magnitude', INDETERMINATE)
|
|
|
|
|
vec1 = express_getattr(arg1, 'Orientation', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
else:
|
|
|
|
|
mag1 = 1.0
|
|
|
|
|
vec1 = arg1
|
|
|
|
|
if 'ifc2x3.ifcvector' in typeof(arg2):
|
2025-12-24 15:33:36 +01:00
|
|
|
mag2 = express_getattr(arg2, 'Magnitude', INDETERMINATE)
|
|
|
|
|
vec2 = express_getattr(arg2, 'Orientation', INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
else:
|
|
|
|
|
mag2 = 1.0
|
|
|
|
|
vec2 = arg2
|
|
|
|
|
vec1 = IfcNormalise(vec1)
|
|
|
|
|
vec2 = IfcNormalise(vec2)
|
2025-12-24 15:33:36 +01:00
|
|
|
ndim = sizeof(express_getattr(vec1, 'DirectionRatios', INDETERMINATE))
|
2022-12-26 11:29:32 +01:00
|
|
|
mag = 0.0
|
2023-02-14 10:03:42 +01:00
|
|
|
res = IfcDirection(DirectionRatios=[0.0] * ndim)
|
2022-12-26 11:29:32 +01:00
|
|
|
for i in range(1, ndim + 1):
|
2025-12-24 15:33:36 +01:00
|
|
|
temp = list(express_getattr(res, 'DirectionRatios', INDETERMINATE))
|
|
|
|
|
temp[i - EXPRESS_ONE_BASED_INDEXING] = mag1 * express_getitem(express_getattr(vec1, 'DirectionRatios', INDETERMINATE), i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE) + mag2 * express_getitem(express_getattr(vec2, 'DirectionRatios', INDETERMINATE), i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
res.DirectionRatios = temp
|
2025-12-24 15:33:36 +01:00
|
|
|
mag = mag + express_getitem(express_getattr(res, 'DirectionRatios', INDETERMINATE), i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE) * express_getitem(express_getattr(res, 'DirectionRatios', INDETERMINATE), i - EXPRESS_ONE_BASED_INDEXING, INDETERMINATE)
|
2022-12-26 11:29:32 +01:00
|
|
|
if mag > 0.0:
|
|
|
|
|
result = IfcVector(Orientation=res, Magnitude=sqrt(mag))
|
|
|
|
|
else:
|
|
|
|
|
result = IfcVector(Orientation=vec1, Magnitude=0.0)
|
2023-02-14 10:03:42 +01:00
|
|
|
return result
|