Navigation
Navigate Navigate Navigate Navigate Navigate Navigate Navigate Navigate

IfcDerivedProfileDef

Definition from IAI: The IfcDerivedProfileDef defines the profile by transformation from the parent profile. The transformation is given by a two dimensional transformation operator. Transformation includes translation, rotation, mirror and scaling. The latter can be uniform or non uniform. The derived profiles may be used to define swept surfaces, swept area solids or sectioned spines.

The transformation effects the position, rotation, mirroring or scale of the profile at the underlying coordinate system, i.e. the coordinate system defined by the swept surface or swept area solid that uses the profile definition. It is the xy plane of either:

or in case of sectioned spines the xy plane of each list member of IfcSectionedSpine.CrossSectionPositions. The position and potential rotation of the ParentProfile within the underlying coordinate system is taken into consideration before applying the Cartesian transformation operator.
HISTORY: New entity in IFC Release 2x.

Illustration:

uniform

Parameter
The IfcDerivedProfileDef is defined using the IfcCartesianTransformationOperator2D (CTO), which is applied to the parent profile definition.

Example
The example shows an uniform scaling and a transformation of an IfcRectangleProfileDef to match the lower-left cardinal point. The attributes of the CTO are:

Axis1 = NIL (defaults to 1.,0.)
Axis2 = NIL (defaults to 0.,1.)
LocalOrigin = IfcCartesianPoint(<1/2 XDim>,<1/2 YDim>)
Scale = 2.
Note: The ParentProfile has a Position = IfcCartesianPoint(<1/2 XDim>,<1/2 YDim>) already.
non uniform

Parameter
The IfcDerivedProfileDef is defined using non uniform transformationsby applying the IfcCartesianTransformationOperator2DnonUniform as a subtype of the 2D CTO.

Example
The example shows a non-uniform scaling and a translation of an IfcRectangleProfileDef to match the lower-left cardinal point. The attributes of the CTO are:

Axis1 = NIL (defaults to 1.,0.)
Axis2 = NIL (defaults to 0.,1.)
LocalOrigin = IfcCartesianPoint(0.,<1/2 YDim)
Scale  = 1.
Scale2 = 2.
Note: The ParentProfile has a Position = IfcCartesianPoint(<1/2 XDim>,<1/2 YDim>) already.
mirroring

Parameter
The IfcDerivedProfileDef is defined using mirroring by applying the IfcCartesianTransformationOperator2D (CTO) to the parent profile.

Example
The example shows a mirroring of an IfcLShapeProfileDef to match the centre cardinal point. The attributes of the CTO are:

Axis1 = (0.,-1.)
Axis2 = NIL (defaults to 1.,0.)
LocalOrigin = IfcCartesianPoint(0.,0.)
Scale = NIL (defaults to 1.)
Note: The ParentProfile has a Position = IfcCartesianPoint(0.,0.).
Note: The following color map applies:
  • black coordinate axes show the underlying coordinate system of the swept surface, swept area solid, or sectioned spine
  • red coordinate axes show the position coordinate system of the parent profile
  • brown coordinate axes show the position coordinate system of the derived profi

Table: Derivation of derived profile definition

EXPRESS specification:

ENTITY IfcDerivedProfileDef
SUBTYPE OF ( IfcProfileDef);
ParentProfile  :  IfcProfileDef;
Operator  :  IfcCartesianTransformationOperator2D;
Label  :  OPTIONAL IfcLabel;
WHERE
WR1  :  SELF\IfcProfileDef.ProfileType = ParentProfile.ProfileType;
END_ENTITY;

Attribute definitions:

ParentProfile  :  The parent profile provides the origin of the transformation.
Operator  :  Transformation operator applied to the parent profile.
Label  :  The name by which the transformation may be referred to. The actual meaning of the name has to be defined in the context of applications.

Formal Propositions:

WR1  :  The profile type of the derived profile shall be the same as the type of the parent profile, i.e. both shall be either AREA or CURVE.

Inheritance graph

ENTITY IfcDerivedProfileDef;
ENTITY IfcProfileDef;
ProfileType  :  IfcProfileTypeEnum;
ProfileName  :  OPTIONAL IfcLabel;
ENTITY IfcDerivedProfileDef;
ParentProfile  :  IfcProfileDef;
Operator  :  IfcCartesianTransformationOperator2D;
Label  :  OPTIONAL IfcLabel;
END_ENTITY;