2020-07-05 12:12:48 -0600 | received badge | ● Taxonomist |
2017-11-19 02:15:10 -0600 | received badge | ● Famous Question (source) |
2017-11-19 02:15:10 -0600 | received badge | ● Notable Question (source) |
2017-11-13 20:47:17 -0600 | received badge | ● Popular Question (source) |
2017-11-12 08:23:51 -0600 | asked a question | integrate systemplugin with gazebo integrate systemplugin with gazebo Hello, I want to integrate a systemPlugin such as this: http://gazebosim.org/tutoria |
2016-09-21 16:30:11 -0600 | received badge | ● Famous Question (source) |
2016-09-04 05:49:59 -0600 | received badge | ● Commentator |
2016-09-04 05:49:59 -0600 | commented answer | Is there a book on gazebo? In addition to tutorials there are two good books: 'ROS BY EXAMPLE' vol.2 (vol.1 is good for turtlebot, but without gazebo) and 'Mastering ROS for Robotics Programming' |
2016-06-19 17:22:29 -0600 | received badge | ● Famous Question (source) |
2016-01-28 03:00:51 -0600 | received badge | ● Famous Question (source) |
2015-06-29 04:17:53 -0600 | received badge | ● Famous Question (source) |
2015-06-22 03:52:29 -0600 | received badge | ● Notable Question (source) |
2015-04-25 21:22:58 -0600 | received badge | ● Famous Question (source) |
2015-04-23 02:43:17 -0600 | received badge | ● Notable Question (source) |
2015-04-02 02:49:57 -0600 | received badge | ● Famous Question (source) |
2015-04-02 02:49:57 -0600 | received badge | ● Notable Question (source) |
2015-03-15 23:55:00 -0600 | received badge | ● Notable Question (source) |
2015-03-04 16:01:47 -0600 | commented question | Why setting the angular velocity changes the force of contact joint I read it from physics gztopic. What do you mean? |
2015-03-04 15:59:47 -0600 | asked a question | What does cx,cy,cz fields from an old version of gazebo mean? Hey All, I run into old xml file of box description. under inertia properties ixx,iyy and izz I saw another fields cx,cy,cz which I haven't met till now. Does sombody knows what this fields represent? Thanks in advance |
2015-03-04 09:29:30 -0600 | received badge | ● Notable Question (source) |
2015-02-03 04:48:09 -0600 | received badge | ● Notable Question (source) |
2015-01-07 10:19:52 -0600 | received badge | ● Popular Question (source) |
2015-01-07 08:36:03 -0600 | received badge | ● Popular Question (source) |
2015-01-02 11:11:30 -0600 | received badge | ● Student (source) |
2015-01-01 13:56:29 -0600 | asked a question | Why setting the angular velocity changes the force of contact joint Hey all, I created a cylinder (Wheel) on a ground plane. when the wheel was at rest the contact force was the weight of the wheel (~25.0 N). after I applied a constant angular velocity(linear is 0) by SetAngularVel(), the contact force on the wheel changed to be sinusoidal (from -25.0 to 25.0). Can somebody explain that? Thanks in advance |
2015-01-01 13:45:21 -0600 | received badge | ● Scholar (source) |
2014-12-29 02:35:00 -0600 | commented question | How to make the plugin publish a topic If you don't have a publisher in the topic, you must create one in the plugin code (not the sdf file). |
2014-12-29 02:34:59 -0600 | commented question | How to make the plugin publish a topic If you don't have a publisher in the topic, you must create one in the plugin code (not the sdf file). This is an example of the code you should add in the plugin: if (!ros::isInitialized()) { int argc = 0; char** argv = NULL; ros::init(argc, argv, "brixiusplugin", ros::initoptions::AnonymousName); } |
2014-12-26 09:54:14 -0600 | received badge | ● Popular Question (source) |
2014-12-25 11:41:04 -0600 | asked a question | body acceleration in contact between two bodies Hey, I am trying to simulate a wheel(cylinder) on a surface (ground_plane). I launch the gazebo with sdf file which contains both models and give it a 3 seconds to get rest with parameters Kp =380 and Kd=10. I can see the spring rest when I look at the output of position and velocities commands of z axis (GetWorldCoGPose() and GetWorldCoGLinearVel() gazebo API commands), but when I use GetWorldLinearAccel() command I get acceleration z value as zero although the wheel is moving. Sombody knows why? maybe the GetWorldLinearAccel() is not the right command? Thanks in advance |
2014-11-22 06:14:20 -0600 | commented question | Body falls through the object its placed on, if Kp and Kd parameters are varied. I see you managed to solve this problem. anyway the small Kd such as Kd=1 worked for me. |
2014-11-18 09:41:36 -0600 | received badge | ● Popular Question (source) |
2014-11-18 08:40:45 -0600 | commented question | Body falls through the object its placed on, if Kp and Kd parameters are varied. start from larger values for Kp like 10^7 (you can try even larger) and go lower till you will see a penetration. after that you can add a compatible Kd. |
2014-11-18 07:23:21 -0600 | commented question | Body falls through the object its placed on, if Kp and Kd parameters are varied. which Kp and Kd values do you use? t |
2014-10-28 08:46:40 -0600 | asked a question | how does the request<-->response work? Hi, I saw this command: boost::sharedptr<msgs::response> response = transport::request(getworld(), "world_sdf"); Can somebody explain how the request command works? Is there a list of requests that I can send? Thanks in advance, |
2014-10-27 07:41:34 -0600 | commented answer | how to "save world as" programatically with c++ and of course thanks a lot! |
2014-10-27 07:41:00 -0600 | commented answer | how to "save world as" programatically with c++ I have a question about the code. the "world_sdf" is the name of the request, correct? Is there a list of requests |
2014-10-27 07:40:59 -0600 | commented answer | how to "save world as" programatically with c++ I have a question about the code. the "world_sdf" is the name of the request, correct? Is there a list of requests |
2014-10-26 20:33:47 -0600 | received badge | ● Popular Question (source) |
2014-10-26 08:07:14 -0600 | asked a question | how to "save world as" programatically with c++ Hey, I want to be able to save the world several times during the simulation, programmatically in c++ gazebo plugin. I mean to get the same file as if I press "save world as" in the gazebo gui. thanks in advance, |
2014-10-26 08:01:13 -0600 | received badge | ● Popular Question (source) |
2014-08-30 09:42:04 -0600 | asked a question | how to get info from topic ~/physics/contacts from the world file Hey I created a world file that includes three blocks. I want to know the contact normals between them so I subscribed to ~/physics/contacts topic. On the start when I start the gazebo and echo the topic the topic doesn't show any contacts (publish empty messages) although I can see the blocks. the topic start publishing contact normals after I move the blocks or add another one. Does somebody know why is that happening and how I can fix that? Thanks in advance |
2014-08-11 03:12:08 -0600 | asked a question | gazebo wiki links problem Hey, gazebo wiki has a link problem. Almost all links are broken. Whats going on here? Thanks in advance. |