jaxsim 0.4.3.dev90__py3-none-any.whl → 0.4.3.dev94__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/_version.py +2 -2
- jaxsim/api/contact.py +15 -3
- jaxsim/api/ode.py +4 -1
- {jaxsim-0.4.3.dev90.dist-info → jaxsim-0.4.3.dev94.dist-info}/METADATA +1 -1
- {jaxsim-0.4.3.dev90.dist-info → jaxsim-0.4.3.dev94.dist-info}/RECORD +8 -8
- {jaxsim-0.4.3.dev90.dist-info → jaxsim-0.4.3.dev94.dist-info}/LICENSE +0 -0
- {jaxsim-0.4.3.dev90.dist-info → jaxsim-0.4.3.dev94.dist-info}/WHEEL +0 -0
- {jaxsim-0.4.3.dev90.dist-info → jaxsim-0.4.3.dev94.dist-info}/top_level.txt +0 -0
jaxsim/_version.py
CHANGED
@@ -12,5 +12,5 @@ __version__: str
|
|
12
12
|
__version_tuple__: VERSION_TUPLE
|
13
13
|
version_tuple: VERSION_TUPLE
|
14
14
|
|
15
|
-
__version__ = version = '0.4.3.
|
16
|
-
__version_tuple__ = version_tuple = (0, 4, 3, '
|
15
|
+
__version__ = version = '0.4.3.dev94'
|
16
|
+
__version_tuple__ = version_tuple = (0, 4, 3, 'dev94')
|
jaxsim/api/contact.py
CHANGED
@@ -224,15 +224,27 @@ def collidable_point_dynamics(
|
|
224
224
|
case _:
|
225
225
|
raise ValueError(f"Invalid contact model {model.contact_model}")
|
226
226
|
|
227
|
+
# Compute the transforms of the implicit frames `C[L] = (W_p_C, [L])`
|
228
|
+
# associated to each collidable point.
|
229
|
+
# In inertial-fixed representation, the computation of these transforms
|
230
|
+
# is not necessary and the conversion below becomes a no-op.
|
231
|
+
W_H_Ci = (
|
232
|
+
js.contact.transforms(model=model, data=data)
|
233
|
+
if data.velocity_representation is not VelRepr.Inertial
|
234
|
+
else jnp.zeros(
|
235
|
+
shape=(len(model.kin_dyn_parameters.contact_parameters.body), 4, 4)
|
236
|
+
)
|
237
|
+
)
|
238
|
+
|
227
239
|
# Convert the 6D forces to the active representation.
|
228
240
|
f_Ci = jax.vmap(
|
229
|
-
lambda W_f_C: data.inertial_to_other_representation(
|
241
|
+
lambda W_f_C, W_H_C: data.inertial_to_other_representation(
|
230
242
|
array=W_f_C,
|
231
243
|
other_representation=data.velocity_representation,
|
232
|
-
transform=
|
244
|
+
transform=W_H_C,
|
233
245
|
is_force=True,
|
234
246
|
)
|
235
|
-
)(W_f_Ci)
|
247
|
+
)(W_f_Ci, W_H_Ci)
|
236
248
|
|
237
249
|
return f_Ci, aux_data
|
238
250
|
|
jaxsim/api/ode.py
CHANGED
@@ -145,7 +145,10 @@ def system_velocity_dynamics(
|
|
145
145
|
|
146
146
|
# Compute the 6D forces W_f ∈ ℝ^{n_c × 6} applied to each collidable point
|
147
147
|
# along with contact-specific auxiliary states.
|
148
|
-
with
|
148
|
+
with (
|
149
|
+
data.switch_velocity_representation(VelRepr.Inertial),
|
150
|
+
references.switch_velocity_representation(VelRepr.Inertial),
|
151
|
+
):
|
149
152
|
W_f_Ci, aux_data = js.contact.collidable_point_dynamics(
|
150
153
|
model=model,
|
151
154
|
data=data,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: jaxsim
|
3
|
-
Version: 0.4.3.
|
3
|
+
Version: 0.4.3.dev94
|
4
4
|
Summary: A differentiable physics engine and multibody dynamics library for control and robot learning.
|
5
5
|
Author-email: Diego Ferigo <dgferigo@gmail.com>
|
6
6
|
Maintainer-email: Diego Ferigo <dgferigo@gmail.com>, Filippo Luca Ferretti <filippo.ferretti@iit.it>
|
@@ -1,19 +1,19 @@
|
|
1
1
|
jaxsim/__init__.py,sha256=bSbpggIz5aG6QuGZLa0V2EfHjAOeucMxi-vIYxzLmN8,2788
|
2
|
-
jaxsim/_version.py,sha256=
|
2
|
+
jaxsim/_version.py,sha256=f0-5Va8ZSzGXVRJ_ApiuY6zOurBuqFLN7dmOX5CxUAA,426
|
3
3
|
jaxsim/exceptions.py,sha256=8_h8iqL8DgNR754dR8SZiQ7361GR5V1sUk3ZuZCHw1Q,2069
|
4
4
|
jaxsim/logging.py,sha256=STI-D_upXZYX-ZezLrlJJ0UlD5YspST0vZ_DcIwkzO4,1553
|
5
5
|
jaxsim/typing.py,sha256=2HXy9hgazPXjofi1vLQ09ZubPtgVmg80U9NKmZ6NYiI,761
|
6
6
|
jaxsim/api/__init__.py,sha256=8eV22t2S3UwNyCg8karPetG1dmX1VDBXkyv28_FwNQA,210
|
7
7
|
jaxsim/api/com.py,sha256=m-p3EJDhpnMTlXKplfbZE_aH9NqX_VyLlAE3vUhc6l4,13642
|
8
8
|
jaxsim/api/common.py,sha256=SNgxq42r6eF_-aPszvOjUYkGwXOzz4hKmhDwEUkscFQ,6650
|
9
|
-
jaxsim/api/contact.py,sha256=
|
9
|
+
jaxsim/api/contact.py,sha256=YwiG44giPxFgIaZq24rYxBx6McNgXXFwwiG9tA8801I,22528
|
10
10
|
jaxsim/api/data.py,sha256=QldUHniJqKrdNtAcXuRaS9UyeslJ0Rjvb17UA0Ca5Tw,29008
|
11
11
|
jaxsim/api/frame.py,sha256=KS8A5wRfjxhe9NgcVo2QA516iP5zky7UVnWxG7nTa7c,12911
|
12
12
|
jaxsim/api/joint.py,sha256=lksT1Doxz2jknHyhb4ls20z6f6dofpZSzBJtVacZXAE,7129
|
13
13
|
jaxsim/api/kin_dyn_parameters.py,sha256=ElahFk_RCcLvjTidH2qDOsY-m1gN1hXitCv4SvfgGYY,29260
|
14
14
|
jaxsim/api/link.py,sha256=LAA6ZMQXkWomXeptURBtc7z3_xDZ2BBnBMhVrohh0bE,18621
|
15
15
|
jaxsim/api/model.py,sha256=WL31JA2jK5L79TJ05ZouIYGe02rQvFItVDqizkzC1UE,66100
|
16
|
-
jaxsim/api/ode.py,sha256=
|
16
|
+
jaxsim/api/ode.py,sha256=gYSbtHWGCDP-IkUzQlH3t0fBKnK8qmxwhIvsbLG9lwU,13616
|
17
17
|
jaxsim/api/ode_data.py,sha256=7RSoBhfCJdP6P9InQbDwdBVpClPMMuetewI-6AWm-_0,20276
|
18
18
|
jaxsim/api/references.py,sha256=XOVKuQXRmjPoP-T5JWGSbqIGX5DzOkeGafqRpj0ZQEM,20771
|
19
19
|
jaxsim/integrators/__init__.py,sha256=hxvOD-VK_mmd6v31wtC-nb28AYve1gLuZCNLV9wS-Kg,103
|
@@ -63,8 +63,8 @@ jaxsim/utils/__init__.py,sha256=Y5zyoRevl3EMVQadhZ4EtSwTEkDt2vcnFoRhPJjKTZ0,215
|
|
63
63
|
jaxsim/utils/jaxsim_dataclass.py,sha256=TGmTQV2Lq7Q-2nLoAEaeNtkPa_qj0IKkdBm4COj46Os,11312
|
64
64
|
jaxsim/utils/tracing.py,sha256=KDMoyVPlu2NJvFkhtZwq5AkqMMgajt3munvJom-vEjQ,650
|
65
65
|
jaxsim/utils/wrappers.py,sha256=Fh82ZcaFi5fUnByyFLnmumaobsu1hJIvFdopUVzJ1ps,4052
|
66
|
-
jaxsim-0.4.3.
|
67
|
-
jaxsim-0.4.3.
|
68
|
-
jaxsim-0.4.3.
|
69
|
-
jaxsim-0.4.3.
|
70
|
-
jaxsim-0.4.3.
|
66
|
+
jaxsim-0.4.3.dev94.dist-info/LICENSE,sha256=eaYdFmdeMbiIoIiPzEK0MjP1S9wtFXjXNR5er49uLR0,1546
|
67
|
+
jaxsim-0.4.3.dev94.dist-info/METADATA,sha256=wEoRAFF3f-3u2hBbHzyOPBQ_mgcwFGcBaPmC-wYuAhE,17276
|
68
|
+
jaxsim-0.4.3.dev94.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
69
|
+
jaxsim-0.4.3.dev94.dist-info/top_level.txt,sha256=LxGMA8FLtXjQ6oI7N5gd_R_oSUHxpXxUEOfT1xS_ni0,7
|
70
|
+
jaxsim-0.4.3.dev94.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|