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

1276 lines
56 KiB
Org Mode
Raw 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-04 17:38:22 +02:00
At both ends of the nano-hexapod struts, a flexible spherical joint is used.
Ideally, these flexible joints would behave as perfect spherical joints, that is to say no bending and torsional stiffnesses, infinite shear and axial stiffnesses, unlimited bending and torsional stroke, no friction and no backlash.
2024-03-19 17:36:39 +01:00
2024-04-04 17:38:22 +02:00
Deviations from this ideal properties will impact the dynamics of the Nano-Hexapod and could limit the attainable performances.
During the detailed design phase, specifications in term of stiffness and stroke have been 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-04 17:38:22 +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 joints characteristics are summarized in Table ref:tab:test_joints_specs.
This flexible joint is a monolithic piece of stainless steel[fn:1] manufactured using wire electrical discharge machining.
It serves several functions as shown in Figure ref:fig:test_joints_iso, such as:
- 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.
The rotation axes are represented by the dashed lines which are intersecting
#+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-04 17:38:22 +02:00
16 flexible joints have been ordered (shown in Figure ref:fig:test_joints_received) such some selection can be made for the 12 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-04 17:38:22 +02:00
In this document, the received flexible joints are characterize to make sure they are fulfilling the requirements and such that they can well be modelled.
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).
Then, a test bench is developed to measure the bending stiffness of the flexible joints.
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.
Finally, the test bench is manufacturer and used to measure the bending stiffnesses of all the flexible joints.
Results are shown in Section ref:sec:test_joints_bending_stiffness_meas
2024-03-25 10:01:56 +01:00
#+name: tab:test_joints_section_matlab_code
#+caption: Report sections and corresponding Matlab files
#+attr_latex: :environment tabularx :width 0.6\linewidth :align lX
#+attr_latex: :center t :booktabs t
2024-04-04 17:38:22 +02:00
| *Sections* | *Matlab File* |
|----------------------------------------------------+--------------------------------------|
| Section ref:sec:test_joints_flex_dim_meas | =test_joints_1_dim_meas.m= |
| Section ref:sec:test_joints_test_bench_desc | =test_joints_2_bench_dimensioning.m= |
| Section ref:sec:test_joints_bending_stiffness_meas | =test_joints_3_bending_stiff_meas.m= |
2024-03-19 17:36:39 +01:00
2024-04-04 17:38:22 +02:00
* Flexible Joints Model :noexport:
<<sec:test_joints_conf_flexible_joint>>
2024-03-19 17:36:39 +01:00
2024-04-04 17:38:22 +02:00
The model of the flexible joint is composed of 3 solid bodies as shown in Figure [[fig:simscape_model_flexible_joint]] which are connected by joints representing the flexibility of the joint.
2024-03-19 17:36:39 +01:00
2024-04-04 17:38:22 +02:00
We can represent:
- the bending flexibility $k_{R_x}$, $k_{R_y}$
- the torsional flexibility $k_{R_z}$
- the axial flexibility $k_z$
2024-03-19 17:36:39 +01:00
2024-04-04 17:38:22 +02:00
The configurations and the represented flexibilities are summarized in Table [[tab:flex_type_conf]].
2024-03-19 17:36:39 +01:00
2024-04-04 17:38:22 +02:00
#+name: tab:flex_type_conf
#+caption: Flexible joint's configuration and associated represented flexibility
#+attr_latex: :environment tabularx :width 0.6\linewidth :align lXXX
#+attr_latex: :center t :booktabs t :float t
| =flex_type= | Bending | Torsional | Axial |
|-------------+---------+-----------+-------|
| =2dof= | x | | |
| =3dof= | x | x | |
| =4dof= | x | x | x |
2024-03-19 17:36:39 +01:00
2024-04-04 17:38:22 +02:00
Of course, adding more DoF for the flexible joint will induce an addition of many states for the nano-hexapod simscape model.
2024-03-19 17:36:39 +01:00
2024-04-04 17:38:22 +02:00
#+name: fig:simscape_model_flexible_joint
#+caption: 3D view of the Sismcape model for the Flexible joint (4DoF configuration)
#+attr_latex: :width 0.8\linewidth
[[file:figs/simscape_model_flexible_joint.png]]
2024-03-19 17:36:39 +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-04 17:38:22 +02:00
The dimensions of the flexible part in the Y-Z plane will contribute to the X-bending stiffness.
Similarly, the dimensions of the flexible part in the X-Z plane will contribute to the Y-bending stiffness.
2024-03-19 17:36:39 +01:00
2024-04-04 17:38:22 +02:00
The setup to measure the dimension of the "X" flexible beam is shown in Figure ref:fig:test_joints_profilometer_setup.
2024-03-19 17:36:39 +01:00
2024-04-04 17:38:22 +02:00
What we typically observe is shown in Figure ref:fig:test_joints_profilometer_image.
It is then possible to estimate to dimension of the flexible beam with an accuracy of $\approx 5\,\mu m$,
#+name: fig:test_joints_profilometer
#+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_image}) and a image is obtained with which the gap can be estimated (\subref{fig:test_joints_profilometer_setup})
#+attr_latex: :options [htbp]
#+begin_figure
#+attr_latex: :caption \subcaption{\label{fig:test_joints_profilometer_image}Flexible joint fixed on the profilometer}
#+attr_latex: :options {0.49\textwidth}
#+begin_subfigure
#+attr_latex: :width 0.95\linewidth
[[file:figs/test_joints_profilometer_image.jpg]]
#+end_subfigure
#+attr_latex: :caption \subcaption{\label{fig:test_joints_profilometer_setup}Obtain image to estimate the gap}
#+attr_latex: :options {0.49\textwidth}
#+begin_subfigure
#+attr_latex: :width 0.95\linewidth
[[file:figs/test_joints_profilometer_setup.png]]
#+end_subfigure
#+end_figure
** Measurement Results
The specified flexible beam thickness (gap) is $250\,\mu m$.
Four gaps are measured for each flexible joints (2 in the $x$ direction and 2 in the $y$ direction).
The "beam thickness" is then estimated to be the mean between the gaps measured on opposite sides.
An histogram of the measured beam thicknesses is shown in Figure ref:fig:test_joints_size_hist.
The measured thickness is less thant the specified value of $250\,\mu m$, but this optical method may not be very accurate as the estimated gap can depend on the lighting of the part and of its proper alignment.
However, what is more important than the true value of the thickness is the consistency between all the 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;
histogram([(meas_flex(:,1)+meas_flex(:,2))/2,(meas_flex(:,3)+meas_flex(:,4))/2], 7)
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-04 17:38:22 +02:00
#+caption: Histogram for the (16x2) measured beams' thickness
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-04 17:38:22 +02:00
Using this profilometer allowed to detect flexible joints with manufacturing defects such as non-symmetrical shape (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).
#+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-04 17:38:22 +02:00
* Development of the 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}$.
Then, the bending stiffness can be computed from equation eqref:eq:test_joints_bending_stiffness.
\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-04 17:38:22 +02:00
2024-04-05 16:24:17 +02:00
In order 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 the certain height $h$ with respect to the rotation point.
In that 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 far enough from the rotation axis such that the resulting bending motion is much larger than the displacement due to shear.
Such effect is 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-05 16:24:17 +02:00
Similarly, instead of directly measuring the bending motion $\theta_y$ of the flexible joint, its linear motion $d_x$ at a certain height $h$ from the rotation points is measured.
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.
The deflection of the joint $d_x$ is measured by 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
#+caption: Workind 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$
[[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
2024-03-19 17:36:39 +01:00
2024-04-05 16:24:17 +02:00
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-05 16:24:17 +02:00
Therefore, the force that has to be applied to test the full range of the flexible joint is given by equation eqref:eq:test_joints_max_force.
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.
In order 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$.
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-05 16:24:17 +02:00
** Developed test bench
<<ssec:test_joints_test_bench>>
2024-03-19 17:36:39 +01:00
2024-04-05 16:24:17 +02:00
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.
2024-03-19 17:36:39 +01:00
2024-04-05 16:24:17 +02:00
The force is applied using a load cell[fn:2] such that the applied force to the flexible joint's tip is directly measured.
In order 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.
This way, 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.
To translate the load cell at a constant height, it is fixed to a translation stage[fn:3] which is moved by hand.
2024-03-19 17:36:39 +01:00
2024-04-05 16:24:17 +02:00
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.
To do so, an encoder[fn:4] is used that measures the motion of a ruler.
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).
Indirectly measuring the deflection of the flexible joint induces some errors due to the limited stiffness between the tip of the force sensor and the ruler.
Such error will be estimated in Section ref:ssec:test_joints_error_budget.
2024-03-19 17:36:39 +01:00
2024-04-05 16:24:17 +02:00
The flexible joint can be rotated by 90 degrees in order to measure the bending stiffness in the two directions.
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.
2024-03-19 17:36:39 +01:00
2024-04-04 17:38:22 +02:00
#+name: fig:test_joints_bench
2024-04-05 16:24:17 +02:00
#+caption: CAD view of the test bench developped 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-04 17:38:22 +02:00
#+attr_latex: :options [htbp]
#+begin_figure
2024-04-05 16:24:17 +02:00
#+attr_latex: :caption \subcaption{\label{fig:test_joints_bench_overview} Schematic of the test bench to measure the bending stiffness of the flexible joints}
2024-04-04 17:38:22 +02:00
#+attr_latex: :options {0.78\textwidth}
#+begin_subfigure
2024-04-05 16:24:17 +02:00
#+attr_latex: :height 6cm
2024-04-04 17:38:22 +02:00
[[file:figs/test_joints_bench_overview.png]]
#+end_subfigure
2024-04-05 16:24:17 +02:00
#+attr_latex: :caption \subcaption{\label{fig:test_joints_bench_side} Zoom}
2024-04-04 17:38:22 +02:00
#+attr_latex: :options {0.21\textwidth}
#+begin_subfigure
2024-04-05 16:24:17 +02:00
#+attr_latex: :height 6cm
2024-03-25 10:01:56 +01:00
[[file:figs/test_joints_bench_side.png]]
2024-04-04 17:38:22 +02:00
#+end_subfigure
#+end_figure
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-05 16:24:17 +02:00
In order to estimate the accuracy of the measured bending stiffness that can be obtained using this measurement bench, an error budget is performed.
2024-03-19 17:36:39 +01:00
2024-04-05 16:24:17 +02:00
Based on equation eqref:eq:test_joints_stiff_displ_force, several errors can impact the accuracy of the measured bending stiffness:
- Errors in the measured torque $M_x, M_y$: this is mainly due to inaccuracies of 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 from inaccuracy of the height estimation $h$
Let's first estimate the displacement induced only by the bending stiffness.
\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
2024-04-05 16:24:17 +02:00
# From equation eqref:eq:test_joints_dbx, we can compute the bending stiffness:
# \begin{equation}
# k_{R_y} = \frac{F_x \cdot h}{\tan^{-1}\left( \frac{D_b}{h} \right)}
# \end{equation}
2024-03-19 17:36:39 +01:00
2024-04-05 16:24:17 +02:00
# For small displacement, we have
# \begin{equation}
# \boxed{k_{R_y} \approx h^2 \frac{F_x}{d_x}}
# \end{equation}
# And therefore, to precisely measure $k_{R_y}$, we need to:
# - precisely measure the motion $d_x$
# - precisely measure the applied force $F_x$
# - precisely now the height of the force application point $h$
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-05 16:24:17 +02:00
The measured displacement $d_x$ is affected by the 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
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
As explained in the previous section, because the measurement of the flexible joint deflection is indirectly made 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-05 16:24:17 +02:00
Let's 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
The maximum error of the measured displacement due the encoder non-linearity is $40\,nm$.
As the measured displacement is foreseen to be $0.5\,mm$, the error $\epsilon_d$ due to the encoder non linearity is very small $\epsilon_d < 0.01\,\%$.
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.
The most important source of error comes from 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 enough for a first estimation of the bending stiffness of the flexible joints.
#+name: tab:test_joints_error_budget
#+caption: Summary of the error budget for the estimation of the bending stiffness
#+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-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>>
** Introduction
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-05 16:24:17 +02:00
A closer view on 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
#+caption: Caption with reference to sub figure (\subref{fig:fig_label_a})
#+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-03-19 17:36:39 +01:00
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).
The contact between the two load cells is well defined as one has a spherical interface while 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.
The gain mismatch between the two load cells is approximately $4\,\%$ which is higher than what was specified in the data-sheets.
However, the estimated non-linearity is bellow $1\,\%$ for forces between $0.5\,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
F = F( t > 1.55 & t < 2.4);
Fc = Fc(t > 1.55 & t < 2.4);
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
F_non_linearity = 100*(F - (Fc*fit_F(1) + fit_F(2)))./F; % 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;
hold on;
2024-04-05 17:53:53 +02:00
plot(Fc, F, 'k-', 'DisplayName', 'Raw Data');
2024-03-19 17:36:39 +01:00
plot(Fc([1,end]), Fc([1,end])*fit_F(1) + fit_F(2), '--', 'DisplayName', 'Line Fit');
hold off;
xlabel('XFL212R [N]'); ylabel('FC2231 [N]');
2024-04-05 17:53:53 +02:00
xlim([0.5,5.5]); ylim([0.5,5.5]);
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 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
#+caption: Caption with reference to sub figure (\subref{fig:test_joints_force_sensor_calib_picture}), (\subref{fig:test_joints_force_sensor_calib_fit})
2024-04-05 16:24:17 +02:00
#+attr_latex: :options [htbp]
#+begin_figure
2024-04-05 17:53:53 +02:00
#+attr_latex: :caption \subcaption{\label{fig:test_joints_force_sensor_calib_picture}Zoom on the two force sensors 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
[[file:figs/test_joints_force_sensor_calib_picture.jpg]]
2024-04-05 16:24:17 +02:00
#+end_subfigure
2024-04-05 17:53:53 +02:00
#+attr_latex: :caption \subcaption{\label{fig:test_joints_force_sensor_calib_fit}Measured two force and linear fit}
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.
To do so, a stiff element (much stiffer than the estimated $k_F \approx 1\,N/\mu m$) is fixed 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 again this stiff element while the force and the encoder displacement are measured.
Measured displacement as a function of the 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.75\,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-03-19 17:36:39 +01:00
fit_k = polyfit(F, d, 1);
#+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
#+caption: Estimation of the load cell stiffness. Measurement setup is shown in (\subref{fig:test_joints_meas_force_sensor_stiffness_picture}). Measurement results is shown in (\subref{fig:test_joints_meas_force_sensor_stiffness_fit}).
#+attr_latex: :options [htbp]
#+begin_figure
#+attr_latex: :caption \subcaption{\label{fig:test_joints_meas_force_sensor_stiffness_picture}Picture of the test}
#+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-05 16:24:17 +02:00
The actual stiffness measurement in now performed 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 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-05 17:53:53 +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, finally the flexible joint comes in contact with the mechanical stops.
2024-03-19 17:36:39 +01:00
2024-04-05 17:53:53 +02:00
The angular motion $\theta_{y}$ computed from the displacement $d_x$ is displacement as function of the measured torque $T_{y}$ in displayed in Figure ref:fig:test_joints_meas_F_d_lin_fit.
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-05 16:24:17 +02:00
%% 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');
%% Zero the force
F = F - mean(F(t > 0.1 & t < 0.3));
%% Start measurement at t = 0.2 s
d = d(t > 0.2);
F = F(t > 0.2);
t = t(t > 0.2); t = t - t(1);
2024-04-05 16:24:17 +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-05 16:24:17 +02:00
%% Reset the measured angular stroke such that it is equal at zero when the load cell touches the flexible joint
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');
% Reset the measured diplacement at that point
2024-04-05 16:24:17 +02:00
% thetay = thetay - thetay(i_l_start);
%% Determine the linear region and region when touching the mechanical stop
% Find then the maximum torque is applied
[~, i_s_stop] = max(Ty);
2024-03-19 17:36:39 +01:00
% Linear region stops ~ when 90% of the stroke is reached
2024-04-05 16:24:17 +02:00
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
%% Define variables for the two regions
2024-04-05 16:24:17 +02:00
% Linear Region
Ty_l = Ty(i_l_start:i_l_stop);
thetay_l = thetay(i_l_start:i_l_stop);
2024-03-19 17:36:39 +01:00
2024-04-05 16:24:17 +02:00
% "Mechanical stop" Region
Ty_s = Ty(i_s_start:i_s_stop);
thetay_s = thetay(i_s_start:i_s_stop);
2024-03-19 17:36:39 +01:00
%% Fit the best straight line for the two regions
2024-04-05 16:24:17 +02:00
fit_l = polyfit(Ty_l, thetay_l, 1);
fit_s = polyfit(Ty_s, thetay_s, 1);
2024-03-19 17:36:39 +01:00
2024-04-05 16:24:17 +02:00
%% 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-05 16:24:17 +02:00
%% Estimation of the bending stiffness
kRy_l = 1/fit_l(1); % Bending Stiffness [Nm/rad]
kRy_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]
Ty_at_theta_max = (fit_s(2) - fit_l(2))/(fit_l(1) - fit_s(1));
#+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-05 16:24:17 +02:00
ylabel('Force $F_x$ [N]');
ylim([-4, 6])
ylimr = get(gca,'Ylim');
yyaxis right
plot(t, 1e3*d);
xlabel('Time [s]');
ylabel('Displacement $d_x$ [mm]');
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
Ty_l_fit = [0, Ty_at_theta_max];
Ty_s_fit = [Ty_at_theta_max, Ty(i_s_stop)];
2024-03-19 17:36:39 +01:00
2024-04-05 16:24:17 +02:00
figure;
hold on;
plot(Ty(1:i_s_stop), 1e3*thetay(1:i_s_stop), '-k', 'DisplayName', 'Raw data')
plot(Ty_l_fit, 1e3*(Ty_l_fit*fit_l(1) + fit_l(2)), '--', 'DisplayName', sprintf('$k_{R_y} = %.1f$ Nm/rad', kRy_l))
plot(Ty_s_fit, 1e3*(Ty_s_fit*fit_s(1) + fit_s(2)), '--', 'DisplayName', sprintf('$k_{R_y,stop} = %.0f$ Nm/rad', kRy_s))
plot([0, Ty_at_theta_max], [1e3*theta_max, 1e3*theta_max], 'k--', 'HandleVisibility', 'off')
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))];
text(0.052, 0.4*1e3*fit_l(1)*fit_s(2)/(fit_l(1) - fit_s(1)), sprintf('$\\theta_{y,\\max} = %.1f$ mrad', 1e3*theta_max), 'horizontalalignment', 'left');
hold off;
xlabel('Torque $T_y$ [Nm]');
ylabel('Angle $\theta_y$ [mrad]');
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-05 17:53:53 +02:00
#+caption: Results obtained on the first flexible joint. Measured force and displacement are shown in (\subref{fig:test_joints_meas_bend_time}). The estimated angular displacement $\theta_y$ as a function of the estimated applied torque $T_{y}$ is shown in (\subref{fig:test_joints_meas_F_d_lin_fit}). The bending stiffness $k_{R_y}$ 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-05 17:53:53 +02:00
** TODO Comparison of the measured Stiffnesses
2024-03-19 17:36:39 +01:00
Now, let's estimate the bending stiffness and stroke for all the flexible joints.
#+begin_src matlab :exports none
%% Initialize variables
kRx = zeros(1,16);
kSx = zeros(1,16);
Rmx = zeros(1,16);
for i = 1:16
%% Load the data
load(['meas_stiff_flex_' num2str(i) '_x.mat'], 't', 'F', 'd');
%% Automatic Zero of the force
F = F - mean(F(t > 0.1 & t < 0.3));
%% Start measurement at t = 0.2 s
d = d(t > 0.2);
F = F(t > 0.2);
t = t(t > 0.2); t = t - t(1);
%% Estimate linear region and "stop" region
i_l_start = find(F > 0.3, 1, 'first');
d = d - d(i_l_start);
[~, i_s_stop] = max(F);
i_l_stop = find(d > 0.9*d(i_s_stop), 1, 'first');
i_s_start = find(F > max(F)-1, 1, 'first');
F_l = F(i_l_start:i_l_stop);
d_l = d(i_l_start:i_l_stop);
F_s = F(i_s_start:i_s_stop);
d_s = d(i_s_start:i_s_stop);
%% Straight line fit
fit_l = polyfit(F_l, d_l, 1);
fit_s = polyfit(F_s, d_s, 1);
%% Reset displacement based on fit
d = d - fit_l(2);
fit_s(2) = fit_s(2) - fit_l(2);
fit_l(2) = 0;
%% Estimated Stroke
d_max = fit_l(1)*fit_s(2)/(fit_l(1) - fit_s(1));
%% Save stiffnesses and stroke
kRx(i) = (h)^2/fit_l(1);
kSx(i) = (h)^2/fit_s(1);
Rmx(i) = atan2(d_max,h);
end
#+end_src
#+begin_src matlab :exports none
%% Initialize variables
kRy = zeros(1,16);
kSy = zeros(1,16);
Rmy = zeros(1,16);
for i = 1:16
%% Load the data
load(['meas_stiff_flex_' num2str(i) '_y.mat'], 't', 'F', 'd');
%% Automatic Zero of the force
F = F - mean(F(t > 0.1 & t < 0.3));
%% Start measurement at t = 0.2 s
d = d(t > 0.2);
F = F(t > 0.2);
t = t(t > 0.2); t = t - t(1);
%% Estimate linear region and "stop" region
i_l_start = find(F > 0.3, 1, 'first');
d = d - d(i_l_start);
[~, i_s_stop] = max(F);
i_l_stop = find(d > 0.9*d(i_s_stop), 1, 'first');
i_s_start = find(F > max(F)-1, 1, 'first');
F_l = F(i_l_start:i_l_stop);
d_l = d(i_l_start:i_l_stop);
F_s = F(i_s_start:i_s_stop);
d_s = d(i_s_start:i_s_stop);
%% Straight line fit
fit_l = polyfit(F_l, d_l, 1);
fit_s = polyfit(F_s, d_s, 1);
%% Reset displacement based on fit
d = d - fit_l(2);
fit_s(2) = fit_s(2) - fit_l(2);
fit_l(2) = 0;
%% Estimated Stroke
d_max = fit_l(1)*fit_s(2)/(fit_l(1) - fit_s(1));
%% Save stiffnesses and stroke
kRy(i) = (h)^2/fit_l(1);
kSy(i) = (h)^2/fit_s(1);
Rmy(i) = atan2(d_max,h);
end
#+end_src
2024-03-25 10:01:56 +01:00
The results are summarized in Table ref:tab:test_joints_meas_results_x_dir for the X direction and in Table ref:tab:test_joints_meas_results_y_dir for the Y direction.
2024-03-19 17:36:39 +01:00
#+begin_src matlab :exports results :results value table replace :tangle no :post addhdr(*this*)
data2orgtable([kRx; kSx; 1e3*Rmx]', {'1','2','3','4','5','6','7','8','9','10','11','12','13','14','15','16'}, {'$R_{R_x}$ [Nm/rad]', '$k_{R_x,s}$ [Nm/rad]', '$R_{x,\text{max}}$ [mrad]'}, ' %.1f ');
#+end_src
2024-03-25 10:01:56 +01:00
#+name: tab:test_joints_meas_results_x_dir
2024-03-19 17:36:39 +01:00
#+caption: Measured characteristics of the flexible joints in the X direction
#+attr_latex: :environment tabularx :width 0.6\linewidth :align cccc
#+attr_latex: :center t :booktabs t :float t
#+RESULTS:
| | $R_{R_x}$ [Nm/rad] | $k_{R_x,s}$ [Nm/rad] | $R_{x,\text{max}}$ [mrad] |
|----+--------------------+----------------------+---------------------------|
| 1 | 5.5 | 173.6 | 18.9 |
| 2 | 6.1 | 195.0 | 17.6 |
| 3 | 6.1 | 191.3 | 17.7 |
| 4 | 5.8 | 136.7 | 18.3 |
| 5 | 5.7 | 88.9 | 22.0 |
| 6 | 5.7 | 183.9 | 18.7 |
| 7 | 5.7 | 157.9 | 17.9 |
| 8 | 5.8 | 166.1 | 17.9 |
| 9 | 5.8 | 159.5 | 18.2 |
| 10 | 6.0 | 143.6 | 18.1 |
| 11 | 5.0 | 163.8 | 17.7 |
| 12 | 6.1 | 111.9 | 17.0 |
| 13 | 6.0 | 142.0 | 17.4 |
| 14 | 5.8 | 130.1 | 17.9 |
| 15 | 5.7 | 170.7 | 18.6 |
| 16 | 6.0 | 148.7 | 17.5 |
#+begin_src matlab :exports results :results value table replace :tangle no :post addhdr(*this*)
data2orgtable([kRy; kSy; 1e3*Rmy]', {'1','2','3','4','5','6','7','8','9','10','11','12','13','14','15','16'}, {'$R_{R_y}$ [Nm/rad]', '$k_{R_y,s}$ [Nm/rad]', '$R_{y,\text{may}}$ [mrad]'}, ' %.1f ');
#+end_src
2024-03-25 10:01:56 +01:00
#+name: tab:test_joints_meas_results_y_dir
2024-03-19 17:36:39 +01:00
#+caption: Measured characteristics of the flexible joints in the Y direction
#+attr_latex: :environment tabularx :width 0.6\linewidth :align cccc
#+attr_latex: :center t :booktabs t :float t
#+RESULTS:
| | $R_{R_y}$ [Nm/rad] | $k_{R_y,s}$ [Nm/rad] | $R_{y,\text{may}}$ [mrad] |
|----+--------------------+----------------------+---------------------------|
| 1 | 5.7 | 323.5 | 17.9 |
| 2 | 5.9 | 306.0 | 17.2 |
| 3 | 6.0 | 224.4 | 16.8 |
| 4 | 5.7 | 247.3 | 17.8 |
| 5 | 5.8 | 250.9 | 13.0 |
| 6 | 5.8 | 244.5 | 17.8 |
| 7 | 5.3 | 214.8 | 18.1 |
| 8 | 5.8 | 217.2 | 17.6 |
| 9 | 5.7 | 225.0 | 17.6 |
| 10 | 6.0 | 254.7 | 17.3 |
| 11 | 4.9 | 261.1 | 18.4 |
| 12 | 5.9 | 161.5 | 16.7 |
| 13 | 6.1 | 227.6 | 16.8 |
| 14 | 5.9 | 221.3 | 17.8 |
| 15 | 5.4 | 241.5 | 17.8 |
| 16 | 5.3 | 291.1 | 17.7 |
2024-03-25 10:01:56 +01:00
The dispersion of the measured bending stiffness is shown in Figure ref:fig:test_joints_bend_stiff_hist and of the bending stroke in Figure ref:fig:test_joints_bend_stroke_hist.
2024-03-19 17:36:39 +01:00
#+begin_src matlab :exports none
figure;
hold on;
histogram(kRx, 'DisplayName', '$k_{R_x}$')
histogram(kRy, 'DisplayName', '$k_{R_y}$')
hold off;
xlabel('Bending Stiffness [Nm/rad]')
2024-04-05 16:24:17 +02:00
legend('FontSize', 8);
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_bend_stiff_hist.pdf', 'width', 'wide', 'height', 'normal');
2024-03-19 17:36:39 +01:00
#+end_src
2024-03-25 10:01:56 +01:00
#+name: fig:test_joints_bend_stiff_hist
2024-03-19 17:36:39 +01:00
#+caption: Histogram of the measured bending stiffness
#+RESULTS:
2024-03-25 10:01:56 +01:00
[[file:figs/test_joints_bend_stiff_hist.png]]
2024-03-19 17:36:39 +01:00
#+begin_src matlab :exports none
figure;
hold on;
histogram(1e3*Rmx, 'DisplayName', '$k_{R_x}$')
histogram(1e3*Rmy, 'DisplayName', '$k_{R_y}$')
hold off;
xlabel('Bending Stroke [mrad]')
2024-04-05 16:24:17 +02:00
legend('FontSize', 8);
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_bend_stroke_hist.pdf', 'width', 'wide', 'height', 'normal');
2024-03-19 17:36:39 +01:00
#+end_src
2024-03-25 10:01:56 +01:00
#+name: fig:test_joints_bend_stroke_hist
2024-03-19 17:36:39 +01:00
#+caption: Histogram of the measured bending stroke
#+RESULTS:
2024-03-25 10:01:56 +01:00
[[file:figs/test_joints_bend_stroke_hist.png]]
2024-03-19 17:36:39 +01:00
2024-03-25 10:01:56 +01:00
The relation between the measured beam thickness and the measured bending stiffness is shown in Figure ref:fig:test_joints_thickness_stiffness.
2024-03-19 17:36:39 +01:00
#+begin_src matlab :exports none
load('flex_meas_dim.mat', 'meas_flex');
figure;
hold on;
plot((meas_flex(:,1)+meas_flex(:,2))/2, kRx, 'o', 'DisplayName', '$x$')
plot((meas_flex(:,3)+meas_flex(:,4))/2, kRy, 'o', 'DisplayName', '$y$')
hold off;
xlabel('Flexible Beam Thickness [$\mu m$]');
ylabel('Bending Stiffness [Nm/rad]');
2024-04-05 16:24:17 +02:00
legend('location', 'southeast', 'FontSize', 8);
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_thickness_stiffness.pdf', 'width', 'wide', 'height', 'normal');
2024-03-19 17:36:39 +01:00
#+end_src
2024-03-25 10:01:56 +01:00
#+name: fig:test_joints_thickness_stiffness
2024-03-19 17:36:39 +01:00
#+caption: Measured bending stiffness as a function of the estimated flexible beam thickness
#+RESULTS:
2024-03-25 10:01:56 +01:00
[[file:figs/test_joints_thickness_stiffness.png]]
2024-03-19 17:36:39 +01:00
** Conclusion
2024-04-04 17:38:22 +02:00
:PROPERTIES:
:UNNUMBERED: t
:END:
2024-03-19 17:36:39 +01:00
#+begin_important
The measured bending stiffness and bending stroke of the flexible joints are very close to the estimated one using a Finite Element Model.
The characteristics of all the flexible joints are also quite close to each other.
This should allow us to model them with unique parameters.
#+end_important
2024-03-19 15:18:31 +01:00
* Conclusion
2024-03-25 10:01:56 +01:00
<<sec:test_joints_conclusion>>
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-05 16:24:17 +02:00
[fn:5]XFL212R-50N from TE Connectivity. Measurement range is $50\,N$. Specified accuracy is $1\,\%$ of the full range
[fn:4]Resolute\texttrademark{} encoder with $1\,nm$ resolution and $\pm 40\,nm$ maximum non-linearity
[fn:3]V-408 PIMag\textsuperscript{\textregistered} linear stage is used. Crossed roller are used to guide the motion.
[fn:2]The load cell is FC22 from TE Connectivity. Measurement range is $50\,N$. 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"