-
Notifications
You must be signed in to change notification settings - Fork 181
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PiperOrigin-RevId: 606391547 Change-Id: I8d3794f58d67ff36fcd5a46670197e1c07d8a00d
- Loading branch information
Showing
48 changed files
with
1,239 additions
and
2,124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
diff --git a/acrobot_modified.xml b/acrobot_modified.xml | ||
--- a/acrobot_modified.xml | ||
+++ b/acrobot_modified.xml | ||
@@ -6,22 +6,18 @@ | ||
IEEE control systems 15, no. 1 (1995): 49-55. | ||
--> | ||
<mujoco model="acrobot"> | ||
- <include file="./common/visual.xml"/> | ||
- <include file="./common/skybox.xml"/> | ||
- <include file="./common/materials.xml"/> | ||
- | ||
<default> | ||
<joint damping=".05"/> | ||
<geom type="capsule" mass="1"/> | ||
</default> | ||
|
||
- <option timestep="0.01" integrator="RK4"> | ||
+ <option timestep="0.01"> | ||
<flag constraint="disable" energy="enable"/> | ||
</option> | ||
|
||
<worldbody> | ||
<light name="light" pos="0 0 6"/> | ||
- <geom name="floor" size="3 3 .2" type="plane" material="grid"/> | ||
+ <geom name="floor" size="3 3 .2" type="plane" material="blue_grid"/> | ||
<site name="target" type="sphere" pos="0 0 4" size="0.2" material="target" group="3"/> | ||
<camera name="fixed" pos="0 -6 2" zaxis="0 -1 0"/> | ||
<camera name="lookat" mode="targetbodycom" target="upper_arm" pos="0 -2 3"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
diff --git a/cartpole_modified.xml b/cartpole_modified.xml | ||
--- a/cartpole_modified.xml | ||
+++ b/cartpole_modified.xml | ||
@@ -1,10 +1,6 @@ | ||
-<mujoco model="cart-pole"> | ||
- <include file="./common/skybox.xml"/> | ||
- <include file="./common/visual.xml"/> | ||
- <include file="./common/materials.xml"/> | ||
- | ||
- <option timestep="0.01" integrator="RK4"> | ||
- <flag contact="disable" energy="enable"/> | ||
+<mujoco model="Cartpole"> | ||
+ <option timestep="0.001"> | ||
+ <flag contact="disable"/> | ||
</option> | ||
|
||
<default> | ||
@@ -18,15 +14,16 @@ | ||
<light name="light" pos="0 0 6"/> | ||
<camera name="fixed" pos="0 -4 1" zaxis="0 -1 0"/> | ||
<camera name="lookatcart" mode="targetbody" target="cart" pos="0 -2 2"/> | ||
- <geom name="floor" pos="0 0 -.05" size="4 4 .2" type="plane" material="grid"/> | ||
+ <geom name="floor" pos="0 0 -.05" size="4 4 .2" type="plane" material="blue_grid"/> | ||
<geom name="rail1" type="capsule" pos="0 .07 1" zaxis="1 0 0" size="0.02 2" material="decoration" /> | ||
<geom name="rail2" type="capsule" pos="0 -.07 1" zaxis="1 0 0" size="0.02 2" material="decoration" /> | ||
<body name="cart" pos="0 0 1"> | ||
- <joint name="slider" type="slide" limited="true" axis="1 0 0" range="-1.8 1.8" solreflimit=".08 1" damping="5e-4"/> | ||
+ <joint name="slider" type="slide" limited="true" axis="1 0 0" range="-1.8 1.8" solreflimit=".08 1" damping="1.0e-4"/> | ||
<geom name="cart" type="box" size="0.2 0.15 0.1" material="self" mass="1"/> | ||
<body name="pole_1" childclass="pole"> | ||
- <joint name="hinge_1"/> | ||
+ <joint name="hinge_1" damping="1.0e-4"/> | ||
<geom name="pole_1"/> | ||
+ <site name="tip" pos="0 0 1"/> | ||
</body> | ||
</body> | ||
</worldbody> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.