RayPath
#
- class ansys.speos.core.lxp.RayPath(raypath, sensor_contribution=False)#
Framework representing a singular ray path.
Overview#
Retrieve any information from the RayPath object. |
Number of impacts contained in ray path. |
|
XYZ coordinates for each impact. |
|
Wavelength of the ray. |
|
Body ID of interacted body for each impact. |
|
Face ID of interacted body for each impact. |
|
Last direction of the ray. |
|
Intersection type of the ray for each impact. |
|
Provide the sensor contribution information for each sensor. |
Create string representation of a RayPath. |
Import detail#
from ansys.speos.core.lxp import RayPath
Property detail#
- property RayPath.nb_impacts: int#
Number of impacts contained in ray path.
- Returns:
int
Number of impacts
- property RayPath.intersection_type: list[int]#
Intersection type of the ray for each impact.
Notes
Available intersection types:
StatusAbsorbed = 0
StatusSpecularTransmitted = 1
StatusGaussianTransmitted = 2
StatusLambertianTransmitted = 3
StatusVolumicDiffused = 4
StatusJustEmitted = 5
StatusDiracTransmitted = 6
StatusError = 7
StatusErrorVolumicBodyNotClosed = 8
StatusErrorVolumeConflict = 9
StatusError2DTangency = 10
StatusError2DIntersect3DWarning = 11
StatusErrorNonOpticalMaterial = 12
StatusErrorIntersection = 13
StatusErrorNonOpticalMaterialAtEmission = 14
StatusError3DTextureSupportTangency = 15
StatusLast = 16
StatusFirst = -7
StatusDiracReflected = -6
StatusReserved = -5
StatusGrinStep = -4
StatusLambertianReflected = -3
StatusGaussianReflected = -2
StatusSpecularReflected = -1
Method detail#
- RayPath.get(key='')#
Retrieve any information from the RayPath object.
- RayPath.__str__()#
Create string representation of a RayPath.