Verbindet Anschlüsse - Relation | |
Rel Connects Ports | |
Connection de ports |
Item | SPF | XML | Change | Description | IFC2x3 to IFC4 |
---|---|---|---|---|
IfcRelConnectsPorts | ||||
OwnerHistory | MODIFIED | Instantiation changed to OPTIONAL. |
An IfcRelConnectsPorts relationship defines the relationship that is made between two ports at their point of connection. It may include the connection geometry between two ports.
The objectified relationship IfcRelConnectsPorts is required for defining how two instances of IfcPort connect together. Each of the ports is logically contained within the IfcDistributionElement by using the ordered collection IfcRelNests.
HISTORY New entity in IFC2.0, modified in IFC2x.
IFC4 CHANGE Previously the containment of the IfcPort within the IfcDistributionElement had been realized using the IfcRelConnectsPortToElement relationship.
# | Attribute | Type | Cardinality | Description | C |
---|---|---|---|---|---|
5 | RelatingPort | IfcPort | [1:1] | Reference to the first port that is connected by the objectified relationship. | X |
6 | RelatedPort | IfcPort | [1:1] | Reference to the second port that is connected by the objectified relationship. | X |
7 | RealizingElement | IfcElement | [0:1] | Defines the element that realizes a port connection relationship. | X |
Rule | Description |
---|---|
NoSelfReference | The instance of the RelatingPort shall not be the same instance as the RelatedPort. |
# | Attribute | Type | Cardinality | Description | C |
---|---|---|---|---|---|
IfcRoot | |||||
1 | GlobalId | IfcGloballyUniqueId | [1:1] | Assignment of a globally unique identifier within the entire software world. | X |
2 | OwnerHistory | IfcOwnerHistory | [0:1] |
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,
NOTE only the last modification in stored - either as addition, deletion or modification. | X |
3 | Name | IfcLabel | [0:1] | 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. | X |
4 | Description | IfcText | [0:1] | Optional description, provided for exchanging informative comments. | X |
IfcRelationship | |||||
IfcRelConnects | |||||
IfcRelConnectsPorts | |||||
5 | RelatingPort | IfcPort | [1:1] | Reference to the first port that is connected by the objectified relationship. | X |
6 | RelatedPort | IfcPort | [1:1] | Reference to the second port that is connected by the objectified relationship. | X |
7 | RealizingElement | IfcElement | [0:1] | Defines the element that realizes a port connection relationship. | X |
# | Concept | Model View |
---|---|---|
IfcRoot | ||
Software Identity | Common Use Definitions | |
Revision Control | Common Use Definitions |
<xs:element name="IfcRelConnectsPorts" type="ifc:IfcRelConnectsPorts" substitutionGroup="ifc:IfcRelConnects" nillable="true"/>
<xs:complexType name="IfcRelConnectsPorts">
<xs:complexContent>
<xs:extension base="ifc:IfcRelConnects">
<xs:sequence>
<xs:element name="RelatingPort" type="ifc:IfcPort" nillable="true"/>
<xs:element name="RelatedPort" type="ifc:IfcPort" nillable="true"/>
<xs:element name="RealizingElement" type="ifc:IfcElement" nillable="true" minOccurs="0"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
ENTITY IfcRelConnectsPorts
SUBTYPE OF (IfcRelConnects);
RelatingPort : IfcPort;
RelatedPort : IfcPort;
RealizingElement : OPTIONAL IfcElement;
WHERE
NoSelfReference : RelatingPort :<>: RelatedPort;
END_ENTITY;