Skip to main content

Bullet-based simulation for SoftBank Robotics' robots

Project description

qibullet Build Status pypi

Bullet-based python simulation for SoftBank Robotics' robots.

Installation

The following modules are required:

  • numpy
  • pybullet

The qibullet module can be installed via pip, for python 2.7 and python 3:

pip install --user qibullet

Usage

Please note that only the Pepper robot is currently handled by this module. A robot can be spawn via the SimulationManager class:

from qibullet import SimulationManager

if __name__ == "__main__":
    simulation_manager = SimulationManager()

    # Launch a simulation instances, with using a graphical interface.
    # Please note that only one graphical interface can be launched at a time
    client_id = simulation_manager.launchSimulation(gui=True)

    # Spawning a virtual Pepper robot, at the origin of the WORLD frame
    pepper = simulation_manager.spawnPepper(
        client_id,
        [0, 0, 0],
        [0, 0, 0, 1],
        spawn_ground_plane=True)

Or via the PepperVirtual class:

import time
import pybullet as p
import pybullet_data
from qibullet import PepperVirtual

if __name__ == "__main__":
    physicsClient = p.connect(p.GUI)
    p.configureDebugVisualizer(p.COV_ENABLE_RENDERING, 1)
    p.configureDebugVisualizer(p.COV_ENABLE_RGB_BUFFER_PREVIEW, 0)
    p.configureDebugVisualizer(p.COV_ENABLE_DEPTH_BUFFER_PREVIEW, 0)
    p.configureDebugVisualizer(p.COV_ENABLE_SEGMENTATION_MARK_PREVIEW, 0)

    p.setRealTimeSimulation(1)
    p.setGravity(0, 0, -9.81)

    p.setAdditionalSearchPath(pybullet_data.getDataPath())
    p.loadMJCF("mjcf/ground_plane.xml")

    pepper = PepperVirtual()
    pepper.loadRobot([0, 0, 0], [0, 0, 0, 1], physicsClientId=physicsClient)

More snippets can be found in the examples folder:

Documentation

The qibullet API documentation can be found here. The documentation can be generated via the following command (the epydoc Python package has to be installed beforehand, and the docs folder has to exist):

epydoc --html qibullet/ -o docs/api --name qibullet

Troubleshooting

OpenGL driver

If you encounter the message:

Workaround for some crash in the Intel OpenGL driver on Linux/Ubuntu

Your computer is using the Intel OpenGL driver. Go to Software & Updates, Additional Drivers, and select a driver corresponding to your GPU.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

qibullet-1.0.2.tar.gz (1.2 MB view details)

Uploaded Source

Built Distribution

qibullet-1.0.2-py3-none-any.whl (1.3 MB view details)

Uploaded Python 3

File details

Details for the file qibullet-1.0.2.tar.gz.

File metadata

  • Download URL: qibullet-1.0.2.tar.gz
  • Upload date:
  • Size: 1.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.7

File hashes

Hashes for qibullet-1.0.2.tar.gz
Algorithm Hash digest
SHA256 e4e9d9b70f842fa014d4d087c0324d7ced3feb033f77482aad0c25b72004ea2c
MD5 af07d46382cef35844a924cff308cb2e
BLAKE2b-256 3d2dd1bc84423d48cc3dd3ae565aaf14bec3ffb561d4dab9b13ac8fbe0704a87

See more details on using hashes here.

File details

Details for the file qibullet-1.0.2-py3-none-any.whl.

File metadata

  • Download URL: qibullet-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.7

File hashes

Hashes for qibullet-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 a4ca3be3304836920a453b2fe8bf411e36214791cad2b383bb33b1f5b1e18e83
MD5 1107124873544c61a810e3ded3f362be
BLAKE2b-256 75fb6c473bdd654511413ca0b503c37351121f3cbd85808363aa99374c5e7495

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page