2024-03-19 15:11:22 +01:00
#+TITLE : Micro-Station - Modal Analysis
: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 ""
2024-10-24 09:50:55 +02:00
#+LATEX_CLASS : scrreprt
#+LATEX_CLASS_OPTIONS : [a4paper, 10pt, DIV=12, parskip=full, bibliography=totoc]
#+LATEX_HEADER : \input{preamble.tex}
#+LATEX_HEADER_EXTRA : \input{preamble_extra.tex}
2024-10-24 17:42:18 +02:00
#+LATEX_HEADER_EXTRA : \bibliography{modal-analysis.bib}
2024-03-19 15:11:22 +01:00
#+BIND : org-latex-bib-compiler "biber"
#+PROPERTY : header-args:matlab :session *MATLAB*
#+PROPERTY : header-args:matlab+ :comments org
#+PROPERTY : header-args:matlab+ :exports none
#+PROPERTY : header-args:matlab+ :results none
#+PROPERTY : header-args:matlab+ :eval no-export
#+PROPERTY : header-args:matlab+ :noweb yes
#+PROPERTY : header-args:matlab+ :mkdirp yes
#+PROPERTY : header-args:matlab+ :output-dir figs
#+PROPERTY : header-args:matlab+ :tangle no
#+PROPERTY : header-args:latex :headers '("\\usepackage{tikz}" "\\usepackage{import}" "\\import{$HOME/Cloud/tikz/org/}{config.tex}")
#+PROPERTY : header-args:latex+ :imagemagick t :fit yes
#+PROPERTY : header-args:latex+ :iminoptions -scale 100% -density 150
#+PROPERTY : header-args:latex+ :imoutoptions -quality 100
#+PROPERTY : header-args:latex+ :results file raw replace
#+PROPERTY : header-args:latex+ :buffer no
#+PROPERTY : header-args:latex+ :tangle no
#+PROPERTY : header-args:latex+ :eval no-export
#+PROPERTY : header-args:latex+ :exports results
#+PROPERTY : header-args:latex+ :mkdirp yes
#+PROPERTY : header-args:latex+ :output-dir figs
#+PROPERTY : header-args:latex+ :post pdf2svg(file=*this*, ext="png")
:END:
#+begin_export html
<hr >
<p >This report is also available as a <a href="./modal-analysis.pdf" >pdf</a >.</p >
<hr >
#+end_export
#+latex : \clearpage
* Build :noexport:
#+NAME : startblock
#+BEGIN_SRC emacs-lisp :results none :tangle no
(add-to-list 'org-latex-classes
'("scrreprt"
"\\documentclass{scrreprt}"
("\\chapter{%s}" . "\\chapter*{%s}")
("\\section{%s}" . "\\section*{%s}")
("\\subsection{%s}" . "\\subsection*{%s}")
("\\paragraph{%s}" . "\\paragraph*{%s}")
))
;; Remove automatic org heading labels
(defun my-latex-filter-removeOrgAutoLabels (text backend info)
"Org-mode automatically generates labels for headings despite explicit use of `#+LABEL`. This filter forcibly removes all automatically generated org-labels in headings."
(when (org-export-derived-backend-p backend 'latex)
(replace-regexp-in-string "\\\\label{sec:org[a-f0-9]+}\n" "" text)))
(add-to-list 'org-export-filter-headline-functions
'my-latex-filter-removeOrgAutoLabels)
;; Remove all org comments in the output LaTeX file
(defun delete-org-comments (backend)
(loop for comment in (reverse (org-element-map (org-element-parse-buffer)
'comment 'identity))
do
(setf (buffer-substring (org-element-property :begin comment)
(org-element-property :end comment))
"")))
(add-hook 'org-export-before-processing-hook 'delete-org-comments)
;; Use no package by default
(setq org-latex-packages-alist nil)
(setq org-latex-default-packages-alist nil)
;; Do not include the subtitle inside the title
(setq org-latex-subtitle-separate t)
(setq org-latex-subtitle-format "\\subtitle{%s}")
(setq org-export-before-parsing-hook '(org-ref-glossary-before-parsing
org-ref-acronyms-before-parsing))
#+END_SRC
2024-06-26 16:17:00 +02:00
* Notes :noexport:
Prefix is =modal=
2024-10-24 18:53:51 +02:00
2024-10-24 17:42:18 +02:00
** DONE [#C] Section ref:ssec:modal_solid_body_first_check can probably be removed
CLOSED: [2024-10-24 Thu 10:08]
2024-06-26 17:58:36 +02:00
As the solid body assumption is already verified in section ref:ssec:modal_solid_body_assumption.
2024-06-26 16:17:00 +02:00
2024-10-24 18:53:51 +02:00
** DONE [#A] Make sure the synthesis of FRF from modal model is working as expected
CLOSED: [2024-10-24 Thu 17:42]
2024-10-24 17:42:18 +02:00
** TODO [#B] Add all notation
| | |
|-----+----------------------------------|
| n | number of measured DoF (69) |
| p | number of force excitation (3) |
| q | number of frequency points (801) |
| m | number of considered modes (16) |
| ... | |
2024-10-24 09:50:55 +02:00
* Glossary and Acronyms - Tables :ignore:
#+name : glossary
| label | name | description |
|-------+-------------------------+---------------------------------------------|
| psdx | \ensuremath{\Phi_{x}} | Power spectral density of signal $x$ |
| asdx | \ensuremath{\Gamma_{x}} | Amplitude spectral density of signal $x$ |
| cpsx | \ensuremath{\Phi_{x}} | Cumulative Power Spectrum of signal $x$ |
| casx | \ensuremath{\Gamma_{x}} | Cumulative Amplitude Spectrum of signal $x$ |
#+name : acronyms
| key | abbreviation | full form |
|------+--------------+----------------------------------|
| nass | NASS | Nano Active Stabilization System |
| asd | ASD | Amplitude Spectral Density |
| psd | PSD | Power Spectral Density |
| frf | FRF | Frequency Response Function |
| dof | DoF | Degree of freedom |
2024-10-24 17:42:18 +02:00
| svd | SVD | Singular Value Decomposition |
| mif | MIF | Mode Indicator Functions |
2024-10-24 09:50:55 +02:00
2024-03-19 15:11:22 +01:00
* Introduction :ignore:
2024-10-24 19:33:24 +02:00
To further improve the accuracy of the performance predictions, a model that better represents the micro-station dynamics is required.
A multi-body model consisting of several rigid bodies connected by kinematic constraints (i.e. joints), springs and damper elements is a good candidate to model the micro-station.
2024-03-19 15:11:22 +01:00
2024-10-24 19:33:24 +02:00
Although the inertia of each solid body can easily be estimated from its geometry and material density, it is more difficult to properly estimate the stiffness and damping properties of the guiding elements connecting each solid body.
Experimental modal analysis will be use to tune the model, and to verify that a multi-body model can accurately represent the dynamics of the micro-station.
2024-03-19 15:11:22 +01:00
2024-10-24 19:33:24 +02:00
The tuning approach for the multi-body model based on measurements is illustrated in Figure ref:fig:modal_vibration_analysis_procedure.
2024-06-26 16:17:00 +02:00
First, a /response model/ is obtained, which corresponds to a set of frequency response functions computed from experimental measurements.
2024-10-24 19:33:24 +02:00
From this response model, the modal model can be computed, which consists of two matrices: one containing the natural frequencies and damping factors of the considered modes, and another describing the mode shapes.
This modal model can then be used to tune the spatial model (i.e. the multi-body model), that is, to tune the mass of the considering solid bodies and the springs and dampers connecting the solid bodies.
2024-03-19 15:11:22 +01:00
2024-06-26 16:17:00 +02:00
#+begin_src latex :file modal_vibration_analysis_procedure.pdf
\begin{tikzpicture}
\node[block, inner sep = 8pt, align=center] (1) {Description\\of structure};
\node[block, inner sep = 8pt, align=center, left=1.0 of 1] (2) {Vibration\\Modes};
\node[block, inner sep = 8pt, align=center, left=1.0 of 2] (3) {Response\\Levels};
2024-03-19 15:11:22 +01:00
2024-06-26 16:17:00 +02:00
\draw[<- >] (1) -- (2);
\draw[<- >] (2) -- (3);
2024-03-19 15:11:22 +01:00
2024-06-26 16:17:00 +02:00
\node[above] (labelt) at (1.north) {Spatial Model};
\node[] at (2|-labelt) {Modal Model};
\node[] at (3|-labelt) {Response Model};
2024-03-19 15:11:22 +01:00
2024-06-26 16:17:00 +02:00
\node[align = center, font= \tiny, below] (labelb) at (1.south) {Mass\\Stiffness\\Damping};
\node[align = center, font= \tiny] at (2|-labelb) {Natural Frequencies\\Mode Shapes\\};
\node[align = center, font= \tiny] at (3|-labelb) {Time Responses\\Frequency Responses\\};
\end{tikzpicture}
#+end_src
2024-03-19 15:11:22 +01:00
2024-06-26 16:17:00 +02:00
#+name : fig:modal_vibration_analysis_procedure
2024-10-24 19:33:24 +02:00
#+caption : Three models of the same structure. The goal is to tune a spatial model (i.e. mass, stiffness and damping properties) from a response model. The modal model can be used as an intermediate step.
2024-06-26 16:17:00 +02:00
#+RESULTS :
[[file:figs/modal_vibration_analysis_procedure.png ]]
2024-03-19 15:11:22 +01:00
2024-10-24 19:33:24 +02:00
The measurement setup used to obtain the response model is described in Section ref:sec:modal_meas_setup.
This includes the instrumentation used (i.e. instrumented hammer, accelerometers and acquisition system), test planing, and a first analysis of the obtained signals.
2024-06-26 16:17:00 +02:00
2024-10-24 19:33:24 +02:00
In Section ref:sec:modal_frf_processing, the obtained frequency response functions between the forces applied by the instrumented hammer and the accelerometers fixed to the structure are computed.
These measurements are projected at the center of mass of each considered solid body to facilitate the further use of the results.
2024-06-26 16:17:00 +02:00
The solid body assumption is then verified, validating the use of the multi-body model.
Finally, the modal analysis is performed in Section ref:sec:modal_analysis.
2024-10-24 19:33:24 +02:00
This shows how complex the micro-station dynamics is, and the necessity of having a model representing its complex dynamics.
2024-06-26 16:17:00 +02:00
# #+name: tab:modal_section_matlab_code
# #+caption: Report sections and corresponding Matlab files
# #+attr_latex: :environment tabularx :width 0.5\linewidth :align lX
# #+attr_latex: :center t :booktabs t
# | *Sections* | *Matlab File* |
# |--------------------------------------+----------------------------|
# | Section ref:sec:modal_meas_setup | =modal_1_meas_setup.m= |
# | Section ref:sec:modal_frf_processing | =modal_2_frf_processing.m= |
# | Section ref:sec:modal_analysis | =modal_3_analysis.m= |
2024-03-19 15:11:22 +01:00
* Measurement Setup
:PROPERTIES:
:HEADER-ARGS:matlab+: :tangle matlab/modal_1_meas_setup.m
:END:
<<sec:modal_meas_setup >>
** Introduction :ignore:
2024-10-24 19:33:24 +02:00
In order to perform an experimental modal analysis, a suitable measurement setup is essential.
This includes using appropriate instrumentation (presented in Section ref:ssec:modal_instrumentation) and properly preparing the structure to be measured (Section ref:ssec:modal_test_preparation).
Then, the locations of the measured motions (Section ref:ssec:modal_accelerometers) and the locations of the hammer impacts (Section ref:ssec:modal_hammer_impacts) have to be chosen carefully.
The obtained force and acceleration signals are described in Section ref:ssec:modal_measured_signals, and the quality of the measured data is assessed.
2024-03-19 15:11:22 +01:00
** Matlab Init :noexport:ignore:
#+begin_src matlab :tangle no :exports none :results silent :noweb yes :var current_dir=(file-name-directory buffer-file-name)
<<matlab-dir >>
#+end_src
#+begin_src matlab :exports none :results silent :noweb yes
<<matlab-init >>
#+end_src
#+begin_src matlab :tangle no :noweb yes
<<m-init-path >>
#+end_src
#+begin_src matlab :eval no :noweb yes
<<m-init-path-tangle >>
#+end_src
#+begin_src matlab :noweb yes
<<m-init-other >>
#+end_src
** Used Instrumentation
<<ssec:modal_instrumentation >>
2024-06-26 16:17:00 +02:00
2024-10-24 19:33:24 +02:00
Three type of equipment are essential for a good modal analysis.
2024-06-26 16:17:00 +02:00
First, /accelerometers/ are used to measure the response of the structure.
Here, 3-axis accelerometers[fn: 1 ] shown in figure ref:fig:modal_accelero_M393B05 are used.
2024-10-24 19:33:24 +02:00
These accelerometers were glued to the micro-station using a thin layer of wax for best results [[cite:&ewins00_modal chapt. 3.5.7 ]].
2024-03-19 15:11:22 +01:00
#+name : fig:modal_analysis_instrumentation
#+caption : Instrumentation used for the modal analysis
2024-06-26 16:17:00 +02:00
#+attr_latex : :options [htbp]
2024-03-19 15:11:22 +01:00
#+begin_figure
2024-06-26 16:17:00 +02:00
#+attr_latex : :caption \subcaption{\label{fig:modal_accelero_M393B05}3-axis accelerometer}
2024-03-19 15:11:22 +01:00
#+attr_latex : :options {0.33\textwidth}
#+begin_subfigure
#+attr_latex : :height 6cm
2024-06-26 16:17:00 +02:00
[[file:figs/modal_accelero_M393B05.jpg ]]
2024-03-19 15:11:22 +01:00
#+end_subfigure
2024-06-26 16:17:00 +02:00
#+attr_latex : :caption \subcaption{\label{fig:modal_instrumented_hammer}Instrumented hammer}
2024-03-19 15:11:22 +01:00
#+attr_latex : :options {0.33\textwidth}
#+begin_subfigure
#+attr_latex : :height 6cm
2024-06-26 16:17:00 +02:00
[[file:figs/modal_instrumented_hammer.jpg ]]
2024-03-19 15:11:22 +01:00
#+end_subfigure
2024-06-26 16:17:00 +02:00
#+attr_latex : :caption \subcaption{\label{fig:modal_oros}OROS acquisition system}
2024-03-19 15:11:22 +01:00
#+attr_latex : :options {0.33\textwidth}
#+begin_subfigure
#+attr_latex : :height 6cm
2024-06-26 16:17:00 +02:00
[[file:figs/modal_oros.jpg ]]
2024-03-19 15:11:22 +01:00
#+end_subfigure
#+end_figure
2024-10-24 19:33:24 +02:00
Then, an /instrumented hammer/ [fn:2] (figure ref:fig:modal_instrumented_hammer) is used to apply forces to the structure in a controlled manner.
Tests were conducted to determine the most suitable hammer tip (ranging from a metallic one to a soft plastic one).
The softer tip was found to give best results as it injects more energy in the low-frequency range where the coherence was low, such that the overall coherence was improved.
2024-03-19 15:11:22 +01:00
2024-10-24 19:33:24 +02:00
Finally, an /acquisition system/ [fn:3] (figure ref:fig:modal_oros) is used to acquire the injected force and response accelerations in a synchronized manner and with sufficiently low noise.
2024-03-19 15:11:22 +01:00
** Structure Preparation and Test Planing
<<ssec:modal_test_preparation >>
2024-10-24 19:33:24 +02:00
To obtain meaningful results, the modal analysis of the micro-station in performed /in-situ/ .
2024-10-24 09:50:55 +02:00
To do so, all the micro-station stage controllers are turned "ON".
2024-10-24 19:33:24 +02:00
This is especially important for stages for which the stiffness is provided by local feedback control, such as the air bearing spindle, and the translation stage.
If these local feedback controls were turned OFF, this would have resulted in very low-frequency modes that were difficult to measure in practice, and it would also have led to decoupled dynamics, which would not be the case in practice.
2024-03-19 15:11:22 +01:00
2024-10-24 19:33:24 +02:00
The top part representing the active stabilization stage was disassembled as the active stabilization stage will be added in the multi-body model afterwards.
2024-03-19 15:11:22 +01:00
2024-10-24 19:33:24 +02:00
To perform the modal analysis from the measured responses, the $n \times n$ frequency response function matrix $\mathbf{H}$ needs to be measured, where $n$ is the considered number of degrees of freedom.
2024-10-24 09:50:55 +02:00
The $H_{jk}$ element of this acrfull:frf matrix corresponds to the frequency response function from a force $F_k$ applied at acrfull:dof $k$ to the displacement of the structure $X_j$ at acrshort:dof $j$.
2024-10-24 19:33:24 +02:00
Measuring this acrshort:frf matrix is time consuming as it requires to make $n \times n$ measurements.
However, due to the principle of reciprocity ($H_{jk} = H_ {kj}$) and using the /point measurement/ ($H_{jj}$), it is possible to reconstruct the full matrix by measuring only one column or one line of the matrix $\mathbf{H}$ [[cite:&ewins00_modal chapt. 5.2 ]].
Therefore, a minimum set of $n$ frequency response functions is required.
2024-10-24 09:50:55 +02:00
This can be done either by measuring the response $X_{j}$ at a fixed acrshort:dof $j$ while applying forces $F_ {i}$ for at all $n$ considered acrshort:dof, or by applying a force $F_{k}$ at a fixed acrshort:dof $k$ and measuring the response $X_ {i}$ for all $n$ acrshort:dof.
2024-03-19 15:11:22 +01:00
2024-10-24 19:33:24 +02:00
It is however not advised to measure only one row or one column, as one or more modes may be missed by an unfortunate choice of force or acceleration measurement location (for instance if the force is applied at a vibration node of a particular mode).
In this modal analysis, it is chosen to measure the response of the structure at all considered acrshort:dof, and to excite the structure at one location in three directions in order to have some redundancy, and to ensure that all modes are properly identified.
2024-03-19 15:11:22 +01:00
** Location of the Accelerometers
<<ssec:modal_accelerometers >>
2024-10-24 19:33:24 +02:00
The location of the accelerometers fixed to the micro-station is essential because it defines where the dynamics is measured.
A total of 23 accelerometers were fixed to the six key stages of the micro station: the lower and upper granites, the translation stage, the tilt stage, the spindle and the micro hexapod.
The positions of the accelerometers are visually shown on a CAD model in Figure ref:fig:modal_location_accelerometers and their precise locations with respect to a frame located at the point of interest are summarized in Table ref:tab:modal_position_accelerometers.
2024-06-26 16:17:00 +02:00
Pictures of the accelerometers fixed to the translation stage and to the micro-hexapod are shown in Figure ref:fig:modal_accelerometer_pictures.
2024-03-19 15:11:22 +01:00
2024-10-24 19:33:24 +02:00
As all key stages of the micro-station are expected to behave as solid bodies, only 6 acrshort:dof can be considered for each solid body.
2024-10-24 09:50:55 +02:00
However, it was chosen to use four 3-axis accelerometers (i.e. 12 measured acrshort:dof) for each considered solid body to have some redundancy and to be able to verify the solid body assumption (see Section ref:ssec:modal_solid_body_assumption).
2024-03-19 15:11:22 +01:00
2024-10-24 17:42:18 +02:00
#+attr_latex : :options [t]{0.60\linewidth}
2024-06-26 16:17:00 +02:00
#+begin_minipage
#+name : fig:modal_location_accelerometers
2024-10-24 17:42:18 +02:00
#+caption : Position of the accelerometers
#+attr_latex : :width 0.99\linewidth :float nil
2024-06-26 16:17:00 +02:00
[[file:figs/modal_location_accelerometers.png ]]
#+end_minipage
\hfill
2024-10-24 17:42:18 +02:00
#+attr_latex : :options [b]{0.38\linewidth}
2024-06-26 16:17:00 +02:00
#+begin_minipage
2024-10-24 17:42:18 +02:00
#+begin_scriptsize
2024-06-26 16:17:00 +02:00
#+name : tab:modal_position_accelerometers
2024-10-24 17:42:18 +02:00
#+caption : Positions in mm
#+attr_latex : :environment tabularx :width \linewidth :placement [b] :align Xccc
#+attr_latex : :booktabs t :float nil :center nil
2024-06-26 16:17:00 +02:00
#+RESULTS :
| | $x$ | $y$ | $z$ |
|--------------+------+------+------|
| Low. Granite | -730 | -526 | -951 |
| Low. Granite | -735 | 814 | -951 |
| Low. Granite | 875 | 799 | -951 |
| Low. Granite | 865 | -506 | -951 |
| Up. Granite | -320 | -446 | -786 |
| Up. Granite | -480 | 534 | -786 |
| Up. Granite | 450 | 534 | -786 |
| Up. Granite | 295 | -481 | -786 |
| Translation | -475 | -414 | -427 |
| Translation | -465 | 407 | -427 |
| Translation | 475 | 424 | -427 |
| Translation | 475 | -419 | -427 |
| Tilt | -385 | -300 | -417 |
| Tilt | -420 | 280 | -417 |
| Tilt | 420 | 280 | -417 |
| Tilt | 380 | -300 | -417 |
| Spindle | -155 | -90 | -594 |
| Spindle | 0 | 180 | -594 |
| Spindle | 155 | -90 | -594 |
| Hexapod | -64 | -64 | -270 |
| Hexapod | -64 | 64 | -270 |
| Hexapod | 64 | 64 | -270 |
| Hexapod | 64 | -64 | -270 |
2024-10-24 17:42:18 +02:00
#+end_scriptsize
2024-06-26 16:17:00 +02:00
#+end_minipage
2024-03-19 15:11:22 +01:00
#+name : fig:modal_accelerometer_pictures
2024-10-24 09:50:55 +02:00
#+caption : Accelerometers fixed on the micro-station stages
2024-06-26 16:17:00 +02:00
#+attr_latex : :options [htbp]
2024-03-19 15:11:22 +01:00
#+begin_figure
#+attr_latex : :caption \subcaption{\label{fig:modal_accelerometers_ty} $T_y$ stage}
#+attr_latex : :options {0.49\textwidth}
#+begin_subfigure
#+attr_latex : :height 6cm
[[file:figs/modal_accelerometers_ty.jpg ]]
#+end_subfigure
#+attr_latex : :caption \subcaption{\label{fig:modal_accelerometers_hexapod} Micro-Hexapod}
#+attr_latex : :options {0.49\textwidth}
#+begin_subfigure
#+attr_latex : :height 6cm
[[file:figs/modal_accelerometers_hexapod.jpg ]]
#+end_subfigure
#+end_figure
#+begin_src matlab
%% Load Accelerometer positions
acc_pos = readtable('mat/acc_pos.txt', 'ReadVariableNames', false);
acc_pos = table2array(acc_pos(:, 1:4));
[~, i] = sort(acc_pos(:, 1));
acc_pos = acc_pos(i, 2:4);
#+end_src
#+begin_src matlab :exports results :results value table replace :tangle no :post addhdr(*this* )
data2orgtable([[1:23]', 1000*acc_pos], {'Hexapod', 'Hexapod', 'Hexapod', 'Hexapod', 'Tilt', 'Tilt', 'Tilt', 'Tilt', 'Translation', 'Translation', 'Translation', 'Translation', 'Upper Granite', 'Upper Granite', 'Upper Granite', 'Upper Granite', 'Lower Granite', 'Lower Granite', 'Lower Granite', 'Lower Granite', 'Spindle', 'Spindle', 'Spindle'}, {'Stage', 'ID', '$x$ [mm]', '$y$ [mm]', '$z$ [mm]'}, ' %.0f ');
#+end_src
** Hammer Impacts
<<ssec:modal_hammer_impacts >>
2024-10-24 19:33:24 +02:00
The selected location of the hammer impact corresponds to the location of accelerometer number $11$ fixed to the translation stage.
2024-10-24 09:50:55 +02:00
It was chosen to match the location of one accelerometer, because a /point measurement/ (i.e. a measurement of $H_{kk}$) is necessary to be able to reconstruct the full acrshort:frf matrix [[cite:ewins00_modal ]].
2024-03-19 15:11:22 +01:00
2024-10-24 19:33:24 +02:00
The impacts were performed in three directions, as shown in figures ref:fig:modal_impact_x, ref:fig:modal_impact_y and ref:fig:modal_impact_z.
2024-03-19 15:11:22 +01:00
#+name : fig:modal_hammer_impacts
#+caption : The three hammer impacts used for the modal analysis
2024-06-26 16:17:00 +02:00
#+attr_latex : :options [htbp]
2024-03-19 15:11:22 +01:00
#+begin_figure
#+attr_latex : :caption \subcaption{\label{fig:modal_impact_x} $X$ impact}
#+attr_latex : :options {0.33\textwidth}
#+begin_subfigure
2024-06-26 16:17:00 +02:00
#+attr_latex : :width 0.8\linewidth
2024-03-19 15:11:22 +01:00
[[file:figs/modal_impact_x.jpg ]]
#+end_subfigure
#+attr_latex : :caption \subcaption{\label{fig:modal_impact_y} $Y$ impact}
#+attr_latex : :options {0.33\textwidth}
#+begin_subfigure
2024-06-26 16:17:00 +02:00
#+attr_latex : :width 0.8\linewidth
2024-03-19 15:11:22 +01:00
[[file:figs/modal_impact_y.jpg ]]
#+end_subfigure
#+attr_latex : :caption \subcaption{\label{fig:modal_impact_z} $Z$ impact}
#+attr_latex : :options {0.33\textwidth}
#+begin_subfigure
2024-06-26 16:17:00 +02:00
#+attr_latex : :width 0.8\linewidth
2024-03-19 15:11:22 +01:00
[[file:figs/modal_impact_z.jpg ]]
#+end_subfigure
#+end_figure
** Force and Response signals
<<ssec:modal_measured_signals >>
2024-06-26 16:17:00 +02:00
2024-10-24 19:33:24 +02:00
The force sensor of the instrumented hammer and the accelerometer signals are shown in the time domain in Figure ref:fig:modal_raw_meas.
Sharp "impacts" can be observed for the force sensor, indicating wide frequency band excitation.
2024-10-24 09:50:55 +02:00
For the accelerometer, a much more complex signal can be observed, indicating complex dynamics.
2024-06-26 16:17:00 +02:00
2024-10-24 19:33:24 +02:00
The "normalized" acrfull:asd of the two signals were computed and shown in Figure ref:fig:modal_asd_acc_force.
Conclusions based on the time domain signals can be clearly observed in the frequency domain (wide frequency content for the force signal and complex dynamics for the accelerometer).
Similar results were obtained for all measured frequency response functions.
2024-06-26 16:17:00 +02:00
2024-03-19 15:11:22 +01:00
#+begin_src matlab
%% Load raw data
meas1_raw = load('mat/meas_raw_1.mat');
% Sampling Frequency [Hz]
Fs = 1/meas1_raw.Track1_X_Resolution;
% Time just before the impact occurs [s]
impacts = [5.937, 11.228, 16.681, 22.205, 27.350, 32.714, 38.115, 43.888, 50.407]-0.01;
% Time vector [s]
time = linspace(0, meas1_raw.Track1_X_Resolution*length(meas1_raw.Track1), length(meas1_raw.Track1));
#+end_src
#+begin_src matlab :exports none :results none
%% Raw measurement of the Accelerometer
figure;
hold on;
2024-06-26 16:17:00 +02:00
plot(time-22.2, meas1_raw.Track2, 'DisplayName', '$X_ {j}$ [$m/s^2$]');
plot(time-22.2, 1e-3*meas1_raw.Track1, 'DisplayName', '$F_ {k}$ [kN]');
2024-03-19 15:11:22 +01:00
hold off;
xlabel('Time [s]');
ylabel('Amplitude');
2024-06-26 16:17:00 +02:00
xlim([0, 0.2]);
2024-03-19 15:11:22 +01:00
ylim([-2, 2]);
2024-06-26 16:17:00 +02:00
legend('location', 'northeast', 'FontSize', 8, 'NumColumns', 1);
2024-03-19 15:11:22 +01:00
#+end_src
2024-06-26 16:17:00 +02:00
#+begin_src matlab :tangle no :exports results :results file none
exportFig('figs/modal_raw_meas.pdf', 'width', 'half', 'height', 'normal');
2024-03-19 15:11:22 +01:00
#+end_src
#+begin_src matlab
%% Frequency Analysis
Nfft = floor(5.0*Fs); % Number of frequency points
win = hanning(Nfft); % Windowing
Noverlap = floor(Nfft/2); % Overlap for frequency analysis
%% Comnpute the power spectral density of the force and acceleration
[pxx_force, f] = pwelch(meas1_raw.Track1, win, Noverlap, Nfft, Fs);
[pxx_acc, ~] = pwelch(meas1_raw.Track2, win, Noverlap, Nfft, Fs);
#+end_src
#+begin_src matlab :exports none :results none
%% Normalized Amplitude Spectral Density of the measured force and acceleration
figure;
hold on;
2024-06-26 16:17:00 +02:00
plot(f, sqrt(pxx_acc./max(pxx_acc(f<200))), 'DisplayName', '$X_ {j}$');
plot(f, sqrt(pxx_force./max(pxx_force(f<200))), 'DisplayName', '$F_ {k}$');
2024-03-19 15:11:22 +01:00
hold off;
set(gca, 'XScale', 'lin'); set(gca, 'YScale', 'lin');
xlabel('Frequency [Hz]'); ylabel('Normalized Spectral Density');
xlim([0, 200]);
xticks([0:20:200]);
ylim([0, 1])
legend('location', 'northeast', 'FontSize', 8, 'NumColumns', 1);
#+end_src
2024-06-26 16:17:00 +02:00
#+begin_src matlab :tangle no :exports results :results file none
exportFig('figs/modal_asd_acc_force.pdf', 'width', 'half', 'height', 'normal');
2024-03-19 15:11:22 +01:00
#+end_src
2024-06-26 16:17:00 +02:00
#+name : fig:modal_raw_meas_asd
2024-10-24 19:33:24 +02:00
#+caption : Raw measurement of the accelerometer (blue) and of the force sensor at the Hammer tip (red) (\subref{fig:modal_raw_meas}). Computed Amplitude Spectral Densities of the two signals (normalized) (\subref{fig:modal_asd_acc_force})
2024-06-26 16:17:00 +02:00
#+attr_latex : :options [htbp]
#+begin_figure
#+attr_latex : :caption \subcaption{\label{fig:modal_raw_meas}Time domain signals}
#+attr_latex : :options {0.49\textwidth}
#+begin_subfigure
#+attr_latex : :width 0.95\linewidth
[[file:figs/modal_raw_meas.png ]]
#+end_subfigure
#+attr_latex : :caption \subcaption{\label{fig:modal_asd_acc_force}Amplitude Spectral Density (normalized)}
#+attr_latex : :options {0.49\textwidth}
#+begin_subfigure
#+attr_latex : :width 0.95\linewidth
2024-03-19 15:11:22 +01:00
[[file:figs/modal_asd_acc_force.png ]]
2024-06-26 16:17:00 +02:00
#+end_subfigure
#+end_figure
2024-03-19 15:11:22 +01:00
2024-06-26 17:58:36 +02:00
The frequency response function $H_{jk}$ from the applied force $F_ {k}$ to the measured acceleration $X_j$ is then computed and shown Figure ref:fig:modal_frf_acc_force.
2024-10-24 19:33:24 +02:00
The quality of the obtained data can be estimated using the /coherence/ function (Figure ref:fig:modal_coh_acc_force).
2024-06-26 16:17:00 +02:00
Good coherence is obtained from $20\,\text{Hz}$ to $200\,\text{Hz}$ which corresponds to the frequency range of interest.
2024-03-19 15:11:22 +01:00
#+begin_src matlab
%% Compute the transfer function and Coherence
[G1, f] = tfestimate(meas1_raw.Track1, meas1_raw.Track2, win, Noverlap, Nfft, Fs);
[coh1, ~] = mscohere( meas1_raw.Track1, meas1_raw.Track2, win, Noverlap, Nfft, Fs);
#+end_src
#+begin_src matlab :exports none :results none
%% Frequency Response Function between the force and the acceleration
figure;
plot(f, abs(G1));
2024-10-24 17:42:18 +02:00
xlabel('Frequency [Hz]'); ylabel('FRF [$m/s^2/N$]')
2024-03-19 15:11:22 +01:00
set(gca, 'XScale', 'lin'); set(gca, 'YScale', 'log');
xlim([0, 200]);
xticks([0:20:200]);
#+end_src
2024-06-26 16:17:00 +02:00
#+begin_src matlab :tangle no :exports results :results file none
exportFig('figs/modal_frf_acc_force.pdf', 'width', 'half', 'height', 'normal');
2024-03-19 15:11:22 +01:00
#+end_src
#+begin_src matlab :exports none :results none
%% Frequency Response Function between the force and the acceleration
figure;
plot(f, coh1);
xlabel('Frequency [Hz]'); ylabel('Coherence [-]')
set(gca, 'XScale', 'lin'); set(gca, 'YScale', 'lin');
xlim([0, 200]); ylim([0,1]);
xticks([0:20:200]);
#+end_src
#+begin_src matlab :tangle no :exports results :results file replace
2024-06-26 16:17:00 +02:00
exportFig('figs/modal_coh_acc_force.pdf', 'width', 'half', 'height', 'normal');
2024-03-19 15:11:22 +01:00
#+end_src
2024-06-26 16:17:00 +02:00
#+name : fig:modal_frf_coh_acc_force
#+caption : Computed frequency response function from the applied force $F_{k}$ and the measured response $X_{j}$ (\subref{fig:modal_frf_acc_force}) as well as computed coherence (\subref{fig:modal_coh_acc_force})
#+attr_latex : :options [htbp]
#+begin_figure
#+attr_latex : :caption \subcaption{\label{fig:modal_frf_acc_force} Frequency Response Function}
#+attr_latex : :options {0.49\textwidth}
#+begin_subfigure
#+attr_latex : :width 0.95\linewidth
[[file:figs/modal_frf_acc_force.png ]]
#+end_subfigure
#+attr_latex : :caption \subcaption{\label{fig:modal_coh_acc_force} Coherence}
#+attr_latex : :options {0.49\textwidth}
#+begin_subfigure
#+attr_latex : :width 0.95\linewidth
2024-03-19 15:11:22 +01:00
[[file:figs/modal_coh_acc_force.png ]]
2024-06-26 16:17:00 +02:00
#+end_subfigure
#+end_figure
2024-03-19 15:11:22 +01:00
* Frequency Analysis
:PROPERTIES:
:HEADER-ARGS:matlab+: :tangle matlab/modal_2_frf_processing.m
:END:
<<sec:modal_frf_processing >>
** Introduction :ignore:
2024-10-24 18:53:51 +02:00
After all measurements are conducted, a $n \times p \times q$ acrlongpl:frf matrix can be computed with:
2024-10-24 19:33:24 +02:00
- $n = 69$: number of output measured acceleration (23 3-axis accelerometers)
- $p = 3$: number of input force excitation
- $q = 801$: number of frequency points $\omega_{i}$
2024-06-26 17:58:36 +02:00
For each frequency point $\omega_{i}$, a 2D complex matrix is obtained that links the 3 force inputs to the 69 output accelerations eqref:eq:modal_frf_matrix_raw.
\begin{equation}\label{eq:modal_frf_matrix_raw}
\mathbf{H}(\omega_i) = \begin{bmatrix}
2024-03-19 15:11:22 +01:00
\frac{D_{1_x}}{F_x}(\omega_i) & \frac{D_ {1_x}}{F_y}(\omega_i) & \frac{D_ {1_x}}{F_z}(\omega_i) \\
\frac{D_{1_y}}{F_x}(\omega_i) & \frac{D_ {1_y}}{F_y}(\omega_i) & \frac{D_ {1_y}}{F_z}(\omega_i) \\
\frac{D_{1_z}}{F_x}(\omega_i) & \frac{D_ {1_z}}{F_y}(\omega_i) & \frac{D_ {1_z}}{F_z}(\omega_i) \\
\frac{D_{2_x}}{F_x}(\omega_i) & \frac{D_ {2_x}}{F_y}(\omega_i) & \frac{D_ {2_x}}{F_z}(\omega_i) \\
\vdots & \vdots & \vdots \\
\frac{D_{23_z}}{F_x}(\omega_i) & \frac{D_ {23_z}}{F_y}(\omega_i) & \frac{D_ {23_z}}{F_z}(\omega_i) \\
\end{bmatrix}
\end{equation}
2024-10-24 18:53:51 +02:00
However, for the multi-body model being developed, only 6 solid bodies are considered, namely: the bottom granite, the top granite, the translation stage, the tilt stage, the spindle and the micro-hexapod.
2024-03-19 15:11:22 +01:00
Therefore, only $6 \times 6 = 36$ degrees of freedom are of interest.
2024-10-24 19:33:24 +02:00
Therefore, the objective of this section is to to process the Frequency Response Matrix to reduce the number of measured acrshort:dof from 69 to 36.
2024-03-19 15:11:22 +01:00
2024-10-24 09:50:55 +02:00
The coordinate transformation from accelerometers acrshort:dof to the solid body 6 acrshortpl:dof (three translations and three rotations) is performed in Section ref:ssec:modal_acc_to_solid_dof.
2024-06-26 17:58:36 +02:00
The $69 \times 3 \times 801$ frequency response matrix is then reduced to a $36 \times 3 \times 801$ frequency response matrix where the motion of each solid body is expressed with respect to its center of mass.
2024-03-19 15:11:22 +01:00
2024-10-24 18:53:51 +02:00
To validate this reduction of acrshort:dof and the solid body assumption, the frequency response function at the accelerometer location are "reconstructed" from the reduced frequency response matrix and are compared with the initial measurements in Section ref:ssec:modal_solid_body_assumption.
2024-03-19 15:11:22 +01:00
** Matlab Init :noexport:ignore:
#+begin_src matlab :tangle no :exports none :results silent :noweb yes :var current_dir=(file-name-directory buffer-file-name)
<<matlab-dir >>
#+end_src
#+begin_src matlab :exports none :results silent :noweb yes
<<matlab-init >>
#+end_src
#+begin_src matlab :tangle no :noweb yes
<<m-init-path >>
#+end_src
#+begin_src matlab :eval no :noweb yes
<<m-init-path-tangle >>
#+end_src
#+begin_src matlab :noweb yes
<<m-init-other >>
#+end_src
** From accelerometer DOFs to solid body DOFs
<<ssec:modal_acc_to_solid_dof >>
2024-10-24 19:33:24 +02:00
Let us consider the schematic shown in Figure ref:fig:modal_local_to_global_coordinates where the motion of a solid body is measured at 4 distinct locations (in $x$, $y$ and $z$ directions).
2024-10-24 09:50:55 +02:00
The goal here is to link these $4 \times 3 = 12$ measurements to the 6 acrshort:dof of the solid body expressed in the frame $\{O\}$.
2024-03-19 15:11:22 +01:00
#+begin_src latex :file modal_local_to_global_coordinates.pdf
\newcommand\irregularcircle[2]{% radius, irregularity
\pgfextra {\pgfmathsetmacro\len{(#1)+rand*(#2)}}
+(0:\len pt)
\foreach \a in {10,20,...,350}{
\pgfextra {\pgfmathsetmacro\len{(#1)+rand*(#2)}}
-- +(\a:\len pt)
} -- cycle
}
\begin{tikzpicture}
\draw[rounded corners=1mm, fill=blue!30!white] (0, 0) \irregularcircle{3cm}{1mm};
2024-10-24 18:53:51 +02:00
\node[] (origin) at (0, 0) {$\bullet$};
2024-03-19 15:11:22 +01:00
\begin{scope}[shift={(origin)}]
\def\axissize{0.8cm}
\draw[->] (0, 0) -- ++(\axissize, 0) node[above left]{$x$};
\draw[->] (0, 0) -- ++(0, \axissize) node[below right]{$y$};
\draw[fill, color=black] (0, 0) circle (0.05*\axissize);
\node[draw, circle, inner sep=0pt, minimum size=0.4*\axissize, label=left:$z$] (yaxis) at (0, 0){};
\node[below right] at (0, 0){$\{O\}$};
\end{scope}
\coordinate[] (p1) at (-1.5, -1.5);
\coordinate[] (p2) at (-1.5, 1.5);
\coordinate[] (p3) at ( 1.5, 1.5);
\coordinate[] (p4) at ( 1.5, -1.5);
2024-10-24 18:53:51 +02:00
\draw[->] (p1)node[]{$\bullet$}node[above]{$\vec{p}_1$} -- ++( 1 , 0.1)node[right]{$\delta \vec{p}_1$};
\draw[->] (p2)node[]{$\bullet$}node[above]{$\vec{p}_2$} -- ++(-0.5,-0.4)node[below]{$\delta \vec{p}_2$};
\draw[->] (p3)node[]{$\bullet$}node[above]{$\vec{p}_3$} -- ++(-0.8,-0.1)node[below]{$\delta \vec{p}_3$};
\draw[->] (p4)node[]{$\bullet$}node[above]{$\vec{p}_4$} -- ++( 0.5, 0.2)node[below]{$\delta \vec{p}_4$};
2024-03-19 15:11:22 +01:00
\end{tikzpicture}
#+end_src
#+name : fig:modal_local_to_global_coordinates
#+caption : Schematic of the measured motions of a solid body
#+RESULTS :
[[file:figs/modal_local_to_global_coordinates.png ]]
2024-10-24 19:33:24 +02:00
The motion of the rigid body of figure ref:fig:modal_local_to_global_coordinates can be described by its displacement $\vec{\delta}p = [\delta p_x,\ \delta p_y,\ \delta p_z]$ and (small) rotations $[\delta \Omega_x,\ \delta \Omega_y,\ \delta \Omega_z]$ with respect to the reference frame $\{O\}$.
2024-10-24 18:53:51 +02:00
The motion $\vec{\delta} p_{i}$ of a point $p_i$ can be computed from $\vec{\delta} p$ and $\bm{\delta \Omega}$ using equation eqref:eq:modal_compute_point_response, with $\bm{\delta\Omega}$ defined in equation eqref:eq:modal_rotation_matrix.
\begin{equation}\label{eq:modal_compute_point_response}
\vec{\delta} p_{i} &= \vec{\delta} p + \bm{\delta \Omega} \cdot \vec{p}_ {i} \\
\end{equation}
\begin{equation}\label{eq:modal_rotation_matrix}
\bm{\delta\Omega} = \begin{bmatrix}
0 & -\delta\Omega_z & \delta\Omega_y \\
\delta\Omega_z & 0 & -\delta\Omega_x \\
-\delta\Omega_y & \delta\Omega_x & 0
\end{bmatrix}
\end{equation}
2024-10-24 19:33:24 +02:00
Writing this in matrix form for the four points gives eqref:eq:modal_cart_to_acc.
2024-03-19 15:11:22 +01:00
2024-06-26 17:58:36 +02:00
\begin{equation}\label{eq:modal_cart_to_acc}
2024-10-24 18:53:51 +02:00
\left[\begin{array}{c}
\delta p_{1x} \\ \delta p_ {1y} \\ \delta p_{1z} \\\hline \vdots \\\hline \delta p_ {4x} \\ \delta p_{4y} \\ \delta p_ {4z}
\end{array}\right] =
2024-03-19 15:11:22 +01:00
\left[\begin{array}{ccc|ccc}
1 & 0 & 0 & 0 & p_{1z} & -p_ {1y} \\
0 & 1 & 0 & -p_{1z} & 0 & p_ {1x} \\
0 & 0 & 1 & p_{1y} & -p_ {1x} & 0 \\ \hline
& \vdots & & & \vdots & \\ \hline
1 & 0 & 0 & 0 & p_{4z} & -p_ {4y} \\
0 & 1 & 0 & -p_{4z} & 0 & p_ {4x} \\
0 & 0 & 1 & p_{4y} & -p_ {4x} & 0
\end{array}\right] \left[\begin{array}{c}
\delta p_x \\ \delta p_y \\ \delta p_z \\ \hline \delta\Omega_x \\ \delta\Omega_y \\ \delta\Omega_z
\end{array}\right]
\end{equation}
2024-10-24 18:53:51 +02:00
Provided that the four sensors are properly located, the system of equation eqref:eq:modal_cart_to_acc can be solved by matrix inversion[fn: 5 ] .
2024-10-24 09:50:55 +02:00
The motion of the solid body expressed in a chosen frame $\{O\}$ can be determined using equation eqref:eq:modal_determine_global_disp.
Note that this matrix inversion is equivalent to resolving a mean square problem.
2024-10-24 19:33:24 +02:00
Therefore, having more accelerometers permits better approximation of the motion of a solid body.
2024-06-26 17:58:36 +02:00
2024-03-19 15:11:22 +01:00
\begin{equation}
\left[\begin{array}{c}
\delta p_x \\ \delta p_y \\ \delta p_z \\ \hline \delta\Omega_x \\ \delta\Omega_y \\ \delta\Omega_z
\end{array}\right] =
\left[\begin{array}{ccc|ccc}
1 & 0 & 0 & 0 & p_{1z} & -p_ {1y} \\
0 & 1 & 0 & -p_{1z} & 0 & p_ {1x} \\
0 & 0 & 1 & p_{1y} & -p_ {1x} & 0 \\ \hline
& \vdots & & & \vdots & \\ \hline
1 & 0 & 0 & 0 & p_{4z} & -p_ {4y} \\
0 & 1 & 0 & -p_{4z} & 0 & p_ {4x} \\
0 & 0 & 1 & p_{4y} & -p_ {4x} & 0
\end{array}\right]^{-1} \left[\begin{array}{c}
\delta p_{1x} \\ \delta p_ {1y} \\ \delta p_{1z} \\\hline \vdots \\\hline \delta p_ {4x} \\ \delta p_{4y} \\ \delta p_ {4z}
\end{array}\right] \label{eq:modal_determine_global_disp}
\end{equation}
2024-06-26 17:58:36 +02:00
From the CAD model, the position of the center of mass of each considered solid body is computed (see Table ref:tab:modal_com_solid_bodies).
2024-10-24 19:33:24 +02:00
The position of each accelerometer with respect to the center of mass of the corresponding solid body can easily be determined.
2024-03-19 15:11:22 +01:00
2024-10-24 17:42:18 +02:00
#+begin_src matlab
%% Load frequency response matrix
load('frf_matrix.mat', 'freqs', 'frf');
%% Load Accelerometer positions
acc_pos = readtable('mat/acc_pos.txt', 'ReadVariableNames', false);
acc_pos = table2array(acc_pos(:, 1:4));
[~, i] = sort(acc_pos(:, 1));
acc_pos = acc_pos(i, 2:4);
#+end_src
#+begin_src matlab
%% Accelerometers ID connected to each solid body
solids = {};
solids.gbot = [17, 18, 19, 20]; % bottom granite
solids.gtop = [13, 14, 15, 16]; % top granite
solids.ty = [9, 10, 11, 12]; % Ty stage
solids.ry = [5, 6, 7, 8]; % Ry stage
solids.rz = [21, 22, 23]; % Rz stage
solids.hexa = [1, 2, 3, 4]; % Hexapod
% Names of the solid bodies
solid_names = fields(solids);
#+end_src
#+begin_src matlab :eval no
2024-10-24 19:33:24 +02:00
%% Save the accelerometer positions are well as the solid bodies
2024-10-24 17:42:18 +02:00
save('mat/geometry.mat', 'solids', 'solid_names', 'acc_pos');
#+end_src
#+begin_src matlab :tangle no
2024-10-24 19:33:24 +02:00
%% Save the accelerometer positions are well as the solid bodies
2024-10-24 17:42:18 +02:00
save('matlab/mat/geometry.mat', 'solids', 'solid_names', 'acc_pos');
#+end_src
2024-03-19 15:11:22 +01:00
#+begin_src matlab
%% Extract the CoM of considered solid bodies
model_com = reshape(table2array(readtable('mat/model_solidworks_com.txt', 'ReadVariableNames', false)), [3, 6]);
#+end_src
#+begin_src matlab :exports results :results value table replace :tangle no :post addhdr(*this* )
data2orgtable(1000*model_com', {'Bottom Granite', 'Top granite', 'Translation stage', 'Tilt Stage', 'Spindle', 'Hexapod'}, {'$X$ [mm]', '$Y$ [mm]', '$Z$ [mm]'}, ' %.0f ');
#+end_src
#+name : tab:modal_com_solid_bodies
2024-06-26 17:58:36 +02:00
#+caption : Center of mass of considered solid bodies with respect to the "point of interest"
2024-03-19 15:11:22 +01:00
#+attr_latex : :environment tabularx :width 0.6\linewidth :align lXXX
#+attr_latex : :center t :booktabs t
#+RESULTS :
| | $X$ [mm] | $Y$ [mm] | $Z$ [mm] |
|-------------------+----------+----------+----------|
| Bottom Granite | 45 | 144 | -1251 |
| Top granite | 52 | 258 | -778 |
| Translation stage | 0 | 14 | -600 |
| Tilt Stage | 0 | -5 | -628 |
| Spindle | 0 | 0 | -580 |
| Hexapod | -4 | 6 | -319 |
2024-10-24 17:42:18 +02:00
Using eqref:eq:modal_determine_global_disp, the frequency response matrix $\mathbf{H}_ \text{CoM}$ eqref:eq:modal_frf_matrix_com expressing the response at the center of mass of each solid body $D_i$ ($i$ from $1$ to $6$ for the $6$ considered solid bodies) can be computed from the initial acrshort:frf matrix $\mathbf{H}$.
2024-03-19 15:11:22 +01:00
2024-06-26 17:58:36 +02:00
\begin{equation}\label{eq:modal_frf_matrix_com}
2024-10-24 17:42:18 +02:00
\mathbf{H}_\text{CoM}(\omega_i) = \begin{bmatrix}
2024-03-19 15:11:22 +01:00
\frac{D_{1,T_x}}{F_x}(\omega_i) & \frac{D_ {1,T_x}}{F_y}(\omega_i) & \frac{D_ {1,T_x}}{F_z}(\omega_i) \\
\frac{D_{1,T_y}}{F_x}(\omega_i) & \frac{D_ {1,T_y}}{F_y}(\omega_i) & \frac{D_ {1,T_y}}{F_z}(\omega_i) \\
\frac{D_{1,T_z}}{F_x}(\omega_i) & \frac{D_ {1,T_z}}{F_y}(\omega_i) & \frac{D_ {1,T_z}}{F_z}(\omega_i) \\
\frac{D_{1,R_x}}{F_x}(\omega_i) & \frac{D_ {1,R_x}}{F_y}(\omega_i) & \frac{D_ {1,R_x}}{F_z}(\omega_i) \\
\frac{D_{1,R_y}}{F_x}(\omega_i) & \frac{D_ {1,R_y}}{F_y}(\omega_i) & \frac{D_ {1,R_y}}{F_z}(\omega_i) \\
\frac{D_{1,R_z}}{F_x}(\omega_i) & \frac{D_ {1,R_z}}{F_y}(\omega_i) & \frac{D_ {1,R_z}}{F_z}(\omega_i) \\
\frac{D_{2,T_x}}{F_x}(\omega_i) & \frac{D_ {2,T_x}}{F_y}(\omega_i) & \frac{D_ {2,T_x}}{F_z}(\omega_i) \\
\vdots & \vdots & \vdots \\
\frac{D_{6,R_z}}{F_x}(\omega_i) & \frac{D_ {6,R_z}}{F_y}(\omega_i) & \frac{D_ {6,R_z}}{F_z}(\omega_i)
\end{bmatrix}
\end{equation}
#+begin_src matlab
%% Frequency Response Matrix - Response expressed at the CoM of the solid bodies
2024-10-24 17:42:18 +02:00
frfs_CoM = zeros(length(solid_names)*6, 3, 801);
2024-03-19 15:11:22 +01:00
for solid_i = 1:length(solid_names)
% Number of accelerometers fixed to this solid body
solids_i = solids.(solid_names{solid_i});
% "Jacobian" matrix to go from accelerometer frame to CoM frame
A = zeros(3*length(solids_i), 6);
for i = 1:length(solids_i)
acc_i = solids_i(i);
acc_pos_com = acc_pos(acc_i, :).' - model_com(:, solid_i);
A(3*(i-1)+1:3*i, 1:3) = eye(3);
A(3*(i-1)+1:3*i, 4:6) = [ 0 acc_pos_com(3) -acc_pos_com(2) ;
-acc_pos_com(3) 0 acc_pos_com(1) ;
acc_pos_com(2) -acc_pos_com(1) 0];
end
for exc_dir = 1:3
2024-10-24 17:42:18 +02:00
frfs_CoM((solid_i-1)*6+1:solid_i*6, exc_dir, :) = A\squeeze(frf((solids_i(1)-1)*3+1:solids_i(end)*3, exc_dir, :));
2024-03-19 15:11:22 +01:00
end
end
#+end_src
#+begin_src matlab :eval no
2024-10-24 17:42:18 +02:00
%% Save the computed FRF at the CoM
save('mat/frf_com.mat', 'frfs_CoM');
2024-03-19 15:11:22 +01:00
#+end_src
#+begin_src matlab :tangle no
2024-10-24 17:42:18 +02:00
%% Save the computed FRF at the CoM
save('matlab/mat/frf_com.mat', 'frfs_CoM');
2024-03-19 15:11:22 +01:00
#+end_src
2024-06-26 17:58:36 +02:00
** Verification of solid body assumption
2024-03-19 15:11:22 +01:00
<<ssec:modal_solid_body_assumption >>
2024-10-24 19:33:24 +02:00
From the response of one solid body expressed by its 6 acrshortpl:dof (i.e. from $\mathbf{H}_{\text{CoM}}$), and using equation eqref:eq:modal_cart_to_acc, it is possible to compute the response of the same solid body at any considered location.
In particular, the responses at the locations of the four accelerometers can be computed and compared with the original measurements $\mathbf{H}$.
This is what is done here to check whether the solid body assumption is correct in the frequency band of interest.
2024-03-19 15:11:22 +01:00
#+begin_src matlab
2024-10-24 18:53:51 +02:00
%% Compute the FRF at the accelerometer location from the CoM reponses
2024-10-24 17:42:18 +02:00
frfs_A = zeros(size(frf));
2024-03-19 15:11:22 +01:00
% For each excitation direction
for exc_dir = 1:3
% For each solid
for solid_i = 1:length(solid_names)
2024-10-24 17:42:18 +02:00
v0 = squeeze(frfs_CoM((solid_i-1)*6+1:(solid_i-1)*6+3, exc_dir, :));
W0 = squeeze(frfs_CoM((solid_i-1)*6+4:(solid_i-1)*6+6, exc_dir, :));
2024-03-19 15:11:22 +01:00
% For each accelerometer attached to the current solid
for acc_i = solids.(solid_names{solid_i})
% We get the position of the accelerometer expressed in frame O
pos = acc_pos(acc_i, :).' - model_com(:, solid_i);
% pos = acc_pos(acc_i, :).';
posX = [0 pos(3) -pos(2); -pos(3) 0 pos(1) ; pos(2) -pos(1) 0];
2024-10-24 17:42:18 +02:00
frfs_A(3*(acc_i-1)+1:3* (acc_i-1)+3, exc_dir, :) = v0 + posX*W0;
2024-03-19 15:11:22 +01:00
end
end
end
#+end_src
2024-10-24 19:33:24 +02:00
The comparison is made for the 4 accelerometers fixed on the micro-hexapod (Figure ref:fig:modal_comp_acc_solid_body_frf).
The original frequency response functions and those computed from the CoM responses match well in the frequency range of interest.
Similar results were obtained for the other solid bodies, indicating that the solid body assumption is valid and that a multi-body model can be used to represent the dynamics of the micro-station.
This also validates the reduction in the number of degrees of freedom from 69 (23 accelerometers with each 3 acrshort:dof) to 36 (6 solid bodies with 6 acrshort:dof).
2024-03-19 15:11:22 +01:00
#+begin_src matlab :exports none :results none
%% Comparaison of the original accelerometer response and reconstructed response from the solid body response
exc_names = {'$F_x$', '$F_y$', '$F_z$'};
DOFs = {'x', 'y', 'z', '\theta_x', '\theta_y', '\theta_z'};
solid_i = 6; % Considered solid body
exc_dir = 1; % Excited direction
accs_i = solids.(solid_names{solid_i}); % Accelerometers fixed to this solid body
figure;
2024-06-26 17:58:36 +02:00
tiledlayout(2, 2, 'TileSpacing', 'Tight', 'Padding', 'None');
2024-03-19 15:11:22 +01:00
for i = 1:length(accs_i)
acc_i = accs_i(i);
nexttile();
hold on;
for dir_i = 1:3
plot(freqs, abs(squeeze(frf(3*(acc_i-1)+dir_i, exc_dir, :))), '-', 'DisplayName', sprintf('$a_ {%i,%s}$', acc_i, DOFs{dir_i}));
end
set(gca,'ColorOrderIndex',1)
for dir_i = 1:3
2024-10-24 17:42:18 +02:00
plot(freqs, abs(squeeze(frfs_A(3*(acc_i-1)+dir_i, exc_dir, :))), '--', 'HandleVisibility', 'off');
2024-03-19 15:11:22 +01:00
end
hold off;
if i > 2
xlabel('Frequency [Hz]');
else
set(gca, 'XTickLabel',[]);
end
if rem(i, 2) == 1
ylabel('Amplitude [$\frac{m/s^2}{N}$]');
else
set(gca, 'YTickLabel',[]);
end
2024-06-26 17:58:36 +02:00
set(gca, 'XScale', 'lin'); set(gca, 'YScale', 'log');
xlim([0, 200]); ylim([1e-6, 3e-2]);
xticks([0:20:200]);
legend('location', 'southeast', 'FontSize', 8, 'NumColumns', 1);
2024-03-19 15:11:22 +01:00
end
#+end_src
#+begin_src matlab :tangle no :exports results :results file replace
exportFig('figs/modal_comp_acc_solid_body_frf.pdf', 'width', 'full', 'height', 'tall');
#+end_src
#+name : fig:modal_comp_acc_solid_body_frf
2024-10-24 19:33:24 +02:00
#+caption : Comparaison of the original accelerometer response (solid curves) and the reconstructed response from the solid body response (dashed curves). Accelerometers 1 to 4 corresponding to the micro-hexapod are shown.
2024-03-19 15:11:22 +01:00
#+RESULTS :
[[file:figs/modal_comp_acc_solid_body_frf.png ]]
* Modal Analysis
:PROPERTIES:
:HEADER-ARGS:matlab+: :tangle matlab/modal_3_analysis.m
:END:
<<sec:modal_analysis >>
** Introduction :ignore:
2024-10-24 19:33:24 +02:00
The goal here is to extract the modal parameters describing the modes of the micro station being studied, namely, the natural frequencies and the modal damping (i.e. the eigenvalues) as well as the mode shapes (.i.e. the eigenvectors).
This is performed from the acrshort:frf matrix previously extracted from the measurements.
In order to perform the modal parameter extraction, the order of the modal model has to be estimated (i.e. the number of modes in the frequency band of interest).
This is achived using the acrfull:mif in section ref:ssec:modal_number_of_modes.
2024-03-19 15:11:22 +01:00
2024-10-24 17:42:18 +02:00
In section ref:ssec:modal_parameter_extraction, the modal parameter extraction is performed.
2024-10-24 19:33:24 +02:00
The graphical display of the mode shapes can be computed from the modal model, which is quite quite useful for physical interpretation of the modes.
2024-03-19 15:11:22 +01:00
2024-10-24 19:33:24 +02:00
To validate the quality of the modal model, the full acrshort:frf matrix is computed from the modal model and compared to the initial measured acrshort:frf (section ref:ssec:modal_model_validity).
2024-03-19 15:11:22 +01:00
** Matlab Init :noexport:ignore:
#+begin_src matlab :tangle no :exports none :results silent :noweb yes :var current_dir=(file-name-directory buffer-file-name)
<<matlab-dir >>
#+end_src
#+begin_src matlab :exports none :results silent :noweb yes
<<matlab-init >>
#+end_src
#+begin_src matlab :tangle no :noweb yes
<<m-init-path >>
#+end_src
#+begin_src matlab :eval no :noweb yes
<<m-init-path-tangle >>
#+end_src
#+begin_src matlab :noweb yes
<<m-init-other >>
#+end_src
2024-10-24 18:53:51 +02:00
** Number of modes determination
2024-03-19 15:11:22 +01:00
<<ssec:modal_number_of_modes >>
2024-10-24 17:42:18 +02:00
The acrshort:mif is here applied to the $n\times p$ acrshort:frf matrix where $n$ is a relatively large number of measurement DOFs (here $n=69$) and $p$ is the number of excitation DOFs (here $p=3$).
2024-03-19 15:11:22 +01:00
2024-10-24 18:53:51 +02:00
The complex modal indication function is defined in equation eqref:eq:modal_cmif where the diagonal matrix $\Sigma$ is obtained from a acrlong:svd of the acrshort:frf matrix as shown in equation eqref:eq:modal_svd.
2024-10-24 17:42:18 +02:00
\begin{equation} \label{eq:modal_cmif}
[CMIF(\omega)]_{p\times p} = [\Sigma(\omega)]_ {p\times n}^T [\Sigma(\omega)]_{n\times p}
\end{equation}
2024-03-19 15:11:22 +01:00
2024-10-24 17:42:18 +02:00
\begin{equation} \label{eq:modal_svd}
[H(\omega)]_{n\times p} = [U(\omega)]_ {n\times n} [\Sigma(\omega)]_{n\times p} [V(\omega)]_ {p\times p}^H
\end{equation}
2024-03-19 15:11:22 +01:00
2024-10-24 17:42:18 +02:00
The acrshort:mif therefore yields to $p$ values that are also frequency dependent.
A peak in the acrshort:mif plot indicates the presence of a mode.
2024-10-24 19:33:24 +02:00
Repeated modes can also be detected when multiple singular values have peaks at the same frequency.
2024-10-24 17:42:18 +02:00
The obtained acrshort:mif is shown on Figure ref:fig:modal_indication_function.
2024-10-24 19:33:24 +02:00
A total of 16 modes were found between 0 and $200\,\text{Hz}$.
2024-10-24 17:42:18 +02:00
The obtained natural frequencies and associated modal damping are summarized in Table ref:tab:modal_obtained_modes_freqs_damps.
2024-03-19 15:11:22 +01:00
#+begin_src matlab
2024-10-24 17:42:18 +02:00
%% Load frequency response matrix
load('frf_matrix.mat', 'freqs', 'frf');
2024-03-19 15:11:22 +01:00
%% Computation of the modal indication function
MIF = zeros(size(frf, 2), size(frf, 2), size(frf, 3));
for i = 1:length(freqs)
[~,S,~ ] = svd(frf(:, :, i));
MIF(:, :, i) = S'*S;
end
#+end_src
#+begin_src matlab :exports none :results none
%% Modal Indication Function
figure;
hold on;
for i = 1:size(MIF, 1)
plot(freqs, squeeze(MIF(i, i, :)));
end
hold off;
set(gca, 'Xscale', 'lin'); set(gca, 'Yscale', 'log');
xlabel('Frequency [Hz]'); ylabel('CMIF Amplitude');
xticks([0:20:200]);
xlim([0, 200]);
ylim([1e-6, 2e-2]);
#+end_src
2024-10-24 17:42:18 +02:00
#+begin_src matlab :tangle no :exports results :results file none
2024-03-19 15:11:22 +01:00
exportFig('figs/modal_indication_function.pdf', 'width', 'wide', 'height', 'normal');
#+end_src
2024-10-24 17:42:18 +02:00
#+attr_latex : :options [t]{0.70\linewidth}
#+begin_minipage
2024-03-19 15:11:22 +01:00
#+name : fig:modal_indication_function
#+caption : Modal Indication Function
2024-10-24 17:42:18 +02:00
#+attr_latex : :float nil :width 0.95\linewidth
2024-03-19 15:11:22 +01:00
[[file:figs/modal_indication_function.png ]]
2024-10-24 17:42:18 +02:00
#+end_minipage
\hfill
#+attr_latex : :options [b]{0.28\linewidth}
#+begin_minipage
#+begin_scriptsize
#+name : tab:modal_obtained_modes_freqs_damps
#+caption : Natural frequencies and modal damping
#+attr_latex : :environment tabularx :width \linewidth :placement [b] :align ccc
#+attr_latex : :booktabs t :float nil :center nil
| Mode | Freq. [Hz] | Damp. [%] |
|------+------------+-----------|
| 1 | 11.9 | 12.2 |
| 2 | 18.6 | 11.7 |
| 3 | 37.8 | 6.2 |
| 4 | 39.1 | 2.8 |
| 5 | 56.3 | 2.8 |
| 6 | 69.8 | 4.3 |
| 7 | 72.5 | 1.3 |
| 8 | 84.8 | 3.7 |
| 9 | 91.3 | 2.9 |
| 10 | 105.5 | 3.2 |
| 11 | 106.6 | 1.6 |
| 12 | 112.7 | 3.1 |
| 13 | 124.2 | 2.8 |
| 14 | 145.3 | 1.3 |
| 15 | 150.5 | 2.4 |
| 16 | 165.4 | 1.4 |
#+end_scriptsize
#+end_minipage
2024-03-19 15:11:22 +01:00
2024-10-24 17:42:18 +02:00
** Modal parameter extraction
<<ssec:modal_parameter_extraction >>
2024-03-19 15:11:22 +01:00
2024-10-24 19:33:24 +02:00
Generally, modal identification consists of curve-fitting a theoretical expression to the actual measured acrshort:frf data.
However, there are multiple levels of complexity, from fitting of a single resonance, to fitting a complete curve encompassing several resonances and working on a set of many acrshort:frf plots all obtained from the same structure.
2024-03-19 15:11:22 +01:00
2024-10-24 19:33:24 +02:00
Here, the last method is used because it provides a unique and consistent model.
It takes into account the fact that the properties of all individual curves are related by being from the same structure: all acrshort:frf plots on a given structure should indicate the same values for the natural frequencies and damping factor of each mode.
2024-03-19 15:11:22 +01:00
2024-10-24 18:53:51 +02:00
From the obtained modal parameters, the mode shapes are computed and can be displayed in the form of animations (three mode shapes are shown in Figure ref:fig:modal_mode_animations).
2024-03-19 15:11:22 +01:00
2024-10-24 17:42:18 +02:00
#+name : fig:modal_mode_animations
#+caption : Three obtained mode shape animations
#+begin_figure
#+attr_latex : :caption \subcaption{\label{fig:modal_mode1_animation}$1^{st}$ mode at 11.9 Hz: tilt suspension mode of the granite}
#+attr_latex : :options {\textwidth}
#+begin_subfigure
#+attr_latex : :width \linewidth
[[file:figs/modal_mode1_animation.jpg ]]
#+end_subfigure
#+attr_latex : :caption \subcaption{\label{fig:modal_mode6_animation}$6^{th}$ mode at 69.8 Hz: vertical resonance of the spindle}
#+attr_latex : :options {\textwidth}
#+begin_subfigure
#+attr_latex : :width \linewidth
[[file:figs/modal_mode6_animation.jpg ]]
#+end_subfigure
#+attr_latex : :caption \subcaption{\label{fig:modal_mode13_animation}$13^{th}$ mode at 124.2 Hz: lateral micro-hexapod resonance}
#+attr_latex : :options {\textwidth}
#+begin_subfigure
#+attr_latex : :width \linewidth
[[file:figs/modal_mode13_animation.jpg ]]
#+end_subfigure
#+end_figure
2024-03-19 15:11:22 +01:00
2024-10-24 19:33:24 +02:00
These animations are useful for visually obtaining a better understanding of the system's dynamic behavior.
For instance, the mode shape of the first mode at $11\,\text{Hz}$ (figure ref:fig:modal_mode1_animation) indicates an issue with the lower granite.
2024-10-24 18:53:51 +02:00
It turns out that four /Airloc Levelers/ are used to level the lower granite (figure ref:fig:modal_airloc).
2024-10-24 19:33:24 +02:00
These are difficult to adjust and can lead to a situation in which the granite is only supported by two of them; therefore, it has a low frequency "tilt mode".
2024-10-24 18:53:51 +02:00
The levelers were then better adjusted.
2024-10-24 17:42:18 +02:00
#+name : fig:modal_airloc
#+caption : AirLoc used for the granite (2120-KSKC)
#+attr_latex : :width 0.6\linewidth
[[file:figs/modal_airlock_picture.jpg ]]
The modal parameter extraction is made using a proprietary software[fn: 4 ] .
For each mode $r$ (from $1$ to the number of considered modes $m=16$), it outputs the frequency $\omega_r$, the damping ratio $\xi_r$, the eigenvectors $\{\phi_ {r}\}$ (vector of complex numbers with a size equal to the number of measured acrshort:dof $n=69$, see equation eqref:eq:modal_eigenvector) and a scaling factor $a_r$.
\begin{equation}\label{eq:modal_eigenvector}
\{\phi_i\} = \begin{Bmatrix} \phi_ {i, 1_x} & \phi_ {i, 1_y} & \phi_ {i, 1_z} & \phi_ {i, 2_x} & \dots & \phi_ {i, 23_z} \end{Bmatrix}^T
\end{equation}
2024-03-19 15:11:22 +01:00
2024-10-24 18:53:51 +02:00
The eigenvalues $s_r$ and $s_r^*$ can then be computed from equation eqref:eq:modal_eigenvalues.
2024-03-19 15:11:22 +01:00
2024-10-24 17:42:18 +02:00
\begin{equation}\label{eq:modal_eigenvalues}
s_r = \omega_r (-\xi_r + i \sqrt{1 - \xi_r^2}), \quad s_r^* = \omega_r (-\xi_r - i \sqrt{1 - \xi_r^2})
\end{equation}
2024-03-19 15:11:22 +01:00
2024-10-24 18:53:51 +02:00
** Verification of the modal model validity
2024-10-24 17:42:18 +02:00
<<ssec:modal_model_validity >>
2024-03-19 15:11:22 +01:00
2024-10-24 19:33:24 +02:00
To check the validity of the modal model, the complete $n \times n$ acrshort:frf matrix $\mathbf{H}_{\text{syn}}$ is first synthesized from the modal parameters.
Then, the elements of this acrshort:frf matrix $\mathbf{H}_{\text{syn}}$ that were already measured can be compared to the measured acrshort:frf matrix $\mathbf{H}$.
2024-03-19 15:11:22 +01:00
2024-10-24 19:33:24 +02:00
In order to synthesize the full acrshort:frf matrix, the eigenvectors $\phi_r$ are first organized in matrix from as shown in equation eqref:eq:modal_eigvector_matrix.
2024-10-24 17:42:18 +02:00
\begin{equation}\label{eq:modal_eigvector_matrix}
\Phi = \begin{bmatrix}
& & & & &\\
\phi_1 & \dots & \phi_N & \phi_1^* & \dots & \phi_N^* \\
& & & & &
\end{bmatrix}_{n \times 2m}
\end{equation}
2024-03-19 15:11:22 +01:00
2024-10-24 17:42:18 +02:00
The full acrshort:frf matrix $\mathbf{H}_{\text{syn}}$ can be synthesize using eqref:eq:modal_synthesized_frf.
2024-03-19 15:11:22 +01:00
2024-10-24 17:42:18 +02:00
\begin{equation}\label{eq:modal_synthesized_frf}
[\mathbf{H}_{\text{syn}}(\omega)]_ {n\times n} = [\Phi]_{n\times2m} [\mathbf{H}_ {\text{mod}}(\omega)]_{2m\times2m} [\Phi]_ {2m\times n}^T
\end{equation}
With $\mathbf{H}_{\text{mod}}(\omega)$ a diagonal matrix representing the response of the different modes eqref:eq:modal_modal_resp.
\begin{equation}\label{eq:modal_modal_resp}
\mathbf{H}_{\text{mod}}(\omega) = \text{diag}\left(\frac{1}{a_1 (j\omega - s_1)},\ \dots,\ \frac{1}{a_m (j\omega - s_m)}, \frac{1}{a_1^* (j\omega - s_1^*)},\ \dots,\ \frac{1}{a_m^* (j\omega - s_m^*)} \right)_ {2m\times 2m}
\end{equation}
2024-03-19 15:11:22 +01:00
#+begin_src matlab
%% Load modal parameters
shapes_m = readtable('mat/mode_shapes.txt', 'ReadVariableNames', false); % [Sign / Real / Imag]
freqs_m = table2array(readtable('mat/mode_freqs.txt', 'ReadVariableNames', false)); % in [Hz]
damps_m = table2array(readtable('mat/mode_damps.txt', 'ReadVariableNames', false)); % in [%]
modal_a = table2array(readtable('mat/mode_modal_a.txt', 'ReadVariableNames', false)); % [Real / Imag]
modal_b = table2array(readtable('mat/mode_modal_b.txt', 'ReadVariableNames', false)); % [Real / Imag]
%% Guess the number of modes identified from the length of the imported data.
acc_n = 23; % Number of accelerometers
dir_n = 3; % Number of directions
dirs = 'XYZ';
mod_n = size(shapes_m,1)/acc_n/dir_n; % Number of modes
%% Mode shapes are split into 3 parts (direction plus sign, real part and imaginary part)
% we aggregate them into one array of complex numbers
T_sign = table2array(shapes_m(:, 1));
T_real = table2array(shapes_m(:, 2));
T_imag = table2array(shapes_m(:, 3));
mode_shapes = zeros(mod_n, dir_n, acc_n);
for mod_i = 1:mod_n
for acc_i = 1:acc_n
% Get the correct section of the signs
T = T_sign(acc_n*dir_n* (mod_i-1)+1:acc_n*dir_n*mod_i);
for dir_i = 1:dir_n
% Get the line corresponding to the sensor
i = find(contains(T, sprintf('%i%s',acc_i, dirs(dir_i))), 1, 'first')+acc_n*dir_n* (mod_i-1);
mode_shapes(mod_i, dir_i, acc_i) = str2num([T_sign{i}(end-1), '1'])*complex(T_real(i),T_imag(i));
end
end
end
2024-10-24 17:42:18 +02:00
%% Create the eigenvalue and eigenvector matrices
eigen_val_M = diag(2*pi*freqs_m.*(-damps_m/100 + j*sqrt(1 - (damps_m/100).^2))); % Lambda = diagonal matrix
eigen_vec_M = reshape(mode_shapes, [mod_n, acc_n*dir_n]).'; % Phi, vecnorm(eigen_vec_M) = 1
2024-03-19 15:11:22 +01:00
2024-10-24 17:42:18 +02:00
% Add complex conjugate eigenvalues and eigenvectors
2024-03-19 15:11:22 +01:00
eigen_val_ext_M = blkdiag(eigen_val_M, conj(eigen_val_M));
eigen_vec_ext_M = [eigen_vec_M, conj(eigen_vec_M)];
2024-10-24 17:42:18 +02:00
%% "Modal A" and "Modal B" matrices
2024-03-19 15:11:22 +01:00
modal_a_M = diag(complex(modal_a(:, 1), modal_a(:, 2)));
modal_b_M = diag(complex(modal_b(:, 1), modal_b(:, 2)));
modal_a_ext_M = blkdiag(modal_a_M, conj(modal_a_M));
modal_b_ext_M = blkdiag(modal_b_M, conj(modal_b_M));
2024-10-24 17:42:18 +02:00
%% Synthesize the full FRF matrix from the modal model
2024-03-19 15:11:22 +01:00
Hsyn = zeros(acc_n*dir_n, acc_n*dir_n, length(freqs));
for i = 1:length(freqs)
2024-10-24 17:42:18 +02:00
Hsyn(:, :, i) = eigen_vec_ext_M*diag(1./(diag(modal_a_ext_M).* (j*2*pi*freqs(i) - diag(eigen_val_ext_M))))*eigen_vec_ext_M.';
2024-03-19 15:11:22 +01:00
end
%% Derivate two times to to have the acceleration response
for i = 1:size(Hsyn, 1)
Hsyn(i, :, :) = squeeze(Hsyn(i, :, :)).*(j*2*pi*freqs).^2;
end
#+end_src
2024-10-24 19:33:24 +02:00
The comparison between the original measured frequency response functions and those synthesized ones from the modal model is presented in Figure ref:fig:modal_comp_acc_frf_modal.
Whether the obtained match is good or bad is quite arbitrary.
However, the modal model seems to be able to represent the coupling between different nodes and different directions, which is quite important from a control perspective.
This can be seen in Figure ref:fig:modal_comp_acc_frf_modal_3 that shows the frequency response function from the force applied on node 11 (i.e. on the translation stage) in the $y$ direction to the measured acceleration at node $2$ (i.e. at the top of the micro-hexapod) in the $x$ direction.
2024-03-19 15:11:22 +01:00
#+begin_src matlab :exports none
2024-10-24 17:42:18 +02:00
acc_o = 11; dir_o = 3;
acc_i = 11; dir_i = 3;
2024-03-19 15:11:22 +01:00
figure;
hold on;
2024-10-24 17:42:18 +02:00
plot(freqs, abs(squeeze(frf( 3*(acc_o-1)+dir_o, dir_i, :))), 'DisplayName', 'Measured');
plot(freqs, abs(squeeze(Hsyn(3*(acc_o-1)+dir_o, 3* (acc_i-1)+dir_i, :))), 'DisplayName', 'Synthesized');
2024-03-19 15:11:22 +01:00
hold off;
2024-10-24 17:42:18 +02:00
set(gca, 'xscale', 'lin');
2024-03-19 15:11:22 +01:00
set(gca, 'yscale', 'log');
2024-10-24 17:42:18 +02:00
xlabel('Frequency [Hz]');
2024-03-19 15:11:22 +01:00
ylabel('Magnitude [$\frac{m/s^2}{N}$]');
2024-10-24 17:42:18 +02:00
ldg = legend('location', 'southeast', 'FontSize', 8, 'NumColumns', 1);
ldg.ItemTokenSize = [10, 1];
xticks([0:40:200]);
2024-03-19 15:11:22 +01:00
xlim([1, 200]);
2024-10-24 17:42:18 +02:00
ylim([1e-6, 1e-1]);
2024-03-19 15:11:22 +01:00
#+end_src
#+begin_src matlab :tangle no :exports results :results file replace
2024-10-24 17:42:18 +02:00
exportFig('figs/modal_comp_acc_frf_modal_1.pdf', 'width', 'third', 'height', 'normal');
2024-03-19 15:11:22 +01:00
#+end_src
2024-10-24 17:42:18 +02:00
#+begin_src matlab :exports none
acc_o = 15; dir_o = 3;
acc_i = 11; dir_i = 3;
2024-03-19 15:11:22 +01:00
figure;
hold on;
2024-10-24 17:42:18 +02:00
plot(freqs, abs(squeeze(frf( 3*(acc_o-1)+dir_o, dir_i, :))), 'DisplayName', 'Measured');
plot(freqs, abs(squeeze(Hsyn(3*(acc_o-1)+dir_o, 3* (acc_i-1)+dir_i, :))), 'DisplayName', 'Synthesized');
2024-03-19 15:11:22 +01:00
hold off;
2024-10-24 17:42:18 +02:00
set(gca, 'xscale', 'lin');
set(gca, 'yscale', 'log');
xlabel('Frequency [Hz]');
ylabel('Magnitude [$\frac{m/s^2}{N}$]');
ldg = legend('location', 'southeast', 'FontSize', 8, 'NumColumns', 1);
ldg.ItemTokenSize = [10, 1];
xticks([0:40:200]);
xlim([1, 200]);
ylim([1e-6, 1e-1]);
#+end_src
#+begin_src matlab :tangle no :exports results :results file replace
exportFig('figs/modal_comp_acc_frf_modal_2.pdf', 'width', 'third', 'height', 'normal');
#+end_src
2024-03-19 15:11:22 +01:00
2024-10-24 17:42:18 +02:00
#+begin_src matlab :exports none
acc_o = 2; dir_o = 1;
acc_i = 11; dir_i = 2;
figure;
2024-03-19 15:11:22 +01:00
hold on;
2024-10-24 17:42:18 +02:00
plot(freqs, abs(squeeze(frf( 3*(acc_o-1)+dir_o, dir_i, :))), 'DisplayName', 'Measured');
plot(freqs, abs(squeeze(Hsyn(3*(acc_o-1)+dir_o, 3* (acc_i-1)+dir_i, :))), 'DisplayName', 'Synthesized');
2024-03-19 15:11:22 +01:00
hold off;
2024-10-24 17:42:18 +02:00
set(gca, 'xscale', 'lin');
set(gca, 'yscale', 'log');
xlabel('Frequency [Hz]');
ylabel('Magnitude [$\frac{m/s^2}{N}$]');
ldg = legend('location', 'southeast', 'FontSize', 8, 'NumColumns', 1);
ldg.ItemTokenSize = [10, 1];
xticks([0:40:200]);
2024-03-19 15:11:22 +01:00
xlim([1, 200]);
2024-10-24 17:42:18 +02:00
ylim([1e-6, 1e-1]);
2024-03-19 15:11:22 +01:00
#+end_src
#+begin_src matlab :tangle no :exports results :results file replace
2024-10-24 17:42:18 +02:00
exportFig('figs/modal_comp_acc_frf_modal_3.pdf', 'width', 'third', 'height', 'normal');
2024-03-19 15:11:22 +01:00
#+end_src
2024-10-24 17:42:18 +02:00
#+name : fig:modal_comp_acc_frf_modal
#+caption : Comparison of the measured FRF with the synthesized FRF from the modal model.
#+attr_latex : :options [htbp]
#+begin_figure
#+attr_latex : :caption \subcaption{\label{fig:modal_comp_acc_frf_modal_1}From $F_{11,z}$ to $a_{11,z}$}
#+attr_latex : :options {0.33\textwidth}
#+begin_subfigure
#+attr_latex : :width 0.99\linewidth
[[file:figs/modal_comp_acc_frf_modal_1.png ]]
#+end_subfigure
#+attr_latex : :caption \subcaption{\label{fig:modal_comp_acc_frf_modal_2}From $F_{11,z}$ to $a_{15,z}$}
#+attr_latex : :options {0.33\textwidth}
#+begin_subfigure
#+attr_latex : :width 0.99\linewidth
[[file:figs/modal_comp_acc_frf_modal_2.png ]]
#+end_subfigure
#+attr_latex : :caption \subcaption{\label{fig:modal_comp_acc_frf_modal_3}From $F_{11,y}$ to $a_{2,x}$}
#+attr_latex : :options {0.33\textwidth}
#+begin_subfigure
#+attr_latex : :width 0.99\linewidth
[[file:figs/modal_comp_acc_frf_modal_3.png ]]
#+end_subfigure
#+end_figure
2024-03-19 15:11:22 +01:00
* Conclusion
<<sec:modal_conclusion >>
2024-10-24 17:42:18 +02:00
In this study, a modal analysis of the micro-station was performed.
2024-10-24 19:33:24 +02:00
Thanks to an adequate choice of instrumentation and proper set of measurements, high quality frequency response functions can be obtained.
The obtained frequency response functions indicate that the dynamics of the micro-station are complex, which is expected from a heavy stack stage architecture.
It shows a lot of coupling between stages and different directions, and many modes.
2024-03-19 15:11:22 +01:00
2024-10-24 19:33:24 +02:00
By measuring 12 degrees of freedom on each "stage", it could be verified that in the frequency range of interest, each stage behaved as a rigid body.
This confirms that a solid body model can be used to properly model the micro-station.
2024-03-19 15:11:22 +01:00
2024-10-24 19:33:24 +02:00
Although a lot of effort was put into this experimental modal analysis of the micro-station, it was difficult to obtain an accurate modal model.
However, the measurements are useful for tuning the parameters of the micro-station multi-body model.
2024-06-26 16:17:00 +02:00
2024-03-19 15:11:22 +01:00
* Bibliography :ignore:
#+latex : \printbibliography[heading=bibintoc,title={Bibliography}]
2024-10-24 17:42:18 +02:00
* Glossary :ignore:
[[printglossaries: ]]
# #+latex: \printglossary[type=\acronymtype]
# #+latex: \printglossary[type=\glossarytype]
# #+latex: \printglossary
2024-03-19 15:11:22 +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
addpath('./matlab/ '); % Path for scripts
#+END_SRC
#+NAME : m-init-path-tangle
#+BEGIN_SRC matlab
%% Path for functions, data and scripts
addpath('./mat/ '); % Path for data
#+END_SRC
** Initialize other elements
#+NAME : m-init-other
#+BEGIN_SRC matlab
%% Colors for the figures
colors = colororder;
#+END_SRC
2024-06-26 16:17:00 +02:00
* Footnotes
2024-10-24 18:53:51 +02:00
[fn:5]As this matrix is in general non-square, the Moore– Penrose inverse can be used instead.
[fn:4]NVGate software from OROS company.
2024-06-26 16:17:00 +02:00
[fn:3]OROS OR36. 24bits signal-delta ADC.
[fn:2]Kistler 9722A2000. Sensitivity of $2.3\,mV/N$ and measurement range of $2\,kN$
2024-10-24 09:50:55 +02:00
[fn:1]PCB 356B18. Sensitivity is $1\,V/g$, measurement range is $\pm 5\,g$ and bandwidth is $0.5$ to $5\,\text{kHz}$.