IFC 4.3.2.20240423 (IFC4X3_ADD2) under development

5.4.3.54 IfcRelInterferesElements

AbV ⓘ

5.4.3.54.1 Semantic definition

The IfcRelInterferesElements objectified relationship indicates that two elements interfere. It is a 1 to 1 relationship, and the concept of two elements interfering physically or logically is described independently of the elements.

The interference may be related to the shape representation of the entities by providing an interference geometry or zone:

  • when the interference is between two physical products, the InterferenceGeometry attribute is used to define the physical interference shape, it can be part of the shape of one of the elements used in the relationship or define the interface between the two shapes using a IfcConnectionGeometry.
  • when the interference is between two spatial objects, the InterferenceSpace attribute is used to define the interference space between the two footprints associated to the spatial objects, expressed by a specific IfcSpatialZone of predefined type IfcSpatialZoneTypeEnum INTERFERENCE.

If the interference geometry and Zone are omitted then the interference is provided as a logical relationship. Under this circumstance, the connection point, curve, surface, or solid has to be recalculated by the receiving application.

The RelatingElement and RelatedElement define the two elements in the relationship, that may have different roles. The relation orientation may be required by certain InterferenceType values or InterferenceGeometry calculation, this is done by setting the attribute ImpliedOrder accordingly:

  • ImpliedOrder=TRUE The RelatingElement constitutes the primary element of the interference relationship that is oriented from RelatingElement (source) to RelatedElement (target). If the interference is to be resolved by subtracting the overlapping part, it should be subtracted from the RelatingElement. The net result would be the RelatingElement subtracted by the InterferenceGeometry. This would be the case in interference relationships where the RelatedElement creates a void in the RelatingElement dynamically.
  • ImpliedOrder=FALSE The RelatingElement and RelatedElement have no priority among each other. If the interference is to be resolved then no information about whether the InterferenceGeometry should be subtracted from the RelatingElement or the RelatedElement can be traced. This would be the case for clash detection results.
  • ImpliedOrder=UNKNOWN No information about the priorities is provided.

The InterferenceType property optionally specifies the type of interference between the two elements, two set of default types are provided:

  • Oriented interferences types imply usage of ImpliedOrder set to TRUE and specific choice of RelatingElement and RelatedElement to be meaningful:
    • Crosses: the RelatingElement is crossing the RelatedElement (e.g. Railway crossing a road)
    • PassesThrough: the RelatingElement is passing through the RelatedElement (e.g. a Road passing inside a tunnel)
    • PassesOver: the RelatingElement is passing over the RelatedElement (e.g a bridge passing over a water canal)
    • PassesUnder: the RelatingElement is passing under the RelatedElement (e.g a Tunnel passing under a road)
  • Non oriented interferences types do not imply specific values of ImpliedOrder (but can still be set to detail shape interference calculation)
    • Clash: The RelatingElement and RelatedElement have a spatial or shape-based clash
    • Along: The RelatingElement and RelatedElement have a common frontier/surface

5.4.3.54.2 Entity inheritance

5.4.3.54.3 Attributes

# Attribute Type Description
IfcRoot (4)
1 GlobalId IfcGloballyUniqueId

Assignment of a globally unique identifier within the entire software world.

2 OwnerHistory OPTIONAL IfcOwnerHistory

Assignment of the information about the current ownership of that object, including owning actor, application, local identification and information captured about the recent changes of the object,

3 Name OPTIONAL IfcLabel

Optional name for use by the participating software systems or users. For some subtypes of IfcRoot the insertion of the Name attribute may be required. This would be enforced by a where rule.

4 Description OPTIONAL IfcText

Optional description, provided for exchanging informative comments.

Click to show 4 hidden inherited attributes Click to hide 4 inherited attributes
IfcRelInterferesElements (6)
5 RelatingElement IfcInterferenceSelect

Reference to a subtype of IfcElement or IfcSpatialElement that is the RelatingElement in the interference relationship. Depending on the value of ImpliedOrder the RelatingElement may carry the notion to be the element from which the interference geometry should be subtracted.

6 RelatedElement IfcInterferenceSelect

Reference to a subtype of IfcElement or IfcSpatialElement that is the RelatedElement in the interference relationship. Depending on the value of ImpliedOrder the RelatedElement may carry the notion to be the element from which the interference geometry should not be subtracted.

7 InterferenceGeometry OPTIONAL IfcConnectionGeometry

The geometric shape representation of the interference geometry that is provided in the object coordinate system of the RelatingElement (mandatory) and in the object coordinate system of the RelatedElement (optionally).

8 InterferenceType OPTIONAL IfcIdentifier

Optional identifier that describes the nature of the interference.

9 ImpliedOrder IfcLogical

Logical value indicating if the RelatingElement is considered a source and the RelatedElement a target (giving a formal orientation to the relation). It shall be provided in regards to InterferenceGeometry usage and InterferenceType declaration.

10 InterferenceSpace OPTIONAL IfcSpatialZone

Optional attribute that expresses the interfering space for IfcSpatialElement occurrences.

Table 5.4.3.54.A

5.4.3.54.4 Formal propositions

Name Description
NoSelfReference

The instance of the RelatingElement shall not be the same instance as the RelatedElement.

RelatingElement :<>: RelatedElement
Table 5.4.3.54.B

5.4.3.54.5 Concept usage

Concept Usage Description
IfcRoot (2)
Revision Control General

Ownership, history, and merge state is captured using IfcOwnerHistory.

Software Identity General

IfcRoot assigns the globally unique ID. In addition it may provide for a name and a description about the concept.

Click to show 2 hidden inherited concepts Click to hide 2 inherited concepts
Table 5.4.3.54.C

5.4.3.54.6 Formal representation

ENTITY IfcRelInterferesElements
 SUBTYPE OF (IfcRelConnects);
	RelatingElement : IfcInterferenceSelect;
	RelatedElement : IfcInterferenceSelect;
	InterferenceGeometry : OPTIONAL IfcConnectionGeometry;
	InterferenceType : OPTIONAL IfcIdentifier;
	ImpliedOrder : IfcLogical;
	InterferenceSpace : OPTIONAL IfcSpatialZone;
 WHERE
	NoSelfReference : RelatingElement :<>: RelatedElement;
END_ENTITY;

5.4.3.54.7 References

Edit on Github


Is this page difficult to understand? Let us know!

5.4.3.54.8 Changelog

5.4.3.54.8.1 IFC4

  • New resource

5.4.3.54.8.2 IFC4.2

  • where rule, NoSelfReference
  • where rule, NotSelfReference

5.4.3.54.8.3 IFC4.3_DEV_ffe3a63