All Projects → gramaziokohler → robotic_assembly_workshop

gramaziokohler / robotic_assembly_workshop

Licence: MIT License
Materials for the Robotic Assembly workshop using COMPAS framework

Programming Languages

Dockerfile
14818 projects
python
139335 projects - #7 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to robotic assembly workshop

wsdm-digg-2020
No description or website provided.
Stars: ✭ 15 (-16.67%)
Mutual labels:  workshop
workshop-init
워크숍 개발 환경 설정하기
Stars: ✭ 23 (+27.78%)
Mutual labels:  workshop
VFX-Essentials
VFX graph workshop in HDRP with samples
Stars: ✭ 122 (+577.78%)
Mutual labels:  workshop
fx-trading-app
Forex Trading Application workshop
Stars: ✭ 23 (+27.78%)
Mutual labels:  workshop
Not-a-Dog-Workshop
Workshop to build an automatic Not a Dog application , using the Serverless Azure Functions and Cognitive Services
Stars: ✭ 15 (-16.67%)
Mutual labels:  workshop
AzureFunctions-Workshop
Multi-language Azure Functions Workshop
Stars: ✭ 20 (+11.11%)
Mutual labels:  workshop
Machine-Learning-in-Python-Workshop
My workshop on machine learning using python language to implement different algorithms
Stars: ✭ 89 (+394.44%)
Mutual labels:  workshop
react-query-blog-demo
An example repo I used to teach a React Query workshop
Stars: ✭ 82 (+355.56%)
Mutual labels:  workshop
DscWorkshop
Blueprint for a full featured DSC project for Push / Pull with or without CI/CD
Stars: ✭ 151 (+738.89%)
Mutual labels:  workshop
amsterdamjs-clojurescript-workshop
Educational materials for ClojureScript workshop @ AmsterdamJS '18
Stars: ✭ 28 (+55.56%)
Mutual labels:  workshop
godge
Godge is a self-hosted container-based online judge for meetups and workshops.
Stars: ✭ 13 (-27.78%)
Mutual labels:  workshop
CFP
Repositório para sugestões de palestras, workshops e outras atividades da comunidade PHPRio
Stars: ✭ 39 (+116.67%)
Mutual labels:  workshop
JavaFXWorkshop
Code and a handout for a JavaFX workshop
Stars: ✭ 24 (+33.33%)
Mutual labels:  workshop
angular2-labb
Angular 2 workshop
Stars: ✭ 20 (+11.11%)
Mutual labels:  workshop
gSynch
gSynch allows you to synchronise your Git repository with your Steam Workshop publication in few clicks.
Stars: ✭ 28 (+55.56%)
Mutual labels:  workshop
Bot-Framework-Tutorial
Microsoft Bot Framework Hands on Lab Tutorial
Stars: ✭ 23 (+27.78%)
Mutual labels:  workshop
spring-cloud-gcp-guestbook
No description or website provided.
Stars: ✭ 55 (+205.56%)
Mutual labels:  workshop
workshop-css-grid
Workshop made for freecodecamp meetup
Stars: ✭ 12 (-33.33%)
Mutual labels:  workshop
ML-CM-2019
Machine Learning in Condensed Matter Physics 2019 course repository
Stars: ✭ 51 (+183.33%)
Mutual labels:  workshop
ws-ldn-12
ARM / STM32F7 DIY synth workshop
Stars: ✭ 62 (+244.44%)
Mutual labels:  workshop

Quick links: compas docs | compas_assembly docs | compas_fab docs | slides | system overview | troubleshooting

Progress: 0. requirements | 1. installation | 2. editor setup | 3. create assembly | 4. robotic planning | 5. robotic execution

Workshop: Robotic Assembly with COMPAS framework

Materials for the Robotic Assembly workshop using COMPAS framework

During this workshop, we will design an assembly of bricks, represented by a custom data structure, evaluate its stability and stability of the incomplete assembly at various stages of the assembly process, and plan the assembly process using a robotic arm.

Requirements

Note: if you get an error, scroll down to the Troubleshooting section.

(1): Windows 10 Home does not support running Docker.

Rhino 5.0

The focus of the workshop will be on Rhino 6.0 only. While most things will work on Rhino 5.0, it is not recommended as there are several manual steps required to get the software to run.

However, if you do use Rhino 5.0, make sure to install the following:

