로봇工學(공학) waypoint와 로봇의 거리를 이용한 mapping
페이지 정보
작성일 20-05-27 16:41
본문
Download : 로공플2 k.hwp
elseif ld<=ld_min
ld_min=3; % min look ahead distance = 3m
if wp_idx==0
% wp = way point vetor table
ld=ld_min;
% x = current vehicle position in ENU
ld_max=25; % max look ahead distance = 3m
서울 K대학교 ㅈㄱㅇ 교수님 로봇工學(공학) Task 로 waypoint와 로봇의 거리를 이용한 mapping하는 방법이 있는 reference(자료)입니다.
if ld>=ld_max
end
% vx = vehicle forward velocity
Download : 로공플2 k.hwp( 17 )
wp_idx_1=wp_idx-1;
L=2.55; % Soul Length between front and rear wheel (m)
end
레포트 > 공학,기술계열
% theta = current vehicle heading angle in rad (angle from E-axis in CCW)
ld=ld_max;
서울 K대학교 ㅈㄱㅇ 교수님 로봇공학 과제로 waypoint와 로봇의 거리를 이용한 mapping하는 방법이 있는 자료입니다.
m_idx=length(wp);
d_th=5; % radius in meter
설명
% delta_d = steering angle
function [delta_d, v_d, range2wp, e_cross, wp_idx1] = pure_pursuit(x, theta, vx, k_ld, wp, v_profile, wp_idx)





ld=k_ld*vx;
% wp_idx = current way point index
로봇공학 지규인
% v_d = velocity command
% v_profile = velocity profile for each way point
% k_ld = look ahead gain
wp_idx=1; % start way point index
Matlab code
순서
% ld = look ahead distance 3~25m
로봇工學(공학) waypoint와 로봇의 거리를 이용한 mapping
다.