2024-03-19 15:18:57 +01:00
#+TITLE : Test Bench - Nano-Hexapod Struts
: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]
2024-10-25 17:22:36 +02:00
#+LATEX_HEADER : \input{preamble.tex}
#+LATEX_HEADER_EXTRA : \input{preamble_extra.tex}
# #+LATEX_HEADER_EXTRA: \bibliography{test-bench-struts.bib}
2024-03-19 15:18:57 +01:00
2024-10-25 17:22:36 +02:00
# #+BIND: org-latex-bib-compiler "biber"
2024-03-19 15:18:57 +01:00
#+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-struts.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)
;; 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:55:31 +01:00
Prefix for figures/section/tables =test_struts=
2024-03-19 17:29:51 +01:00
To integrate:
2024-03-19 17:02:38 +01:00
- [X] [[file:~/Cloud/work-projects/ID31-NASS/matlab/test-bench-strut-mounting/test-bench-strut-mounting.org ][test-bench-strut-mounting ]]
- [X] [[file:~/Cloud/work-projects/ID31-NASS/matlab/test-bench-apa300ml/test-bench-apa300ml.org ][test-bench-apa300ml ]]
- [X] Dynamical measurements (Section 5)
- [X] Simscape model (Section 6)
2024-03-25 16:33:38 +01:00
- [X] Check what are the used Matlab functions
2024-03-25 10:55:31 +01:00
- [X] check [[file:~/Cloud/work-projects/ID31-NASS/matlab/test-bench-apa300ml/test-bench-apa300ml.org::*Compare with the FEM/Simscape Model ][Compare with the FEM/Simscape Model ]]
*no, it is only for the APA and not the strut*
- [X] Check [[file:~/Cloud/work-projects/ID31-NASS/matlab/test-bench-apa300ml/test-bench-apa300ml.org::*New Measurements - IFF Root Locus ][New Measurements - IFF Root Locus ]]
*no, it is only for the APA and not the strut*
2024-10-25 17:22:36 +02:00
** TODO [#B] Reduce figure sizes
2024-10-25 14:57:22 +02:00
** DONE [#B] Rework mounting procedure section
CLOSED: [2024-04-02 Tue 17:12]
2024-03-27 14:35:55 +01:00
2024-10-25 14:57:22 +02:00
- [X] Use smaller images, maybe one subfigure for all the steps
- [ ] Add some notes to the figure ref:fig:test_struts_mounting_bench_first_concept
- [ ] Explain clearly the mounting goals (coaxiality, etc.)
- [ ] Speak about the "pin" that is used to align the APA with respect to the flexible joints (initially not used)
2024-03-27 14:35:55 +01:00
2024-10-25 14:57:22 +02:00
** DONE [#C] Add schematic of the test bench with signals
CLOSED: [2024-04-02 Tue 14:25]
2024-03-27 14:35:55 +01:00
- $u$
- $d_e$
- $d_a$
2024-03-25 16:39:31 +01:00
** DONE [#B] Rework flexible mode measurements
CLOSED: [2024-03-25 Mon 16:35]
2024-03-25 16:33:38 +01:00
2024-03-25 16:39:31 +01:00
- [X] Use smaller images, one subfigure for all measurements
2024-03-25 16:33:38 +01:00
** DONE [#B] Make the simscape model work
CLOSED: [2024-03-25 Mon 15:09]
2024-03-19 15:18:57 +01:00
2024-10-25 17:22:36 +02:00
** Effect of the flexible joint
<<ssec:test_struts_effect_joint_stiffness >>
As the struts are composed of one APA and two flexible joints, it is expected that the flexible joint characteristics will change the dynamic behavior of the struts.
Using the Simscape model, the effect of the flexible joint's characteristics on the dynamics as measured on the test bench are studied.
The studied dynamics is between $u$ and the encoder displacement $d_e$.
#+begin_src matlab
% APA Initialization
n_hexapod.actuator = initializeAPA('type', 'flexible', 'd_align_bot', [0.1e-3; 0.5e-3; 0], 'd_align_top', [0.1e-3; 0.5e-3; 0]);
%% Study the effect of the bending stiffness of the Flexible joints
% Tested bending stiffnesses [Nm/rad]
kRs = [3, 4, 5, 6, 7];
% Idenfity the transfer function from actuator to encoder for all bending stiffnesses
Gs_kRs = {zeros(length(kRs), 1)};
for i = 1:length(kRs)
n_hexapod.flex_bot = initializeBotFlexibleJoint(...
'type', '4dof', ...
'kRx', kRs(i), ...
'kRy', kRs(i));
n_hexapod.flex_top = initializeTopFlexibleJoint(...
'type', '4dof', ...
'kRx', kRs(i), ...
'kRy', kRs(i));
G = exp(-s*1e-4)*linearize(mdl, io, 0.0, opts);
G.InputName = {'u'};
G.OutputName = {'Vs', 'de', 'da'};
Gs_kRs(i) = {G};
end
%% Study the effect of the axial stiffness of the Flexible joints
% Tested axial stiffnesses [N/m]
kzs = [5e7 7.5e7 1e8 2.5e8];
% Idenfity the transfer function from actuator to encoder for all bending stiffnesses
Gs_kzs = {zeros(length(kzs), 1)};
for i = 1:length(kzs)
n_hexapod.flex_bot = initializeBotFlexibleJoint(...
'type', '4dof', ...
'kz', kzs(i));
n_hexapod.flex_top = initializeTopFlexibleJoint(...
'type', '4dof', ...
'kz', kzs(i));
G = exp(-s*1e-4)*linearize(mdl, io, 0.0, opts);
G.InputName = {'u'};
G.OutputName = {'Vs', 'de', 'da'};
Gs_kzs(i) = {G};
end
#+end_src
#+begin_src matlab :exports none
%% Plot the obtained transfer functions for all the bending stiffnesses
figure;
tiledlayout(3, 1, 'TileSpacing', 'Compact', 'Padding', 'None');
ax1 = nexttile([2,1]);
hold on;
for i = 1:length(kRs)
plot(freqs, abs(squeeze(freqresp(Gs_kRs{i}('de', 'u'), freqs, 'Hz'))), ...
'DisplayName', sprintf('$k_R = %.0f$ [Nm/rad]', kRs(i)));
end
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'log');
ylabel('Amplitude $d_e/u$ [m/V]'); set(gca, 'XTickLabel',[]);
hold off;
ylim([1e-8, 1e-3]);
legend('location', 'southwest', 'FontSize', 8, 'NumColumns', 1);
ax2 = nexttile;
hold on;
for i = 1:length(kRs)
plot(freqs, 180/pi*angle(squeeze(freqresp(Gs_kRs{i}('de', 'u'), freqs, 'Hz'))));
end
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'lin');
xlabel('Frequency [Hz]'); ylabel('Phase [deg]');
hold off;
yticks(-360:90:360); ylim([-180, 180]);
linkaxes([ax1,ax2],'x');
xlim([20, 2e3]);
#+end_src
#+begin_src matlab :tangle no :exports results :results file none
exportFig('figs/test_struts_effect_flex_bending_stiffness_enc.pdf', 'width', 'half', 'height', 'tall');
#+end_src
#+begin_src matlab :exports none
%% Plot the obtained transfer functions for all the axial stiffnesses
figure;
tiledlayout(3, 1, 'TileSpacing', 'Compact', 'Padding', 'None');
ax1 = nexttile([2,1]);
hold on;
for i = 1:length(kzs)
plot(freqs, abs(squeeze(freqresp(Gs_kzs{i}('de', 'u'), freqs, 'Hz'))), ...
'DisplayName', sprintf('$k_z = %.1e$ [N/m]', kzs(i)));
end
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'log');
ylabel('Amplitude $d_e/u$ [m/V]'); set(gca, 'XTickLabel',[]);
hold off;
ylim([1e-8, 1e-3]);
legend('location', 'southwest', 'FontSize', 8, 'NumColumns', 1);
ax2 = nexttile;
hold on;
for i = 1:length(kzs)
plot(freqs, 180/pi*angle(squeeze(freqresp(Gs_kzs{i}('de', 'u'), freqs, 'Hz'))));
end
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'lin');
xlabel('Frequency [Hz]'); ylabel('Phase [deg]');
hold off;
yticks(-360:90:360); ylim([-180, 180]);
linkaxes([ax1,ax2],'x');
xlim([20, 2e3]);
#+end_src
#+begin_src matlab :tangle no :exports results :results file none
exportFig('figs/test_struts_effect_flex_axial_stiffness_enc.pdf', 'width', 'half', 'height', 'tall');
#+end_src
#+name : fig:test_struts_effect_flex_stiffness_enc
#+caption : Effect of the flexible joints' bending (\subref{fig:test_struts_effect_flex_bending_stiffness_enc}) and axial (\subref{fig:test_struts_effect_flex_axial_stiffness_enc}) stiffnesses on the strut dynamics from $u$ to $d_e$
#+attr_latex : :options [htbp]
#+begin_figure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_effect_flex_bending_stiffness_enc}Effect of bending stiffness}
#+attr_latex : :options {0.49\textwidth}
#+begin_subfigure
#+attr_latex : :width 0.95\linewidth
[[file:figs/test_struts_effect_flex_bending_stiffness_enc.png ]]
#+end_subfigure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_effect_flex_axial_stiffness_enc}Effect of axial stiffness}
#+attr_latex : :options {0.49\textwidth}
#+begin_subfigure
#+attr_latex : :width 0.95\linewidth
[[file:figs/test_struts_effect_flex_axial_stiffness_enc.png ]]
#+end_subfigure
#+end_figure
The bending stiffness of the joints has little impact on the transfer function from $u$ to $d_e$.
The axial stiffness of the flexible joint has a large impact on the frequency of the complex conjugate zero.
Using the measured FRF on the test-bench, if is therefore possible to estimate the axial stiffness of the flexible joints from the location of the zero.
This method gives nice match between the measured FRF and the one extracted from the simscape model, however it could give not so accurate values of the joint's axial stiffness as other factors are also influencing the location of the zero.
Using this method, an axial stiffness of $70 N/\mu m$ is found to give good results (and is reasonable based on the finite element models).
* Glossary and Acronyms - Tables :ignore:
#+name : acronyms
| key | abbreviation | full form |
|------+--------------+----------------------------------|
| nass | NASS | Nano Active Stabilization System |
| fem | FEM | Finite Element Model |
| apa | APA | Amplified Piezoelectric Actuator |
| dac | DAC | Digital to Analog Converter |
2024-03-19 15:18:57 +01:00
* Introduction :ignore:
2024-10-25 17:22:36 +02:00
The Nano-Hexapod struts (shown in Figure ref:fig:test_struts_picture_strut) are composed of two flexible joints that are fixed at the two ends of the strut, one acrfull:apa[fn: 5 ] and one optical encoder[fn: 6 ] .
2024-03-19 17:02:38 +01:00
2024-03-25 10:55:31 +01:00
#+name : fig:test_struts_picture_strut
2024-03-19 17:02:38 +01:00
#+caption : One strut including two flexible joints, an amplified piezoelectric actuator and an encoder
#+attr_latex : :width 0.8\linewidth
2024-03-25 10:55:31 +01:00
[[file:figs/test_struts_picture_strut.jpg ]]
2024-03-19 17:02:38 +01:00
2024-10-25 14:57:22 +02:00
After the strut elements have been individually characterized (see previous sections), the struts are assembled.
The mounting procedure of the struts is explained in Section ref:sec:test_struts_mounting.
2024-10-25 17:22:36 +02:00
A mounting bench was used to ensure coaxiality between the two ends of the struts.
In this way, no angular stroke is lost when mounted to the nano-hexapod.
2024-03-19 17:02:38 +01:00
2024-10-25 17:22:36 +02:00
The flexible modes of the struts were then experimentally measured and compared with a finite element model (Section ref:sec:test_struts_flexible_modes).
2024-03-19 17:02:38 +01:00
2024-10-25 17:22:36 +02:00
Dynamic measurements of the strut are performed with the same test bench used to characterize the APA300ML dynamics (Section ref:sec:test_struts_dynamical_meas).
It was found that the dynamics from the acrshort:dac voltage to the displacement measured by the encoder is complex due to the flexible modes of the struts (Section ref:sec:test_struts_flexible_modes).
2024-10-25 14:57:22 +02:00
2024-10-25 17:22:36 +02:00
The strut models were then compared with the measured dynamics (Section ref:sec:test_struts_simscape).
The model dynamics from the acrshort:dac voltage to the axial motion of the strut (measured by an interferometer) and to the force sensor voltage well match the experimental results.
However, this is not the case for the dynamics from acrshort:dac voltage to the encoder displacement.
It is found that the complex dynamics is due to a misalignment between the flexible joints and the acrshort:apa.
2024-10-25 14:57:22 +02:00
# #+name: tab:test_struts_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
# | *Sections* | *Matlab File* |
# |--------------------------------------------+----------------------------------|
# | Section ref:sec:test_struts_flexible_modes | =test_struts_1_flexible_modes.m= |
# | Section ref:sec:test_struts_dynamical_meas | =test_struts_2_dynamical_meas.m= |
# | Section ref:sec:test_struts_simscape | =test_struts_3_simscape_model’ m= |
2024-03-19 15:18:57 +01:00
2024-03-19 17:02:38 +01:00
* Mounting Procedure
2024-03-25 10:55:31 +01:00
<<sec:test_struts_mounting >>
2024-03-19 17:02:38 +01:00
** Introduction :ignore:
2024-10-25 17:22:36 +02:00
A mounting bench was developed to ensure:
2024-10-25 14:57:22 +02:00
- Good coaxial alignment between the interfaces (cylinders) of the flexible joints.
2024-10-25 17:22:36 +02:00
This is important not to loose to much angular stroke during their mounting into the nano-hexapod
2024-10-25 14:57:22 +02:00
- Uniform length across all struts
- Precise alignment of the APA with the two flexible joints
2024-10-25 17:22:36 +02:00
- Reproducible and consistent assembly between all struts
2024-10-25 14:57:22 +02:00
** Mounting Bench
2024-03-19 17:02:38 +01:00
2024-03-25 10:55:31 +01:00
A CAD view of the mounting bench is shown in Figure ref:fig:test_struts_mounting_bench_first_concept.
2024-10-25 17:22:36 +02:00
It consists of a "main frame" (Figure ref:fig:test_struts_mounting_step_0) precisely machined to ensure both correct strut length and strut coaxiality.
The coaxiality is ensured by good flatness (specified at $20\,\mu m$) between surfaces A and B and between surfaces C and D.
Such flatness was checked using a Faro arm[fn: 1 ] (see Figure ref:fig:test_struts_check_dimensions_bench) and was found to comply with the requirements.
The strut length (defined by the distance between the rotation points of the two flexible joints) was ensured by using precisely machines dowel holes.
2024-03-19 17:02:38 +01:00
2024-03-25 18:13:22 +01:00
2024-10-25 14:57:22 +02:00
#+name : fig:test_struts_mounting
#+caption : Strut mounting bench
#+attr_latex : :options [htbp]
#+begin_figure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_mounting_bench_first_concept}CAD view of the mounting bench}
#+attr_latex : :options {0.49\textwidth}
#+begin_subfigure
#+attr_latex : :width \linewidth
2024-03-25 10:55:31 +01:00
[[file:figs/test_struts_mounting_bench_first_concept.png ]]
2024-10-25 14:57:22 +02:00
#+end_subfigure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_mounting_overview}Exploded view}
#+attr_latex : :options {0.49\textwidth}
#+begin_subfigure
#+attr_latex : :width \linewidth
[[file:figs/test_struts_mounting_overview.jpg ]]
#+end_subfigure
#+end_figure
2024-03-19 17:02:38 +01:00
2024-03-25 16:33:38 +01:00
#+name : fig:test_struts_mounting_base_part
2024-10-25 17:22:36 +02:00
#+caption : Main element of the mounting bench for the struts that ensure good coaxiality of the two flexible joints and correct struts length.
2024-03-27 14:35:55 +01:00
#+attr_latex : :options [htbp]
2024-03-25 16:33:38 +01:00
#+begin_figure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_mounting_step_0}Useful features of the main mounting element}
#+attr_latex : :options {0.56\textwidth}
#+begin_subfigure
#+attr_latex : :height 4.5cm
2024-03-25 10:55:31 +01:00
[[file:figs/test_struts_mounting_step_0.jpg ]]
2024-03-25 16:33:38 +01:00
#+end_subfigure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_check_dimensions_bench}Dimensional check}
#+attr_latex : :options {0.43\textwidth}
#+begin_subfigure
#+attr_latex : :height 4.5cm
[[file:figs/test_struts_check_dimensions_bench.jpg ]]
#+end_subfigure
#+end_figure
2024-03-19 17:02:38 +01:00
2024-10-25 17:22:36 +02:00
The flexible joints were not directly fixed to the mounting bench but were fixed to a cylindrical "sleeve" shown in Figures ref:fig:test_struts_cylindrical_mounting_part_top and ref:fig:test_struts_cylindrical_mounting_part_bot.
The goal of these "sleeves" is to avoid mechanical stress that could damage the flexible joints during the mounting process.
2024-10-25 14:57:22 +02:00
These "sleeves" have one dowel groove (that are fitted to the dowel holes shown in Figure ref:fig:test_struts_mounting_step_0) that will determine the length of the mounted strut.
2024-03-19 17:02:38 +01:00
2024-03-25 16:33:38 +01:00
#+name : fig:test_struts_cylindrical_mounting
2024-10-25 14:57:22 +02:00
#+caption : Preparation of the flexible joints by fixing them in their cylindrical "sleeve"
2024-03-27 14:35:55 +01:00
#+attr_latex : :options [htbp]
2024-03-25 16:33:38 +01:00
#+begin_figure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_cylindrical_mounting_part_top}Cylindral Interface (Top)}
#+attr_latex : :options {0.33\textwidth}
#+begin_subfigure
#+attr_latex : :height 4.5cm
[[file:figs/test_struts_cylindrical_mounting_part_top.jpg ]]
#+end_subfigure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_cylindrical_mounting_part_bot}Cylindrlcal Interface (Bottom)}
#+attr_latex : :options {0.33\textwidth}
#+begin_subfigure
#+attr_latex : :height 4.5cm
[[file:figs/test_struts_cylindrical_mounting_part_bot.jpg ]]
#+end_subfigure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_mounting_joints}Mounted flexible joints}
#+attr_latex : :options {0.33\textwidth}
#+begin_subfigure
#+attr_latex : :height 4.5cm
[[file:figs/test_struts_mounting_joints.jpg ]]
#+end_subfigure
#+end_figure
2024-03-19 17:02:38 +01:00
2024-10-25 14:57:22 +02:00
** Mounting Procedure
2024-10-25 17:22:36 +02:00
The "sleeves" were mounted to the main element as shown in Figure ref:fig:test_struts_mounting_step_0.
The left sleeve has a thigh fit such that its orientation is fixed (it is roughly aligned horizontally), while the right sleeve has a loose fit such that it can rotate (it will get the same orientation as the fixed one when tightening the screws).
2024-10-25 14:57:22 +02:00
2024-10-25 17:22:36 +02:00
The cylindrical washers and the APA300ML are stacked on top of the flexible joints, as shown in Figure ref:fig:test_struts_mounting_step_2 and screwed together using a torque screwdriver.
2024-10-25 14:57:22 +02:00
A dowel pin is used to laterally align the APA300ML with the flexible joints (see the dowel slot on the flexible joints in Figure ref:fig:test_struts_mounting_joints).
2024-10-25 17:22:36 +02:00
Two cylindrical washers are used to allow proper mounting even when the two APA interfaces are not parallel.
2024-10-25 14:57:22 +02:00
2024-10-25 17:22:36 +02:00
The encoder and ruler are then fixed to the strut and properly aligned, as shown in Figure ref:fig:test_struts_mounting_step_3.
2024-10-25 14:57:22 +02:00
Finally, the strut can be disassembled from the mounting bench (Figure ref:fig:test_struts_mounting_step_4).
2024-10-25 17:22:36 +02:00
Thanks to this mounting procedure, the coaxiality and length between the two flexible joint's interfaces can be obtained within the desired tolerances.
2024-10-25 14:57:22 +02:00
2024-03-25 16:33:38 +01:00
#+name : fig:test_struts_mounting_steps
#+caption : Steps for mounting the struts.
2024-03-27 14:35:55 +01:00
#+attr_latex : :options [htbp]
2024-03-25 16:33:38 +01:00
#+begin_figure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_mounting_step_1}Step 1}
#+attr_latex : :options {0.5\textwidth}
#+begin_subfigure
2024-03-27 14:35:55 +01:00
#+attr_latex : :width 0.95\linewidth
2024-03-25 16:33:38 +01:00
[[file:figs/test_struts_mounting_step_1.jpg ]]
#+end_subfigure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_mounting_step_2}Step 2}
#+attr_latex : :options {0.5\textwidth}
#+begin_subfigure
2024-03-27 14:35:55 +01:00
#+attr_latex : :width 0.95\linewidth
2024-03-25 10:55:31 +01:00
[[file:figs/test_struts_mounting_step_2.jpg ]]
2024-03-25 16:33:38 +01:00
#+end_subfigure
2024-03-27 14:35:55 +01:00
\bigskip
2024-03-25 16:33:38 +01:00
#+attr_latex : :caption \subcaption{\label{fig:test_struts_mounting_step_3}Step 3}
#+attr_latex : :options {0.5\textwidth}
#+begin_subfigure
2024-03-27 14:35:55 +01:00
#+attr_latex : :width 0.95\linewidth
2024-03-25 10:55:31 +01:00
[[file:figs/test_struts_mounting_step_3.jpg ]]
2024-03-25 16:33:38 +01:00
#+end_subfigure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_mounting_step_4}Step 4}
#+attr_latex : :options {0.5\textwidth}
#+begin_subfigure
2024-03-27 14:35:55 +01:00
#+attr_latex : :width 0.95\linewidth
2024-03-25 10:55:31 +01:00
[[file:figs/test_struts_mounting_step_4.jpg ]]
2024-03-25 16:33:38 +01:00
#+end_subfigure
#+end_figure
2024-03-19 17:02:38 +01:00
2024-03-25 16:33:38 +01:00
* Measurement of flexible modes
2024-03-19 17:02:38 +01:00
:PROPERTIES:
2024-03-25 10:55:31 +01:00
:header-args:matlab+: :tangle matlab/test_struts_1_flexible_modes.m
2024-03-19 17:02:38 +01:00
:END:
2024-03-25 10:55:31 +01:00
<<sec:test_struts_flexible_modes >>
2024-03-19 17:02:38 +01:00
** Introduction
2024-10-25 14:57:22 +02:00
A Finite Element Model[fn: 3 ] of the struts is developed and is used to estimate the flexible modes.
2024-10-25 17:22:36 +02:00
The inertia of the encoder (estimated at $15\,g$) is considered.
The two cylindrical interfaces were fixed, and the first three flexible modes were computed.
The mode shapes are displayed in Figure ref:fig:test_struts_mode_shapes: an "X-bending" mode at 189Hz, a "Y-bending" mode at 285Hz and a "Z-torsion" mode at 400Hz.
2024-03-25 10:55:31 +01:00
#+name : fig:test_struts_mode_shapes
2024-03-25 16:33:38 +01:00
#+caption : Spurious resonances of the struts estimated from a Finite Element Model
2024-03-27 14:35:55 +01:00
#+attr_latex : :options [htbp]
2024-03-25 16:33:38 +01:00
#+begin_figure
2024-03-27 17:03:23 +01:00
#+attr_latex : :caption \subcaption{\label{fig:test_struts_mode_shapes_1}X-bending mode (189Hz)}
2024-03-25 16:33:38 +01:00
#+attr_latex : :options {0.33\textwidth}
#+begin_subfigure
2024-10-25 17:22:36 +02:00
#+attr_latex : :width 0.85\linewidth
2024-03-25 16:33:38 +01:00
[[file:figs/test_struts_mode_shapes_1.png ]]
#+end_subfigure
2024-03-27 17:03:23 +01:00
#+attr_latex : :caption \subcaption{\label{fig:test_struts_mode_shapes_2}Y-bending mode (285Hz)}
2024-03-25 16:33:38 +01:00
#+attr_latex : :options {0.33\textwidth}
#+begin_subfigure
2024-10-25 17:22:36 +02:00
#+attr_latex : :width 0.85\linewidth
2024-03-25 16:33:38 +01:00
[[file:figs/test_struts_mode_shapes_2.png ]]
#+end_subfigure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_mode_shapes_3}Z-torsion mode (400Hz)}
#+attr_latex : :options {0.33\textwidth}
#+begin_subfigure
2024-10-25 17:22:36 +02:00
#+attr_latex : :width 0.85\linewidth
2024-03-25 16:33:38 +01:00
[[file:figs/test_struts_mode_shapes_3.png ]]
#+end_subfigure
#+end_figure
2024-03-25 10:55:31 +01:00
** Matlab Init :noexport:ignore:
2024-03-19 17:02:38 +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:55:31 +01:00
#+begin_src matlab :tangle no :noweb yes
<<m-init-path >>
2024-03-19 17:02:38 +01:00
#+end_src
2024-03-25 10:55:31 +01:00
#+begin_src matlab :eval no :noweb yes
<<m-init-path-tangle >>
2024-03-19 17:02:38 +01:00
#+end_src
2024-03-25 10:55:31 +01:00
#+begin_src matlab :noweb yes
<<m-init-other >>
2024-03-19 17:02:38 +01:00
#+end_src
** Measurement Setup
2024-10-25 17:22:36 +02:00
To experimentally measure these mode shapes, a Laser vibrometer[fn: 7 ] was used.
It measures the difference of motion between two beam path (red points in Figure ref:fig:test_struts_meas_modes).
The strut is then excited by an instrumented hammer, and the transfer function from the hammer to the measured rotation is computed.
2024-03-19 17:02:38 +01:00
2024-10-25 17:22:36 +02:00
The setup used to measure the "X-bending" mode is shown in Figure ref:fig:test_struts_meas_x_bending.
The "Y-bending" mode is measured as shown in Figure ref:fig:test_struts_meas_y_bending and the "Z-torsion" measurement setup is shown in Figure ref:fig:test_struts_meas_z_torsion.
These tests were performed with and without the encoder being fixed to the strut.
2024-03-19 17:02:38 +01:00
2024-03-25 16:33:38 +01:00
#+name : fig:test_struts_meas_modes
#+caption : Measurement of strut flexible modes
2024-03-27 14:35:55 +01:00
#+attr_latex : :options [htbp]
2024-03-25 16:33:38 +01:00
#+begin_figure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_meas_x_bending}X-bending mode}
#+attr_latex : :options {0.33\textwidth}
#+begin_subfigure
2024-10-25 17:22:36 +02:00
#+attr_latex : :width 0.85\linewidth
2024-03-25 16:33:38 +01:00
[[file:figs/test_struts_meas_x_bending.jpg ]]
#+end_subfigure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_meas_y_bending}Y-bending mode}
#+attr_latex : :options {0.33\textwidth}
#+begin_subfigure
2024-10-25 17:22:36 +02:00
#+attr_latex : :width 0.85\linewidth
2024-03-25 16:33:38 +01:00
[[file:figs/test_struts_meas_y_bending.jpg ]]
#+end_subfigure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_meas_z_torsion}Z-torsion mode}
#+attr_latex : :options {0.33\textwidth}
#+begin_subfigure
2024-10-25 17:22:36 +02:00
#+attr_latex : :width 0.85\linewidth
2024-03-25 16:33:38 +01:00
[[file:figs/test_struts_meas_z_torsion.jpg ]]
#+end_subfigure
#+end_figure
2024-03-19 17:02:38 +01:00
2024-03-27 14:35:55 +01:00
** Measured results
2024-10-25 14:57:22 +02:00
The obtained frequency response functions for the three configurations (X-bending, Y-bending and Z-torsion) are shown in Figure ref:fig:test_struts_spur_res_frf_no_enc when the encoder is not fixed to the strut and in Figure ref:fig:test_struts_spur_res_frf_enc when the encoder is fixed to the strut.
2024-03-19 17:02:38 +01:00
#+begin_src matlab :exports none
%% Load Data (without the encoder)
bending_X = load('strut_spur_res_x_bending.mat');
bending_Y = load('strut_spur_res_y_bending.mat');
torsion_Z = load('strut_spur_res_z_torsion.mat');
2024-03-27 14:35:55 +01:00
%% Load Data (with the encoder)
bending_X_enc = load('strut_spur_res_x_bending_enc.mat');
bending_Y_enc = load('strut_spur_res_y_bending_enc.mat');
torsion_Z_enc = load('strut_spur_res_z_torsion_enc.mat');
2024-03-19 17:02:38 +01:00
#+end_src
#+begin_src matlab :exports none
%% Plot the responses (without the encoder)
figure;
hold on;
plot(bending_X.FFT1_AvSpc_1_RMS_X_Val, bending_X.FFT1_AvSpc_1_RMS_Y_Val, ...
'DisplayName', 'X-Bending')
plot(bending_Y.FFT1_AvSpc_1_RMS_X_Val, bending_Y.FFT1_AvSpc_1_RMS_Y_Val, ...
'DisplayName', 'Y-Bending')
plot(torsion_Z.FFT1_AvSpc_1_RMS_X_Val, torsion_Z.FFT1_AvSpc_1_RMS_Y_Val, ...
'DisplayName', 'Z-torsion');
text(226, 1.5e-4,{'226Hz'}, 'VerticalAlignment', 'bottom','HorizontalAlignment','center')
2024-03-27 14:35:55 +01:00
text(310, 6e-5,{'337Hz'}, 'VerticalAlignment', 'bottom','HorizontalAlignment','center')
2024-03-19 17:02:38 +01:00
text(398, 1.5e-4,{'398Hz'}, 'VerticalAlignment', 'bottom','HorizontalAlignment','center')
hold off;
set(gca, 'Xscale', 'log'); set(gca, 'Yscale', 'log');
xlabel('Frequency [Hz]'); ylabel('Amplitude');
xlim([50, 8e2]); ylim([5e-7, 3e-4])
2024-10-25 14:57:22 +02:00
xticks([50, 100, 500]);
2024-03-27 14:35:55 +01:00
legend('location', 'southwest', 'FontSize', 8, 'NumColumns', 1);
2024-03-19 17:02:38 +01:00
#+end_src
2024-03-27 14:35:55 +01:00
#+begin_src matlab :tangle no :exports results :results file none
exportFig('figs/test_struts_spur_res_frf_no_enc.pdf', 'width', 'half', 'height', 'normal');
2024-03-19 17:02:38 +01:00
#+end_src
#+begin_src matlab :exports none
2024-03-27 14:35:55 +01:00
%% Plot the responses (with the encoder)
2024-03-19 17:02:38 +01:00
figure;
hold on;
plot(bending_X_enc.FFT1_AvSpc_1_RMS_X_Val, bending_X_enc.FFT1_AvSpc_1_RMS_Y_Val, ...
'DisplayName', 'X-Bending')
plot(bending_Y_enc.FFT1_AvSpc_1_RMS_X_Val, bending_Y_enc.FFT1_AvSpc_1_RMS_Y_Val, ...
'DisplayName', 'Y-Bending')
plot(torsion_Z_enc.FFT1_AvSpc_1_RMS_X_Val, torsion_Z_enc.FFT1_AvSpc_1_RMS_Y_Val, ...
'DisplayName', 'Z-torsion');
text(198, 4e-5,{'198Hz'}, 'VerticalAlignment', 'bottom','HorizontalAlignment','center')
text(293, 6e-5,{'293Hz'}, 'VerticalAlignment', 'bottom','HorizontalAlignment','center')
text(381, 1e-4,{'381Hz'}, 'VerticalAlignment', 'bottom','HorizontalAlignment','center')
hold off;
set(gca, 'Xscale', 'log'); set(gca, 'Yscale', 'log');
xlabel('Frequency [Hz]'); ylabel('Amplitude');
2024-03-27 14:35:55 +01:00
xlim([50, 8e2]); ylim([5e-7, 3e-4])
2024-10-25 14:57:22 +02:00
xticks([50, 100, 500]);
2024-03-27 14:35:55 +01:00
legend('location', 'southwest', 'FontSize', 8, 'NumColumns', 1);
2024-03-19 17:02:38 +01:00
#+end_src
2024-03-27 14:35:55 +01:00
#+begin_src matlab :tangle no :exports results :results file none
exportFig('figs/test_struts_spur_res_frf_enc.pdf', 'width', 'half', 'height', 'normal');
2024-03-19 17:02:38 +01:00
#+end_src
2024-03-27 14:35:55 +01:00
#+name : fig:test_struts_spur_res_frf
#+caption : Measured frequency response functions without the encoder ref:fig:test_struts_spur_res_frf and with the encoder ref:fig:test_struts_spur_res_frf_enc
#+attr_latex : :options [htbp]
#+begin_figure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_spur_res_frf_no_enc}without encoder}
#+attr_latex : :options {0.49\textwidth}
#+begin_subfigure
2024-03-27 17:03:23 +01:00
#+attr_latex : :width 0.95\linewidth
2024-03-27 14:35:55 +01:00
[[file:figs/test_struts_spur_res_frf_no_enc.png ]]
#+end_subfigure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_spur_res_frf_enc}with the encoder}
#+attr_latex : :options {0.49\textwidth}
#+begin_subfigure
2024-03-27 17:03:23 +01:00
#+attr_latex : :width 0.95\linewidth
2024-03-25 10:55:31 +01:00
[[file:figs/test_struts_spur_res_frf_enc.png ]]
2024-03-27 14:35:55 +01:00
#+end_subfigure
#+end_figure
2024-03-19 17:02:38 +01:00
2024-10-25 17:22:36 +02:00
Table ref:tab:test_struts_spur_mode_freqs summarizes the measured resonance frequencies and the computed ones using the acrfull:fem.
The resonance frequencies of the 3 modes are only slightly decreased when the encoder is fixed to the strut.
In addition, the computed resonance frequencies from the acrshort:fem are very close to the measured frequencies when the encoder is fixed to the strut.
This validates the quality of the acrshort:fem.
2024-03-19 17:02:38 +01:00
2024-03-25 10:55:31 +01:00
#+name : tab:test_struts_spur_mode_freqs
2024-10-25 14:57:22 +02:00
#+caption : Measured frequency of the flexible modes of the strut
#+attr_latex : :environment tabularx :width 0.9\linewidth :align Xccc
2024-03-19 17:02:38 +01:00
#+attr_latex : :center t :booktabs t :float t
2024-10-25 14:57:22 +02:00
| *Mode* | *FEM with Encoder* | *Exp. with Encoder* | *Exp. without Encoder* |
|-----------+--------------------+---------------------+------------------------|
| X-Bending | 189Hz | 198Hz | 226Hz |
| Y-Bending | 285Hz | 293Hz | 337Hz |
| Z-Torsion | 400Hz | 381Hz | 398Hz |
2024-03-19 17:02:38 +01:00
* Dynamical measurements
:PROPERTIES:
2024-03-25 10:55:31 +01:00
:header-args:matlab+: :tangle matlab/test_struts_2_dynamical_meas.m
2024-03-19 17:02:38 +01:00
:END:
2024-03-25 10:55:31 +01:00
<<sec:test_struts_dynamical_meas >>
** Introduction :ignore:
2024-03-27 22:23:14 +01:00
2024-10-25 17:22:36 +02:00
In order to measure the dynamics of the strut, the test bench used to measure the APA300ML dynamics is being used again.
2024-10-25 14:57:22 +02:00
The strut mounted on the bench is shown in Figure ref:fig:test_struts_bench_leg_overview
A schematic of the bench and the associated signals are shown in Figure ref:fig:test_struts_bench_schematic.
A fiber interferometer[fn: 4 ] is used to measure the motion of the granite (i.e. the axial motion of the strut).
2024-03-25 10:55:31 +01:00
#+name : fig:test_struts_bench_leg
2024-10-25 14:57:22 +02:00
#+caption : Experimental setup used to measure the dynamics of the struts.
2024-03-27 14:35:55 +01:00
#+attr_latex : :options [htbp]
2024-03-25 10:55:31 +01:00
#+begin_figure
2024-03-27 22:23:14 +01:00
#+attr_latex : :caption \subcaption{\label{fig:test_struts_bench_leg_overview}Overview Picture}
#+attr_latex : :options {0.32\textwidth}
2024-03-25 10:55:31 +01:00
#+begin_subfigure
2024-10-25 17:22:36 +02:00
#+attr_latex : :height 210px
2024-03-25 10:55:31 +01:00
[[file:figs/test_struts_bench_leg_overview.jpg ]]
#+end_subfigure
2024-03-27 22:23:14 +01:00
#+attr_latex : :caption \subcaption{\label{fig:test_struts_bench_schematic}Schematic}
#+attr_latex : :options {0.68\textwidth}
2024-03-25 10:55:31 +01:00
#+begin_subfigure
2024-10-25 17:22:36 +02:00
#+attr_latex : :height 210px
2024-03-27 22:23:14 +01:00
[[file:figs/test_struts_bench_schematic.png ]]
2024-03-25 10:55:31 +01:00
#+end_subfigure
#+end_figure
2024-10-25 17:22:36 +02:00
First, the effect of the encoder on the measured dynamics is investigated in Section ref:ssec:test_struts_effect_encoder.
The dynamics observed by the encoder and interferometers are compared in Section ref:ssec:test_struts_comp_enc_int.
Finally, all measured struts are compared in terms of dynamics in Section ref:ssec:test_struts_comp_all_struts.
2024-03-25 10:55:31 +01:00
** Matlab Init :noexport:ignore:
2024-03-19 17:02:38 +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:55:31 +01:00
#+begin_src matlab :tangle no :noweb yes
<<m-init-path >>
2024-03-19 17:02:38 +01:00
#+end_src
2024-03-25 10:55:31 +01:00
#+begin_src matlab :eval no :noweb yes
<<m-init-path-tangle >>
2024-03-19 17:02:38 +01:00
#+end_src
2024-03-25 10:55:31 +01:00
#+begin_src matlab :noweb yes
<<m-init-other >>
2024-03-19 17:02:38 +01:00
#+end_src
2024-03-27 14:35:55 +01:00
** Effect of the Encoder on the measured dynamics
<<ssec:test_struts_effect_encoder >>
2024-03-19 17:02:38 +01:00
#+begin_src matlab
2024-03-25 16:33:38 +01:00
%% Parameters for Frequency Analysis
2024-03-25 10:55:31 +01:00
Ts = 1e-4; % Sampling Time [s]
2024-03-25 16:33:38 +01:00
Nfft = floor(1/Ts); % Number of points for the FFT computation
win = hanning(Nfft); % Hanning window
Noverlap = floor(Nfft/2); % Overlap between frequency analysis
2024-03-19 17:02:38 +01:00
2024-03-27 14:35:55 +01:00
%% Measure FRF for Strut 1 - No encoder
% Load Data
2024-03-25 14:42:03 +01:00
leg_sweep = load('frf_data_leg_1_sweep.mat', 'u', 'Vs', 'de', 'da');
leg_noise_hf = load('frf_data_leg_1_noise_hf.mat', 'u', 'Vs', 'de', 'da');
2024-03-19 17:02:38 +01:00
2024-03-27 14:35:55 +01:00
% We get the frequency vector that will be the same for all the frequency domain analysis.
2024-03-25 14:42:03 +01:00
[~, f] = tfestimate(leg_sweep.u, leg_sweep.de, win, Noverlap, Nfft, 1/Ts);
i_lf = f <= 350; % Indices used for the low frequency
2024-03-25 16:33:38 +01:00
i_hf = f > 350; % Indices used for the high frequency
2024-03-19 17:02:38 +01:00
2024-03-27 14:35:55 +01:00
% Compute FRF function from u to da (interferometer)
2024-03-25 14:42:03 +01:00
[frf_sweep, ~] = tfestimate(leg_sweep.u, leg_sweep.da, win, Noverlap, Nfft, 1/Ts);
[frf_noise_hf, ~] = tfestimate(leg_noise_hf.u, leg_noise_hf.da, win, Noverlap, Nfft, 1/Ts);
2024-03-27 14:35:55 +01:00
int_frf = [frf_sweep(i_lf); frf_noise_hf(i_hf)]; % Combine the FRF
% Compute FRF function from u to Vs (force sensor)
[frf_sweep, ~] = tfestimate(leg_sweep.u, leg_sweep.Vs, win, Noverlap, Nfft, 1/Ts);
[frf_noise_hf, ~] = tfestimate(leg_noise_hf.u, leg_noise_hf.Vs, win, Noverlap, Nfft, 1/Ts);
iff_frf = [frf_sweep(i_lf); frf_noise_hf(i_hf)]; % Combine the FRF
%% Measure FRF for Strut 1 - With encoder
% Load Data
leg_enc_sweep = load('frf_data_leg_coder_1_noise.mat', 'u', 'Vs', 'de', 'da');
leg_enc_noise_hf = load('frf_data_leg_coder_1_noise_hf.mat', 'u', 'Vs', 'de', 'da');
% Compute FRF function from u to da (interferometer)
[frf_sweep, ~] = tfestimate(leg_enc_sweep.u, leg_enc_sweep.da, win, Noverlap, Nfft, 1/Ts);
[frf_noise_hf, ~] = tfestimate(leg_enc_noise_hf.u, leg_enc_noise_hf.da, win, Noverlap, Nfft, 1/Ts);
int_with_enc_frf = [frf_sweep(i_lf); frf_noise_hf(i_hf)]; % Combine the FRF
2024-03-19 17:02:38 +01:00
2024-03-27 14:35:55 +01:00
% Compute FRF function from u to Vs (force sensor)
[frf_sweep, ~] = tfestimate(leg_enc_sweep.u, leg_enc_sweep.Vs, win, Noverlap, Nfft, 1/Ts);
[frf_noise_hf, ~] = tfestimate(leg_enc_noise_hf.u, leg_enc_noise_hf.Vs, win, Noverlap, Nfft, 1/Ts);
iff_with_enc_frf = [frf_sweep(i_lf); frf_noise_hf(i_hf)]; % Combine the FRF
% Compute FRF function from u to de (encoder)
[frf_sweep, ~] = tfestimate(leg_enc_sweep.u, leg_enc_sweep.de, win, Noverlap, Nfft, 1/Ts);
[frf_noise_hf, ~] = tfestimate(leg_enc_noise_hf.u, leg_enc_noise_hf.de, win, Noverlap, Nfft, 1/Ts);
enc_frf = [frf_sweep(i_lf); frf_noise_hf(i_hf)]; % Combine the FRF
2024-03-19 17:02:38 +01:00
#+end_src
2024-10-25 17:22:36 +02:00
System identification was performed without the encoder being fixed to the strut (Figure ref:fig:test_struts_bench_leg_front) and with one encoder being fixed to the strut (Figure ref:fig:test_struts_bench_leg_coder).
2024-03-27 22:23:14 +01:00
#+name : fig:test_struts_bench_leg_with_without_enc
#+caption : Struts fixed to the test bench with clamped flexible joints. The coder can be fixed to the struts (\subref{fig:test_struts_bench_leg_coder}) or removed (\subref{fig:test_struts_bench_leg_front})
#+attr_latex : :options [htbp]
#+begin_figure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_bench_leg_coder}Strut with encoder}
#+attr_latex : :options {0.5\textwidth}
#+begin_subfigure
#+attr_latex : :height 6cm
[[file:figs/test_struts_bench_leg_coder.jpg ]]
#+end_subfigure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_bench_leg_front}Strut without encoder}
#+attr_latex : :options {0.5\textwidth}
#+begin_subfigure
#+attr_latex : :height 6cm
[[file:figs/test_struts_bench_leg_front.jpg ]]
#+end_subfigure
#+end_figure
2024-10-25 14:57:22 +02:00
The obtained frequency response functions are compared in Figure ref:fig:test_struts_effect_encoder.
2024-10-25 17:22:36 +02:00
It was found that the encoder had very little effect on the transfer function from excitation voltage $u$ to the axial motion of the strut $d_a$ as measured by the interferometer (Figure ref:fig:test_struts_effect_encoder_int).
2024-10-25 14:57:22 +02:00
This means that the axial motion of the strut is unaffected by the presence of the encoder.
2024-10-25 17:22:36 +02:00
Similarly, it has little effect on the transfer function from $u$ to the sensor stack voltage $V_s$ (Figure ref:fig:test_struts_effect_encoder_iff).
This means that the encoder should have little effect on the effectiveness of the integral force feedback control strategy.
2024-03-27 14:35:55 +01:00
2024-03-19 17:02:38 +01:00
#+begin_src matlab :exports none
2024-03-27 14:35:55 +01:00
%% Plot the FRF from u to da with and without the encoder
2024-03-19 17:02:38 +01:00
figure;
2024-03-25 14:42:03 +01:00
tiledlayout(3, 1, 'TileSpacing', 'Compact', 'Padding', 'None');
2024-03-19 17:02:38 +01:00
2024-03-27 19:25:53 +01:00
ax1 = nexttile([2,1]);
2024-03-19 17:02:38 +01:00
hold on;
2024-03-27 14:35:55 +01:00
plot(f, abs(int_with_enc_frf), '-', 'DisplayName', 'With encoder');
plot(f, abs(int_frf), '-', 'DisplayName', 'Without encoder');
2024-03-19 17:02:38 +01:00
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'log');
2024-03-27 14:35:55 +01:00
ylabel('Amplitude $d_a/u$ [m/V]'); set(gca, 'XTickLabel',[]);
2024-03-19 17:02:38 +01:00
hold off;
2024-03-27 14:35:55 +01:00
ylim([1e-7, 1e-3]);
2024-10-25 17:22:36 +02:00
leg = legend('location', 'southwest', 'FontSize', 8, 'NumColumns', 1);
leg.ItemTokenSize(1) = 15;
2024-03-19 17:02:38 +01:00
ax2 = nexttile;
hold on;
2024-03-27 14:35:55 +01:00
plot(f, 180/pi*angle(int_with_enc_frf), '-');
plot(f, 180/pi*angle(int_frf), '-');
2024-03-19 17:02:38 +01:00
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'lin');
xlabel('Frequency [Hz]'); ylabel('Phase [deg]');
hold off;
yticks(-360:90:360); ylim([-180, 180]);
linkaxes([ax1,ax2],'x');
xlim([10, 2e3]);
2024-10-25 17:22:36 +02:00
xticks([1e1, 1e2, 1e3]);
2024-03-19 17:02:38 +01:00
#+end_src
2024-03-27 14:35:55 +01:00
#+begin_src matlab :tangle no :exports results :results file none
2024-10-25 17:22:36 +02:00
exportFig('figs/test_struts_effect_encoder_int.pdf', 'width', 'third', 'height', 600);
2024-03-19 17:02:38 +01:00
#+end_src
#+begin_src matlab :exports none
2024-03-27 14:35:55 +01:00
%% Compare the IFF plant with and without the encoders
2024-03-19 17:02:38 +01:00
figure;
2024-03-25 14:42:03 +01:00
tiledlayout(3, 1, 'TileSpacing', 'Compact', 'Padding', 'None');
2024-03-19 17:02:38 +01:00
ax1 = nexttile([2,1]);
hold on;
2024-03-27 14:35:55 +01:00
plot(f, abs(iff_with_enc_frf), 'DisplayName', 'With Encoder');
plot(f, abs(iff_frf), 'DisplayName', 'Without Encoder');
2024-03-19 17:02:38 +01:00
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'log');
2024-03-25 14:42:03 +01:00
ylabel('Amplitude $V_s/u$ [V/V]'); set(gca, 'XTickLabel',[]);
2024-03-19 17:02:38 +01:00
hold off;
2024-10-25 17:22:36 +02:00
leg = legend('location', 'southeast', 'FontSize', 8, 'NumColumns', 1);
leg.ItemTokenSize(1) = 15;
2024-03-19 17:02:38 +01:00
ylim([1e-2, 1e2]);
ax2 = nexttile;
hold on;
2024-03-27 14:35:55 +01:00
plot(f, 180/pi*angle(iff_with_enc_frf));
plot(f, 180/pi*angle(iff_frf));
2024-03-19 17:02:38 +01:00
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'lin');
xlabel('Frequency [Hz]'); ylabel('Phase [deg]');
hold off;
yticks(-360:90:360); ylim([-180, 180]);
linkaxes([ax1,ax2],'x');
xlim([10, 2e3]);
2024-10-25 17:22:36 +02:00
xticks([1e1, 1e2, 1e3]);
2024-03-19 17:02:38 +01:00
#+end_src
2024-03-27 14:35:55 +01:00
#+begin_src matlab :tangle no :exports results :results file none
2024-10-25 17:22:36 +02:00
exportFig('figs/test_struts_effect_encoder_iff.pdf', 'width', 'third', 'height', 600);
2024-03-19 17:02:38 +01:00
#+end_src
2024-03-27 14:35:55 +01:00
#+name : fig:test_struts_effect_encoder
2024-10-25 17:22:36 +02:00
#+caption : Effect of having the encoder fixed to the struts on the measured dynamics from $u$ to $d_a$ (\subref{fig:test_struts_effect_encoder_int}) and from $u$ to $V_s$ (\subref{fig:test_struts_effect_encoder_iff}). Comparison of the observed dynamics by the encoder and interferometers (\subref{fig:test_struts_comp_enc_int})
2024-03-27 14:35:55 +01:00
#+attr_latex : :options [htbp]
#+begin_figure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_effect_encoder_int}$u$ to $d_a$}
2024-10-25 17:22:36 +02:00
#+attr_latex : :options {0.33\textwidth}
2024-03-27 14:35:55 +01:00
#+begin_subfigure
#+attr_latex : :width 0.95\linewidth
[[file:figs/test_struts_effect_encoder_int.png ]]
#+end_subfigure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_effect_encoder_iff}$u$ to $V_s$}
2024-10-25 17:22:36 +02:00
#+attr_latex : :options {0.33\textwidth}
2024-03-27 14:35:55 +01:00
#+begin_subfigure
#+attr_latex : :width 0.95\linewidth
[[file:figs/test_struts_effect_encoder_iff.png ]]
#+end_subfigure
2024-10-25 17:22:36 +02:00
#+attr_latex : :caption \subcaption{\label{fig:test_struts_comp_enc_int}$u$ to $d_e$, $d_a$}
#+attr_latex : :options {0.33\textwidth}
#+begin_subfigure
#+attr_latex : :width 0.95\linewidth
[[file:figs/test_struts_comp_enc_int.png ]]
#+end_subfigure
2024-03-27 14:35:55 +01:00
#+end_figure
2024-03-19 17:02:38 +01:00
2024-03-27 14:35:55 +01:00
** Comparison of the encoder and interferometer
<<ssec:test_struts_comp_enc_int >>
2024-03-19 17:02:38 +01:00
2024-10-25 17:22:36 +02:00
The dynamics measured by the encoder (i.e. $d_e/u$) and interferometers (i.e. $d_a/u$) are compared in Figure ref:fig:test_struts_comp_enc_int.
The dynamics from the excitation voltage $u$ to the displacement measured by the encoder $d_e$ presents a behavior that is much more complex than the dynamics of the displacement measured by the interferometer (comparison made in Figure ref:fig:test_struts_comp_enc_int).
2024-10-25 14:57:22 +02:00
Three additional resonance frequencies can be observed at 197Hz, 290Hz and 376Hz.
2024-10-25 17:22:36 +02:00
These resonance frequencies match the frequencies of the flexible modes studied in Section ref:sec:test_struts_flexible_modes.
2024-03-27 14:35:55 +01:00
2024-10-25 17:22:36 +02:00
The good news is that these resonances are not impacting the axial motion of the strut (which is what is important for the hexapod positioning).
However, these resonances make the use of an encoder fixed to the strut difficult from a control perspective.
2024-03-19 17:02:38 +01:00
#+begin_src matlab :exports none
figure;
2024-03-25 14:42:03 +01:00
tiledlayout(3, 1, 'TileSpacing', 'Compact', 'Padding', 'None');
2024-03-19 17:02:38 +01:00
ax1 = nexttile([2,1]);
hold on;
2024-10-25 17:22:36 +02:00
plot(f, abs(enc_frf), 'DisplayName', '$d_e/u$');
plot(f, abs(int_with_enc_frf), 'DisplayName', '$d_a/u$');
text(85, 4e-4, {'93Hz'}, 'VerticalAlignment','middle','HorizontalAlignment','right')
2024-03-27 14:35:55 +01:00
text(200, 1.3e-4,{'197Hz'},'VerticalAlignment','bottom','HorizontalAlignment','center')
2024-10-25 17:22:36 +02:00
text(300, 4e-6, {'290Hz'},'VerticalAlignment','bottom','HorizontalAlignment','left')
text(400, 4e-7,{'376Hz'},'VerticalAlignment','top','HorizontalAlignment','center')
2024-03-19 17:02:38 +01:00
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'log');
2024-03-27 14:35:55 +01:00
ylabel('Amplitude $d/u$ [m/V]'); set(gca, 'XTickLabel',[]);
2024-03-19 17:02:38 +01:00
hold off;
2024-10-25 17:22:36 +02:00
leg = legend('location', 'southwest', 'FontSize', 8, 'NumColumns', 1);
leg.ItemTokenSize(1) = 15;
ylim([1e-7, 1e-3]);
2024-03-19 17:02:38 +01:00
ax2 = nexttile;
hold on;
2024-03-27 14:35:55 +01:00
plot(f, 180/pi*angle(enc_frf));
plot(f, 180/pi*angle(int_with_enc_frf));
2024-03-19 17:02:38 +01:00
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'lin');
xlabel('Frequency [Hz]'); ylabel('Phase [deg]');
hold off;
yticks(-360:90:360); ylim([-180, 180]);
linkaxes([ax1,ax2],'x');
xlim([10, 2e3]);
2024-10-25 17:22:36 +02:00
xticks([1e1, 1e2, 1e3]);
2024-03-19 17:02:38 +01:00
#+end_src
2024-10-25 17:22:36 +02:00
#+begin_src matlab :tangle no :exports results :results file none
exportFig('figs/test_struts_comp_enc_int.pdf', 'width', 'third', 'height', 600);
2024-03-19 17:02:38 +01:00
#+end_src
2024-03-27 14:35:55 +01:00
** Comparison of all the Struts
<<ssec:test_struts_comp_all_struts >>
2024-03-19 17:02:38 +01:00
#+begin_src matlab
2024-03-27 14:35:55 +01:00
%% Numbers of the measured legs
strut_nums = [1 2 3 4 5];
%% Load the measurement data
% First identification (low frequency noise)
leg_noise = {};
for i = 1:length(strut_nums)
leg_noise(i) = {load(sprintf('frf_data_leg_coder_ %i_noise.mat', strut_nums(i)), 'u', 'Vs', 'de', 'da')};
end
% Second identification (high frequency noise)
leg_noise_hf = {};
for i = 1:length(strut_nums)
leg_noise_hf(i) = {load(sprintf('frf_data_leg_coder_ %i_noise_hf.mat', strut_nums(i)), 'u', 'Vs', 'de', 'da')};
end
%% Compute FRF - From u to de (encoder)
enc_frf = zeros(length(f), length(strut_nums));
for i = 1:length(strut_nums)
[frf_lf, ~] = tfestimate(leg_noise{i}.u, detrend(leg_noise{i}.de, 0), win, Noverlap, Nfft, 1/Ts);
[frf_hf, ~] = tfestimate(leg_noise_hf{i}.u, detrend(leg_noise_hf{i}.de, 0), win, Noverlap, Nfft, 1/Ts);
enc_frf(:, i) = [frf_lf(i_lf); frf_hf(i_hf)];
end
%% Compute FRF - From u to da (interferometer)
int_frf = zeros(length(f), length(strut_nums));
for i = 1:length(strut_nums)
[frf_lf, ~] = tfestimate(leg_noise{i}.u, leg_noise{i}.da, win, Noverlap, Nfft, 1/Ts);
[frf_hf, ~] = tfestimate(leg_noise_hf{i}.u, leg_noise_hf{i}.da, win, Noverlap, Nfft, 1/Ts);
int_frf(:, i) = [frf_lf(i_lf); frf_hf(i_hf)];
end
2024-03-19 17:02:38 +01:00
2024-03-27 14:35:55 +01:00
%% Compute FRF - From u to Vs (force sensor)
iff_frf = zeros(length(f), length(strut_nums));
for i = 1:length(strut_nums)
[frf_lf, ~] = tfestimate(leg_noise{i}.u, leg_noise{i}.Vs, win, Noverlap, Nfft, 1/Ts);
[frf_hf, ~] = tfestimate(leg_noise_hf{i}.u, leg_noise_hf{i}.Vs, win, Noverlap, Nfft, 1/Ts);
iff_frf(:, i) = [frf_lf(i_lf); frf_hf(i_hf)];
end
2024-03-19 17:02:38 +01:00
#+end_src
2024-10-25 17:22:36 +02:00
The dynamics of all the mounted struts (only 5 at the time of the experiment) were then measured on the same test bench.
2024-10-25 14:57:22 +02:00
The obtained dynamics from $u$ to $d_a$ are compared in Figure ref:fig:test_struts_comp_interf_plants while is dynamics from $u$ to $V_s$ are compared in Figure ref:fig:test_struts_comp_iff_plants.
2024-10-25 17:22:36 +02:00
A very good match can be observed between the struts.
2024-03-27 14:35:55 +01:00
2024-03-19 17:02:38 +01:00
#+begin_src matlab :exports none
2024-03-27 14:35:55 +01:00
%% Plot the FRF from u to de (interferometer)
2024-03-19 17:02:38 +01:00
figure;
2024-03-25 14:42:03 +01:00
tiledlayout(3, 1, 'TileSpacing', 'Compact', 'Padding', 'None');
2024-03-19 17:02:38 +01:00
ax1 = nexttile([2,1]);
hold on;
2024-03-27 14:35:55 +01:00
for i = 1:length(strut_nums)
plot(f, abs(int_frf(:, i)), ...
'DisplayName', sprintf('Leg %i', strut_nums(i)));
end
2024-03-19 17:02:38 +01:00
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'log');
2024-03-27 14:35:55 +01:00
ylabel('Amplitude $d_a/u$ [m/V]'); set(gca, 'XTickLabel',[]);
2024-03-19 17:02:38 +01:00
hold off;
2024-10-25 17:22:36 +02:00
leg = legend('location', 'southwest', 'FontSize', 8, 'NumColumns', 1);
leg.ItemTokenSize(1) = 15;
ylim([1e-8, 1e-3]);
2024-03-19 17:02:38 +01:00
ax2 = nexttile;
hold on;
2024-03-27 14:35:55 +01:00
for i = 1:length(strut_nums)
plot(f, 180/pi*angle(int_frf(:, i)));
end
2024-03-19 17:02:38 +01:00
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'lin');
xlabel('Frequency [Hz]'); ylabel('Phase [deg]');
hold off;
2024-03-27 14:35:55 +01:00
yticks(-360:90:360); ylim([-180 180]);
2024-03-19 17:02:38 +01:00
linkaxes([ax1,ax2],'x');
xlim([10, 2e3]);
2024-10-25 17:22:36 +02:00
xticks([1e1, 1e2, 1e3]);
2024-03-19 17:02:38 +01:00
#+end_src
2024-03-27 14:35:55 +01:00
#+begin_src matlab :tangle no :exports results :results file none
2024-10-25 17:22:36 +02:00
exportFig('figs/test_struts_comp_interf_plants.pdf', 'width', 'third', 'height', 600);
2024-03-19 17:02:38 +01:00
#+end_src
#+begin_src matlab :exports none
2024-03-27 14:35:55 +01:00
%% Plot the FRF from u to Vs
2024-03-19 17:02:38 +01:00
figure;
2024-03-25 14:42:03 +01:00
tiledlayout(3, 1, 'TileSpacing', 'Compact', 'Padding', 'None');
2024-03-19 17:02:38 +01:00
ax1 = nexttile([2,1]);
hold on;
2024-03-27 14:35:55 +01:00
for i = 1:length(strut_nums)
plot(f, abs(iff_frf(:, i)), ...
'DisplayName', sprintf('Leg %i', strut_nums(i)));
end
2024-03-19 17:02:38 +01:00
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'log');
2024-03-27 14:35:55 +01:00
ylabel('Amplitude $V_s/u$ [V/V]'); set(gca, 'XTickLabel',[]);
2024-03-19 17:02:38 +01:00
hold off;
2024-03-27 14:35:55 +01:00
ylim([1e-2, 1e2]);
2024-10-25 17:22:36 +02:00
leg = legend('location', 'southeast', 'FontSize', 8, 'NumColumns', 1);
leg.ItemTokenSize(1) = 15;
2024-03-19 17:02:38 +01:00
ax2 = nexttile;
hold on;
2024-03-27 14:35:55 +01:00
for i = 1:length(strut_nums)
plot(f, 180/pi*angle(iff_frf(:, i)));
end
2024-03-19 17:02:38 +01:00
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'lin');
xlabel('Frequency [Hz]'); ylabel('Phase [deg]');
hold off;
2024-03-27 14:35:55 +01:00
yticks(-360:90:360); ylim([-180 180]);
2024-03-19 17:02:38 +01:00
linkaxes([ax1,ax2],'x');
xlim([10, 2e3]);
2024-10-25 17:22:36 +02:00
xticks([1e1, 1e2, 1e3]);
2024-03-19 17:02:38 +01:00
#+end_src
2024-03-27 14:35:55 +01:00
#+begin_src matlab :tangle no :exports results :results file none
2024-10-25 17:22:36 +02:00
exportFig('figs/test_struts_comp_iff_plants.pdf', 'width', 'third', 'height', 600);
2024-03-19 17:02:38 +01:00
#+end_src
#+begin_src matlab :exports none
2024-03-27 14:35:55 +01:00
%% Bode plot of the FRF from u to de
2024-03-19 17:02:38 +01:00
figure;
2024-03-27 14:35:55 +01:00
tiledlayout(3, 1, 'TileSpacing', 'Compact', 'Padding', 'None');
ax1 = nexttile([2,1]);
2024-03-19 17:02:38 +01:00
hold on;
2024-03-27 14:35:55 +01:00
for i = 1:length(strut_nums)
plot(f, abs(enc_frf(:, i)), ...
'DisplayName', sprintf('Leg %i', strut_nums(i)));
end
2024-03-19 17:02:38 +01:00
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'log');
2024-03-27 14:35:55 +01:00
ylabel('Amplitude $d_e/u$ [m/V]'); set(gca, 'XTickLabel',[]);
hold off;
2024-10-25 17:22:36 +02:00
leg = legend('location', 'southwest', 'FontSize', 8, 'NumColumns', 1);
leg.ItemTokenSize(1) = 15;
2024-03-27 14:35:55 +01:00
ylim([1e-8, 1e-3]);
ax2 = nexttile;
hold on;
for i = 1:length(strut_nums)
plot(f, 180/pi*angle(enc_frf(:, i)));
end
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'lin');
xlabel('Frequency [Hz]'); ylabel('Phase [deg]');
2024-03-19 17:02:38 +01:00
hold off;
2024-03-27 14:35:55 +01:00
yticks(-360:90:360); ylim([-180, 180]);
linkaxes([ax1,ax2],'x');
xlim([10, 2e3]);
2024-10-25 17:22:36 +02:00
xticks([1e1, 1e2, 1e3]);
2024-03-19 17:02:38 +01:00
#+end_src
2024-10-25 17:22:36 +02:00
#+begin_src matlab :tangle no :exports results :results file none
exportFig('figs/test_struts_comp_enc_plants.pdf', 'width', 'third', 'height', 600);
2024-03-19 17:02:38 +01:00
#+end_src
2024-10-25 17:22:36 +02:00
#+name : fig:test_struts_comp_plants
#+caption : Comparison of the measured plants
#+attr_latex : :options [htbp]
#+begin_figure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_comp_interf_plants}$u$ to $d_a$}
#+attr_latex : :options {0.33\textwidth}
#+begin_subfigure
#+attr_latex : :width \linewidth
[[file:figs/test_struts_comp_interf_plants.png ]]
#+end_subfigure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_comp_iff_plants}$u$ to $V_s$}
#+attr_latex : :options {0.33\textwidth}
#+begin_subfigure
#+attr_latex : :width \linewidth
[[file:figs/test_struts_comp_iff_plants.png ]]
#+end_subfigure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_comp_enc_plants}$u$ to $d_e$}
#+attr_latex : :options {0.33\textwidth}
#+begin_subfigure
#+attr_latex : :width \linewidth
2024-03-27 14:35:55 +01:00
[[file:figs/test_struts_comp_enc_plants.png ]]
2024-10-25 17:22:36 +02:00
#+end_subfigure
#+end_figure
2024-03-19 17:02:38 +01:00
2024-10-25 17:22:36 +02:00
The same comparison is made for the transfer function from $u$ to $d_e$ (encoder output) in Figure ref:fig:test_struts_comp_enc_plants.
In this study, large dynamics differences were observed between the 5 struts.
Although the same resonance frequencies were seen for all of the struts (95Hz, 200Hz, 300Hz and 400Hz), the amplitude of the peaks were not the same.
In addition, the location or even presence of complex conjugate zeros changes from one strut to another.
2024-03-19 17:02:38 +01:00
2024-03-27 14:35:55 +01:00
#+begin_src matlab :tangle no :exports none
%% Save the estimated FRF for further analysis
save('./matlab/mat/meas_struts_frf.mat', 'f', 'enc_frf', 'int_frf', 'iff_frf', 'strut_nums');
2024-03-19 17:02:38 +01:00
#+end_src
2024-03-27 14:35:55 +01:00
#+begin_src matlab :eval no
%% Save the estimated FRF for further analysis
save('./mat/meas_struts_frf.mat', 'f', 'enc_frf', 'int_frf', 'iff_frf', 'strut_nums');
2024-03-19 17:02:38 +01:00
#+end_src
2024-10-25 17:22:36 +02:00
** Conclusion
:PROPERTIES:
:UNNUMBERED: t
:END:
All the struts exhibit very consistent behavior from the excitation voltage $u$ to the force sensor generated voltage $V_s$ and to the interferometer measured displacement $d_a$.
However, the dynamics from $u$ to the encoder measurement $d_e$ is much more complex and vary from one strut to the another.
The reason for this variability will be studied in the next section thanks to the strut model.
2024-03-27 22:23:14 +01:00
* Strut Model
2024-03-19 17:02:38 +01:00
:PROPERTIES:
2024-03-25 10:55:31 +01:00
:header-args:matlab+: :tangle matlab/test_struts_3_simscape_model.m
2024-03-19 17:02:38 +01:00
:END:
2024-03-25 10:55:31 +01:00
<<sec:test_struts_simscape >>
2024-03-19 17:02:38 +01:00
** Introduction :ignore:
2024-10-25 17:22:36 +02:00
The Simscape model of the strut was included in the Simscape model of the test bench (see Figure ref:fig:test_struts_simscape_model).
The obtained model was first used to compare the measured FRF with the existing model (Section ref:ssec:test_struts_comp_model).
Using a flexible APA model (extracted from a acrshort:fem), the effect of a misalignment of the APA with respect to flexible joints is studied (Section ref:ssec:test_struts_effect_misalignment).
It was found that misalignment has a large impact on the dynamics from $u$ to $d_e$.
This misalignment is estimated and measured in Section ref:ssec:test_struts_meas_misalignment.
The struts were then disassembled and reassemble a second time to optimize alignment (Section ref:sec:test_struts_meas_all_aligned_struts).
2024-03-19 17:02:38 +01:00
2024-03-25 10:55:31 +01:00
#+name : fig:test_struts_simscape_model
2024-03-19 17:02:38 +01:00
#+caption : Screenshot of the Simscape model of the strut fixed to the bench
2024-10-25 17:22:36 +02:00
#+attr_latex : :width 0.65\linewidth
2024-03-25 10:55:31 +01:00
[[file:figs/test_struts_simscape_model.png ]]
2024-03-19 17:02:38 +01:00
2024-03-25 14:42:03 +01:00
** Matlab Init :noexport:ignore:
2024-03-19 17:02:38 +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 14:42:03 +01:00
#+begin_src matlab :tangle no :noweb yes
<<m-init-path >>
2024-03-19 17:02:38 +01:00
#+end_src
2024-03-25 14:42:03 +01:00
#+begin_src matlab :eval no :noweb yes
<<m-init-path-tangle >>
2024-03-19 17:02:38 +01:00
#+end_src
2024-03-25 14:42:03 +01:00
#+begin_src matlab :tangle no :noweb yes
<<m-init-path-simscape >>
2024-03-19 17:02:38 +01:00
#+end_src
2024-03-25 14:42:03 +01:00
#+begin_src matlab :eval no :noweb yes
<<m-init-path-simscape-tangle >>
#+end_src
2024-03-19 17:02:38 +01:00
2024-03-25 14:42:03 +01:00
#+begin_src matlab :noweb yes
<<m-init-other >>
#+end_src
#+begin_src matlab :exports none
%% Input/Output definition of the Model
clear io; io_i = 1;
io(io_i) = linio([mdl, '/u'], 1, 'openinput'); io_i = io_i + 1; % DAC Voltage
io(io_i) = linio([mdl, '/Vs'], 1, 'openoutput'); io_i = io_i + 1; % Sensor Voltage
io(io_i) = linio([mdl, '/de'], 1, 'openoutput'); io_i = io_i + 1; % Encoder
io(io_i) = linio([mdl, '/da'], 1, 'openoutput'); io_i = io_i + 1; % Interferometer
#+end_src
2024-03-19 17:02:38 +01:00
2024-03-25 14:42:03 +01:00
#+begin_src matlab
2024-03-27 17:03:23 +01:00
%% Frequency vector [Hz]
2024-03-27 14:35:55 +01:00
freqs = logspace(1, log10(2000), 1000);
2024-03-19 17:02:38 +01:00
#+end_src
2024-03-27 17:03:23 +01:00
** Model dynamics
2024-03-25 14:42:03 +01:00
<<ssec:test_struts_comp_model >>
2024-10-25 17:22:36 +02:00
2024-03-19 17:02:38 +01:00
#+begin_src matlab
2024-03-27 14:35:55 +01:00
%% Load measured FRF for comparison
load('meas_struts_frf.mat', 'f', 'enc_frf', 'int_frf', 'iff_frf', 'strut_nums');
%% Initialize strut with 2DoF model for the APA300ML and identify the dynamics
2024-03-19 17:02:38 +01:00
n_hexapod = struct();
n_hexapod.flex_bot = initializeBotFlexibleJoint('type', '4dof');
n_hexapod.flex_top = initializeTopFlexibleJoint('type', '4dof');
n_hexapod.actuator = initializeAPA('type', '2dof');
2024-03-25 14:42:03 +01:00
c_granite = 0; % Do not take into account damping added by the air bearing
2024-03-19 17:02:38 +01:00
2024-03-27 14:35:55 +01:00
% Run the linearization
Gs_2dof = exp(-s*1e-4)*linearize(mdl, io, 0.0, opts);
Gs_2dof.InputName = {'u'};
Gs_2dof.OutputName = {'Vs', 'de', 'da'};
2024-03-19 17:02:38 +01:00
2024-03-27 14:35:55 +01:00
%% Initialize strut with "flexible" model for the APA300ML and identify the dynamics
n_hexapod = struct();
n_hexapod.flex_bot = initializeBotFlexibleJoint('type', '4dof');
n_hexapod.flex_top = initializeTopFlexibleJoint('type', '4dof');
n_hexapod.actuator = initializeAPA('type', 'flexible');
2024-03-19 17:02:38 +01:00
2024-03-27 14:35:55 +01:00
c_granite = 100; % Do not take into account damping added by the air bearing
2024-03-19 17:02:38 +01:00
2024-03-27 14:35:55 +01:00
% Run the linearization
Gs_flex = exp(-s*1e-4)*linearize(mdl, io, 0.0, opts);
Gs_flex.InputName = {'u'};
Gs_flex.OutputName = {'Vs', 'de', 'da'};
#+end_src
2024-03-19 17:02:38 +01:00
2024-10-25 17:22:36 +02:00
Two models of the APA300ML are used here: a simple two-degrees-of-freedom model and a model using a super-element extracted from a acrlong:fem.
These two models of the APA300ML were tuned to best match the measured frequency response functions of the APA alone.
The flexible joints were modelled with the 4DoF model (axial stiffness, two bending stiffnesses and one torsion stiffness).
2024-03-27 14:35:55 +01:00
These two models are compared with the measured frequency responses in Figure ref:fig:test_struts_comp_frf_flexible_model.
2024-03-19 17:02:38 +01:00
2024-03-27 14:35:55 +01:00
The model dynamics from DAC voltage $u$ to the axial motion of the strut $d_a$ (Figure ref:fig:test_struts_comp_frf_flexible_model_int) and from DAC voltage $u$ to the force sensor voltage $V_s$ (Figure ref:fig:test_struts_comp_frf_flexible_model_iff) are well matching the experimental identification.
2024-03-19 17:02:38 +01:00
2024-03-27 14:35:55 +01:00
However, the transfer function from $u$ to encoder displacement $d_e$ are not well matching for both models.
2024-10-25 17:22:36 +02:00
For the 2DoF model, this is normal because the resonances affecting the dynamics are not modelled at all (the APA300ML is modeled as infinitely rigid in all directions except the translation along it's actuation axis).
2024-10-25 14:57:22 +02:00
For the flexible model, it will be shown in the next section that by adding some misalignment between the flexible joints and the APA300ML, this model can better represent the observed dynamics.
2024-03-19 17:02:38 +01:00
#+begin_src matlab :exports none
2024-03-25 14:42:03 +01:00
%% Compare the FRF and identified dynamics from u to Vs and da
2024-03-19 17:02:38 +01:00
figure;
2024-03-27 14:35:55 +01:00
tiledlayout(3, 1, 'TileSpacing', 'Compact', 'Padding', 'None');
2024-03-19 17:02:38 +01:00
2024-03-27 14:35:55 +01:00
ax1a = nexttile([2,1]);
2024-03-19 17:02:38 +01:00
hold on;
plot(f, abs(int_frf(:, 1)), 'color', [0,0,0,0.2], ...
2024-03-27 14:35:55 +01:00
'DisplayName', 'FRF');
2024-03-25 14:42:03 +01:00
for i = 2:length(strut_nums)
2024-03-19 17:02:38 +01:00
plot(f, abs(int_frf(:, i)), 'color', [0,0,0,0.2], ...
'HandleVisibility', 'off');
end
2024-03-27 14:35:55 +01:00
plot(freqs, abs(squeeze(freqresp(Gs_2dof('da', 'u'), freqs, 'Hz'))), '-', ...
'color', colors(1,:), 'DisplayName', '2DoF Model')
plot(freqs, abs(squeeze(freqresp(Gs_flex('da', 'u'), freqs, 'Hz'))), '-', ...
'color', colors(2,:), 'DisplayName', 'Flex. Model')
2024-03-19 17:02:38 +01:00
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'log');
2024-03-25 14:42:03 +01:00
ylabel('Amplitude $d_a/u$ [m/V]'); set(gca, 'XTickLabel',[]);
2024-03-19 17:02:38 +01:00
hold off;
ylim([1e-8, 1e-3]);
2024-03-27 14:35:55 +01:00
leg = legend('location', 'southwest', 'FontSize', 8, 'NumColumns', 1);
2024-03-27 17:03:23 +01:00
leg.ItemTokenSize(1) = 15;
2024-03-19 17:02:38 +01:00
2024-03-27 14:35:55 +01:00
ax2a = nexttile;
2024-03-19 17:02:38 +01:00
hold on;
2024-03-25 14:42:03 +01:00
for i = 1:length(strut_nums)
2024-03-19 17:02:38 +01:00
plot(f, 180/pi*angle(int_frf(:, i)), 'color', [0,0,0,0.2]);
end
2024-03-27 14:35:55 +01:00
plot(freqs, 180/pi*angle(squeeze(freqresp(Gs_2dof('da', 'u'), freqs, 'Hz'))), '-', 'color', colors(1,:))
plot(freqs, 180/pi*angle(squeeze(freqresp(Gs_flex('da', 'u'), freqs, 'Hz'))), '-', 'color', colors(2,:))
2024-03-19 17:02:38 +01:00
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'lin');
xlabel('Frequency [Hz]'); ylabel('Phase [deg]');
hold off;
yticks(-360:90:360); ylim([-180, 180]);
2024-03-27 14:35:55 +01:00
linkaxes([ax1a,ax2a],'x');
2024-03-19 17:02:38 +01:00
xlim([10, 2e3]);
2024-10-25 17:22:36 +02:00
xticks([1e1, 1e2, 1e3]);
2024-03-19 17:02:38 +01:00
#+end_src
2024-03-27 14:35:55 +01:00
#+begin_src matlab :tangle no :exports results :results file none
exportFig('figs/test_struts_comp_frf_flexible_model_int.pdf', 'width', 400, 'height', 'tall');
2024-03-19 17:02:38 +01:00
#+end_src
#+begin_src matlab :exports none
2024-03-27 14:35:55 +01:00
%% Compare the FRF and identified dynamics from u to Vs and da
2024-03-19 17:02:38 +01:00
figure;
2024-03-25 14:42:03 +01:00
tiledlayout(3, 1, 'TileSpacing', 'Compact', 'Padding', 'None');
2024-03-19 17:02:38 +01:00
2024-03-27 14:35:55 +01:00
ax1a = nexttile([2,1]);
2024-03-19 17:02:38 +01:00
hold on;
plot(f, abs(enc_frf(:, 1)), 'color', [0,0,0,0.2], ...
2024-03-27 14:35:55 +01:00
'DisplayName', 'FRF');
2024-03-25 14:42:03 +01:00
for i = 2:length(strut_nums)
2024-03-19 17:02:38 +01:00
plot(f, abs(enc_frf(:, i)), 'color', [0,0,0,0.2], ...
'HandleVisibility', 'off');
end
2024-03-27 14:35:55 +01:00
plot(freqs, abs(squeeze(freqresp(Gs_2dof('de', 'u'), freqs, 'Hz'))), '-', ...
'color', colors(1,:), 'DisplayName', '2DoF Model')
plot(freqs, abs(squeeze(freqresp(Gs_flex('de', 'u'), freqs, 'Hz'))), '-', ...
'color', colors(2,:), 'DisplayName', 'Flex. Model')
2024-03-19 17:02:38 +01:00
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'log');
2024-03-25 14:42:03 +01:00
ylabel('Amplitude $d_e/u$ [m/V]'); set(gca, 'XTickLabel',[]);
2024-03-19 17:02:38 +01:00
hold off;
ylim([1e-8, 1e-3]);
2024-03-27 14:35:55 +01:00
leg = legend('location', 'southwest', 'FontSize', 8, 'NumColumns', 1);
2024-03-27 17:03:23 +01:00
leg.ItemTokenSize(1) = 15;
2024-03-19 17:02:38 +01:00
2024-03-27 14:35:55 +01:00
ax2a = nexttile;
2024-03-19 17:02:38 +01:00
hold on;
2024-03-25 14:42:03 +01:00
for i = 1:length(strut_nums)
2024-03-19 17:02:38 +01:00
plot(f, 180/pi*angle(enc_frf(:, i)), 'color', [0,0,0,0.2]);
end
2024-03-27 14:35:55 +01:00
plot(freqs, 180/pi*angle(squeeze(freqresp(Gs_2dof('de', 'u'), freqs, 'Hz'))), '-', 'color', colors(1,:))
plot(freqs, 180/pi*angle(squeeze(freqresp(Gs_flex('de', 'u'), freqs, 'Hz'))), '-', 'color', colors(2,:))
2024-03-19 17:02:38 +01:00
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'lin');
xlabel('Frequency [Hz]'); ylabel('Phase [deg]');
hold off;
yticks(-360:90:360); ylim([-180, 180]);
2024-03-27 14:35:55 +01:00
linkaxes([ax1a,ax2a],'x');
xlim([10, 2e3]);
2024-10-25 17:22:36 +02:00
xticks([1e1, 1e2, 1e3]);
2024-03-19 17:02:38 +01:00
#+end_src
2024-03-27 14:35:55 +01:00
#+begin_src matlab :tangle no :exports results :results file none
exportFig('figs/test_struts_comp_frf_flexible_model_enc.pdf', 'width', 400, 'height', 'tall');
2024-03-19 17:02:38 +01:00
#+end_src
#+begin_src matlab :exports none
2024-03-25 14:42:03 +01:00
%% Compare the FRF and identified dynamics from u to Vs and da
2024-03-19 17:02:38 +01:00
figure;
2024-03-27 14:35:55 +01:00
tiledlayout(3, 1, 'TileSpacing', 'Compact', 'Padding', 'None');
2024-03-19 17:02:38 +01:00
2024-03-27 14:35:55 +01:00
ax1a = nexttile([2,1]);
2024-03-19 17:02:38 +01:00
hold on;
2024-03-27 14:35:55 +01:00
plot(f, abs(iff_frf(:, i)), 'color', [0,0,0,0.2], ...
'DisplayName', 'FRF');
2024-03-25 14:42:03 +01:00
for i = 1:length(strut_nums)
2024-03-27 14:35:55 +01:00
plot(f, abs(iff_frf(:, i)), 'color', [0,0,0,0.2], ...
2024-03-19 17:02:38 +01:00
'HandleVisibility', 'off');
end
2024-03-27 14:35:55 +01:00
plot(freqs, abs(squeeze(freqresp(Gs_2dof('Vs', 'u'), freqs, 'Hz'))), '-', ...
'color', colors(1,:), 'DisplayName', '2DoF Model')
plot(freqs, abs(squeeze(freqresp(Gs_flex('Vs', 'u'), freqs, 'Hz'))), '-', ...
'color', colors(2,:), 'DisplayName', 'Flex. Model')
2024-03-19 17:02:38 +01:00
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'log');
2024-03-25 14:42:03 +01:00
ylabel('Amplitude $V_s/u$ [V/V]'); set(gca, 'XTickLabel',[]);
2024-03-19 17:02:38 +01:00
hold off;
ylim([1e-2, 1e2]);
2024-03-27 14:35:55 +01:00
leg = legend('location', 'southeast', 'FontSize', 8, 'NumColumns', 1);
2024-03-27 17:03:23 +01:00
leg.ItemTokenSize(1) = 15;
2024-03-19 17:02:38 +01:00
2024-03-27 14:35:55 +01:00
ax2a = nexttile;
2024-03-19 17:02:38 +01:00
hold on;
2024-03-25 14:42:03 +01:00
for i = 1:length(strut_nums)
2024-03-27 14:35:55 +01:00
plot(f, 180/pi*angle(iff_frf(:, i)), 'color', [0,0,0,0.2]);
2024-03-19 17:02:38 +01:00
end
set(gca,'ColorOrderIndex',1);
2024-03-27 14:35:55 +01:00
plot(freqs, 180/pi*angle(squeeze(freqresp(Gs_2dof('Vs', 'u'), freqs, 'Hz'))), '-', 'color', colors(1,:))
plot(freqs, 180/pi*angle(squeeze(freqresp(Gs_flex('Vs', 'u'), freqs, 'Hz'))), '-', 'color', colors(2,:))
2024-03-19 17:02:38 +01:00
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'lin');
xlabel('Frequency [Hz]'); ylabel('Phase [deg]');
hold off;
yticks(-360:90:360); ylim([-180, 180]);
2024-03-27 14:35:55 +01:00
linkaxes([ax1a,ax2a],'x');
2024-03-19 17:02:38 +01:00
xlim([10, 2e3]);
2024-10-25 17:22:36 +02:00
xticks([1e1, 1e2, 1e3]);
2024-03-19 17:02:38 +01:00
#+end_src
2024-03-27 14:35:55 +01:00
#+begin_src matlab :tangle no :exports results :results file none
exportFig('figs/test_struts_comp_frf_flexible_model_iff.pdf', 'width', 400, 'height', 'tall');
#+end_src
#+name : fig:test_struts_comp_frf_flexible_model
2024-10-25 17:22:36 +02:00
#+caption : Comparison of the measured frequency response functions, the Simscape model using the 2 DoF APA model, and using the "flexible" APA300ML model (Super-Element extracted from a Finite Element Model).
2024-03-27 14:35:55 +01:00
#+attr_latex : :options [htbp]
#+begin_figure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_comp_frf_flexible_model_int}$u$ to $d_a$}
#+attr_latex : :options {0.33\textwidth}
#+begin_subfigure
#+attr_latex : :width 0.9\linewidth
[[file:figs/test_struts_comp_frf_flexible_model_int.png ]]
#+end_subfigure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_comp_frf_flexible_model_enc}$u$ to $d_e$}
#+attr_latex : :options {0.33\textwidth}
#+begin_subfigure
#+attr_latex : :width 0.9\linewidth
[[file:figs/test_struts_comp_frf_flexible_model_enc.png ]]
#+end_subfigure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_comp_frf_flexible_model_iff}$u$ to $V_s$}
#+attr_latex : :options {0.33\textwidth}
#+begin_subfigure
#+attr_latex : :width 0.9\linewidth
[[file:figs/test_struts_comp_frf_flexible_model_iff.png ]]
#+end_subfigure
#+end_figure
2024-03-27 17:03:23 +01:00
** Effect of strut misalignment
2024-03-27 14:35:55 +01:00
<<ssec:test_struts_effect_misalignment >>
2024-10-25 17:22:36 +02:00
As shown in Figure ref:fig:test_struts_comp_enc_plants, the identified dynamics from DAC voltage $u$ to encoder measured displacement $d_e$ are very different from one strut to the other.
2024-03-27 17:03:23 +01:00
In this section, it is investigated whether poor alignment of the strut (flexible joints with respect to the APA) can explain such dynamics.
For instance, consider Figure ref:fig:test_struts_misalign_schematic where there is a misalignment in the $y$ direction between the two flexible joints (well aligned thanks to the mounting procedure in Section ref:sec:test_struts_mounting) and the APA300ML.
2024-10-25 17:22:36 +02:00
In this case, the "x-bending" mode at 200Hz (see Figure ref:fig:test_struts_meas_x_bending) can be expected to have greater impact on the dynamics from the actuator to the encoder.
2024-03-27 14:35:55 +01:00
#+name : fig:test_struts_misalign_schematic
#+caption : Mis-alignement between the joints and the APA
#+attr_latex : :width 0.8\linewidth
[[file:figs/test_struts_misalign_schematic.png ]]
2024-10-25 17:22:36 +02:00
To verify this assumption, the dynamics from the output DAC voltage $u$ to the measured displacement by the encoder $d_e$ is computed using the flexible APA Simscape model for several misalignments in the $y$ direction.
The obtained dynamics are shown in Figure ref:fig:test_struts_effect_misalignment_y.
The alignment of the APA with the flexible joints has a large influence on the dynamics from actuator voltage to the measured displacement by the encoder.
2024-03-27 17:03:23 +01:00
The misalignment in the $y$ direction mostly influences:
- the presence of the flexible mode at 200Hz (see mode shape in Figure ref:fig:test_struts_mode_shapes_1)
- the location of the complex conjugate zero between the first two resonances:
2024-10-25 17:22:36 +02:00
- if $d_{y} < 0$: there is no zero between the two resonances and possibly not even between the second and third resonances
2024-10-25 14:57:22 +02:00
- if $d_{y} > 0$: there is a complex conjugate zero between the first two resonances
2024-03-27 17:03:23 +01:00
- the location of the high frequency complex conjugate zeros at 500Hz (secondary effect, as the axial stiffness of the joint also has large effect on the position of this zero)
2024-03-27 14:35:55 +01:00
2024-10-25 17:22:36 +02:00
The same can be done for misalignments in the $x$ direction.
The obtained dynamics (Figure ref:fig:test_struts_effect_misalignment_x) are showing that misalignment in the $x$ direction mostly influences the presence of the flexible mode at 300Hz (see mode shape in Figure ref:fig:test_struts_mode_shapes_2).
2024-03-27 14:35:55 +01:00
2024-10-25 17:22:36 +02:00
A comparison of the experimental frequency response functions in Figure ref:fig:test_struts_comp_enc_plants with the model dynamics for several $y$ misalignments in Figure ref:fig:test_struts_effect_misalignment_y indicates a clear similarity.
This similarity suggests that the identified differences in dynamics are caused by misalignment.
2024-03-27 14:35:55 +01:00
#+begin_src matlab
2024-03-27 17:03:23 +01:00
%% Effect of a misalignment in Y-Direction
% Considered misalignment in the Y direction
dy_aligns = [-0.5, -0.1, 0.1, 0.5]*1e-3; % [m]
2024-03-19 17:02:38 +01:00
2024-03-27 17:03:23 +01:00
% Transfer functions from u to de for all the misalignment in y direction
Gs_dy_align = {zeros(length(dy_aligns), 1)};
2024-03-19 17:02:38 +01:00
2024-03-27 17:03:23 +01:00
for i = 1:length(dy_aligns)
n_hexapod.actuator = initializeAPA('type', 'flexible', 'd_align_bot', [0; dy_aligns(i); 0], 'd_align_top', [0; dy_aligns(i); 0]);
2024-03-19 17:02:38 +01:00
2024-03-27 17:03:23 +01:00
G = exp(-s*1e-4)*linearize(mdl, io, 0.0, opts);
G.InputName = {'u'};
G.OutputName = {'Vs', 'de', 'da'};
2024-03-19 17:02:38 +01:00
2024-03-27 17:03:23 +01:00
Gs_dy_align(i) = {G};
end
2024-03-19 17:02:38 +01:00
2024-03-27 17:03:23 +01:00
%% Effect of a misalignment in X-Direction
% Considered misalignment in the X direction
dx_aligns = [-0.1, -0.05, 0.05, 0.1]*1e-3; % [m]
2024-03-19 17:02:38 +01:00
2024-03-27 17:03:23 +01:00
% Transfer functions from u to de for all the misalignment in x direction
Gs_dx_align = {zeros(length(dx_aligns), 1)};
2024-03-19 17:02:38 +01:00
2024-03-27 17:03:23 +01:00
for i = 1:length(dx_aligns)
n_hexapod.actuator = initializeAPA('type', 'flexible', 'd_align_bot', [dx_aligns(i); 0; 0], 'd_align_top', [dx_aligns(i); 0; 0]);
2024-03-19 17:02:38 +01:00
2024-03-27 17:03:23 +01:00
G = exp(-s*1e-4)*linearize(mdl, io, 0.0, opts);
G.InputName = {'u'};
G.OutputName = {'Vs', 'de', 'da'};
2024-03-19 17:02:38 +01:00
2024-03-27 17:03:23 +01:00
Gs_dx_align(i) = {G};
end
2024-03-19 17:02:38 +01:00
#+end_src
#+begin_src matlab :exports none
2024-03-27 17:03:23 +01:00
%% Transfer function from Vs to de - effect of x-misalignment
2024-03-19 17:02:38 +01:00
figure;
2024-03-25 14:42:03 +01:00
tiledlayout(3, 1, 'TileSpacing', 'Compact', 'Padding', 'None');
2024-03-19 17:02:38 +01:00
ax1 = nexttile([2,1]);
hold on;
2024-03-27 17:03:23 +01:00
for i = 1:length(dy_aligns)
plot(freqs, abs(squeeze(freqresp(Gs_dy_align{i}('de', 'u'), freqs, 'Hz'))), ...
'DisplayName', sprintf('$d_y = %.1f$ [mm]', 1e3*dy_aligns(i)));
2024-03-19 17:02:38 +01:00
end
2024-03-27 17:03:23 +01:00
plot(freqs, abs(squeeze(freqresp(Gs_flex('de', 'u'), freqs, 'Hz'))), 'k-', ...
'DisplayName', 'aligned');
2024-03-19 17:02:38 +01:00
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'log');
2024-03-25 14:42:03 +01:00
ylabel('Amplitude $d_e/u$ [m/V]'); set(gca, 'XTickLabel',[]);
2024-03-19 17:02:38 +01:00
hold off;
ylim([1e-8, 1e-3]);
2024-03-27 17:03:23 +01:00
leg = legend('location', 'southwest', 'FontSize', 8, 'NumColumns', 1);
leg.ItemTokenSize(1) = 15;
2024-03-19 17:02:38 +01:00
ax2 = nexttile;
hold on;
2024-03-27 17:03:23 +01:00
for i = 1:length(dy_aligns)
plot(freqs, 180/pi*angle(squeeze(freqresp(Gs_dy_align{i}('de', 'u'), freqs, 'Hz'))));
2024-03-19 17:02:38 +01:00
end
2024-03-27 17:03:23 +01:00
plot(freqs, 180/pi*angle(squeeze(freqresp(Gs_flex('de', 'u'), freqs, 'Hz'))), 'k-');
2024-03-19 17:02:38 +01:00
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'lin');
xlabel('Frequency [Hz]'); ylabel('Phase [deg]');
hold off;
yticks(-360:90:360); ylim([-180, 180]);
linkaxes([ax1,ax2],'x');
xlim([10, 2e3]);
2024-10-25 17:22:36 +02:00
xticks([1e1, 1e2, 1e3]);
2024-03-19 17:02:38 +01:00
#+end_src
2024-03-27 17:03:23 +01:00
#+begin_src matlab :tangle no :exports results :results file none
exportFig('figs/test_struts_effect_misalignment_y.pdf', 'width', 'half', 'height', 'tall');
2024-03-19 17:02:38 +01:00
#+end_src
#+begin_src matlab :exports none
%% Transfer function from Vs to de - effect of x-misalignment
figure;
2024-03-25 14:42:03 +01:00
tiledlayout(3, 1, 'TileSpacing', 'Compact', 'Padding', 'None');
2024-03-19 17:02:38 +01:00
ax1 = nexttile([2,1]);
hold on;
2024-03-27 17:03:23 +01:00
for i = 1:length(dx_aligns)
plot(freqs, abs(squeeze(freqresp(Gs_dx_align{i}('de', 'u'), freqs, 'Hz'))), ...
'DisplayName', sprintf('$d_x = %.1f$ [mm]', 1e3*dx_aligns(i)));
2024-03-19 17:02:38 +01:00
end
2024-03-27 17:03:23 +01:00
plot(freqs, abs(squeeze(freqresp(Gs_flex('de', 'u'), freqs, 'Hz'))), 'k-', ...
'DisplayName', 'aligned');
2024-03-19 17:02:38 +01:00
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'log');
2024-03-25 14:42:03 +01:00
ylabel('Amplitude $d_e/u$ [m/V]'); set(gca, 'XTickLabel',[]);
2024-03-19 17:02:38 +01:00
hold off;
ylim([1e-8, 1e-3]);
2024-03-27 17:03:23 +01:00
leg = legend('location', 'southwest', 'FontSize', 8, 'NumColumns', 1);
leg.ItemTokenSize(1) = 15;
2024-03-19 17:02:38 +01:00
ax2 = nexttile;
hold on;
2024-03-27 17:03:23 +01:00
for i = 1:length(dx_aligns)
plot(freqs, 180/pi*angle(squeeze(freqresp(Gs_dx_align{i}('de', 'u'), freqs, 'Hz'))));
2024-03-19 17:02:38 +01:00
end
2024-03-27 17:03:23 +01:00
plot(freqs, 180/pi*angle(squeeze(freqresp(Gs_flex('de', 'u'), freqs, 'Hz'))), 'k-');
2024-03-19 17:02:38 +01:00
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'lin');
xlabel('Frequency [Hz]'); ylabel('Phase [deg]');
hold off;
yticks(-360:90:360); ylim([-180, 180]);
linkaxes([ax1,ax2],'x');
xlim([10, 2e3]);
2024-10-25 17:22:36 +02:00
xticks([1e1, 1e2, 1e3]);
2024-03-19 17:02:38 +01:00
#+end_src
2024-03-27 17:03:23 +01:00
#+begin_src matlab :tangle no :exports results :results file none
exportFig('figs/test_struts_effect_misalignment_x.pdf', 'width', 'half', 'height', 'tall');
2024-03-19 17:02:38 +01:00
#+end_src
2024-03-27 17:03:23 +01:00
#+name : fig:test_struts_effect_misalignment
#+caption : Effect of a misalignment between the flexible joints and the APA300ML in the $y$ direction (\subref{fig:test_struts_effect_misalignment_y}) and in the $x$ direction (\subref{fig:test_struts_effect_misalignment_x})
#+attr_latex : :options [htbp]
#+begin_figure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_effect_misalignment_y}Misalignment along $y$}
#+attr_latex : :options {0.49\textwidth}
#+begin_subfigure
#+attr_latex : :width 0.95\linewidth
[[file:figs/test_struts_effect_misalignment_y.png ]]
#+end_subfigure
#+attr_latex : :caption \subcaption{\label{fig:test_struts_effect_misalignment_x}Misalignment along $x$}
#+attr_latex : :options {0.49\textwidth}
#+begin_subfigure
#+attr_latex : :width 0.95\linewidth
[[file:figs/test_struts_effect_misalignment_x.png ]]
#+end_subfigure
#+end_figure
2024-03-19 17:02:38 +01:00
2024-03-27 17:03:23 +01:00
** Measured strut misalignment
<<ssec:test_struts_meas_misalignment >>
2024-03-19 17:02:38 +01:00
2024-10-25 17:22:36 +02:00
During the initial mounting of the struts, as presented in Section ref:sec:test_struts_mounting, the positioning pins that were used to position the APA with respect to the flexible joints in the $y$ directions were not used (not received at the time).
Therefore, large $y$ misalignments are expected.
2024-03-19 17:02:38 +01:00
2024-10-25 17:22:36 +02:00
To estimate the misalignments between the two flexible joints and the APA:
- the struts were fixed horizontally on the mounting bench, as shown in Figure ref:fig:test_struts_mounting_step_3 but without the encoder
- using a length gauge[fn: 2 ] , the height difference between the flexible joints surface and the APA shell surface was measured for both the top and bottom joints and for both sides
- as the thickness of the flexible joint is $21\,mm$ and the thickness of the APA shell is $20\,mm$, $0.5\,mm$ of height difference should be measured if the two are perfectly aligned
2024-03-19 17:02:38 +01:00
2024-03-27 17:03:23 +01:00
Large variations in the $y$ misalignment are found from one strut to the other (results are summarized in Table ref:tab:test_struts_meas_y_misalignment).
2024-03-19 17:02:38 +01:00
2024-10-25 17:22:36 +02:00
To check the validity of the measurement, it can be verified that the sum of the measured thickness difference on each side is $1\,mm$ (equal to the thickness difference between the flexible joint and the APA).
Thickness differences for all the struts were found to be between $0.94\,mm$ and $1.00\,mm$ which indicate low errors compared to the misalignments found in Table ref:tab:test_struts_meas_y_misalignment.
2024-03-19 17:02:38 +01:00
2024-03-27 17:03:23 +01:00
#+begin_src matlab
%% Measurement of the y misalignment between the APA and the flexible joints
% Mesured struts
strut_nums = [1, 2, 3, 4, 5];
2024-03-19 17:02:38 +01:00
2024-03-27 17:03:23 +01:00
% Measured height differences in [mm]
% R ("red" side), B ("black" side)
% R Top B Top R Bot B Bot
strut_align = [[-0.40, -0.60, -0.16, -0.82] % Strut 1
[-0.67, -0.30, -0.34, -0.63] % Strut 2
[-0.07, -0.88, -0.16, -0.79] % Strut 3
[-0.48, -0.46, 0.07, -1.00] % Strut 4
[-0.33, -0.64, -0.48, -0.52]]; % Strut 5
2024-03-19 17:02:38 +01:00
2024-03-27 17:03:23 +01:00
% Verification that the thickness difference between the APA shell and the flexible joints is 1mm
thichness_diff_top = strut_align(:,1) + strut_align(:,2); % [mm]
thichness_diff_bot = strut_align(:,1) + strut_align(:,2); % [mm]
2024-03-19 17:02:38 +01:00
2024-03-27 17:03:23 +01:00
% Estimation of the dy misalignment
dy_bot = (strut_align(:,1) - strut_align(:,2))/2; % [mm]
dy_top = (strut_align(:,3) - strut_align(:,4))/2; % [mm]
2024-03-19 17:02:38 +01:00
#+end_src
2024-03-27 17:03:23 +01:00
#+begin_src matlab :exports results :results value table replace :tangle no :post addhdr(*this* )
data2orgtable([dy_bot, dy_top] , {'1', '2', '3', '4', '5'}, {'*Strut* ', '*Bot* ', '*Top* '}, ' %.2f ');
2024-03-19 17:02:38 +01:00
#+end_src
2024-03-27 17:03:23 +01:00
#+name : tab:test_struts_meas_y_misalignment
#+caption : Measured $y$ misalignment at the top and bottom of the APA. Measurements are in $mm$
#+attr_latex : :environment tabularx :width 0.25\linewidth :align ccc
#+attr_latex : :center t :booktabs t
2024-03-19 17:02:38 +01:00
#+RESULTS :
2024-03-27 17:03:23 +01:00
| *Strut* | *Bot* | *Top* |
|---------+-------+-------|
| 1 | 0.1 | 0.33 |
| 2 | -0.19 | 0.14 |
| 3 | 0.41 | 0.32 |
| 4 | -0.01 | 0.54 |
| 5 | 0.15 | 0.02 |
2024-03-19 17:02:38 +01:00
2024-10-25 17:22:36 +02:00
By using the measured $y$ misalignment in the Simscape model with the flexible APA model, the model dynamics from $u$ to $d_e$ is closer to the measured dynamics, as shown in Figure ref:fig:test_struts_comp_dy_tuned_model_frf_enc.
A better match in the dynamics can be obtained by fine-tuning both the $x$ and $y$ misalignments (yellow curves in Figure ref:fig:test_struts_comp_dy_tuned_model_frf_enc).
2024-03-27 17:03:23 +01:00
2024-10-25 17:22:36 +02:00
This confirms that misalignment between the APA and the strut axis (determined by the two flexible joints) is critical and inducing large variations in the dynamics from DAC voltage $u$ to encoder measured displacement $d_e$.
If encoders are fixed to the struts, the APA and flexible joints must be precisely aligned when mounting the struts.
2024-03-27 17:03:23 +01:00
In the next section, the struts are re-assembled with a "positioning pin" to better align the APA with the flexible joints.
2024-10-25 17:22:36 +02:00
With a better alignment, the amplitude of the spurious resonances is expected to decrease, as shown in Figure ref:fig:test_struts_effect_misalignment_y.
2024-03-19 17:02:38 +01:00
2024-03-25 14:42:03 +01:00
#+begin_src matlab
2024-03-27 17:03:23 +01:00
%% Idenfity the dynamics from u to de - misalignement estimated from measurement
Gs_y_align = {zeros(size(strut_align,1), 1)};
% Measured dy alignment
2024-03-25 14:42:03 +01:00
strut_align = 1e-3*[[-0.60, -0.82, -0.40, -0.16]
[-0.30, -0.63, -0.67, -0.34]
[-0.88, -0.79, -0.07, -0.16]
[-0.48, 0.07, -0.46, -1.00]
[-0.33, -0.48, -0.64, -0.52]
[-0.34, -0.42, -0.63, -0.57]];
for i = 1:size(strut_align,1)
n_hexapod.actuator = initializeAPA('type', 'flexible', ...
'd_align_bot', [0; strut_align(i, 2) - strut_align(i, 4); 0], ...
'd_align_top', [0; strut_align(i, 1) - strut_align(i, 3); 0]);
G = exp(-s*1e-4)*linearize(mdl, io, 0.0, opts);
G.InputName = {'u'};
G.OutputName = {'Vs', 'de', 'da'};
2024-03-27 17:03:23 +01:00
Gs_y_align(i) = {G};
2024-03-25 14:42:03 +01:00
end
2024-03-27 17:03:23 +01:00
%% Idenfity the dynamics from u to de - misalignement tuned to have the best match
2024-03-19 17:02:38 +01:00
d_aligns = [[-0.05, -0.3, 0];
[ 0, 0.5, 0];
[-0.1, -0.3, 0];
[ 0, 0.3, 0];
[-0.05, 0.05, 0]]'*1e-3;
2024-03-27 17:03:23 +01:00
% Idenfity the transfer function from actuator to encoder for all cases
Gs_xy_align = {zeros(size(d_aligns,2), 1)};
2024-03-19 17:02:38 +01:00
for i = 1:5
n_hexapod.actuator = initializeAPA('type', 'flexible', 'd_align_top', d_aligns(:,i), 'd_align_bot', d_aligns(:,i));
2024-03-25 14:42:03 +01:00
G = exp(-s*1e-4)*linearize(mdl, io, 0.0, opts);
G.InputName = {'u'};
G.OutputName = {'Vs', 'de', 'da'};
2024-03-19 17:02:38 +01:00
2024-03-27 17:03:23 +01:00
Gs_xy_align(i) = {G};
2024-03-19 17:02:38 +01:00
end
#+end_src
#+begin_src matlab :exports none
%% Comparison of the plants (encoder output) when tuning the misalignment
figure;
2024-03-27 17:03:23 +01:00
tiledlayout(1, 3, 'TileSpacing', 'Compact', 'Padding', 'None');
2024-03-19 17:02:38 +01:00
ax1 = nexttile();
hold on;
2024-03-27 17:03:23 +01:00
plot(f, abs(enc_frf(:, 1)), 'DisplayName', 'Measurement');
plot(freqs, abs(squeeze(freqresp(Gs_y_align{1}('de', 'u'), freqs, 'Hz'))), ...
'DisplayName', '$d_y$ from meas');
plot(freqs, abs(squeeze(freqresp(Gs_xy_align{1}('de', 'u'), freqs, 'Hz'))), ...
'DisplayName', 'Tuned $d_x$, $d_y$');
2024-03-19 17:02:38 +01:00
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'log');
2024-03-27 17:03:23 +01:00
xlabel('Frequency [Hz]'); ylabel('Amplitude [m/V]');
2024-03-27 17:53:04 +01:00
leg = legend('location', 'southwest', 'FontSize', 8, 'NumColumns', 1);
2024-03-27 17:03:23 +01:00
leg.ItemTokenSize(1) = 15;
title('Strut 1');
xticks([1e1, 1e2, 1e3]);
2024-03-19 17:02:38 +01:00
ax2 = nexttile();
hold on;
2024-03-27 17:03:23 +01:00
plot(f, abs(enc_frf(:, 2)), 'DisplayName', 'Measurement');
plot(freqs, abs(squeeze(freqresp(Gs_y_align{2}('de', 'u'), freqs, 'Hz'))), ...
'DisplayName', '$d_y$ from meas');
plot(freqs, abs(squeeze(freqresp(Gs_xy_align{2}('de', 'u'), freqs, 'Hz'))), ...
'DisplayName', 'Tuned $d_x$, $d_y$');
2024-03-19 17:02:38 +01:00
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'log');
xlabel('Frequency [Hz]'); set(gca, 'YTickLabel',[]);
2024-03-27 17:53:04 +01:00
leg = legend('location', 'southwest', 'FontSize', 8, 'NumColumns', 1);
2024-03-27 17:03:23 +01:00
leg.ItemTokenSize(1) = 15;
title('Strut 2');
xticks([1e1, 1e2, 1e3]);
2024-03-19 17:02:38 +01:00
2024-03-27 17:03:23 +01:00
ax3 = nexttile();
2024-03-19 17:02:38 +01:00
hold on;
2024-03-27 17:03:23 +01:00
plot(f, abs(enc_frf(:, 3)), 'DisplayName', 'Measuremnet');
plot(freqs, abs(squeeze(freqresp(Gs_y_align{3}('de', 'u'), freqs, 'Hz'))), ...
'DisplayName', '$d_y$ from meas');
plot(freqs, abs(squeeze(freqresp(Gs_xy_align{3}('de', 'u'), freqs, 'Hz'))), ...
'DisplayName', 'Tuned $d_x$, $d_y$');
2024-03-19 17:02:38 +01:00
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'log');
xlabel('Frequency [Hz]'); set(gca, 'YTickLabel',[]);
2024-03-27 17:53:04 +01:00
leg = legend('location', 'southwest', 'FontSize', 8, 'NumColumns', 1);
2024-03-27 17:03:23 +01:00
leg.ItemTokenSize(1) = 15;
title('Strut 3');
xticks([1e1, 1e2, 1e3]);
2024-03-19 17:02:38 +01:00
2024-03-27 17:03:23 +01:00
linkaxes([ax1,ax2,ax3],'xy');
xlim([10, 2e3]); ylim([1e-8, 1e-3]);
2024-03-19 17:02:38 +01:00
#+end_src
#+begin_src matlab :tangle no :exports results :results file replace
2024-03-27 17:03:23 +01:00
exportFig('figs/test_struts_comp_dy_tuned_model_frf_enc.pdf', 'width', 'full', 'height', 'normal');
2024-03-19 17:02:38 +01:00
#+end_src
2024-03-27 17:03:23 +01:00
#+name : fig:test_struts_comp_dy_tuned_model_frf_enc
2024-10-25 17:22:36 +02:00
#+caption : Comparison of the frequency response functions from DAC voltage $u$ to measured displacement $d_e$ by the encoders for the three struts. In blue, the measured dynamics is represted, in red the dynamics extracted from the model with the $y$ misalignment estimated from measurements, and in yellow, the dynamics extracted from the model when both the $x$ and $y$ misalignments are tuned
2024-03-19 17:02:38 +01:00
#+RESULTS :
2024-03-27 17:03:23 +01:00
[[file:figs/test_struts_comp_dy_tuned_model_frf_enc.png ]]
2024-03-19 17:02:38 +01:00
2024-03-27 17:03:23 +01:00
** Proper struts alignment
2024-03-27 14:35:55 +01:00
<<sec:test_struts_meas_all_aligned_struts >>
2024-10-25 17:22:36 +02:00
After receiving the positioning pins, the struts were mounted again with the positioning pins.
This should improve the alignment of the APA with the two flexible joints.
2024-03-27 14:35:55 +01:00
2024-10-25 17:22:36 +02:00
The alignment is then estimated using a length gauge, as described in the previous sections.
Measured $y$ alignments are summarized in Table ref:tab:test_struts_meas_y_misalignment_with_pin and are found to be bellow $55\mu m$ for all the struts, which is much better than before (see Table ref:tab:test_struts_meas_y_misalignment).
2024-03-27 14:35:55 +01:00
#+begin_src matlab
2024-03-27 17:53:04 +01:00
%% Measurement of the y misalignment between the APA and the flexible joints after strut better alignment
% Numbers of the measured legs
strut_align_nums = [1 2 3 4 5 6];
% Measured height differences in [mm]
% R ("red" side), B ("black" side)
% R Top B Top R Bot B Bot
2024-03-27 14:35:55 +01:00
strut_align = [[-0.54, -0.50, -0.50, -0.52] % strut 1
[-0.44, -0.55, -0.49, -0.49] % strut 2
[-0.48, -0.50, -0.50, -0.46] % strut 3
[-0.45, -0.51, -0.51, -0.45] % strut 4
[-0.50, -0.50, -0.50, -0.50] % strut 5
[-0.50, -0.49, -0.43, -0.54]]; % strut 6
2024-03-27 17:53:04 +01:00
% Verification that the thickness difference between the APA shell and the flexible joints is 1mm
thichness_diff_top = strut_align(:,1) + strut_align(:,2); % [mm]
thichness_diff_bot = strut_align(:,1) + strut_align(:,2); % [mm]
2024-03-27 14:35:55 +01:00
2024-03-27 17:53:04 +01:00
% Estimation of the dy misalignment
dy_bot = (strut_align(:,1) - strut_align(:,2))/2; % [mm]
dy_top = (strut_align(:,3) - strut_align(:,4))/2; % [mm]
2024-03-27 14:35:55 +01:00
#+end_src
#+begin_src matlab :exports results :results value table replace :tangle no :post addhdr(*this* )
2024-03-27 17:53:04 +01:00
data2orgtable([dy_bot, dy_top] , {'1', '2', '3', '4', '5', '6'}, {'*Strut* ', '*Bot* ', '*Top* '}, ' %.3f ');
2024-03-27 14:35:55 +01:00
#+end_src
2024-03-27 17:53:04 +01:00
#+name : tab:test_struts_meas_y_misalignment_with_pin
#+caption : Measured $y$ misalignment at the top and bottom of the APA after realigning the struts using a positioning pin. Measurements are in $mm$.
#+attr_latex : :environment tabularx :width 0.25\linewidth :align ccc
#+attr_latex : :center t :booktabs t
2024-03-27 14:35:55 +01:00
#+RESULTS :
2024-03-27 17:53:04 +01:00
| *Strut* | *Bot* | *Top* |
|---------+--------+-------|
| 1 | -0.02 | 0.01 |
| 2 | 0.055 | 0.0 |
| 3 | 0.01 | -0.02 |
| 4 | 0.03 | -0.03 |
| 5 | 0.0 | 0.0 |
| 6 | -0.005 | 0.055 |
2024-03-27 14:35:55 +01:00
2024-10-25 17:22:36 +02:00
The dynamics of the re-aligned struts were then measured on the same test bench (Figure ref:fig:test_struts_bench_leg).
A comparison of the initial strut dynamics and the dynamics of the re-aligned struts (i.e. with the positioning pin) is presented in Figure ref:fig:test_struts_comp_enc_frf_realign.
2024-03-27 17:53:04 +01:00
Even though the struts are now much better aligned, not much improvement can be observed.
2024-10-25 17:22:36 +02:00
The dynamics of the six aligned struts were also quite different from one another.
2024-03-27 14:35:55 +01:00
2024-10-25 17:22:36 +02:00
The fact that the encoders are fixed to the struts makes the control more challenging.
Therefore, fixing the encoders to the nano-hexapod plates instead may be an interesting option.
2024-03-27 14:35:55 +01:00
#+begin_src matlab
2024-03-27 17:53:04 +01:00
%% New dynamical identified with re-aligned struts
% Load the identification data
2024-03-27 14:35:55 +01:00
leg_noise = {};
2024-03-27 17:53:04 +01:00
for i = 1:length(strut_align_nums)
leg_noise(i) = {load(sprintf('frf_struts_align_ %i_noise.mat', strut_align_nums(i)), 'u', 'Vs', 'de')};
2024-03-27 14:35:55 +01:00
end
2024-03-27 17:53:04 +01:00
% Parameters for Frequency Analysis
2024-03-27 14:35:55 +01:00
Ts = 1e-4; % Sampling Time [s]
2024-03-27 17:53:04 +01:00
Nfft = floor(1/Ts); % Number of points for the FFT computation
win = hanning(Nfft); % Hanning window
Noverlap = floor(Nfft/2); % Overlap between frequency analysis
2024-03-27 14:35:55 +01:00
% Only used to have the frequency vector "f"
[~, f] = tfestimate(leg_noise{1}.u, leg_noise{1}.de, win, Noverlap, Nfft, 1/Ts);
2024-03-27 17:53:04 +01:00
% Transfer function from u to de (encoder)
enc_frf_aligned = zeros(length(f), length(strut_align_nums));
2024-03-27 14:35:55 +01:00
2024-03-27 17:53:04 +01:00
for i = 1:length(strut_align_nums)
enc_frf_aligned(:, i) = tfestimate(leg_noise{i}.u, leg_noise{i}.de, win, Noverlap, Nfft, 1/Ts);
2024-03-27 14:35:55 +01:00
end
#+end_src
#+begin_src matlab :exports none
%% Bode plot of the FRF from u to de
figure;
hold on;
2024-03-27 17:53:04 +01:00
plot(f, abs(enc_frf(:, 1)), 'color', [colors(1,:), 0.5], ...
'DisplayName', 'Initial alignment');
2024-03-27 14:35:55 +01:00
for i = 1:length(strut_nums)
2024-03-27 17:53:04 +01:00
plot(f, abs(enc_frf(:, i)), 'color', [colors(1,:), 0.5], ...
'HandleVisibility', 'off');
end
plot(f, abs(enc_frf_aligned(:, 1)), 'color', [colors(2,:), 0.5], ...
'DisplayName', 'With positioning pin');
for i = 1:length(strut_align_nums)
plot(f, abs(enc_frf_aligned(:, i)), 'color', [colors(2,:), 0.5], ...
'HandleVisibility', 'off');
2024-03-27 14:35:55 +01:00
end
hold off;
set(gca, 'XScale', 'log'); set(gca, 'YScale', 'log');
2024-10-25 17:22:36 +02:00
xlabel('Frequency [Hz]'); ylabel('Amplitude $d_e/u$ [m/V]');
legend('location', 'southwest', 'FontSize', 8, 'NumColumns', 1);
2024-03-27 14:35:55 +01:00
xlim([10, 2e3]);
2024-10-25 17:22:36 +02:00
ylim([1e-8, 1e-3]);
2024-03-27 14:35:55 +01:00
#+end_src
#+begin_src matlab :tangle no :exports results :results file replace
2024-10-25 17:22:36 +02:00
exportFig('figs/test_struts_comp_enc_frf_realign.pdf', 'width', 'wide', 'height', 'normal');
2024-03-27 14:35:55 +01:00
#+end_src
2024-03-27 17:53:04 +01:00
#+name : fig:test_struts_comp_enc_frf_realign
2024-10-25 17:22:36 +02:00
#+caption : Comparison of the dynamics from $u$ to $d_e$ before and after proper alignment using the dowel pins
2024-03-27 14:35:55 +01:00
#+RESULTS :
2024-03-27 17:53:04 +01:00
[[file:figs/test_struts_comp_enc_frf_realign.png ]]
2024-03-27 14:35:55 +01:00
2024-10-25 17:22:36 +02:00
* Conclusion
<<sec:test_struts_conclusion >>
2024-03-27 17:53:04 +01:00
2024-10-25 17:22:36 +02:00
The Hano-Hexapod struts are a key component of the developed acrfull:nass.
A mounting bench was used to obtain struts with good interface coaxiality, equal lengths, and ideally the same dynamics.
Using a test bench, it was found that while all the mounted struts had extremely similar dynamics when considering the axial motion and the integrated force sensor, the dynamics as seen by the encoder is much more complex and varied from one strut to the other.
2024-03-19 17:02:38 +01:00
2024-10-25 17:22:36 +02:00
Thanks to a acrshort:fem and experimental measurements, the modes inducing this complex dynamics was identified.
The variability in the dynamics was attributed to the poor alignment of the acrshort:apa with respect to the flexible joints.
Even with better alignment using dowel pins, the observed dynamics by the encoder remained problematic.
Therefore, the encoders will be fixed directly to the nano-hexapod plates rather than being fixed to the struts.
2024-03-19 17:02:38 +01:00
2024-10-25 17:22:36 +02:00
* Glossary :ignore:
[[printglossaries: ]]
2024-03-19 15:18:57 +01:00
2024-10-25 17:22:36 +02:00
# #+latex: \printglossary[type=\acronymtype]
# #+latex: \printglossary[type=\glossarytype]
# #+latex: \printglossary
2024-03-19 15:18:57 +01:00
* Helping Functions :noexport:
** Initialize Path
#+NAME : m-init-path
#+BEGIN_SRC matlab
%% Path for functions, data and scripts
addpath('./matlab/mat/ '); % Path for data
2024-03-25 10:55:31 +01:00
addpath('./matlab/src/ '); % Path for functions
2024-03-19 15:18:57 +01:00
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
2024-03-25 10:55:31 +01:00
addpath('./src/ '); % Path for functions
2024-03-19 15:18:57 +01:00
#+END_SRC
2024-03-25 14:42:03 +01:00
** Initialize Simscape
#+NAME : m-init-path-simscape
#+BEGIN_SRC matlab
addpath('./matlab/STEPS/ '); % Path for Simscape Model
%% Linearization options
opts = linearizeOptions;
opts.SampleTime = 0;
%% Open Simscape Model
mdl = 'test_struts_simscape'; % Name of the Simulink File
open(mdl); % Open Simscape Model
#+END_SRC
#+NAME : m-init-path-simscape-tangle
#+BEGIN_SRC matlab
addpath('./STEPS/ '); % Path for Simscape Model
%% Linearization options
opts = linearizeOptions;
opts.SampleTime = 0;
%% Open Simscape Model
mdl = 'test_struts_simscape'; % Name of the Simulink File
open(mdl); % Open Simscape Model
#+END_SRC
2024-03-19 15:18:57 +01:00
** Initialize other elements
#+NAME : m-init-other
#+BEGIN_SRC matlab
%% Colors for the figures
colors = colororder;
#+END_SRC
2024-03-19 17:02:38 +01:00
** =initializeBotFlexibleJoint= - Initialize Flexible Joint
:PROPERTIES:
2024-03-19 17:29:51 +01:00
:header-args:matlab: :tangle matlab/src/initializeBotFlexibleJoint.m
2024-03-19 17:02:38 +01:00
:header-args:matlab+: :comments none :mkdirp yes :eval no
:END:
<<sec:initializeBotFlexibleJoint >>
*** Function description
:PROPERTIES:
:UNNUMBERED: t
:END:
#+begin_src matlab
function [flex_bot] = initializeBotFlexibleJoint(args)
% initializeBotFlexibleJoint -
%
% Syntax: [flex_bot] = initializeBotFlexibleJoint(args)
%
% Inputs:
% - args -
%
% Outputs:
% - flex_bot -
#+end_src
*** Optional Parameters
:PROPERTIES:
:UNNUMBERED: t
:END:
#+begin_src matlab
arguments
args.type char {mustBeMember(args.type,{'2dof', '3dof', '4dof'})} = '2dof'
args.kRx (6,1) double {mustBeNumeric, mustBePositive} = ones(6,1)*5
args.kRy (6,1) double {mustBeNumeric, mustBePositive} = ones(6,1)*5
args.kRz (6,1) double {mustBeNumeric, mustBePositive} = ones(6,1)*260
args.kz (6,1) double {mustBeNumeric, mustBePositive} = ones(6,1)*7e7
args.cRx (6,1) double {mustBeNumeric, mustBePositive} = ones(6,1)*0.001
args.cRy (6,1) double {mustBeNumeric, mustBePositive} = ones(6,1)*0.001
args.cRz (6,1) double {mustBeNumeric, mustBePositive} = ones(6,1)*0.001
args.cz (6,1) double {mustBeNumeric, mustBePositive} = ones(6,1)*0.001
end
#+end_src
*** Initialize the structure
:PROPERTIES:
:UNNUMBERED: t
:END:
#+begin_src matlab
flex_bot = struct();
#+end_src
*** Set the Joint's type
:PROPERTIES:
:UNNUMBERED: t
:END:
#+begin_src matlab
switch args.type
case '2dof'
flex_bot.type = 1;
case '3dof'
flex_bot.type = 2;
case '4dof'
flex_bot.type = 3;
end
#+end_src
*** Set parameters
:PROPERTIES:
:UNNUMBERED: t
:END:
#+begin_src matlab
flex_bot.kRx = args.kRx;
flex_bot.kRy = args.kRy;
flex_bot.kRz = args.kRz;
flex_bot.kz = args.kz;
#+end_src
#+begin_src matlab
flex_bot.cRx = args.cRx;
flex_bot.cRy = args.cRy;
flex_bot.cRz = args.cRz;
flex_bot.cz = args.cz;
#+end_src
** =initializeTopFlexibleJoint= - Initialize Flexible Joint
:PROPERTIES:
2024-03-19 17:29:51 +01:00
:header-args:matlab: :tangle matlab/src/initializeTopFlexibleJoint.m
2024-03-19 17:02:38 +01:00
:header-args:matlab+: :comments none :mkdirp yes :eval no
:END:
<<sec:initializeTopFlexibleJoint >>
*** Function description
:PROPERTIES:
:UNNUMBERED: t
:END:
#+begin_src matlab
function [flex_top] = initializeTopFlexibleJoint(args)
% initializeTopFlexibleJoint -
%
% Syntax: [flex_top] = initializeTopFlexibleJoint(args)
%
% Inputs:
% - args -
%
% Outputs:
% - flex_top -
#+end_src
*** Optional Parameters
:PROPERTIES:
:UNNUMBERED: t
:END:
#+begin_src matlab
arguments
args.type char {mustBeMember(args.type,{'2dof', '3dof', '4dof'})} = '2dof'
args.kRx (6,1) double {mustBeNumeric, mustBePositive} = ones(6,1)*5
args.kRy (6,1) double {mustBeNumeric, mustBePositive} = ones(6,1)*5
args.kRz (6,1) double {mustBeNumeric, mustBePositive} = ones(6,1)*260
args.kz (6,1) double {mustBeNumeric, mustBePositive} = ones(6,1)*7e7
args.cRx (6,1) double {mustBeNumeric, mustBePositive} = ones(6,1)*0.001
args.cRy (6,1) double {mustBeNumeric, mustBePositive} = ones(6,1)*0.001
args.cRz (6,1) double {mustBeNumeric, mustBePositive} = ones(6,1)*0.001
args.cz (6,1) double {mustBeNumeric, mustBePositive} = ones(6,1)*0.001
end
#+end_src
*** Initialize the structure
:PROPERTIES:
:UNNUMBERED: t
:END:
#+begin_src matlab
flex_top = struct();
#+end_src
*** Set the Joint's type
:PROPERTIES:
:UNNUMBERED: t
:END:
#+begin_src matlab
switch args.type
case '2dof'
flex_top.type = 1;
case '3dof'
flex_top.type = 2;
case '4dof'
flex_top.type = 3;
end
#+end_src
*** Set parameters
:PROPERTIES:
:UNNUMBERED: t
:END:
#+begin_src matlab
flex_top.kRx = args.kRx;
flex_top.kRy = args.kRy;
flex_top.kRz = args.kRz;
flex_top.kz = args.kz;
#+end_src
#+begin_src matlab
flex_top.cRx = args.cRx;
flex_top.cRy = args.cRy;
flex_top.cRz = args.cRz;
flex_top.cz = args.cz;
#+end_src
** =initializeAPA= - Initialize APA
:PROPERTIES:
2024-03-25 14:42:03 +01:00
:header-args:matlab+: :tangle matlab/src/initializeAPA.m
2024-03-19 17:02:38 +01:00
:header-args:matlab+: :comments none :mkdirp yes :eval no
:END:
<<sec:initializeAPA >>
*** Function description
:PROPERTIES:
:UNNUMBERED: t
:END:
#+begin_src matlab
function [actuator] = initializeAPA(args)
% initializeAPA -
%
% Syntax: [actuator] = initializeAPA(args)
%
% Inputs:
% - args -
%
% Outputs:
% - actuator -
#+end_src
*** Optional Parameters
:PROPERTIES:
:UNNUMBERED: t
:END:
#+begin_src matlab
arguments
args.type char {mustBeMember(args.type,{'2dof', 'flexible frame', 'flexible'})} = '2dof'
% Actuator and Sensor constants
args.Ga (1,1) double {mustBeNumeric} = 0
args.Gs (1,1) double {mustBeNumeric} = 0
% For 2DoF
2024-03-25 14:42:03 +01:00
args.k (6,1) double {mustBeNumeric, mustBePositive} = ones(6,1)*380000
args.ke (6,1) double {mustBeNumeric, mustBePositive} = ones(6,1)*4952605
args.ka (6,1) double {mustBeNumeric, mustBePositive} = ones(6,1)*2476302
2024-03-19 17:02:38 +01:00
2024-03-25 14:42:03 +01:00
args.c (6,1) double {mustBeNumeric, mustBePositive} = ones(6,1)*20
args.ce (6,1) double {mustBeNumeric, mustBePositive} = ones(6,1)*200
args.ca (6,1) double {mustBeNumeric, mustBePositive} = ones(6,1)*100
2024-03-19 17:02:38 +01:00
args.Leq (6,1) double {mustBeNumeric} = ones(6,1)*0.056
% Force Flexible APA
args.xi (1,1) double {mustBeNumeric, mustBePositive} = 0.01
args.d_align_bot (3,1) double {mustBeNumeric} = zeros(3,1) % [m]
args.d_align_top (3,1) double {mustBeNumeric} = zeros(3,1) % [m]
% For Flexible Frame
args.ks (1,1) double {mustBeNumeric, mustBePositive} = 235e6
args.cs (1,1) double {mustBeNumeric, mustBePositive} = 1e1
end
#+end_src
*** Initialize Structure
:PROPERTIES:
:UNNUMBERED: t
:END:
#+begin_src matlab
actuator = struct();
#+end_src
*** Type
:PROPERTIES:
:UNNUMBERED: t
:END:
#+begin_src matlab
switch args.type
case '2dof'
actuator.type = 1;
case 'flexible frame'
actuator.type = 2;
case 'flexible'
actuator.type = 3;
end
#+end_src
*** Actuator/Sensor Constants
:PROPERTIES:
:UNNUMBERED: t
:END:
#+begin_src matlab
if args.Ga == 0
switch args.type
case '2dof'
2024-03-25 14:42:03 +01:00
actuator.Ga = -2.5796;
2024-03-19 17:02:38 +01:00
case 'flexible frame'
actuator.Ga = 1; % TODO
case 'flexible'
2024-03-25 14:42:03 +01:00
actuator.Ga = 23.2;
2024-03-19 17:02:38 +01:00
end
else
actuator.Ga = args.Ga; % Actuator gain [N/V]
end
#+end_src
#+begin_src matlab
if args.Gs == 0
switch args.type
case '2dof'
2024-03-25 14:42:03 +01:00
actuator.Gs = 466664;
2024-03-19 17:02:38 +01:00
case 'flexible frame'
actuator.Gs = 1; % TODO
case 'flexible'
2024-03-25 14:42:03 +01:00
actuator.Gs = -4898341;
2024-03-19 17:02:38 +01:00
end
else
actuator.Gs = args.Gs; % Sensor gain [V/m]
end
#+end_src
*** 2DoF parameters
:PROPERTIES:
:UNNUMBERED: t
:END:
#+begin_src matlab
actuator.k = args.k; % [N/m]
actuator.ke = args.ke; % [N/m]
actuator.ka = args.ka; % [N/m]
actuator.c = args.c; % [N/(m/s)]
actuator.ce = args.ce; % [N/(m/s)]
actuator.ca = args.ca; % [N/(m/s)]
actuator.Leq = args.Leq; % [m]
#+end_src
*** Flexible frame and fully flexible
:PROPERTIES:
:UNNUMBERED: t
:END:
#+begin_src matlab
switch args.type
case 'flexible frame'
actuator.K = readmatrix('APA300ML_b_mat_K.CSV'); % Stiffness Matrix
actuator.M = readmatrix('APA300ML_b_mat_M.CSV'); % Mass Matrix
actuator.P = extractNodes('APA300ML_b_out_nodes_3D.txt'); % Node coordinates [m]
case 'flexible'
actuator.K = readmatrix('full_APA300ML_K.CSV'); % Stiffness Matrix
actuator.M = readmatrix('full_APA300ML_M.CSV'); % Mass Matrix
actuator.P = extractNodes('full_APA300ML_out_nodes_3D.txt'); % Node coordiantes [m]
actuator.d_align_bot = args.d_align_bot;
actuator.d_align_top = args.d_align_top;
end
actuator.xi = args.xi; % Damping ratio
actuator.ks = args.ks; % Stiffness of one stack [N/m]
actuator.cs = args.cs; % Damping of one stack [N/m]
#+end_src
2024-03-25 18:13:22 +01:00
* Footnotes
2024-10-25 14:57:22 +02:00
2024-10-25 17:22:36 +02:00
[fn:7] OFV-3001 controller and OFV512 sensor head from Polytec
2024-10-25 14:57:22 +02:00
[fn:6] Vionic from Renishaw
2024-10-25 17:22:36 +02:00
[fn:5] APA300ML from Cedrat Technologies
2024-10-25 14:57:22 +02:00
[fn:4] Two fiber intereferometers were used: an IDS3010 from Attocube and a quDIS from QuTools
2024-10-25 17:22:36 +02:00
[fn:3] Using Ansys\textsuperscript{\textregistered}. Flexible Joints and APA Shell are made of a stainless steel allow called /17-4 PH/ . Encoder and ruler support material is aluminium.
2024-10-25 14:57:22 +02:00
[fn:2] Heidenhain MT25, specified accuracy of $\pm 0.5\,\mu m$
[fn:1] Faro Arm Platinum 4ft, specified accuracy of $\pm 13\mu m$