8.15.3.13 IfcLShapeProfileDef(L形轮廓定义)
8.15.3.13.1 语义定义(Semantic definition)
IfcLShapeProfileDef 定义了一个截面轮廓,提供了用于扫掠面积实体的L形截面(等边L形轮廓也由此实体涵盖)的定义参数。其参数和相对于位置坐标系统的方向遵循下图说明。较短的腿与正 Position.P[1] 轴方向相同,较长或相等的腿与正 Position.P[2] 轴方向相同。位置坐标系统的中心位于轮廓边界框的中心。
图1和图2说明了等边和非等边L形截面定义的参数。

参数化轮廓定义了其自身的位置坐标系统。基础坐标系统由使用该轮廓定义的扫掠面积实体定义。它是 IfcSweptAreaSolid.Position 的xy平面,通过使用位置偏移量,参数化轮廓可以居中定位(使用x,y偏移量=0.),或相对于轮廓的任何位置定位。
在所示示例中,IfcProfileProperties 中的 'CentreOfGravityInX' 和 'CentreOfGravityInY' 属性(如果提供)均为负值。

通过使用 Position 属性,轮廓被插入到扫掠面积实体的基础坐标系统中。在此示例(重心基点)中,IfcAxis2Placement2D 的属性值为:
Location = IfcCartesianPoint(+|CentreOfGravityInX|, +|CentreOfGravityInY|)
RefDirection = NIL(默认为 1.,0.)
在所示示例中,Position.Location 的x和y值,即 测量值 |CentreOfGravityInX| 和 |CentreOfGravityInY| 均为正值。另一方面,IfcProfileProperties 中名为 'CentreOfGravityInX' 和 'CentreOfGravityInY' 的属性(如果提供)现在必须都设置为0,因为生成的轮廓定义的重心位于坐标原点。
8.15.3.13.2 实体继承(Entity inheritance)
8.15.3.13.3 特性(Attributes)
| # | 特性(Attributes) | 类型 | 描述 |
|---|---|---|---|
| IfcProfileDef (4) | |||
| 1 | ProfileType | IfcProfileTypeEnum |
定义此轮廓定义应解析的几何类型,是曲线还是曲面区域。如果是曲线,轮廓应由扫描曲面引用;如果是区域,轮廓应由扫描实体引用。 |
| 2 | ProfileName | OPTIONAL IfcLabel |
轮廓的人类可读名称,例如根据标准轮廓表。如上所述,机器可读的标准轮廓名称应在 IfcExternalReference.ItemReference 中提供。 |
| HasExternalReference | SET [0:?] OF IfcExternalReferenceRelationship FOR RelatedResourceObjects |
与轮廓关联的外部信息(例如库、分类或文档信息)的引用。 |
|
| HasProperties | SET [0:?] OF IfcProfileProperties FOR ProfileDefinition |
轮廓的附加属性,例如机械属性。 |
|
| IfcParameterizedProfileDef (1) | |||
| 3 | Position | OPTIONAL IfcAxis2Placement2D |
参数化轮廓定义的位置坐标系。如果未指定,则不应用平移和旋转。 |
| 点击显示 5 个隐藏的继承特性 点击隐藏 5 个继承特性 | |||
| IfcLShapeProfileDef (6) | |||
| 4 | Depth | IfcPositiveLengthMeasure |
腿长,见上图说明 (= h)。与总深度相同。 |
| 5 | Width | OPTIONAL IfcPositiveLengthMeasure |
腿长,见上图说明 (= b)。与总宽度相同。由于历史原因,此属性在形式上是可选的。只要宽度已知,就应提供其值。 |
| 6 | Thickness | IfcPositiveLengthMeasure |
轮廓的恒定壁厚,见上图说明 (= ts)。 |
| 7 | FilletRadius | OPTIONAL IfcNonNegativeLengthMeasure |
根据上图说明的圆角半径 (= r1)。 |
| 8 | EdgeRadius | OPTIONAL IfcNonNegativeLengthMeasure |
根据上图说明的边缘半径 (= r2)。 |
| 9 | LegSlope | OPTIONAL IfcPlaneAngleMeasure |
轮廓每个腿内表面的斜率。 |
8.15.3.13.4 形式化命题(Formal propositions)
| 名称 | 描述 |
|---|---|
| ValidThickness |
厚度应小于深度和宽度。 |
|
|
8.15.3.13.5 属性集
-
Pset_ProfileMechanical
- MassPerLength
- CrossSectionArea
- Perimeter
- MinimumPlateThickness
- MaximumPlateThickness
- CentreOfGravityInX
- CentreOfGravityInY
- ShearCentreZ
- ShearCentreY
- MomentOfInertiaY
- MomentOfInertiaZ
- MomentOfInertiaYZ
- TorsionalConstantX
- WarpingConstant
- ShearDeformationAreaZ
- ShearDeformationAreaY
- MaximumSectionModulusY
- MinimumSectionModulusY
- MaximumSectionModulusZ
- MinimumSectionModulusZ
- TorsionalSectionModulus
- ShearAreaZ
- ShearAreaY
- PlasticShapeFactorY
- PlasticShapeFactorZ
8.15.3.13.6 概念用法(Concept usage)
8.15.3.13.7 形式化表示(Formal representation)
ENTITY IfcLShapeProfileDef
SUBTYPE OF (IfcParameterizedProfileDef);
Depth : IfcPositiveLengthMeasure;
Width : OPTIONAL IfcPositiveLengthMeasure;
Thickness : IfcPositiveLengthMeasure;
FilletRadius : OPTIONAL IfcNonNegativeLengthMeasure;
EdgeRadius : OPTIONAL IfcNonNegativeLengthMeasure;
LegSlope : OPTIONAL IfcPlaneAngleMeasure;
WHERE
ValidThickness : (Thickness < Depth) AND (NOT(EXISTS(Width)) OR (Thickness < Width));
END_ENTITY;