PhysicsEngines

From OpenSimulator

Jump to: navigation, search

Contents

Introduction

Note: Much of this page was written in November 2009. The OpenDynamicsEngine OpenSimulator plugin is not currently under any significant active development as the BulletSim physics plugin will likely become the default in the next release of OpenSimulator. However, as of OpenSimulator 0.7.6, BulletSim is still considered experimental. -- Justincc 20:45, 19 November 2013 (UTC)

Note: BulletSim has become the default. Refer to the BulletSim pages for setup and operation -- Misterblue 17:54, 06 June 2014 (UTC)

The physics engines currently available for use in OpenSimulator are "basicphysics", "POS" and "OpenDynamicsEngine". As of OpenSimulator 0.6.9, the plugin "OpenDynamicsEngine" is the default and can be seen in the OpenSim.ini file.

ODE has received the bulk of testing. As of 2010 it supports collisions with all prims (cubes, spheres, cylinders etc) with any combination of distortions including hollow, taper, twist, path cut etc. In combination with Meshmerizer it also supports correctly colliding with sculpted prims.

ODE Plugin

In Linux you should consider using included shell script, opensim-ode.sh or type ulimit -s 262144 before running mono OpenSim.exe if you plan on having a large number of physics objects (each avatar is a physics object, as well as those which have the physics flag set on the simulator). The ulimit -s 262144 in Linux protects you against stack collisions and corrupted memory when there are a large amount of physical objects roaming around.

Currently, the ODE Plugin suports collisions Av2Av, Av2Prim and Prim2Prim. Avies and (active)physical prim movement supported.

The currently collision behavior is:

  • For avies, a capsule of .2m of radius and a length based on the avatar height and 80Kg of mass
  • For prims, like a Box or Sphere with a mass of a Box of = 0.5Kg/l = 0.5Kg/dm3 = 500Kg/m3.
  • Prim are separated into ~30m space islands with their own bounding box to speed 'near' calculation.
  • friction is reduced on avatar to object/ground collisions when the avatar is moving

To-do list (next changes)

  • This plugin is not currently under active development. However, patches which implement extra functionality without any danger of regressions are still welcome.

Known bugs

  • Vehicle support is incomplete.

Recent changes

Compiling from source

OpenSimulator currently bundles r1755 of ODE (a revision post 0.11.1). The code is in the Opensim-libs git repository, in the trunk/unmanaged/OpenDynamicsEngine-r1755/ directory. This directory has a few patches applied to ODE specifically for OpenSimulator ("git log" to see information about these). It also has instructions on how to build the code and install for OpenSimulator.

Old compile instructions

(Kept for now for comparison and historical purposes).

Linux

Ensure that the file ../ou/bootstrap is executable and then bootstrap the build process as follows:

It might be necessary to make the bootstrap file executable(if it is not) with this optional next step:

$ cd ou
$ chmod +x bootstrap

Now get ready and run autogen

$ sh autogen.sh

and compile it as shown below. Depending on how permissions are setup, you may need to sudo for the make install step:

./configure --enable-shared --disable-demos --disable-asserts
make
make install
cp /usr/local/lib/libode.so /my/opensim/production/dir

If you run into issues after doing this try the debug library by using the following line;

./configure --enable-shared --disable-demos

(I used to suggest --with-trimesh=gimpact, but no longer. As of ODE 0.9, Opcode is the preferred and best-supported collision library)

