這篇文章主要介紹“matlab如何實(shí)現(xiàn)PID控制小車前進(jìn)到指定位置”,在日常操作中,相信很多人在matlab如何實(shí)現(xiàn)PID控制小車前進(jìn)到指定位置問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”matlab如何實(shí)現(xiàn)PID控制小車前進(jìn)到指定位置”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
洛扎網(wǎng)站建設(shè)公司成都創(chuàng)新互聯(lián)公司,洛扎網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為洛扎1000多家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站制作要多少錢,請找那個(gè)售后服務(wù)好的洛扎做網(wǎng)站的公司定做!
分為三步:
根據(jù)目標(biāo)位置確定小車前進(jìn)方向
計(jì)算目標(biāo)方向與當(dāng)前方向的差異
選取適當(dāng)PID參數(shù)驅(qū)動(dòng)左右輪運(yùn)轉(zhuǎn)
首先打開這個(gè)文件
在
實(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)行
到此,關(guān)于“matlab如何實(shí)現(xiàn)PID控制小車前進(jìn)到指定位置”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!