No BSD License  

Highlights from
Framework for differential steering vehicle

image thumbnail
from Framework for differential steering vehicle by Paolo Di Prodi
A framework for a differential steering vehicle controlled by a PID system tuned with a genetic algo

new_position=deadReckonTimeVelocity3(position,vr,vl,t,bw)
%% Author: epokh
%% Website: www.epokh.org/drupy
%% This software is under GPL


function new_position=deadReckonTimeVelocity3(position,vr,vl,t,bw)
%% This function calculate the new position of the robot
%% with some approssimation on the direct kinematic
%% from the left wheel speed, right wheel speed and simulation time
%% bw is the axe's length

x0=position(1);
y0=position(2);
theta0=position(3);

sr=vr*t;
sl=vl*t;

theta=theta0+(sr-sl)/(2*bw);
x=x0+(sr+sl)/2*(cos(theta));
y=y0+(sr+sl)/2*(sin(theta));
new_position=[x,y,theta];

end

Contact us at files@mathworks.com