溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

matlab如何實(shí)現(xiàn)PID控制小車前進(jìn)到指定位置

發(fā)布時(shí)間:2022-01-14 10:22:21 來源:億速云 閱讀:206 作者:iii 欄目:大數(shù)據(jù)

這篇文章主要介紹“matlab如何實(shí)現(xiàn)PID控制小車前進(jìn)到指定位置”,在日常操作中,相信很多人在matlab如何實(shí)現(xiàn)PID控制小車前進(jìn)到指定位置問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”matlab如何實(shí)現(xiàn)PID控制小車前進(jìn)到指定位置”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

分為三步:

根據(jù)目標(biāo)位置確定小車前進(jìn)方向

計(jì)算目標(biāo)方向與當(dāng)前方向的差異

選取適當(dāng)PID參數(shù)驅(qū)動左右輪運(yùn)轉(zhuǎn)


首先打開這個(gè)文件

matlab如何實(shí)現(xiàn)PID控制小車前進(jìn)到指定位置  

matlab如何實(shí)現(xiàn)PID控制小車前進(jìn)到指定位置  

實(shí)現(xiàn)PID控制小車前進(jìn)到指定位置

%% START CODE BLOCK %%

            % 1. Calculate the heading (angle) to the goal.

            % distance between goal and robot in x-direction

            u_x = x_g-x;

            % distance between goal and robot in y-direction

            u_y = y_g-y;

            % angle from robot to goal. Hint: use ATAN2, u_x, u_y here.

            theta_g = atan2(u_y,u_x);

            % 2. Calculate the heading error.

            % error between the goal angle and robot's angle

            % Hint: Use ATAN2 to make sure this stays in [-pi,pi].

            e_k = atan2(sin(theta_g-theta),cos(theta_g-theta));  

            % 3. Calculate PID for the steering angle 

            % error for the proportional term

            e_P = e_k;

            % error for the integral term. Hint: Approximate the integral using

            % the accumulated error, obj.E_k, and the error for

            % this time step, e_k.

            e_I = obj.E_k + e_k*dt;

            % error for the derivative term. Hint: Approximate the derivative

            % using the previous error, obj.e_k_1, and the

            % error for this time step, e_k.

            e_D = (e_k-obj.e_k_1)/dt;   

            %% END CODE BLOCK %%

最后運(yùn)行

matlab如何實(shí)現(xiàn)PID控制小車前進(jìn)到指定位置    

到此,關(guān)于“matlab如何實(shí)現(xiàn)PID控制小車前進(jìn)到指定位置”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI