%CODEGENERATOR.GENCCODEFRICTION Generate C-code for the joint friction % % cGen.genccodefriction() generates a robot-specific C-function to compute % vector of friction torques/forces. % % Notes:: % - Is called by CodeGenerator.genfriction if cGen has active flag genccode or % genmex % - The generated .c and .h files are wirtten to the directory specified in % the ccodepath property of the CodeGenerator object. % % Author:: % Joern Malzahn, (joern.malzahn@tu-dortmund.de) % % See also CodeGenerator.CodeGenerator, CodeGenerator.genfriction, CodeGenerator.genmexfriction. % 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 [] = genccodefriction(CGen) %% Check for existance symbolic expressions % Load symbolics symname = 'friction'; fname = fullfile(CGen.sympath,[symname,'.mat']); if exist(fname,'file') tmpStruct = load(fname); else error ('genmfunfriction:SymbolicsNotFound','Save symbolic expressions to disk first!') end %% Prerequesites CGen.logmsg([datestr(now),'\tGenerating C-code for the vector of frictional torques/forces' ]); % 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']; [~,QD] = CGen.rob.gencoords; % Convert symbolic expression into C-code [funstr hstring] = ccodefunctionstring(tmpStruct.(symname),... 'funname',funname,... 'vars',{QD},'output','F'); % Create the function description header hStruct = createHeaderStruct(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+'); % Description header fprintf(fid,'%s\n\n',hFString); % 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 prototype 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 function hStruct = createHeaderStruct(rob,fname) [~,hStruct.funName] = fileparts(fname); hStruct.shortDescription = ['Joint friction for the ',rob.name,' arm.']; hStruct.detailedDescription = {['Given a full set of generalized joint velocities the function'],... 'computes the friction forces/torques. Angles have to be given in radians!'}; hStruct.inputs = { ['input1: ',int2str(rob.n),'-element vector of generalized velocities.']}; hStruct.outputs = {['F: [',int2str(rob.n),'x1] output vector of joint friction forces/torques.']}; 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 = {'gravload'}; end