LightPathFinder
#
- class ansys.speos.core.lxp.LightPathFinder(speos, path)#
Define an interface to read LPF files.
LPF files contain a set of simulated rays including their intersections and properties.
- Parameters:
- speos
ansys.speos.core.speos.Speos
Speos Session (connected to Speos gRPC server).
- path
str
Path to the LPF file to be opened.
- speos
- Parameters:
speos (ansys.speos.core.project.Speos)
path (str)
Overview#
Filter ray paths based on face IDs and populates filtered_rays property. |
|
Filter ray paths based on body IDs and populates filtered_rays property. |
|
Filter ray paths and only shows rays in error. |
|
Filter rays and only shows rays not in error. |
|
Preview LPF file with pyvista. |
Number of light paths within LPF data set. |
|
Number of sensors involved within LPF data set. |
|
Define if a LPF file contains information regarding the sensor contribution. |
|
List of involved sensor names. |
|
List ray paths within LPF file. |
|
List of filtered ray paths. |
Speos instance client |
Create string representation of LightPathFinder. |
Import detail#
from ansys.speos.core.lxp import LightPathFinder
Property detail#
Attribute detail#
- LightPathFinder.client#
Speos instance client
Method detail#
- LightPathFinder.__str__()#
Create string representation of LightPathFinder.
- LightPathFinder.filter_by_face_ids(options, new=True)#
Filter ray paths based on face IDs and populates filtered_rays property.
- Parameters:
- Returns:
ansys.speos.core.lxp.LightPathFinder
LightPathFinder Instance.
- LightPathFinder.filter_by_body_ids(options, new=True)#
Filter ray paths based on body IDs and populates filtered_rays property.
- Parameters:
- Returns:
ansys.speos.core.lxp.LightPathFinder
LightPathFinder Instance.
- LightPathFinder.filter_error_rays()#
Filter ray paths and only shows rays in error.
- Returns:
ansys.speos.core.lxp.LightPathFinder
LightPathFinder Instance.
- LightPathFinder.remove_error_rays()#
Filter rays and only shows rays not in error.
- Returns:
ansys.speos.core.lxp.LightPathFinder
LightPathFinder Instance.
- LightPathFinder.preview(nb_ray=100, max_ray_length=50.0, ray_filter=False, project=None)#
Preview LPF file with pyvista.
- Parameters:
- nb_ray
int
Number of rays to be visualized.
- max_ray_length
float
Length of last ray.
- ray_filterbool
Boolean to decide if filtered rays or all rays should be shown.
- project
ansys.speos.core.project.Project
Speos Project/Geometry to be added to pyvista visualisation.
- nb_ray
- Returns:
ansys.speos.core.lxp.LightPathFinder
LightPathFinder Instance.