depthEmMind commited on
Commit
20595cc
·
verified ·
1 Parent(s): 48170a5

Upload folder using huggingface_hub

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. objects/food/.gitkeep +0 -0
  2. objects/furniture/table_01/LICENSE +7 -0
  3. objects/furniture/table_01/asset.yaml +115 -0
  4. objects/furniture/table_01/collision/table_collision.obj +22 -0
  5. objects/furniture/table_01/isaac/model.usda +30 -0
  6. objects/furniture/table_01/mujoco/model.xml +20 -0
  7. objects/furniture/table_01/preview/preview.png +3 -0
  8. objects/furniture/table_01/visual/table.glb +0 -0
  9. objects/household/cup_white/LICENSE +7 -0
  10. objects/household/cup_white/asset.yaml +134 -0
  11. objects/household/cup_white/collision/cup_collision.obj +243 -0
  12. objects/household/cup_white/isaac/model.usda +33 -0
  13. objects/household/cup_white/mujoco/model.xml +17 -0
  14. objects/household/cup_white/preview/preview.png +3 -0
  15. objects/household/cup_white/visual/cup.glb +0 -0
  16. objects/industrial/.gitkeep +0 -0
  17. objects/laboratory/sink_01/LICENSE +7 -0
  18. objects/laboratory/sink_01/asset.yaml +120 -0
  19. objects/laboratory/sink_01/collision/sink_collision.obj +22 -0
  20. objects/laboratory/sink_01/isaac/model.usda +25 -0
  21. objects/laboratory/sink_01/mujoco/model.xml +12 -0
  22. objects/laboratory/sink_01/preview/preview.png +3 -0
  23. objects/laboratory/sink_01/visual/sink.glb +0 -0
  24. objects/miscellaneous/.gitkeep +0 -0
  25. objects/tools/.gitkeep +0 -0
  26. robots/humanoid/unimind_humanoid/LICENSE +7 -0
  27. robots/humanoid/unimind_humanoid/asset.yaml +173 -0
  28. robots/humanoid/unimind_humanoid/collision/pelvis.obj +22 -0
  29. robots/humanoid/unimind_humanoid/controllers/.gitkeep +0 -0
  30. robots/humanoid/unimind_humanoid/isaac/robot.usda +42 -0
  31. robots/humanoid/unimind_humanoid/meshes/pelvis.obj +22 -0
  32. robots/humanoid/unimind_humanoid/mujoco/robot.xml +112 -0
  33. robots/humanoid/unimind_humanoid/preview/preview.png +3 -0
  34. robots/humanoid/unimind_humanoid/sensors/.gitkeep +0 -0
  35. robots/humanoid/unimind_humanoid/textures/.gitkeep +0 -0
  36. robots/humanoid/unimind_humanoid/urdf/robot.urdf +204 -0
  37. robots/mobile_manipulator/.gitkeep +0 -0
  38. robots/quadruped/.gitkeep +0 -0
  39. scenes/kitchen/.gitkeep +0 -0
  40. scenes/kitchen/kitchen_basic/LICENSE +7 -0
  41. scenes/kitchen/kitchen_basic/asset.yaml +90 -0
  42. scenes/kitchen/kitchen_basic/isaac/scene.usda +39 -0
  43. scenes/kitchen/kitchen_basic/mujoco/scene.xml +28 -0
  44. scenes/kitchen/robocasa_kitchens/LICENSE +9 -0
  45. scenes/kitchen/robocasa_kitchens/asset.yaml +100 -0
  46. scenes/kitchen/robocasa_kitchens/catalog.yaml +13 -0
  47. scenes/kitchen/robocasa_kitchens/mujoco/catalog.xml +8 -0
  48. scenes/lab/laboratory_basic/LICENSE +7 -0
  49. scenes/lab/laboratory_basic/asset.yaml +90 -0
  50. scenes/lab/laboratory_basic/isaac/scene.usda +44 -0