Getting started

Progress

We will install all the required COMPAS packages using Anaconda. Anaconda uses environments to create isolated spaces for projects' depedencies, it is recommendable that you do all the exercises in a newly created environment.

First, clone this repository. You have two options:

1. Using a visual client (e.g. SourceTree) Open your GIT visual client (e.g. SourceTree), and clone the repository (on SourceTree, `File -> Clone / New`) and enter the following URL and the destination folder:
  https://github.com/gramaziokohler/robotic_assembly_workshop.git
2. Using git command line client Start your Anaconda Prompt, go to the destination folder where you wish to place all the workshop material and run:
  git clone https://github.com/gramaziokohler/robotic_assembly_workshop.git

Now, we can create the environment and install all packages. Start your Anaconda Prompt (run as administrator), go to the repository folder you just cloned, and run:

  conda env create -f workshop.yml -n workshop
  conda activate workshop
Not working?

Make sure you really changed into the repository folder. For example, if you cloned the repository into a folder called Code in your home directory, you should type:

On Mac

  cd ~/Code/robotic_assembly_workshop

On Windows

  cd %USERPROFILE%\Code\robotic_assembly_workshop

If the command fails because you already have an environment with the same name, choose a different one, or remove the old one before creating the new one:

  conda remove -n workshop --all

Great! Now type python in your Anaconda Prompt, and test if the installation went well:

  >>> import compas
  >>> import compas_fab
  >>> import compas_assembly

If that doesn't fail, you're good to go! Exit the python interpreter (either typing exit() or pressing CTRL+Z followed by Enter).

Now let's make all the installed packages available inside Rhino. Still from the Anaconda Prompt, type the following:

  python -m compas_rhino.install -v 6.0 -p compas compas_ghpython compas_rhino compas_assembly compas_fab roslibpy

Congrats! 🎉 You are all set! Open Rhino and try to import compas to verify everything is working fine.

NOTE: If the previous command throws an error, make sure you run the Anaconda Prompt as an Administrator.

Setting up your development environment

Progress

You can use any development environment that you're comfortable with, but for this workshop, we suggest using VS Code, since it provides very deep integration with Anaconda, Docker, Python debugging and many other niceties.

  • Install VS Code and open it
  • Go to Extensions and install:
    • Python (official extension)
    • EditorConfig for VS Code (optional)
    • Docker (official extension, optional)
  • Run your first example:
    • Open the folder where you cloned this repository with VS Code (right-click the folder from Explorer -> Open with Code)
    • Open the Hello COMPAS example script
    • On the bottom left status bar, make sure you select the python interpreter to use. The list will contain Anaconda environments, select the one created above: workshop.
    • Press F5 to run it.

Exercises

By now, you should be up and running and ready to start playing with compas, compas_assembly and compas_fab!

Create an Assembly - Brick wall

Progress

Basic setup

  • Generate an assembly for a brick wall (script | plot)
  • Add assembly support plate (script | plot)
  • Identify interfaces of the assembly (script | plot)
  • Identify the courses of the assembly (script | plot)

Examples of useful functions for robotic assembly

  • Compute the building sequence for a selected brick (plot | iplot | rhino)
  • Compute the equilibrium of the building sequence (script | rhino)
  • Compute the hull of the building sequence (rhino)

Planning robotic fabrication of assembly

Progress

NOTE: These examples need ROS with the ABB linear axis loaded:

  1. Make sure your X0.hosts files is configured with your current IP address (scroll down to troubleshooting for more details).
  2. Start your X11 server (XMing on Windows, XQuartz on Mac).
  3. Run docker-compose to start the ROS ABB Linear Axis system (need help?).
  • Load ABB linear axis model (script)
  • Transform assembly to work station (script)
  • Search buildable bricks within robot's reach (script | exercise)
  • Generate paths for brick building sequence (script | exercise)

Executing robotic fabrication

Progress

NOTE: These examples need ROS with an ABB linear axis loaded and a real or simulated (via RobotStudio) ABB controller:

  1. Configure the ROBOT_IP environment variable to point to your controller.
  2. Run the RobotStudio station and start all tasks.
  3. Run docker-compose to start the ROS Real ABB Linear Axis system (need help?).
  • Execute paths for brick assembly (script)
  • Full example of planning + execution using Grasshopper (grasshopper)

