Real-world maze navigation with tracking and experimental data collection.
Required scripts and files are mostly contained within this directory, which is to be located at ~/ExperimentPlatform. Program expects ROS environment to be already set up at ~/catkin_ws.
Both platforms have been set up to automatically log in and connect to the Belkin router on startup, with the network name powerbot. The router reserves 192.168.0.2 for the older platform, and 192.168.0.3 for the newer platform. To control through VNC, use vnc://192.168.0.3::5900 in TightVNC Viewer on Windows. Headless access can be made through ssh sinapse@192.168.0.X from a lab workstation.
- In a terminal window, navigate to
ExperimentPlatformand runmapping_launch.sh
cd ~/ExperimentPlatform
bash mapping_launch.sh
- Navigate the environment slowly with the main joystick, monitoring the mapping on Rviz
- Once done, run the following in a new terminal, replacing <map_name> with a file name of your choice
rosrun map_server map_saver -f <map_name>
- A .pgm and .yaml file will be generated, transfer them to the
ExperimentPlatformfolder - Edit line 8 in
ros_launch.shto point to the new map OR rename new map to match the script
- In a terminal window, navigate to
ExperimentPlatformand run 'ros_launch.sh`, which sets up the required ROS services.
cd ~/ExperimentPlatform
bash ros_launch.sh
- Start up the iOS app Runner on the iPhone.
- In another terminal window, navigate to
ExperimentPlatformand runexp_launch.shto run required python scripts that control experiment behavior.
cd ~/ExperimentPlatform
bash exp_launch.sh
- In Rviz, get a good localization of the platform by using
Pto make a initial guess on position, and driving it around slightly - In the GUI window that pops up, Select the reward map under the
Reward Locationsdrop-down list - To modify the reward map, use the
Gkey in Rviz to redefine the 6 poster locations/directions (click and drag), with FIFO overriding - Load or modify other experiment settings, and save the settings if you wish
- Press
Start
Rviz will now display current goal. In the new window that pops up, you can monitor the experiment progress and intervene as required. To intervene, press P to toggle Pause behavior. Note that the experiment will only pause at the end of the current trial. Once end of trial is reached with the Pause option, use R to resume the experiment, or T followed by Y to terminate the entire experiment. Do NOT quit the experiment by any other method (eg. closing the window) as that will cause some ROS data to be recorded continuously. See below for remedy.
If the program exits ungracefully, open a new window and run
rosnode kill my_bag
rosnode kill my_bag2
At the end of all the trials, terminate the experiment with T Y. You can press Start again in the GUI to re-run the whole experiment from Trial 1.
Experimental data will be stored in a folder named as the current date. A brief explanation of what each file contains:
- eparams.pkl - pickled python dictionary that stores parameters defined in the GUI
- platformPositions.csv - pose data timestamped with psychopy clock [time, dim1, dim2, sum(covariance)]
- sessionTriggers.csv - trigger values, timestamped with psychopy clock
- rospose.csv - raw pose data from ROS with ROS timing
- posebag_???-??-??-??-??-??.bag - rosbag data file, parent of rospose.csv
- rostrig.csv - trigger values, with ROS timings
- pose_bag???-??-??-??-??-??.bag - rosbag data file, parent of rostrig.csv
Please refer to Developer's Guide for breakdown of how the python scripts interact. Possible features and suggestions will also be listed there.