% Created 2025-12-02 Tue 16:28 % Intended LaTeX compiler: pdflatex \documentclass[a4paper, 10pt, DIV=12, parskip=full, bibliography=totoc]{scrreprt} \input{preamble.tex} \input{preamble_extra.tex} \author{Dehaeze Thomas} \date{\today} \title{Delta Robot} \hypersetup{ pdfauthor={Dehaeze Thomas}, pdftitle={Delta Robot}, pdfkeywords={}, pdfsubject={}, pdfcreator={Emacs 30.2 (Org mode 9.7.34)}, pdflang={English}} \usepackage{biblatex} \begin{document} \maketitle \tableofcontents \clearpage \chapter{The Delta Robot Kinematics} \label{sec:delta_robot_kinematics} \section{Studied Geometry} The Delta Robot geometry is defined as shown in Figure \ref{fig:delta_robot_schematic}. The geometry is fully defined by three parameters: \begin{itemize} \item \texttt{d}: Cube's size (i.e., the length of the cube edge) \item \texttt{b}: Distance from cube's vertex to top flexible joint \item \texttt{L}: Distance between two flexible joints (i.e., the length of the struts) \end{itemize} \begin{figure}[htbp] \centering \includegraphics[scale=1]{figs/delta_robot_schematic.png} \caption{\label{fig:delta_robot_schematic}Schematic of the Delta Robot} \end{figure} Several frames are defined: \begin{itemize} \item \(\{C\}\): Cube's center \item \(\{M\}\): Frame attached to the mobile platform, and located at the height of the top flexible joints \item \(\{F\}\): Frame attached to the fixed platform, and located at the height of the bottom flexible joints \end{itemize} Several points are defined: \begin{itemize} \item \(c_i\): vertices of the cubes which are relevant for the Delta Robot \item \(b_i\): location of the top flexible joints \item \(a_i\): location of the bottom flexible joints \item \(\hat{s}_i\): unit vector aligned with the struts \end{itemize} Static properties: \begin{itemize} \item All top and bottom flexible joints are identical. The following properties can be specified: \begin{itemize} \item \(k_a\): Axial stiffness \item \(k_r\): Radial stiffness \item \(k_b\): Bending stiffness \item \(k_t\): Torsion stiffness \end{itemize} \item The guiding mechanism of the actuator is here supposed to be perfect (i.e. 1dof system without any stiffness) \item The Actuator is modelled as a 1DoF or 2DoF (good to model APA): \begin{itemize} \item The custom developed APA has an axial stiffness of \(1.3\,N/\mu m\) \end{itemize} \end{itemize} Dynamical properties: \begin{itemize} \item Top platform inertia: It has a mass of \textasciitilde{}300g \item Payloads: payloads can weight up to 1kg \end{itemize} Let's initialize a Delta Robot architecture, and plot the obtained geometry (Figures \ref{fig:delta_robot_architecture} and \ref{fig:delta_robot_architecture_top}). \begin{minted}[]{matlab} %% Geometry d = 50e-3; % Cube's edge length [m] b = 20e-3; % Distance between cube's vertices and top joints [m] L = 50e-3; % Length of the struts [m] \end{minted} \begin{figure}[htbp] \centering \includegraphics[scale=1]{figs/delta_robot_architecture.png} \caption{\label{fig:delta_robot_architecture}Delta Robot Architecture} \end{figure} \begin{figure}[htbp] \centering \includegraphics[scale=1]{figs/delta_robot_architecture_top.png} \caption{\label{fig:delta_robot_architecture_top}Delta Robot Architecture - Top View} \end{figure} \section{Kinematics: Jacobian Matrix and Mobility} There are three actuators in the following directions \(\hat{s}_1\), \(\hat{s}_2\) and \(\hat{s}_3\); \begin{equation}\label{eq:delta_robot_unit_vectors} \hat{\bm{s}}_1 = \begin{bmatrix} \frac{-1}{\sqrt{6}} \\ \frac{-1}{\sqrt{2}} \\ \frac{1}{\sqrt{3}} \end{bmatrix}\quad \hat{\bm{s}}_2 = \begin{bmatrix} \frac{\sqrt{2}}{\sqrt{3}} \\ 0 \\ \frac{1}{\sqrt{3}} \end{bmatrix}\quad \hat{\bm{s}}_3 = \begin{bmatrix} \frac{-1}{\sqrt{6}} \\ \frac{ 1}{\sqrt{2}} \\ \frac{1}{\sqrt{3}} \end{bmatrix} \end{equation} The Jacobian matrix is defined as shown in \eqref{eq:delta_robot_jacobian}. \begin{equation}\label{eq:delta_robot_jacobian} \bm{J} = \begin{bmatrix} \hat{\bm{s}}_1^T \\ \hat{\bm{s}}_2^T \\ \hat{\bm{s}}_3^T \end{bmatrix} \end{equation} It links the small actuator displacement to the top platform displacement \eqref{eq:delta_robot_inverse_kinematics}. \begin{equation}\label{eq:delta_robot_inverse_kinematics} d\mathcal{L} = J d\mathcal{L} \end{equation} \begin{equation}\label{eq:delta_robot_forward_kinematics} d\mathcal{X} = J^{-1} d\mathcal{L} \end{equation} The achievable workspace is a cube whose edge length is equal to the actuator stroke. \begin{figure}[htbp] \centering \includegraphics[scale=1]{figs/delta_robot_3d_workspace.png} \caption{\label{fig:delta_robot_3d_workspace}3D workspace} \end{figure} As most likely, the system will be used to perform YZ scans, it is interesting to see the mobility of the system in the ZY plane. Depending on how the YZ plane is oriented (i.e., depending on the Rz angle of the delta robot with respect to the beam, defining the x direction), we get different mobility. \begin{figure}[htbp] \centering \includegraphics[scale=1]{figs/delta_robot_2d_workspace.png} \caption{\label{fig:delta_robot_2d_workspace}2D mobility for different orientations and worst case} \end{figure} \phantomsection \label{} \begin{verbatim} Maximum YZ mobility for an angle of 270 degrees, square with edge size of 117 um \end{verbatim} \begin{figure}[htbp] \centering \includegraphics[scale=1]{figs/delta_robot_2d_workspace_optimal.png} \caption{\label{fig:delta_robot_2d_workspace_optimal}2D mobility for the optimal Rz angle} \end{figure} \section{Kinematics: Degrees of Freedom} In the perfect case (flexible joints having no stiffness in bending, and infinite stiffness in torsion and in the axial direction), the top platform is allowed to move only in the X, Y and Z directions while the three rotations are fixed. In order to have some compliance in rotation, the flexible joints need to have some compliance in torsion \textbf{and} in the axial direction. If only the torsional compliance is considered, or only the axial compliance, the top platform will still not be able to do any rotation. This is shown below with the Simscape model. Perfect Delta Robot: \begin{itemize} \item infinite axial stiffness \item infinite torsional stiffness \item no bending stiffness \end{itemize} It gives infinite stiffness in rotations, and a stiffness of \(1\,N/\mu m\) in X, Y and Z directions (i.e. equal to the actuator stiffness). \phantomsection \label{} \begin{verbatim} Stiffness in X,Y and Z directions: 1.0 N/um \end{verbatim} If we consider the torsion of the flexible joints: \begin{itemize} \item infinite axial stiffness \item finite torsional stiffness \item no bending stiffness \end{itemize} We get the same result. If we consider the axial of the flexible joints: \begin{itemize} \item finite axial stiffness \item infinite torsional stiffness \item no bending stiffness \end{itemize} We get the same result. No we consider both finite torsional stiffness and finite axial stiffness. In that case we get some compliance in rotation. So it is a combination of axial and torsion stiffness that gives some rotational stiffness of the top platform. Therefore, to model some compliance of the top platform in rotation, both the axial compliance and the torsional compliance of the flexible joints should be considered. \section{Kinematics: Number of modes} In the perfect condition (i.e. infinite stiffness in torsion and in compression of the flexible joints), the system has 6 states (i.e. 3 modes, one for each DoF: X, Y and Z). When considering some compliance in torsion of the flexible joints, 12 states are added (one internal mode of the struts). To remove these internal states (that might not be interesting but that could slow the simulations), one of the joint can have this torsional compliance while the other can have the torsional DoF constrained. \phantomsection \label{} \begin{verbatim} State-space model with 3 outputs, 3 inputs, and 6 states. \end{verbatim} \chapter{Flexible Joint Design} \label{sec:delta_robot_flexible_joints} First, in Section \ref{ssec:delta_robot_flexible_joints_geometry}, the dynamics of a ``perfect'' Delta-Robot is identified (i.e. with perfect 2DoF rotational joints). Then, the impact of the flexible joint's imperfections will be studied. The goal is to extract specifications for the flexible joints of the six struts, in terms of: \begin{itemize} \item bending stiffness (Section \ref{ssec:delta_robot_flexible_joints_bending}) \item axial stiffness (Section \ref{ssec:delta_robot_flexible_joints_axial}) \item torsional stiffness (Section \ref{ssec:delta_robot_flexible_joints_torsion}) \item shear stiffness (Section \ref{ssec:delta_robot_flexible_joints_shear}) \end{itemize} \section{Studied Geometry} \label{ssec:delta_robot_flexible_joints_geometry} The cube's edge length is equal to 50mm, the distance between cube's vertices and top joints is 20mm and the length of the struts (i.e. the distance between the two flexible joints of the same strut) is 50mm. The actuator stiffness is \(1\,N/\mu m\). The obtained geometry is shown in Figure \ref{fig:delta_robot_studied_geometry}. \begin{figure}[htbp] \centering \includegraphics[scale=1]{figs/delta_robot_studied_geometry.png} \caption{\label{fig:delta_robot_studied_geometry}Geometry of the studied Delta Robot} \end{figure} The dynamics is first identified in perfect conditions (infinite axial stiffness of the joints, zero bending stiffness). We get \texttt{State-space model with 3 outputs, 3 inputs, and 6 states.} We get a perfectly decoupled system, with three identical modes in the X, Y and Z directions. The dynamics is shown in Figure \ref{fig:delta_robot_dynamics_perfect}. \begin{figure}[htbp] \centering \includegraphics[scale=1]{figs/delta_robot_dynamics_perfect.png} \caption{\label{fig:delta_robot_dynamics_perfect}Dynamics of the delta robot with perfect joints} \end{figure} \section{Bending Stiffness} \label{ssec:delta_robot_flexible_joints_bending} \subsection{Stiffness seen by the actuator, and decrease of the achievable stroke} Because the flexible joints will have some bending stiffness, the actuator in one direction will ``see'' some stiffness due to the struts in the other directions. This will limit its effective stroke. We want this parallel stiffness to be much smaller than the stiffness of the actuator. The parallel stiffness seen by the actuator as a function of the bending stiffness of the flexible joints is computed and shown in Figure \ref{fig:delta_robot_bending_stiffness_parallel_k}. \begin{figure}[htbp] \centering \includegraphics[scale=1]{figs/delta_robot_bending_stiffness_parallel_k.png} \caption{\label{fig:delta_robot_bending_stiffness_parallel_k}Effect of the bending stiffness of the flexible joints on the stiffness seen by the actuators} \end{figure} The parallel stiffness is therefore proportional to the bending stiffness. The ``linear coefficient'' depend on the geometry, and it is here equal to \(3200 \frac{N/m}{Nm/\text{rad}}\). If we want the parallel stiffness to be much smaller than the stiffness of the actuator (\(k_p \ll k_a = 1.6\,N/\mu m\)), the bending stiffness should be \(\ll 500\,Nm/\text{rad}\). Therefore, we should aim at \(k_f < 50\,Nm/\text{rad}\). This should be validated with the final geometry. Then, the dynamics is identified for a bending Stiffness of \(50\,Nm/\text{rad}\) and compared with a Delta robot with no bending stiffness in Figure \ref{fig:delta_robot_bending_stiffness_dynamics}. It can be seen that the DC gain is a bit lower when the bending stiffness is considered and the resonance frequency is increased. This simply means that the system stiffness is increased. It is not critical from a dynamical point of view, it just decreases the achievable stroke as explained in the previous section. \begin{figure}[htbp] \centering \includegraphics[scale=1]{figs/delta_robot_bending_stiffness_dynamics.png} \caption{\label{fig:delta_robot_bending_stiffness_dynamics}Effect of the bending stiffness on the dynamics} \end{figure} \subsection{Effect on the coupling} Here, reasonable values for the flexible joints (modelled as a 6DoF joint) stiffness are taken: \begin{itemize} \item Torsional stiffness of 500Nm/rad \item Axial stiffness of 100N/um \item Shear stiffness of 100N/um \end{itemize} And the bending stiffness is varied from low to high values. The obtained dynamics is shown in Figure \ref{fig:delta_robot_bending_stiffness_couplign}. It can be seen that the low frequency coupling increases when the bending stiffness increases. Therefore, the bending stiffness of the flexible joints should be minimized (10Nm/rad could be a reasonable objective). \begin{figure}[htbp] \centering \includegraphics[scale=1]{figs/delta_robot_bending_stiffness_couplign.png} \caption{\label{fig:delta_robot_bending_stiffness_couplign}Effect of the bending stiffness of the flexible joints on the coupling} \end{figure} \section{Axial Stiffness} \label{ssec:delta_robot_flexible_joints_axial} Now, the effect of the axial stiffness on the dynamics is studied (Figure \ref{fig:delta_robot_axial_stiffness_dynamics}). Additional modes can be observed on the plant dynamics, which could limit the achievable bandwidth. Therefore the axial stiffness should be maximized. Having the axial stiffness 100 times stiffer than the actuator stiffness seems reasonable. Therefore, we should aim at \(k_a > 100\,N/\mu m\). \begin{figure}[htbp] \centering \includegraphics[scale=1]{figs/delta_robot_axial_stiffness_dynamics.png} \caption{\label{fig:delta_robot_axial_stiffness_dynamics}Effect of the joint's axial stiffness on the plant dynamics} \end{figure} \section{Torsional Stiffness} \label{ssec:delta_robot_flexible_joints_torsion} Now the compliance in torsion of the flexible joints is considered. If we look at the compliance of the delta robot in rotation as a function of the torsional stiffness of the flexible joints (Figure \ref{fig:delta_robot_kt_compliance}), we see almost no effect: the system is not made more stiff by increasing the torsional stiffness of the joints. \begin{figure}[htbp] \centering \includegraphics[scale=1]{figs/delta_robot_kt_compliance.png} \caption{\label{fig:delta_robot_kt_compliance}Effect of the joint's torsional stiffness on the Delta Robot compliance} \end{figure} If we have a look at the effect of the torsional stiffness on the plant dynamics (Figure \ref{fig:delta_robot_kt_dynamics}), we see almost no effect, except when super high values are reached (\(10^6\,Nm/\text{rad}\)), which are unrealistic. \begin{figure}[htbp] \centering \includegraphics[scale=1]{figs/delta_robot_kt_dynamics.png} \caption{\label{fig:delta_robot_kt_dynamics}Effect of the joint's torsional stiffness on the Delta Robot plant dynamics} \end{figure} Therefore, the torsional stiffness is not a super important metric for the design of the delta robot. \section{Shear Stiffness} \label{ssec:delta_robot_flexible_joints_shear} As shown in Figure \ref{fig:delta_robot_shear_stiffness_compliance}, the shear stiffness of the flexible joints has some effect on the compliance in translation and almost no effect on the compliance in rotation. This is quite logical, and so the shear stiffness should be maximized. A value of \(100\,N/\mu m\) seems reasonable. \begin{figure}[htbp] \centering \includegraphics[scale=1]{figs/delta_robot_shear_stiffness_compliance.png} \caption{\label{fig:delta_robot_shear_stiffness_compliance}Effect of the shear stiffness of the flexible joints on the Delta Robot compliance} \end{figure} \section{Conclusion} \begin{table}[htbp] \caption{\label{tab:delta_robot_flexible_joints_recommendations}Recommendations for the flexible joints} \centering \begin{tabular}{lll} Joint's Stiffness & Effect & Recommendation\\ \hline Bending & Can reduce the stroke, and increase the coupling & Below 50 to 10 Nm/rad\\ Axial & Add modes that can limit the feedback bandwidth & As high as possible, at least 100 Nm/um\\ Torsion & Minor effect & No recommendation\\ Shear & Can limit the stiffness of the system & As high as possible (less important than the axial stiffness), above 100 N/um if possible\\ \end{tabular} \end{table} \chapter{Effect of the Geometry} \label{sec:delta_robot_flexible_geometry} In this section, the effect of the geometry on the system properties are studied. The goal is to better understand the different trade-offs, and to extract specifications in terms of the Delta Robot geometry. Reasonable values for the flexible joints are taken: \begin{itemize} \item Bending stiffness of 50Nm/rad \item Torsional stiffness of 500Nm/rad \item Axial stiffness of 100N/um \item Shear stiffness of 100N/um \end{itemize} The effect of the following geometrical features are studied: \begin{itemize} \item The cube's size in Section \ref{ssec:delta_robot_flexible_geometry_cube_size} \item The strut length in Section \ref{ssec:delta_robot_flexible_geometry_strut_length} \item The location of the payload's Center of Mass with respect to the cube's center in Section \ref{ssec:delta_robot_flexible_geometry_com} \end{itemize} \section{Effect of cube's size} \label{ssec:delta_robot_flexible_geometry_cube_size} \subsection{Obtained geometries} The cube size is varied from 10mm (Figure \ref{fig:delta_robot_cube_size_small}) to 100mm (Figure \ref{fig:delta_robot_cube_size_large}) to study the effect on the system dynamics. \begin{figure}[htbp] \centering \includegraphics[scale=1]{figs/delta_robot_cube_size_small.png} \caption{\label{fig:delta_robot_cube_size_small}Obtained Delta Robot for a cube's size of 10mm} \end{figure} \begin{figure}[htbp] \centering \includegraphics[scale=1]{figs/delta_robot_cube_size_large.png} \caption{\label{fig:delta_robot_cube_size_large}Obtained Delta Robot for a cube's size of 100mm} \end{figure} \subsection{Effect on the plant dynamics} The effect of the cube's size on the plant dynamics is shown in Figure \ref{fig:delta_robot_cube_size_plant_dynamics}: \begin{itemize} \item coupling decreases with the cube's size (probably because of the reduced effect of the flexible joints' bending stiffness) \item one resonance frequency increases with the cube's size (resonances in rotation), which may be beneficial from a control point of view \item coupling at the main resonance varies with the cube's size, but it may also depend on the relative position between the CoM and the cube's center \end{itemize} \begin{figure}[htbp] \centering \includegraphics[scale=1]{figs/delta_robot_cube_size_plant_dynamics.png} \caption{\label{fig:delta_robot_cube_size_plant_dynamics}Effect of the cube's size on the plant dynamics} \end{figure} \subsection{Effect on the compliance} As shown in Figure \ref{fig:delta_robot_cube_size_compliance_rotation}, the stiffness of the delta robot in rotation increases with the cube's size. Therefore, if possible the cube's size should be increased. With a cube size of 50mm, the resonance frequency is already above 1kHz with seems reasonable. \begin{figure}[htbp] \centering \includegraphics[scale=1]{figs/delta_robot_cube_size_compliance_rotation.png} \caption{\label{fig:delta_robot_cube_size_compliance_rotation}Effect of the cube's size on the rotational compliance of the top platform} \end{figure} \section{Effect of the strut length} \label{ssec:delta_robot_flexible_geometry_strut_length} Let's choose reasonable values for the flexible joints: \begin{itemize} \item Bending stiffness of 50Nm/rad \item Torsional stiffness of 500Nm/rad \item Axial stiffness of 100N/um \end{itemize} And we see the effect of changing the strut length. \subsection{Effect on the compliance} As shown in Figure \ref{fig:delta_robot_strut_length_compliance_rotation}, the strut length has an effect on the system stiffness in translation (left plot) but almost not in rotation (right plot). Indeed, the stiffness in rotation is a combination of: \begin{itemize} \item The stiffness of the actuator \item The shear and axial stiffness of the flexible joints \item The bending and torsional stiffness of the flexible joints, combine with the strut length \end{itemize} \begin{figure}[htbp] \centering \includegraphics[scale=1]{figs/delta_robot_strut_length_compliance_rotation.png} \caption{\label{fig:delta_robot_strut_length_compliance_rotation}Effect of the cube's size on the rotational compliance of the top platform} \end{figure} \subsection{Effect on the plant dynamics} As shown in Figure \ref{fig:delta_robot_strut_length_plant_dynamics}, having longer struts: \begin{itemize} \item decreases the main resonance frequency: this means that the stiffness in the X,Y and Z directions is decreased when the length of the strut is longer. This is reasonable as the ``lever'' arm is getting larger, so the bending stiffness and compression of the flexible joints have a larger effect on the top platform compliance. \item decreases the low frequency coupling: this effect is more difficult to physically understand Probably: when pushing with one actuator, it induces some rotation of the struts corresponding to the other two actuators. This rotation is proportional to the strut length. Then, this rotation, combined with the limited compliance in bending of the flexible joints induces some force applied on the other actuators, hence the coupling. This is similar to what was observed when varying the bending stiffness of the flexible joints: the coupling was increased with an increased of the bending stiffness (See Figure \ref{fig:delta_robot_bending_stiffness_couplign}) \end{itemize} But even with relatively short struts (20mm and above), the low frequency decoupling is already around two orders of magnitude, which is enough from a control point of view. So, the struts length can be optimized to not decrease too much the stiffness of the platform while still getting good low frequency decoupling. \begin{figure}[htbp] \centering \includegraphics[scale=1]{figs/delta_robot_strut_length_plant_dynamics.png} \caption{\label{fig:delta_robot_strut_length_plant_dynamics}Effect of the Strut length on the plant dynamics} \end{figure} \section{Having the Center of Mass at the cube's center} \label{ssec:delta_robot_flexible_geometry_com} To make things easier, we take a top platform with no mass, mass-less struts, and we put a payload on top of the platform. As shown in Figure \ref{fig:delta_robot_CoM_pos_effect_plant}, having the CoM of the payload at the cube's center allow to have better decoupling properties above the suspension mode of the system (i.e. above the first mode). This could allow to have a bandwidth exceeding the frequency of the first mode. But how sensitive this decoupling is to the exact position of the CoM still need to be studied. \begin{figure}[htbp] \centering \includegraphics[scale=1]{figs/delta_robot_CoM_pos_effect_plant.png} \caption{\label{fig:delta_robot_CoM_pos_effect_plant}Effect of the payload's Center of Mass position with respect to the cube's size on the plant dynamics} \end{figure} \section{Conclusion} \begin{table}[htbp] \caption{\label{tab:delta_robot_geometry_recommendations}Recommendations for the Delta Robot Geometry} \centering \begin{tabular}{lll} Geometrical feature & Effect & Recommendation\\ \hline Cube's size \texttt{d} & Increasing the cube's size increases the rotational stiffness & Should be make as large as possible\\ Strut length \texttt{L} & Changes the stiffness and coupling of the system (by changing the effect of the flexible joint bending stiffness) & Trade-off between higher stiffness and lower coupling\\ \end{tabular} \end{table} \chapter{Conclusion} \printbibliography[heading=bibintoc,title={Bibliography}] \end{document}