Did you finish up all exercises up to here? Awesome!! Have a cookie 🍪!

Additional examples

The following is a list of additional example code to complement the exercises above:

  • Assembly - Stack:
    • Generate a stack (script)
    • Identify interfaces of a stack (script)
    • Compute contact forces required for static equilibrium of an assembly (script)
    • Draw stack in Rhino (rhino)
  • Robotic fundamentals:
    • Frame orientation specs (script)
    • Expressing frames in different coordinate systems (script)
    • Create a robot model programmatically (script)
    • Load robot model from URDF (script)
    • Create a robot artist for rhino (rhino)
    • Load complete robot (script | exercise)
    • Represent robot configurations / joint state (script)
  • Using ROS:

    NOTE: These examples need ROS:

    1. Run docker-compose to start the ROS Basic system (need help?).
  • Planning with robots:

    NOTE: These examples need ROS with a UR5 model loaded:

    1. Make sure your X0.hosts files is configured with your current IP address (scroll down to troubleshooting for more details).
    2. Start your X11 server (XMing on Windows, XQuartz on Mac).
    3. Run docker-compose to start the ROS UR5 system (need help?).
    • Calculate forward kinematics (script)
    • Calculate inverse kinematics (script)
    • Calculate cartesian path (script)
    • Calculate kinematic path (script)
    • Add collision object attached to the robot (script)
    • Add collision object to a scene (script)
    • Calculate kinematic path with attached collision object (script)

System overview

Environments? Containers? Processes? Confused? 😵 What is connected to what and how?

The following diagram shows how the different parts are interconnected and which one calls which other:

System overview


Troubleshooting

Sometimes things don't go as expected. Here are some of answers to the most common issues you might bump into:

Q: Docker does not start. It complains virtualization not enabled in BIOS.

This is vendor specific, depending on the manufacturer of your computer, there are different ways to fix this, but usually, pressing a key (usually F2 for Lenovo) before Windows even start will take you to the BIOS of your machine. In there, you will find a Virtualization tab where this feature can be enabled.

Q: Cannot start containers, nor do anything with Docker. Error message indicates docker daemon not accessible or no response.

Make sure docker is running. Especially after a fresh install, docker does not start immediately. Go to the start menu, and start Docker for Windows.

Q: conda commands don't work.

Try running them from the Conda Prompt. Depending on how you installed Anaconda, it might not be available by default on the normal Windows command prompt.

Q: conda activate workshop fails

Make sure you have conda 4.6 or higher.

Q: When trying to install the framework in Rhino, it fails indicating the lib folder of IronPython does not exist.

Make sure you have opened Rhino 6 and Grasshopper at least once, so that it finishes setting up all its internal folder structure.

Q: It fails when trying to install on Rhino.

Try running the command prompt as administrator. Depending on the version of Python, it might be required or not.

Q: error: Microsoft Visual C++ 14.0 is required

Follow the link to install Microsoft Visual C++ 14.0 https://www.scivision.co/python-windows-visual-c++-14-required/

Q: When running conda install compas_fab, I get the error: cannot find Frame

You have already installed an older, pre-release version of COMPAS. Please remove it.

Q: When installing shapely, I get the error: HTTP 000 Connection Failed

Your environment has an outdated version of OpenSSL. Go to your root environment (i.e. run conda deactivate) and then run the same command to install shapely on the workshop's environment.

Q: Docker containers fail to open GUI tools

If you get errors like cannot open display or cannot acquire screen ... it means you have not configured the security of your X11 server correctly:

  • On Windows using XMing, make sure you add your IP Address to the file %ProgramFiles(x86)%\XMing\X0.hosts (needs to be opened as administrator)
  • On Mac using XQuartz, run xhost +local:root (and remember to disable later with xhost -local:root)

Remember to restart XMing/XQuartz after applying these changes.

Q: How do I set environment variables?

Using VS Code (also supported in some other editors), the easiest option is to place a file called .env in the root folder of your workspace (i.e. this repository) and enter the variables there, one variable per line, e.g. ROBOT_IP=10.0.75.1.

Q: Python crashes when i run a Plotter example

This may be related to the version of Matplotlib. For example, we have seen this problem on OSX with Matplotlib version 3+. Try downgrading to 2.1.0: conda install matplotlib=2.1.0. Make sure the correct environment is active...

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].