Реализован спавн робота с контроллерами в виртуальной среде webots

This commit is contained in:
Даниил Грабарь
2025-11-21 13:49:04 +10:00
parent a24cc16e0a
commit 9918c2bfc6
44 changed files with 7264 additions and 10 deletions
@@ -0,0 +1,152 @@
#VRML_SIM R2025a utf8
# license: Apache License 2.0
# license url: https://www.apache.org/licenses/LICENSE-2.0
# keywords: industrial/other
# A table for placing collaborative work and working with it
# It is possible to add a network cabinet on the back of the table
# template language: javascript
PROTO CollaborativeRobotTable [
field SFVec3f translation 0 0 0
field SFRotation rotation 0 0 1 0
field SFString name "CollaborativeRobotTable"
field SFString contactMaterial "TableMaterial"
field SFBool locked FALSE
field SFBool showCabinet FALSE # Defines the display of the network cabinet
]
{
%<
let showCabinet = fields.showCabinet.value;
>%
Solid {
translation IS translation
rotation IS rotation
name IS name
locked IS locked
contactMaterial IS contactMaterial
children [
%< if (showCabinet) { >%
Group {
children [
Solid {
translation -0.66 4.26e-06 0.099998
rotation 0.5773509358560258 -0.577349935856137 -0.577349935856137 2.09439
children [
Pose {
translation -0.3135 0.19 0
children [
Shape {
appearance PBRAppearance {
baseColor 0.57 0.57 0.57
roughness 1
}
geometry Mesh {
url [
"./meshes/iiwaTable/ElectricCabinet.obj"
]
}
}
]
translationStep 0.001
}
Shape {
appearance PBRAppearance {
baseColor 0.57 0.57 0.57
roughness 1
}
geometry Mesh {
url [
"./meshes/iiwaTable/CabinetFrame.obj"
]
}
}
]
name "Cabinet"
}
]
}
%< } >%
Group {
children [
Solid {
children [
Pose {
translation 0 0 0.79
children [
Shape {
appearance PBRAppearance {
roughness 1
metalness 0
}
geometry Box {
size 1.28 1.08 0.02
}
}
]
}
Shape {
appearance PBRAppearance {
baseColor 0.57 0.57 0.57
roughness 1
}
geometry Mesh {
url [
"./meshes/iiwaTable/TableFrame.obj"
]
}
}
Pose {
translation -0.263 0 0.8
children [
Shape {
appearance PBRAppearance {
baseColor 0.517647 0.513726 0.568627
roughness 1
}
geometry Mesh {
url [
"./meshes/iiwaTable/PlateUnderRobot.obj"
]
}
}
]
translationStep 0.001
}
]
name "Table"
}
]
}
]
boundingObject Group {
children [
%< if (showCabinet) { >%
Pose {
translation -0.78 4.97601e-06 0.609998
rotation 0.5773509358560258 -0.577349935856137 -0.577349935856137 2.09439
children [
Box {
size 0.66 0.96 0.28
}
]
}
%< } >%
Pose {
translation 0 0 0.4035
children [
Box {
size 1.28 1.08 0.7926
}
]
}
]
}
}
}
@@ -0,0 +1,111 @@
#VRML_SIM R2025a utf8
# license: Apache License 2.0
# license url: http://www.apache.org/licenses/LICENSE-2.0
# Model of the Intel Realsense D455 RGBD camera.
# keywords: sensor/range-finder, sensor/camera
# template language: javascript
PROTO IntelRealsenseD455 [
field SFVec3f translation 0 0 0
field SFRotation rotation 0 0 1 0
field SFString name "IntelRealsenseD455"
field SFBool locked FALSE
field SFString controller "<none>"
field MFString controllerArgs [ ]
field SFBool supervisor FALSE
field SFString{"HD", "VGA", "FULL"} resolution "VGA"
field SFFloat fieldOfView 1.4746 # Diagonal ~84.43° from inr parametrs
field SFFloat minRange 0.01
field SFFloat maxRange 6.0
field SFNode focus NULL
field SFNode recognition Recognition{}
field SFNode physics Physics {
density -1
mass 0.35
centerOfMass [0 0 0]
}
]
{
%<
const cameraName = fields.name.value;
const resMode = fields.resolution.value.toUpperCase();
let width = 1280;
let height = 800;
if (resMode === "VGA") {
width = 640;
height = 480;
} else if (resMode === "HD") {
width = 1280;
height = 720;
} else if (resMode === "FULL") {
width = 1280;
height = 800;
}
>%
Robot {
translation IS translation
rotation IS rotation
name IS name
locked IS locked
controller IS controller
controllerArgs IS controllerArgs
supervisor IS supervisor
children [
RangeFinder {
translation 0.005 0 0
name %<='"' + cameraName + '_depth"'>%
locked TRUE
radarCrossSection 0.01
fieldOfView IS fieldOfView
width %<= width >%
height %<= height >%
near IS minRange
minRange IS minRange
maxRange IS maxRange
noise 0.01
resolution 0.001
}
Camera {
translation 0.005 0 0
name %<='"' + cameraName + '_rgb"'>%
locked TRUE
fieldOfView IS fieldOfView
width %<= width >%
height %<= height >%
near IS minRange
far 10
exposure 0.5
antiAliasing TRUE
noise 0.01
focus IS focus
recognition IS recognition
}
Solid {
translation 0.013 0 0
rotation 0.5773489358556708 0.5773509358554485 0.5773509358554485 2.0944
children [
CadShape {
url [
"./meshes/cameras/visual/IntelRealsenseD455.dae"
]
}
]
locked TRUE
}
]
boundingObject Pose {
children [
Box {
size 0.027 0.123 0.025
}
]
}
physics IS physics
}
}
@@ -0,0 +1,83 @@
#VRML_SIM R2025a utf8
# license: Apache License 2.0
# license url: https://www.apache.org/licenses/LICENSE-2.0
# keywords: industrial/other
# Workspace limiter in the form of square blocks that can be increased in size
# template language: javascript
PROTO WorkspaceLimiter [
field SFVec3f translation 0 0 0
field SFRotation rotation 0 0 1 0
field SFString name "WorkspaceLimiter"
field SFBool locked FALSE
field SFVec2f countLimiter 1 1 # Defines the number of blocks by X and Y
field SFVec3f scale 1 1 1 # Defines the size of the blocks
field SFFloat spacing 0.02 # Defines the distance between blocks
]
{
%<
let countLimiter = fields.countLimiter.value;
let scale = fields.scale.value;
let spacing = fields.spacing.value;
let widthCount = countLimiter.x;
let heightCount = countLimiter.y;
let boxWidth = 1.25;
let boxHeight = 1;
let boxDepth = 0.01;
if (spacing <= 0) {
console.error("The indentation between the blocks cannot be negative")
spacing = 0.02
}
>%
Solid {
translation IS translation
rotation IS rotation
name IS name
locked IS locked
children [
%<
for (let i = 0; i < widthCount; i++) {
for (let j = 0; j < heightCount; j++) {
let x = (i * (boxWidth + spacing) - (widthCount - 1) * (boxWidth + spacing) / 2) * scale.x;
let y = (j * (boxHeight + spacing) - (heightCount - 1) * (boxHeight + spacing) / 2) * scale.y;
>%
Transform {
translation %<= x >% 0 %<= y >%
scale %<= scale.x >% %<= scale.y >% %<= scale.z >%
children [
Shape {
appearance PBRAppearance {
roughness 1
metalness 0
IBLStrength 5
}
geometry Box {
size %<= boxWidth >% %<= boxDepth >% %<= boxHeight >%
}
}
Shape {
appearance PBRAppearance {
baseColor 0.57 0.57 0.57
roughness 1
metalness 0
}
geometry Mesh {
url ["./meshes/WorkspaceLimiter/fence.obj"]
}
}
]
}
%<
}
}
>%
]
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

@@ -0,0 +1,130 @@
#OBJ
#T-FLEX CAD ObjGenerator generate date:21.11.2024 15:39:40
v 0.625 0.05 0.5
v 0.625 0.05 -0.5
v 0.574999 0.05 -0.449999
v -0.625 0.05 -0.5
v -0.574999 0.05 -0.449999
v -0.625 0.05 0.5
v -0.574999 0.05 0.449999
v 0.574999 0.05 0.449999
v 0.625 0 -0.5
v 0.625 0 0.5
v 0.574999 0 0.449999
v -0.625 0 0.5
v -0.574999 0 0.449999
v -0.625 0 -0.5
v -0.574999 0 -0.449999
v 0.574999 0 -0.449999
v 0.574999 0.05 0.449999
v 0.574999 0 0.449999
v -0.574999 0 0.449999
v -0.574999 0.05 0.449999
v 0.574999 0.05 -0.449999
v 0.574999 0 -0.449999
v 0.574999 0 0.449999
v 0.574999 0.05 0.449999
v -0.574999 0.05 -0.449999
v -0.574999 0 -0.449999
v 0.574999 0 -0.449999
v 0.574999 0.05 -0.449999
v -0.574999 0.05 0.449999
v -0.574999 0 0.449999
v -0.574999 0 -0.449999
v -0.574999 0.05 -0.449999
v 0.625 0.05 -0.5
v 0.625 0 -0.5
v -0.625 0 -0.5
v -0.625 0.05 -0.5
v 0.625 0.05 0.5
v 0.625 0 0.5
v 0.625 0 -0.5
v 0.625 0.05 -0.5
v -0.625 0.05 0.5
v -0.625 0 0.5
v 0.625 0 0.5
v 0.625 0.05 0.5
v -0.625 0.05 -0.5
v -0.625 0 -0.5
v -0.625 0 0.5
v -0.625 0.05 0.5
vn 0 1 0
vn 0 1 0
vn 0 1 0
vn 0 1 0
vn 0 1 0
vn 0 1 0
vn 0 1 0
vn 0 1 0
vn 0 -1 0
vn 0 -1 0
vn 0 -1 0
vn 0 -1 0
vn 0 -1 0
vn 0 -1 0
vn 0 -1 0
vn 0 -1 0
vn 0 0 -1
vn 0 0 -1
vn 0 0 -1
vn 0 0 -1
vn -1 0 0
vn -1 0 0
vn -1 0 0
vn -1 0 0
vn 0 0 1
vn 0 0 1
vn 0 0 1
vn 0 0 1
vn 1 0 0
vn 1 0 0
vn 1 0 0
vn 1 0 0
vn 0 0 -1
vn 0 0 -1
vn 0 0 -1
vn 0 0 -1
vn 1 0 0
vn 1 0 0
vn 1 0 0
vn 1 0 0
vn 0 0 1
vn 0 0 1
vn 0 0 1
vn 0 0 1
vn -1 0 0
vn -1 0 0
vn -1 0 0
vn -1 0 0
f 1//1 2//2 3//3
f 2//2 4//4 5//5
f 4//4 6//6 7//7
f 6//6 1//1 8//8
f 5//5 3//3 2//2
f 8//8 7//7 6//6
f 7//7 5//5 4//4
f 3//3 8//8 1//1
f 9//9 10//10 11//11
f 10//10 12//12 13//13
f 12//12 14//14 15//15
f 14//14 9//9 16//16
f 13//13 11//11 10//10
f 16//16 15//15 14//14
f 15//15 13//13 12//12
f 11//11 16//16 9//9
f 17//17 18//18 19//19
f 19//19 20//20 17//17
f 21//21 22//22 23//23
f 23//23 24//24 21//21
f 25//25 26//26 27//27
f 27//27 28//28 25//25
f 29//29 30//30 31//31
f 31//31 32//32 29//29
f 33//33 34//34 35//35
f 35//35 36//36 33//33
f 37//37 38//38 39//39
f 39//39 40//40 37//37
f 41//41 42//42 43//43
f 43//43 44//44 41//41
f 45//45 46//46 47//47
f 47//47 48//48 45//45
File diff suppressed because one or more lines are too long
@@ -0,0 +1,194 @@
#OBJ
#T-FLEX CAD ObjGenerator generate date:20.11.2024 23:59:52
v 0.27 0.23 -0.019999
v 0.27 0.949999 -0.019999
v 0.31 0.99 -0.019999
v -0.31 0.99 -0.019999
v -0.27 0.949999 -0.019999
v -0.27 0.23 -0.019999
v 0.27 0.189999 -0.019999
v -0.31 0 -0.019999
v -0.27 0.189999 -0.019999
v 0.31 0 -0.019999
v 0.27 0 -0.019999
v -0.27 -0 -0.019999
v -0.27 0.23 0.019999
v -0.27 0.189999 0.019999
v 0.27 0.189999 0.019999
v -0.31 0.99 0.019999
v -0.31 0 0.019999
v -0.27 -0 0.019999
v 0.27 0.949999 0.019999
v 0.31 0.99 0.019999
v 0.27 0.23 0.019999
v 0.31 0 0.019999
v -0.27 0.949999 0.019999
v 0.27 0 0.019999
v 0.27 0.23 0.019999
v 0.27 0.23 -0.019999
v -0.27 0.23 -0.019999
v -0.27 0.23 0.019999
v -0.31 0.99 0.019999
v -0.31 0.99 -0.019999
v -0.31 0 -0.019999
v -0.31 0 0.019999
v -0.31 0.99 0.019999
v 0.31 0.99 0.019999
v 0.31 0.99 -0.019999
v -0.31 0.99 -0.019999
v 0.31 0 0.019999
v 0.31 0 -0.019999
v 0.31 0.99 -0.019999
v 0.31 0.99 0.019999
v 0.27 0 0.019999
v 0.27 0 -0.019999
v 0.31 0 -0.019999
v 0.31 0 0.019999
v 0.27 0 -0.019999
v 0.27 0 0.019999
v 0.27 0.189999 0.019999
v 0.27 0.189999 -0.019999
v -0.27 0.189999 0.019999
v -0.27 0.189999 -0.019999
v 0.27 0.189999 -0.019999
v 0.27 0.189999 0.019999
v -0.27 -0 0.019999
v -0.27 -0 -0.019999
v -0.27 0.189999 -0.019999
v -0.27 0.189999 0.019999
v -0.31 0 0.019999
v -0.31 0 -0.019999
v -0.27 -0 -0.019999
v -0.27 -0 0.019999
v 0.27 0.23 -0.019999
v 0.27 0.23 0.019999
v 0.27 0.949999 0.019999
v 0.27 0.949999 -0.019999
v 0.27 0.949999 -0.019999
v 0.27 0.949999 0.019999
v -0.27 0.949999 0.019999
v -0.27 0.949999 -0.019999
v -0.27 0.949999 -0.019999
v -0.27 0.949999 0.019999
v -0.27 0.23 0.019999
v -0.27 0.23 -0.019999
vn 0 0 -1
vn 0 0 -1
vn 0 0 -1
vn 0 0 -1
vn 0 0 -1
vn 0 0 -1
vn 0 0 -1
vn 0 0 -1
vn 0 0 -1
vn 0 0 -1
vn 0 0 -1
vn 0 0 -1
vn 0 0 1
vn 0 0 1
vn 0 0 1
vn 0 0 1
vn 0 0 1
vn 0 0 1
vn 0 0 1
vn 0 0 1
vn 0 0 1
vn 0 0 1
vn 0 0 1
vn 0 0 1
vn 0 1 0
vn 0 1 0
vn 0 1 0
vn 0 1 0
vn -1 0 0
vn -1 0 0
vn -1 0 0
vn -1 0 0
vn 0 1 0
vn 0 1 0
vn 0 1 0
vn 0 1 0
vn 1 -0 0
vn 1 -0 0
vn 1 -0 0
vn 1 -0 0
vn 0 -1 0
vn 0 -1 0
vn 0 -1 0
vn 0 -1 0
vn -1 -0 0
vn -1 -0 0
vn -1 -0 0
vn -1 -0 0
vn 0 -1 0
vn 0 -1 0
vn 0 -1 0
vn 0 -1 0
vn 1 0 0
vn 1 0 0
vn 1 0 0
vn 1 0 0
vn -0 -1 0
vn -0 -1 0
vn -0 -1 0
vn -0 -1 0
vn -1 -0 0
vn -1 -0 0
vn -1 -0 0
vn -1 -0 0
vn 0 -1 0
vn 0 -1 0
vn 0 -1 0
vn 0 -1 0
vn 1 0 0
vn 1 0 0
vn 1 0 0
vn 1 0 0
f 1//1 2//2 3//3
f 4//4 5//5 6//6
f 4//4 3//3 2//2
f 2//2 5//5 4//4
f 3//3 7//7 1//1
f 6//6 1//1 7//7
f 8//8 6//6 9//9
f 7//7 9//9 6//6
f 6//6 8//8 4//4
f 10//10 11//11 7//7
f 7//7 3//3 10//10
f 9//9 12//12 8//8
f 13//13 14//14 15//15
f 14//14 16//16 17//17
f 17//17 18//18 14//14
f 19//19 20//20 16//16
f 21//21 15//15 20//20
f 15//15 21//21 13//13
f 22//22 20//20 15//15
f 20//20 19//19 21//21
f 16//16 23//23 19//19
f 16//16 14//14 13//13
f 13//13 23//23 16//16
f 15//15 24//24 22//22
f 25//25 26//26 27//27
f 27//27 28//28 25//25
f 29//29 30//30 31//31
f 31//31 32//32 29//29
f 33//33 34//34 35//35
f 35//35 36//36 33//33
f 37//37 38//38 39//39
f 39//39 40//40 37//37
f 41//41 42//42 43//43
f 43//43 44//44 41//41
f 45//45 46//46 47//47
f 47//47 48//48 45//45
f 49//49 50//50 51//51
f 51//51 52//52 49//49
f 53//53 54//54 55//55
f 55//55 56//56 53//53
f 57//57 58//58 59//59
f 59//59 60//60 57//57
f 61//61 62//62 63//63
f 63//63 64//64 61//61
f 65//65 66//66 67//67
f 67//67 68//68 65//65
f 69//69 70//70 71//71
f 71//71 72//72 69//69
@@ -0,0 +1,222 @@
#OBJ
#T-FLEX CAD ObjGenerator generate date:20.11.2024 23:59:6
v 0.625 0.541 0.019999
v 0.625 0.764999 0.019999
v 0.675 0.721 0.019999
v 0.634999 0.764999 0.019999
v 0.675 0.725 0.019999
v 0.634999 0.541 0.019999
v 0.675 0.721 0.208
v 0.625 0.764999 0.208
v 0.625 0.541 0.208
v 0.675 0.725 0.208
v 0.634999 0.764999 0.208
v 0.634999 0.541 0.208
v 0.634999 0.764999 0.208
v 0.675 0.725 0.208
v 0.675 0.725 0.019999
v 0.634999 0.764999 0.019999
v 0.675 0.721 0.208
v 0.634999 0.541 0.208
v 0.634999 0.541 0.019999
v 0.675 0.721 0.019999
v 0.625 0.541 0.208
v 0.625 0.541 0.019999
v 0.634999 0.541 0.019999
v 0.634999 0.541 0.208
v 0.675 0.725 0.208
v 0.675 0.721 0.208
v 0.675 0.721 0.019999
v 0.675 0.725 0.019999
v 0.634999 0.764999 0.208
v 0.634999 0.764999 0.019999
v 0.625 0.764999 0.019999
v 0.625 0.764999 0.208
v 0.6125 0.787999 0.261999
v 0.0125 0.787999 0.261999
v 0.0125 0.012 0.261999
v 0.6125 0.012 0.261999
v 0.0125 0.787999 0.25
v 0.0125 0.787999 0.261999
v 0.6125 0.787999 0.261999
v 0.6125 0.787999 0.25
v 0.6125 0.787999 0.25
v 0.6125 0.787999 0.261999
v 0.6125 0.012 0.261999
v 0.6125 0.012 0.25
v 0.6125 0.012 0.25
v 0.6125 0.012 0.261999
v 0.0125 0.012 0.261999
v 0.0125 0.012 0.25
v 0.0125 0.012 0.25
v 0.0125 0.012 0.261999
v 0.0125 0.787999 0.261999
v 0.0125 0.787999 0.25
v 0.625 0 0
v 0 0 0
v 0 0.8 0
v 0.625 0.8 0
v 0 0 0.25
v 0.0125 0.012 0.25
v 0.0125 0.787999 0.25
v 0.625 0 0.25
v 0.6125 0.012 0.25
v 0.625 0.8 0.25
v 0.6125 0.787999 0.25
v 0 0.8 0.25
v 0.625 0.8 0.25
v 0.625 0.8 0
v 0 0.8 0
v 0 0.8 0.25
v 0 0 0.25
v 0 0 0
v 0.625 0 0
v 0.625 0 0.25
v 0 0 0
v 0 0 0.25
v 0 0.8 0.25
v 0 0.8 0
v 0.625 0.8 0
v 0.625 0.764999 0.019999
v 0.625 0.541 0.019999
v 0.625 0.541 0.208
v 0.625 0.764999 0.208
v 0.625 0.8 0.25
v 0.625 0 0
v 0.625 0 0.25
vn 0 0 -1
vn 0 0 -1
vn 0 0 -1
vn 0 0 -1
vn 0 0 -1
vn 0 0 -1
vn 0 0 1
vn 0 0 1
vn 0 0 1
vn 0 0 1
vn 0 0 1
vn 0 0 1
vn 0.707106 0.707106 0
vn 0.707106 0.707106 0
vn 0.707106 0.707106 0
vn 0.707106 0.707106 0
vn 0.976187 -0.21693 0
vn 0.976187 -0.21693 0
vn 0.976187 -0.21693 0
vn 0.976187 -0.21693 0
vn 0 -1 0
vn 0 -1 0
vn 0 -1 0
vn 0 -1 0
vn 1 0 0
vn 1 0 0
vn 1 0 0
vn 1 0 0
vn 0 1 0
vn 0 1 0
vn 0 1 0
vn 0 1 0
vn 0 0 1
vn 0 0 1
vn 0 0 1
vn 0 0 1
vn -0 1 0
vn -0 1 0
vn -0 1 0
vn -0 1 0
vn 1 0 0
vn 1 0 0
vn 1 0 0
vn 1 0 0
vn 0 -1 0
vn 0 -1 0
vn 0 -1 0
vn 0 -1 0
vn -1 -0 0
vn -1 -0 0
vn -1 -0 0
vn -1 -0 0
vn 0 0 -1
vn 0 0 -1
vn 0 0 -1
vn 0 0 -1
vn 0 0 1
vn 0 0 1
vn 0 0 1
vn 0 0 1
vn 0 0 1
vn 0 0 1
vn 0 0 1
vn 0 0 1
vn 0 1 0
vn 0 1 0
vn 0 1 0
vn 0 1 0
vn 0 -1 0
vn 0 -1 0
vn 0 -1 0
vn 0 -1 0
vn -1 0 0
vn -1 0 0
vn -1 0 0
vn -1 0 0
vn 1 0 0
vn 1 0 0
vn 1 0 0
vn 1 0 0
vn 1 0 0
vn 1 0 0
vn 1 0 0
vn 1 0 0
f 1//1 2//2 3//3
f 2//2 4//4 5//5
f 5//5 3//3 2//2
f 3//3 6//6 1//1
f 7//7 8//8 9//9
f 7//7 10//10 11//11
f 9//9 12//12 7//7
f 11//11 8//8 7//7
f 13//13 14//14 15//15
f 15//15 16//16 13//13
f 17//17 18//18 19//19
f 19//19 20//20 17//17
f 21//21 22//22 23//23
f 23//23 24//24 21//21
f 25//25 26//26 27//27
f 27//27 28//28 25//25
f 29//29 30//30 31//31
f 31//31 32//32 29//29
f 33//33 34//34 35//35
f 35//35 36//36 33//33
f 37//37 38//38 39//39
f 39//39 40//40 37//37
f 41//41 42//42 43//43
f 43//43 44//44 41//41
f 45//45 46//46 47//47
f 47//47 48//48 45//45
f 49//49 50//50 51//51
f 51//51 52//52 49//49
f 53//53 54//54 55//55
f 55//55 56//56 53//53
f 57//57 58//58 59//59
f 60//60 61//61 58//58
f 58//58 57//57 60//60
f 60//60 62//62 63//63
f 64//64 59//59 63//63
f 59//59 64//64 57//57
f 63//63 62//62 64//64
f 63//63 61//61 60//60
f 65//65 66//66 67//67
f 67//67 68//68 65//65
f 69//69 70//70 71//71
f 71//71 72//72 69//69
f 73//73 74//74 75//75
f 75//75 76//76 73//73
f 77//77 78//78 79//79
f 80//80 81//81 82//82
f 79//79 83//83 77//77
f 81//81 78//78 77//77
f 80//80 84//84 83//83
f 77//77 82//82 81//81
f 83//83 79//79 80//80
f 82//82 84//84 80//80
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+8
View File
@@ -27,15 +27,23 @@ def data_files_from_tree(src_dir: str, dst_root: str) -> list:
package_name = 'iiwa_description'
resource_intsall_root = f"share/{package_name}/resource"
meshes_intsall_root = f"share/{package_name}/meshes"
urdf_intsall_root = f"share/{package_name}/urdf"
worlds_intsall_root = f"share/{package_name}/worlds"
protos_intsall_root = f"share/{package_name}/protos"
data_files = [
('share/' + package_name, ['package.xml']),
]
data_files += data_files_from_tree('resource', resource_intsall_root)
data_files += data_files_from_tree('meshes', meshes_intsall_root)
data_files += data_files_from_tree('urdf', urdf_intsall_root)
data_files += data_files_from_tree('worlds', worlds_intsall_root)
data_files += data_files_from_tree('protos', protos_intsall_root)
setup(
+280
View File
@@ -0,0 +1,280 @@
<?xml version="1.0" ?>
<!-- =================================================================================== -->
<!-- | This document was autogenerated by xacro from ./src/iiwa_description/urdf/iiwa7.urdf.xacro | -->
<!-- | EDITING THIS FILE BY HAND IS NOT RECOMMENDED | -->
<!-- =================================================================================== -->
<robot name="iiwa7">
<link name="world"/>
<link name="base_link">
<inertial>
<origin rpy="0 0 0" xyz="-0.012856764088336 7.05371084939836E-07 0.0679655592591469"/>
<mass value="30.2763517543289"/>
<inertia ixx="0.111239565538359" ixy="-3.81097437253422e-07" ixz="0.00486659750522703" iyy="0.139017104291389" iyz="7.87871531503135e-07" izz="0.133028621926226"/>
</inertial>
<visual>
<origin rpy="0 0 0" xyz="0 0 0"/>
<geometry>
<mesh filename="package://iiwa_description/resource/meshes/visual/base_link.DAE"/>
</geometry>
<material name="iiwa_material">
<color rgba="0.647058823529412 0.619607843137255 0.588235294117647 1"/>
</material>
</visual>
<collision>
<origin rpy="0 0 0" xyz="0 0 0"/>
<geometry>
<mesh filename="package://iiwa_description/resource/meshes/collision/base_link.STL"/>
</geometry>
</collision>
</link>
<link name="link1">
<inertial>
<origin rpy="0 0 0" xyz="-4.78790441849064E-07 -0.0348192058752328 -0.0692021315991948"/>
<mass value="21.1627406257303"/>
<inertia ixx="0.133321610552378" ixy="-5.3830316300325e-07" ixz="9.16989471201082e-07" iyy="0.127213841326705" iyz="0.0236704924620788" izz="0.047155320135412"/>
</inertial>
<visual>
<origin rpy="0 0 0" xyz="0 0 0"/>
<geometry>
<mesh filename="package://iiwa_description/resource/meshes/visual/link1.DAE"/>
</geometry>
<material name="iiwa_material">
<color rgba="0.647058823529412 0.619607843137255 0.588235294117647 1"/>
</material>
</visual>
<collision>
<origin rpy="0 0 0" xyz="0 0 0"/>
<geometry>
<mesh filename="package://iiwa_description/resource/meshes/collision/link1.STL"/>
</geometry>
</collision>
</link>
<link name="link2">
<inertial>
<origin rpy="0 0 0" xyz="-5.2906167189587E-07 -0.0869460684741495 0.0287906957294968"/>
<mass value="25.1403147192251"/>
<inertia ixx="0.197631241693207" ixy="9.50708464039702e-08" ixz="-3.51963818841194e-07" iyy="0.0602720613821397" iyz="-0.0367196702125505" izz="0.187557269753206"/>
</inertial>
<visual>
<origin rpy="0 0 0" xyz="0 0 0"/>
<geometry>
<mesh filename="package://iiwa_description/resource/meshes/visual/link2.DAE"/>
</geometry>
<material name="iiwa_material">
<color rgba="0.647058823529412 0.619607843137255 0.588235294117647 1"/>
</material>
</visual>
<collision>
<origin rpy="0 0 0" xyz="0 0 0"/>
<geometry>
<mesh filename="package://iiwa_description/resource/meshes/collision/link2.STL"/>
</geometry>
</collision>
</link>
<link name="link3">
<inertial>
<origin rpy="0 0 0" xyz="8.94264666317923E-07 0.0343188244798595 -0.0692020521907963"/>
<mass value="21.1627874292289"/>
<inertia ixx="0.133322417523041" ixy="-2.72387851582384e-07" ixz="-2.31579646685682e-07" iyy="0.127213838333813" iyz="-0.0236710393468367" izz="0.0471557500559207"/>
</inertial>
<visual>
<origin rpy="0 0 0" xyz="0 0 0"/>
<geometry>
<mesh filename="package://iiwa_description/resource/meshes/visual/link3.DAE"/>
</geometry>
<material name="iiwa_material">
<color rgba="0.647058823529412 0.619607843137255 0.588235294117647 1"/>
</material>
</visual>
<collision>
<origin rpy="0 0 0" xyz="0 0 0"/>
<geometry>
<mesh filename="package://iiwa_description/resource/meshes/collision/link3.STL"/>
</geometry>
</collision>
</link>
<link name="link4">
<inertial>
<origin rpy="0 0 0" xyz="9.9343785475714E-08 -0.0869462342636022 -0.0292907044657978"/>
<mass value="25.140328983289"/>
<inertia ixx="0.197630839812683" ixy="-3.9082887807781e-07" ixz="-3.24564289064112e-07" iyy="0.0602723071447973" iyz="0.0367195588674331" izz="0.187556898167347"/>
</inertial>
<visual>
<origin rpy="0 0 0" xyz="0 0 0"/>
<geometry>
<mesh filename="package://iiwa_description/resource/meshes/visual/link4.DAE"/>
</geometry>
<material name="iiwa_material">
<color rgba="0.647058823529412 0.619607843137255 0.588235294117647 1"/>
</material>
</visual>
<collision>
<origin rpy="0 0 0" xyz="0 0 0"/>
<geometry>
<mesh filename="package://iiwa_description/resource/meshes/collision/link4.STL"/>
</geometry>
</collision>
</link>
<link name="link5">
<inertial>
<origin rpy="0 0 0" xyz="-1.5059645121912E-07 -0.0298223596156005 -0.116233672352317"/>
<mass value="9.53466992761605"/>
<inertia ixx="0.0529038960536523" ixy="6.86274869084724e-08" ixz="3.57472026918582e-07" iyy="0.0444942713885967" iyz="0.0174914068345989" izz="0.0239916848880951"/>
</inertial>
<visual>
<origin rpy="0 0 0" xyz="0 0 0"/>
<geometry>
<mesh filename="package://iiwa_description/resource/meshes/visual/link5.DAE"/>
</geometry>
<material name="iiwa_material">
<color rgba="0.647058823529412 0.619607843137255 0.588235294117647 1"/>
</material>
</visual>
<collision>
<origin rpy="0 0 0" xyz="0 0 0"/>
<geometry>
<mesh filename="package://iiwa_description/resource/meshes/collision/link5.STL"/>
</geometry>
</collision>
</link>
<link name="link6">
<inertial>
<origin rpy="0 0 0" xyz="3.09820422451923E-06 -0.000588422963829549 0.000348569863276505"/>
<mass value="14.2007599322815"/>
<inertia ixx="0.0384515762635731" ixy="-6.70279497724119e-08" ixz="2.19173188415509e-06" iyy="0.0280010940276735" iyz="-0.00192249677468735" izz="0.0368124806983828"/>
</inertial>
<visual>
<origin rpy="0 0 0" xyz="0 0 0"/>
<geometry>
<mesh filename="package://iiwa_description/resource/meshes/visual/link6.DAE"/>
</geometry>
<material name="iiwa_material">
<color rgba="0.647058823529412 0.619607843137255 0.588235294117647 1"/>
</material>
</visual>
<collision>
<origin rpy="0 0 0" xyz="0 0 0"/>
<geometry>
<mesh filename="package://iiwa_description/resource/meshes/collision/link6.STL"/>
</geometry>
</collision>
</link>
<link name="link7">
<inertial>
<origin rpy="0 0 0" xyz="5.28878934317328E-07 3.37199922245852E-07 -0.0274928177649973"/>
<mass value="2.47156969383589"/>
<inertia ixx="0.00177365937026673" ixy="-1.2410521430667e-07" ixz="-2.95409038849194e-08" iyy="0.00177328722902027" iyz="-1.57567641084958e-08" izz="0.00272748710623445"/>
</inertial>
<visual>
<origin rpy="0 0 0" xyz="0 0 0"/>
<geometry>
<mesh filename="package://iiwa_description/resource/meshes/visual/link7.DAE"/>
</geometry>
<material name="iiwa_material">
<color rgba="0.647058823529412 0.619607843137255 0.588235294117647 1"/>
</material>
</visual>
<collision>
<origin rpy="0 0 0" xyz="0 0 0"/>
<geometry>
<mesh filename="package://iiwa_description/resource/meshes/collision/link7.STL"/>
</geometry>
</collision>
</link>
<link name="link_ee"/>
<joint name="world_base_joint" type="fixed">
<origin rpy="0.0 0.0 0.0" xyz="0.0 0.0 0.0"/>
<parent link="world"/>
<child link="base_link"/>
</joint>
<joint name="joint1" type="revolute">
<origin rpy="0 0 0" xyz="0 0 0.3375"/>
<parent link="base_link"/>
<child link="link1"/>
<axis xyz="0 0 -1"/>
<limit effort="176" lower="-2.97" upper="2.97" velocity="1.71"/>
</joint>
<joint name="joint2" type="revolute">
<origin rpy="-1.5708 0 0" xyz="0 0 0"/>
<parent link="link1"/>
<child link="link2"/>
<axis xyz="0 0 1"/>
<limit effort="176" lower="-2.09" upper="2.09" velocity="1.71"/>
</joint>
<joint name="joint3" type="revolute">
<origin rpy="1.5708 0 0" xyz="0 -0.3993 0"/>
<parent link="link2"/>
<child link="link3"/>
<axis xyz="0 0 -1"/>
<limit effort="110" lower="-2.97" upper="2.97" velocity="1.75"/>
</joint>
<joint name="joint4" type="revolute">
<origin rpy="-1.5708 0 0" xyz="0 0 0"/>
<parent link="link3"/>
<child link="link4"/>
<axis xyz="0 0 -1"/>
<limit effort="110" lower="-2.09" upper="2.09" velocity="2.27"/>
</joint>
<joint name="joint5" type="revolute">
<origin rpy="1.5708 0 0" xyz="0 -0.3993 0"/>
<parent link="link4"/>
<child link="link5"/>
<axis xyz="0 0 -1"/>
<limit effort="110" lower="-2.97" upper="2.97" velocity="2.44"/>
</joint>
<joint name="joint6" type="revolute">
<origin rpy="-1.5708 0 0" xyz="0 0 0"/>
<parent link="link5"/>
<child link="link6"/>
<axis xyz="0 0 1"/>
<limit effort="40" lower="-2.09" upper="2.09" velocity="3.14"/>
</joint>
<joint name="joint7" type="revolute">
<origin rpy="1.5708 0 0" xyz="0 -0.126 0"/>
<parent link="link6"/>
<child link="link7"/>
<axis xyz="0 0 1"/>
<limit effort="40" lower="-3.05" upper="3.05" velocity="3.14"/>
</joint>
<joint name="tools_joint" type="fixed">
<origin rpy="0.0 0.0 0.0" xyz="0.0 0.0 0.0"/>
<parent link="link7"/>
<child link="link_ee"/>
</joint>
<webots>
<plugin type="webots_ros2_control::Ros2Control"/>
</webots>
<ros2_control name="iiwaWebotsControl" type="system">
<hardware>
<plugin>webots_ros2_control::Ros2ControlSystem</plugin>
</hardware>
<joint name="joint1">
<state_interface name="position"/>
<command_interface name="position"/>
</joint>
<joint name="joint2">
<state_interface name="position"/>
<command_interface name="position"/>
</joint>
<joint name="joint3">
<state_interface name="position"/>
<command_interface name="position"/>
</joint>
<joint name="joint4">
<state_interface name="position"/>
<command_interface name="position"/>
</joint>
<joint name="joint5">
<state_interface name="position"/>
<command_interface name="position"/>
</joint>
<joint name="joint6">
<state_interface name="position"/>
<command_interface name="position"/>
</joint>
<joint name="joint7">
<state_interface name="position"/>
<command_interface name="position"/>
</joint>
</ros2_control>
</robot>
@@ -6,5 +6,51 @@
<xacro:include filename="$(find iiwa_description)/urdf/links.xacro"/>
<xacro:include filename="$(find iiwa_description)/urdf/joints.xacro"/>
<webots>
<plugin type="webots_ros2_control::Ros2Control"/>
</webots>
<ros2_control name="iiwaWebotsControl" type="system">
<hardware>
<plugin>webots_ros2_control::Ros2ControlSystem</plugin>
</hardware>
<joint name="joint1">
<state_interface name="position"/>
<command_interface name="position"/>
</joint>
<joint name="joint2">
<state_interface name="position"/>
<command_interface name="position"/>
</joint>
<joint name="joint3">
<state_interface name="position"/>
<command_interface name="position"/>
</joint>
<joint name="joint4">
<state_interface name="position"/>
<command_interface name="position"/>
</joint>
<joint name="joint5">
<state_interface name="position"/>
<command_interface name="position"/>
</joint>
<joint name="joint6">
<state_interface name="position"/>
<command_interface name="position"/>
</joint>
<joint name="joint7">
<state_interface name="position"/>
<command_interface name="position"/>
</joint>
</ros2_control>
</robot>
+8 -8
View File
@@ -12,48 +12,48 @@
<!-- joint1 -->
<xacro:revolute_joint jname="joint1" parent="base_link" child="link1"
xyz="0 0 0.3375" rpy="0 0 0" axis="0 0 -1"
lower="-2.97" upper="2.97" effort="176" velocity="1.71"/>
lower="-2.97" upper="2.97" effort="500" velocity="1.71"/>
<!-- joint2 -->
<xacro:revolute_joint jname="joint2" parent="link1" child="link2"
xyz="0 0 0" rpy="-1.5708 0 0" axis="0 0 1"
lower="-2.09" upper="2.09" effort="176" velocity="1.71"/>
lower="-2.09" upper="2.09" effort="500" velocity="1.71"/>
<!-- joint3 -->
<xacro:revolute_joint jname="joint3" parent="link2" child="link3"
xyz="0 -0.3993 0" rpy="1.5708 0 0" axis="0 0 -1"
lower="-2.97" upper="2.97" effort="110" velocity="1.75"/>
lower="-2.97" upper="2.97" effort="500" velocity="1.75"/>
<!-- joint4 -->
<xacro:revolute_joint jname="joint4" parent="link3" child="link4"
xyz="0 0 0" rpy="-1.5708 0 0" axis="0 0 -1"
lower="-2.09" upper="2.09" effort="110" velocity="2.27"/>
lower="-2.09" upper="2.09" effort="500" velocity="2.27"/>
<!-- joint5 -->
<xacro:revolute_joint jname="joint5" parent="link4" child="link5"
xyz="0 -0.3993 0" rpy="1.5708 0 0" axis="0 0 -1"
lower="-2.97" upper="2.97" effort="110" velocity="2.44"/>
lower="-2.97" upper="2.97" effort="500" velocity="2.44"/>
<!-- joint6 -->
<xacro:revolute_joint jname="joint6" parent="link5" child="link6"
xyz="0 0 0" rpy="-1.5708 0 0" axis="0 0 1"
lower="-2.09" upper="2.09" effort="40" velocity="3.14"/>
lower="-2.09" upper="2.09" effort="500" velocity="3.14"/>
<!-- joint7 -->
<xacro:revolute_joint jname="joint7" parent="link6" child="link7"
xyz="0 -0.126 0" rpy="1.5708 0 0" axis="0 0 1"
lower="-3.05" upper="3.05" effort="40" velocity="3.14"/>
lower="-3.05" upper="3.05" effort="500" velocity="3.14"/>
<joint name="tools_joint" type="fixed">
<origin xyz="0.0 0.0 0.0" rpy="0.0 0.0 0.0"/>
<parent link="link7"/>
<child link="link7_ee"/>
<child link="link_ee"/>
</joint>
</robot>
+1 -1
View File
@@ -101,6 +101,6 @@
mesh_vision="${mesh_link7_v}"
mesh_collision="${mesh_link7_c}"/>
<link name="link7_ee" />
<link name="link_ee" />
</robot>
+1 -1
View File
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<robot xmlns:xacro="http://www.ros.org/wiki/xacro" xacro:version="1.0">
<xacro:property name="pkg" value="package://iiwa_description/meshes"/>
<xacro:property name="pkg" value="package://iiwa_description/resource/meshes"/>
<!-- Меши отображения -->
<xacro:property name="mesh_base_v" value="${pkg}/visual/base_link.DAE"/>
+67
View File
@@ -0,0 +1,67 @@
#VRML_SIM R2025a utf8
EXTERNPROTO "https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/objects/backgrounds/protos/TexturedBackground.proto"
EXTERNPROTO "https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/objects/backgrounds/protos/TexturedBackgroundLight.proto"
EXTERNPROTO "https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/objects/floors/protos/RectangleArena.proto"
EXTERNPROTO "../resource/protos/CollaborativeRobotTable.proto"
EXTERNPROTO "../resource/protos/WorkspaceLimiter.proto"
WorldInfo {
title "iiwa robotics"
contactProperties [
ContactProperties {
material1 "TableMaterial"
coulombFriction [
0
]
bounce 0
bounceVelocity 0
softERP 1
softCFM 0.0001
}
]
}
Viewpoint {
orientation 0.19675345789351045 -0.08356742903703787 -0.976885132249993 3.928186370440618
position 5.324715157515194 -4.7927780008585446 4.166958679133935
followType "Mounted Shot"
ambientOcclusionRadius 3
}
TexturedBackground {
}
TexturedBackgroundLight {
texture "noon_sunny_empty"
luminosity 2
}
RectangleArena {
name "Room"
floorSize 12 12
wallHeight 2
}
CollaborativeRobotTable {
translation 0 0 -0.007
locked TRUE
showCabinet TRUE
}
Group {
children [
WorkspaceLimiter {
translation -1.56 -0.219999 1.01
rotation 0 0 1 1.5708
name "WorkspaceLimiter_back"
locked TRUE
scale 2.32 1 2
}
WorkspaceLimiter {
translation -0.04 1.18 1.01
name "WorkspaceLimiter_right"
locked TRUE
scale 2.43 1 2
}
]
}
DirectionalLight {
direction -0.1 0.1 0
intensity 2
}
@@ -0,0 +1,19 @@
#VRML_SIM R2025a utf8
EXTERNPROTO "https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/objects/backgrounds/protos/TexturedBackground.proto"
EXTERNPROTO "https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/objects/backgrounds/protos/TexturedBackgroundLight.proto"
EXTERNPROTO "https://raw.githubusercontent.com/cyberbotics/webots/R2025a/projects/objects/floors/protos/RectangleArena.proto"
WorldInfo {
}
Viewpoint {
orientation -0.20135401485081894 0.14705590432610455 0.9684168119700772 1.9104172436184537
position 2.126114183750861 -6.172386590547907 2.2530769187603243
}
TexturedBackground {
}
TexturedBackgroundLight {
}
RectangleArena {
floorSize 5 5
}