Definition
from IAI: The IfcLShapeProfileDef
defines a section profile that provides the defining parameters of an
L-shaped section (equilateral L profiles are also covered by this
entity) to be used by the swept area
solid. Its parameters and orientation relative to the position
coordinate system are according to the following illustration. The
shorter leg has the same direction as the positive x-axis, the longer
or equal leg the same as the positive y-axis. The centre of the
position
coordinate system is in the profiles centre
of the gravity bounding box.
The centre of gravity, if given, is located in x direction along the negative x axis, the offset value is given by the offset parameter CentreOfGravityInX, and in y-direction along the negative y axis, the offset value is given by the offset parameter CentreOfGravityInY.
HISTORY New entity in Release IFC2x Edition 2.
IFC2x Edition 3 CHANGE All profile origins are now in the center of the bounding box. The attribute CentreOfGravityInY has been made OPTIONAL. Upward compatibility for file based exchange is guaranteed.
Illustration:
Position
Parameter |
|
Note: The black coordinate axes show the underlying coordinate system of the swept surface or swept area solid |
Position
Note: if the values of CentreOfGravityInX and CentreOfGravityInY are given, they are already negative values, since the shift of the centre of gravity is into the negative X and negative Y axis. Parameter |
Table: Parameters of equal-sided and non-equal sided L-shaped section definition
# | Attribute | Type | Cardinality | Description | A |
---|---|---|---|---|---|
4 | Depth | IfcPositiveLengthMeasure | [1:1] | Leg length, see illustration above (= h). | X |
5 | Width | - | This attribute is out of scope for this model view definition and shall not be set. | ||
6 | Thickness | IfcPositiveLengthMeasure | [1:1] | Constant wall thickness of profile, see illustration above (= ts). | X |
7 | FilletRadius | - | This attribute is out of scope for this model view definition and shall not be set. | ||
8 | EdgeRadius | - | This attribute is out of scope for this model view definition and shall not be set. | ||
9 | LegSlope | - | This attribute is out of scope for this model view definition and shall not be set. | ||
10 | CentreOfGravityInX | - | This attribute is out of scope for this model view definition and shall not be set. | ||
11 | CentreOfGravityInY | - | This attribute is out of scope for this model view definition and shall not be set. |
Rule | Description |
---|---|
WR21 | The thickness of the flange has to be smaller than the depth of the profile. |
WR22 | The thickness of the flange has to be smaller than the width of the profile (if given). |
# | Attribute | Type | Cardinality | Description | A |
---|---|---|---|---|---|
IfcProfileDef | |||||
1 | ProfileType | IfcProfileTypeEnum | [1:1] | Defines the type of geometry into which this profile definition shall be resolved, either a curve or a surface area. In case of curve the profile should be referenced by a swept surface, in case of area the profile should be referenced by a swept area solid. | X |
2 | ProfileName | - | This attribute is out of scope for this model view definition and shall not be set. | ||
IfcParameterizedProfileDef | |||||
3 | Position | IfcAxis2Placement2D | [1:1] | Position coordinate system of the parameterized profile definition. | X |
IfcLShapeProfileDef | |||||
4 | Depth | IfcPositiveLengthMeasure | [1:1] | Leg length, see illustration above (= h). | X |
5 | Width | - | This attribute is out of scope for this model view definition and shall not be set. | ||
6 | Thickness | IfcPositiveLengthMeasure | [1:1] | Constant wall thickness of profile, see illustration above (= ts). | X |
7 | FilletRadius | - | This attribute is out of scope for this model view definition and shall not be set. | ||
8 | EdgeRadius | - | This attribute is out of scope for this model view definition and shall not be set. | ||
9 | LegSlope | - | This attribute is out of scope for this model view definition and shall not be set. | ||
10 | CentreOfGravityInX | - | This attribute is out of scope for this model view definition and shall not be set. | ||
11 | CentreOfGravityInY | - | This attribute is out of scope for this model view definition and shall not be set. |
<xs:element name="IfcLShapeProfileDef" type="ifc:IfcLShapeProfileDef" substitutionGroup="ifc:IfcParameterizedProfileDef" nillable="true"/>
<xs:complexType name="IfcLShapeProfileDef">
<xs:complexContent>
<xs:extension base="ifc:IfcParameterizedProfileDef">
<xs:attribute name="Depth" type="ifc:IfcPositiveLengthMeasure" use="optional"/>
<xs:attribute name="Thickness" type="ifc:IfcPositiveLengthMeasure" use="optional"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
ENTITY IfcLShapeProfileDef
SUBTYPE OF (IfcParameterizedProfileDef);
Depth : IfcPositiveLengthMeasure;
Width : OPTIONAL IfcStrippedOptional;
Thickness : IfcPositiveLengthMeasure;
FilletRadius : OPTIONAL IfcStrippedOptional;
EdgeRadius : OPTIONAL IfcStrippedOptional;
LegSlope : OPTIONAL IfcStrippedOptional;
CentreOfGravityInX : OPTIONAL IfcStrippedOptional;
CentreOfGravityInY : OPTIONAL IfcStrippedOptional;
WHERE
WR21 : Thickness < Depth;
WR22 : NOT(EXISTS(Width)) OR (Thickness < Width);
END_ENTITY;