phd-test-bench-flexible-joints/test-bench-flexible-joints.org

1186 lines
53 KiB
Org Mode
Raw Permalink Normal View History

2024-03-19 15:18:31 +01:00
#+TITLE: Flexible Joints - Test Bench
:DRAWER:
#+LANGUAGE: en
#+EMAIL: dehaeze.thomas@gmail.com
#+AUTHOR: Dehaeze Thomas
#+HTML_LINK_HOME: ../index.html
#+HTML_LINK_UP: ../index.html
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="https://research.tdehaeze.xyz/css/style.css"/>
#+HTML_HEAD: <script type="text/javascript" src="https://research.tdehaeze.xyz/js/script.js"></script>
#+BIND: org-latex-image-default-option "scale=1"
#+BIND: org-latex-image-default-width ""
#+LaTeX_CLASS: scrreprt
#+LaTeX_CLASS_OPTIONS: [a4paper, 10pt, DIV=12, parskip=full, bibliography=totoc]
#+LaTeX_HEADER_EXTRA: \input{preamble.tex}
#+LATEX_HEADER_EXTRA: \bibliography{test-bench-flexible-joints.bib}
#+BIND: org-latex-bib-compiler "biber"
#+PROPERTY: header-args:matlab :session *MATLAB*
#+PROPERTY: header-args:matlab+ :comments org
#+PROPERTY: header-args:matlab+ :exports none
#+PROPERTY: header-args:matlab+ :results none
#+PROPERTY: header-args:matlab+ :eval no-export
#+PROPERTY: header-args:matlab+ :noweb yes
#+PROPERTY: header-args:matlab+ :mkdirp yes
#+PROPERTY: header-args:matlab+ :output-dir figs
#+PROPERTY: header-args:matlab+ :tangle no
#+PROPERTY: header-args:latex :headers '("\\usepackage{tikz}" "\\usepackage{import}" "\\import{$HOME/Cloud/tikz/org/}{config.tex}")
#+PROPERTY: header-args:latex+ :imagemagick t :fit yes
#+PROPERTY: header-args:latex+ :iminoptions -scale 100% -density 150
#+PROPERTY: header-args:latex+ :imoutoptions -quality 100
#+PROPERTY: header-args:latex+ :results file raw replace
#+PROPERTY: header-args:latex+ :buffer no
#+PROPERTY: header-args:latex+ :tangle no
#+PROPERTY: header-args:latex+ :eval no-export
#+PROPERTY: header-args:latex+ :exports results
#+PROPERTY: header-args:latex+ :mkdirp yes
#+PROPERTY: header-args:latex+ :output-dir figs
#+PROPERTY: header-args:latex+ :post pdf2svg(file=*this*, ext="png")
:END:
#+begin_export html
<hr>
<p>This report is also available as a <a href="./test-bench-flexible-joints.pdf">pdf</a>.</p>
<hr>
#+end_export
#+latex: \clearpage
* Build :noexport:
#+NAME: startblock
#+BEGIN_SRC emacs-lisp :results none :tangle no
(add-to-list 'org-latex-classes
'("scrreprt"
"\\documentclass{scrreprt}"
("\\chapter{%s}" . "\\chapter*{%s}")
("\\section{%s}" . "\\section*{%s}")
("\\subsection{%s}" . "\\subsection*{%s}")
("\\paragraph{%s}" . "\\paragraph*{%s}")
))
;; Remove automatic org heading labels
(defun my-latex-filter-removeOrgAutoLabels (text backend info)
"Org-mode automatically generates labels for headings despite explicit use of `#+LABEL`. This filter forcibly removes all automatically generated org-labels in headings."
(when (org-export-derived-backend-p backend 'latex)
(replace-regexp-in-string "\\\\label{sec:org[a-f0-9]+}\n" "" text)))
(add-to-list 'org-export-filter-headline-functions
'my-latex-filter-removeOrgAutoLabels)
;; Remove all org comments in the output LaTeX file
(defun delete-org-comments (backend)
(loop for comment in (reverse (org-element-map (org-element-parse-buffer)
'comment 'identity))
do
(setf (buffer-substring (org-element-property :begin comment)
(org-element-property :end comment))
"")))
(add-hook 'org-export-before-processing-hook 'delete-org-comments)
;; Use no package by default
(setq org-latex-packages-alist nil)
(setq org-latex-default-packages-alist nil)
;; Do not include the subtitle inside the title
(setq org-latex-subtitle-separate t)
(setq org-latex-subtitle-format "\\subtitle{%s}")
(setq org-export-before-parsing-hook '(org-ref-glossary-before-parsing
org-ref-acronyms-before-parsing))
#+END_SRC
* Notes :noexport:
2024-03-25 10:01:56 +01:00
Prefix for figures/section/tables =test_joints=
2024-03-19 17:36:39 +01:00
2024-03-19 15:18:31 +01:00
Compilation of the following reports:
2024-03-25 10:01:56 +01:00
- [X] [[file:~/Cloud/work-projects/ID31-NASS/matlab/test-bench-flexible-joints-old/index.org][test-bench-flexible-joints-adv]]
Ideas of measuring shear stiffness, axial stiffness and torsion
Not done in the end
- [X] [[/home/thomas/Cloud/work-projects/ID31-NASS/matlab/test-bench-flexible-joints-old/bending.org][bending measurement]]
Some possible errors when measuring bending stiffness
- [X] [[file:~/Cloud/documents/internships/2021-martin-reichert/Bachelor thesis.pdf][Report of Martin]]
Analytical estimation of the stiffness
Estimation of possible errors in the estimation of the stiffness
May not be useful here.
2024-03-19 17:36:39 +01:00
- [X] [[file:~/Cloud/work-projects/ID31-NASS/matlab/test-bench-nass-flexible-joints/test-bench-flexible-joints.org][test-bench-nass-flexible-joints]]
2024-03-25 10:01:56 +01:00
Here only the bending stiffness is measured
2024-03-19 17:36:39 +01:00
- [ ] Also check start of this report: [[file:~/Cloud/work-projects/ID31-NASS/matlab/nass-simscape/org/nano_hexapod.org][nano_hexapod]]
2024-03-25 10:01:56 +01:00
Model of the flexible joints
Maybe add a section for the model of the flexible joints (of maybe this was done in the "detailed design" section?)
2024-04-04 17:38:22 +02:00
- [X] Maybe say that some flexible joints where not machined properly (show picture with deformed machining and one with "chips" stuck inside)
- [X] Explain why the encoder is here: in line with the measurement, no "abbe errors"
2024-03-25 10:01:56 +01:00
Goal:
- Characterization of flexible joints:
- Remind the specifications
- Most important: bending stiffness
- Dimensional measurement
- Presentation of test bench to measure stiffness
- Possible measurement errors and how to prevent them
- Calibration of force sensor
- Section 6 is most important: measurement results
- Conclusion
2024-03-19 15:18:31 +01:00
2024-04-05 16:24:17 +02:00
** TODO [#A] Check if results from Martin are better matching the measured dimensions of the flexible joints
2024-04-04 17:38:22 +02:00
** TODO [#B] Add symbols for the different characteristics
- Axial Stiffness: $k_z$
- Shear Stiffness: $k_x$, $k_y$
- Bending Stiffness: $k_{R_x}$, $k_{R_y}$
- Torsion Stiffness: $k_{R_z}$
- Bending Stroke: $\theta_{R_x\text{max}}$, $\theta_{R_y\text{max}}$
2024-03-19 15:18:31 +01:00
2024-03-25 10:01:56 +01:00
* Introduction :ignore:
2024-03-19 17:36:39 +01:00
2024-04-11 16:07:53 +02:00
At both ends of the nano-hexapod struts, a flexible joint is used.
2024-04-30 22:20:19 +02:00
Ideally, these flexible joints would behave as perfect spherical joints, that is to say no bending and torsional stiffness, infinite shear and axial stiffness, unlimited bending and torsional stroke, no friction, and no backlash.
2024-03-19 17:36:39 +01:00
2024-04-30 22:20:19 +02:00
Deviations from these ideal properties will impact the dynamics of the Nano-Hexapod and could limit the attainable performance.
During the detailed design phase, specifications in terms of stiffness and stroke were determined and are summarized in Table ref:tab:test_joints_specs.
2024-03-19 17:36:39 +01:00
2024-03-25 10:01:56 +01:00
#+name: tab:test_joints_specs
2024-03-19 17:36:39 +01:00
#+caption: Specifications for the flexible joints and estimated characteristics from the Finite Element Model
#+attr_latex: :environment tabularx :width 0.5\linewidth :align Xcc
#+attr_latex: :center t :booktabs t :float t
2024-03-25 10:01:56 +01:00
| | *Specification* | *FEM* |
|-------------------+------------------------+-------|
| Axial Stiffness | $> 100\,N/\mu m$ | 94 |
| Shear Stiffness | $> 1\,N/\mu m$ | 13 |
| Bending Stiffness | $< 100\,Nm/\text{rad}$ | 5 |
| Torsion Stiffness | $< 500\,Nm/\text{rad}$ | 260 |
| Bending Stroke | $> 1\,\text{mrad}$ | 24.5 |
2024-04-30 22:20:19 +02:00
After optimization using a finite element model, the geometry shown in Figure ref:fig:test_joints_schematic has been obtained and the corresponding flexible joint characteristics are summarized in Table ref:tab:test_joints_specs.
2024-04-04 17:38:22 +02:00
This flexible joint is a monolithic piece of stainless steel[fn:1] manufactured using wire electrical discharge machining.
2024-04-30 22:20:19 +02:00
It serves several functions, as shown in Figure ref:fig:test_joints_iso, such as:
2024-04-04 17:38:22 +02:00
- Rigid interfacing with the nano-hexapod plates (yellow surfaces)
- Rigid interfacing with the amplified piezoelectric actuator (blue surface)
- Allow two rotations between the "yellow" and the "blue" interfaces.
2024-04-30 22:20:19 +02:00
The rotation axes are represented by the dashed lines that intersect
2024-04-04 17:38:22 +02:00
#+name: fig:test_joints_schematic
#+caption: Geometry of the optimized flexible joints
#+attr_latex: :options [htbp]
#+begin_figure
#+attr_latex: :caption \subcaption{\label{fig:test_joints_iso}ISO view}
#+attr_latex: :options {0.39\textwidth}
#+begin_subfigure
#+attr_latex: :scale 1
[[file:figs/test_joints_iso.png]]
#+end_subfigure
#+attr_latex: :caption \subcaption{\label{fig:test_joints_yz_plane}YZ plane}
#+attr_latex: :options {0.3\textwidth}
#+begin_subfigure
#+attr_latex: :scale 1
[[file:figs/test_joints_yz_plane.png]]
#+end_subfigure
#+attr_latex: :caption \subcaption{\label{fig:test_joints_xz_plane}XZ plane}
#+attr_latex: :options {0.3\textwidth}
#+begin_subfigure
#+attr_latex: :scale 1
[[file:figs/test_joints_xz_plane.png]]
#+end_subfigure
#+end_figure
2024-03-19 17:36:39 +01:00
2024-04-30 22:20:19 +02:00
Sixteen flexible joints have been ordered (shown in Figure ref:fig:test_joints_received) such that some selection can be made for the twelve that will be used on the nano-hexapod.
2024-03-19 17:36:39 +01:00
2024-04-05 16:24:17 +02:00
#+name: fig:test_joints_picture
#+caption: Pictures of the received 16 flexible joints
#+attr_latex: :options [htbp]
#+begin_figure
#+attr_latex: :caption \subcaption{\label{fig:test_joints_received}15 of the 16 received flexible joints}
#+attr_latex: :options {0.64\textwidth}
#+begin_subfigure
#+attr_latex: :height 5.5cm
2024-03-25 10:01:56 +01:00
[[file:figs/test_joints_received.jpg]]
2024-04-05 16:24:17 +02:00
#+end_subfigure
#+attr_latex: :caption \subcaption{\label{fig:test_joints_received_zoom}Zoom on one flexible joint}
#+attr_latex: :options {0.35\textwidth}
#+begin_subfigure
#+attr_latex: :height 5.5cm
[[file:figs/test_joints_received_zoom.jpg]]
#+end_subfigure
#+end_figure
2024-03-25 10:01:56 +01:00
2024-04-30 22:20:19 +02:00
In this document, the received flexible joints are characterized to ensure that they fulfill the requirements and such that they can well be modeled.
2024-03-25 10:01:56 +01:00
2024-04-04 17:38:22 +02:00
First, the flexible joints are visually inspected, and the minimum gaps (responsible for most of the joint compliance) are measured (Section ref:sec:test_joints_flex_dim_meas).
2024-04-30 22:20:19 +02:00
Then, a test bench was developed to measure the bending stiffness of the flexible joints.
2024-04-04 17:38:22 +02:00
The development of this test bench is presented in Section ref:sec:test_joints_test_bench_desc, including a noise budget and some requirements in terms of instrumentation.
2024-04-30 22:20:19 +02:00
The test bench is then used to measure the bending stiffnesses of all the flexible joints.
2024-04-04 17:38:22 +02:00
Results are shown in Section ref:sec:test_joints_bending_stiffness_meas
2024-03-25 10:01:56 +01:00
2024-04-04 17:38:22 +02:00
* Dimensional Measurements
:PROPERTIES:
:header-args:matlab+: :tangle matlab/test_joints_1_dim_meas.m
:END:
<<sec:test_joints_flex_dim_meas>>
2024-03-19 17:36:39 +01:00
** Matlab Init :noexport:ignore:
#+begin_src matlab :tangle no :exports none :results silent :noweb yes :var current_dir=(file-name-directory buffer-file-name)
<<matlab-dir>>
#+end_src
#+begin_src matlab :exports none :results silent :noweb yes
<<matlab-init>>
#+end_src
2024-03-25 10:01:56 +01:00
#+begin_src matlab :tangle no :noweb yes
<<m-init-path>>
2024-03-19 17:36:39 +01:00
#+end_src
2024-03-25 10:01:56 +01:00
#+begin_src matlab :eval no :noweb yes
<<m-init-path-tangle>>
#+end_src
#+begin_src matlab :noweb yes
<<m-init-other>>
2024-03-19 17:36:39 +01:00
#+end_src
2024-04-04 17:38:22 +02:00
** Measurement Bench
2024-03-19 17:36:39 +01:00
2024-04-30 22:20:19 +02:00
Two dimensions are critical for the bending stiffness of the flexible joints.
These dimensions can be measured using a profilometer.
The dimensions of the flexible joint in the Y-Z plane will contribute to the X-bending stiffness, whereas the dimensions in the X-Z plane will contribute to the Y-bending stiffness.
2024-03-19 17:36:39 +01:00
2024-04-30 22:20:19 +02:00
The setup used to measure the dimensions of the "X" flexible beam is shown in Figure ref:fig:test_joints_profilometer_setup.
2024-04-11 16:07:53 +02:00
What is typically observed is shown in Figure ref:fig:test_joints_profilometer_image.
2024-04-30 22:20:19 +02:00
It is then possible to estimate the dimension of the flexible beam with an accuracy of $\approx 5\,\mu m$,
2024-04-04 17:38:22 +02:00
#+name: fig:test_joints_profilometer
2024-04-11 16:07:53 +02:00
#+caption: Setup to measure the dimension of the flexible beam corresponding to the X-bending stiffness. The flexible joint is fixed to the profilometer (\subref{fig:test_joints_profilometer_setup}) and a image is obtained with which the gap can be estimated (\subref{fig:test_joints_profilometer_image})
2024-04-04 17:38:22 +02:00
#+attr_latex: :options [htbp]
#+begin_figure
2024-04-11 16:07:53 +02:00
#+attr_latex: :caption \subcaption{\label{fig:test_joints_profilometer_setup}Flexible joint fixed on the profilometer}
2024-04-04 17:38:22 +02:00
#+attr_latex: :options {0.49\textwidth}
#+begin_subfigure
#+attr_latex: :width 0.95\linewidth
2024-04-11 16:07:53 +02:00
[[file:figs/test_joints_profilometer_setup.jpg]]
2024-04-04 17:38:22 +02:00
#+end_subfigure
2024-04-11 16:07:53 +02:00
#+attr_latex: :caption \subcaption{\label{fig:test_joints_profilometer_image}Picture of the gap}
2024-04-04 17:38:22 +02:00
#+attr_latex: :options {0.49\textwidth}
#+begin_subfigure
#+attr_latex: :width 0.95\linewidth
2024-04-11 16:07:53 +02:00
[[file:figs/test_joints_profilometer_image.png]]
2024-04-04 17:38:22 +02:00
#+end_subfigure
#+end_figure
** Measurement Results
The specified flexible beam thickness (gap) is $250\,\mu m$.
2024-04-30 22:20:19 +02:00
Four gaps are measured for each flexible joint (2 in the $x$ direction and 2 in the $y$ direction).
The "beam thickness" is then estimated as the mean between the gaps measured on opposite sides.
2024-04-04 17:38:22 +02:00
2024-04-30 22:20:19 +02:00
A histogram of the measured beam thicknesses is shown in Figure ref:fig:test_joints_size_hist.
The measured thickness is less than the specified value of $250\,\mu m$, but this optical method may not be very accurate because the estimated gap can depend on the lighting of the part and of its proper alignment.
2024-04-04 17:38:22 +02:00
2024-04-30 22:20:19 +02:00
However, what is more important than the true value of the thickness is the consistency between all flexible joints.
2024-03-19 17:36:39 +01:00
#+begin_src matlab :exports none
2024-04-04 17:38:22 +02:00
%% Measured gap for the 16 flexible joints
2024-03-19 17:36:39 +01:00
meas_flex = [[223, 226, 224, 214];
[229, 231, 237, 224];
[234, 230, 239, 231];
[233, 227, 229, 232];
[225, 212, 228, 228];
[220, 221, 224, 220];
[206, 207, 228, 226];
[230, 224, 224, 223];
[223, 231, 228, 233];
[228, 230, 235, 231];
[197, 207, 211, 204];
[227, 226, 225, 226];
[215, 228, 231, 220];
[216, 224, 224, 221];
[209, 214, 220, 221];
[213, 210, 230, 229]];
#+end_src
#+begin_src matlab :exports none
2024-04-04 17:38:22 +02:00
%% Histogram of the measured gap
2024-03-19 17:36:39 +01:00
figure;
2024-04-06 00:27:19 +02:00
hold on;
2024-03-19 17:36:39 +01:00
histogram([(meas_flex(:,1)+meas_flex(:,2))/2,(meas_flex(:,3)+meas_flex(:,4))/2], 7)
2024-04-06 00:27:19 +02:00
hold off;
2024-04-04 17:38:22 +02:00
xlabel("Measured beam thickness [$\mu m$]");
xticks([200, 205, 210, 215, 220, 225, 230, 235])
2024-03-19 17:36:39 +01:00
#+end_src
#+begin_src matlab :tangle no :exports results :results file replace
2024-03-25 10:01:56 +01:00
exportFig('figs/test_joints_size_hist.pdf', 'width', 'normal', 'height', 'normal');
2024-03-19 17:36:39 +01:00
#+end_src
2024-03-25 10:01:56 +01:00
#+name: fig:test_joints_size_hist
2024-04-30 22:20:19 +02:00
#+caption: Histogram for the (16x2) measured beams' thicknesses
2024-03-19 17:36:39 +01:00
#+RESULTS:
2024-03-25 10:01:56 +01:00
[[file:figs/test_joints_size_hist.png]]
#+begin_src matlab :exports none :tangle no
%% Save beam sizes
save('./matlab/mat/flex_meas_dim.mat', 'meas_flex');
#+end_src
2024-03-19 17:36:39 +01:00
2024-03-25 10:01:56 +01:00
#+begin_src matlab :exports none :eval no
%% Save beam sizes
save('./mat/flex_meas_dim.mat', 'meas_flex');
2024-03-19 17:36:39 +01:00
#+end_src
** Bad flexible joints
2024-04-30 22:20:19 +02:00
Using this profilometer allowed to detect flexible joints with manufacturing defects such as non-symmetrical shapes (see Figure ref:fig:test_joints_bad_shape) or flexible joints with machining chips stuck in the gap (see Figure ref:fig:test_joints_bad_chips).
2024-04-04 17:38:22 +02:00
#+name: fig:test_joints_bad
#+caption: Example of two flexible joints that were considered unsatisfactory after visual inspection
2024-04-04 17:38:22 +02:00
#+attr_latex: :options [htbp]
#+begin_figure
#+attr_latex: :caption \subcaption{\label{fig:test_joints_bad_shape}Non-Symmetrical shape}
#+attr_latex: :options {0.49\textwidth}
#+begin_subfigure
#+attr_latex: :height 6cm
[[file:figs/test_joints_bad_shape.jpg]]
#+end_subfigure
#+attr_latex: :caption \subcaption{\label{fig:test_joints_bad_chips}"Chips" stuck in the air gap}
#+attr_latex: :options {0.49\textwidth}
#+begin_subfigure
#+attr_latex: :height 6cm
[[file:figs/test_joints_bad_chips.jpg]]
#+end_subfigure
#+end_figure
2024-04-11 16:07:53 +02:00
* Compliance Measurement Test Bench
2024-03-19 17:36:39 +01:00
:PROPERTIES:
2024-03-25 10:01:56 +01:00
:header-args:matlab+: :tangle matlab/test_joints_2_bench_dimensioning.m
2024-03-19 17:36:39 +01:00
:END:
2024-03-25 10:01:56 +01:00
<<sec:test_joints_test_bench_desc>>
2024-03-19 17:36:39 +01:00
** Introduction :ignore:
2024-04-04 17:38:22 +02:00
The most important characteristic of the flexible joint to be measured is its bending stiffness $k_{R_x} \approx k_{R_y}$.
2024-03-19 17:36:39 +01:00
2024-04-04 17:38:22 +02:00
To estimate the bending stiffness, the basic idea is to apply a torque $T_{x}$ to the flexible joints and to measure its angular deflection $\theta_{x}$.
2024-04-30 22:20:19 +02:00
The bending stiffness can then be computed from equation eqref:eq:test_joints_bending_stiffness.
2024-04-04 17:38:22 +02:00
\begin{equation}\label{eq:test_joints_bending_stiffness}
2024-04-05 16:24:17 +02:00
\boxed{k_{R_x} = \frac{T_x}{\theta_x}, \quad k_{R_y} = \frac{T_y}{\theta_y}}
2024-03-19 17:36:39 +01:00
\end{equation}
** Matlab Init :noexport:ignore:
#+begin_src matlab :tangle no :exports none :results silent :noweb yes :var current_dir=(file-name-directory buffer-file-name)
<<matlab-dir>>
#+end_src
#+begin_src matlab :exports none :results silent :noweb yes
<<matlab-init>>
#+end_src
2024-03-25 10:01:56 +01:00
#+begin_src matlab :tangle no :noweb yes
<<m-init-path>>
#+end_src
#+begin_src matlab :eval no :noweb yes
<<m-init-path-tangle>>
#+end_src
#+begin_src matlab :noweb yes
<<m-init-other>>
#+end_src
2024-04-04 17:38:22 +02:00
** Measurement principle
2024-04-05 16:24:17 +02:00
<<ssec:test_joints_meas_principle>>
**** Torque and Rotation measurement
2024-04-30 22:20:19 +02:00
To apply torque $T_{y}$ between the two mobile parts of the flexible joint, a known "linear" force $F_{x}$ can be applied instead at a certain distance $h$ with respect to the rotation point.
In this case, the equivalent applied torque can be estimated from equation eqref:eq:test_joints_force_torque_distance.
Note that the application point of the force should be sufficiently far from the rotation axis such that the resulting bending motion is much larger than the displacement due to shear.
Such effects are studied in Section ref:ssec:test_joints_error_budget.
2024-04-04 17:38:22 +02:00
2024-04-05 16:24:17 +02:00
\begin{equation}\label{eq:test_joints_force_torque_distance}
T_y = h F_x, \quad T_x = h F_y
\end{equation}
2024-03-19 17:36:39 +01:00
2024-04-30 22:20:19 +02:00
Similarly, instead of directly measuring the bending motion $\theta_y$ of the flexible joint, its linear motion $d_x$ at a certain distance $h$ from the rotation points is measured.
2024-04-05 16:24:17 +02:00
The equivalent rotation is estimated from eqref:eq:test_joints_rot_displ.
2024-03-19 17:36:39 +01:00
2024-04-05 16:24:17 +02:00
\begin{equation}\label{eq:test_joints_rot_displ}
\theta_y = \tan^{-1}\left(\frac{d_x}{h}\right) \approx \frac{d_x}{h}, \quad \theta_x = \tan^{-1} \left( \frac{d_y}{h} \right) \approx \frac{d_y}{h}
\end{equation}
2024-04-04 17:38:22 +02:00
2024-04-05 16:24:17 +02:00
Then, the bending stiffness can be estimated from eqref:eq:test_joints_stiff_displ_force.
2024-04-04 17:38:22 +02:00
2024-04-05 16:24:17 +02:00
\begin{subequations}\label{eq:test_joints_stiff_displ_force}
\begin{align}
k_{R_x} &= \frac{T_x}{\theta_x} = \frac{h F_y}{\tan^{-1}\left( \frac{d_y}{h} \right)} \approx h^2 \frac{F_y}{d_y} \\
k_{R_y} &= \frac{T_y}{\theta_y} = \frac{h F_x}{\tan^{-1}\left( \frac{d_x}{h} \right)} \approx h^2 \frac{F_x}{d_x}
\end{align}
\end{subequations}
2024-03-19 17:36:39 +01:00
2024-04-05 16:24:17 +02:00
The working principle of the measurement bench is schematically shown in Figure ref:fig:test_joints_bench_working_principle.
One part of the flexible joint is fixed to a rigid frame while a (known) force $F_x$ is applied to the other side of the flexible joint.
2024-04-30 22:20:19 +02:00
The deflection of the joint $d_x$ is measured using a displacement sensor.
2024-03-19 17:36:39 +01:00
2024-04-05 16:24:17 +02:00
#+name: fig:test_joints_bench_working_principle
2024-04-11 16:07:53 +02:00
#+caption: Working principle of the test bench used to estimate the bending stiffness $k_{R_y}$ of the flexible joints by measuring $F_x$, $d_x$ and $h$
2024-04-05 16:24:17 +02:00
[[file:figs/test_joints_bench_working_principle.png]]
2024-03-19 17:36:39 +01:00
2024-04-05 16:24:17 +02:00
**** Required external applied force
The bending stiffness is foreseen to be $k_{R_y} \approx k_{R_x} \approx 5\,\frac{Nm}{rad}$ and its stroke $\theta_{y,\text{max}}\approx \theta_{x,\text{max}}\approx 25\,mrad$.
The height between the flexible point (center of the joint) and the point where external forces are applied is $h = 22.5\,mm$ (see Figure ref:fig:test_joints_bench_working_principle).
2024-03-19 17:36:39 +01:00
#+begin_src matlab
2024-04-05 16:24:17 +02:00
%% Parameters for study
kRx = 5; % Bending Stiffness [Nm/rad]
Rxmax = 25e-3; % Bending Stroke [rad]
h = 22.5e-3; % Height [m]
%% Estimation of the force to test the full stroke
2024-03-19 17:36:39 +01:00
Fxmax = kRx*Rxmax/h; % Force to induce maximum stroke [N]
#+end_src
2024-04-05 16:24:17 +02:00
The bending $\theta_y$ of the flexible joint due to the force $F_x$ is given by equation eqref:eq:test_joints_deflection_force.
2024-03-19 17:36:39 +01:00
2024-04-05 16:24:17 +02:00
\begin{equation}\label{eq:test_joints_deflection_force}
\theta_y = \frac{T_y}{k_{R_y}} = \frac{F_x h}{k_{R_y}}
\end{equation}
2024-03-19 17:36:39 +01:00
2024-04-30 22:20:19 +02:00
Therefore, the force that must be applied to test the full range of the flexible joints is given by equation eqref:eq:test_joints_max_force.
2024-04-05 16:24:17 +02:00
The measurement range of the force sensor should then be higher than $5.5\,N$.
\begin{equation}\label{eq:test_joints_max_force}
F_{x,\text{max}} = \frac{k_{R_y} \theta_{y,\text{max}}}{h} \approx 5.5\,N
\end{equation}
2024-03-19 17:36:39 +01:00
2024-04-04 17:38:22 +02:00
**** Required actuator stroke and sensors range
2024-03-19 17:36:39 +01:00
The flexible joint is designed to allow a bending motion of $\pm 25\,mrad$.
2024-04-05 16:24:17 +02:00
The corresponding stroke at the location of the force sensor is given by eqref:eq:test_joints_max_stroke.
2024-04-30 22:20:19 +02:00
To test the full range of the flexible joint, the means of applying a force (explained in the next section) should allow a motion of at least $0.5\,mm$.
2024-04-05 16:24:17 +02:00
Similarly, the measurement range of the displacement sensor should also be higher than $0.5\,mm$.
\begin{equation}\label{eq:test_joints_max_stroke}
d_{x,\text{max}} = h \tan(R_{x,\text{max}}) \approx 0.5\,mm
\end{equation}
2024-03-19 17:36:39 +01:00
#+begin_src matlab
2024-04-05 16:24:17 +02:00
%% Estimated maximum stroke [m]
2024-03-19 17:36:39 +01:00
dxmax = h*tan(Rxmax);
#+end_src
2024-04-11 16:07:53 +02:00
**** Force and Displacement measurements
2024-04-30 22:20:19 +02:00
To determine the applied force, a load cell will be used in series with the mechanism that applied the force.
The measured deflection of the flexible joint will be indirectly estimated from the displacement of the force sensor itself (see Section ref:ssec:test_joints_test_bench).
Indirectly measuring the deflection of the flexible joint induces some errors because of the limited stiffness between the force sensor and the displacement sensor.
Such an effect will be estimated in the error budget (Section ref:ssec:test_joints_error_budget)
2024-03-19 17:36:39 +01:00
2024-04-04 17:38:22 +02:00
** Error budget
<<ssec:test_joints_error_budget>>
**** Introduction :ignore:
2024-04-30 22:20:19 +02:00
To estimate the accuracy of the measured bending stiffness that can be obtained using this measurement principle, an error budget is performed.
2024-03-19 17:36:39 +01:00
2024-04-30 22:20:19 +02:00
Based on equation eqref:eq:test_joints_stiff_displ_force, several errors can affect the accuracy of the measured bending stiffness:
- Errors in the measured torque $M_x, M_y$: this is mainly due to inaccuracies in the load cell and of the height estimation $h$
- Errors in the measured bending motion of the flexible joints $\theta_x, \theta_y$: errors from limited shear stiffness, from the deflection of the load cell itself, and inaccuracy of the height estimation $h$
2024-04-05 16:24:17 +02:00
2024-04-30 22:20:19 +02:00
If only the bending stiffness is considered, the induced displacement is described by eqref:eq:test_joints_dbx.
2024-04-05 16:24:17 +02:00
\begin{equation}\label{eq:test_joints_dbx}
d_{x,b} = h \tan(\theta_y) = h \tan\left( \frac{F_x \cdot h}{k_{R_y}} \right)
\end{equation}
2024-03-19 17:36:39 +01:00
#+begin_src matlab :exports none
%% Stiffness
ka = 94e6; % Axial Stiffness [N/m]
ks = 13e6; % Shear Stiffness [N/m]
kb = 5; % Bending Stiffness [Nm/rad]
kt = 260; % Torsional Stiffness [Nm/rad]
%% Maximum force
Fa = 469; % Axial Force before yield [N]
Fs = 242; % Shear Force before yield [N]
Fb = 0.118; % Bending Force before yield [Nm]
Ft = 1.508; % Torsional Force before yield [Nm]
%% Compute the corresponding stroke
Xa = Fa/ka; % Axial Stroke before yield [m]
Xs = Fs/ks; % Shear Stroke before yield [m]
Xb = Fb/kb; % Bending Stroke before yield [rad]
Xt = Ft/kt; % Torsional Stroke before yield [rad]
2024-04-05 16:24:17 +02:00
%% Height between the joint's center and the force application point
h = 22.5e-3; % [m]
2024-03-19 17:36:39 +01:00
#+end_src
2024-04-05 16:24:17 +02:00
**** Effect of Shear
The applied force $F_x$ will induce some shear $d_{x,s}$ which is described by eqref:eq:test_joints_shear_displ with $k_s$ the shear stiffness of the flexible joint.
2024-03-19 17:36:39 +01:00
2024-04-05 16:24:17 +02:00
\begin{equation}\label{eq:test_joints_shear_displ}
d_{x,s} = \frac{F_x}{k_s}
2024-03-19 17:36:39 +01:00
\end{equation}
2024-04-30 22:20:19 +02:00
The measured displacement $d_x$ is affected shear, as shown in equation eqref:eq:test_joints_displ_shear.
2024-03-19 17:36:39 +01:00
2024-04-05 16:24:17 +02:00
\begin{equation}\label{eq:test_joints_displ_shear}
d_x = d_{x,b} + d_{x,s} = h \tan\left( \frac{F_x \cdot h}{k_{R_y}} \right) + \frac{F_x}{k_s} \approx F_x \left( \frac{h^2}{k_{R_y}} + \frac{1}{k_s} \right)
2024-03-19 17:36:39 +01:00
\end{equation}
2024-04-05 16:24:17 +02:00
The estimated bending stiffness $k_{\text{est}}$ then depends on the shear stiffness eqref:eq:test_joints_error_shear.
2024-03-19 17:36:39 +01:00
2024-04-05 16:24:17 +02:00
\begin{equation}\label{eq:test_joints_error_shear}
k_{R_y,\text{est}} = h^2 \frac{F_x}{d_x} \approx k_{R_y} \frac{1}{1 + \frac{k_{R_y}}{k_s h^2}} \approx k_{R_y} \Bigl( 1 - \underbrace{\frac{k_{R_y}}{k_s h^2}}_{\epsilon_{s}} \Bigl)
2024-03-19 17:36:39 +01:00
\end{equation}
2024-04-05 16:24:17 +02:00
With an estimated shear stiffness $k_s = 13\,N/\mu m$ from the finite element model and an height $h=25\,mm$, the estimation errors of the bending stiffness due to shear is $\epsilon_s < 0.1\,\%$
2024-03-19 17:36:39 +01:00
#+begin_src matlab
2024-04-05 16:24:17 +02:00
%% Estimated error due to shear
2024-04-06 00:33:37 +02:00
epsilon_s = 100*abs(1-1/(1 + kb/(ks*h^2))); % Error in %
2024-03-19 17:36:39 +01:00
#+end_src
2024-04-05 16:24:17 +02:00
**** Effect of load cell limited stiffness
2024-04-30 22:20:19 +02:00
As explained in the previous section, because the measurement of the flexible joint deflection is indirectly performed with the encoder, errors will be made if the load cell experiences some compression.
2024-03-19 17:36:39 +01:00
2024-04-05 16:24:17 +02:00
Suppose the load cell has an internal stiffness $k_f$, the same reasoning that was made for the effect of shear can be applied here.
The estimation error of the bending stiffness due to the limited stiffness of the load cell is then described by eqref:eq:test_joints_error_load_cell_stiffness.
2024-03-19 17:36:39 +01:00
2024-04-05 16:24:17 +02:00
\begin{equation}\label{eq:test_joints_error_load_cell_stiffness}
k_{R_y,\text{est}} = h^2 \frac{F_x}{d_x} \approx k_{R_y} \frac{1}{1 + \frac{k_{R_y}}{k_F h^2}} \approx k_{R_y} \Bigl( 1 - \underbrace{\frac{k_{R_y}}{k_F h^2}}_{\epsilon_f} \Bigl)
2024-03-19 17:36:39 +01:00
\end{equation}
2024-04-05 16:24:17 +02:00
With an estimated load cell stiffness of $k_f \approx 1\,N/\mu m$ (from the documentation), the errors due to the load cell limited stiffness is around $\epsilon_f = 1\,\%$.
2024-03-19 17:36:39 +01:00
2024-04-05 16:24:17 +02:00
#+begin_src matlab
%% Estimated error due to limited load cell stiffness
kF = 50/0.05e-3; % Estimated load cell stiffness [N/m]
epsilon_f = 100*abs(1-1/(1 + kb/(kF*h^2))); % Error in %
2024-03-19 17:36:39 +01:00
#+end_src
2024-04-04 17:38:22 +02:00
**** Estimation error due to height estimation error
2024-04-30 22:20:19 +02:00
Now consider an error $\delta h$ in the estimation of the height $h$ as described by eqref:eq:test_joints_est_h_error.
2024-03-19 17:36:39 +01:00
2024-04-05 16:24:17 +02:00
\begin{equation}\label{eq:test_joints_est_h_error}
h_{\text{est}} = h + \delta h
2024-03-19 17:36:39 +01:00
\end{equation}
2024-04-05 16:24:17 +02:00
The computed bending stiffness will be eqref:eq:test_joints_stiffness_height_error.
\begin{equation}\label{eq:test_joints_stiffness_height_error}
k_{R_y, \text{est}} \approx h_{\text{est}}^2 \frac{F_x}{d_x} \approx k_{R_y} \Bigl( 1 + \underbrace{2 \frac{\delta h}{h} + \frac{\delta h ^2}{h^2}}_{\epsilon_h} \Bigl)
2024-03-19 17:36:39 +01:00
\end{equation}
2024-04-05 16:25:54 +02:00
The height estimation is foreseen to be accurate to within $|\delta h| < 0.4\,mm$ which corresponds to a stiffness error $\epsilon_h < 3.5\,\%$.
2024-04-05 16:24:17 +02:00
**** Estimation error due to force and displacement sensors accuracy
2024-04-11 16:07:53 +02:00
An optical encoder is used to measure the displacement (see Section ref:ssec:test_joints_test_bench) whose maximum non-linearity is $40\,nm$.
2024-04-30 22:20:19 +02:00
As the measured displacement is foreseen to be $0.5\,mm$, the error $\epsilon_d$ due to the encoder non-linearity is negligible $\epsilon_d < 0.01\,\%$.
2024-04-05 16:24:17 +02:00
The accuracy of the load cell is specified at $1\,\%$ and therefore, estimation errors of the bending stiffness due to the limited load cell accuracy should be $\epsilon_F < 1\,\%$
2024-03-19 17:36:39 +01:00
2024-04-04 17:38:22 +02:00
**** Conclusion
2024-04-05 16:24:17 +02:00
The different sources of errors are summarized in Table ref:tab:test_joints_error_budget.
2024-04-30 22:20:19 +02:00
The most important source of error is the estimation error of the distance between the flexible joint rotation axis and its contact with the force sensor.
An overall accuracy of $\approx 5\,\%$ can be expected with this measurement bench, which should be sufficient for an estimation of the bending stiffness of the flexible joints.
2024-04-05 16:24:17 +02:00
#+name: tab:test_joints_error_budget
2024-04-30 22:20:19 +02:00
#+caption: Summary of the error budget for estimating the bending stiffness
2024-04-05 16:24:17 +02:00
#+attr_latex: :environment tabularx :width 0.4\linewidth :align lX
#+attr_latex: :center t :booktabs t
| *Effect* | *Error* |
|----------------------+-------------------------|
| Shear effect | $\epsilon_s < 0.1\,\%$ |
| Load cell compliance | $\epsilon_f = 1\,\%$ |
| Height error | $\epsilon_h < 3.5\,\%$ |
| Displacement sensor | $\epsilon_d < 0.01\,\%$ |
| Force sensor | $\epsilon_F < 1\,\%$ |
2024-03-19 17:36:39 +01:00
2024-04-11 16:07:53 +02:00
** Mechanical Design
<<ssec:test_joints_test_bench>>
As explained in Section ref:ssec:test_joints_meas_principle, the flexible joint's bending stiffness is estimated by applying a known force to the flexible joint's tip and by measuring its deflection at the same point.
The force is applied using a load cell[fn:2] such that the applied force to the flexible joint's tip is directly measured.
2024-04-30 22:20:19 +02:00
To control the height and direction of the applied force, a cylinder cut in half is fixed at the tip of the force sensor (pink element in Figure ref:fig:test_joints_bench_side) that initially had a flat surface.
Doing so, the contact between the flexible joint cylindrical tip and the force sensor is a point (intersection of two cylinders) at a precise height, and the force is applied in a known direction.
2024-04-11 16:07:53 +02:00
To translate the load cell at a constant height, it is fixed to a translation stage[fn:3] which is moved by hand.
Instead of measuring the displacement directly at the tip of the flexible joint (with a probe or an interferometer for instance), the displacement of the load cell itself is measured.
2024-04-30 22:20:19 +02:00
To do so, an encoder[fn:4] is used, which measures the motion of a ruler.
2024-04-11 16:07:53 +02:00
This ruler is fixed to the translation stage in line (i.e. at the same height) with the application point to reduce Abbe errors (see Figure ref:fig:test_joints_bench_overview).
2024-04-30 22:20:19 +02:00
The flexible joint can be rotated by $90^o$ in order to measure the bending stiffness in the two directions.
2024-04-11 16:07:53 +02:00
The obtained CAD design of the measurement bench is shown in Figure ref:fig:test_joints_bench_overview while a zoom on the flexible joint with the associated important quantities is shown in Figure ref:fig:test_joints_bench_side.
#+name: fig:test_joints_bench
2024-04-30 22:20:19 +02:00
#+caption: CAD view of the test bench developed to measure the bending stiffness of the flexible joints. Different parts are shown in (\subref{fig:test_joints_bench_overview}) while a zoom on the flexible joint is shown in (\subref{fig:test_joints_bench_side})
2024-04-11 16:07:53 +02:00
#+attr_latex: :options [htbp]
#+begin_figure
#+attr_latex: :caption \subcaption{\label{fig:test_joints_bench_overview} Schematic of the test bench to measure the bending stiffness of the flexible joints}
#+attr_latex: :options {0.78\textwidth}
#+begin_subfigure
#+attr_latex: :height 6cm
[[file:figs/test_joints_bench_overview.png]]
#+end_subfigure
#+attr_latex: :caption \subcaption{\label{fig:test_joints_bench_side} Zoom}
#+attr_latex: :options {0.21\textwidth}
#+begin_subfigure
#+attr_latex: :height 6cm
[[file:figs/test_joints_bench_side.png]]
#+end_subfigure
#+end_figure
2024-04-04 17:38:22 +02:00
* Bending Stiffness Measurement
2024-03-19 17:36:39 +01:00
:PROPERTIES:
2024-04-04 17:38:22 +02:00
:header-args:matlab+: :tangle ./matlab/test_joints_3_bending_stiff_meas.m
2024-03-19 17:36:39 +01:00
:END:
2024-04-04 17:38:22 +02:00
<<sec:test_joints_bending_stiffness_meas>>
2024-04-30 22:20:19 +02:00
** Introduction :ignore:
2024-03-19 17:36:39 +01:00
2024-04-04 17:38:22 +02:00
A picture of the bench used to measure the X-bending stiffness of the flexible joints is shown in Figure ref:fig:test_joints_picture_bench_overview.
2024-04-30 22:20:19 +02:00
A closer view of the force sensor tip is shown in Figure ref:fig:test_joints_picture_bench_zoom.
2024-04-04 17:38:22 +02:00
2024-04-05 16:24:17 +02:00
#+name: fig:test_joints_picture_bench
2024-04-11 16:07:53 +02:00
#+caption: Manufactured test bench for compliance measurement of the flexible joints
2024-04-05 16:24:17 +02:00
#+attr_latex: :options [htbp]
#+begin_figure
#+attr_latex: :caption \subcaption{\label{fig:test_joints_picture_bench_overview}Picture of the measurement bench}
#+attr_latex: :options {0.70\textwidth}
#+begin_subfigure
#+attr_latex: :height 5cm
2024-04-04 17:38:22 +02:00
[[file:figs/test_joints_picture_bench_overview.jpg]]
2024-04-05 16:24:17 +02:00
#+end_subfigure
#+attr_latex: :caption \subcaption{\label{fig:test_joints_picture_bench_zoom}Zoom on the tip}
#+attr_latex: :options {0.29\textwidth}
#+begin_subfigure
#+attr_latex: :height 5cm
2024-04-04 17:38:22 +02:00
[[file:figs/test_joints_picture_bench_zoom.jpg]]
2024-04-05 16:24:17 +02:00
#+end_subfigure
#+end_figure
2024-03-19 17:36:39 +01:00
2024-03-25 10:01:56 +01:00
** Matlab Init :noexport:ignore:
2024-03-19 15:18:31 +01:00
#+begin_src matlab :tangle no :exports none :results silent :noweb yes :var current_dir=(file-name-directory buffer-file-name)
<<matlab-dir>>
#+end_src
#+begin_src matlab :exports none :results silent :noweb yes
<<matlab-init>>
#+end_src
2024-03-25 10:01:56 +01:00
#+begin_src matlab :tangle no :noweb yes
<<m-init-path>>
2024-03-19 17:36:39 +01:00
#+end_src
2024-03-25 10:01:56 +01:00
#+begin_src matlab :eval no :noweb yes
<<m-init-path-tangle>>
2024-03-19 17:36:39 +01:00
#+end_src
2024-03-25 10:01:56 +01:00
#+begin_src matlab :noweb yes
<<m-init-other>>
2024-03-19 17:36:39 +01:00
#+end_src
2024-04-05 17:53:53 +02:00
** Load Cell Calibration
2024-04-05 16:24:17 +02:00
In order to estimate the measured errors of the load cell "FC2231", it is compared against another load cell[fn:5].
2024-04-05 17:53:53 +02:00
The two load cells are measured simultaneously while they are pushed against each other (see Figure ref:fig:test_joints_force_sensor_calib_picture).
2024-04-30 22:20:19 +02:00
The contact between the two load cells is well defined as one has a spherical interface and the other has a flat surface.
2024-03-19 17:36:39 +01:00
2024-04-05 17:53:53 +02:00
The measured forces are compared in Figure ref:fig:test_joints_force_sensor_calib_fit.
2024-04-30 22:20:19 +02:00
The gain mismatch between the two load cells is approximately $4\,\%$ which is higher than that specified in the data sheets.
2024-04-11 16:07:53 +02:00
However, the estimated non-linearity is bellow $0.2\,\%$ for forces between $1\,N$ and $5\,N$.
2024-03-19 17:36:39 +01:00
#+begin_src matlab
2024-04-05 17:53:53 +02:00
%% Force Sensor Calibration
% Load measurement data
2024-03-19 17:36:39 +01:00
load('calibration_force_sensor.mat', 't', 'F', 'Fc')
2024-04-05 17:53:53 +02:00
% Remove any offset such that they are both measuring no force when not in contact.
F = F - mean(F( t > 0.5 & t < 1.0)); % FC2231 [N]
Fc = Fc - mean(Fc(t > 0.5 & t < 1.0)); % XFL212R [N]
2024-03-19 17:36:39 +01:00
2024-04-05 17:53:53 +02:00
% Only get useful stroke
2024-04-11 16:07:53 +02:00
F = F( t > 2 & t < 2.2);
Fc = Fc(t > 2 & t < 2.2);
t = t( t > 2 & t < 2.2);
2024-03-19 17:36:39 +01:00
2024-04-05 17:53:53 +02:00
% Make a line fit
fit_F = polyfit(Fc, F, 1);
2024-03-19 17:36:39 +01:00
2024-04-05 17:53:53 +02:00
% Estimate the gain mismatch
F_gain_mismatch = 100*(1 - fit_F(1)); % in %
2024-03-19 17:36:39 +01:00
2024-04-05 17:53:53 +02:00
% Estimate non-linearity of the sensors
2024-04-11 16:07:53 +02:00
F_non_linearity = 100*(F - (Fc*fit_F(1) + fit_F(2)))./Fc; % in %
2024-03-19 17:36:39 +01:00
#+end_src
#+begin_src matlab :exports none
2024-04-05 17:53:53 +02:00
%% Measured two forces and linear fit
2024-03-19 17:36:39 +01:00
figure;
2024-04-11 16:07:53 +02:00
yyaxis left
2024-03-19 17:36:39 +01:00
hold on;
2024-04-11 16:07:53 +02:00
plot(Fc, F, '.', 'DisplayName', 'Raw Data');
plot([0, 6], [0,6]*fit_F(1) + fit_F(2), '-', 'color', [colors(3,:), 0.5], 'DisplayName', 'Line Fit');
2024-03-19 17:36:39 +01:00
hold off;
xlabel('XFL212R [N]'); ylabel('FC2231 [N]');
2024-04-11 16:07:53 +02:00
xlim([0,6]); ylim([0,6]);
xticks([0:6])
yticks([0:6])
yyaxis right
plot(Fc, movmean(F_non_linearity, 200), '-', 'DisplayName', 'Non linearity');
ylim([-0.15, 0.15]);
ylabel('Non Linearity [$\%$]')
leg = legend('location', 'southeast', 'FontSize', 8, 'NumColumns', 1);
leg.ItemTokenSize(1) = 15;
2024-03-19 17:36:39 +01:00
#+end_src
2024-04-05 17:53:53 +02:00
#+begin_src matlab :tangle no :exports results :results file none
exportFig('figs/test_joints_force_sensor_calib_fit.pdf', 'width', 'half', 'height', 'normal');
2024-03-19 17:36:39 +01:00
#+end_src
2024-04-05 17:53:53 +02:00
#+name: fig:test_joints_force_sensor_calib
2024-04-11 16:07:53 +02:00
#+caption: Estimation of the load cell accuracy by comparing the measured force of two load cells. A picture of the measurement bench is shown in (\subref{fig:test_joints_force_sensor_calib_picture}). Comparison of the two measured forces and estimated non-linearity are shown in (\subref{fig:test_joints_force_sensor_calib_fit})
2024-04-05 16:24:17 +02:00
#+attr_latex: :options [htbp]
#+begin_figure
2024-04-11 16:07:53 +02:00
#+attr_latex: :caption \subcaption{\label{fig:test_joints_force_sensor_calib_picture}Zoom on the two load cells in contact}
2024-04-05 16:24:17 +02:00
#+attr_latex: :options {0.49\textwidth}
#+begin_subfigure
2024-04-05 17:53:53 +02:00
#+attr_latex: :height 5.5cm
2024-04-11 16:07:53 +02:00
[[file:figs/test_joints_force_sensor_calib_picture.png]]
2024-04-05 16:24:17 +02:00
#+end_subfigure
2024-04-11 16:07:53 +02:00
#+attr_latex: :caption \subcaption{\label{fig:test_joints_force_sensor_calib_fit}Measured two forces}
2024-04-05 16:24:17 +02:00
#+attr_latex: :options {0.49\textwidth}
#+begin_subfigure
2024-04-05 17:53:53 +02:00
#+attr_latex: :height 5.5cm
[[file:figs/test_joints_force_sensor_calib_fit.png]]
2024-04-05 16:24:17 +02:00
#+end_subfigure
#+end_figure
2024-03-19 17:36:39 +01:00
2024-04-05 17:53:53 +02:00
** Load Cell Stiffness
The objective of this measurement is to estimate the stiffness $k_F$ of the force sensor.
2024-04-30 22:20:19 +02:00
To do so, a stiff element (much stiffer than the estimated $k_F \approx 1\,N/\mu m$) is mounted in front of the force sensor, as shown in Figure ref:fig:test_joints_meas_force_sensor_stiffness_picture.
Then, the force sensor is pushed against this stiff element while the force sensor and the encoder displacement are measured.
The measured displacement as a function of the measured force is shown in Figure ref:fig:test_joints_force_sensor_stiffness_fit.
The load cell stiffness can then be estimated by computing a linear fit and is found to be $k_F \approx 0.68\,N/\mu m$.
2024-03-19 17:36:39 +01:00
#+begin_src matlab
2024-04-05 17:53:53 +02:00
%% Estimaetd load cell stiffness
% Load measurement data
2024-03-19 17:36:39 +01:00
load('force_sensor_stiffness_meas.mat', 't', 'F', 'd')
2024-04-05 17:53:53 +02:00
% Remove offset
2024-03-19 17:36:39 +01:00
F = F - mean(F(t > 0.5 & t < 1.0));
2024-04-05 17:53:53 +02:00
% Select important part of data
2024-03-19 17:36:39 +01:00
F = F( t > 4.55 & t < 7.24);
d = d( t > 4.55 & t < 7.24); d = d - d(1);
t = t( t > 4.55 & t < 7.24);
2024-04-05 17:53:53 +02:00
% Linear fit
2024-04-11 16:07:53 +02:00
fit_k = polyfit(F(F<10), d(F<10), 1);
2024-03-19 17:36:39 +01:00
#+end_src
#+begin_src matlab :exports none
2024-04-05 16:24:17 +02:00
%% Displacement as a function of the measured force
2024-03-19 17:36:39 +01:00
figure;
hold on;
2024-04-05 17:53:53 +02:00
plot(F, 1e6*d, 'k-', 'DisplayName', 'Raw Data');
plot(F([1,end]), 1e6*(F([1,end])*fit_k(1) + fit_k(2)), '--', 'DisplayName', sprintf('Fit, $k_F \\approx %.2f N/\\mu m$', 1e-6/fit_k(1)));
2024-03-19 17:36:39 +01:00
hold off;
xlabel('Force [$N$]'); ylabel('Displacement [$\mu m$]');
xlim([0,45]); ylim([0,60]);
2024-04-05 16:24:17 +02:00
legend('location', 'southeast', 'FontSize', 8);
2024-03-19 17:36:39 +01:00
#+end_src
2024-04-05 16:24:17 +02:00
#+begin_src matlab :tangle no :exports results :results file none
exportFig('figs/test_joints_force_sensor_stiffness_fit.pdf', 'width', 'half', 'height', 'normal');
2024-03-19 17:36:39 +01:00
#+end_src
2024-04-05 17:53:53 +02:00
#+name: fig:test_joints_meas_force_sensor_stiffness
2024-04-30 22:20:19 +02:00
#+caption: Estimation of the load cell stiffness. The measurement setup is shown in (\subref{fig:test_joints_meas_force_sensor_stiffness_picture}). The measurement results are shown in (\subref{fig:test_joints_force_sensor_stiffness_fit}).
2024-04-05 17:53:53 +02:00
#+attr_latex: :options [htbp]
#+begin_figure
2024-04-06 00:27:19 +02:00
#+attr_latex: :caption \subcaption{\label{fig:test_joints_meas_force_sensor_stiffness_picture}Picture of the measurement bench}
2024-04-05 17:53:53 +02:00
#+attr_latex: :options {0.49\textwidth}
#+begin_subfigure
#+attr_latex: :height 5.5cm
[[file:figs/test_joints_meas_force_sensor_stiffness_picture.jpg]]
#+end_subfigure
#+attr_latex: :caption \subcaption{\label{fig:test_joints_force_sensor_stiffness_fit}Measured displacement as a function of the force}
#+attr_latex: :options {0.49\textwidth}
#+begin_subfigure
#+attr_latex: :height 5.5cm
[[file:figs/test_joints_force_sensor_stiffness_fit.png]]
#+end_subfigure
#+end_figure
2024-03-19 17:36:39 +01:00
2024-04-05 17:53:53 +02:00
** Bending Stiffness estimation
2024-04-30 22:20:19 +02:00
The actual stiffness is now estimated by manually moving the translation stage from a start position where the force sensor is not yet in contact with the flexible joint to a position where the flexible joint is on its mechanical stop.
2024-03-19 17:36:39 +01:00
2024-04-05 16:24:17 +02:00
The measured force and displacement as a function of time are shown in Figure ref:fig:test_joints_meas_bend_time.
2024-04-30 22:20:19 +02:00
Three regions can be observed: first, the force sensor tip is not in contact with the flexible joint and the measured force is zero; then, the flexible joint deforms linearly; and finally, the flexible joint comes in contact with the mechanical stop.
2024-03-19 17:36:39 +01:00
2024-04-30 22:20:19 +02:00
The angular motion $\theta_{y}$ computed from the displacement $d_x$ is displayed as function of the measured torque $T_{y}$ in Figure ref:fig:test_joints_meas_F_d_lin_fit.
2024-04-05 17:53:53 +02:00
The bending stiffness of the flexible joint can be estimated by computing the slope of the curve in the linear regime (red dashed line) and is found to be $k_{R_y} = 4.4\,Nm/\text{rad}$.
The bending stroke can also be estimated as shown in Figure ref:fig:test_joints_meas_F_d_lin_fit and is found to be $\theta_{y,\text{max}} = 20.9\,\text{mrad}$.
2024-03-19 17:36:39 +01:00
#+begin_src matlab
2024-04-06 00:27:19 +02:00
%% Estimate the bending stiffness and stroke from the measurement - First Flexible joint
% Load Measured Data for first flexible joint
2024-03-19 17:36:39 +01:00
load('meas_stiff_flex_1_x.mat', 't', 'F', 'd');
2024-04-06 00:27:19 +02:00
% Start measurement at t = 0.2 s
2024-03-19 17:36:39 +01:00
d = d(t > 0.2);
F = F(t > 0.2);
t = t(t > 0.2); t = t - t(1);
2024-04-06 00:27:19 +02:00
% Zero the force
F = F - mean(F(t < 0.2));
2024-03-19 17:36:39 +01:00
% Find when the force sensor touches the flexible joint
i_l_start = find(F > 0.3, 1, 'first');
2024-04-05 16:24:17 +02:00
2024-04-06 00:27:19 +02:00
% Compute torque and angular displacement
h = 22.5e-3; % Height [m]
Tx = h * F; % Applied torque in [Nm]
thetax = atan2(d - d(i_l_start), h); % Measured angle in [rad]
2024-04-05 16:24:17 +02:00
% Find then the maximum torque is applied
2024-04-06 00:27:19 +02:00
[~, i_s_stop] = max(Tx);
2024-03-19 17:36:39 +01:00
% Linear region stops ~ when 90% of the stroke is reached
2024-04-06 00:27:19 +02:00
i_l_stop = find(thetax > 0.9*thetax(i_s_stop), 1, 'first');
2024-04-05 16:24:17 +02:00
% Mechanical "Stop" region start ~20Nmm before maximum torque is applied
2024-04-06 00:27:19 +02:00
i_s_start = find(Tx > max(Tx)-20e-3, 1, 'first');
2024-03-19 17:36:39 +01:00
2024-04-06 00:27:19 +02:00
% Linear fit in the "linear" region
fit_l = polyfit(Tx(i_l_start:i_l_stop), thetax(i_l_start:i_l_stop), 1);
2024-03-19 17:36:39 +01:00
2024-04-06 00:27:19 +02:00
% Linear fit in the "mechanical stop" region
fit_s = polyfit(Tx(i_s_start:i_s_stop), thetax(i_s_start:i_s_stop), 1);
2024-03-19 17:36:39 +01:00
2024-04-06 00:27:19 +02:00
% Reset displacement more precisely based on fit
thetax = thetax - fit_l(2);
2024-03-19 17:36:39 +01:00
fit_s(2) = fit_s(2) - fit_l(2);
fit_l(2) = 0;
2024-04-05 16:24:17 +02:00
%% Estimation of the bending stiffness
2024-04-06 00:27:19 +02:00
kRx_l = 1/fit_l(1); % Bending Stiffness [Nm/rad]
kRx_s = 1/fit_s(1); % Mechanical "Stop" Stiffness [Nm/rad]
2024-03-19 17:36:39 +01:00
2024-04-05 16:24:17 +02:00
%% Estimation of the bending stroke
% This is done by finding the intersection of the two linear fits
theta_max = fit_l(1)*fit_s(2)/(fit_l(1) - fit_s(1)); % Maximum angular stroke [rad]
2024-04-06 00:27:19 +02:00
Tx_at_theta_max = (fit_s(2) - fit_l(2))/(fit_l(1) - fit_s(1));
2024-04-05 16:24:17 +02:00
#+end_src
#+begin_src matlab :exports none :results none
%% Measured force and displacement as a function of time
2024-03-19 17:36:39 +01:00
figure;
2024-04-05 16:24:17 +02:00
yyaxis left
2024-03-19 17:36:39 +01:00
hold on;
2024-04-05 16:24:17 +02:00
plot(t, F);
plot(0.8*cos(0:0.01:2*pi)+0.8, ...
2.8*sin(0:0.01:2*pi)-1, 'k--', 'HandleVisibility', 'off');
text(1.8, -1.2, sprintf('Not in\ncontact'), 'horizontalalignment', 'left');
plot(0.4*cos(0:0.01:2*pi)+3, ...
1.1*sin(0:0.01:2*pi)+4.8, 'k--');
text(3.5, 4.8, sprintf('Mechanical\nStop'), 'horizontalalignment', 'left');
2024-03-19 17:36:39 +01:00
hold off;
2024-04-06 00:27:19 +02:00
ylabel('Force $F_y$ [N]');
2024-04-05 16:24:17 +02:00
ylim([-4, 6])
ylimr = get(gca,'Ylim');
yyaxis right
plot(t, 1e3*d);
xlabel('Time [s]');
2024-04-06 00:27:19 +02:00
ylabel('Displacement $d_y$ [mm]');
2024-04-05 16:24:17 +02:00
xlim([0,5]);
% Make the force and displacement superimpose
ylim([0.364 - 4*(0.8315-0.364)/4.095, 0.364 + 6*(0.8315-0.364)/4.095])
2024-03-19 17:36:39 +01:00
#+end_src
2024-04-05 16:24:17 +02:00
#+begin_src matlab :tangle no :exports results :results file none
exportFig('figs/test_joints_meas_bend_time.pdf', 'width', 'half', 'height', 'normal');
2024-03-19 17:36:39 +01:00
#+end_src
2024-04-05 16:24:17 +02:00
#+begin_src matlab :exports none
% Regions where to plot the fitted data
2024-04-06 00:27:19 +02:00
Tx_l_fit = [0, Tx_at_theta_max];
Tx_s_fit = [Tx_at_theta_max, Tx(i_s_stop)];
2024-03-19 17:36:39 +01:00
2024-04-05 16:24:17 +02:00
figure;
hold on;
2024-04-06 00:27:19 +02:00
plot(Tx(1:i_s_stop), 1e3*thetax(1:i_s_stop), '-k', 'DisplayName', 'Raw data')
plot(Tx_l_fit, 1e3*(Tx_l_fit*fit_l(1) + fit_l(2)), '--', 'DisplayName', sprintf('$k_{R_x} = %.1f$ Nm/rad', kRx_l))
plot(Tx_s_fit, 1e3*(Tx_s_fit*fit_s(1) + fit_s(2)), '--', 'DisplayName', sprintf('$k_{R_x,stop} = %.0f$ Nm/rad', kRx_s))
plot([0, Tx_at_theta_max], [1e3*theta_max, 1e3*theta_max], 'k--', 'HandleVisibility', 'off')
plot([0, Tx_at_theta_max], [0, 0], 'k--', 'HandleVisibility', 'off')
2024-04-05 16:24:17 +02:00
anArrow = annotation('doublearrow', 'LineWidth', 0.5);
anArrow.Parent = gca;
anArrow.Position = [0.05, 0, 0, 1e3*fit_l(1)*fit_s(2)/(fit_l(1) - fit_s(1))];
2024-04-06 00:27:19 +02:00
text(0.052, 0.4*1e3*fit_l(1)*fit_s(2)/(fit_l(1) - fit_s(1)), sprintf('$\\theta_{x,\\max} = %.1f$ mrad', 1e3*theta_max), 'horizontalalignment', 'left');
2024-04-05 16:24:17 +02:00
hold off;
2024-04-06 00:27:19 +02:00
xlabel('Torque $T_x$ [Nm]');
ylabel('Angle $\theta_x$ [mrad]');
2024-04-05 16:24:17 +02:00
xlim([0, 0.15]);
ylim([-5,25]);
leg = legend('location', 'southeast', 'FontSize', 8);
leg.ItemTokenSize(1) = 15;
2024-03-19 17:36:39 +01:00
#+end_src
2024-04-05 16:24:17 +02:00
#+begin_src matlab :tangle no :exports results :results file none
exportFig('figs/test_joints_meas_F_d_lin_fit.pdf', 'width', 'half', 'height', 'normal');
#+end_src
#+name: fig:test_joints_meas_example
2024-04-30 22:20:19 +02:00
#+caption: Results obtained on the first flexible joint. The measured force and displacement are shown in (\subref{fig:test_joints_meas_bend_time}). The estimated angular displacement $\theta_x$ as a function of the estimated applied torque $T_{x}$ is shown in (\subref{fig:test_joints_meas_F_d_lin_fit}). The bending stiffness $k_{R_x}$ of the flexible joint can be estimated by computing a best linear fit (red dashed line).
2024-04-05 16:24:17 +02:00
#+attr_latex: :options [htbp]
#+begin_figure
#+attr_latex: :caption \subcaption{\label{fig:test_joints_meas_bend_time}Force and displacement measured as a function of time}
#+attr_latex: :options {0.49\textwidth}
#+begin_subfigure
#+attr_latex: :height 5.3cm
[[file:figs/test_joints_meas_bend_time.png]]
#+end_subfigure
#+attr_latex: :caption \subcaption{\label{fig:test_joints_meas_F_d_lin_fit}Angular displacement measured as a function of the applied torque}
#+attr_latex: :options {0.49\textwidth}
#+begin_subfigure
#+attr_latex: :height 5.3cm
[[file:figs/test_joints_meas_F_d_lin_fit.png]]
#+end_subfigure
#+end_figure
2024-03-19 17:36:39 +01:00
2024-04-30 22:20:19 +02:00
** Measured flexible joint stiffness
The same measurement was performed for all the 16 flexible joints, both in the $x$ and $y$ directions.
The measured angular motion as a function of the applied torque is shown in Figure ref:fig:test_joints_meas_bending_all_raw_data for the 16 flexible joints.
2024-04-06 00:27:19 +02:00
This gives a first idea of the dispersion of the measured bending stiffnesses (i.e. slope of the linear region) and of the angular stroke.
2024-04-30 22:20:19 +02:00
A histogram of the measured bending stiffnesses is shown in Figure ref:fig:test_joints_bend_stiff_hist.
2024-04-06 00:27:19 +02:00
Most of the bending stiffnesses are between $4.6\,Nm/rad$ and $5.0\,Nm/rad$.
2024-03-19 17:36:39 +01:00
#+begin_src matlab :exports none
2024-04-06 00:27:19 +02:00
%% Measure the bending stiffness and Stroke for all the flexible joints
figure;
hold on;
2024-03-19 17:36:39 +01:00
2024-04-06 00:27:19 +02:00
%% Start with the X-bending
% Initialize variables
Rx = zeros(1,16); % Bending stiffnesses [Nm/rad]
kSx = zeros(1,16); % Bending stiffnesses at "stop" [Nm/rad]
Rmx = zeros(1,16); % Bending stroke [rad]
2024-03-19 17:36:39 +01:00
2024-04-06 00:27:19 +02:00
for i = 1:16
% Load the data
load(sprintf('meas_stiff_flex_%i_x.mat', i), 't', 'F', 'd');
2024-03-19 17:36:39 +01:00
2024-04-06 00:27:19 +02:00
% Start measurement at t = 0.2 s
2024-03-19 17:36:39 +01:00
d = d(t > 0.2);
F = F(t > 0.2);
t = t(t > 0.2); t = t - t(1);
2024-04-06 00:27:19 +02:00
% Zero the force
F = F - mean(F(t < 0.2));
% Find when the force sensor touches the flexible joint
2024-03-19 17:36:39 +01:00
i_l_start = find(F > 0.3, 1, 'first');
2024-04-06 00:27:19 +02:00
% Zero the displacement when it comes in contact
2024-03-19 17:36:39 +01:00
d = d - d(i_l_start);
2024-04-06 00:27:19 +02:00
% Compute torque and angular displacement
h = 22.5e-3; % Height [m]
Tx = h * F; % Applied torque in [Nm]
thetax = atan2(d, h); % Measured angle in [rad]
2024-03-19 17:36:39 +01:00
2024-04-06 00:27:19 +02:00
% Find then the maximum torque is applied
[~, i_s_stop] = max(Tx);
% Linear region stops ~ when 90% of the stroke is reached
i_l_stop = find(thetax > 0.9*thetax(i_s_stop), 1, 'first');
% Mechanical "Stop" region start ~20Nmm before maximum torque is applied
i_s_start = find(Tx > max(Tx)-20e-3, 1, 'first');
2024-03-19 17:36:39 +01:00
2024-04-06 00:27:19 +02:00
% Linear fit in the "linear" region
fit_l = polyfit(Tx(i_l_start:i_l_stop), thetax(i_l_start:i_l_stop), 1);
2024-03-19 17:36:39 +01:00
2024-04-06 00:27:19 +02:00
% Linear fit in the "mechanical stop" region
fit_s = polyfit(Tx(i_s_start:i_s_stop), thetax(i_s_start:i_s_stop), 1);
% Reset displacement more precisely based on fit
thetax = thetax - fit_l(2);
2024-03-19 17:36:39 +01:00
fit_s(2) = fit_s(2) - fit_l(2);
fit_l(2) = 0;
2024-04-06 00:27:19 +02:00
% Estimation of the bending stiffness and bending stroke
kRx(i) = 1/fit_l(1); % Bending Stiffness [Nm/rad]
kSx(i) = 1/fit_s(1); % Mechanical "Stop" Stiffness [Nm/rad]
Rmx(i) = fit_l(1)*fit_s(2)/(fit_l(1) - fit_s(1)); % Maximum angular stroke [rad]
if i == 1
plot(Tx(1:10:i_s_stop), 1e3*thetax(1:10:i_s_stop), '-', 'color', [colors(1,:), 0.4], ...
'DisplayName', '$k_{R_x}$')
else
plot(Tx(1:10:i_s_stop), 1e3*thetax(1:10:i_s_stop), '-', 'color', [colors(1,:), 0.4], ...
'HandleVisibility', 'off')
end
2024-03-19 17:36:39 +01:00
end
2024-04-06 00:27:19 +02:00
%% Continue with the Y-bending
% Initialize variables
kRy = zeros(1,16); % Bending stiffnesses [Nm/rad]
kSy = zeros(1,16); % Bending stiffnesses at "stop" [Nm/rad]
Rmy = zeros(1,16); % Bending stroke [rad]
2024-03-19 17:36:39 +01:00
for i = 1:16
2024-04-06 00:27:19 +02:00
% Load the data
load(sprintf('meas_stiff_flex_%i_y.mat', i), 't', 'F', 'd');
2024-03-19 17:36:39 +01:00
2024-04-06 00:27:19 +02:00
% Start measurement at t = 0.2 s
2024-03-19 17:36:39 +01:00
d = d(t > 0.2);
F = F(t > 0.2);
t = t(t > 0.2); t = t - t(1);
2024-04-06 00:27:19 +02:00
% Zero the force
F = F - mean(F(t < 0.2));
% Find when the force sensor touches the flexible joint
2024-03-19 17:36:39 +01:00
i_l_start = find(F > 0.3, 1, 'first');
2024-04-06 00:27:19 +02:00
% Zero the displacement when it comes in contact
2024-03-19 17:36:39 +01:00
d = d - d(i_l_start);
2024-04-06 00:27:19 +02:00
% Compute torque and angular displacement
h = 22.5e-3; % Height [m]
Ty = h * F; % Applied torque in [Nm]
thetay = atan2(d, h); % Measured angle in [rad]
2024-03-19 17:36:39 +01:00
2024-04-06 00:27:19 +02:00
% Find then the maximum torque is applied
[~, i_s_stop] = max(Ty);
% Linear region stops ~ when 90% of the stroke is reached
i_l_stop = find(thetay > 0.9*thetay(i_s_stop), 1, 'first');
% Mechanical "Stop" region start ~20Nmm before maximum torque is applied
i_s_start = find(Ty > max(Ty)-20e-3, 1, 'first');
2024-03-19 17:36:39 +01:00
2024-04-06 00:27:19 +02:00
% Linear fit in the "linear" region
fit_l = polyfit(Ty(i_l_start:i_l_stop), thetay(i_l_start:i_l_stop), 1);
2024-03-19 17:36:39 +01:00
2024-04-06 00:27:19 +02:00
% Linear fit in the "mechanical stop" region
fit_s = polyfit(Ty(i_s_start:i_s_stop), thetay(i_s_start:i_s_stop), 1);
% Reset displacement more precisely based on fit
thetay = thetay - fit_l(2);
2024-03-19 17:36:39 +01:00
fit_s(2) = fit_s(2) - fit_l(2);
fit_l(2) = 0;
2024-04-06 00:27:19 +02:00
% Estimation of the bending stiffness and bending stroke
kRy(i) = 1/fit_l(1); % Bending Stiffness [Nm/rad]
kSy(i) = 1/fit_s(1); % Mechanical "Stop" Stiffness [Nm/rad]
Rmy(i) = fit_l(1)*fit_s(2)/(fit_l(1) - fit_s(1)); % Maximum angular stroke [rad]
if i == 1
plot(Ty(1:10:i_s_stop), 1e3*thetay(1:10:i_s_stop), '-', 'color', [colors(2,:), 0.4], ...
'DisplayName', '$k_{R_y}$')
else
plot(Ty(1:10:i_s_stop), 1e3*thetay(1:10:i_s_stop), '-', 'color', [colors(2,:), 0.4], ...
'HandleVisibility', 'off')
end
2024-03-19 17:36:39 +01:00
end
2024-04-06 00:27:19 +02:00
xlabel('Torque $T$ [Nm]');
ylabel('Angle $\theta$ [mrad]');
xlim([0, 0.15]);
ylim([-5,25]);
legend('location', 'southeast', 'FontSize', 8);
2024-03-19 17:36:39 +01:00
#+end_src
2024-04-06 00:27:19 +02:00
#+begin_src matlab :tangle no :exports results :results file replace
exportFig('figs/test_joints_meas_bending_all_raw_data.pdf', 'width', 'half', 'height', 'normal');
2024-03-19 17:36:39 +01:00
#+end_src
#+begin_src matlab :exports none
figure;
2024-04-06 00:27:19 +02:00
histogram([kRx, kRy], [4:0.2:5])
xlabel('Bending stiffness [Nm/rad]')
xticks([4:0.2:5])
2024-03-19 17:36:39 +01:00
#+end_src
#+begin_src matlab :tangle no :exports results :results file replace
2024-04-06 00:27:19 +02:00
exportFig('figs/test_joints_bend_stiff_hist.pdf', 'width', 'half', 'height', 'normal');
2024-03-19 17:36:39 +01:00
#+end_src
2024-04-06 00:27:19 +02:00
#+name: fig:test_joints_meas_bending_results
2024-04-30 22:20:19 +02:00
#+caption: Result of measured $k_{R_x}$ and $k_{R_y}$ stiffnesses for the 16 flexible joints. Raw data are shown in (\subref{fig:test_joints_meas_bending_all_raw_data}). A histogram of the measured stiffnesses is shown in (\subref{fig:test_joints_bend_stiff_hist})
2024-04-06 00:27:19 +02:00
#+attr_latex: :options [htbp]
#+begin_figure
2024-04-30 22:20:19 +02:00
#+attr_latex: :caption \subcaption{\label{fig:test_joints_meas_bending_all_raw_data}Measured torque and angular motion for the flexible joints}
2024-04-06 00:27:19 +02:00
#+attr_latex: :options {0.49\textwidth}
#+begin_subfigure
#+attr_latex: :height 5.3cm
[[file:figs/test_joints_meas_bending_all_raw_data.png]]
#+end_subfigure
#+attr_latex: :caption \subcaption{\label{fig:test_joints_bend_stiff_hist}Histogram of the measured bending stiffness in the x and y directions}
#+attr_latex: :options {0.49\textwidth}
#+begin_subfigure
#+attr_latex: :height 5.3cm
2024-03-25 10:01:56 +01:00
[[file:figs/test_joints_bend_stiff_hist.png]]
2024-04-06 00:27:19 +02:00
#+end_subfigure
#+end_figure
2024-03-19 17:36:39 +01:00
** Conclusion
2024-04-04 17:38:22 +02:00
:PROPERTIES:
:UNNUMBERED: t
:END:
2024-04-11 16:07:53 +02:00
The measured bending stiffness and bending stroke of the flexible joints are very close to the estimated one using a Finite Element Model ($k_{R_x} = k_{R_y} = 5\,Nm/\text{rad}$).
2024-04-30 22:20:19 +02:00
The characteristics of the flexible joints are also quite close to each other.
This should allow us to model them using unique parameters.
2024-03-19 17:36:39 +01:00
2024-03-19 15:18:31 +01:00
* Conclusion
2024-04-30 22:20:19 +02:00
:PROPERTIES:
:UNNUMBERED: t
:END:
2024-03-25 10:01:56 +01:00
<<sec:test_joints_conclusion>>
2024-03-19 15:18:31 +01:00
2024-04-30 22:20:19 +02:00
The flexible joints are a key element of the nano-hexapod.
Careful dimensional measurements (Section ref:sec:test_joints_flex_dim_meas) allowed for the early identification of faulty flexible joints.
This was crucial in preventing potential complications that could have arisen from the installation of faulty joints on the nano-hexapod.
A dedicated test bench was developed to asses the bending stiffness of the flexible joints.
Through meticulous error analysis and budgeting, a satisfactory level of measurement accuracy could be guaranteed.
The measured bending stiffness values exhibited good agreement with the predictions from the finite element model
These measurements are helpful for refining the model of the flexible joints, thereby enhancing the overall accuracy of the nano-hexapod model.
Furthermore, the data obtained from these measurements have provided the necessary information to select the most suitable flexible joints for the nano-hexapod, ensuring optimal performance.
2024-03-19 15:18:31 +01:00
* Bibliography :ignore:
#+latex: \printbibliography[heading=bibintoc,title={Bibliography}]
* Helping Functions :noexport:
** Initialize Path
#+NAME: m-init-path
#+BEGIN_SRC matlab
%% Path for functions, data and scripts
addpath('./matlab/mat/'); % Path for data
addpath('./matlab/'); % Path for scripts
#+END_SRC
#+NAME: m-init-path-tangle
#+BEGIN_SRC matlab
%% Path for functions, data and scripts
addpath('./mat/'); % Path for data
#+END_SRC
** Initialize other elements
#+NAME: m-init-other
#+BEGIN_SRC matlab
%% Colors for the figures
colors = colororder;
#+END_SRC
2024-04-04 17:38:22 +02:00
* Footnotes
2024-04-30 22:20:19 +02:00
[fn:5]XFL212R-50N from TE Connectivity. The measurement range is $50\,N$. The specified accuracy is $1\,\%$ of the full range
2024-04-05 16:24:17 +02:00
[fn:4]Resolute\texttrademark{} encoder with $1\,nm$ resolution and $\pm 40\,nm$ maximum non-linearity
2024-04-30 22:20:19 +02:00
[fn:3]V-408 PIMag\textsuperscript{\textregistered} linear stage is used. Crossed rollers are used to guide the motion.
[fn:2]The load cell is FC22 from TE Connectivity. The measurement range is $50\,N$. The specified accuracy is $1\,\%$ of the full range
2024-04-04 17:38:22 +02:00
[fn:1]The alloy used is called /F16PH/, also refereed as "1.4542"