BaseSimulation#

class ansys.speos.core.simulation.BaseSimulation(project, name, description='', metadata=None, simulation_instance=None)#

Super Class for all simulations.

Parameters:
projectansys.speos.core.project.Project

Project in which simulation shall be created.

namestr

Name of the simulation.

descriptionstr

Description of the Simulation. By default, "".

metadataOptional[Mapping[str, str]]

Metadata of the feature. By default, {}.

simulation_instanceansys.api.speos.scene.v2.scene_pb2.Scene.SimulationInstance, optional

Simulation instance to provide if the feature does not have to be created from scratch By default, None, means that the feature is created from scratch by default.

Parameters:
  • project (BaseSimulation.__init__.project)

  • name (str)

  • description (str)

  • metadata (Optional[Mapping[str, str]])

  • simulation_instance (Optional[ansys.speos.core.kernel.scene.ProtoScene.SimulationInstance])

Notes

This is a Super class, Do not instantiate this class yourself

Overview#

set_sensor_paths

Set the sensors that the simulation will take into account.

set_source_paths

Set the sources that the simulation will take into account.

compute_CPU

Compute the simulation on CPU.

compute_GPU

Compute the simulation on GPU.

get

Get dictionary corresponding to the project - read only.

commit

Save feature: send the local data to the speos server database.

reset

Reset feature: override local data by the one from the speos server database.

delete

Delete feature: delete data from the speos server database.

simulation_template_link

Link object for the simulation template in database.

job_link

Link object for the job in database.

result_list

List of results created after a simulation compute.

__str__

Return the string representation of the simulation.

Import detail#

from ansys.speos.core.simulation import BaseSimulation

Attribute detail#

Link object for the simulation template in database.

Link object for the job in database.

BaseSimulation.result_list = []#

List of results created after a simulation compute.

Method detail#

BaseSimulation.set_sensor_paths(sensor_paths)#

Set the sensors that the simulation will take into account.

Parameters:
sensor_pathsList[str]

The sensor paths.

Returns:
ansys.speos.core.simulation.BaseSimulation

Simulation feature.

BaseSimulation.set_source_paths(source_paths)#

Set the sources that the simulation will take into account.

Parameters:
source_pathsList[str]

The source paths.

Returns:
ansys.speos.core.simulation.BaseSimulation

Simulation feature.

BaseSimulation.compute_CPU(threads_number=None)#

Compute the simulation on CPU.

Parameters:
threads_numberint, optional

The number of threads used. By default, None, means the number of processor available.

Returns:
List[ansys.api.speos.job.v2.job_pb2.Result]

List of simulation results.

BaseSimulation.compute_GPU()#

Compute the simulation on GPU.

Returns:
List[ansys.api.speos.job.v2.job_pb2.Result]

List of simulation results.

BaseSimulation.get(key='')#

Get dictionary corresponding to the project - read only.

Parameters:
key: str
Returns:
str | dict

Dictionary of Simulation Feature

BaseSimulation.__str__()#

Return the string representation of the simulation.

BaseSimulation.commit()#

Save feature: send the local data to the speos server database.

Returns:
ansys.speos.core.simulation.BaseSimulation

Simulation feature.

BaseSimulation.reset()#

Reset feature: override local data by the one from the speos server database.

Returns:
ansys.speos.core.simulation.BaseSimulation

Simulation feature.

BaseSimulation.delete()#

Delete feature: delete data from the speos server database.

The local data are still available

Returns:
ansys.speos.core.simulation.BaseSimulation

Simulation feature.

Classes#

Weight

The Weight represents the ray energy.