This should create a libode.a and lidode.so file in the src/ode subdirectory. Copy these two files to the opensim bin directory (after having backed up the original files there). [er, I don't think the .a file is necessary to put in bin!]

Try to play a bit with the avatar-settings in OpenSim.ini, if the avatar has it's feet stick in the terrain or if the basic-position is crouching. These settings seem to work on Linux64: (Note that these are old settings and may not work with the latest OpenSimulator versions)

av_capsule_radius = 0.68
av_capsule_standup_tensor_linux = 1900000
av_density = 90
Mac OS X

You can use essentially the same build process on OS X as on Linux, but there are a couple of minor differences.

First, the autogen.sh script tries to automatically determine the name of the libtoolize binary (which is named glibtoolize on OS X). To do this, it uses the which command under bash, but the error code returned by which is always 0 in bash. If you see an error message like this:

autogen.sh: line 44: no: command not found

then open autogen.sh in a text editor and change the first

LIBTOOLIZE=`which libtoolize`
to
LIBTOOLIZE=`which glibtoolize`

and re-run it.

Also, you must have automake 1.10 or later. You can check your current version with:

automake --version

You can get version 1.10 from MacPorts or fink if yours is older. Be sure to place the new binary directories ahead of your system binary directories in your PATH. You may have to open a new shell for your changes to take effect.

Then you can follow the Linux instructions to build the library. When it has built, copy the ode/src/.libs/libode.dylib file to the OpenSimulator bin directory.

Windows

The standard distribution has a build directory, in which you will find subdirs for several Microsoft compilers.

The standard .sln files (at least for VS2005) compile ode.dll such that it depends on at least two Microsoft runtime dll's. This can cause failure and confusion, so do the following: Right-click on ode in Solution Explorer, and select properties. under Configuration Properties/General, change "Use of MFC" to read "Use MFC in a Static Library"

Under Configuration Properties/Linker/System. Change Stack Reserve Size to 262144000. Click the OK button then compile as usual.

POS Plugin

POS is Physics Of Simplicity. It is BasicPhysics with collisions.

I took out my old wiki stuff because it was just plain wrong. The algorithm which is implemented in POS does not model the avatar as a sphere; rather, it models it as a rectilinear solid, same as the prims. However, collision detection is always done in the rotational frame of the prim, so depending on which prim you check against, the avatar is actually oriented differently.

To-do list (next changes)

  • TODO

Known bugs

  • TODO

Old plugins

These are plugins that are no longer maintained and have been removed from OpenSimulator.

BulletX Plugin in OpenSim: Modified BulletX

As of 2007 Bullet supported box-shaped prims and appears stable; there had been little testing, and it is known to have issues with friction (you skate around on non-level surfaces)

BulletX Plugin in OpenSimulator runs the modified version of BulletX. The original version of BulletX runs under and has code-dependencies with MS.XNA. The orginal BulletX can be found at XNADev.ru. The modified version removes all code dependencies with MS.XNA. On the other hand, it needs another library to work. This library is based on Mono.Xna and it's called MonoCompactMaths. The modified BulletX and the MonoXnaCompactMaths can be found on the svn of OpenSimulator. Because its code independency of MS.XNA, the modified BulletX should can be run under either MS.Net or Mono and, therefore, either Windows or Linux (obviously you can combine Windows + Mono)

Currently, BulletX Plugin suports collisions Av2Av, Av2Prim and Prim2Prim. Prims and avies movement supported. By the way, collisions needs tunning. The currently collision's behavoir are:

  • For avies, like and sphere of 1m of radious and 50Kg of mass
  • For prims, like a Box of the prim-size and a mass that it depends of its sizes. The mass it's the mass of Box of water with density = 1Kg/l = 1Kg/dm3 = 1000Kg/m3 (Be water my friend! :D).

To-do list (next changes)

  • Tune collision
  • Introduce Prim Shape Type to have more than the box shape.
  • More than 1 region in a Sim and then more than 1 sim (grid)
  • Fix bugs

Known bugs

  • Icy bug: an avatar acts like it is on ice and tends to drift off the edge of the sim after a while
  • Crash on BulletX. You will find the next message in console sometimes: Overflow in AABB, object removed from simulation If you can reproduce this, please email bugs@continuousphysics.com Please include above information, your Platform, version of OS. Thanks.
  • Rotation doesn't seem to work
Personal tools
General
About This Wiki