-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example showing usage of resource from an external ROS package in Drake #194
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# -*- mode: cmake -*- | ||
# vi: set ft=cmake : | ||
|
||
# Copyright (c) 2020, Massachusetts Institute of Technology. | ||
# All rights reserved. | ||
# | ||
# Redistribution and use in source and binary forms, with or without | ||
# modification, are permitted provided that the following conditions are met: | ||
# | ||
# * Redistributions of source code must retain the above copyright notice, this | ||
# list of conditions and the following disclaimer. | ||
# | ||
# * Redistributions in binary form must reproduce the above copyright notice, | ||
# this list of conditions and the following disclaimer in the documentation | ||
# and/or other materials provided with the distribution. | ||
# | ||
# * Neither the name of the copyright holder nor the names of its contributors | ||
# may be used to endorse or promote products derived from this software | ||
# without specific prior written permission. | ||
# | ||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE | ||
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | ||
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | ||
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
# POSSIBILITY OF SUCH DAMAGE. | ||
|
||
cmake_minimum_required(VERSION 3.10) | ||
project(drake_example_pendulum) | ||
|
||
set(CMAKE_CXX_EXTENSIONS OFF) | ||
set(CMAKE_CXX_STANDARD 17) | ||
set(CMAKE_CXX_STANDARD_REQUIRED ON) | ||
|
||
find_package(ament_cmake CONFIG REQUIRED) | ||
find_package(drake CONFIG REQUIRED PATHS /opt/drake) | ||
|
||
add_executable(${PROJECT_NAME} | ||
src/drake_example_pendulum.cc | ||
) | ||
|
||
target_link_libraries(${PROJECT_NAME} drake::drake) | ||
|
||
install(FILES LICENSE | ||
DESTINATION share/doc/${PROJECT_NAME} | ||
) | ||
|
||
install(TARGETS ${PROJECT_NAME} | ||
RUNTIME DESTINATION bin | ||
) | ||
|
||
ament_package() |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
Copyright (c) 2020, Massachusetts Institute of Technology. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 2021 |
||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
||
* Redistributions of source code must retain the above copyright notice, this | ||
list of conditions and the following disclaimer. | ||
|
||
* Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
|
||
* Neither the name of the copyright holder nor the names of its | ||
contributors may be used to endorse or promote products derived from | ||
this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | ||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0"?> | ||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>drake_example_pendulum</name> | ||
<version>0.1.0</version> | ||
<description>Ament CMake project with an installed Drake</description> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can this be more specific? |
||
<maintainer email="[email protected]">Addisu Z. Taddese</maintainer> | ||
<license>BSD</license> | ||
<url type="website">https://drake.mit.edu</url> | ||
<url type="bugtracker">https://github.com/RobotLocomotion/drake-external-examples/issues</url> | ||
<url type="repository">https://github.com/RobotLocomotion/drake-external-examples</url> | ||
<buildtool_depend>ament_cmake</buildtool_depend> | ||
<exec_depend>drake_example_pendulum_description</exec_depend> | ||
<export> | ||
<build_type>ament_cmake</build_type> | ||
</export> | ||
</package> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
/***************************************************************************** | ||
* Copyright (c) 2017-2021, Massachusetts Institute of Technology. | ||
* All rights reserved. | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions are met: | ||
* | ||
* * Redistributions of source code must retain the above copyright notice, | ||
* this list of conditions and the following disclaimer. | ||
* | ||
* * Redistributions in binary form must reproduce the above copyright notice, | ||
* this list of conditions and the following disclaimer in the documentation | ||
* and/or other materials provided with the distribution. | ||
* | ||
* * Neither the name of the copyright holder nor the names of its contributors | ||
* may be used to endorse or promote products derived from this software | ||
* without specific prior written permission. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE | ||
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | ||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | ||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
* POSSIBILITY OF SUCH DAMAGE. | ||
*****************************************************************************/ | ||
|
||
#include <iostream> | ||
|
||
#include <drake/geometry/drake_visualizer.h> | ||
#include <drake/multibody/parsing/parser.h> | ||
#include <drake/multibody/plant/multibody_plant.h> | ||
#include <drake/multibody/tree/revolute_joint.h> | ||
#include <drake/systems/analysis/simulator.h> | ||
#include <drake/systems/framework/diagram_builder.h> | ||
|
||
int main(int argc, char** argv) { | ||
drake::systems::DiagramBuilder<double> builder; | ||
auto [pendulum_plant, scene_graph] = | ||
drake::multibody::AddMultibodyPlantSceneGraph(&builder, 0.0); | ||
auto parser = drake::multibody::Parser(&pendulum_plant, &scene_graph); | ||
|
||
// Populate from AMENT_PREFIX_PATH environment variable to find URDF files and | ||
// their resources, such as meshes | ||
parser.package_map().PopulateFromEnvironment("AMENT_PREFIX_PATH"); | ||
const std::string pendulum_desc_package = | ||
"drake_example_pendulum_description"; | ||
|
||
if (!parser.package_map().Contains(pendulum_desc_package)) | ||
{ | ||
std::cerr << "The package: '" << pendulum_desc_package | ||
<< "' could not be found. Have you sourced your work space?" | ||
<< std::endl; | ||
return -1; | ||
} | ||
|
||
const std::string package_path = | ||
parser.package_map().GetPath(pendulum_desc_package); | ||
auto model_instance = parser.AddModelFromFile( | ||
package_path + "/urdf/drake_example_pendulum.urdf"); | ||
|
||
const auto& base_link = | ||
pendulum_plant.GetFrameByName("base_link", model_instance); | ||
// Weld the base_link to the world so the pendulum doesn't fall forever. | ||
pendulum_plant.WeldFrames(pendulum_plant.world_frame(), base_link, {}); | ||
|
||
pendulum_plant.Finalize(); | ||
|
||
// The following line can be commented out if Drake visualizer is not needed. | ||
drake::geometry::DrakeVisualizer::AddToBuilder(&builder, scene_graph); | ||
|
||
auto diagram = builder.Build(); | ||
|
||
drake::systems::Simulator<double> simulator(*diagram); | ||
simulator.set_target_realtime_rate(1.0); | ||
|
||
drake::systems::Context<double>& pendulum_context = | ||
diagram->GetMutableSubsystemContext(pendulum_plant, | ||
&simulator.get_mutable_context()); | ||
|
||
drake::VectorX<double> joint_position(1); | ||
joint_position << 0.5; | ||
pendulum_plant.SetPositions(&pendulum_context, joint_position); | ||
|
||
simulator.set_monitor([&pendulum = pendulum_plant](const auto& root_context) { | ||
auto &context = pendulum.GetMyContextFromRoot(root_context); | ||
std::cout << fmt::format("{:0.3f}: {}", context.get_time(), | ||
pendulum.GetPositions(context).transpose()) | ||
<< std::endl; | ||
return drake::systems::EventStatus::Succeeded(); | ||
}); | ||
|
||
simulator.AdvanceTo(10); | ||
return 0; | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
cmake_minimum_required(VERSION 3.5) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we stick with CMake 3.10 for consistency. And can you add the license block. |
||
project(drake_example_pendulum_description) | ||
|
||
find_package(ament_cmake REQUIRED) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
install(DIRECTORY urdf meshes | ||
DESTINATION share/${PROJECT_NAME}) | ||
|
||
ament_package() |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Blender MTL File: 'drake_base_link.blend' | ||
# Material Count: 2 | ||
|
||
newmtl Material.001 | ||
Ns 323.999994 | ||
Ka 1.000000 1.000000 1.000000 | ||
Kd 0.800000 0.000000 0.025331 | ||
Ks 0.500000 0.500000 0.500000 | ||
Ke 0.000000 0.000000 0.000000 | ||
Ni 1.000000 | ||
d 1.000000 | ||
illum 2 | ||
|
||
newmtl Material.002 | ||
Ns 323.999994 | ||
Ka 1.000000 1.000000 1.000000 | ||
Kd 0.100046 0.420499 0.800000 | ||
Ks 0.500000 0.500000 0.500000 | ||
Ke 0.000000 0.000000 0.000000 | ||
Ni 1.000000 | ||
d 1.000000 | ||
illum 2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
2021