Christophe's review

This commit is contained in:
Thomas Dehaeze 2025-03-28 14:36:28 +01:00
parent c40efced20
commit a2a56548ee
5 changed files with 64 additions and 63 deletions

View File

@ -26,12 +26,12 @@ freqs = logspace(0, 3, 1000);
% <<ssec:nass_active_damping_plant>>
% Transfer functions from actuator forces $f_i$ to force sensor measurements $f_{mi}$ are computed using the multi-body model.
% Figure ref:fig:nass_iff_plant_effect_kp examines how parallel stiffness affects the plant dynamics, with identification performed at maximum spindle velocity $\Omega_z = 360\,\text{deg/s}$ and with a payload mass of 25 kg.
% Figure ref:fig:nass_iff_plant_effect_kp examines how parallel stiffness affects plant dynamics, with identification performed at maximum spindle velocity $\Omega_z = 360\,\text{deg/s}$ and with a payload mass of 25 kg.
% Without parallel stiffness (Figure ref:fig:nass_iff_plant_no_kp), the dynamics exhibits non-minimum phase zeros at low frequency, confirming predictions from the three-degree-of-freedom rotating model.
% Without parallel stiffness (Figure ref:fig:nass_iff_plant_no_kp), the plant dynamics exhibits non-minimum phase zeros at low frequency, confirming predictions from the three-degree-of-freedom rotating model.
% Adding parallel stiffness (Figure ref:fig:nass_iff_plant_kp) transforms these into minimum phase complex conjugate zeros, enabling unconditionally stable decentralized IFF implementation.
% Though both cases show significant coupling around resonances, stability is guaranteed by the collocated arrangement of actuators and sensors [[cite:&preumont08_trans_zeros_struc_contr_with]].
% Although both cases show significant coupling around the resonances, stability is guaranteed by the collocated arrangement of the actuators and sensors [[cite:&preumont08_trans_zeros_struc_contr_with]].
%% Identify the IFF plant dynamics using the Simscape model
@ -182,7 +182,7 @@ xlim([f(1), f(end)]);
% #+name: fig:nass_iff_plant_effect_kp
% #+caption: Effect of stiffness parallel to the force sensor on the IFF plant with $\Omega_z = 360\,\text{deg/s}$ and payload mass of 25kg. The dynamics without parallel stiffness has non-minimum phase zeros at low frequency (\subref{fig:nass_iff_plant_no_kp}). The added parallel stiffness transforms the non-minimum phase zeros to complex conjugate zeros (\subref{fig:nass_iff_plant_kp})
% #+caption: Effect of stiffness parallel to the force sensor on the IFF plant with $\Omega_z = 360\,\text{deg/s}$ and a payload mass of 25kg. The dynamics without parallel stiffness has non-minimum phase zeros at low frequency (\subref{fig:nass_iff_plant_no_kp}). The added parallel stiffness transforms the non-minimum phase zeros into complex conjugate zeros (\subref{fig:nass_iff_plant_kp})
% #+attr_latex: :options [h!tbp]
% #+begin_figure
% #+attr_latex: :caption \subcaption{\label{fig:nass_iff_plant_no_kp}without parallel stiffness}
@ -199,10 +199,11 @@ xlim([f(1), f(end)]);
% #+end_subfigure
% #+end_figure
% The effect of rotation, shown in Figure ref:fig:nass_iff_plant_effect_rotation, is negligible as the actuator stiffness ($k_a = 1\,N/\mu m$) is large compared to the negative stiffness induced by gyroscopic effects (estimated from the 3DoF rotating model).
% The effect of rotation, as shown in Figure ref:fig:nass_iff_plant_effect_rotation, is negligible as the actuator stiffness ($k_a = 1\,N/\mu m$) is large compared to the negative stiffness induced by gyroscopic effects (estimated from the 3DoF rotating model).
% Figure ref:fig:nass_iff_plant_effect_payload illustrate the effect of payload mass on the plant dynamics.
% While the poles and zeros are shifting with payload mass, the alternating pattern of poles and zeros is maintained, ensuring that the phase remains bounded between 0 and 180 degrees, and thus good robustness properties.
% The poles and zeros shift in frequency as the payload mass varies.
% However, their alternating pattern is preserved, which ensures the phase remains bounded between 0 and 180 degrees, thus maintaining robust stability properties.
%% Effect of spindle's rotation on the IFF Plant
@ -307,12 +308,12 @@ xlim([freqs(1), freqs(end)]);
% Controller Design
% <<ssec:nass_active_damping_control>>
% Previous analysis using the 3DoF rotating model showed that decentralized Integral Force Feedback (IFF) with pure integrators is unstable due to gyroscopic effects caused by spindle rotation.
% This finding is also confirmed with the multi-body model of the NASS: the system is unstable when using pure integrators and without parallel stiffness.
% The previous analysis using the 3DoF rotating model showed that decentralized Integral Force Feedback (IFF) with pure integrators is unstable due to the gyroscopic effects caused by spindle rotation.
% This finding was also confirmed with the multi-body model of the NASS: the system was unstable when using pure integrators and without parallel stiffness.
% This instability can be mitigated by introducing sufficient stiffness in parallel with the force sensors.
% However, as illustrated in Figure ref:fig:nass_iff_plant_kp, adding parallel stiffness increases the low frequency gain.
% If using pure integrators, this would results in high loop gain at low frequencies, adversely affecting the damped plant dynamics, which is undesirable.
% Using pure integrators would result in high loop gain at low frequencies, adversely affecting the damped plant dynamics, which is undesirable.
% To resolve this issue, a second-order high-pass filter is introduced to limit the low frequency gain, as shown in Equation eqref:eq:nass_kiff.
% \begin{equation}\label{eq:nass_kiff}
@ -323,8 +324,8 @@ xlim([freqs(1), freqs(end)]);
% \end{bmatrix}, \quad K_{\text{IFF}}(s) = \frac{1}{s} \cdot \frac{\frac{s^2}{\omega_z^2}}{\frac{s^2}{\omega_z^2} + 2 \xi_z \frac{s}{\omega_z} + 1}
% \end{equation}
% The cut-off frequency of the second-order high-pass filter is tuned to be below the frequency of the complex conjugate zero for the highest mass, which is at $5\,\text{Hz}$.
% The overall gain is then increased to have large loop gain around resonances to be damped, as illustrated in Figure ref:fig:nass_iff_loop_gain.
% The cut-off frequency of the second-order high-pass filter was tuned to be below the frequency of the complex conjugate zero for the highest mass, which is at $5\,\text{Hz}$.
% The overall gain was then increased to obtain a large loop gain around the resonances to be damped, as illustrated in Figure ref:fig:nass_iff_loop_gain.
%% Verify that parallel stiffness permits to have a stable plant
@ -408,8 +409,8 @@ xlim([freqs(1), freqs(end)]);
% #+RESULTS:
% [[file:figs/nass_iff_loop_gain.png]]
% To verify stability, root loci for the three payload configurations are computed and shown in Figure ref:fig:nass_iff_root_locus.
% The results demonstrate that the closed-loop poles remain within the left-half plane, indicating the robust stability properties of the applied decentralized IFF.
% To verify stability, the root loci for the three payload configurations were computed, as shown in Figure ref:fig:nass_iff_root_locus.
% The results demonstrate that the closed-loop poles remain within the left-half plane, indicating the robust stability of the applied decentralized IFF.
%% Root Locus for the Decentralized IFF controller - 1kg Payload

