1

GitHub - skriegman/reconfigurable_organisms

 4 years ago
source link: https://github.com/skriegman/reconfigurable_organisms
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

README.md

Installation

The first step is to install Anaconda as your python 2.7 distribution on a linux machine.

But revert Anaconda's networkx <2.0.

pip install networkx==1.11

Install Qt and QMake, specifically these packages: "libqt4-dev", "qt4-qmake", "libqwt-dev", "freeglut3-dev" and "zlib1g-dev".

sudo apt-get install libqt4-dev qt4-qmake libqwt-dev freeglut3-dev zlib1g-dev

Install git.

sudo apt-get install git

Navigate to the working directory (e.g., your home).

cd ~

Clone the repo.

git clone https://github.com/skriegman/reconfigurable_organisms.git

Navigate to the _voxcad directory.

cd reconfigurable_organisms/_voxcad/

Compile both VoxCad (GUI) and Voxelyze (physics engine).

./rebuild_everything.sh

If you happen to modify VoxCad or Voxelyze in the future, call the same script to clean and recompile everything.

make

Install the voxelyze library.

cd Voxelyze
make
make installusr
cd ../voxelyzeMain/
make

Navigate to the exp folder and run one of the .py experiments (detailed in the paper), which require two input args (seed and runtime), both of which can be set to 1 for now.

cd ../exp
PYTHONPATH=$HOME/reconfigurable_organisms/ $HOME/anaconda/bin/python Locomotion_pass2.py 1 1

This creates a directory (~/reconfigurable_organisms/run_1) to hold the results.

Output should appear in the console.

After the experiment runs for a few generations, the current shape/controller adaptation can be seen by opening one of the generated .vxa files within the VoxCAD GUI. A .vxa file is just an XML file representing a robot that can be simulated by VoxCad/Voxelyze.

Navigate to reconfigurable_organisms/_voxcad/release.

cd ../_voxcad/release

Open VoxCad.

./VoxCad

Then select the desired .vxa file from:

"File -> Import -> Simulation"

The .vxa files for the best performing individuals will be saved in:

reconfigurable_organisms/exp/run_1/bestSoFar/fitOnly.

Once the robot is loaded, you can start the physics simulation by clicking the Sandbox.png icon in the top bar ("Physics Sandbox").

A known issue with non-US machines

If the system's numeric locale differs from en_US.UTF-8, the atof function might read double and floating point values in the .vxa as integers.

This will cause the robot not to move, disappear, or just behave strangely when running a .vxa file in VoxCad.

To fix this issue, open the locale settings.

sudo gedit /etc/default/locale

Set LC_NUMERIC to en_US.UTF-8.

LC_NUMERIC="en_US.UTF-8"

Save, close the file, and reboot.

Documentation

Voxelyze documentation is available here.


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK