File tree Expand file tree Collapse file tree 5 files changed +5
-4
lines changed
include/mujoco/experimental/usd/mjcPhysics
experimental/usd/mjcPhysics Expand file tree Collapse file tree 5 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -674,7 +674,7 @@ class MjcPhysicsSceneAPI : public UsdAPISchemaBase {
674
674
// /
675
675
// / | ||
676
676
// / | -- | -- |
677
- // / | Declaration | `uniform int mjc:option:ccd_iterations = 50 ` |
677
+ // / | Declaration | `uniform int mjc:option:ccd_iterations = 35 ` |
678
678
// / | C++ Type | int |
679
679
// / | \ref Usd_Datatypes "Usd Type" | SdfValueTypeNames->Int |
680
680
// / | \ref SdfVariability "Variability" | SdfVariabilityUniform |
Original file line number Diff line number Diff line change @@ -229,6 +229,7 @@ def test_plane_ellipsoid(self):
229
229
230
230
_ELLIPSOID_ELLIPSOID = """
231
231
<mujoco>
232
+ <option ccd_iterations="50"/>
232
233
<worldbody>
233
234
<body>
234
235
<geom size=".15 .03 .05" type="ellipsoid"/>
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ void mj_defaultOption(mjOption* opt) {
119
119
opt -> iterations = 100 ;
120
120
opt -> ls_iterations = 50 ;
121
121
opt -> noslip_iterations = 0 ;
122
- opt -> ccd_iterations = 50 ;
122
+ opt -> ccd_iterations = 35 ;
123
123
opt -> disableflags = 0 ;
124
124
opt -> enableflags = 0 ;
125
125
opt -> disableactuator = 0 ;
Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ class "MjcSceneAPI" (
175
175
doc = """Determines the rate (in Hz) at which an external API allows
176
176
the update function to be executed."""
177
177
)
178
- uniform int mjc:option:ccd_iterations = 50 (
178
+ uniform int mjc:option:ccd_iterations = 35 (
179
179
displayName = "CCD Iterations"
180
180
doc = "Maximum number of iterations of the algorithm used for convex collisions."
181
181
)
Original file line number Diff line number Diff line change @@ -283,7 +283,7 @@ class "MjcSceneAPI"
283
283
doc = """Tolerance threshold used for early termination of the Noslip solver."""
284
284
)
285
285
286
- uniform int mjc:option:ccd_iterations = 50 (
286
+ uniform int mjc:option:ccd_iterations = 35 (
287
287
customData = {
288
288
string apiName = "CCDIterations"
289
289
}
You can’t perform that action at this time.
0 commit comments