objects/food/.gitkeep ADDED
File without changes
objects/furniture/table_01/LICENSE ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ This asset is licensed under Creative Commons Attribution 4.0 International (CC-BY-4.0).
2
+
3
+ SPDX-License-Identifier: CC-BY-4.0
4
+ https://creativecommons.org/licenses/by/4.0/
5
+
6
+ You are free to share and adapt this material for any purpose, including
7
+ commercially, provided you give appropriate credit to UniEMind.
objects/furniture/table_01/asset.yaml ADDED
@@ -0,0 +1,115 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ schema_version: "0.1"
2
+
3
+ asset:
4
+ id: "table_01"
5
+ name: "Laboratory Table"
6
+ type: "object"
7
+ category: "furniture"
8
+ version: "1.0.0"
9
+ description: "Reference work table for laboratory scenes."
10
+ tags: ["furniture", "support", "laboratory"]
11
+
12
+ coordinate:
13
+ up: "Z"
14
+ forward: "-Y"
15
+ right: "X"
16
+
17
+ units:
18
+ length: "m"
19
+ mass: "kg"
20
+ time: "s"
21
+ angle: "rad"
22
+ force: "N"
23
+ torque: "N*m"
24
+ velocity: "m/s"
25
+ acceleration: "m/s2"
26
+
27
+ geometry:
28
+ visual:
29
+ format: "glb"
30
+ file: "visual/table.glb"
31
+ collision:
32
+ format: "obj"
33
+ file: "collision/table_collision.obj"
34
+
35
+ physics:
36
+ mass:
37
+ value: 28.0
38
+ unit: "kg"
39
+ source:
40
+ type: "estimated"
41
+ method: "geometry_density"
42
+ center_of_mass:
43
+ value: [0.0, 0.0, 0.74]
44
+ unit: "m"
45
+ source:
46
+ type: "estimated"
47
+ inertia:
48
+ ixx: 1.2
49
+ iyy: 3.4
50
+ izz: 4.1
51
+ ixy: 0.0
52
+ ixz: 0.0
53
+ iyz: 0.0
54
+ unit: "kg*m2"
55
+ source:
56
+ type: "estimated"
57
+ friction:
58
+ static: 0.5
59
+ dynamic: 0.4
60
+ restitution: 0.05
61
+ contact:
62
+ restitution: 0.05
63
+ stiffness: 200000
64
+ damping: 200
65
+ material:
66
+ name: "wood"
67
+ density:
68
+ value: 700
69
+ unit: "kg/m3"
70
+
71
+ semantics:
72
+ category: "support"
73
+ properties:
74
+ material: "wood"
75
+ color: "brown"
76
+ ontology:
77
+ id: "unimind:table"
78
+
79
+ affordances:
80
+ - type: "support"
81
+ region: "top"
82
+ - type: "place"
83
+
84
+ license:
85
+ spdx: "CC-BY-4.0"
86
+ file: "LICENSE"
87
+ attribution_required: true
88
+ commercial_use: true
89
+ modification: true
90
+ redistribution: true
91
+
92
+ provenance:
93
+ source_type: "generated"
94
+ creator: "UniEMind Community"
95
+ created_at: "2026-08-21"
96
+
97
+ compatibility:
98
+ mujoco:
99
+ supported: true
100
+ min_version: "3.x"
101
+ file: "mujoco/model.xml"
102
+ isaac_sim:
103
+ supported: true
104
+ min_version: "5.x"
105
+ file: "isaac/model.usda"
106
+
107
+ quality:
108
+ level: 3
109
+ completeness:
110
+ geometry: true
111
+ collision: true
112
+ physics: true
113
+ semantics: true
114
+ affordance: true
115
+ license: true
objects/furniture/table_01/collision/table_collision.obj ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # UniEMind-Assets generated mesh
2
+ o mesh
3
+ v -0.600000 -0.350000 0.720000
4
+ v 0.600000 -0.350000 0.720000
5
+ v 0.600000 0.350000 0.720000
6
+ v -0.600000 0.350000 0.720000
7
+ v -0.600000 -0.350000 0.760000
8
+ v 0.600000 -0.350000 0.760000
9
+ v 0.600000 0.350000 0.760000
10
+ v -0.600000 0.350000 0.760000
11
+ f 1 2 3
12
+ f 1 3 4
13
+ f 5 7 6
14
+ f 5 8 7
15
+ f 1 5 6
16
+ f 1 6 2
17
+ f 2 6 7
18
+ f 2 7 3
19
+ f 3 7 8
20
+ f 3 8 4
21
+ f 4 8 5
22
+ f 4 5 1
objects/furniture/table_01/isaac/model.usda ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #usda 1.0
2
+ (
3
+ defaultPrim = "table_01"
4
+ metersPerUnit = 1
5
+ upAxis = "Z"
6
+ )
7
+
8
+ def Xform "table_01" (
9
+ assetInfo = {
10
+ string identifier = "table_01"
11
+ string version = "1.0.0"
12
+ }
13
+ )
14
+ {
15
+ def Cube "top" (
16
+ prepend apiSchemas = ["PhysicsCollisionAPI"]
17
+ )
18
+ {
19
+ double size = 1
20
+ double3 xformOp:scale = (1.2, 0.7, 0.04)
21
+ double3 xformOp:translate = (0, 0, 0.74)
22
+ uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:scale"]
23
+ color3f[] primvars:displayColor = [(0.63, 0.43, 0.27)]
24
+ }
25
+
26
+ def Cube "leg_fl" { double3 xformOp:scale = (0.06, 0.06, 0.72); double3 xformOp:translate = ( 0.52, 0.28, 0.36); uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:scale"]; }
27
+ def Cube "leg_fr" { double3 xformOp:scale = (0.06, 0.06, 0.72); double3 xformOp:translate = ( 0.52, -0.28, 0.36); uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:scale"]; }
28
+ def Cube "leg_rl" { double3 xformOp:scale = (0.06, 0.06, 0.72); double3 xformOp:translate = (-0.52, 0.28, 0.36); uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:scale"]; }
29
+ def Cube "leg_rr" { double3 xformOp:scale = (0.06, 0.06, 0.72); double3 xformOp:translate = (-0.52, -0.28, 0.36); uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:scale"]; }
30
+ }
objects/furniture/table_01/mujoco/model.xml ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <mujoco model="table_01">
2
+ <compiler angle="radian" meshdir="../collision" autolimits="true"/>
3
+ <option gravity="0 0 -9.81"/>
4
+ <default>
5
+ <geom condim="3" friction="0.5 0.4 0.01"/>
6
+ </default>
7
+ <asset>
8
+ <mesh name="table_collision" file="table_collision.obj"/>
9
+ </asset>
10
+ <worldbody>
11
+ <body name="table_01" pos="0 0 0">
12
+ <geom type="mesh" mesh="table_collision" mass="28" rgba="0.63 0.43 0.27 1"/>
13
+ <geom type="box" size="0.6 0.35 0.02" pos="0 0 0.74" mass="18" rgba="0.63 0.43 0.27 1"/>
14
+ <geom type="box" size="0.03 0.03 0.36" pos=" 0.52 0.28 0.36" mass="2.5"/>
15
+ <geom type="box" size="0.03 0.03 0.36" pos=" 0.52 -0.28 0.36" mass="2.5"/>
16
+ <geom type="box" size="0.03 0.03 0.36" pos="-0.52 0.28 0.36" mass="2.5"/>
17
+ <geom type="box" size="0.03 0.03 0.36" pos="-0.52 -0.28 0.36" mass="2.5"/>
18
+ </body>
19
+ </worldbody>
20
+ </mujoco>
objects/furniture/table_01/preview/preview.png ADDED

Git LFS Details

  • SHA256: 6eee33166e710b6b0303171c551a371d04377acda5cec523487fdc60ca40ad20
  • Pointer size: 128 Bytes
  • Size of remote file: 776 Bytes
objects/furniture/table_01/visual/table.glb ADDED
Binary file (736 Bytes). View file
 
objects/household/cup_white/LICENSE ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ This asset is licensed under Creative Commons Attribution 4.0 International (CC-BY-4.0).
2
+
3
+ SPDX-License-Identifier: CC-BY-4.0
4
+ https://creativecommons.org/licenses/by/4.0/
5
+
6
+ You are free to share and adapt this material for any purpose, including
7
+ commercially, provided you give appropriate credit to UniEMind.
objects/household/cup_white/asset.yaml ADDED
@@ -0,0 +1,134 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ schema_version: "0.1"
2
+
3
+ asset:
4
+ id: "cup_white"
5
+ name: "White Ceramic Cup"
6
+ type: "object"
7
+ category: "household"
8
+ version: "1.0.0"
9
+ description: "Reference household cup used by the laboratory_basic scene."
10
+ tags: ["container", "grasp", "kitchen"]
11
+
12
+ coordinate:
13
+ up: "Z"
14
+ forward: "-Y"
15
+ right: "X"
16
+
17
+ units:
18
+ length: "m"
19
+ mass: "kg"
20
+ time: "s"
21
+ angle: "rad"
22
+ force: "N"
23
+ torque: "N*m"
24
+ velocity: "m/s"
25
+ acceleration: "m/s2"
26
+
27
+ geometry:
28
+ visual:
29
+ format: "glb"
30
+ file: "visual/cup.glb"
31
+ collision:
32
+ format: "obj"
33
+ file: "collision/cup_collision.obj"
34
+
35
+ physics:
36
+ mass:
37
+ value: 0.25
38
+ unit: "kg"
39
+ source:
40
+ type: "estimated"
41
+ method: "geometry_density"
42
+ confidence:
43
+ value: 0.7
44
+ center_of_mass:
45
+ value: [0.0, 0.0, 0.04]
46
+ unit: "m"
47
+ source:
48
+ type: "estimated"
49
+ method: "geometry_density"
50
+ inertia:
51
+ ixx: 0.00035
52
+ iyy: 0.00035
53
+ izz: 0.00028
54
+ ixy: 0.0
55
+ ixz: 0.0
56
+ iyz: 0.0
57
+ unit: "kg*m2"
58
+ source:
59
+ type: "estimated"
60
+ friction:
61
+ static: 0.6
62
+ dynamic: 0.4
63
+ rolling: 0.01
64
+ restitution: 0.2
65
+ contact:
66
+ restitution: 0.2
67
+ stiffness: 100000
68
+ damping: 100
69
+ material:
70
+ name: "ceramic"
71
+ density:
72
+ value: 2300
73
+ unit: "kg/m3"
74
+ poisson_ratio: 0.2
75
+
76
+ semantics:
77
+ category: "container"
78
+ properties:
79
+ material: "ceramic"
80
+ color: "white"
81
+ state: "empty"
82
+ ontology:
83
+ id: "unimind:container"
84
+
85
+ affordances:
86
+ - type: "grasp"
87
+ region: "body"
88
+ - type: "contain"
89
+ capacity:
90
+ value: 0.3
91
+ unit: "L"
92
+ - type: "pour"
93
+ direction: "local_-Z"
94
+
95
+ state:
96
+ default:
97
+ fill_level: 0.0
98
+ temperature:
99
+ value: 293.15
100
+ unit: "K"
101
+
102
+ license:
103
+ spdx: "CC-BY-4.0"
104
+ file: "LICENSE"
105
+ attribution_required: true
106
+ commercial_use: true
107
+ modification: true
108
+ redistribution: true
109
+
110
+ provenance:
111
+ source_type: "generated"
112
+ creator: "UniEMind Community"
113
+ created_at: "2026-08-21"
114
+ notes: "Procedural reference mesh for Architecture V0.1."
115
+
116
+ compatibility:
117
+ mujoco:
118
+ supported: true
119
+ min_version: "3.x"
120
+ file: "mujoco/model.xml"
121
+ isaac_sim:
122
+ supported: true
123
+ min_version: "5.x"
124
+ file: "isaac/model.usda"
125
+
126
+ quality:
127
+ level: 3
128
+ completeness:
129
+ geometry: true
130
+ collision: true
131
+ physics: true
132
+ semantics: true
133
+ affordance: true
134
+ license: true
objects/household/cup_white/collision/cup_collision.obj ADDED
@@ -0,0 +1,243 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # UniEMind-Assets generated mesh
2
+ o mesh
3
+ v 0.040000 0.000000 0.000000
4
+ v 0.038637 0.010353 0.000000
5
+ v 0.034641 0.020000 0.000000
6
+ v 0.028284 0.028284 0.000000
7
+ v 0.020000 0.034641 0.000000
8
+ v 0.010353 0.038637 0.000000
9
+ v 0.000000 0.040000 0.000000
10
+ v -0.010353 0.038637 0.000000
11
+ v -0.020000 0.034641 0.000000
12
+ v -0.028284 0.028284 0.000000
13
+ v -0.034641 0.020000 0.000000
14
+ v -0.038637 0.010353 0.000000
15
+ v -0.040000 0.000000 0.000000
16
+ v -0.038637 -0.010353 0.000000
17
+ v -0.034641 -0.020000 0.000000
18
+ v -0.028284 -0.028284 0.000000
19
+ v -0.020000 -0.034641 0.000000
20
+ v -0.010353 -0.038637 0.000000
21
+ v -0.000000 -0.040000 0.000000
22
+ v 0.010353 -0.038637 0.000000
23
+ v 0.020000 -0.034641 0.000000
24
+ v 0.028284 -0.028284 0.000000
25
+ v 0.034641 -0.020000 0.000000
26
+ v 0.038637 -0.010353 0.000000
27
+ v 0.040000 0.000000 0.090000
28
+ v 0.038637 0.010353 0.090000
29
+ v 0.034641 0.020000 0.090000
30
+ v 0.028284 0.028284 0.090000
31
+ v 0.020000 0.034641 0.090000
32
+ v 0.010353 0.038637 0.090000
33
+ v 0.000000 0.040000 0.090000
34
+ v -0.010353 0.038637 0.090000
35
+ v -0.020000 0.034641 0.090000
36
+ v -0.028284 0.028284 0.090000
37
+ v -0.034641 0.020000 0.090000
38
+ v -0.038637 0.010353 0.090000
39
+ v -0.040000 0.000000 0.090000
40
+ v -0.038637 -0.010353 0.090000
41
+ v -0.034641 -0.020000 0.090000
42
+ v -0.028284 -0.028284 0.090000
43
+ v -0.020000 -0.034641 0.090000
44
+ v -0.010353 -0.038637 0.090000
45
+ v -0.000000 -0.040000 0.090000
46
+ v 0.010353 -0.038637 0.090000
47
+ v 0.020000 -0.034641 0.090000
48
+ v 0.028284 -0.028284 0.090000
49
+ v 0.034641 -0.020000 0.090000
50
+ v 0.038637 -0.010353 0.090000
51
+ v 0.032000 0.000000 0.000000
52
+ v 0.030910 0.008282 0.000000
53
+ v 0.027713 0.016000 0.000000
54
+ v 0.022627 0.022627 0.000000
55
+ v 0.016000 0.027713 0.000000
56
+ v 0.008282 0.030910 0.000000
57
+ v 0.000000 0.032000 0.000000
58
+ v -0.008282 0.030910 0.000000
59
+ v -0.016000 0.027713 0.000000
60
+ v -0.022627 0.022627 0.000000
61
+ v -0.027713 0.016000 0.000000
62
+ v -0.030910 0.008282 0.000000
63
+ v -0.032000 0.000000 0.000000
64
+ v -0.030910 -0.008282 0.000000
65
+ v -0.027713 -0.016000 0.000000
66
+ v -0.022627 -0.022627 0.000000
67
+ v -0.016000 -0.027713 0.000000
68
+ v -0.008282 -0.030910 0.000000
69
+ v -0.000000 -0.032000 0.000000
70
+ v 0.008282 -0.030910 0.000000
71
+ v 0.016000 -0.027713 0.000000
72
+ v 0.022627 -0.022627 0.000000
73
+ v 0.027713 -0.016000 0.000000
74
+ v 0.030910 -0.008282 0.000000
75
+ v 0.032000 0.000000 0.090000
76
+ v 0.030910 0.008282 0.090000
77
+ v 0.027713 0.016000 0.090000
78
+ v 0.022627 0.022627 0.090000
79
+ v 0.016000 0.027713 0.090000
80
+ v 0.008282 0.030910 0.090000
81
+ v 0.000000 0.032000 0.090000
82
+ v -0.008282 0.030910 0.090000
83
+ v -0.016000 0.027713 0.090000
84
+ v -0.022627 0.022627 0.090000
85
+ v -0.027713 0.016000 0.090000
86
+ v -0.030910 0.008282 0.090000
87
+ v -0.032000 0.000000 0.090000
88
+ v -0.030910 -0.008282 0.090000
89
+ v -0.027713 -0.016000 0.090000
90
+ v -0.022627 -0.022627 0.090000
91
+ v -0.016000 -0.027713 0.090000
92
+ v -0.008282 -0.030910 0.090000
93
+ v -0.000000 -0.032000 0.090000
94
+ v 0.008282 -0.030910 0.090000
95
+ v 0.016000 -0.027713 0.090000
96
+ v 0.022627 -0.022627 0.090000
97
+ v 0.027713 -0.016000 0.090000
98
+ v 0.030910 -0.008282 0.090000
99
+ v 0.000000 0.000000 0.000000
100
+ f 1 2 26
101
+ f 1 26 25
102
+ f 49 73 74
103
+ f 49 74 50
104
+ f 1 50 2
105
+ f 1 49 50
106
+ f 2 3 27
107
+ f 2 27 26
108
+ f 50 74 75
109
+ f 50 75 51
110
+ f 2 51 3
111
+ f 2 50 51
112
+ f 3 4 28
113
+ f 3 28 27
114
+ f 51 75 76
115
+ f 51 76 52
116
+ f 3 52 4
117
+ f 3 51 52
118
+ f 4 5 29
119
+ f 4 29 28
120
+ f 52 76 77
121
+ f 52 77 53
122
+ f 4 53 5
123
+ f 4 52 53
124
+ f 5 6 30
125
+ f 5 30 29
126
+ f 53 77 78
127
+ f 53 78 54
128
+ f 5 54 6
129
+ f 5 53 54
130
+ f 6 7 31
131
+ f 6 31 30
132
+ f 54 78 79
133
+ f 54 79 55
134
+ f 6 55 7
135
+ f 6 54 55
136
+ f 7 8 32
137
+ f 7 32 31
138
+ f 55 79 80
139
+ f 55 80 56
140
+ f 7 56 8
141
+ f 7 55 56
142
+ f 8 9 33
143
+ f 8 33 32
144
+ f 56 80 81
145
+ f 56 81 57
146
+ f 8 57 9
147
+ f 8 56 57
148
+ f 9 10 34
149
+ f 9 34 33
150
+ f 57 81 82
151
+ f 57 82 58
152
+ f 9 58 10
153
+ f 9 57 58
154
+ f 10 11 35
155
+ f 10 35 34
156
+ f 58 82 83
157
+ f 58 83 59
158
+ f 10 59 11
159
+ f 10 58 59
160
+ f 11 12 36
161
+ f 11 36 35
162
+ f 59 83 84
163
+ f 59 84 60
164
+ f 11 60 12
165
+ f 11 59 60
166
+ f 12 13 37
167
+ f 12 37 36
168
+ f 60 84 85
169
+ f 60 85 61
170
+ f 12 61 13
171
+ f 12 60 61
172
+ f 13 14 38
173
+ f 13 38 37
174
+ f 61 85 86
175
+ f 61 86 62
176
+ f 13 62 14
177
+ f 13 61 62
178
+ f 14 15 39
179
+ f 14 39 38
180
+ f 62 86 87
181
+ f 62 87 63
182
+ f 14 63 15
183
+ f 14 62 63
184
+ f 15 16 40
185
+ f 15 40 39
186
+ f 63 87 88
187
+ f 63 88 64
188
+ f 15 64 16
189
+ f 15 63 64
190
+ f 16 17 41
191
+ f 16 41 40
192
+ f 64 88 89
193
+ f 64 89 65
194
+ f 16 65 17
195
+ f 16 64 65
196
+ f 17 18 42
197
+ f 17 42 41
198
+ f 65 89 90
199
+ f 65 90 66
200
+ f 17 66 18
201
+ f 17 65 66
202
+ f 18 19 43
203
+ f 18 43 42
204
+ f 66 90 91
205
+ f 66 91 67
206
+ f 18 67 19
207
+ f 18 66 67
208
+ f 19 20 44
209
+ f 19 44 43
210
+ f 67 91 92
211
+ f 67 92 68
212
+ f 19 68 20
213
+ f 19 67 68
214
+ f 20 21 45
215
+ f 20 45 44
216
+ f 68 92 93
217
+ f 68 93 69
218
+ f 20 69 21
219
+ f 20 68 69
220
+ f 21 22 46
221
+ f 21 46 45
222
+ f 69 93 94
223
+ f 69 94 70
224
+ f 21 70 22
225
+ f 21 69 70
226
+ f 22 23 47
227
+ f 22 47 46
228
+ f 70 94 95
229
+ f 70 95 71
230
+ f 22 71 23
231
+ f 22 70 71
232
+ f 23 24 48
233
+ f 23 48 47
234
+ f 71 95 96
235
+ f 71 96 72
236
+ f 23 72 24
237
+ f 23 71 72
238
+ f 24 1 25
239
+ f 24 25 48
240
+ f 72 96 73
241
+ f 72 73 49
242
+ f 24 49 1
243
+ f 24 72 49
objects/household/cup_white/isaac/model.usda ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #usda 1.0
2
+ (
3
+ defaultPrim = "cup_white"
4
+ metersPerUnit = 1
5
+ upAxis = "Z"
6
+ )
7
+
8
+ def Xform "cup_white" (
9
+ assetInfo = {
10
+ string identifier = "cup_white"
11
+ string version = "1.0.0"
12
+ }
13
+ )
14
+ {
15
+ def Mesh "visual" {
16
+ float3[] extent = [(-0.04, -0.04, 0.0), (0.04, 0.04, 0.09)]
17
+ int[] faceVertexCounts = [4, 4, 4, 4]
18
+ int[] faceVertexIndices = [0, 1, 2, 3, 4, 5, 6, 7, 0, 4, 7, 3, 1, 5, 6, 2]
19
+ point3f[] points = [(-0.04, -0.04, 0), (0.04, -0.04, 0), (0.04, 0.04, 0), (-0.04, 0.04, 0), (-0.04, -0.04, 0.09), (0.04, -0.04, 0.09), (0.04, 0.04, 0.09), (-0.04, 0.04, 0.09)]
20
+ color3f[] primvars:displayColor = [(0.95, 0.95, 0.95)]
21
+ }
22
+
23
+ def Cube "collision" (
24
+ prepend apiSchemas = ["PhysicsCollisionAPI", "PhysicsRigidBodyAPI", "PhysicsMassAPI"]
25
+ )
26
+ {
27
+ double size = 1
28
+ double3 xformOp:scale = (0.08, 0.08, 0.09)
29
+ double3 xformOp:translate = (0, 0, 0.045)
30
+ uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:scale"]
31
+ float physics:mass = 0.25
32
+ }
33
+ }
objects/household/cup_white/mujoco/model.xml ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <mujoco model="cup_white">
2
+ <compiler angle="radian" meshdir="../collision" autolimits="true"/>
3
+ <option gravity="0 0 -9.81"/>
4
+ <default>
5
+ <geom condim="3" friction="0.6 0.4 0.01" solref="0.01 1" solimp="0.9 0.95 0.001"/>
6
+ </default>
7
+ <asset>
8
+ <mesh name="cup_collision" file="cup_collision.obj"/>
9
+ </asset>
10
+ <worldbody>
11
+ <body name="cup_white" pos="0 0 0.05">
12
+ <freejoint name="cup_white_free"/>
13
+ <geom type="mesh" mesh="cup_collision" mass="0.25" rgba="0.95 0.95 0.95 1"/>
14
+ <inertial pos="0 0 0.04" mass="0.25" diaginertia="0.00035 0.00035 0.00028"/>
15
+ </body>
16
+ </worldbody>
17
+ </mujoco>
objects/household/cup_white/preview/preview.png ADDED

Git LFS Details

  • SHA256: 9aab8d2dbfa7b424df887b00b09da2d89842471fc19e68f7a637b25ac06b0b6d
  • Pointer size: 128 Bytes
  • Size of remote file: 673 Bytes
objects/household/cup_white/visual/cup.glb ADDED
Binary file (2.6 kB). View file
 
objects/industrial/.gitkeep ADDED
File without changes
objects/laboratory/sink_01/LICENSE ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ This asset is licensed under Creative Commons Attribution 4.0 International (CC-BY-4.0).
2
+
3
+ SPDX-License-Identifier: CC-BY-4.0
4
+ https://creativecommons.org/licenses/by/4.0/
5
+
6
+ You are free to share and adapt this material for any purpose, including
7
+ commercially, provided you give appropriate credit to UniEMind.
objects/laboratory/sink_01/asset.yaml ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ schema_version: "0.1"
2
+
3
+ asset:
4
+ id: "sink_01"
5
+ name: "Laboratory Sink"
6
+ type: "object"
7
+ category: "laboratory"
8
+ version: "1.0.0"
9
+ description: "Reference sink used by the laboratory_basic scene."
10
+ tags: ["sink", "container", "laboratory"]
11
+
12
+ coordinate:
13
+ up: "Z"
14
+ forward: "-Y"
15
+ right: "X"
16
+
17
+ units:
18
+ length: "m"
19
+ mass: "kg"
20
+ time: "s"
21
+ angle: "rad"
22
+ force: "N"
23
+ torque: "N*m"
24
+ velocity: "m/s"
25
+ acceleration: "m/s2"
26
+
27
+ geometry:
28
+ visual:
29
+ format: "glb"
30
+ file: "visual/sink.glb"
31
+ collision:
32
+ format: "obj"
33
+ file: "collision/sink_collision.obj"
34
+
35
+ physics:
36
+ mass:
37
+ value: 18.5
38
+ unit: "kg"
39
+ source:
40
+ type: "estimated"
41
+ method: "geometry_density"
42
+ center_of_mass:
43
+ value: [0.0, 0.0, 0.88]
44
+ unit: "m"
45
+ source:
46
+ type: "estimated"
47
+ inertia:
48
+ ixx: 0.55
49
+ iyy: 0.72
50
+ izz: 0.80
51
+ ixy: 0.0
52
+ ixz: 0.0
53
+ iyz: 0.0
54
+ unit: "kg*m2"
55
+ source:
56
+ type: "estimated"
57
+ friction:
58
+ static: 0.4
59
+ dynamic: 0.3
60
+ restitution: 0.1
61
+ contact:
62
+ restitution: 0.1
63
+ stiffness: 150000
64
+ damping: 150
65
+ material:
66
+ name: "stainless_steel"
67
+ density:
68
+ value: 7800
69
+ unit: "kg/m3"
70
+ young_modulus:
71
+ value: 190000000000.0
72
+ unit: "Pa"
73
+ poisson_ratio: 0.3
74
+
75
+ semantics:
76
+ category: "sink"
77
+ properties:
78
+ material: "stainless_steel"
79
+ color: "silver"
80
+ ontology:
81
+ id: "unimind:sink"
82
+
83
+ affordances:
84
+ - type: "contain"
85
+ region: "basin"
86
+ - type: "pour"
87
+ - type: "place"
88
+
89
+ license:
90
+ spdx: "CC-BY-4.0"
91
+ file: "LICENSE"
92
+ attribution_required: true
93
+ commercial_use: true
94
+ modification: true
95
+ redistribution: true
96
+
97
+ provenance:
98
+ source_type: "generated"
99
+ creator: "UniEMind Community"
100
+ created_at: "2026-08-21"
101
+
102
+ compatibility:
103
+ mujoco:
104
+ supported: true
105
+ min_version: "3.x"
106
+ file: "mujoco/model.xml"
107
+ isaac_sim:
108
+ supported: true
109
+ min_version: "5.x"
110
+ file: "isaac/model.usda"
111
+
112
+ quality:
113
+ level: 3
114
+ completeness:
115
+ geometry: true
116
+ collision: true
117
+ physics: true
118
+ semantics: true
119
+ affordance: true
120
+ license: true
objects/laboratory/sink_01/collision/sink_collision.obj ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # UniEMind-Assets generated mesh
2
+ o mesh
3
+ v -0.300000 -0.225000 0.810000
4
+ v 0.300000 -0.225000 0.810000
5
+ v 0.300000 0.225000 0.810000
6
+ v -0.300000 0.225000 0.810000
7
+ v -0.300000 -0.225000 0.990000
8
+ v 0.300000 -0.225000 0.990000
9
+ v 0.300000 0.225000 0.990000
10
+ v -0.300000 0.225000 0.990000
11
+ f 1 2 3
12
+ f 1 3 4
13
+ f 5 7 6
14
+ f 5 8 7
15
+ f 1 5 6
16
+ f 1 6 2
17
+ f 2 6 7
18
+ f 2 7 3
19
+ f 3 7 8
20
+ f 3 8 4
21
+ f 4 8 5
22
+ f 4 5 1
objects/laboratory/sink_01/isaac/model.usda ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #usda 1.0
2
+ (
3
+ defaultPrim = "sink_01"
4
+ metersPerUnit = 1
5
+ upAxis = "Z"
6
+ )
7
+
8
+ def Xform "sink_01" (
9
+ assetInfo = {
10
+ string identifier = "sink_01"
11
+ string version = "1.0.0"
12
+ }
13
+ )
14
+ {
15
+ def Cube "basin" (
16
+ prepend apiSchemas = ["PhysicsCollisionAPI"]
17
+ )
18
+ {
19
+ double size = 1
20
+ double3 xformOp:scale = (0.6, 0.45, 0.18)
21
+ double3 xformOp:translate = (0, 0, 0.90)
22
+ uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:scale"]
23
+ color3f[] primvars:displayColor = [(0.72, 0.75, 0.78)]
24
+ }
25
+ }
objects/laboratory/sink_01/mujoco/model.xml ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <mujoco model="sink_01">
2
+ <compiler angle="radian" meshdir="../collision" autolimits="true"/>
3
+ <option gravity="0 0 -9.81"/>
4
+ <asset>
5
+ <mesh name="sink_collision" file="sink_collision.obj"/>
6
+ </asset>
7
+ <worldbody>
8
+ <body name="sink_01" pos="0 0 0">
9
+ <geom type="mesh" mesh="sink_collision" mass="18.5" rgba="0.72 0.75 0.78 1"/>
10
+ </body>
11
+ </worldbody>
12
+ </mujoco>
objects/laboratory/sink_01/preview/preview.png ADDED

Git LFS Details

  • SHA256: acfc8c9733c7cf88724f7f2cc6c73d52948ad1c368864cfcceb9fcae33d79105
  • Pointer size: 128 Bytes
  • Size of remote file: 757 Bytes
objects/laboratory/sink_01/visual/sink.glb ADDED
Binary file (740 Bytes). View file
 
objects/miscellaneous/.gitkeep ADDED
File without changes
objects/tools/.gitkeep ADDED
File without changes
robots/humanoid/unimind_humanoid/LICENSE ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ This asset is licensed under Creative Commons Attribution 4.0 International (CC-BY-4.0).
2
+
3
+ SPDX-License-Identifier: CC-BY-4.0
4
+ https://creativecommons.org/licenses/by/4.0/
5
+
6
+ You are free to share and adapt this material for any purpose, including
7
+ commercially, provided you give appropriate credit to UniEMind.
robots/humanoid/unimind_humanoid/asset.yaml ADDED
@@ -0,0 +1,173 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ schema_version: "0.1"
2
+
3
+ asset:
4
+ id: "unimind_humanoid"
5
+ name: "UniEMind Humanoid"
6
+ type: "robot"
7
+ category: "robot"
8
+ version: "1.0.0"
9
+ description: "Simplified reference humanoid for UniEMind-Assets V0.1."
10
+ tags: ["humanoid", "manipulation", "navigation"]
11
+
12
+ coordinate:
13
+ up: "Z"
14
+ forward: "-Y"
15
+ right: "X"
16
+
17
+ units:
18
+ length: "m"
19
+ mass: "kg"
20
+ time: "s"
21
+ angle: "rad"
22
+ force: "N"
23
+ torque: "N*m"
24
+ velocity: "m/s"
25
+ acceleration: "m/s2"
26
+
27
+ geometry:
28
+ visual:
29
+ format: "obj"
30
+ file: "meshes/pelvis.obj"
31
+ collision:
32
+ format: "obj"
33
+ file: "collision/pelvis.obj"
34
+
35
+ physics:
36
+ mass:
37
+ value: 62.0
38
+ unit: "kg"
39
+ source:
40
+ type: "estimated"
41
+ method: "link_sum"
42
+ center_of_mass:
43
+ value: [0.0, 0.0, 0.95]
44
+ unit: "m"
45
+ source:
46
+ type: "estimated"
47
+ inertia:
48
+ ixx: 8.5
49
+ iyy: 7.8
50
+ izz: 2.1
51
+ ixy: 0.0
52
+ ixz: 0.0
53
+ iyz: 0.0
54
+ unit: "kg*m2"
55
+ source:
56
+ type: "estimated"
57
+ friction:
58
+ static: 0.8
59
+ dynamic: 0.6
60
+ restitution: 0.0
61
+
62
+ semantics:
63
+ category: "robot"
64
+ properties:
65
+ embodiment: "humanoid"
66
+ ontology:
67
+ id: "unimind:humanoid"
68
+
69
+ affordances:
70
+ - type: "navigate"
71
+ - type: "manipulate"
72
+ - type: "grasp"
73
+
74
+ robot:
75
+ embodiment:
76
+ type: "humanoid"
77
+ mobility: "legged"
78
+ arms: 2
79
+ hands: 2
80
+ legs: 2
81
+ dof: 21
82
+ kinematics:
83
+ base_link: "pelvis"
84
+ ee_links: ["left_hand", "right_hand"]
85
+ joints:
86
+ count: 15
87
+ torso_yaw:
88
+ type: "revolute"
89
+ parent: "pelvis"
90
+ child: "torso"
91
+ axis: [0.0, 0.0, 1.0]
92
+ limits:
93
+ lower: -1.2
94
+ upper: 1.2
95
+ dynamics:
96
+ damping: 0.1
97
+ friction: 0.05
98
+ actuator:
99
+ type: "torque"
100
+ max_torque: 80
101
+ left_shoulder_pitch:
102
+ type: "revolute"
103
+ parent: "torso"
104
+ child: "left_upper_arm"
105
+ axis: [1.0, 0.0, 0.0]
106
+ limits:
107
+ lower: -2.0
108
+ upper: 2.0
109
+ dynamics:
110
+ damping: 0.1
111
+ friction: 0.05
112
+ actuator:
113
+ type: "torque"
114
+ max_torque: 40
115
+ sensors:
116
+ - id: "head_camera"
117
+ type: "rgbd"
118
+ link: "head"
119
+ fps: 30
120
+ resolution:
121
+ width: 1280
122
+ height: 720
123
+ intrinsics:
124
+ fx: 600.0
125
+ fy: 600.0
126
+ cx: 640.0
127
+ cy: 360.0
128
+ pose:
129
+ position: [0.08, 0.0, 0.12]
130
+ orientation_rpy: [0.0, 0.0, 0.0]
131
+ - id: "imu"
132
+ type: "imu"
133
+ link: "torso"
134
+ capabilities:
135
+ - navigation
136
+ - manipulation
137
+ - grasping
138
+ urdf: "urdf/robot.urdf"
139
+ mjcf: "mujoco/robot.xml"
140
+ usd: "isaac/robot.usda"
141
+
142
+ license:
143
+ spdx: "CC-BY-4.0"
144
+ file: "LICENSE"
145
+ attribution_required: true
146
+ commercial_use: true
147
+ modification: true
148
+ redistribution: true
149
+
150
+ provenance:
151
+ source_type: "generated"
152
+ creator: "UniEMind Community"
153
+ created_at: "2026-08-21"
154
+ notes: "Kinematic reference humanoid. Not a production control model."
155
+
156
+ compatibility:
157
+ mujoco:
158
+ supported: true
159
+ min_version: "3.x"
160
+ file: "mujoco/robot.xml"
161
+ isaac_sim:
162
+ supported: true
163
+ min_version: "5.x"
164
+ file: "isaac/robot.usda"
165
+
166
+ quality:
167
+ level: 2
168
+ completeness:
169
+ geometry: true
170
+ collision: true
171
+ physics: true
172
+ kinematics: true
173
+ license: true
robots/humanoid/unimind_humanoid/collision/pelvis.obj ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # UniEMind-Assets generated mesh
2
+ o mesh
3
+ v -0.110000 -0.060000 -0.080000
4
+ v 0.110000 -0.060000 -0.080000
5
+ v 0.110000 0.060000 -0.080000
6
+ v -0.110000 0.060000 -0.080000
7
+ v -0.110000 -0.060000 0.080000
8
+ v 0.110000 -0.060000 0.080000
9
+ v 0.110000 0.060000 0.080000
10
+ v -0.110000 0.060000 0.080000
11
+ f 1 2 3
12
+ f 1 3 4
13
+ f 5 7 6
14
+ f 5 8 7
15
+ f 1 5 6
16
+ f 1 6 2
17
+ f 2 6 7
18
+ f 2 7 3
19
+ f 3 7 8
20
+ f 3 8 4
21
+ f 4 8 5
22
+ f 4 5 1
robots/humanoid/unimind_humanoid/controllers/.gitkeep ADDED
File without changes
robots/humanoid/unimind_humanoid/isaac/robot.usda ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #usda 1.0
2
+ (
3
+ defaultPrim = "unimind_humanoid"
4
+ metersPerUnit = 1
5
+ upAxis = "Z"
6
+ )
7
+
8
+ def Xform "unimind_humanoid" (
9
+ assetInfo = {
10
+ string identifier = "unimind_humanoid"
11
+ string version = "1.0.0"
12
+ }
13
+ )
14
+ {
15
+ def Xform "pelvis"
16
+ {
17
+ double3 xformOp:translate = (0, 0, 0.95)
18
+ uniform token[] xformOpOrder = ["xformOp:translate"]
19
+
20
+ def Cube "visual" (
21
+ prepend apiSchemas = ["PhysicsCollisionAPI", "PhysicsRigidBodyAPI"]
22
+ )
23
+ {
24
+ double size = 1
25
+ double3 xformOp:scale = (0.22, 0.12, 0.16)
26
+ uniform token[] xformOpOrder = ["xformOp:scale"]
27
+ color3f[] primvars:displayColor = [(0.31, 0.47, 0.71)]
28
+ }
29
+
30
+ def Xform "torso"
31
+ {
32
+ double3 xformOp:translate = (0, 0, 0.14)
33
+ uniform token[] xformOpOrder = ["xformOp:translate"]
34
+ def Cube "visual" { double3 xformOp:scale = (0.22, 0.12, 0.28); uniform token[] xformOpOrder = ["xformOp:scale"]; }
35
+ def Xform "head" { double3 xformOp:translate = (0, 0, 0.22); uniform token[] xformOpOrder = ["xformOp:translate"]; def Cube "visual" { double3 xformOp:scale = (0.14, 0.12, 0.16); uniform token[] xformOpOrder = ["xformOp:scale"]; } }
36
+ def Xform "left_upper_arm" { double3 xformOp:translate = (0, 0.16, 0.18); uniform token[] xformOpOrder = ["xformOp:translate"]; def Cube "visual" { double3 xformOp:scale = (0.08, 0.08, 0.25); double3 xformOp:translate = (0, 0, -0.125); uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:scale"]; } }
37
+ def Xform "right_upper_arm" { double3 xformOp:translate = (0, -0.16, 0.18); uniform token[] xformOpOrder = ["xformOp:translate"]; def Cube "visual" { double3 xformOp:scale = (0.08, 0.08, 0.25); double3 xformOp:translate = (0, 0, -0.125); uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:scale"]; } }
38
+ }
39
+ def Xform "left_thigh" { double3 xformOp:translate = (0, 0.08, -0.12); uniform token[] xformOpOrder = ["xformOp:translate"]; def Cube "visual" { double3 xformOp:scale = (0.10, 0.10, 0.35); double3 xformOp:translate = (0, 0, -0.175); uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:scale"]; } }
40
+ def Xform "right_thigh" { double3 xformOp:translate = (0, -0.08, -0.12); uniform token[] xformOpOrder = ["xformOp:translate"]; def Cube "visual" { double3 xformOp:scale = (0.10, 0.10, 0.35); double3 xformOp:translate = (0, 0, -0.175); uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:scale"]; } }
41
+ }
42
+ }
robots/humanoid/unimind_humanoid/meshes/pelvis.obj ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # UniEMind-Assets generated mesh
2
+ o mesh
3
+ v -0.110000 -0.060000 -0.080000
4
+ v 0.110000 -0.060000 -0.080000
5
+ v 0.110000 0.060000 -0.080000
6
+ v -0.110000 0.060000 -0.080000
7
+ v -0.110000 -0.060000 0.080000
8
+ v 0.110000 -0.060000 0.080000
9
+ v 0.110000 0.060000 0.080000
10
+ v -0.110000 0.060000 0.080000
11
+ f 1 2 3
12
+ f 1 3 4
13
+ f 5 7 6
14
+ f 5 8 7
15
+ f 1 5 6
16
+ f 1 6 2
17
+ f 2 6 7
18
+ f 2 7 3
19
+ f 3 7 8
20
+ f 3 8 4
21
+ f 4 8 5
22
+ f 4 5 1
robots/humanoid/unimind_humanoid/mujoco/robot.xml ADDED
@@ -0,0 +1,112 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <mujoco model="unimind_humanoid">
2
+ <compiler angle="radian" autolimits="true"/>
3
+ <option gravity="0 0 -9.81" timestep="0.002"/>
4
+ <default>
5
+ <joint damping="0.1" frictionloss="0.05" limited="true"/>
6
+ <geom condim="3" friction="0.8 0.6 0.01" rgba="0.31 0.47 0.71 1"/>
7
+ <motor ctrllimited="true"/>
8
+ </default>
9
+ <worldbody>
10
+ <light pos="1 1 3" dir="-0.3 -0.3 -1"/>
11
+ <body name="pelvis" pos="0 0 0.95">
12
+ <freejoint name="root"/>
13
+ <inertial pos="0 0 0" mass="8" diaginertia="0.05 0.04 0.03"/>
14
+ <geom name="pelvis" type="box" size="0.11 0.06 0.08"/>
15
+
16
+ <body name="torso" pos="0 0 0.14">
17
+ <joint name="torso_yaw" type="hinge" axis="0 0 1" range="-1.2 1.2"/>
18
+ <inertial pos="0 0 0.08" mass="12" diaginertia="0.12 0.10 0.06"/>
19
+ <geom name="torso" type="box" size="0.11 0.06 0.14"/>
20
+ <site name="imu_site" pos="0 0 0.08" size="0.01"/>
21
+ <body name="head" pos="0 0 0.22">
22
+ <joint name="head_yaw" type="hinge" axis="0 0 1" range="-1.5 1.5"/>
23
+ <inertial pos="0 0 0.04" mass="3" diaginertia="0.02 0.02 0.02"/>
24
+ <geom name="head" type="box" size="0.07 0.06 0.08"/>
25
+ <camera name="head_camera" pos="0.08 0 0.12" xyaxes="0 -1 0 0 0 1"/>
26
+ </body>
27
+ <body name="left_upper_arm" pos="0 0.16 0.18">
28
+ <joint name="left_shoulder_pitch" type="hinge" axis="1 0 0" range="-2 2"/>
29
+ <inertial pos="0 0 -0.12" mass="2.2" diaginertia="0.02 0.02 0.005"/>
30
+ <geom type="box" size="0.04 0.04 0.125" pos="0 0 -0.125"/>
31
+ <body name="left_forearm" pos="0 0 -0.25">
32
+ <joint name="left_elbow" type="hinge" axis="1 0 0" range="-0.1 2.4"/>
33
+ <inertial pos="0 0 -0.11" mass="1.4" diaginertia="0.012 0.012 0.003"/>
34
+ <geom type="box" size="0.03 0.03 0.11" pos="0 0 -0.11"/>
35
+ <body name="left_hand" pos="0 0 -0.13">
36
+ <joint name="left_wrist" type="hinge" axis="0 1 0" range="-1 1"/>
37
+ <inertial pos="0 0 0" mass="0.4" diaginertia="0.001 0.001 0.001"/>
38
+ <geom type="box" size="0.03 0.04 0.02"/>
39
+ </body>
40
+ </body>
41
+ </body>
42
+ <body name="right_upper_arm" pos="0 -0.16 0.18">
43
+ <joint name="right_shoulder_pitch" type="hinge" axis="1 0 0" range="-2 2"/>
44
+ <inertial pos="0 0 -0.12" mass="2.2" diaginertia="0.02 0.02 0.005"/>
45
+ <geom type="box" size="0.04 0.04 0.125" pos="0 0 -0.125"/>
46
+ <body name="right_forearm" pos="0 0 -0.25">
47
+ <joint name="right_elbow" type="hinge" axis="1 0 0" range="-0.1 2.4"/>
48
+ <inertial pos="0 0 -0.11" mass="1.4" diaginertia="0.012 0.012 0.003"/>
49
+ <geom type="box" size="0.03 0.03 0.11" pos="0 0 -0.11"/>
50
+ <body name="right_hand" pos="0 0 -0.13">
51
+ <joint name="right_wrist" type="hinge" axis="0 1 0" range="-1 1"/>
52
+ <inertial pos="0 0 0" mass="0.4" diaginertia="0.001 0.001 0.001"/>
53
+ <geom type="box" size="0.03 0.04 0.02"/>
54
+ </body>
55
+ </body>
56
+ </body>
57
+ </body>
58
+
59
+ <body name="left_thigh" pos="0 0.08 -0.12">
60
+ <joint name="left_hip_pitch" type="hinge" axis="1 0 0" range="-1.8 1.2"/>
61
+ <inertial pos="0 0 -0.17" mass="6.5" diaginertia="0.08 0.08 0.01"/>
62
+ <geom type="box" size="0.05 0.05 0.175" pos="0 0 -0.175"/>
63
+ <body name="left_shin" pos="0 0 -0.35">
64
+ <joint name="left_knee" type="hinge" axis="1 0 0" range="-0.05 2.2"/>
65
+ <inertial pos="0 0 -0.17" mass="3.5" diaginertia="0.05 0.05 0.006"/>
66
+ <geom type="box" size="0.04 0.04 0.17" pos="0 0 -0.17"/>
67
+ <body name="left_foot" pos="0.04 0 -0.18">
68
+ <joint name="left_ankle" type="hinge" axis="1 0 0" range="-0.8 0.8"/>
69
+ <inertial pos="0.04 0 0" mass="0.9" diaginertia="0.004 0.008 0.008"/>
70
+ <geom type="box" size="0.11 0.05 0.02"/>
71
+ </body>
72
+ </body>
73
+ </body>
74
+
75
+ <body name="right_thigh" pos="0 -0.08 -0.12">
76
+ <joint name="right_hip_pitch" type="hinge" axis="1 0 0" range="-1.8 1.2"/>
77
+ <inertial pos="0 0 -0.17" mass="6.5" diaginertia="0.08 0.08 0.01"/>
78
+ <geom type="box" size="0.05 0.05 0.175" pos="0 0 -0.175"/>
79
+ <body name="right_shin" pos="0 0 -0.35">
80
+ <joint name="right_knee" type="hinge" axis="1 0 0" range="-0.05 2.2"/>
81
+ <inertial pos="0 0 -0.17" mass="3.5" diaginertia="0.05 0.05 0.006"/>
82
+ <geom type="box" size="0.04 0.04 0.17" pos="0 0 -0.17"/>
83
+ <body name="right_foot" pos="0.04 0 -0.18">
84
+ <joint name="right_ankle" type="hinge" axis="1 0 0" range="-0.8 0.8"/>
85
+ <inertial pos="0.04 0 0" mass="0.9" diaginertia="0.004 0.008 0.008"/>
86
+ <geom type="box" size="0.11 0.05 0.02"/>
87
+ </body>
88
+ </body>
89
+ </body>
90
+ </body>
91
+ </worldbody>
92
+ <actuator>
93
+ <motor name="torso_yaw" joint="torso_yaw" ctrlrange="-80 80" gear="1"/>
94
+ <motor name="head_yaw" joint="head_yaw" ctrlrange="-10 10" gear="1"/>
95
+ <motor name="left_shoulder_pitch" joint="left_shoulder_pitch" ctrlrange="-40 40" gear="1"/>
96
+ <motor name="left_elbow" joint="left_elbow" ctrlrange="-25 25" gear="1"/>
97
+ <motor name="left_wrist" joint="left_wrist" ctrlrange="-8 8" gear="1"/>
98
+ <motor name="right_shoulder_pitch" joint="right_shoulder_pitch" ctrlrange="-40 40" gear="1"/>
99
+ <motor name="right_elbow" joint="right_elbow" ctrlrange="-25 25" gear="1"/>
100
+ <motor name="right_wrist" joint="right_wrist" ctrlrange="-8 8" gear="1"/>
101
+ <motor name="left_hip_pitch" joint="left_hip_pitch" ctrlrange="-90 90" gear="1"/>
102
+ <motor name="left_knee" joint="left_knee" ctrlrange="-80 80" gear="1"/>
103
+ <motor name="left_ankle" joint="left_ankle" ctrlrange="-40 40" gear="1"/>
104
+ <motor name="right_hip_pitch" joint="right_hip_pitch" ctrlrange="-90 90" gear="1"/>
105
+ <motor name="right_knee" joint="right_knee" ctrlrange="-80 80" gear="1"/>
106
+ <motor name="right_ankle" joint="right_ankle" ctrlrange="-40 40" gear="1"/>
107
+ </actuator>
108
+ <sensor>
109
+ <accelerometer name="imu_acc" site="imu_site"/>
110
+ <gyro name="imu_gyro" site="imu_site"/>
111
+ </sensor>
112
+ </mujoco>
robots/humanoid/unimind_humanoid/preview/preview.png ADDED

Git LFS Details

  • SHA256: c9973f3463f32f28577d978f778ff4dac957e4c501986d6efba708dce3633c3f
  • Pointer size: 128 Bytes
  • Size of remote file: 776 Bytes
robots/humanoid/unimind_humanoid/sensors/.gitkeep ADDED
File without changes
robots/humanoid/unimind_humanoid/textures/.gitkeep ADDED
File without changes
robots/humanoid/unimind_humanoid/urdf/robot.urdf ADDED
@@ -0,0 +1,204 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <robot name="unimind_humanoid">
3
+ <link name="pelvis">
4
+ <inertial>
5
+ <origin xyz="0 0 0" rpy="0 0 0"/>
6
+ <mass value="8.0"/>
7
+ <inertia ixx="0.05" ixy="0" ixz="0" iyy="0.04" iyz="0" izz="0.03"/>
8
+ </inertial>
9
+ <visual>
10
+ <geometry><box size="0.22 0.12 0.16"/></geometry>
11
+ </visual>
12
+ <collision>
13
+ <geometry><box size="0.22 0.12 0.16"/></geometry>
14
+ </collision>
15
+ </link>
16
+
17
+ <link name="torso">
18
+ <inertial>
19
+ <mass value="12.0"/>
20
+ <inertia ixx="0.12" ixy="0" ixz="0" iyy="0.10" iyz="0" izz="0.06"/>
21
+ </inertial>
22
+ <visual><geometry><box size="0.22 0.12 0.28"/></geometry></visual>
23
+ <collision><geometry><box size="0.22 0.12 0.28"/></geometry></collision>
24
+ </link>
25
+ <joint name="torso_yaw" type="revolute">
26
+ <parent link="pelvis"/>
27
+ <child link="torso"/>
28
+ <origin xyz="0 0 0.14" rpy="0 0 0"/>
29
+ <axis xyz="0 0 1"/>
30
+ <limit lower="-1.2" upper="1.2" effort="80" velocity="5"/>
31
+ </joint>
32
+
33
+ <link name="head">
34
+ <inertial>
35
+ <mass value="3.0"/>
36
+ <inertia ixx="0.02" ixy="0" ixz="0" iyy="0.02" iyz="0" izz="0.02"/>
37
+ </inertial>
38
+ <visual><geometry><box size="0.14 0.12 0.16"/></geometry></visual>
39
+ <collision><geometry><box size="0.14 0.12 0.16"/></geometry></collision>
40
+ </link>
41
+ <joint name="head_yaw" type="revolute">
42
+ <parent link="torso"/>
43
+ <child link="head"/>
44
+ <origin xyz="0 0 0.22" rpy="0 0 0"/>
45
+ <axis xyz="0 0 1"/>
46
+ <limit lower="-1.5" upper="1.5" effort="10" velocity="8"/>
47
+ </joint>
48
+
49
+ <link name="left_upper_arm">
50
+ <inertial><mass value="2.2"/><inertia ixx="0.02" ixy="0" ixz="0" iyy="0.02" iyz="0" izz="0.005"/></inertial>
51
+ <visual><geometry><box size="0.08 0.08 0.25"/></geometry></visual>
52
+ <collision><geometry><box size="0.08 0.08 0.25"/></geometry></collision>
53
+ </link>
54
+ <joint name="left_shoulder_pitch" type="revolute">
55
+ <parent link="torso"/>
56
+ <child link="left_upper_arm"/>
57
+ <origin xyz="0 0.16 0.18" rpy="0 0 0"/>
58
+ <axis xyz="1 0 0"/>
59
+ <limit lower="-2.0" upper="2.0" effort="40" velocity="8"/>
60
+ </joint>
61
+
62
+ <link name="left_forearm">
63
+ <inertial><mass value="1.4"/><inertia ixx="0.012" ixy="0" ixz="0" iyy="0.012" iyz="0" izz="0.003"/></inertial>
64
+ <visual><geometry><box size="0.06 0.06 0.22"/></geometry></visual>
65
+ <collision><geometry><box size="0.06 0.06 0.22"/></geometry></collision>
66
+ </link>
67
+ <joint name="left_elbow" type="revolute">
68
+ <parent link="left_upper_arm"/>
69
+ <child link="left_forearm"/>
70
+ <origin xyz="0 0 -0.25" rpy="0 0 0"/>
71
+ <axis xyz="1 0 0"/>
72
+ <limit lower="-0.1" upper="2.4" effort="25" velocity="8"/>
73
+ </joint>
74
+
75
+ <link name="left_hand">
76
+ <inertial><mass value="0.4"/><inertia ixx="0.001" ixy="0" ixz="0" iyy="0.001" iyz="0" izz="0.001"/></inertial>
77
+ <visual><geometry><box size="0.06 0.08 0.04"/></geometry></visual>
78
+ <collision><geometry><box size="0.06 0.08 0.04"/></geometry></collision>
79
+ </link>
80
+ <joint name="left_wrist" type="revolute">
81
+ <parent link="left_forearm"/>
82
+ <child link="left_hand"/>
83
+ <origin xyz="0 0 -0.13" rpy="0 0 0"/>
84
+ <axis xyz="0 1 0"/>
85
+ <limit lower="-1.0" upper="1.0" effort="8" velocity="10"/>
86
+ </joint>
87
+
88
+ <link name="right_upper_arm">
89
+ <inertial><mass value="2.2"/><inertia ixx="0.02" ixy="0" ixz="0" iyy="0.02" iyz="0" izz="0.005"/></inertial>
90
+ <visual><geometry><box size="0.08 0.08 0.25"/></geometry></visual>
91
+ <collision><geometry><box size="0.08 0.08 0.25"/></geometry></collision>
92
+ </link>
93
+ <joint name="right_shoulder_pitch" type="revolute">
94
+ <parent link="torso"/>
95
+ <child link="right_upper_arm"/>
96
+ <origin xyz="0 -0.16 0.18" rpy="0 0 0"/>
97
+ <axis xyz="1 0 0"/>
98
+ <limit lower="-2.0" upper="2.0" effort="40" velocity="8"/>
99
+ </joint>
100
+
101
+ <link name="right_forearm">
102
+ <inertial><mass value="1.4"/><inertia ixx="0.012" ixy="0" ixz="0" iyy="0.012" iyz="0" izz="0.003"/></inertial>
103
+ <visual><geometry><box size="0.06 0.06 0.22"/></geometry></visual>
104
+ <collision><geometry><box size="0.06 0.06 0.22"/></geometry></collision>
105
+ </link>
106
+ <joint name="right_elbow" type="revolute">
107
+ <parent link="right_upper_arm"/>
108
+ <child link="right_forearm"/>
109
+ <origin xyz="0 0 -0.25" rpy="0 0 0"/>
110
+ <axis xyz="1 0 0"/>
111
+ <limit lower="-0.1" upper="2.4" effort="25" velocity="8"/>
112
+ </joint>
113
+
114
+ <link name="right_hand">
115
+ <inertial><mass value="0.4"/><inertia ixx="0.001" ixy="0" ixz="0" iyy="0.001" iyz="0" izz="0.001"/></inertial>
116
+ <visual><geometry><box size="0.06 0.08 0.04"/></geometry></visual>
117
+ <collision><geometry><box size="0.06 0.08 0.04"/></geometry></collision>
118
+ </link>
119
+ <joint name="right_wrist" type="revolute">
120
+ <parent link="right_forearm"/>
121
+ <child link="right_hand"/>
122
+ <origin xyz="0 0 -0.13" rpy="0 0 0"/>
123
+ <axis xyz="0 1 0"/>
124
+ <limit lower="-1.0" upper="1.0" effort="8" velocity="10"/>
125
+ </joint>
126
+
127
+ <link name="left_thigh">
128
+ <inertial><mass value="6.5"/><inertia ixx="0.08" ixy="0" ixz="0" iyy="0.08" iyz="0" izz="0.01"/></inertial>
129
+ <visual><geometry><box size="0.10 0.10 0.35"/></geometry></visual>
130
+ <collision><geometry><box size="0.10 0.10 0.35"/></geometry></collision>
131
+ </link>
132
+ <joint name="left_hip_pitch" type="revolute">
133
+ <parent link="pelvis"/>
134
+ <child link="left_thigh"/>
135
+ <origin xyz="0 0.08 -0.12" rpy="0 0 0"/>
136
+ <axis xyz="1 0 0"/>
137
+ <limit lower="-1.8" upper="1.2" effort="90" velocity="8"/>
138
+ </joint>
139
+
140
+ <link name="left_shin">
141
+ <inertial><mass value="3.5"/><inertia ixx="0.05" ixy="0" ixz="0" iyy="0.05" iyz="0" izz="0.006"/></inertial>
142
+ <visual><geometry><box size="0.08 0.08 0.34"/></geometry></visual>
143
+ <collision><geometry><box size="0.08 0.08 0.34"/></geometry></collision>
144
+ </link>
145
+ <joint name="left_knee" type="revolute">
146
+ <parent link="left_thigh"/>
147
+ <child link="left_shin"/>
148
+ <origin xyz="0 0 -0.35" rpy="0 0 0"/>
149
+ <axis xyz="1 0 0"/>
150
+ <limit lower="-0.05" upper="2.2" effort="80" velocity="8"/>
151
+ </joint>
152
+
153
+ <link name="left_foot">
154
+ <inertial><mass value="0.9"/><inertia ixx="0.004" ixy="0" ixz="0" iyy="0.008" iyz="0" izz="0.008"/></inertial>
155
+ <visual><geometry><box size="0.22 0.10 0.04"/></geometry></visual>
156
+ <collision><geometry><box size="0.22 0.10 0.04"/></geometry></collision>
157
+ </link>
158
+ <joint name="left_ankle" type="revolute">
159
+ <parent link="left_shin"/>
160
+ <child link="left_foot"/>
161
+ <origin xyz="0.04 0 -0.18" rpy="0 0 0"/>
162
+ <axis xyz="1 0 0"/>
163
+ <limit lower="-0.8" upper="0.8" effort="40" velocity="8"/>
164
+ </joint>
165
+
166
+ <link name="right_thigh">
167
+ <inertial><mass value="6.5"/><inertia ixx="0.08" ixy="0" ixz="0" iyy="0.08" iyz="0" izz="0.01"/></inertial>
168
+ <visual><geometry><box size="0.10 0.10 0.35"/></geometry></visual>
169
+ <collision><geometry><box size="0.10 0.10 0.35"/></geometry></collision>
170
+ </link>
171
+ <joint name="right_hip_pitch" type="revolute">
172
+ <parent link="pelvis"/>
173
+ <child link="right_thigh"/>
174
+ <origin xyz="0 -0.08 -0.12" rpy="0 0 0"/>
175
+ <axis xyz="1 0 0"/>
176
+ <limit lower="-1.8" upper="1.2" effort="90" velocity="8"/>
177
+ </joint>
178
+
179
+ <link name="right_shin">
180
+ <inertial><mass value="3.5"/><inertia ixx="0.05" ixy="0" ixz="0" iyy="0.05" iyz="0" izz="0.006"/></inertial>
181
+ <visual><geometry><box size="0.08 0.08 0.34"/></geometry></visual>
182
+ <collision><geometry><box size="0.08 0.08 0.34"/></geometry></collision>
183
+ </link>
184
+ <joint name="right_knee" type="revolute">
185
+ <parent link="right_thigh"/>
186
+ <child link="right_shin"/>
187
+ <origin xyz="0 0 -0.35" rpy="0 0 0"/>
188
+ <axis xyz="1 0 0"/>
189
+ <limit lower="-0.05" upper="2.2" effort="80" velocity="8"/>
190
+ </joint>
191
+
192
+ <link name="right_foot">
193
+ <inertial><mass value="0.9"/><inertia ixx="0.004" ixy="0" ixz="0" iyy="0.008" iyz="0" izz="0.008"/></inertial>
194
+ <visual><geometry><box size="0.22 0.10 0.04"/></geometry></visual>
195
+ <collision><geometry><box size="0.22 0.10 0.04"/></geometry></collision>
196
+ </link>
197
+ <joint name="right_ankle" type="revolute">
198
+ <parent link="right_shin"/>
199
+ <child link="right_foot"/>
200
+ <origin xyz="0.04 0 -0.18" rpy="0 0 0"/>
201
+ <axis xyz="1 0 0"/>
202
+ <limit lower="-0.8" upper="0.8" effort="40" velocity="8"/>
203
+ </joint>
204
+ </robot>
robots/mobile_manipulator/.gitkeep ADDED
File without changes
robots/quadruped/.gitkeep ADDED
File without changes
scenes/kitchen/.gitkeep ADDED
File without changes
scenes/kitchen/kitchen_basic/LICENSE ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ This asset is licensed under Creative Commons Attribution 4.0 International (CC-BY-4.0).
2
+
3
+ SPDX-License-Identifier: CC-BY-4.0
4
+ https://creativecommons.org/licenses/by/4.0/
5
+
6
+ You are free to share and adapt this material for any purpose, including
7
+ commercially, provided you give appropriate credit to UniEMind.
scenes/kitchen/kitchen_basic/asset.yaml ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ schema_version: "0.1"
2
+
3
+ asset:
4
+ id: "kitchen_basic"
5
+ name: "Basic Kitchen Scene"
6
+ type: "scene"
7
+ category: "household"
8
+ version: "1.0.0"
9
+ description: "Reference kitchen composing table_01, cup_white, and sink_01. RoboCasa layout x style kitchens are listed by the robocasa_kitchens catalog."
10
+ tags: ["kitchen", "household", "manipulation", "reference"]
11
+
12
+ coordinate:
13
+ up: "Z"
14
+ forward: "-Y"
15
+ right: "X"
16
+
17
+ units:
18
+ length: "m"
19
+ mass: "kg"
20
+ time: "s"
21
+ angle: "rad"
22
+ force: "N"
23
+ torque: "N*m"
24
+ velocity: "m/s"
25
+ acceleration: "m/s2"
26
+
27
+ scene:
28
+ id: "kitchen_basic"
29
+ environment:
30
+ gravity: [0.0, 0.0, -9.81]
31
+ lighting: "kitchen"
32
+ assets:
33
+ - asset: "table_01"
34
+ instance_id: "table"
35
+ pose:
36
+ position: [0.9, 0.0, 0.0]
37
+ - asset: "cup_white"
38
+ instance_id: "cup"
39
+ pose:
40
+ position: [0.85, 0.1, 0.8]
41
+ - asset: "sink_01"
42
+ instance_id: "sink"
43
+ pose:
44
+ position: [1.6, 0.0, 0.0]
45
+ robots:
46
+ - robot: "unimind_humanoid"
47
+ instance_id: "robot"
48
+ pose:
49
+ position: [0.0, 0.8, 0.0]
50
+
51
+ dependencies:
52
+ - id: "table_01"
53
+ version: "1.0.0"
54
+ - id: "cup_white"
55
+ version: "1.0.0"
56
+ - id: "sink_01"
57
+ version: "1.0.0"
58
+ - id: "unimind_humanoid"
59
+ version: "1.0.0"
60
+
61
+ license:
62
+ spdx: "CC-BY-4.0"
63
+ file: "LICENSE"
64
+ attribution_required: true
65
+ commercial_use: true
66
+ modification: true
67
+ redistribution: true
68
+
69
+ provenance:
70
+ source_type: "created"
71
+ creator: "UniEMind Community"
72
+ created_at: "2026-08-21"
73
+
74
+ compatibility:
75
+ mujoco:
76
+ supported: true
77
+ min_version: "3.x"
78
+ file: "mujoco/scene.xml"
79
+ isaac_sim:
80
+ supported: true
81
+ min_version: "5.x"
82
+ file: "isaac/scene.usda"
83
+
84
+ quality:
85
+ level: 2
86
+ completeness:
87
+ composition: true
88
+ license: true
89
+ mujoco: true
90
+ isaac_sim: true
scenes/kitchen/kitchen_basic/isaac/scene.usda ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #usda 1.0
2
+ (
3
+ defaultPrim = "kitchen_basic"
4
+ metersPerUnit = 1
5
+ upAxis = "Z"
6
+ subLayers = [
7
+ @../../../objects/furniture/table_01/isaac/model.usda@,
8
+ @../../../objects/household/cup_white/isaac/model.usda@,
9
+ @../../../objects/laboratory/sink_01/isaac/model.usda@
10
+ ]
11
+ )
12
+
13
+ def Xform "kitchen_basic"
14
+ {
15
+ def Xform "World"
16
+ {
17
+ def Mesh "floor"
18
+ {
19
+ float3[] extent = [(-5, -5, 0), (5, 5, 0)]
20
+ int[] faceVertexCounts = [4]
21
+ int[] faceVertexIndices = [0, 1, 2, 3]
22
+ point3f[] points = [(-5, -5, 0), (5, -5, 0), (5, 5, 0), (-5, 5, 0)]
23
+ color3f[] primvars:displayColor = [(0.82, 0.80, 0.76)]
24
+ }
25
+ }
26
+
27
+ over "table_01" {
28
+ double3 xformOp:translate = (0.9, 0, 0)
29
+ uniform token[] xformOpOrder = ["xformOp:translate"]
30
+ }
31
+ over "cup_white" {
32
+ double3 xformOp:translate = (0.85, 0.1, 0.8)
33
+ uniform token[] xformOpOrder = ["xformOp:translate"]
34
+ }
35
+ over "sink_01" {
36
+ double3 xformOp:translate = (1.6, 0, 0)
37
+ uniform token[] xformOpOrder = ["xformOp:translate"]
38
+ }
39
+ }
scenes/kitchen/kitchen_basic/mujoco/scene.xml ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <mujoco model="kitchen_basic">
2
+ <compiler angle="radian" autolimits="true"/>
3
+ <option gravity="0 0 -9.81" timestep="0.002"/>
4
+ <default>
5
+ <geom condim="3" friction="0.6 0.4 0.01"/>
6
+ </default>
7
+ <worldbody>
8
+ <light pos="1 1 3" dir="-0.3 -0.3 -1"/>
9
+ <geom name="floor" type="plane" size="5 5 0.1" rgba="0.82 0.80 0.76 1"/>
10
+
11
+ <body name="table_01" pos="0.9 0 0">
12
+ <geom type="box" size="0.6 0.35 0.02" pos="0 0 0.74" mass="18" rgba="0.63 0.43 0.27 1"/>
13
+ <geom type="box" size="0.03 0.03 0.36" pos=" 0.52 0.28 0.36" mass="2.5" rgba="0.45 0.30 0.18 1"/>
14
+ <geom type="box" size="0.03 0.03 0.36" pos=" 0.52 -0.28 0.36" mass="2.5" rgba="0.45 0.30 0.18 1"/>
15
+ <geom type="box" size="0.03 0.03 0.36" pos="-0.52 0.28 0.36" mass="2.5" rgba="0.45 0.30 0.18 1"/>
16
+ <geom type="box" size="0.03 0.03 0.36" pos="-0.52 -0.28 0.36" mass="2.5" rgba="0.45 0.30 0.18 1"/>
17
+ </body>
18
+
19
+ <body name="cup_white" pos="0.85 0.1 0.80">
20
+ <freejoint name="cup_white_free"/>
21
+ <geom type="cylinder" size="0.04 0.045" mass="0.25" rgba="0.95 0.95 0.95 1"/>
22
+ </body>
23
+
24
+ <body name="sink_01" pos="1.6 0 0">
25
+ <geom type="box" size="0.3 0.225 0.09" pos="0 0 0.90" mass="18.5" rgba="0.72 0.75 0.78 1"/>
26
+ </body>
27
+ </worldbody>
28
+ </mujoco>
scenes/kitchen/robocasa_kitchens/LICENSE ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ Catalog metadata is licensed under Creative Commons Attribution 4.0 International
2
+ (CC-BY-4.0) and packaged by UniEMind.
3
+
4
+ SPDX-License-Identifier: CC-BY-4.0
5
+ https://creativecommons.org/licenses/by/4.0/
6
+
7
+ The referenced RoboCasa kitchen meshes and fixture models remain under their
8
+ original licenses (RoboCasa assets: CC-BY-4.0; RoboCasa code: MIT) and are not
9
+ copied into this directory. See THIRD_PARTY_NOTICES.md in the repository root.
scenes/kitchen/robocasa_kitchens/asset.yaml ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ schema_version: "0.1"
2
+
3
+ asset:
4
+ id: "robocasa_kitchens"
5
+ name: "RoboCasa Kitchen Catalog"
6
+ type: "scene"
7
+ category: "household"
8
+ version: "1.0.0"
9
+ description: >
10
+ Catalog of RoboCasa kitchens (60 layouts x 60 styles). UniEMind-Assets
11
+ stores the identity, license, and provenance. UniEMind-Sim composes the
12
+ MJCF arena from the local RoboCasa checkout at install/run time and does
13
+ not copy the ~10GB mesh library into git.
14
+ tags: ["kitchen", "robocasa", "catalog", "household"]
15
+
16
+ coordinate:
17
+ up: "Z"
18
+ forward: "-Y"
19
+ right: "X"
20
+
21
+ units:
22
+ length: "m"
23
+ mass: "kg"
24
+ time: "s"
25
+ angle: "rad"
26
+ force: "N"
27
+ torque: "N*m"
28
+ velocity: "m/s"
29
+ acceleration: "m/s2"
30
+
31
+ scene:
32
+ id: "robocasa_kitchens"
33
+ environment:
34
+ gravity: [0.0, 0.0, -9.81]
35
+ lighting: "kitchen"
36
+ assets: []
37
+ robots: []
38
+
39
+ source:
40
+ type: "external"
41
+ project: "RoboCasa"
42
+ repository: "https://github.com/robocasa/robocasa"
43
+ version: "master"
44
+ license: "MIT"
45
+
46
+ dependencies:
47
+ - id: "robocasa_assets"
48
+ optional: true
49
+ source:
50
+ type: "external"
51
+ project: "RoboCasa"
52
+ repository: "https://github.com/robocasa/robocasa"
53
+ version: "master"
54
+ license: "CC-BY-4.0"
55
+
56
+ catalog:
57
+ provider: "robocasa"
58
+ layout_count: 60
59
+ style_count: 60
60
+ default_style: 1
61
+ id_template: "layout{layout:03d}_style{style:03d}"
62
+ alias_templates:
63
+ - "robocasa/layout{layout:03d}/style{style:03d}"
64
+ - "robocasa/layout{layout:03d}"
65
+ notes: >
66
+ Individual kitchen IDs are generated from this catalog. Example:
67
+ layout001_style001, layout060_style060, robocasa/layout060/style058.
68
+
69
+ license:
70
+ spdx: "CC-BY-4.0"
71
+ file: "LICENSE"
72
+ attribution_required: true
73
+ commercial_use: true
74
+ modification: true
75
+ redistribution: true
76
+
77
+ provenance:
78
+ source_type: "external"
79
+ creator: "RoboCasa authors; catalog packaged by UniEMind"
80
+ created_at: "2026-08-21"
81
+ notes: "Kitchen meshes stay in the RoboCasa checkout. This asset is metadata only."
82
+
83
+ compatibility:
84
+ mujoco:
85
+ supported: true
86
+ min_version: "3.x"
87
+ notes: "MJCF is composed by UniEMind-Sim via RoboCasa KitchenArena."
88
+ file: "mujoco/catalog.xml"
89
+ isaac_sim:
90
+ supported: false
91
+ notes: "Isaac representation is deferred; kitchens currently run on MuJoCo."
92
+
93
+ quality:
94
+ level: 2
95
+ completeness:
96
+ composition: false
97
+ license: true
98
+ catalog: true
99
+ mujoco: true
100
+ isaac_sim: false
scenes/kitchen/robocasa_kitchens/catalog.yaml ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ schema_version: "0.1"
2
+ provider: robocasa
3
+ layout_count: 60
4
+ style_count: 60
5
+ default_style: 1
6
+ id_template: "layout{layout:03d}_style{style:03d}"
7
+ alias_templates:
8
+ - "robocasa/layout{layout:03d}/style{style:03d}"
9
+ - "robocasa/layout{layout:03d}"
10
+ source:
11
+ project: RoboCasa
12
+ repository: https://github.com/robocasa/robocasa
13
+ license: CC-BY-4.0
scenes/kitchen/robocasa_kitchens/mujoco/catalog.xml ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ <mujoco model="robocasa_kitchens">
2
+ <compiler angle="radian"/>
3
+ <option gravity="0 0 -9.81"/>
4
+ <worldbody>
5
+ <light pos="1 1 3" dir="-0.3 -0.3 -1"/>
6
+ <geom name="floor" type="plane" size="5 5 0.1" rgba="0.82 0.80 0.76 1"/>
7
+ </worldbody>
8
+ </mujoco>
scenes/lab/laboratory_basic/LICENSE ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ This asset is licensed under Creative Commons Attribution 4.0 International (CC-BY-4.0).
2
+
3
+ SPDX-License-Identifier: CC-BY-4.0
4
+ https://creativecommons.org/licenses/by/4.0/
5
+
6
+ You are free to share and adapt this material for any purpose, including
7
+ commercially, provided you give appropriate credit to UniEMind.
scenes/lab/laboratory_basic/asset.yaml ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ schema_version: "0.1"
2
+
3
+ asset:
4
+ id: "laboratory_basic"
5
+ name: "Basic Laboratory Scene"
6
+ type: "scene"
7
+ category: "laboratory"
8
+ version: "1.0.0"
9
+ description: "Reference scene composing unimind_humanoid, table_01, cup_white, and sink_01."
10
+ tags: ["laboratory", "manipulation", "reference"]
11
+
12
+ coordinate:
13
+ up: "Z"
14
+ forward: "-Y"
15
+ right: "X"
16
+
17
+ units:
18
+ length: "m"
19
+ mass: "kg"
20
+ time: "s"
21
+ angle: "rad"
22
+ force: "N"
23
+ torque: "N*m"
24
+ velocity: "m/s"
25
+ acceleration: "m/s2"
26
+
27
+ scene:
28
+ id: "laboratory_basic"
29
+ environment:
30
+ gravity: [0.0, 0.0, -9.81]
31
+ lighting: "studio"
32
+ assets:
33
+ - asset: "table_01"
34
+ instance_id: "table"
35
+ pose:
36
+ position: [1.0, 0.0, 0.0]
37
+ - asset: "cup_white"
38
+ instance_id: "cup"
39
+ pose:
40
+ position: [1.2, 0.0, 0.8]
41
+ - asset: "sink_01"
42
+ instance_id: "sink"
43
+ pose:
44
+ position: [2.0, 0.0, 0.0]
45
+ robots:
46
+ - robot: "unimind_humanoid"
47
+ instance_id: "robot"
48
+ pose:
49
+ position: [0.0, 0.0, 0.0]
50
+
51
+ dependencies:
52
+ - id: "table_01"
53
+ version: "1.0.0"
54
+ - id: "cup_white"
55
+ version: "1.0.0"
56
+ - id: "sink_01"
57
+ version: "1.0.0"
58
+ - id: "unimind_humanoid"
59
+ version: "1.0.0"
60
+
61
+ license:
62
+ spdx: "CC-BY-4.0"
63
+ file: "LICENSE"
64
+ attribution_required: true
65
+ commercial_use: true
66
+ modification: true
67
+ redistribution: true
68
+
69
+ provenance:
70
+ source_type: "created"
71
+ creator: "UniEMind Community"
72
+ created_at: "2026-08-21"
73
+
74
+ compatibility:
75
+ mujoco:
76
+ supported: true
77
+ min_version: "3.x"
78
+ file: "mujoco/scene.xml"
79
+ isaac_sim:
80
+ supported: true
81
+ min_version: "5.x"
82
+ file: "isaac/scene.usda"
83
+
84
+ quality:
85
+ level: 2
86
+ completeness:
87
+ composition: true
88
+ license: true
89
+ mujoco: true
90
+ isaac_sim: true
scenes/lab/laboratory_basic/isaac/scene.usda ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #usda 1.0
2
+ (
3
+ defaultPrim = "laboratory_basic"
4
+ metersPerUnit = 1
5
+ upAxis = "Z"
6
+ subLayers = [
7
+ @../../../robots/humanoid/unimind_humanoid/isaac/robot.usda@,
8
+ @../../../objects/furniture/table_01/isaac/model.usda@,
9
+ @../../../objects/household/cup_white/isaac/model.usda@,
10
+ @../../../objects/laboratory/sink_01/isaac/model.usda@
11
+ ]
12
+ )
13
+
14
+ def Xform "laboratory_basic"
15
+ {
16
+ def Xform "World"
17
+ {
18
+ def Mesh "floor"
19
+ {
20
+ float3[] extent = [(-5, -5, 0), (5, 5, 0)]
21
+ int[] faceVertexCounts = [4]
22
+ int[] faceVertexIndices = [0, 1, 2, 3]
23
+ point3f[] points = [(-5, -5, 0), (5, -5, 0), (5, 5, 0), (-5, 5, 0)]
24
+ color3f[] primvars:displayColor = [(0.85, 0.85, 0.82)]
25
+ }
26
+ }
27
+
28
+ over "table_01" {
29
+ double3 xformOp:translate = (1.0, 0, 0)
30
+ uniform token[] xformOpOrder = ["xformOp:translate"]
31
+ }
32
+ over "cup_white" {
33
+ double3 xformOp:translate = (1.2, 0, 0.8)
34
+ uniform token[] xformOpOrder = ["xformOp:translate"]
35
+ }
36
+ over "sink_01" {
37
+ double3 xformOp:translate = (2.0, 0, 0)
38
+ uniform token[] xformOpOrder = ["xformOp:translate"]
39
+ }
40
+ over "unimind_humanoid" {
41
+ double3 xformOp:translate = (0, 0, 0)
42
+ uniform token[] xformOpOrder = ["xformOp:translate"]
43
+ }
44
+ }