%CODEGENERATOR.GENCCODEJACOBIAN Generate C-functions for robot jacobians % % cGen.genccodejacobian() generates a robot-specific C-function to compute % the jacobians with respect to the robot base as well as the end effector. % % Notes:: % - Is called by CodeGenerator.genjacobian if cGen has active flag genccode or % genmex. % - The generated .c and .h files are generated in the directory specified % by the ccodepath property of the CodeGenerator object. % % Author:: % Joern Malzahn, (joern.malzahn@tu-dortmund.de) % % See also CodeGenerator.CodeGenerator, CodeGenerator.genccodefkine, CodeGenerator.genjacobian. % Copyright (C) 2012-2014, by Joern Malzahn % % This file is part of The Robotics Toolbox for Matlab (RTB). % % RTB is free software: you can redistribute it and/or modify % it under the terms of the GNU Lesser General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % RTB is distributed in the hope that it will be useful, % but WITHOUT ANY WARRANTY; without even the implied warranty of % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the % GNU Lesser General Public License for more details. % % You should have received a copy of the GNU Leser General Public License % along with RTB. If not, see . % % http://www.petercorke.com function [] = genccodejacobian(CGen) %% Check for existance symbolic expressions % Load symbolics symname = 'jacob0'; fname = fullfile(CGen.sympath,[symname,'.mat']); if exist(fname,'file') tmpStruct = load(fname); else error ('genmfunfkine:SymbolicsNotFound','Save symbolic expressions to disk first!') end %% Jacobian w.r.t. the robot base CGen.logmsg([datestr(now),'\tGenerating jacobian C-code with respect to the robot base frame']); % Prerequesites % check for existance of C-code directories srcDir = fullfile(CGen.ccodepath,'src'); hdrDir = fullfile(CGen.ccodepath,'include'); if ~exist(srcDir,'dir') mkdir(srcDir); end if ~exist(hdrDir,'dir') mkdir(hdrDir); end funname = [CGen.getrobfname,'_',symname]; funfilename = [funname,'.c']; hfilename = [funname,'.h']; Q = CGen.rob.gencoords; % Convert symbolic expression into C-code [funstr hstring] = ccodefunctionstring(tmpStruct.(symname),... 'funname',funname,... 'vars',{Q},'output','J0'); % Create the function description header hStruct = createHeaderStructJacob0(CGen.rob,funname); % create header hStruct.calls = hstring; hFString = CGen.constructheaderstringc(hStruct); %% Generate C implementation file fid = fopen(fullfile(srcDir,funfilename),'w+'); % Includes fprintf(fid,'%s\n\n',... ['#include "', hfilename,'"']); % Function fprintf(fid,'%s\n\n',funstr); fclose(fid); %% Generate C header file fid = fopen(fullfile(hdrDir,hfilename),'w+'); % Function description header fprintf(fid,'%s\n\n',hFString); % Include guard fprintf(fid,'%s\n%s\n\n',... ['#ifndef ', upper([symname,'_h'])],... ['#define ', upper([symname,'_h'])]); % Includes fprintf(fid,'%s\n\n',... '#include "math.h"'); % Function signature fprintf(fid,'%s\n\n',hstring); % Include guard fprintf(fid,'%s\n',... ['#endif /*', upper([symname,'_h */'])]); fclose(fid); CGen.logmsg('\t%s\n',' done!'); %% Jacobian w.r.t. the robot end effector % Load symbolics symname = 'jacobn'; fname = fullfile(CGen.sympath,[symname,'.mat']); if exist(fname,'file') CGen.logmsg([datestr(now),'\tGenerating jacobian C-code with respect to the robot end-effector frame']); tmpStruct = load(fname); else error ('genMFunJacobian:SymbolicsNotFound','Save symbolic expressions to disk first!') end funname = [CGen.getrobfname,'_',symname]; funfilename = [funname,'.c']; hfilename = [funname,'.h']; % Convert symbolic expression into C-code [funstr hstring] = ccodefunctionstring(tmpStruct.(symname),... 'funname',funname,... 'vars',{Q},'output','Jn'); % Create the function description header hStruct = createHeaderStructJacobn(CGen.rob,funname); % create header hStruct.calls = hstring; hFString = CGen.constructheaderstringc(hStruct); %% Generate C implementation file fid = fopen(fullfile(srcDir,funfilename),'w+'); % Function description header fprintf(fid,'%s\n\n',hFString); % Includes fprintf(fid,'%s\n\n',... ['#include "', hfilename,'"']); % Function fprintf(fid,'%s\n\n',funstr); fclose(fid); %% Generate C header file fid = fopen(fullfile(hdrDir,hfilename),'w+'); % Include guard fprintf(fid,'%s\n%s\n\n',... ['#ifndef ', upper([funname,'_h'])],... ['#define ', upper([funname,'_h'])]); % Includes fprintf(fid,'%s\n\n',... '#include "math.h"'); % Function signature fprintf(fid,'%s\n\n',hstring); % Include guard fprintf(fid,'%s\n',... ['#endif /*', upper([funname,'_h */'])]); fclose(fid); CGen.logmsg('\t%s\n',' done!'); end %% Definition of the function description header contents for each generated file function hStruct = createHeaderStructJacob0(rob,fname) [~,hStruct.funName] = fileparts(fname); hStruct.shortDescription = ['C code for the Jacobian with respect to the base coordinate frame of the ',rob.name,' arm.']; hStruct.detailedDescription = {['Given a full set of joint variables the function'],... 'computes the robot jacobian with respect to the base frame. Angles have to be given in radians!'}; hStruct.inputs = {['input1: ',int2str(rob.n),'-element vector of generalized coordinates.']}; hStruct.outputs = {['J0: [6x',num2str(rob.n),'] Jacobian matrix']}; hStruct.references = {'Robot Modeling and Control - Spong, Hutchinson, Vidyasagar',... 'Modelling and Control of Robot Manipulators - Sciavicco, Siciliano',... 'Introduction to Robotics, Mechanics and Control - Craig',... 'Modeling, Identification & Control of Robots - Khalil & Dombre'}; hStruct.authors = {'This is an autogenerated function!',... 'Code generator written by:',... 'Joern Malzahn (joern.malzahn@tu-dortmund.de)'}; hStruct.seeAlso = {'fkine,jacobn'}; end %% Definition of the header contents for each generated file function hStruct = createHeaderStructJacobn(rob,fname) [~,hStruct.funName] = fileparts(fname); hStruct.shortDescription = ['C code for the Jacobian with respect to the end-effector coordinate frame of the ',rob.name,' arm.']; hStruct.detailedDescription = {['Given a full set of joint variables the function'],... 'computes the robot jacobian with respect to the end-effector frame. Angles have to be given in radians!'}; hStruct.inputs = {['input1: ',int2str(rob.n),'-element vector of generalized coordinates.']}; hStruct.outputs = {['Jn: [6x',num2str(rob.n),'] Jacobian matrix']}; hStruct.references = {'Robot Modeling and Control - Spong, Hutchinson, Vidyasagar',... 'Modelling and Control of Robot Manipulators - Sciavicco, Siciliano',... 'Introduction to Robotics, Mechanics and Control - Craig',... 'Modeling, Identification & Control of Robots - Khalil & Dombre'}; hStruct.authors = {'This is an autogenerated function!',... 'Code generator written by:',... 'Joern Malzahn (joern.malzahn@tu-dortmund.de)'}; hStruct.seeAlso = {'fkine,jacob0'}; end