How to use scene and job#

This tutorial demonstrates how to create a scene, and fill it from a speos file. Then this demonstrates how to create a job from the scene, and run it.

[1]:
from pathlib import Path
import time

from ansys.speos.core.kernel.job import ProtoJob
from ansys.speos.core.speos import Speos

# 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)

Scene#

Create an empty scene

[3]:
my_scene = speos.client.scenes().create()

Load a file to fill the scene

[4]:
speos_file = str(
    assets_data_path / "LG_50M_Colorimetric_short.sv5" / "LG_50M_Colorimetric_short.sv5"
)
my_scene.load_file(file_uri=speos_file)

Print scene data model

Here it is possible to see that the scene contains two surface sources, one irradiance sensor.

[5]:
print(my_scene)
ansys.api.speos.scene.v2.Scene
{
    "name": "LG_50M_Colorimetric_short",
    "description": "From /app/assets/LG_50M_Colorimetric_short.sv5/LG_50M_Colorimetric_short.sv5",
    "part_guid": "ce949cd1-1575-4f6b-ba0e-440b56592cc8",
    "sources": [
        {
            "name": "Dom Source 2 (0) in SOURCE2",
            "source_guid": "b2b74319-6736-4289-946f-33b61a793104",
            "surface_properties": {
                "exitance_constant_properties": {
                    "geo_paths": [
                        {
                            "geo_path": "Solid Body in SOURCE2:2920204960/Face in SOURCE2:222",
                            "reverse_normal": false
                        }
                    ]
                }
            },
            "description": "",
            "metadata": {}
        },
        {
            "name": "Surface Source (0) in SOURCE1",
            "source_guid": "a93b4959-450a-42c5-aaf3-5340f6084538",
            "surface_properties": {
                "exitance_constant_properties": {
                    "geo_paths": [
                        {
                            "geo_path": "Solid Body in SOURCE1:2494956811/Face in SOURCE1:187",
                            "reverse_normal": false
                        }
                    ]
                }
            },
            "description": "",
            "metadata": {}
        }
    ],
    "sensors": [
        {
            "name": "Dom Irradiance Sensor (0)",
            "sensor_guid": "4f7bc9a4-85c8-4370-a6c8-4b572fb40f45",
            "result_file_name": "ASSEMBLY1.DS (0).Dom Irradiance Sensor (0)",
            "irradiance_properties": {
                "axis_system": [
                    -42.0,
                    2.0,
                    5.0,
                    0.0,
                    1.0,
                    0.0,
                    0.0,
                    0.0,
                    -1.0,
                    -1.0,
                    0.0,
                    0.0
                ],
                "layer_type_source": {},
                "integration_direction": [
                    1.0,
                    -0.0,
                    -0.0
                ],
                "ray_file_type": "RayFileNone"
            },
            "description": "",
            "metadata": {}
        }
    ],
    "simulations": [
        {
            "name": "ASSEMBLY1.DS (0)",
            "simulation_guid": "e41940d0-091d-40a6-bdf9-06fc08775381",
            "sensor_paths": [
                "Dom Irradiance Sensor (0)"
            ],
            "source_paths": [
                "Dom Source 2 (0) in SOURCE2",
                "Surface Source (0) in SOURCE1"
            ],
            "description": "",
            "metadata": {}
        }
    ],
    "materials": [
        {
            "name": "Material.1",
            "sop_guids": [
                "665e6df0-885b-422a-800c-0e11cbfb49c4"
            ],
            "geometries": {
                "geo_paths": [
                    "Solid Body in GUIDE:1379760262/Face in GUIDE:169"
                ]
            },
            "description": "",
            "metadata": {}
        },
        {
            "name": "Material.2",
            "vop_guid": "d289f3b2-b778-4096-83f0-aad3ccb9c5c4",
            "sop_guids": [
                "7119bad6-f8f0-4deb-8b22-fcf4a80039bd"
            ],
            "geometries": {
                "geo_paths": [
                    "Solid Body in GUIDE:1379760262"
                ]
            },
            "description": "",
            "metadata": {}
        },
        {
            "name": "Material.3",
            "vop_guid": "3b3e9e31-837d-4d7d-8b8e-956735518b2c",
            "sop_guids": [
                "665e6df0-885b-422a-800c-0e11cbfb49c4"
            ],
            "geometries": {
                "geo_paths": [
                    "Solid Body in SOURCE2:2920204960",
                    "Solid Body in SOURCE1:2494956811"
                ]
            },
            "description": "",
            "metadata": {}
        },
        {
            "name": "Material.4",
            "vop_guid": "eab1a20f-b2ee-4202-92cf-9aec0b2f791d",
            "description": "",
            "metadata": {},
            "sop_guids": []
        }
    ],
    "metadata": {},
    "scenes": []
}

Job#

Create a job for the first simulation. When loaded from a speos file, there is always only one simulation in the scene.

[6]:
# First create the protobuf message
job_message = ProtoJob(name="my_job")
job_message.scene_guid = my_scene.key  # The job needs a scene guid
job_message.simulation_path = (
    my_scene.get().simulations[0].name
)  # And needs to know which simulation in the scene is involved.
job_message.job_type = ProtoJob.Type.CPU  # Choose type of job, can also be GPU.
job_message.direct_mc_simulation_properties.automatic_save_frequency = 1800
job_message.direct_mc_simulation_properties.stop_condition_rays_number = (
    200000  # Stop condition, here 200000 rays will be sent.
)

# Create the JobLink
job_link = speos.client.jobs().create(message=job_message)

Start the job

[7]:
job_link.start()

Verify state of the job

[8]:
job_link.get_state()
[8]:
state: RUNNING

Wait that the job is finished

[9]:
job_state_res = job_link.get_state()
while (
    job_state_res.state != ProtoJob.State.FINISHED
    and job_state_res.state != ProtoJob.State.STOPPED
    and job_state_res.state != ProtoJob.State.IN_ERROR
):
    time.sleep(2)

    job_state_res = job_link.get_state()

Retrieve results of the job

Two results are generated : the result of irradiance sensor: “ASSEMBLY1.DS (0).Dom Irradiance Sensor (0).xmp” and the simulation report in html

[10]:
results = job_link.get_results().results
print(results)
[upload_response {
  info {
    uri: "a551b63d-2d2f-431a-8235-5a4b20e616ab"
    file_name: "ASSEMBLY1.DS (0).Dom Irradiance Sensor (0).xmp"
    file_size: 1441509
  }
  upload_duration {
    nanos: 2324139
  }
}
, upload_response {
  info {
    uri: "1b4f7650-24bb-4721-b08d-62dbe45839f1"
    file_name: "ASSEMBLY1.DS (0).html"
    file_size: 513190
  }
  upload_duration {
    nanos: 742420
  }
}
]

Once no more needed: delete the job

[11]:
job_link.delete()

When loading a speos file into a scene, this creates many objects (source templates, sensor templates, vop template, sop templates). Then at the end of the example, we just clean all databases

[12]:
for item in (
    speos.client.scenes().list()
    + speos.client.simulation_templates().list()
    + speos.client.sensor_templates().list()
    + speos.client.source_templates().list()
    + speos.client.intensity_templates().list()
    + speos.client.spectrums().list()
    + speos.client.vop_templates().list()
    + speos.client.sop_templates().list()
    + speos.client.parts().list()
    + speos.client.bodies().list()
    + speos.client.faces().list()
):
    item.delete()