View File

@ -25,18 +25,18 @@ freqs = logspace(0, 3, 1000);
% HAC Plant
% <<ssec:nass_hac_plant>>
% The plant dynamics from force inputs $\bm{f}$ to the strut errors $\bm{\epsilon}_{\mathcal{L}}$ were first extracted from the multi-body model without implementation of the decentralized IFF.
% The influence of spindle rotation on plant dynamics was investigated, with results presented in Figure ref:fig:nass_undamped_plant_effect_Wz.
% While rotational motion introduces coupling effects at low frequencies, these remain minimal at operational velocities, owing to the high stiffness characteristics of the nano-hexapod assembly.
% The plant dynamics from force inputs $\bm{f}$ to the strut errors $\bm{\epsilon}_{\mathcal{L}}$ were first extracted from the multi-body model without the implementation of the decentralized IFF.
% The influence of spindle rotation on plant dynamics was investigated, and the results are presented in Figure ref:fig:nass_undamped_plant_effect_Wz.
% While rotational motion introduces coupling effects at low frequencies, these effects remain minimal at operational velocities, owing to the high stiffness characteristics of the nano-hexapod assembly.
% Payload mass emerged as a significant parameter affecting system behavior, as illustrated in Figure ref:fig:nass_undamped_plant_effect_mass.
% As expected, increasing payload mass was found to decrease resonance frequencies while amplifying coupling at low frequency.
% As expected, increasing the payload mass decreased the resonance frequencies while amplifying coupling at low frequency.
% These mass-dependent dynamic changes present considerable challenges for control system design, particularly for configurations with high payload masses.
% Additional operational parameters were systematically evaluated, including the $R_y$ tilt angle, $R_z$ spindle position, and micro-hexapod position.
% These factors were found to exert negligible influence on the plant dynamics, attributable to the effective mechanical decoupling achieved between the plant and micro-station dynamics.
% These factors were found to exert negligible influence on the plant dynamics, which can be attributed to the effective mechanical decoupling achieved between the plant and micro-station dynamics.
% This decoupling characteristic ensures consistent performance across various operational configurations.
% This also validates the developed control kinematics.
% This also validates the developed control strategy.
%% Identify the IFF plant dynamics using the Simscape model
@ -214,14 +214,14 @@ xlim([freqs(1), freqs(end)]);
% The Decentralized Integral Force Feedback was implemented in the multi-body model, and transfer functions from force inputs $\bm{f}^\prime$ of the damped plant to the strut errors $\bm{\epsilon}_{\mathcal{L}}$ were extracted from this model.
% The effectiveness of IFF implementation was first evaluated with a $1\,\text{kg}$ payload, as demonstrated in Figure ref:fig:nass_comp_undamped_damped_plant_m1.
% The results indicate successful damping of the nano-hexapod resonance modes, though a minor increase in low-frequency coupling was observed.
% This trade-off was considered acceptable given the overall improvement in system behavior.
% The effectiveness of the IFF implementation was first evaluated with a $1\,\text{kg}$ payload, as demonstrated in Figure ref:fig:nass_comp_undamped_damped_plant_m1.
% The results indicate successful damping of the nano-hexapod resonance modes, although a minor increase in low-frequency coupling was observed.
% This trade-off was considered acceptable, given the overall improvement in system behavior.
% The benefits of IFF implementation were further assessed across the full range of payload configurations, with results presented in Figure ref:fig:nass_hac_plants.
% For all tested payloads ($1\,\text{kg}$, $25\,\text{kg}$ and $50\,\text{kg}$), decentralized IFF significantly damped the nano-hexapod modes and therefore simplified the system dynamics.
% More importantly, is the fact that in the vicinity of the wanted high authority control bandwidth (i.e. between $10\,\text{Hz}$ and $50\,\text{Hz}$), the damped dynamics (shown in red) exhibited minimal gain and phase variations with frequency.
% For the undamped system (shown in blue), achieving robust control with bandwidth above 10Hz while maintaining stability across different payload masses would be practically unfeasible.
% The benefits of IFF implementation were further assessed across the full range of payload configurations, and the results are presented in Figure ref:fig:nass_hac_plants.
% For all tested payloads ($1\,\text{kg}$, $25\,\text{kg}$ and $50\,\text{kg}$), the decentralized IFF significantly damped the nano-hexapod modes and therefore simplified the system dynamics.
% More importantly, in the vicinity of the desired high authority control bandwidth (i.e. between $10\,\text{Hz}$ and $50\,\text{Hz}$), the damped dynamics (shown in red) exhibited minimal gain and phase variations with frequency.
% For the undamped plants (shown in blue), achieving robust control with bandwidth above 10Hz while maintaining stability across different payload masses would be practically impossible.
%% Identify HAC Plant with IFF
@ -348,7 +348,7 @@ linkaxes([ax1,ax2],'x');
% #+name: fig:nass_hac_plant
% #+caption: Effect of Decentralized Integral Force Feedback on the positioning plant for a $1\,\text{kg}$ sample mass (\subref{fig:nass_undamped_plant_effect_Wz}). Direct terms of the positioning plants for all considered payloads are shown in (\subref{fig:nass_undamped_plant_effect_mass}).
% #+caption: Effect of Decentralized Integral Force Feedback on the positioning plant for a $1\,\text{kg}$ sample mass (\subref{fig:nass_undamped_plant_effect_Wz}). The direct terms of the positioning plants for all considered payloads are shown in (\subref{fig:nass_undamped_plant_effect_mass}).
% #+attr_latex: :options [h!tbp]
% #+begin_figure
% #+attr_latex: :caption \subcaption{\label{fig:nass_comp_undamped_damped_plant_m1}Effect of IFF - $m = 1\,\text{kg}$}
@ -365,12 +365,12 @@ linkaxes([ax1,ax2],'x');
% #+end_subfigure
% #+end_figure
% The coupling between the nano-hexapod and micro-station was evaluated through comparative analysis of plant dynamics under two mounting conditions.
% The coupling between the nano-hexapod and the micro-station was evaluated through a comparative analysis of plant dynamics under two mounting conditions.
% In the first configuration, the nano-hexapod was mounted on an ideally rigid support, while in the second configuration, it was installed on the micro-station with finite compliance.
% As illustrated in Figure ref:fig:nass_effect_ustation_compliance, the complex dynamics of the micro-station were found to have little impact on the plant dynamics.
% The only observable difference manifests as alternating poles and zeros above 100Hz, a frequency range sufficiently beyond the control bandwidth to avoid interference with system performance.
% This finding confirms effective dynamic decoupling between the nano-hexapod and the supporting micro-station structure.
% The only observable difference manifests as additional alternating poles and zeros above 100Hz, a frequency range sufficiently beyond the control bandwidth to avoid interference with the system performance.
% This result confirms effective dynamic decoupling between the nano-hexapod and the supporting micro-station structure.
%% Identify plant with "rigid" micro-station
@ -446,17 +446,17 @@ xlim([freqs(1), freqs(end)]);
% <<ssec:nass_hac_stiffness>>
% The influence of nano-hexapod stiffness was investigated to validate earlier findings from simplified uniaxial and three-degree-of-freedom (3DoF) models.
% These models suggested that a moderate stiffness of approximately $1\,N/\mu m$ would provide better performance compared to either very stiff or very soft configurations.
% These models suggest that a moderate stiffness of approximately $1\,N/\mu m$ would provide better performance than either very stiff or very soft configurations.
% For the stiff nano-hexapod analysis, a system with actuator stiffness of $100\,N/\mu m$ was simulated with a $25\,\text{kg}$ payload.
% For the stiff nano-hexapod analysis, a system with an actuator stiffness of $100\,N/\mu m$ was simulated with a $25\,\text{kg}$ payload.
% The transfer function from $\bm{f}$ to $\bm{\epsilon}_{\mathcal{L}}$ was evaluated under two conditions: mounting on an infinitely rigid base and mounting on the micro-station.
% As shown in Figure ref:fig:nass_stiff_nano_hexapod_coupling_ustation, significant coupling was observed between the nano-hexapod and micro-station dynamics.
% This coupling introduces complex behavior that proves difficult to model and predict accurately, corroborating the predictions of the simplified uniaxial model.
% This coupling introduces complex behavior that is difficult to model and predict accurately, thus corroborating the predictions of the simplified uniaxial model.
% The soft nano-hexapod configuration was evaluated using a stiffness of $0.01\,N/\mu m$ with a $25\,\text{kg}$ payload.
% Dynamic response was characterized at three rotational velocities: 0, 36, and 360 deg/s.
% Figure ref:fig:nass_soft_nano_hexapod_effect_Wz demonstrates that rotation substantially impacts system dynamics, manifesting as instability at high rotational velocities, increased coupling from gyroscopic effects, and rotation-dependent resonance frequencies.
% The current approach of controlling the motion in the strut frame proves inadequate for soft nano-hexapods; but even shifting control to the payload's center of mass frame would not overcome the substantial coupling and dynamic variations induced by gyroscopic effects.
% The dynamic response was characterized at three rotational velocities: 0, 36, and 360 deg/s.
% Figure ref:fig:nass_soft_nano_hexapod_effect_Wz demonstrates that rotation substantially affects system dynamics, manifesting as instability at high rotational velocities, increased coupling due to gyroscopic effects, and rotation-dependent resonance frequencies.
% The current approach of controlling the position in the strut frame is inadequate for soft nano-hexapods; but even shifting control to a frame matching the payload's center of mass would not overcome the substantial coupling and dynamic variations induced by gyroscopic effects.
%% Identify Dynamics with a Stiff nano-hexapod (100N/um)
@ -654,7 +654,7 @@ xlim([f(1), f(end)]);
% Controller design
% <<ssec:nass_hac_controller>>
% A high authority controller was designed to meet two key requirements: stable for all payload masses (i.e. for all the damped plants of Figure ref:fig:nass_hac_plants), and achievement of sufficient bandwidth (targeted at 10Hz) for high performance operation.
% A high authority controller was designed to meet two key requirements: stability for all payload masses (i.e. for all the damped plants of Figure ref:fig:nass_hac_plants), and achievement of sufficient bandwidth (targeted at 10Hz) for high performance operation.
% The controller structure is defined in Equation eqref:eq:nass_robust_hac, incorporating an integrator term for low frequency performance, a lead compensator for phase margin improvement, and a low-pass filter for robustness against high frequency modes.
% \begin{equation}\label{eq:nass_robust_hac}
@ -691,8 +691,8 @@ save('./mat/nass_K_hac.mat', 'Khac');
% The controller's performance was evaluated through two complementary analyses.
% First, the decentralized loop gain, shown in Figure ref:fig:nass_hac_loop_gain, confirms the achievement of the desired 10Hz bandwidth.
% The controller performance was evaluated through two complementary analyses.
% First, the decentralized loop gain shown in Figure ref:fig:nass_hac_loop_gain, confirms the achievement of the desired 10Hz bandwidth.
% Second, the characteristic loci analysis presented in Figure ref:fig:nass_hac_loci demonstrates robustness for all payload masses, with adequate stability margins maintained throughout the operating envelope.
@ -809,16 +809,16 @@ leg.ItemTokenSize(1) = 15;
% Tomography experiment
% <<ssec:nass_hac_tomography>>
% The Nano Active Stabilization System concept was validated through time-domain simulations of scientific experiments, with particular focus on tomography scanning due to its demanding performance requirements.
% The Nano Active Stabilization System concept was validated through time-domain simulations of scientific experiments, with a particular focus on tomography scanning because of its demanding performance requirements.
% Simulations were conducted at the maximum operational rotational velocity of $\Omega_z = 360\,\text{deg/s}$ to evaluate system performance under the most challenging conditions.
% Performance metrics were established based on anticipated future beamline specifications, which specify a beam size of 200nm (horizontal) × 100nm (vertical).
% The primary requirement stipulates that the point of interest must remain within these beam dimensions throughout operation.
% The simulation incorporated two principal disturbance sources: ground motion and spindle vibrations.
% Additional noise sources, including measurement noise and electrical noise from DAC and voltage amplifiers, were not included in this analysis as these parameters will be optimized during the detailed design phase.
% Performance metrics were established based on anticipated future beamline specifications, which specify a beam size of 200nm (horizontal) by 100nm (vertical).
% The primary requirement stipulates that the point of interest must remain within beam dimensions throughout operation.
% The simulation included two principal disturbance sources: ground motion and spindle vibrations.
% Additional noise sources, including measurement noise and electrical noise from DAC and voltage amplifiers, were not included in this analysis, as these parameters will be optimized during the detailed design phase.
% Figure ref:fig:nass_tomo_1kg_60rpm presents a comparative analysis of positioning errors under both open-loop and closed-loop conditions for a lightweight sample configuration (1kg).
% The results demonstrate the system's capability to maintain position within the specified beam dimensions, validating the fundamental concept of the stabilization system.
% The results demonstrate the system's capability to maintain the sample's position within the specified beam dimensions, thus validating the fundamental concept of the stabilization system.
%% Simulation of tomography experiments
@ -947,12 +947,12 @@ leg.ItemTokenSize(1) = 15;
% #+end_subfigure
% #+end_figure
% The robustness of the NASS to payload mass variation was evaluated through additional tomography scan simulations with 25kg and 50kg payloads, complementing the initial 1kg test case.
% As illustrated in Figure ref:fig:nass_tomography_hac_iff, system performance exhibits some degradation with increasing payload mass, aligning with predictions from the control analysis.
% The robustness of the NASS to payload mass variation was evaluated through additional tomography scan simulations with 25 and 50kg payloads, complementing the initial 1kg test case.
% As illustrated in Figure ref:fig:nass_tomography_hac_iff, system performance exhibits some degradation with increasing payload mass, which is consistent with predictions from the control analysis.
% While the positioning accuracy for heavier payloads is outside the specified limits, it remains within acceptable bounds for typical operating conditions.
% It should be noted that the maximum rotational velocity of 360deg/s is primarily intended for lightweight payload applications.
% For higher mass configurations, rotational velocities are foreseen to be below 36deg/s.
% For higher mass configurations, rotational velocities are expected to be below 36deg/s.
%% Simulation of tomography experiment - 1kg payload - 360deg/s - YZ errors

