jaxsim 0.2.dev188__py3-none-any.whl → 0.6.1.dev2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- jaxsim/__init__.py +73 -22
- jaxsim/_version.py +2 -2
- jaxsim/api/__init__.py +13 -1
- jaxsim/api/com.py +423 -0
- jaxsim/api/common.py +48 -19
- jaxsim/api/contact.py +604 -52
- jaxsim/api/data.py +308 -163
- jaxsim/api/frame.py +471 -0
- jaxsim/api/joint.py +166 -37
- jaxsim/api/kin_dyn_parameters.py +901 -0
- jaxsim/api/link.py +277 -78
- jaxsim/api/model.py +1572 -362
- jaxsim/api/ode.py +324 -129
- jaxsim/api/ode_data.py +401 -0
- jaxsim/api/references.py +216 -80
- jaxsim/exceptions.py +80 -0
- jaxsim/integrators/__init__.py +2 -2
- jaxsim/integrators/common.py +191 -107
- jaxsim/integrators/fixed_step.py +97 -102
- jaxsim/integrators/variable_step.py +706 -0
- jaxsim/logging.py +1 -2
- jaxsim/math/__init__.py +13 -0
- jaxsim/math/adjoint.py +57 -22
- jaxsim/math/cross.py +16 -7
- jaxsim/math/inertia.py +10 -8
- jaxsim/math/joint_model.py +289 -0
- jaxsim/math/quaternion.py +54 -20
- jaxsim/math/rotation.py +27 -21
- jaxsim/math/skew.py +16 -5
- jaxsim/math/transform.py +102 -0
- jaxsim/math/utils.py +31 -0
- jaxsim/mujoco/__init__.py +2 -1
- jaxsim/mujoco/loaders.py +216 -29
- jaxsim/mujoco/model.py +163 -33
- jaxsim/mujoco/utils.py +228 -0
- jaxsim/mujoco/visualizer.py +107 -22
- jaxsim/parsers/__init__.py +0 -1
- jaxsim/parsers/descriptions/__init__.py +8 -2
- jaxsim/parsers/descriptions/collision.py +87 -16
- jaxsim/parsers/descriptions/joint.py +80 -87
- jaxsim/parsers/descriptions/link.py +62 -24
- jaxsim/parsers/descriptions/model.py +101 -68
- jaxsim/parsers/kinematic_graph.py +607 -225
- jaxsim/parsers/rod/meshes.py +104 -0
- jaxsim/parsers/rod/parser.py +125 -82
- jaxsim/parsers/rod/utils.py +127 -82
- jaxsim/rbda/__init__.py +11 -0
- jaxsim/rbda/aba.py +289 -0
- jaxsim/rbda/collidable_points.py +156 -0
- jaxsim/rbda/contacts/__init__.py +13 -0
- jaxsim/rbda/contacts/common.py +313 -0
- jaxsim/rbda/contacts/relaxed_rigid.py +605 -0
- jaxsim/rbda/contacts/rigid.py +462 -0
- jaxsim/rbda/contacts/soft.py +480 -0
- jaxsim/rbda/contacts/visco_elastic.py +1066 -0
- jaxsim/rbda/crba.py +167 -0
- jaxsim/rbda/forward_kinematics.py +117 -0
- jaxsim/rbda/jacobian.py +330 -0
- jaxsim/rbda/rnea.py +235 -0
- jaxsim/rbda/utils.py +160 -0
- jaxsim/terrain/__init__.py +2 -0
- jaxsim/terrain/terrain.py +238 -0
- jaxsim/typing.py +24 -24
- jaxsim/utils/__init__.py +1 -4
- jaxsim/utils/jaxsim_dataclass.py +289 -34
- jaxsim/utils/tracing.py +5 -11
- jaxsim/utils/wrappers.py +159 -0
- {jaxsim-0.2.dev188.dist-info → jaxsim-0.6.1.dev2.dist-info}/LICENSE +1 -1
- jaxsim-0.6.1.dev2.dist-info/METADATA +465 -0
- jaxsim-0.6.1.dev2.dist-info/RECORD +74 -0
- {jaxsim-0.2.dev188.dist-info → jaxsim-0.6.1.dev2.dist-info}/WHEEL +1 -1
- jaxsim/high_level/__init__.py +0 -2
- jaxsim/high_level/common.py +0 -11
- jaxsim/high_level/joint.py +0 -148
- jaxsim/high_level/link.py +0 -259
- jaxsim/high_level/model.py +0 -1686
- jaxsim/math/conv.py +0 -114
- jaxsim/math/joint.py +0 -102
- jaxsim/math/plucker.py +0 -100
- jaxsim/physics/__init__.py +0 -12
- jaxsim/physics/algos/__init__.py +0 -0
- jaxsim/physics/algos/aba.py +0 -254
- jaxsim/physics/algos/aba_motors.py +0 -284
- jaxsim/physics/algos/crba.py +0 -154
- jaxsim/physics/algos/forward_kinematics.py +0 -79
- jaxsim/physics/algos/jacobian.py +0 -98
- jaxsim/physics/algos/rnea.py +0 -180
- jaxsim/physics/algos/rnea_motors.py +0 -196
- jaxsim/physics/algos/soft_contacts.py +0 -523
- jaxsim/physics/algos/terrain.py +0 -80
- jaxsim/physics/algos/utils.py +0 -69
- jaxsim/physics/model/__init__.py +0 -0
- jaxsim/physics/model/ground_contact.py +0 -55
- jaxsim/physics/model/physics_model.py +0 -388
- jaxsim/physics/model/physics_model_state.py +0 -283
- jaxsim/simulation/__init__.py +0 -4
- jaxsim/simulation/integrators.py +0 -393
- jaxsim/simulation/ode.py +0 -290
- jaxsim/simulation/ode_data.py +0 -96
- jaxsim/simulation/ode_integration.py +0 -62
- jaxsim/simulation/simulator.py +0 -543
- jaxsim/simulation/simulator_callbacks.py +0 -79
- jaxsim/simulation/utils.py +0 -15
- jaxsim/sixd/__init__.py +0 -2
- jaxsim/utils/oop.py +0 -536
- jaxsim/utils/vmappable.py +0 -117
- jaxsim-0.2.dev188.dist-info/METADATA +0 -184
- jaxsim-0.2.dev188.dist-info/RECORD +0 -81
- {jaxsim-0.2.dev188.dist-info → jaxsim-0.6.1.dev2.dist-info}/top_level.txt +0 -0
@@ -1,184 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.1
|
2
|
-
Name: jaxsim
|
3
|
-
Version: 0.2.dev188
|
4
|
-
Summary: A physics engine in reduced coordinates implemented with JAX.
|
5
|
-
Home-page: https://github.com/ami-iit/jaxsim
|
6
|
-
Author: Diego Ferigo
|
7
|
-
Author-email: diego.ferigo@iit.it
|
8
|
-
License: BSD
|
9
|
-
Project-URL: Changelog, https://github.com/ami-iit/jaxsim/releases
|
10
|
-
Project-URL: Source, https://github.com/ami-iit/jaxsim
|
11
|
-
Project-URL: Tracker, https://github.com/ami-iit/jaxsim/issues
|
12
|
-
Keywords: physics,physics engine,jax,rigid body dynamics,featherstone,reinforcement learning,robot,robotics,sdf,urdf
|
13
|
-
Platform: any
|
14
|
-
Classifier: Development Status :: 4 - Beta
|
15
|
-
Classifier: Framework :: Robot Framework
|
16
|
-
Classifier: Intended Audience :: Developers
|
17
|
-
Classifier: Intended Audience :: Science/Research
|
18
|
-
Classifier: License :: OSI Approved :: BSD License
|
19
|
-
Classifier: Operating System :: POSIX :: Linux
|
20
|
-
Classifier: Operating System :: MacOS
|
21
|
-
Classifier: Operating System :: Microsoft
|
22
|
-
Classifier: Programming Language :: Python :: 3.11
|
23
|
-
Classifier: Programming Language :: Python :: 3.12
|
24
|
-
Classifier: Programming Language :: Python :: 3 :: Only
|
25
|
-
Classifier: Programming Language :: Python :: Implementation :: CPython
|
26
|
-
Classifier: Topic :: Games/Entertainment :: Simulation
|
27
|
-
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
28
|
-
Classifier: Topic :: Scientific/Engineering :: Physics
|
29
|
-
Classifier: Topic :: Software Development
|
30
|
-
Requires-Python: >=3.11
|
31
|
-
Description-Content-Type: text/markdown
|
32
|
-
License-File: LICENSE
|
33
|
-
Requires-Dist: coloredlogs
|
34
|
-
Requires-Dist: jax <0.4.25,>=0.4.13
|
35
|
-
Requires-Dist: jaxlib <0.4.25,>=0.4.13
|
36
|
-
Requires-Dist: jaxlie >=1.3.0
|
37
|
-
Requires-Dist: jax-dataclasses >=1.4.0
|
38
|
-
Requires-Dist: pptree
|
39
|
-
Requires-Dist: rod
|
40
|
-
Requires-Dist: typing-extensions ; python_version < "3.12"
|
41
|
-
Provides-Extra: all
|
42
|
-
Requires-Dist: black[jupyter] ; extra == 'all'
|
43
|
-
Requires-Dist: isort ; extra == 'all'
|
44
|
-
Requires-Dist: pre-commit ; extra == 'all'
|
45
|
-
Requires-Dist: idyntree ; extra == 'all'
|
46
|
-
Requires-Dist: pytest >=6.0 ; extra == 'all'
|
47
|
-
Requires-Dist: pytest-forked ; extra == 'all'
|
48
|
-
Requires-Dist: pytest-icdiff ; extra == 'all'
|
49
|
-
Requires-Dist: robot-descriptions ; extra == 'all'
|
50
|
-
Requires-Dist: lxml ; extra == 'all'
|
51
|
-
Requires-Dist: mediapy ; extra == 'all'
|
52
|
-
Requires-Dist: mujoco >=3.0.0 ; extra == 'all'
|
53
|
-
Provides-Extra: style
|
54
|
-
Requires-Dist: black[jupyter] ; extra == 'style'
|
55
|
-
Requires-Dist: isort ; extra == 'style'
|
56
|
-
Requires-Dist: pre-commit ; extra == 'style'
|
57
|
-
Provides-Extra: testing
|
58
|
-
Requires-Dist: idyntree ; extra == 'testing'
|
59
|
-
Requires-Dist: pytest >=6.0 ; extra == 'testing'
|
60
|
-
Requires-Dist: pytest-forked ; extra == 'testing'
|
61
|
-
Requires-Dist: pytest-icdiff ; extra == 'testing'
|
62
|
-
Requires-Dist: robot-descriptions ; extra == 'testing'
|
63
|
-
Provides-Extra: viz
|
64
|
-
Requires-Dist: lxml ; extra == 'viz'
|
65
|
-
Requires-Dist: mediapy ; extra == 'viz'
|
66
|
-
Requires-Dist: mujoco >=3.0.0 ; extra == 'viz'
|
67
|
-
|
68
|
-
# JAXsim
|
69
|
-
|
70
|
-
**A scalable physics engine and multibody dynamics library implemented with JAX. With JIT batteries 🔋**
|
71
|
-
|
72
|
-
> [!WARNING]
|
73
|
-
> This project is still experimental, APIs could change without notice.
|
74
|
-
|
75
|
-
> [!NOTE]
|
76
|
-
> This simulator currently focuses on locomotion applications. Only contacts with ground are supported.
|
77
|
-
|
78
|
-
## Features
|
79
|
-
|
80
|
-
- Physics engine in reduced coordinates implemented with [JAX][jax] in Python.
|
81
|
-
- JIT compilation of Python code for increased performance.
|
82
|
-
- Transparent support to execute logic on CPUs, GPUs, and TPUs.
|
83
|
-
- Parallel multi-body simulations on hardware accelerators for significantly increased throughput.
|
84
|
-
- Support for SDF models (and, upon conversion, URDF models).
|
85
|
-
- Collision detection between bodies and uneven ground surface.
|
86
|
-
- Soft contacts model supporting full friction cone and sticking / slipping transition.
|
87
|
-
- Complete support for inertial properties of rigid bodies.
|
88
|
-
- Revolute, prismatic, and fixed joints support.
|
89
|
-
- Integrators: forward Euler, semi-implicit Euler, Runge-Kutta 4.
|
90
|
-
- High-level classes for object-oriented programming.
|
91
|
-
- High-level classes to compute multi-body dynamics quantities from the simulation state.
|
92
|
-
- High-level classes wrapping the low-level functional RBDAs with support of [multiple velocities representations][notation].
|
93
|
-
- Default validation of JAX pytrees to prevent JIT re-compilations.
|
94
|
-
- Preliminary support for automatic differentiation of RBDAs.
|
95
|
-
|
96
|
-
[jax]: https://github.com/google/jax/
|
97
|
-
[notation]: https://research.tue.nl/en/publications/multibody-dynamics-notation-version-2
|
98
|
-
|
99
|
-
## Documentation
|
100
|
-
|
101
|
-
The JAXsim API documentation is available at [jaxsim.readthedocs.io](https://jaxsim.readthedocs.io/).
|
102
|
-
|
103
|
-
## Installation
|
104
|
-
|
105
|
-
You can install the project using [`conda`][conda]:
|
106
|
-
|
107
|
-
```bash
|
108
|
-
conda install jaxsim -c conda-forge
|
109
|
-
```
|
110
|
-
|
111
|
-
Alternatively, you can use [`pypa/pip`][pip], preferably in a [virtual environment][venv]:
|
112
|
-
|
113
|
-
```bash
|
114
|
-
pip install jaxsim
|
115
|
-
```
|
116
|
-
|
117
|
-
Check [`setup.cfg`](setup.cfg) for the complete list of optional dependencies.
|
118
|
-
Install all of them with `jaxsim[all]`.
|
119
|
-
|
120
|
-
**Note:** For GPU support, follow the official [installation instructions][jax_gpu] of JAX.
|
121
|
-
|
122
|
-
[conda]: https://anaconda.org/
|
123
|
-
[pip]: https://github.com/pypa/pip/
|
124
|
-
[venv]: https://docs.python.org/3/tutorial/venv.html
|
125
|
-
[jax_gpu]: https://github.com/google/jax/#installation
|
126
|
-
|
127
|
-
## Quickstart
|
128
|
-
|
129
|
-
Explore and learn how to use the library through practical demonstrations available in the [examples](./examples) folder.
|
130
|
-
|
131
|
-
## Credits
|
132
|
-
|
133
|
-
The physics module of JAXsim is based on the theory of the [Rigid Body Dynamics Algorithms][RBDA]
|
134
|
-
book by Roy Featherstone.
|
135
|
-
We structured part of our logic following its accompanying [code][spatial_v2].
|
136
|
-
The physics engine is developed entirely in Python using [JAX][jax].
|
137
|
-
|
138
|
-
[RBDA]: https://link.springer.com/book/10.1007/978-1-4899-7560-7
|
139
|
-
[spatial_v2]: http://royfeatherstone.org/spatial/index.html#spatial-software
|
140
|
-
|
141
|
-
The inspiration for developing JAXsim originally stemmed from early versions of [`google/brax`][brax].
|
142
|
-
Here below we summarize the differences between the projects:
|
143
|
-
|
144
|
-
- JAXsim simulates multibody dynamics in reduced coordinates, while brax v1 uses maximal coordinates.
|
145
|
-
- The new v2 APIs of brax (and the new [MJX][mjx]) were then implemented in reduced coordinates, following an approach comparable to JAXsim, with major differences in contact handling.
|
146
|
-
- The rigid-body algorithms used in JAXsim allow to efficiently compute quantities based on the Euler-Poincarè
|
147
|
-
formulation of the equations of motion, necessary for model-based robotics research.
|
148
|
-
- JAXsim supports SDF (and, indirectly, URDF) models, assuming the model is described with the
|
149
|
-
recent [Pose Frame Semantics][PFS].
|
150
|
-
- Contrarily to brax, JAXsim only supports collision detection between bodies and a compliant ground surface.
|
151
|
-
- The RBDAs of JAXsim support automatic differentiation, but this functionality has not been thoroughly tested.
|
152
|
-
|
153
|
-
[brax]: https://github.com/google/brax
|
154
|
-
[mjx]: https://mujoco.readthedocs.io/en/3.0.0/mjx.html
|
155
|
-
[PFS]: http://sdformat.org/tutorials?tut=pose_frame_semantics
|
156
|
-
|
157
|
-
## Contributing
|
158
|
-
|
159
|
-
We welcome contributions from the community.
|
160
|
-
Please read the [contributing guide](./CONTRIBUTING.md) to get started.
|
161
|
-
|
162
|
-
## Citing
|
163
|
-
|
164
|
-
```bibtex
|
165
|
-
@software{ferigo_jaxsim_2022,
|
166
|
-
author = {Diego Ferigo and Silvio Traversaro and Daniele Pucci},
|
167
|
-
title = {{JAXsim}: A Physics Engine in Reduced Coordinates and Multibody Dynamics Library for Control and Robot Learning},
|
168
|
-
url = {http://github.com/ami-iit/jaxsim},
|
169
|
-
year = {2022},
|
170
|
-
}
|
171
|
-
```
|
172
|
-
|
173
|
-
## People
|
174
|
-
|
175
|
-
| Author | Maintainers |
|
176
|
-
|:------:|:-----------:|
|
177
|
-
| [<img src="https://avatars.githubusercontent.com/u/469199?v=4" width="40">][df] | [<img src="https://avatars.githubusercontent.com/u/102977828?v=4" width="40">][ff] [<img src="https://avatars.githubusercontent.com/u/469199?v=4" width="40">][df] |
|
178
|
-
|
179
|
-
[df]: https://github.com/diegoferigo
|
180
|
-
[ff]: https://github.com/flferretti
|
181
|
-
|
182
|
-
## License
|
183
|
-
|
184
|
-
[BSD3](https://choosealicense.com/licenses/bsd-3-clause/)
|
@@ -1,81 +0,0 @@
|
|
1
|
-
jaxsim/__init__.py,sha256=acqCVEg71ekNOwazlwA06dXeaPJh3Sr_e5JB8pcI5lo,1862
|
2
|
-
jaxsim/_version.py,sha256=25Ei2WVWsVwEC3k_WuiVBPfYOrVetMFq0zkbn_gOAyY,423
|
3
|
-
jaxsim/logging.py,sha256=c4zhwBKf9eAYAHVp62kTEllqdsZgh0K-kPKVy8L3elU,1584
|
4
|
-
jaxsim/typing.py,sha256=MeuOCQtLAr-sPkvB_sU8FtwGNRirz1auCwIgRC-QZl8,646
|
5
|
-
jaxsim/api/__init__.py,sha256=UehgJtcV9BYlX6vec-f_IgnMcq-F9BU_STsR0RDjEjA,53
|
6
|
-
jaxsim/api/common.py,sha256=I8YgQwsfLcuWXtyp_2IVIyAnWMsfcf4ICmgkMfaGyRs,6475
|
7
|
-
jaxsim/api/contact.py,sha256=9LX9FNXSXjMonJgg6svyrFcRfhptfBMywbswBUebHeE,5945
|
8
|
-
jaxsim/api/data.py,sha256=mKgyYEJ6JpuHcXe_ddzw13Y553SV_92AzH3mT4FaxBo,25588
|
9
|
-
jaxsim/api/joint.py,sha256=J65MgjMzp2O980wIEf2TxG_VCgczUsexGgd4YJ6rxiE,3615
|
10
|
-
jaxsim/api/link.py,sha256=Fpbtr2JF9fAouOX-lGAmajF2ZEz6q8ttDYsCiqpLxEk,6939
|
11
|
-
jaxsim/api/model.py,sha256=sxFJADqHXXm8nCvwYiorOgl9nzGhA_QvI1dOSOv9its,35206
|
12
|
-
jaxsim/api/ode.py,sha256=cbWrXe7s5O3UCpWpI77Lg8Pujr_SiaQfLc7ELBqnJQM,9492
|
13
|
-
jaxsim/api/references.py,sha256=hiVrDfXF0jOYrtLpb2_-nmunz0p2maIDFx_NZYPOCks,15419
|
14
|
-
jaxsim/high_level/__init__.py,sha256=aWYBCsYmEO76Qt4GEi91Hye_ifGFLvc_bpy9OQplz2o,69
|
15
|
-
jaxsim/high_level/common.py,sha256=6nyRlFsNOLEy5JvLH70VPWeHGSL_ZKNxX3Q62ccqSuY,196
|
16
|
-
jaxsim/high_level/joint.py,sha256=0WF0QWkZzP0SXw0QYpn3PAwdZq0_uXFr2_f1OATiOBA,4089
|
17
|
-
jaxsim/high_level/link.py,sha256=4kcBMh-3w9c-fkTYm3_sXfdwd3NwUm7jKf5BjwEge94,8010
|
18
|
-
jaxsim/high_level/model.py,sha256=q29hSs0gH_UQrUyVzuCyF9YRB79WEWyHcVvV_1B9LrA,57054
|
19
|
-
jaxsim/integrators/__init__.py,sha256=x4kYr7k-nC0X7HH2bTXzGOl_3B9TBN9blw5BBxQtyQ0,72
|
20
|
-
jaxsim/integrators/common.py,sha256=kL4EqUjWZUNPtDrCcrStx-ZTxEYDS-W2WPQ0g-QqHqs,17567
|
21
|
-
jaxsim/integrators/fixed_step.py,sha256=_gChRm0RHjDtst-aWjyQKUys6TyYhZqdWap7vLf5LaE,4291
|
22
|
-
jaxsim/math/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
23
|
-
jaxsim/math/adjoint.py,sha256=ImkOkWHQKMukBprLTsOPpSuqb1NNPA3_t447zRVo79s,3779
|
24
|
-
jaxsim/math/conv.py,sha256=jbr9MU_vGtTpLTQpbqwAT4huF51skCfORFUBmKSdlaI,3138
|
25
|
-
jaxsim/math/cross.py,sha256=U7yEx_l75mSy5g6O-jsjBztApvxC3WaV4MpkS5tThu4,1330
|
26
|
-
jaxsim/math/inertia.py,sha256=UAB7ym4gXFanejcs_ovZMpteHCc6poWYmt-mLmd5hhk,1640
|
27
|
-
jaxsim/math/joint.py,sha256=vNgxPfn6rkHHrIt_2vYwS832mDMYmza_7cnle2Jh8sA,3012
|
28
|
-
jaxsim/math/plucker.py,sha256=44NvKVbcZoG8ivFN1BeXxDpuSFdEre1Q6ZXvhnmIiPY,2282
|
29
|
-
jaxsim/math/quaternion.py,sha256=ToyRnAWU0JvKSSSX2vaJeSw2lMa5BGU72DjtonOUw0k,3685
|
30
|
-
jaxsim/math/rotation.py,sha256=MHOnrpS5Sf4rszhOpZ8w7qXFkEl7UMltYimqqsuYuuU,2187
|
31
|
-
jaxsim/math/skew.py,sha256=oOGSSR8PUGROl6IJFlrmu6K3gPH-u16hUPfKIkcVv9o,1177
|
32
|
-
jaxsim/mujoco/__init__.py,sha256=Zo5GAlN1DYKvX8s1hu1j6HntKIbBMLB9Puv9ouaNAZ8,158
|
33
|
-
jaxsim/mujoco/__main__.py,sha256=GBmB7J-zj75ZnFyuAAmpSOpbxi_HhHhWJeot3ljGDJY,5291
|
34
|
-
jaxsim/mujoco/loaders.py,sha256=8sXc_tsDFWBYl8nesgFarYd3hA-PESLMrXsnR3Siz1Y,16400
|
35
|
-
jaxsim/mujoco/model.py,sha256=0kG2GERxjVFqWZ1K3352rgUNfchB4kRtIrsvv4pS4oc,10766
|
36
|
-
jaxsim/mujoco/visualizer.py,sha256=-qg26t5tleTva6zzQmc5SdnlC8XZ1ZAwZ_lDjdwHJ0A,4400
|
37
|
-
jaxsim/parsers/__init__.py,sha256=sonYi-bBWAoB04kp1mxT4uIORxjb7SdZ0ukGPmVx98Y,44
|
38
|
-
jaxsim/parsers/kinematic_graph.py,sha256=5wQnbzu8JE0bbnLRxK4ZsD_gQ9kbBpYbhUSzCMiNWko,23610
|
39
|
-
jaxsim/parsers/descriptions/__init__.py,sha256=EbTfnrK3oCxA3pNv--YUwllJ6uICENvFgAdRbYtS9ts,238
|
40
|
-
jaxsim/parsers/descriptions/collision.py,sha256=p8v24UyWNQFd3n5t3Z25IamfTqw19V9VlF5oyxeQXtU,2935
|
41
|
-
jaxsim/parsers/descriptions/joint.py,sha256=hpH0ANvIhbEQk-NGRmWIvPv3lXW385TBIMWNgz5rzM4,4106
|
42
|
-
jaxsim/parsers/descriptions/link.py,sha256=SONPaSwtNhIX93RIVng8Fb_Y7I5h3sk-5rsqd5U7Fmw,2493
|
43
|
-
jaxsim/parsers/descriptions/model.py,sha256=wenuDrjoBf6prkzm9WyYT0nFWc0l6WBpKNjLoRUDPxo,8937
|
44
|
-
jaxsim/parsers/rod/__init__.py,sha256=G2vqlLajBLUc4gyzXwsEI2Wsi4TMOIF9bLDFeT6KrGU,92
|
45
|
-
jaxsim/parsers/rod/parser.py,sha256=mFi1baSJte6EMmWLpVjVuCpicfAAF48aFUzoKzYzPpo,12555
|
46
|
-
jaxsim/parsers/rod/utils.py,sha256=C3RfLSnHHR7rgZhnM15QjM_tpJFHKf1Jf2mOsdep3LM,6492
|
47
|
-
jaxsim/physics/__init__.py,sha256=TKH7IqQi39eobWT03b820ky6tWVWFFWcO8YPayNpnZc,216
|
48
|
-
jaxsim/physics/algos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
49
|
-
jaxsim/physics/algos/aba.py,sha256=nv7ezClJT6ygx-pui3oZzUrOc-eMlvRYUzDNwCLOUwE,7547
|
50
|
-
jaxsim/physics/algos/aba_motors.py,sha256=gGdFrFvImTwYs2V2lONHh85DObppee1MkDUoUGGoc24,8362
|
51
|
-
jaxsim/physics/algos/crba.py,sha256=5OcPNaeGMZ3IcemhX4cdXvUUtysJv1SB92QkZTVtizc,4478
|
52
|
-
jaxsim/physics/algos/forward_kinematics.py,sha256=myiqBGk5Nv-OIJpkNFVOby2FdHEJM3teEOQrL77dExQ,2513
|
53
|
-
jaxsim/physics/algos/jacobian.py,sha256=HQk7UBYwWr2_qIYZBil_t9nqoL-TQB8hi-JHdPcSA0g,3166
|
54
|
-
jaxsim/physics/algos/rnea.py,sha256=bIv6TTwdCZVj_s9Fd5i_ZTMib4W2_sn8gxCbMRrzRcg,5322
|
55
|
-
jaxsim/physics/algos/rnea_motors.py,sha256=gaiEAOfpw9kZBVImfNKKwpgIgM8eygVu--wszh3npJc,5684
|
56
|
-
jaxsim/physics/algos/soft_contacts.py,sha256=mPNs5a3JAZ5dRTWbNMhZNV57UyYxQTqjRQXGA5pk3II,18424
|
57
|
-
jaxsim/physics/algos/terrain.py,sha256=Gw9-1AjU4c4Yd2xzo0i-fgWwYlroj03TjScJsz_2m9o,2228
|
58
|
-
jaxsim/physics/algos/utils.py,sha256=0OiELbXtv5Jink3l-vMK_OGHgGkZ_wTAAclcd7vDKoc,2230
|
59
|
-
jaxsim/physics/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
60
|
-
jaxsim/physics/model/ground_contact.py,sha256=mva-yDzYHREmgUu8jGJmIAsf66_SF6ZISmN-XQQ9Ktw,1924
|
61
|
-
jaxsim/physics/model/physics_model.py,sha256=izK5EaKFwNZVqD2hG69yZ5XOW5MmOFyP8_KojaWxBMk,14529
|
62
|
-
jaxsim/physics/model/physics_model_state.py,sha256=Av42rJWgicqxDmZZu1T_clpnmeaX_daASYhA7cxHYxQ,9256
|
63
|
-
jaxsim/simulation/__init__.py,sha256=WOWkzq7rMGa4xWvjNqTYtD0Nl4yLQtULGW1xU7hD9m0,182
|
64
|
-
jaxsim/simulation/integrators.py,sha256=WIlL7xi4UocSlWg4Qms8-6puqRYnK5A4r7TJUNPg5g0,13022
|
65
|
-
jaxsim/simulation/ode.py,sha256=ntq_iQPIw3SHj64CZWD2mHAKmt05ZgRpw2UwyTxHDOQ,10380
|
66
|
-
jaxsim/simulation/ode_data.py,sha256=5nPynNSC5tRnhAVwOCkdv6FrDn148bC7zZaqVCKgowM,2952
|
67
|
-
jaxsim/simulation/ode_integration.py,sha256=VDprQYoHEE_iI7ia1Mm3RyYl-LRvHU8dJEvRoGA4TFA,1947
|
68
|
-
jaxsim/simulation/simulator.py,sha256=qCI5QG0WKkBC5GNqauSvI7rSlGD7CLttTzCgLED7iJM,18123
|
69
|
-
jaxsim/simulation/simulator_callbacks.py,sha256=QWdY7dilmjrxeieWCB6RQ-cWpwLuUOK8fYWXpnnBcyU,2217
|
70
|
-
jaxsim/simulation/utils.py,sha256=YdNA1mYGBAE7xVA-Dw7_OoBEuh0J8RS2X0RPQZf4c5E,329
|
71
|
-
jaxsim/sixd/__init__.py,sha256=3tbynXQjvJ6X1IRcDH5eQBgBL0ilTSerDkS8SEF7a8A,62
|
72
|
-
jaxsim/utils/__init__.py,sha256=UQsjrWMrhSQUfUXIIQhzd0kEioLHR3U0OhB-sIQqOd4,291
|
73
|
-
jaxsim/utils/jaxsim_dataclass.py,sha256=FbjfEoCoYC_F-M3wUggXiEhQ7MMS-V_ciYQca-uSiMQ,3272
|
74
|
-
jaxsim/utils/oop.py,sha256=LQhBXkSOD0zgYNJLO7Bl0FPRg-LvtvPzxyQa1WFP0rM,22616
|
75
|
-
jaxsim/utils/tracing.py,sha256=KDMoyVPlu2NJvFkhtZwq5AkqMMgajt3munvJom-vEjQ,650
|
76
|
-
jaxsim/utils/vmappable.py,sha256=NqGL9nGFRI5OorCfnjXsjR_yXigzDxL0lW1YhQ_nMTY,3655
|
77
|
-
jaxsim-0.2.dev188.dist-info/LICENSE,sha256=EsU2z6_sWW4Zduzq3goVWjZoCZVKQsM4H_y0o7oRA7Q,1547
|
78
|
-
jaxsim-0.2.dev188.dist-info/METADATA,sha256=flkZoYKaLN8C6F_IlOOyfucfXnzwHxBN8Kgi9NXNJww,7734
|
79
|
-
jaxsim-0.2.dev188.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
80
|
-
jaxsim-0.2.dev188.dist-info/top_level.txt,sha256=LxGMA8FLtXjQ6oI7N5gd_R_oSUHxpXxUEOfT1xS_ni0,7
|
81
|
-
jaxsim-0.2.dev188.dist-info/RECORD,,
|
File without changes
|