jaxsim 0.2.dev376__py3-none-any.whl → 0.2.dev388__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/common.py +2 -2
- jaxsim/api/data.py +4 -4
- jaxsim/api/model.py +2 -2
- jaxsim/api/ode.py +0 -1
- jaxsim/integrators/common.py +2 -2
- jaxsim/math/transform.py +0 -1
- jaxsim/mujoco/loaders.py +1 -1
- jaxsim/mujoco/model.py +2 -0
- jaxsim/parsers/kinematic_graph.py +1 -1
- jaxsim/utils/jaxsim_dataclass.py +0 -1
- {jaxsim-0.2.dev376.dist-info → jaxsim-0.2.dev388.dist-info}/METADATA +1 -1
- {jaxsim-0.2.dev376.dist-info → jaxsim-0.2.dev388.dist-info}/RECORD +16 -16
- {jaxsim-0.2.dev376.dist-info → jaxsim-0.2.dev388.dist-info}/LICENSE +0 -0
- {jaxsim-0.2.dev376.dist-info → jaxsim-0.2.dev388.dist-info}/WHEEL +0 -0
- {jaxsim-0.2.dev376.dist-info → jaxsim-0.2.dev388.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.2.
|
16
|
-
__version_tuple__ = version_tuple = (0, 2, '
|
15
|
+
__version__ = version = '0.2.dev388'
|
16
|
+
__version_tuple__ = version_tuple = (0, 2, 'dev388')
|
jaxsim/api/common.py
CHANGED
@@ -89,7 +89,7 @@ class ModelDataWithVelocityRepresentation(JaxsimDataclass, abc.ABC):
|
|
89
89
|
transform: jtp.Matrix,
|
90
90
|
is_force: bool = False,
|
91
91
|
) -> jtp.Array:
|
92
|
-
"""
|
92
|
+
r"""
|
93
93
|
Convert a 6D quantity from inertial-fixed to another representation.
|
94
94
|
|
95
95
|
Args:
|
@@ -155,7 +155,7 @@ class ModelDataWithVelocityRepresentation(JaxsimDataclass, abc.ABC):
|
|
155
155
|
transform: jtp.Matrix,
|
156
156
|
is_force: bool = False,
|
157
157
|
) -> jtp.Array:
|
158
|
-
"""
|
158
|
+
r"""
|
159
159
|
Convert a 6D quantity from another representation to inertial-fixed.
|
160
160
|
|
161
161
|
Args:
|
jaxsim/api/data.py
CHANGED
@@ -415,9 +415,9 @@ class JaxSimModelData(common.ModelDataWithVelocityRepresentation):
|
|
415
415
|
|
416
416
|
@jax.jit
|
417
417
|
def generalized_position(self) -> tuple[jtp.Matrix, jtp.Vector]:
|
418
|
-
"""
|
418
|
+
r"""
|
419
419
|
Get the generalized position
|
420
|
-
:math
|
420
|
+
:math:`\\mathbf{q} = ({}^W \\mathbf{H}_B, \\mathbf{s}) \\in \text{SO}(3) \times \\mathbb{R}^n`.
|
421
421
|
|
422
422
|
Returns:
|
423
423
|
A tuple containing the base transform and the joint positions.
|
@@ -427,9 +427,9 @@ class JaxSimModelData(common.ModelDataWithVelocityRepresentation):
|
|
427
427
|
|
428
428
|
@jax.jit
|
429
429
|
def generalized_velocity(self) -> jtp.Vector:
|
430
|
-
"""
|
430
|
+
r"""
|
431
431
|
Get the generalized velocity
|
432
|
-
:math:`\boldsymbol{\nu} = (\boldsymbol{v}_{W,B}
|
432
|
+
:math:`\boldsymbol{\nu} = (\boldsymbol{v}_{W,B};\\, \boldsymbol{\\omega}_{W,B};\\, \\mathbf{s}) \\in \\mathbb{R}^{6+n}`
|
433
433
|
|
434
434
|
Returns:
|
435
435
|
The generalized velocity in the active representation.
|
jaxsim/api/model.py
CHANGED
@@ -937,7 +937,7 @@ def inverse_dynamics(
|
|
937
937
|
def free_floating_gravity_forces(
|
938
938
|
model: JaxSimModel, data: js.data.JaxSimModelData
|
939
939
|
) -> jtp.Vector:
|
940
|
-
"""
|
940
|
+
r"""
|
941
941
|
Compute the free-floating gravity forces :math:`g(\mathbf{q})` of the model.
|
942
942
|
|
943
943
|
Args:
|
@@ -987,7 +987,7 @@ def free_floating_bias_forces(
|
|
987
987
|
model: JaxSimModel, data: js.data.JaxSimModelData
|
988
988
|
) -> jtp.Vector:
|
989
989
|
"""
|
990
|
-
Compute the free-floating bias forces :math:`h(
|
990
|
+
Compute the free-floating bias forces :math:`h(\\mathbf{q}, \boldsymbol{\nu})`
|
991
991
|
of the model.
|
992
992
|
|
993
993
|
Args:
|
jaxsim/api/ode.py
CHANGED
jaxsim/integrators/common.py
CHANGED
@@ -324,7 +324,7 @@ class ExplicitRungeKutta(Integrator[PyTreeType, PyTreeType], Generic[PyTreeType]
|
|
324
324
|
def post_process_state(
|
325
325
|
cls, x0: State, t0: Time, xf: NextState, dt: TimeStep
|
326
326
|
) -> NextState:
|
327
|
-
"""
|
327
|
+
r"""
|
328
328
|
Post-process the integrated state at :math:`t_f = t_0 + \Delta t`.
|
329
329
|
|
330
330
|
Args:
|
@@ -529,7 +529,7 @@ class ExplicitRungeKutta(Integrator[PyTreeType, PyTreeType], Generic[PyTreeType]
|
|
529
529
|
# Return the index of the row of A providing the fsal derivative (that is the
|
530
530
|
# possibly intermediate kᵢ derivative).
|
531
531
|
# Note that if multiple rows match (it should not), we return the first match.
|
532
|
-
return True, int(jnp.where(rows_of_A_with_fsal
|
532
|
+
return True, int(jnp.where(rows_of_A_with_fsal)[0].tolist()[0])
|
533
533
|
|
534
534
|
|
535
535
|
class ExplicitRungeKuttaSO3Mixin:
|
jaxsim/math/transform.py
CHANGED
jaxsim/mujoco/loaders.py
CHANGED
@@ -102,7 +102,7 @@ class RodModelToMjcf:
|
|
102
102
|
|
103
103
|
if root.find(f".//joint[@name='{floating_joint_name}']") is not None:
|
104
104
|
msg = f"The URDF already has a floating joint '{floating_joint_name}'"
|
105
|
-
warnings.warn(msg)
|
105
|
+
warnings.warn(msg, stacklevel=2)
|
106
106
|
return ET.tostring(root, pretty_print=True).decode()
|
107
107
|
|
108
108
|
# Create the "world" link if it doesn't exist.
|
jaxsim/mujoco/model.py
CHANGED
@@ -268,7 +268,7 @@ class KinematicGraph:
|
|
268
268
|
|
269
269
|
# Return early if there is no action to take
|
270
270
|
if len(joint_names_to_remove) == 0:
|
271
|
-
logging.info(
|
271
|
+
logging.info("The kinematic graph doesn't need to be reduced")
|
272
272
|
return copy.deepcopy(self)
|
273
273
|
|
274
274
|
# Check if all considered joints are part of the full kinematic graph
|
jaxsim/utils/jaxsim_dataclass.py
CHANGED
@@ -1,21 +1,21 @@
|
|
1
1
|
jaxsim/__init__.py,sha256=OcrfoYS1DGcmAGqu2AqlCTiUVxcpi-IsVwcr_16x74Q,1789
|
2
|
-
jaxsim/_version.py,sha256=
|
2
|
+
jaxsim/_version.py,sha256=ajN4RtI-FZYlNpUqVy327D57EXvmjZkyMCV_lzLqeUo,423
|
3
3
|
jaxsim/logging.py,sha256=c4zhwBKf9eAYAHVp62kTEllqdsZgh0K-kPKVy8L3elU,1584
|
4
4
|
jaxsim/typing.py,sha256=MeuOCQtLAr-sPkvB_sU8FtwGNRirz1auCwIgRC-QZl8,646
|
5
5
|
jaxsim/api/__init__.py,sha256=fNTCPUeDfOAizRd4RsW3Epv0sLTu0KJGoFRSEsi75VM,162
|
6
6
|
jaxsim/api/com.py,sha256=Qtm_6qpiK4WtDVn6JMUHa8DySgBl9CjgKCybJqZ58Lc,7379
|
7
|
-
jaxsim/api/common.py,sha256=
|
7
|
+
jaxsim/api/common.py,sha256=DV-WZG28sikXopNv458aYvpLjmiAtFr5LRscOwXusuk,6640
|
8
8
|
jaxsim/api/contact.py,sha256=Ve4ZOWkLEBRgK3KhtICxKY7YzsxYvc3lO-pPRBjqSnY,8659
|
9
|
-
jaxsim/api/data.py,sha256=
|
9
|
+
jaxsim/api/data.py,sha256=cPFy6TTm0rNpDk1O0ZxOpvBwWVPu6V14XLRMeC7x81Q,26786
|
10
10
|
jaxsim/api/joint.py,sha256=q31Kp3Cqv-yTcxijjzbj_QADFnGQyjb2al9fYZtzedo,4763
|
11
11
|
jaxsim/api/kin_dyn_parameters.py,sha256=G4mtSi8fElYe0yttLgsxSOPf7vcK-yqTu06Aa5SSrYg,26012
|
12
12
|
jaxsim/api/link.py,sha256=LZVcQhQsTKsfR13KewFtEMYu4siVJl7mqoDwYsoFFes,9240
|
13
|
-
jaxsim/api/model.py,sha256=
|
14
|
-
jaxsim/api/ode.py,sha256=
|
13
|
+
jaxsim/api/model.py,sha256=Kpe5PQHP1VCS8Xmu4M_aa6EAJFPkOCO_Y11-TGhEtq8,44091
|
14
|
+
jaxsim/api/ode.py,sha256=6l-6i2YHagsQvR8Ac-_fmO6P0hBVT6NkHhwXnrdITEg,9785
|
15
15
|
jaxsim/api/ode_data.py,sha256=dwRFVPJ30XMmdUbPXEu7YxsQ97jZP4L4fd5ZzhrO5Ys,22184
|
16
16
|
jaxsim/api/references.py,sha256=Lvskf17r619KKxwCJP7hAAty2kaXgDXJX1uKqoDIDgo,15483
|
17
17
|
jaxsim/integrators/__init__.py,sha256=hxvOD-VK_mmd6v31wtC-nb28AYve1gLuZCNLV9wS-Kg,103
|
18
|
-
jaxsim/integrators/common.py,sha256=
|
18
|
+
jaxsim/integrators/common.py,sha256=9HXRVFo95Mpt6RcVhBrOfvOO7mDxqbkXeg_lKUibEFY,20693
|
19
19
|
jaxsim/integrators/fixed_step.py,sha256=JXaEyEzfSiYea0GnPA7l27J3X0YPB0e25D4qfrxAvzQ,2766
|
20
20
|
jaxsim/integrators/variable_step.py,sha256=jq3PStzFiMciU7lux6CTj4B3gVOfSpYgK2oz2yzIbdo,21380
|
21
21
|
jaxsim/math/__init__.py,sha256=inJ9nRFkqstuGa8OyFkfWVudo5U9Ug4WgDBuKva8AIA,337
|
@@ -26,14 +26,14 @@ jaxsim/math/joint_model.py,sha256=LKLB26VMz6vx9JLdFUWhGyrElYFEQV-bJiQO5kaZUGY,10
|
|
26
26
|
jaxsim/math/quaternion.py,sha256=X9b8jHf0QemKUjIZSnXRJc3DdMr42CBhBy_mi9_X_AM,5068
|
27
27
|
jaxsim/math/rotation.py,sha256=Z90daUjGpuNEVLfWB3SVtM9EtwAIaneVj9A9UpWXqhA,2182
|
28
28
|
jaxsim/math/skew.py,sha256=oOGSSR8PUGROl6IJFlrmu6K3gPH-u16hUPfKIkcVv9o,1177
|
29
|
-
jaxsim/math/transform.py,sha256=
|
29
|
+
jaxsim/math/transform.py,sha256=boeuN8df4Yd9NvS64g-xUYoNqG91YafYLam4iITFJVg,2917
|
30
30
|
jaxsim/mujoco/__init__.py,sha256=Zo5GAlN1DYKvX8s1hu1j6HntKIbBMLB9Puv9ouaNAZ8,158
|
31
31
|
jaxsim/mujoco/__main__.py,sha256=GBmB7J-zj75ZnFyuAAmpSOpbxi_HhHhWJeot3ljGDJY,5291
|
32
|
-
jaxsim/mujoco/loaders.py,sha256=
|
33
|
-
jaxsim/mujoco/model.py,sha256=
|
32
|
+
jaxsim/mujoco/loaders.py,sha256=PG6TrmurdF99B_HJW39daNXMYlwGy3JMofb4oTRwPLc,17406
|
33
|
+
jaxsim/mujoco/model.py,sha256=ErL4X4QWPCJJJjCAMHsFsksYTgIpmV_M8xWPZc-gQcA,12117
|
34
34
|
jaxsim/mujoco/visualizer.py,sha256=-qg26t5tleTva6zzQmc5SdnlC8XZ1ZAwZ_lDjdwHJ0A,4400
|
35
35
|
jaxsim/parsers/__init__.py,sha256=sonYi-bBWAoB04kp1mxT4uIORxjb7SdZ0ukGPmVx98Y,44
|
36
|
-
jaxsim/parsers/kinematic_graph.py,sha256=
|
36
|
+
jaxsim/parsers/kinematic_graph.py,sha256=_ZJr-u1m64qPCeY6BHTI56dSOWhOGfbg2HN49XbTXhA,23784
|
37
37
|
jaxsim/parsers/descriptions/__init__.py,sha256=EbTfnrK3oCxA3pNv--YUwllJ6uICENvFgAdRbYtS9ts,238
|
38
38
|
jaxsim/parsers/descriptions/collision.py,sha256=HUWwuRgI9KznY29FFw1_zU3bGigDEezrcPOJSxSJGNU,3382
|
39
39
|
jaxsim/parsers/descriptions/joint.py,sha256=hpH0ANvIhbEQk-NGRmWIvPv3lXW385TBIMWNgz5rzM4,4106
|
@@ -55,10 +55,10 @@ jaxsim/terrain/__init__.py,sha256=f7lVX-iNpH_wkkjef9Qpjh19TTAUOQw76EiLYJDVizc,78
|
|
55
55
|
jaxsim/terrain/terrain.py,sha256=q0xkWqEShVq-p1j2abTLZq8sEhjyJwquxQKm80PaHhM,2161
|
56
56
|
jaxsim/utils/__init__.py,sha256=tnQq1_CavdfeKaLYt3pmO7Jk4MU2RwwQU_qICkjyoTY,197
|
57
57
|
jaxsim/utils/hashless.py,sha256=bFIwKeo9KiWwsY8QM55duEGGQOyyJ4jQyPcuqTLEp5k,297
|
58
|
-
jaxsim/utils/jaxsim_dataclass.py,sha256=
|
58
|
+
jaxsim/utils/jaxsim_dataclass.py,sha256=T8nZolb563mYJD7YvTmYW-z-hpkEiaK3cDbYHqwtqRc,11347
|
59
59
|
jaxsim/utils/tracing.py,sha256=KDMoyVPlu2NJvFkhtZwq5AkqMMgajt3munvJom-vEjQ,650
|
60
|
-
jaxsim-0.2.
|
61
|
-
jaxsim-0.2.
|
62
|
-
jaxsim-0.2.
|
63
|
-
jaxsim-0.2.
|
64
|
-
jaxsim-0.2.
|
60
|
+
jaxsim-0.2.dev388.dist-info/LICENSE,sha256=EsU2z6_sWW4Zduzq3goVWjZoCZVKQsM4H_y0o7oRA7Q,1547
|
61
|
+
jaxsim-0.2.dev388.dist-info/METADATA,sha256=T1FlCTdSjlgSIOFqv9Fik7fMwpwIcX6Ps5N2fCElQ7I,7630
|
62
|
+
jaxsim-0.2.dev388.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
63
|
+
jaxsim-0.2.dev388.dist-info/top_level.txt,sha256=LxGMA8FLtXjQ6oI7N5gd_R_oSUHxpXxUEOfT1xS_ni0,7
|
64
|
+
jaxsim-0.2.dev388.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|