IfcLightDistributionData

IfcLightDistributionData定义了特定主平面角度下光源的发光强度。它基于一些标准化的光分布曲线;主平面角度是


●A angle; if the IfcLightDistributionCurveEnum is set to TYPE_A
●B angle; if the IfcLightDistributionCurveEnum is set to TYPE_B
●C angle; if the IfcLightDistributionCurveEnum is set to TYPE_C

对于每个主平面角(被认为是一个表的行),都会给出一个辅助平面角的列表(被认为是一个表的列)。它们是:

●α angle; if the IfcLightDistributionCurveEnum is set to TYPE_A
●β angle; if the IfcLightDistributionCurveEnum is set to TYPE_B
●γ angle; if the IfcLightDistributionCurveEnum is set to TYPE_C

对于每对主平面角和次平面角,都提供了发光强度(单位由Ifcuinitassignment给出,参考发光强度分布单位,通常为cd/klm)。

IFC2x2中增加的新实体。

Attribute inheritance

#AttributeTypeCardinalityDescriptionC
IfcLightDistributionData
1 MainPlaneAngle IfcPlaneAngleMeasure [1:1]

主平面角度(A、B或C角度,根据选择的光分布曲线)。

X
2 SecondaryPlaneAngle IfcPlaneAngleMeasure L[1:?]

根据所选的光分布曲线列出次平面角(α、β或γ角)。

请注意,次要平面角度和发光强度列表是相应的列表。

X
3 LuminousIntensity IfcLuminousIntensityDistributionMeasure L[1:?]

根据所选的光分布曲线,测量这对主平面角和次平面角的光强分布。

X
 

EXPRESS Specification

ENTITY IfcLightDistributionData;
  MainPlaneAngle : IfcPlaneAngleMeasure;
  SecondaryPlaneAngle : LIST [1:?] OF IfcPlaneAngleMeasure;
  LuminousIntensity : LIST [1:?] OF IfcLuminousIntensityDistributionMeasure;
END_ENTITY;
原文地址:https://www.cnblogs.com/herd/p/14256038.html