版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
V-REP是一款多功能的機(jī)器人仿真器,1.具有4種物理引擎((ODE,Bullet,Vortex,Newton));2.支持Windows,Linux,MacOS三種操作系統(tǒng);3.支持六種編程方法;4.七種編程語言(
(C/C++、Python、Java、Lua、Matlab、Octave、和Urbi))。本文將簡單地介紹如何將MATLAB與V-REP進(jìn)行通訊,分別實(shí)現(xiàn)簡單的讀取機(jī)器人關(guān)節(jié)角,傳送機(jī)器人關(guān)節(jié)角這兩種功能。一.所需的m文件在路徑...\V-REP3\V-REP_PRO_EDU\programming\remoteApiBindings\matlab\matlab中將所有的m文件復(fù)制到項(xiàng)目文件夾中。二.關(guān)鍵的語句V-REP端:
simExtRemoteApiStart(19999)MATLAB端:vrep=remApi('remoteApi');%usingtheprototypefile(remoteApiProto.m)
vrep.simxFinish(-1);%justincase,closeallopenedconnections
clientID=vrep.simxStart('',19999,true,true,5000,5);三.具體做法1.在V-REP中新建一個(gè)空白的場景,并從模型瀏覽器(ModleBrowser)填加一個(gè)Baxter機(jī)器人。(此時(shí)運(yùn)行仿真,機(jī)器人會(huì)運(yùn)動(dòng)。我們的目標(biāo)就是把各個(gè)關(guān)節(jié)角變化的情況記錄下來)2.點(diǎn)擊控制右臂的相應(yīng)代碼,在開頭增加一句:simExtRemoteApiStart(19999)3.新建一個(gè)matlab函數(shù),其代碼如下:functionbaxter_read()
disp('Programstarted');
%vrep=remApi('remoteApi','extApi.h');%usingtheheader(requiresacompiler)
vrep=remApi('remoteApi');%usingtheprototypefile(remoteApiProto.m)
vrep.simxFinish(-1);%justincase,closeallopenedconnections
clientID=vrep.simxStart('',19999,true,true,5000,5);
r1=[];
r2=[];
r3=[];
r4=[];
r5=[];
r6=[];
r7=[];
k=0;
if(clientID>-1)
disp('ConnectedtoremoteAPIserver');
%gethandleforBaxter_rightArm_joint1
[res,handle_rigArmjoint1]=vrep.simxGetObjectHandle(clientID,'Baxter_rightArm_joint1',vrep.simx_opmode_oneshot_wait);
[res,handle_rigArmjoint2]=vrep.simxGetObjectHandle(clientID,'Baxter_rightArm_joint2',vrep.simx_opmode_oneshot_wait);
[res,handle_rigArmjoint3]=vrep.simxGetObjectHandle(clientID,'Baxter_rightArm_joint3',vrep.simx_opmode_oneshot_wait);
[res,handle_rigArmjoint4]=vrep.simxGetObjectHandle(clientID,'Baxter_rightArm_joint4',vrep.simx_opmode_oneshot_wait);
[res,handle_rigArmjoint5]=vrep.simxGetObjectHandle(clientID,'Baxter_rightArm_joint5',vrep.simx_opmode_oneshot_wait);
[res,handle_rigArmjoint6]=vrep.simxGetObjectHandle(clientID,'Baxter_rightArm_joint6',vrep.simx_opmode_oneshot_wait);
[res,handle_rigArmjoint7]=vrep.simxGetObjectHandle(clientID,'Baxter_rightArm_joint7',vrep.simx_opmode_oneshot_wait);
while(vrep.simxGetConnectionId(clientID)~=-1),%whilev-repconnectionisstillactive
t=vrep.simxGetLastCmdTime(clientID)/1000.0;%getcurrentsimulationtime
if(t>1000)break;
end%stopaftert=1000seconds
[res,r1angle]=vrep.simxGetJointPosition(clientID,handle_rigArmjoint1,vrep.simx_opmode_oneshot_wait);
[res,r2angle]=vrep.simxGetJointPosition(clientID,handle_rigArmjoint2,vrep.simx_opmode_oneshot_wait);
[res,r3angle]=vrep.simxGetJointPosition(clientID,handle_rigArmjoint3,vrep.simx_opmode_oneshot_wait);
[res,r4angle]=vrep.simxGetJointPosition(clientID,handle_rigArmjoint4,vrep.simx_opmode_oneshot_wait);
[res,r5angle]=vrep.simxGetJointPosition(clientID,handle_rigArmjoint5,vrep.simx_opmode_oneshot_wait);
[res,r6angle]=vrep.simxGetJointPosition(clientID,handle_rigArmjoint6,vrep.simx_opmode_oneshot_wait);
[res,r7angle]=vrep.simxGetJointPosition(clientID,handle_rigArmjoint7,vrep.simx_opmode_oneshot_wait);
r1=[r1r1angle];
r2=[r2r2angle];
r3=[r3r3angle];
r4=[r4r4angle];
r5=[r5r5angle];
r6=[r6r6angle];
r7=[r7r7angle];
k=k+1%totest
end
r=[r1'r2'r3'r4'r5'r6'r7'];
fid=fopen('angle.txt','wt');
[m,n]=size(r);
fori=1:1:m
forj=1:1:n
ifj==n
fprintf(fid,'%g\n',r(i,j));
else
fprintf(fid,'%g\t',r(i,j));
end
end
end
fclose(fid);
%BeforeclosingtheconnectiontoV-REP,makesurethatthelastcommandsentouthadtimetoarrive.Youcanguaranteethiswith(forexample):
vrep.simxGetPingTime(clientID);
%NowclosetheconnectiontoV-REP:
vrep.simxFinish(clientID);
else
disp('FailedconnectingtoremoteAPIserver');
end
vrep.delete();%callthedestructor!
disp('Programended');
end
4.運(yùn)行V-REP仿真,同時(shí)運(yùn)行MATLAB。如果運(yùn)行成功,會(huì)生成一個(gè)angle的txt文件,導(dǎo)入到MATLAB可以觀測到到Baxter機(jī)器人7個(gè)關(guān)節(jié)角的變化如圖所示:5.接下來嘗試將這組關(guān)節(jié)角輸入到V-REP中,控制機(jī)器人運(yùn)動(dòng)。首先是再建一個(gè)V-REP場景,添加Baxter機(jī)器人,把機(jī)器人右臂相關(guān)的代碼刪除,添加上下面一句:simExtRemoteApiStart(19999)6.新建一個(gè)MATLAB函數(shù),其代碼如下:
functionbaxter_write()
disp('Programstarted');
%vrep=remApi('remoteApi','extApi.h');%usingtheheader(requiresacompiler)
vrep=remApi('remoteApi');%usingtheprototypefile(remoteApiProto.m)
vrep.simxFinish(-1);%justincase,closeallopenedconnections
clientID=vrep.simxStart('',19999,true,true,5000,5);
%readthejointangledatafrom'angle.txt'
jointValue=load('angle.txt');%Amatrixof7x150.EachcolumnvectorrecordedthechangesofeachjointAngle
[mn]=size(jointValue);
if(clientID>-1)
disp('ConnectedtoremoteAPIserver');
%gethandleforBaxter_rightArm_joint1
[res,handle_rightArmjoint1]=vrep.simxGetObjectHandle(clientID,'Baxter_rightArm_joint1',vrep.simx_opmode_oneshot_wait);
[res,handle_rightArmjoint2]=vrep.simxGetObjectHandle(clientID,'Baxter_rightArm_joint2',vrep.simx_opmode_oneshot_wait);
[res,handle_rightArmjoint3]=vrep.simxGetObjectHandle(clientID,'Baxter_rightArm_joint3',vrep.simx_opmode_oneshot_wait);
[res,handle_rightArmjoint4]=vrep.simxGetObjectHandle(clientID,'BaxterrightArm_joint4',vrep.simx_opmode_oneshot_wait);
[res,handle_rightArmjoint5]=vrep.simxGetObjectHandle(clientID,'Baxter_rightArm_joint5',vrep.simx_opmode_oneshot_wait);
[res,handle_rightArmjoint6]=vrep.simxGetObjectHandle(clientID,'Baxter_rightArm_joint6',vrep.simx_opmode_oneshot_wait);
[res,handle_rightArmjoint7]=vrep.simxGetObjectHandle(clientID,'Baxter_rightArm_joint7',vrep.simx_opmode_oneshot_wait);
%Setthepositionofeveryjoint
while(vrep.simxGetConnectionId(clientID)~=-1),%whilev-repconnectionisstillactive
fori=1:m
vrep.simxPauseCommunication(clientID,1);
vrep.simxSetJointTargetPosition(clientID,handle_rightArmjoint1,jointValue(i,1),vrep.simx_opmode_oneshot);
vrep.simxSetJointTargetPosition(clientID,handle_rightArmjoint2,jointValue(i,2),vrep.simx_opmode_oneshot);
vrep.simxSetJointTargetPosition(clientID,handle_rightArmjoint3,jointValue(i,3),vrep.simx_opmode_oneshot);
vrep.simxSetJointTargetPosition(clientID,handle_rightArmjoint4,jointValue(i,4),vrep.simx_opmode_oneshot);
vrep.simxSetJointTargetPosition(clientID,handle_rightArmjoint5,jointValue(i,5),vrep.simx_opmode_oneshot);
vrep.simxSetJointTargetPosition(clientID,handle_rightArmjoint6,jointValue(i,6),vrep.simx_opmode_oneshot);
vre
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 會(huì)務(wù)費(fèi)協(xié)議合同范例
- 2024年電力工程設(shè)計(jì)與施工合同
- 古董合同范例
- 唐山市教師合同范例
- 2024至2030年割灌機(jī)項(xiàng)目投資價(jià)值分析報(bào)告
- 2024至2030年交流電源項(xiàng)目投資價(jià)值分析報(bào)告
- 外用土方合同范例
- 工程安裝窗戶合同范例
- 綠化樹木砍伐合同范例
- 2024年超聲波位移傳感器項(xiàng)目可行性研究報(bào)告
- 高鐵橋墩吊圍欄施工合同
- 告訴我地址 -從IPv4到IPv6的傳奇 課件 2024-2025學(xué)年清華大學(xué)版(2024)B版初中信息技術(shù)七年級(jí)上冊(cè)
- 2024年全新初二化學(xué)上冊(cè)期末試卷及答案(人教版)
- AI賦能企業(yè)新未來-探索智能化技術(shù)在企業(yè)中的應(yīng)用
- 2023-2024學(xué)年湖北省武漢市洪山區(qū)九年級(jí)(上)期末物理試卷(含答案)
- 四年級(jí)英語上冊(cè) 【期末詞匯】 期末詞匯專項(xiàng)檢測卷(一)(含答案)(人教PEP)
- 創(chuàng)業(yè)人生學(xué)習(xí)通超星期末考試答案章節(jié)答案2024年
- 義務(wù)教育法主題班會(huì)課件
- 2024化學(xué)鍍鎳規(guī)程
- 人教版2024七年級(jí)英語上冊(cè)全冊(cè)單元重點(diǎn)詞匯綜合訓(xùn)練
- 某大學(xué)中醫(yī)學(xué)(專升本)學(xué)士學(xué)位考試復(fù)習(xí)題
評(píng)論
0/150
提交評(píng)論