8.15.3.22 IfcRoundedRectangleProfileDef(圆角矩形轮廓定义)
8.15.3.22.1 语义定义(Semantic definition)
IfcRoundedRectangleProfileDef 定义了一个具有等圆角的矩形,作为扫掠表面几何或扫掠面积实体所使用的轮廓定义。它通过 X 方向尺寸、Y 方向尺寸和圆角半径给出,并放置在由 Position 属性建立的二维位置坐标系内。它位于位置坐标系的中心,即边界框的中心。
图 8.15.3.22.A 说明了圆角矩形轮廓定义的参数。

位置
参数化轮廓定义了其自身的位置坐标系。基础坐标系由使用该轮廓定义的扫掠表面或扫掠面积实体定义。它是以下任一对象的 xy 平面:
- IfcSweptSurface.Position
- IfcSweptAreaSolid.Position
或在截面化脊柱的情况下,是 IfcSectionedSpine.CrossSectionPositions 每个列表成员的 xy 平面。
通过使用位置坐标的偏移量,参数化轮廓可以居中定位(使用 x,y 偏移量 = 0.),或相对于轮廓的任何位置。显式坐标偏移用于定义基点(例如左上边界)。
参数
IfcRoundedRectangleProfileDef 在位置坐标系内定义,其中 XDim 定义矩形的长度度量(沿正 x 轴的一半),YDim 定义矩形的宽度度量(沿正 y 轴的一半),而 RoundingRadius 定义矩形所有四个角的曲率半径。
8.15.3.22.2 实体继承(Entity inheritance)
8.15.3.22.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 |
参数化轮廓定义的位置坐标系。如果未指定,则不应用平移和旋转。 |
| IfcRectangleProfileDef (2) | |||
| 4 | XDim | IfcPositiveLengthMeasure |
矩形沿x轴方向的尺寸。 |
| 5 | YDim | IfcPositiveLengthMeasure |
矩形沿y轴方向的尺寸。 |
| 点击显示 7 个隐藏的继承特性 点击隐藏 7 个继承特性 | |||
| IfcRoundedRectangleProfileDef (1) | |||
| 6 | RoundingRadius | IfcPositiveLengthMeasure |
矩形所有四个角等圆角圆弧的半径。 |
8.15.3.22.4 形式化命题(Formal propositions)
| 名称 | 描述 |
|---|---|
| ValidRadius |
属性 RoundingRadius 的值应小于或等于 XDim 和 YDim 属性值两者中的任一个的一半。 |
|
|
8.15.3.22.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.22.6 概念用法(Concept usage)
8.15.3.22.7 形式化表示(Formal representation)
ENTITY IfcRoundedRectangleProfileDef
SUBTYPE OF (IfcRectangleProfileDef);
RoundingRadius : IfcPositiveLengthMeasure;
WHERE
ValidRadius : ((RoundingRadius <= (SELF\IfcRectangleProfileDef.XDim/2.)) AND
(RoundingRadius <= (SELF\IfcRectangleProfileDef.YDim/2.)));
END_ENTITY;