Breadcrumbs

get_temp_tool()

Features

Return the currently set temporal Tool information. To retrieve the safety Tool information, use the https://doosanrobotics-manual.atlassian.net/wiki/x/KITZIg command.

  • Safety Tool: Tool information configured using the data registered in the teach pendant. It is also used when resetting the temporal Tool with the https://doosanrobotics-manual.atlassian.net/wiki/x/WgD6Ig command.

  • Temporal Tool: Tool information used for robot control. It should be set as close as possible to the actual tool weight. If there is a significant difference, it may cause reduced position accuracy and malfunction of safety functions. When the temporal Tool is reset using the https://doosanrobotics-manual.atlassian.net/wiki/x/WgD6Ig command, it will revert to the currently set safety Tool.

Return

Value

Data Types

Description

ret

class.config_tool

Tool Setup Infomation

Class

class.config_tool

Field

Data Types

Description

obj

list

Object information for that class

weight

float

Tool Mass (kg)

xyz

float[3]

Center of gravity information (mm)

inertia

float[6]

Inertia Information (kg·mm2)

Example

Python
ret = get_temp_tool()
print(ret.weight)  # tool weight
print(ret.xyz)     # tool xyz
print(ret.inertia) # tool inertia