You are right. Thanks for keeping me honest here.
The following is meant only to close the loop on switching between URDF and SDF inside ROS and Gazebo.
This discussion is primarily from the perspective of ROS, as it should be. From the Gazebo side, we have no plans on switching away from SDF. Thatās not to say we wouldnāt, but SDF is more than sufficient for Gazeboās needs.
SDF may not be the best solution for ROS. If not, Iām sure converters will be generated to make both systems work together. The transport systems are also incompatible, and everything still works.
Long story short, ROS should pick the format that is most ideal for their users, and Jonās suggestion of defining a set of specs sounds like a great idea. That may have been mentioned in a different thread.
Can you give an example of how this situation happens? It might be the missing piece of why Iām not seeing a problem with graphs and TF in practice.
There are two types of performances that can be effected. First if you end up with a deeper graph lookups will cost more. And secondly the accuracy can be significantly changed if you accumulate across a long chain of uncertain links when thereās a much more accurate traverse across a small number of fixed links. In that case you can loose many significant figures of accuracy.
Well Iād suggest considering a graph that is a circle. Naively I can cut it anywhere. If I cut it between A and B the accuracy of the transform from A to B goes from the accuracy of that one measurement, to the accuracy of the N measurements from the rest of the circle compounded. An example where the topology might change entirely is if my heuristic would change the root element.
An example of this would be might be if I had a 4 bar linkage with corners A, B, C and D. In the absence of other information arbitrarily corner A was selected as the root for the spanning tree initially. If my algorithm is picking the minimum spanning tree on the metric of spanning length. If I add a connection between any two other corners of the 4 bar linkage. Say corners B and C then the spanning calculation will want to choose the root to be either B and C since they have direct connections to all other nodes whereas A has to connect to B or C to get to D.
Computing a consistent spanning sets also requires full knowledge of the whole graph. One of the great things about trees in a distributed system is that as long as you have information about the part of the tree that you are on you do not need to know about other parts of the tree. If you compute the spanning tree of the graph based on partial knowledge you can easily get very different results. Thus if you rely on computing the spanning tree from the graph you are required to have a fully consistent state of the graph across all actors to get the same result.
I donāt know how to answer this. It really depends on your system. You can get errors which are the difference between a functional system and a non-functional system.
Making something up If you have a 512 count shaft encoder on a 1m lever arm, one tick of error can give 12mm of error. If you have two arms you could get to 24mm of error. If you traverse either of these encoders due to a non optimal tree you gain many orders of magnitude of error instead of the usual floating point rounding errors for a known fixed transform. This might happen for example in the above reconfiguration of the 4 bar linkage if you walk around the 4 bar linkage instead of taking the fixed transform between the two grounded corners.
If youāre doing symbolic math sure all spanning trees are equivalent. But this assumption breaks down in the presence of uncertainty.
Take the example of a simple triangle. If I measured the 3 angles and the leg lengths. The I drew each leg using the offset angle and the leg length sequentially I would not get back to exactly to the same position as the starting point. If the different angles are measured with different levels of uncertainty I would get different amounts of error depending on where I started to traverse the triangle and which direction I traversed. Since the data is redundant, if I skipped the least accurate measurement Iāll likely get the best result. If we have different levels of uncertainty in measurements the results can be notably different.
Clearly it would be possible to compute a better solution by taking advantage of the inside angles formula for the triangles and trying to estimate a better solution prior to trying to draw it. Then there would only be the inaccuracy of drawing it. But that requires me to know a lot more semantic information about the system including models of uncertainty to be able to solve for the converged solution. This is something that a simulator can take advantage of in itās physics solver since it knows about all the parameters of all the joints and the physics engine is designed to resolve these loop inconsistencies. However without full knowledge of the system, like a simulator has, this sort of problem cannot be resolved generically.
@tfoote Thanks for the elaboration. So far I have exactly the same understanding as you.
I feel a little more confident in saying:
It really feels like this is an imagined problem. As soon as you introduce the actual robot topologies that all current and most future users will have, and you add determinism created by the combination of any given loop detector code and any given description file (in which the joints will be processed in a known order and that order wonāt change on the time scale of an experiment or operations session) then there is not really any problem.
I agree, though āmany significant figuresā is a bit hand-wavy. So for all the robots, current and future, whatās the worst case depth? And if you support 95% of them, then whatās the worst depth? I donāt know all the robots, but I bet itās not that deep.
I think we are not talking about this type of error (call it measurement error?). Nor are we talking about the error created by a solver failing to converge. We are concerned only with the influence of where kinematic loops are broken on the numerical error accumulated by TF calculations.
Can anyone actually come up with a real scenario where a real problem occurs? Bonus points if the device/mechanism has been built. Temporarily off limits are very large reconfigurable systems (letās say >100 links) and tethered systems incorrectly modeled as rigid body approximations.
Itās would be a shame if you guys got hung up here (or wasted time on overly complex solutions) if there wasnāt really a problem.
@hauptmech measurement error accumulates based on the the choice of kinematic chain, so Iām not sure why you donāt think this example applies. There are a huge number of robots in the world that use ROS, and it is amazing how even the smallest software change upstream will break things for downstream users. Usually in ways you donāt even expect, but in this case we have an example of how we know things could be worse. But I do agree that this isnāt necessarily a show stopper. Adding one or more elements to allow specifying the spanning tree for TF to use could solve this.
@hauptmech measurement error accumulates based on the the choice of kinematic chain, so Iām not sure why you donāt think this example applies.
I could be wrong. Hereās my thinking.
TF only works with a tree topology. For a rigid body mechanism with a graph topology, TF can only ever be a reporter of transforms, it can never substitute as a model for the mechanism itself. The model of the mechanism with itās kinematic loops and the solvers used to work with that mechanism will be somewhere else. Measurements will feed into the solvers which will work with the graph and any minimization of how measurement error propagates through will be up to the solvers. After any sub-phase of calculations, some chunk of code will take the best estimate of the current state of the frames and copy them into the TF.
Thus TF is not dealing with any measurement error in a parallel system.
Am I missing something?
Ah, I see what you mean. In the case where the entire loop is solved for by one solver and the transforms are then published to TF, youāre right. In most robots that Iāve dealt with, however, there are many nodes publishing transforms for different sets of joints, and the job of stringing together a chain of transforms is done by TF in the client (or the buffer_server if youāre using that in TF2). In that case, when presented with transforms for a loop/cycle of joints and links, if TF is queried for a transform that has multiple hops, it has to choose how to traverse the graph and accumulate transform. If different joints have different encoders (or the same encoders but different errors because the encoders are on the motors and the gear ratios to the joints are different) the overall error will depend on the path TF chooses to traverse the graph.
Using a dedicated solver node that handles loops in a smart way will be something some users will want to setup, but being able to just tell TF āuse this spanning tree, and add it up for meā would also be something that Iād want.
Sorry, I completely skipped a step in my example. Various nodes publish various subsets of joints, but the transforms are (on many robots) all published by the robot_state_publisher. It reads the URDF and the joint_states topic, and computes the transforms. But since robot_state publisher doesnāt know anything about which encoders are best, and since it isnāt doing any fancy optimization, it just recursively computes the transforms out through the tree defined by the URDF. It is the robot_state_publisher which needs to know how to resolve cycles, unless you want to run a separate node that does the transform computation for all joints involved in the cycle. This is where I think it would be good to have the option to specify the spanning tree explicitly.
COLLADA - Is there anyone that has had success with this format in a robotics context? Anything beyond storing meshes?
The pro Iāve seen for Collada is that itās a standard that belongs to a bigger, external community.
I keep seeing Collada get mentioned but then not receive more support. It may be worth detailing why itās not a good choice so that it stays buried.
Iām not seeing Sachinās page in the links above; so here it is http://sachinchitta.github.io/urdf2/
OpenRAVE uses COLLADA extensively, and there are converters between URDF and COLLADA.
Does anyone know of any real-world hand creation/editing of COLLADA files? Or is it for all practical purposes a machine format? In which case the use of openrave xml, rather than COLLADA, is what we are really talking about.
I tried crafting a simple single face mesh for unit tests. It was pretty harrowing, and finally I resorted to exporting one from Blender and simplifying the result instead. It is not a very friendly format for hand-editing in my opinion.
/edit: Note that that I was trying to hand-craft a mesh which isnāt reasonable anyway. It may be that describing kinematic structures (lets not say chains) is much more human friendly.
In order to use SDF in ROS, there needs to be a way to do tf with graph (rather than tree) based kinematics, i.e. how to handle multi-parent reference frames with tf
I am new to this and I want to know more about this. I currently have a SDF model with one parent having multiple child. I am not sure whether I will still face this problem. Please let me know.
Also, please let me know. How to convert a XACRO file to SDF. Can I convert it in a loseless way ?
@Vignesh_Balaji this thread is almost eight years old. Please do not re-open threads that have been inactive that long.
There is a similar discussion here. Specific ROS questions should be directed to robotics.stackexchange.com.