RobotModel
- class compas.robots.RobotModel(name=None, joints=(), links=(), materials=(), **kwargs)[source]
Bases:
Data
RobotModel is the root element of the model.
Instances of this class represent an entire robot as defined in an URDF structure.
In line with URDF limitations, only tree structures can be represented by this model, ruling out all parallel robots.
- Attributes
name (str) – Unique name of the robot.
joints (list[
compas.robots.Joint
]) – List of joint elements.links (list[
compas.robots.Link
]) – List of links of the robot.materials (list[
compas.robots.Material
]) – List of global materials.root (
compas.robots.Link
) – Root link of the model.attr (dict) – Non-standard attributes.
Methods
Adds a joint to the robot model.
Adds a link to the robot model.
Recursive function to calculate the transformations of each joint.
Check if geometry has been loaded.
Returns a list of all children joints of the link.
Returns the parent joint of the link or None if not found.
Calculate the robot's forward kinematic.
Construct a robot model from a URDF file model description.
Construct a robot model from a URDF description as string.
Returns the name of the base link.
Returns the configurable joint names.
Returns the configurable joints.
Returns the end effector link.
Returns the name of the end effector link.
Get a joint in a robot model matching by its name.
Returns the joint types of the configurable joints.
Get a list of joint types given a list of joint names.
Get a link in a robot model matching by its name.
Iterator over the chain of all elements between a pair of start and end elements.
Iterator over the chain of joints between a pair of start and end links.
Iterator over the joints that starts with the root link's children joints.
Iterator over the chain of links between a pair of start and end links.
Iterator over the links that starts with the root link.
Load external geometry resources, such as meshes.
Get a random configuration.
Removes a joint to the robot model.
Removes a link to the robot model.
Scales the robot by factor (absolute).
Construct a URDF file model description from a robot model.
Construct a URDF string model description from a robot model.
Returns the transformed axes based on the joint_state.
Returns the transformed frames based on the joint_state.
"Construct a UR5 robot model.
Get the zero joint configuration.
Inherited Methods
Make an independent copy of the data object.
Construct an object of this type from the provided data.
Construct an object from serialized data contained in a JSON file.
Construct an object from serialized data contained in a JSON string.
Convert an object to its native data representation.
Serialize the data representation of an object to a JSON file.
Serialize the data representation of an object to a JSON string.
Validate the object's data against its data schema.
Validate the object's data against its json schema.