Ok, finished playing with the Realistic Physics & Force skeletons.

For everyone who wants to make an own version, here's a quick explanatiion of what this mod does to meshes\characters\_male\skeletonbeast.nif:
As far as I could tell, the only changed nodes are bhkRigidBody ones; which means you can easily do all of this in NIFSkope. There's a bunch of them in the skeleton, each corresponding to a specific bone:
Bip01 NoAccum
Bip01 Spine
Big01 Spine1
Bip01 Spine2
Bip01 Head
Bip01L UpperArm
Bip01L Forearm
Bip01L Hand
Bip01R UpperArm
Bip01R Forearm
Bip01R Hand
Bip01L Thigh
Bip01L Calf
Bip01L Foot
Bip01R Thigh
Bip01R Calf
Bip01R Foot
Side Weapon
Bip01 Tail01
Bip01 Tail03
Bip01 Tail05
Bip01 Tail07
As you can see, not nearly every of the bones is Havok'ed - mostly, to keep the amount of processing low, but also because some (like the "magic bone") don't make much sense to have a physical representation/collision.
The important values of those nodes are:
Mass, Linear Dampening, Angular Dampening, Friction
On the whole, the default Bethesda body has a
very low Angular Dampening, which is why the bodies are flailing so wildly in ragdoll mode.
46&2's mod does the following:
- Doubles the Friction values of all bhkRigidBody nodes (Head, Side Weapon and all Tail nodes get a Friction value of 0.6, everything else 1.2)
- Sets the Linear Dampening to all nodes to 0.1 (in the original, the Spine nodes had a value of 1.0, the Head one and those in the arms and legs of 2.0)
- Sets the Angular Dampening to all nodes to 10.0 for the "Less Rigid" version and to 30.0 for the "More Rigid" version (previously, the Spine nodes had a value of 1.0, the Head one and those in the arms and legs of 2.0, and everything else just 0.05).
- For the "Body Lifting" version, changes the Mass of both Thigh nodes to 135 (from 45), and triples their Angular Dampening (to 30 in the "Less Rigid" version and to 90 in the "More Rigid" one).
And that's it. Have fun changing your own skeletons to match if you like (or making other people's skeleton compatible).