How to preview a light expert result#
This tutorial demonstrates how to review the light expert simulation result.
[1]:
from pathlib import Path
from ansys.speos.core import LightPathFinder, Project, Speos
from ansys.speos.core.simulation import SimulationInteractive
# If using docker container
assets_data_path = Path("/app") / "assets"
# If using local server
# assets_data_path = Path().resolve().parent.parent / "tests" / "assets"
# If using a different path
# assets_data_path = Path("path/to/downloaded/example/assets")
Create connection with speos rpc server#
[2]:
speos = Speos(host="localhost", port=50098)
Create a new project#
In this example, a project is created via reading a pre-defined .speos file.
User can preview the part and mesh information.
By providing viz_args to the preview function, project part can be viewed in a semi-transparent way.
It can be found there is volume conflict in this project.
[3]:
p = Project(
speos=speos,
path=str(assets_data_path / "error_data.speos" / "error_data.speos"),
)
p.preview(viz_args={"opacity": 0.7})
Retrieve the simulation feature and run#
[4]:
sim = p.find("Direct.1")[0]
sim.compute_CPU()
[4]:
[upload_response {
info {
uri: "72c8f94f-4e78-4fbd-a500-fe908dedb899"
file_name: "Direct.1.Irradiance.1.xmp"
file_size: 1719191
}
upload_duration {
nanos: 5814744
}
}
, upload_response {
info {
uri: "3ad619bb-5a56-4496-a793-24a138a728d4"
file_name: "Direct.1.html"
file_size: 273764
}
upload_duration {
nanos: 516386
}
}
]
If looking to the simulation report, we will find that we have 40% simulation error
[5]:
import ansys.speos.core.workflow.open_result as orf
# Methods from workflow class provide a way to find the correct result file.
# Detailed information can be found in the workflow_open_result example.
data = orf._find_correct_result(sim, "Direct.1.html")
Create a simulation with light expert#
We will define an interactive simulation to have a look at the rays in error
[6]:
interactive_sim = p.create_simulation("error", feature_type=SimulationInteractive)
interactive_sim.set_light_expert(True)
interactive_sim.set_sensor_paths(["Irradiance.1:70"])
interactive_sim.set_source_paths(["Surface.1:4830"])
interactive_sim.commit()
[6]:
<ansys.speos.core.simulation.SimulationInteractive at 0x7fce80551840>
Preview the light expert result#
Here, we will run the simulation and preview the result via LightPathFinder class.
By default, the LightPathFinder class will preview all the rays collected in the simulation.
[7]:
results = interactive_sim.compute_CPU()
path = orf._find_correct_result(interactive_sim, "error.lpf", download_if_distant=False)
lxp = LightPathFinder(speos, path)
lxp.preview(project=p)
[7]:
<ansys.speos.core.lxp.LightPathFinder at 0x7fce80551a80>
Preview the light expert result with error filter#
ray_filter option is provided in the preview function that user can filter the rays to see only rays in error.
In this example, error rays are generated due to a volume conflict between two solids.
[8]:
lxp.filter_error_rays()
lxp.preview(project=p, ray_filter=True)
[8]:
<ansys.speos.core.lxp.LightPathFinder at 0x7fce80551a80>