Search found 814 matches
- Tue Aug 15, 2023 8:37 am
- Forum: Simbody: SimTK multibody dynamics API
- Topic: Unstable equilibria
- Replies: 3
- Views: 1798
Re: Unstable equilibria
Thanks for your kind remarks -- I'm glad you're finding Simbody useful. Yes, minimizing PE only finds stable equilibria. You should be able to find everything you need in SimbodyMatterSubsystem . For example you can calculate accelerations udot directly with calcAccelerations() and you can convert t...
- Sun May 28, 2023 10:20 am
- Forum: Simbody: SimTK multibody dynamics API
- Topic: Drone
- Replies: 1
- Views: 1566
Re: Drone
Yes, a Free (6dof) joint for the body and Pin (1dof revolute) joints for the propellers.
- Thu Apr 20, 2023 10:39 am
- Forum: Simbody: SimTK multibody dynamics API
- Topic: Ragdolls
- Replies: 2
- Views: 1357
Re: Ragdolls
Hi, Nat. There is one ragdoll among the Simbody examples that I know of. It's called "Gazebo2Simbody" and is mostly about reading .sdf files. But the .sdf it reads by default is a ragdoll -- you can run it and see the ragdoll fall down.
Regards,
Sherm
Regards,
Sherm
- Fri Feb 24, 2023 11:53 am
- Forum: Simbody: SimTK multibody dynamics API
- Topic: Running Simbody on Apple Silicon
- Replies: 3
- Views: 2064
Re: Running Simbody on Apple Silicon
Definitely possible since we don't currently build Simbody on arm64 Macs in CI. If you have access to one and are able to find the problem we would welcome a pull request so others can benefit!
- Tue Feb 21, 2023 5:05 pm
- Forum: Simbody: SimTK multibody dynamics API
- Topic: Running Simbody on Apple Silicon
- Replies: 3
- Views: 2064
Re: Running Simbody on Apple Silicon
Possible workaround: grab the latest Simbody source from GitHub and build it locally.
- Thu Jan 26, 2023 10:12 am
- Forum: Simbody: SimTK multibody dynamics API
- Topic: time derivative of the ball constraint
- Replies: 5
- Views: 6064
Re: time derivative of the ball constraint
Agreed, there is no one-size-fits-all perfect solution. In Simbody I biased my choices to modeling some physical system at all times. That allows validation based on physical laws like f=ma, conservation of energy, etc. A comment on finding feasible solutions: Simbody has an Assembler study for find...
- Wed Jan 25, 2023 12:42 pm
- Forum: Simbody: SimTK multibody dynamics API
- Topic: time derivative of the ball constraint
- Replies: 5
- Views: 6064
Re: time derivative of the ball constraint
Another good question, thanks Kaiwen. I had to think about this one for a while since it has been a long time! This comes from Simbody's definition of the position constraint matrix P, based on the intended use in computation. You can see the definition in Doxygen here (scroll down to "Theory discus...
- Tue Jan 24, 2023 11:21 pm
- Forum: Simbody: SimTK multibody dynamics API
- Topic: time derivative of the ball constraint
- Replies: 5
- Views: 6064
Re: time derivative of the ball constraint
Thanks for this great question, Kaiwen. Here is our thinking behind this constraint: Simbody constraints always model some physically-possible system, always assuming that the position and velocity constraints can't be exactly satisfied (they never are in practice). It is easiest to think of this by...
- Mon Dec 05, 2022 11:41 am
- Forum: Simbody: SimTK multibody dynamics API
- Topic: Few Question regarding setting initial angular velocity to body?
- Replies: 6
- Views: 4102
Re: Few Question regarding setting initial angular velocity to body?
Hi, Harshal. Simbody is not doing anything. The user applied an angular velocity to one body in the assembly of two bodies (a cylinder and a brick). Every point of both bodies that is not aligned with the angular velocity vector will have a translational velocity also (think of a spinning propeller ...
- Mon Dec 05, 2022 11:28 am
- Forum: Simbody: SimTK multibody dynamics API
- Topic: Code is not running due to inertia values
- Replies: 5
- Views: 3552
Re: Code is not running due to inertia values
You're welcome!