BaseSimulation
#
- class ansys.speos.core.simulation.BaseSimulation(project, name, description='', metadata=None, simulation_instance=None)#
Super Class for all simulations.
- Parameters:
- project
ansys.speos.core.project.Project
Project in which simulation shall be created.
- name
str
Name of the simulation.
- description
str
Description of the Simulation. By default,
""
.- metadata
Optional
[Mapping
[str
,str
]] Metadata of the feature. By default,
{}
.- simulation_instance
ansys.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.
- project
- Parameters:
Notes
This is a Super class, Do not instantiate this class yourself
Overview#
Set the sensors that the simulation will take into account. |
|
Set the sources that the simulation will take into account. |
|
Compute the simulation on CPU. |
|
Compute the simulation on GPU. |
|
Get dictionary corresponding to the project - read only. |
|
Save feature: send the local data to the speos server database. |
|
Reset feature: override local data by the one from the speos server database. |
|
Delete feature: delete data from the speos server database. |
Link object for the simulation template in database. |
|
Link object for the job in database. |
|
List of results created after a simulation compute. |
Return the string representation of the simulation. |
Import detail#
from ansys.speos.core.simulation import BaseSimulation
Attribute detail#
- BaseSimulation.simulation_template_link = None#
Link object for the simulation template in database.
- BaseSimulation.job_link = None#
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_paths
List
[str
] The sensor paths.
- 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_paths
List
[str
] The source paths.
- source_paths
- Returns:
ansys.speos.core.simulation.BaseSimulation
Simulation feature.
- BaseSimulation.compute_CPU(threads_number=None)#
Compute the simulation on CPU.
- Parameters:
- threads_number
int
,optional
The number of threads used. By default,
None
, means the number of processor available.
- threads_number
- 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.
- 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#
The Weight represents the ray energy. |