From 1956132d5510399a7db5088637beb90aaeb393d9 Mon Sep 17 00:00:00 2001 From: Thomas Dehaeze Date: Tue, 10 Nov 2020 11:16:36 +0100 Subject: [PATCH] Export to html --- index.html | 193 ++++++++++++++++++++++++++++++++++++++++------------- 1 file changed, 146 insertions(+), 47 deletions(-) diff --git a/index.html b/index.html index d487543..a275cfd 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> - + Encoder - Test Bench @@ -26,18 +26,19 @@

Table of Contents

@@ -52,43 +53,57 @@ In this document, we wish to study the use of an encoder in parallel with an Amp The document is divided into the following Sections:

-
-

1 Experimental Setup

+
+

1 Experimental Setup

- +

-The experimental Setup is schematically represented in Figure 1. +The experimental Setup is schematically represented in Figure 1.

+
+

+Here are the equipment used in the test bench: +

+
    +
  • Renishaw Resolution Encoder with 1nm resolution (doc)
  • +
  • Attocube interferometer (doc)
  • +
  • Cedrat Amplified Piezoelectric Actuator APA95ML (doc)
  • +
  • Voltage Amplifier LA75B (doc)
  • +
  • Speedgoat IO131 with 16bits ADC and DAC (doc)
  • +
+ +
+

The mass can be vertically moved using the amplified piezoelectric actuator. -The displacement of the mass (relative to the mechanical frame) is measured both by the interferometer and by an encoder. +The displacement of the mass (relative to the mechanical frame) is measured both by the interferometer and by the encoder.

-
+

exp_setup_schematic.png

Figure 1: Schematic of the Experiment

-
+

IMG_20201023_153905.jpg

Figure 2: Side View of the encoder

-
+

IMG_20201023_153914.jpg

Figure 3: Front View of the encoder

@@ -96,25 +111,29 @@ The displacement of the mass (relative to the mechanical frame) is measured both
-
-

2 Noise Spectral Density of the Encoder

+
+

2 Noise Spectral Density of the Encoder

- +

The goal in this section is the estimate the noise of both the encoder and the intereferometer.

-Nothing is then to the actuator such that the relative motion between the mass and the frame is as small as possible. +The actuator is not excited, thus the relative motion between the mass and the frame is as small as possible. Ideally, a mechanical part would clamp the two together, we here suppose that the APA is still enough to clamp the two together.

-
-

2.1 Load Data

+
+

2.1 Load Data

+

+The measurement data are loaded and the offset are removed using the detrend command. +

+
load('mat/int_enc_huddle_test.mat', 'interferometer', 'encoder', 't');
 
@@ -128,23 +147,30 @@ encoder = detrend(encoder, 0);
-
-

2.2 Time Domain Results

+
+

2.2 Time Domain Results

+

+The measurement of both the encoder and interferometer are shown in Figure 4. +

-
+ +

huddle_test_time_domain.png

Figure 4: Huddle test - Time domain signals

+

+The raw signals are filtered with a Low Pass filter (defined below) such that we can see the low frequency motion (Figure 5). +

G_lpf = 1/(1 + s/2/pi/10);
 
-
+

huddle_test_time_domain_filtered.png

Figure 5: Huddle test - Time domain signals filtered with a LPF at 10Hz

@@ -152,9 +178,13 @@ encoder = detrend(encoder, 0);
-
-

2.3 Frequency Domain Noise

+
+

2.3 Frequency Domain Noise

+

+The noise of the measurement (supposing there is no motion) is now translated in the frequency domain by computed the Amplitude Spectral Density. +

+
Ts = 1e-4;
 win = hann(ceil(10/Ts));
@@ -164,8 +194,16 @@ win = hann(ceil(10/Ts));
 
+

+The comparison of the ASD of the encoder and interferometer are shown in Figure 6. +

-
+

+It is clear that although the encoder exhibit higher frequency noise, is it more stable at low frequency as the length of the beam path in the air is much smaller and thus changed of temperature/pressure/humity of the air has much smaller effect on the measured displacement. +

+ + +

huddle_test_asd.png

Figure 6: Amplitude Spectral Density of the signals during the Huddle test

@@ -174,22 +212,42 @@ win = hann(ceil(10/Ts));
-
-

3 Dynamics from Actuator to Encoder

+
+

3 Dynamics from Actuator to Encoder

- + +

+

+Now the dynamics from the force actuator to the measurement by the encoder is identified.

-
-

3.1 Load Data

+
+

3.1 Load Data

+

+As usual, the measurement data are loaded. +

load('mat/int_enc_id_noise_bis.mat', 'interferometer', 'encoder', 'u', 't');
 
+

+The first 0.1 seconds are removed as it corresponds to transient behavior. +

+
+
interferometer = interferometer(t>0.1);
+encoder = encoder(t>0.1);
+u = u(t>0.1);
+t = t(t>0.1);
+
+
+ +

+Finally the offset are removed using the detrend command. +

interferometer = detrend(interferometer, 0);
 encoder = detrend(encoder, 0);
@@ -199,17 +257,45 @@ u = detrend(u, 0);
 
-
-

3.2 Identification

+
+

3.2 Excitation and Measured Signals

+

+The excitation signal is a white noise filtered by a low pass filter to not excite too much the high frequency modes. +

+ +

+The excitation signal is shown in Figure 7. +

+ +
+

encoder_identification_excitation_time.png +

+
+ +

+The measured motion by the interferometer and encoder is shown in Figure +

+ +
+

encoder_identification_motion.png +

+
+
+
+ +
+

3.3 Identification

+
+

+Now the dynamics from the voltage sent to the voltage amplitude driving the APA95ML to the measured displacement by both the encoder and interferometer are computed. +

+
Ts = 1e-4; % Sampling Time [s]
 win = hann(ceil(10/Ts));
-
-
-
-
[tf_i_est, f] = tfestimate(u, interferometer, win, [], [], 1/Ts);
+[tf_i_est, f] = tfestimate(u, interferometer, win, [], [], 1/Ts);
 [co_i_est, ~] = mscohere(u, interferometer, win, [], [], 1/Ts);
 
 [tf_e_est, ~] = tfestimate(u, encoder, win, [], [], 1/Ts);
@@ -217,25 +303,38 @@ win = hann(ceil(10/Ts));
 
+

+The obtained coherence is shown in Figure 9. +It is shown that the identification is good until 500Hz for the interferometer and until 1kHz for the encoder. +

-
+ +

identification_dynamics_coherence.png

+

+The compared dynamics as measured by the intereferometer and encoder are shown in Figure 10. +

-
+

identification_dynamics_bode.png

+ + +

+The second resonance at around 900Hz most likely corresponds to the resonance of either the ruler support or the head support. +

Author: Dehaeze Thomas

-

Created: 2020-11-10 mar. 10:42

+

Created: 2020-11-10 mar. 11:16