SpeosClient#

class ansys.speos.core.kernel.client.SpeosClient(host=DEFAULT_HOST, port=DEFAULT_PORT, channel=None, remote_instance=None, timeout=60, logging_level=logging.INFO, logging_file=None)#

Wraps a speos gRPC connection.

Parameters:
hoststr, optional

Host where the server is running. By default, DEFAULT_HOST.

portUnion[str, int], optional

Port number where the server is running. By default, DEFAULT_PORT.

channelChannel, optional

gRPC channel for server communication. By default, None.

remote_instanceansys.platform.instancemanagement.Instance

The corresponding remote instance when the Speos Service is launched through PyPIM. This instance will be deleted when calling SpeosClient.close.

timeoutReal, optional

Timeout in seconds to achieve the connection. By default, 60 seconds.

logging_levelint, optional

The logging level to be applied to the client. By default, INFO.

logging_fileOptional[str, Path]

The file to output the log, if requested. By default, None.

Parameters:

Overview#

target

Get the target of the channel.

faces

Get face database access.

bodies

Get body database access.

parts

Get part database access.

sop_templates

Get sop template database access.

vop_templates

Get vop template database access.

spectrums

Get spectrum database access.

intensity_templates

Get intensity template database access.

source_templates

Get source template database access.

sensor_templates

Get sensor template database access.

simulation_templates

Get simulation template database access.

scenes

Get scene database access.

jobs

Get job database access.

get_items

Get items from keys.

close

Close the channel.

channel

The gRPC channel of this client.

log

The specific instance logger.

healthy

Return if the client channel if healthy.

__getitem__

Get item from key.

__repr__

Represent the client as a string.

Import detail#

from ansys.speos.core.kernel.client import SpeosClient

Property detail#

property SpeosClient.channel: grpc.Channel#

The gRPC channel of this client.

property SpeosClient.log: ansys.speos.core.logger.PySpeosCustomAdapter#

The specific instance logger.

property SpeosClient.healthy: bool#

Return if the client channel if healthy.

Method detail#

SpeosClient.target()#

Get the target of the channel.

SpeosClient.faces()#

Get face database access.

SpeosClient.bodies()#

Get body database access.

SpeosClient.parts()#

Get part database access.

SpeosClient.sop_templates()#

Get sop template database access.

SpeosClient.vop_templates()#

Get vop template database access.

SpeosClient.spectrums()#

Get spectrum database access.

SpeosClient.intensity_templates()#

Get intensity template database access.

SpeosClient.source_templates()#

Get source template database access.

SpeosClient.sensor_templates()#

Get sensor template database access.

SpeosClient.simulation_templates()#

Get simulation template database access.

SpeosClient.scenes()#

Get scene database access.

SpeosClient.jobs()#

Get job database access.

SpeosClient.__getitem__(key)#

Get item from key.

Parameters:
keystr

Key of the item (also named guid).

Returns:
Union[ansys.speos.core.kernel.sop_template.SOPTemplateLink, ansys.speos.core.kernel.vop_template.VOPTemplateLink, ansys.speos.core.kernel.spectrum.SpectrumLink, ansys.speos.core.kernel.intensity_template.IntensityTemplateLink, ansys.speos.core.kernel.source_template.SourceTemplateLink, ansys.speos.core.kernel.sensor_template.SensorTemplateLink, ansys.speos.core.kernel.simulation_template.SimulationTemplateLink, ansys.speos.core.kernel.scene.SceneLink, ansys.speos.core.kernel.job.JobLink, ansys.speos.core.kernel.part.PartLink, ansys.speos.core.kernel.body.BodyLink, ansys.speos.core.kernel.face.FaceLink, None]

Link object corresponding to the key - None if no objects corresponds to the key.

SpeosClient.get_items(keys, item_type)#

Get items from keys.

Parameters:
keysList[str]

Keys of the items (also named guids).

item_typetype

Type of items expected

Returns:
Union[List[ansys.speos.core.kernel.sop_template.SOPTemplateLink], List[ansys.speos.core.kernel.vop_template.VOPTemplateLink], List[ansys.speos.core.kernel.spectrum.SpectrumLink], List[ansys.speos.core.kernel.intensity_template.IntensityTemplateLink], List[ansys.speos.core.kernel.source_template.SourceTemplateLink], List[ansys.speos.core.kernel.sensor_template.SensorTemplateLink], List[ansys.speos.core.kernel.simulation_template.SimulationTemplateLink], List[ansys.speos.core.kernel.scene.SceneLink], List[ansys.speos.core.kernel.job.JobLink], List[ansys.speos.core.kernel.part.PartLink], List[ansys.speos.core.kernel.body.BodyLink], List[ansys.speos.core.kernel.face.FaceLink]]

List of Link objects corresponding to the keys - Empty if no objects corresponds to the keys.

SpeosClient.__repr__()#

Represent the client as a string.

SpeosClient.close()#

Close the channel.

Notes

If an instance of the Speos Service was started using PyPIM, this instance will be deleted.