IFC 4.3.2.20250219 (IFC4X3_ADD2) under development

6.1.3.28 IfcRelConnectsPathElements

6.1.3.28.1 Semantic definition

The IfcRelConnectsPathElements relationship provides the connectivity information between two elements, which have path information.

The objectified relationship provides the additional information required to describe the connection between two path based elements that might have single or multiple layers of material. The connection type specifies where at the path based element a connection is given (at the start, in the middle or at the end).

The connection is described by a connection geometry, given within the object coordinate systems of the RelatingElement and of the RelatedElement. In case of layered IfcWall elements as the RelatingElement and RelatedElement the connection geometry is provided by the subtype IfcConnectionCurveGeometry. Both curves indicate the so called "end cap", i.e. the curve that trims the wall outer edges (being parallel along the wall axis) at the end.

wall connection
Figure 6.1.3.28.A — Path connection geometry

Figure 6.1.3.28.A shows the application of IfcRelConnectsPathElements with the ConnectionGeometry of type IfcConnectionCurveGeometry. The example shows the connection relationship between two instances of layered IfcWall elements using the IfcRelConnectsPathElements relationship. The ConnectionCurveGeometry defines the CurveOnRelatingElement and CurveOnRelatedElement, both are of type IfcPolyline.

wall connection
Figure 6.1.3.28.B — Path connection T-Type

Figure 6.1.3.28.B illustrates using the IfcRelConnectsPathElements for a "T" type connection between two instances of layered IfcWall elements.

wall connection
Figure 6.1.3.28.C — Path connection L-Type

Figure 6.1.3.28.C illustrates using the IfcRelConnectsPathElements for a "L" type connection between two instances of layered IfcWall elements.

6.1.3.28.2 Entity inheritance

6.1.3.28.3 Attributes

# Attribute Type Description
IfcRoot (4)
IfcRelConnectsElements (3)
Click to show 7 hidden inherited attributes
IfcRelConnectsPathElements (4)
8 RelatingPriorities LIST [0:?] OF IfcInteger

Overriding priorities at this connection. It overrides the standard priority given at the wall layer provided by IfcMaterialLayer.Priority. The list of RelatingProperties corresponds to the list of IfcMaterialLayerSet.MaterialLayers of the element referenced by RelatingObject.

9 RelatedPriorities LIST [0:?] OF IfcInteger

Overriding priorities at this connection. It overrides the standard priority given at the wall layer provided by IfcMaterialLayer.Priority. The list of RelatedProperties corresponds to the list of IfcMaterialLayerSet.MaterialLayers of the element referenced by RelatedObject.

10 RelatedConnectionType IfcConnectionTypeEnum

Indication of the connection type in relation to the path of the RelatedObject.

11 RelatingConnectionType IfcConnectionTypeEnum

Indication of the connection type in relation to the path of the RelatingObject.

Table 6.1.3.28.E

6.1.3.28.4 Formal propositions

Name Description
NormalizedRelatedPriorities

The RelatedProperties shall all be given as a normalized integer range [0..100], where 0 is the lowest and 100 the highest priority of the material layers.

(SIZEOF(RelatedPriorities) = 0)
OR
(SIZEOF (QUERY (temp <* RelatedPriorities
| {0 <= temp <= 100}
)) = SIZEOF(RelatedPriorities))
NormalizedRelatingPriorities

The RelatingProperties shall all be given as a normalized integer range [0..100], where 0 is the lowest and 100 the highest priority of the material layers.

(SIZEOF(RelatingPriorities) = 0)
OR
(SIZEOF (QUERY (temp <* RelatingPriorities
| {0 <= temp <= 100}
)) = SIZEOF(RelatingPriorities))
Table 6.1.3.28.F

6.1.3.28.5 Concept usage

Concept Usage Description
IfcRoot (2)
Click to show 2 hidden inherited concepts
Table 6.1.3.28.G

6.1.3.28.6 Examples

6.1.3.28.7 Formal representation

ENTITY IfcRelConnectsPathElements
SUBTYPE OF (IfcRelConnectsElements);
RelatingPriorities : LIST [0:?] OF IfcInteger;
RelatedPriorities : LIST [0:?] OF IfcInteger;
RelatedConnectionType : IfcConnectionTypeEnum;
RelatingConnectionType : IfcConnectionTypeEnum;
WHERE
NormalizedRelatedPriorities : (SIZEOF(RelatedPriorities) = 0)
OR
(SIZEOF (QUERY (temp <* RelatedPriorities
| {0 <= temp <= 100}
)) = SIZEOF(RelatedPriorities));
NormalizedRelatingPriorities : (SIZEOF(RelatingPriorities) = 0)
OR
(SIZEOF (QUERY (temp <* RelatingPriorities
| {0 <= temp <= 100}
)) = SIZEOF(RelatingPriorities));
END_ENTITY;

6.1.3.28.8 References

Edit on Github

6 contributor(s):
Last change: Improve definition split (#876) * bring back headers headers were previously removed by mistake, now bringing them back * add new lines and rename the tag add the word 'short' in it * unify newlines make exactly one newline before and two after the tag * resolving typos Because bringing back headers required to go back in time to previous version, I'm now re-resolving the issues: #861, #860, #856 by ArturTomczak on 7/16/2024, 2:07:28 PM

Is this page difficult to understand? Let us know!

6.1.3.28.9 Changelog

6.1.3.28.9.1 IFC4

  • where rule, NormalizedRelatedPriorities
  • where rule, NormalizedRelatingPriorities
  • attribute RelatedPriorities type, Changed from "list[0:?] of integer" to "list[0:?] of IfcInteger"
  • attribute RelatingPriorities type, Changed from "list[0:?] of integer" to "list[0:?] of IfcInteger"