8.15.3.5 IfcCShapeProfileDef(C形轮廓定义)
8.15.3.5.1 语义定义(Semantic definition)
IfcCShapeProfileDef 定义了一个截面轮廓,提供了用于扫掠面积实体的C形截面的定义参数。该截面通常通过冷弯钢材生产。其参数和相对于位置坐标系统的方向遵循下图所示。位置坐标系统的中心位于轮廓边界框的中心。
图1说明了C形轮廓定义的参数。参数化轮廓定义了其自身的位置坐标系统。基础坐标系统由使用该轮廓定义的扫掠面积实体定义。它是以下坐标系统的xy平面:
- IfcSweptAreaSolid.Position
通过使用位置偏移,参数化轮廓可以居中定位(使用x,y偏移=0.),或相对于轮廓的任何位置。参数化轮廓由一组参数属性定义。在所示示例中,IfcProfileProperties 中的 'CentreOfGravityInX' 属性(如果提供)为负值。

8.15.3.5.2 实体继承(Entity inheritance)
8.15.3.5.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 个继承特性 | |||
| IfcCShapeProfileDef (5) | |||
| 4 | Depth | IfcPositiveLengthMeasure |
轮廓深度,见上图(= h)。 |
| 5 | Width | IfcPositiveLengthMeasure |
轮廓宽度,见上图(= b)。 |
| 6 | WallThickness | IfcPositiveLengthMeasure |
轮廓的恒定壁厚(= ts)。 |
| 7 | Girth | IfcPositiveLengthMeasure |
周长长度,见上图(= c)。 |
| 8 | InternalFilletRadius | OPTIONAL IfcNonNegativeLengthMeasure |
根据上图的内圆角半径(= r1)。 |
8.15.3.5.4 形式化命题(Formal propositions)
| 名称 | 描述 |
|---|---|
| ValidGirth |
周长应小于深度的一半。 |
|
|
| ValidInternalFilletRadius |
如果给出了InternalFilletRadius的值,它应足够小以适合内部空间。 |
|
|
| ValidWallThickness |
壁厚应小于宽度的一半和深度的一半。 |
|
|
8.15.3.5.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.5.6 概念用法(Concept usage)
8.15.3.5.7 形式化表示(Formal representation)
ENTITY IfcCShapeProfileDef
SUBTYPE OF (IfcParameterizedProfileDef);
Depth : IfcPositiveLengthMeasure;
Width : IfcPositiveLengthMeasure;
WallThickness : IfcPositiveLengthMeasure;
Girth : IfcPositiveLengthMeasure;
InternalFilletRadius : OPTIONAL IfcNonNegativeLengthMeasure;
WHERE
ValidGirth : Girth < (Depth / 2.);
ValidInternalFilletRadius : NOT(EXISTS(InternalFilletRadius)) OR
((InternalFilletRadius <= Width/2. - WallThickness) AND (InternalFilletRadius <= Depth/2. - WallThickness));
ValidWallThickness : (WallThickness < Width/2.) AND (WallThickness < Depth/2.);
END_ENTITY;