View File

@ -558,7 +558,7 @@ This should be done in the ustation report (A4).
* Introduction
The preceding chapters have established crucial foundational elements for the development of the Nano Active Stabilization System (NASS).
The previous chapters have established crucial foundational elements for the development of the Nano Active Stabilization System (NASS).
The uniaxial model study demonstrated that very stiff nano-hexapod configurations should be avoided due to their high coupling with the micro-station dynamics.
A rotating three-degree-of-freedom model revealed that soft nano-hexapod designs prove unsuitable due to gyroscopic effect induced by the spindle rotation.
To further improve the model accuracy, a multi-body model of the micro-station was developed, which was carefully tuned using experimental modal analysis.
@ -654,7 +654,7 @@ The external metrology system measures the sample position relative to the fixed
Due to the system's symmetry, this metrology provides measurements for five degrees of freedom: three translations ($D_x$, $D_y$, $D_z$) and two rotations ($R_x$, $R_y$).
The sixth degree of freedom ($R_z$) is still required to compute the errors in the frame of the nano-hexapod struts (i.e. to compute the nano-hexapod inverse kinematics).
This $R_z$ rotation is estimated by combining measurements from the spindle encoder and the nano-hexapod's internal metrology, which consists of relative motion sensors in each strut (note that the micro-hexapod is not used for $R_z$ rotation, and is therefore ignore for $R_z$ estimation).
This $R_z$ rotation is estimated by combining measurements from the spindle encoder and the nano-hexapod's internal metrology, which consists of relative motion sensors in each strut (note that the micro-hexapod is not used for $R_z$ rotation, and is therefore ignored for $R_z$ estimation).
The measured sample pose is represented by the homogeneous transformation matrix $\bm{T}_{\text{sample}}$, as shown in equation eqref:eq:nass_sample_pose.
@ -834,7 +834,7 @@ The payloads used for validation have a cylindrical shape with 250 mm height and
Transfer functions from actuator forces $f_i$ to force sensor measurements $f_{mi}$ are computed using the multi-body model.
Figure ref:fig:nass_iff_plant_effect_kp examines how parallel stiffness affects plant dynamics, with identification performed at maximum spindle velocity $\Omega_z = 360\,\text{deg/s}$ and with a payload mass of 25 kg.
Without parallel stiffness (Figure ref:fig:nass_iff_plant_no_kp), the dynamics exhibit non-minimum phase zeros at low frequency, confirming predictions from the three-degree-of-freedom rotating model.
Without parallel stiffness (Figure ref:fig:nass_iff_plant_no_kp), the plant dynamics exhibits non-minimum phase zeros at low frequency, confirming predictions from the three-degree-of-freedom rotating model.
Adding parallel stiffness (Figure ref:fig:nass_iff_plant_kp) transforms these into minimum phase complex conjugate zeros, enabling unconditionally stable decentralized IFF implementation.
Although both cases show significant coupling around the resonances, stability is guaranteed by the collocated arrangement of the actuators and sensors [[cite:&preumont08_trans_zeros_struc_contr_with]].
@ -1425,7 +1425,7 @@ exportFig('figs/nass_iff_root_locus_50kg.pdf', 'width', 'third', 'height', 'norm
** Introduction :ignore:
The implementation of high-bandwidth position control for the nano-hexapod presents several technical challenges.
The plant dynamics exhibit complex behavior influenced by multiple factors, including payload mass, rotational velocity, and the mechanical coupling between the nano-hexapod and the micro-station.
The plant dynamics exhibits complex behavior influenced by multiple factors, including payload mass, rotational velocity, and the mechanical coupling between the nano-hexapod and the micro-station.
This section presents the development and validation of a centralized control strategy designed to achieve precise sample positioning during high-speed tomography experiments.
First, a comprehensive analysis of the plant dynamics is presented in Section ref:ssec:nass_hac_plant, examining the effects of spindle rotation, payload mass variation, and the implementation of Integral Force Feedback (IFF).
@ -1433,7 +1433,7 @@ Section ref:ssec:nass_hac_stiffness validates previous modeling predictions that
Building upon these findings, Section ref:ssec:nass_hac_controller presents the design of a robust high-authority controller that maintains stability across varying payload masses while achieving the desired control bandwidth.
The performance of the developed control strategy was validated through simulations of tomography experiments in Section ref:ssec:nass_hac_tomography.
These simulations incorporated realistic disturbance sources and were used to evaluate the system performance against the stringent positioning requirements imposed by future beamline specifications.
These simulations included realistic disturbance sources and were used to evaluate the system performance against the stringent positioning requirements imposed by future beamline specifications.
Particular attention was paid to the system's behavior under maximum rotational velocity conditions and its ability to accommodate varying payload masses, demonstrating the practical viability of the proposed control approach.
** Matlab Init :noexport:ignore:
@ -1475,7 +1475,7 @@ These mass-dependent dynamic changes present considerable challenges for control
Additional operational parameters were systematically evaluated, including the $R_y$ tilt angle, $R_z$ spindle position, and micro-hexapod position.
These factors were found to exert negligible influence on the plant dynamics, which can be attributed to the effective mechanical decoupling achieved between the plant and micro-station dynamics.
This decoupling characteristic ensures consistent performance across various operational configurations.
This also validates the developed control kinematics.
This also validates the developed control strategy.
#+begin_src matlab
%% Identify the IFF plant dynamics using the Simscape model
@ -2356,7 +2356,7 @@ Simulations were conducted at the maximum operational rotational velocity of $\O
Performance metrics were established based on anticipated future beamline specifications, which specify a beam size of 200nm (horizontal) by 100nm (vertical).
The primary requirement stipulates that the point of interest must remain within beam dimensions throughout operation.
The simulation incorporated two principal disturbance sources: ground motion and spindle vibrations.
The simulation included two principal disturbance sources: ground motion and spindle vibrations.
Additional noise sources, including measurement noise and electrical noise from DAC and voltage amplifiers, were not included in this analysis, as these parameters will be optimized during the detailed design phase.
Figure ref:fig:nass_tomo_1kg_60rpm presents a comparative analysis of positioning errors under both open-loop and closed-loop conditions for a lightweight sample configuration (1kg).

Binary file not shown.

View File

@ -1,4 +1,4 @@
% Created 2025-02-18 Tue 11:47
% Created 2025-03-28 Fri 14:35
% Intended LaTeX compiler: pdflatex
\documentclass[a4paper, 10pt, DIV=12, parskip=full, bibliography=totoc]{scrreprt}
@ -26,7 +26,7 @@
\chapter{Introduction}
The preceding chapters have established crucial foundational elements for the development of the Nano Active Stabilization System (NASS).
The previous chapters have established crucial foundational elements for the development of the Nano Active Stabilization System (NASS).
The uniaxial model study demonstrated that very stiff nano-hexapod configurations should be avoided due to their high coupling with the micro-station dynamics.
A rotating three-degree-of-freedom model revealed that soft nano-hexapod designs prove unsuitable due to gyroscopic effect induced by the spindle rotation.
To further improve the model accuracy, a multi-body model of the micro-station was developed, which was carefully tuned using experimental modal analysis.
@ -120,7 +120,7 @@ The external metrology system measures the sample position relative to the fixed
Due to the system's symmetry, this metrology provides measurements for five degrees of freedom: three translations (\(D_x\), \(D_y\), \(D_z\)) and two rotations (\(R_x\), \(R_y\)).
The sixth degree of freedom (\(R_z\)) is still required to compute the errors in the frame of the nano-hexapod struts (i.e. to compute the nano-hexapod inverse kinematics).
This \(R_z\) rotation is estimated by combining measurements from the spindle encoder and the nano-hexapod's internal metrology, which consists of relative motion sensors in each strut (note that the micro-hexapod is not used for \(R_z\) rotation, and is therefore ignore for \(R_z\) estimation).
This \(R_z\) rotation is estimated by combining measurements from the spindle encoder and the nano-hexapod's internal metrology, which consists of relative motion sensors in each strut (note that the micro-hexapod is not used for \(R_z\) rotation, and is therefore ignored for \(R_z\) estimation).
The measured sample pose is represented by the homogeneous transformation matrix \(\bm{T}_{\text{sample}}\), as shown in equation \eqref{eq:nass_sample_pose}.
@ -197,7 +197,7 @@ The payloads used for validation have a cylindrical shape with 250 mm height and
Transfer functions from actuator forces \(f_i\) to force sensor measurements \(f_{mi}\) are computed using the multi-body model.
Figure \ref{fig:nass_iff_plant_effect_kp} examines how parallel stiffness affects plant dynamics, with identification performed at maximum spindle velocity \(\Omega_z = 360\,\text{deg/s}\) and with a payload mass of 25 kg.
Without parallel stiffness (Figure \ref{fig:nass_iff_plant_no_kp}), the dynamics exhibit non-minimum phase zeros at low frequency, confirming predictions from the three-degree-of-freedom rotating model.
Without parallel stiffness (Figure \ref{fig:nass_iff_plant_no_kp}), the plant dynamics exhibits non-minimum phase zeros at low frequency, confirming predictions from the three-degree-of-freedom rotating model.
Adding parallel stiffness (Figure \ref{fig:nass_iff_plant_kp}) transforms these into minimum phase complex conjugate zeros, enabling unconditionally stable decentralized IFF implementation.
Although both cases show significant coupling around the resonances, stability is guaranteed by the collocated arrangement of the actuators and sensors \cite{preumont08_trans_zeros_struc_contr_with}.
@ -296,7 +296,7 @@ The results demonstrate that the closed-loop poles remain within the left-half p
\chapter{Centralized Active Vibration Control}
\label{sec:nass_hac}
The implementation of high-bandwidth position control for the nano-hexapod presents several technical challenges.
The plant dynamics exhibit complex behavior influenced by multiple factors, including payload mass, rotational velocity, and the mechanical coupling between the nano-hexapod and the micro-station.
The plant dynamics exhibits complex behavior influenced by multiple factors, including payload mass, rotational velocity, and the mechanical coupling between the nano-hexapod and the micro-station.
This section presents the development and validation of a centralized control strategy designed to achieve precise sample positioning during high-speed tomography experiments.
First, a comprehensive analysis of the plant dynamics is presented in Section \ref{ssec:nass_hac_plant}, examining the effects of spindle rotation, payload mass variation, and the implementation of Integral Force Feedback (IFF).
@ -304,7 +304,7 @@ Section \ref{ssec:nass_hac_stiffness} validates previous modeling predictions th
Building upon these findings, Section \ref{ssec:nass_hac_controller} presents the design of a robust high-authority controller that maintains stability across varying payload masses while achieving the desired control bandwidth.
The performance of the developed control strategy was validated through simulations of tomography experiments in Section \ref{ssec:nass_hac_tomography}.
These simulations incorporated realistic disturbance sources and were used to evaluate the system performance against the stringent positioning requirements imposed by future beamline specifications.
These simulations included realistic disturbance sources and were used to evaluate the system performance against the stringent positioning requirements imposed by future beamline specifications.
Particular attention was paid to the system's behavior under maximum rotational velocity conditions and its ability to accommodate varying payload masses, demonstrating the practical viability of the proposed control approach.
\section{HAC Plant}
\label{ssec:nass_hac_plant}
@ -320,7 +320,7 @@ These mass-dependent dynamic changes present considerable challenges for control
Additional operational parameters were systematically evaluated, including the \(R_y\) tilt angle, \(R_z\) spindle position, and micro-hexapod position.
These factors were found to exert negligible influence on the plant dynamics, which can be attributed to the effective mechanical decoupling achieved between the plant and micro-station dynamics.
This decoupling characteristic ensures consistent performance across various operational configurations.
This also validates the developed control kinematics.
This also validates the developed control strategy.
\begin{figure}[h!tbp]
\begin{subfigure}{0.48\textwidth}
@ -448,7 +448,7 @@ Simulations were conducted at the maximum operational rotational velocity of \(\
Performance metrics were established based on anticipated future beamline specifications, which specify a beam size of 200nm (horizontal) by 100nm (vertical).
The primary requirement stipulates that the point of interest must remain within beam dimensions throughout operation.
The simulation incorporated two principal disturbance sources: ground motion and spindle vibrations.
The simulation included two principal disturbance sources: ground motion and spindle vibrations.
Additional noise sources, including measurement noise and electrical noise from DAC and voltage amplifiers, were not included in this analysis, as these parameters will be optimized during the detailed design phase.
Figure \ref{fig:nass_tomo_1kg_60rpm} presents a comparative analysis of positioning errors under both open-loop and closed-loop conditions for a lightweight sample configuration (1kg).