attocube-test-bench/index.html

339 lines
13 KiB
HTML

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2020-11-03 mar. 11:21 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>Attocube - Test Bench</title>
<meta name="generator" content="Org mode" />
<meta name="author" content="Dehaeze Thomas" />
<link rel="stylesheet" type="text/css" href="./css/htmlize.css"/>
<link rel="stylesheet" type="text/css" href="./css/readtheorg.css"/>
<link rel="stylesheet" type="text/css" href="./css/zenburn.css"/>
<script type="text/javascript" src="./js/jquery.min.js"></script>
<script type="text/javascript" src="./js/bootstrap.min.js"></script>
<script type="text/javascript" src="./js/jquery.stickytableheaders.min.js"></script>
<script type="text/javascript" src="./js/readtheorg.js"></script>
<script>MathJax = {
tex: {
tags: 'ams',
macros: {bm: ["\\boldsymbol{#1}",1],}
}
};
</script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
</head>
<body>
<div id="org-div-home-and-up">
<a accesskey="h" href="../index.html"> UP </a>
|
<a accesskey="H" href="../index.html"> HOME </a>
</div><div id="content">
<h1 class="title">Attocube - Test Bench</h1>
<div id="table-of-contents">
<h2>Table of Contents</h2>
<div id="text-table-of-contents">
<ul>
<li><a href="#orgc6ccba7">1. Estimation of the Spectral Density of the Attocube Noise</a>
<ul>
<li><a href="#org3cc416a">1.1. Long and Slow measurement</a></li>
<li><a href="#org821fd88">1.2. Short and Fast measurement</a></li>
<li><a href="#orgecead74">1.3. Obtained Amplitude Spectral Density of the measured displacement</a></li>
</ul>
</li>
<li><a href="#org14aa3d1">2. Effect of the &ldquo;bubble sheet&rdquo; and <b>Aluminium tube</b></a>
<ul>
<li><a href="#org986c782">2.1. Aluminium Tube and Bubble Sheet</a></li>
<li><a href="#orge3f9893">2.2. Only Aluminium Tube</a></li>
<li><a href="#org9430d99">2.3. Nothing</a></li>
<li><a href="#orgf5b2d48">2.4. Comparison</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div id="outline-container-orgc6ccba7" class="outline-2">
<h2 id="orgc6ccba7"><span class="section-number-2">1</span> Estimation of the Spectral Density of the Attocube Noise</h2>
<div class="outline-text-2" id="text-1">
<div id="org93ec5d1" class="figure">
<p><img src="figs/test-bench-shematic.png" alt="test-bench-shematic.png" />
</p>
<p><span class="figure-number">Figure 1: </span>Test Bench Schematic</p>
</div>
<div id="org83b6919" class="figure">
<p><img src="figs/IMG-7865.JPG" alt="IMG-7865.JPG" />
</p>
<p><span class="figure-number">Figure 2: </span>Picture of the test bench. The Attocube and mirror are covered by a &ldquo;bubble sheet&rdquo;</p>
</div>
</div>
<div id="outline-container-org3cc416a" class="outline-3">
<h3 id="org3cc416a"><span class="section-number-3">1.1</span> Long and Slow measurement</h3>
<div class="outline-text-3" id="text-1-1">
<p>
The first measurement was made during ~17 hours with a sampling time of \(T_s = 0.1\,s\).
</p>
<div class="org-src-container">
<pre class="src src-matlab">load(<span class="org-string">'./mat/long_test_plastic.mat'</span>, <span class="org-string">'x'</span>, <span class="org-string">'t'</span>)
Ts = 0.1; <span class="org-comment">% [s]</span>
</pre>
</div>
<div id="orgacdd31b" class="figure">
<p><img src="figs/long_meas_time_domain_full.png" alt="long_meas_time_domain_full.png" />
</p>
<p><span class="figure-number">Figure 3: </span>Long measurement time domain data</p>
</div>
<p>
Let&rsquo;s fit the data with a step response to a first order low pass filter (Figure <a href="#org8514bc0">4</a>).
</p>
<div class="org-src-container">
<pre class="src src-matlab">f = @(b,x) b(1)<span class="org-type">*</span>(1 <span class="org-type">-</span> exp(<span class="org-type">-</span>x<span class="org-type">/</span>b(2)));
y_cur = x(t <span class="org-type">&lt;</span> 17.5<span class="org-type">*</span>60<span class="org-type">*</span>60);
t_cur = t(t <span class="org-type">&lt;</span> 17.5<span class="org-type">*</span>60<span class="org-type">*</span>60);
nrmrsd = @(b) norm(y_cur <span class="org-type">-</span> f(b,t_cur)); <span class="org-comment">% Residual Norm Cost Function</span>
B0 = [400e<span class="org-type">-</span>9, 2<span class="org-type">*</span>60<span class="org-type">*</span>60]; <span class="org-comment">% Choose Appropriate Initial Estimates</span>
[B,rnrm] = fminsearch(nrmrsd, B0); <span class="org-comment">% Estimate Parameters &#8216;B&#8217;</span>
</pre>
</div>
<p>
The corresponding time constant is (in [h]):
</p>
<pre class="example">
2.0658
</pre>
<div id="org8514bc0" class="figure">
<p><img src="figs/long_meas_time_domain_fit.png" alt="long_meas_time_domain_fit.png" />
</p>
<p><span class="figure-number">Figure 4: </span>Fit of the measurement data with a step response of a first order low pass filter</p>
</div>
<p>
We can see in Figure <a href="#orgacdd31b">3</a> that there is a transient period where the measured displacement experiences some drifts.
This is probably due to thermal effects.
We only select the data between <code>t1</code> and <code>t2</code>.
The obtained displacement is shown in Figure <a href="#orgf9150d1">5</a>.
</p>
<div class="org-src-container">
<pre class="src src-matlab">t1 = 10.5; t2 = 17.5; <span class="org-comment">% [h]</span>
x = x(t <span class="org-type">&gt;</span> t1<span class="org-type">*</span>60<span class="org-type">*</span>60 <span class="org-type">&amp;</span> t <span class="org-type">&lt;</span> t2<span class="org-type">*</span>60<span class="org-type">*</span>60);
x = x <span class="org-type">-</span> mean(x);
t = t(t <span class="org-type">&gt;</span> t1<span class="org-type">*</span>60<span class="org-type">*</span>60 <span class="org-type">&amp;</span> t <span class="org-type">&lt;</span> t2<span class="org-type">*</span>60<span class="org-type">*</span>60);
t = t <span class="org-type">-</span> t(1);
</pre>
</div>
<div id="orgf9150d1" class="figure">
<p><img src="figs/long_meas_time_domain_zoom.png" alt="long_meas_time_domain_zoom.png" />
</p>
<p><span class="figure-number">Figure 5: </span>Kept data (removed slow drifts during the first hours)</p>
</div>
<p>
The Power Spectral Density of the measured displacement is computed
</p>
<div class="org-src-container">
<pre class="src src-matlab">win = hann(ceil(length(x)<span class="org-type">/</span>20));
[p_1, f_1] = pwelch(x, win, [], [], 1<span class="org-type">/</span>Ts);
</pre>
</div>
<p>
As a low pass filter was used in the measurement process, we multiply the PSD by the square of the inverse of the filter&rsquo;s norm.
</p>
<div class="org-src-container">
<pre class="src src-matlab">G_lpf = 1<span class="org-type">/</span>(1 <span class="org-type">+</span> s<span class="org-type">/</span>2<span class="org-type">/</span><span class="org-constant">pi</span>);
p_1 = p_1<span class="org-type">./</span>abs(squeeze(freqresp(G_lpf, f_1, <span class="org-string">'Hz'</span>)))<span class="org-type">.^</span>2;
</pre>
</div>
<p>
Only frequencies below 2Hz are taken into account (high frequency noise will be measured afterwards).
</p>
<div class="org-src-container">
<pre class="src src-matlab">p_1 = p_1(f_1 <span class="org-type">&lt;</span> 2);
f_1 = f_1(f_1 <span class="org-type">&lt;</span> 2);
</pre>
</div>
</div>
</div>
<div id="outline-container-org821fd88" class="outline-3">
<h3 id="org821fd88"><span class="section-number-3">1.2</span> Short and Fast measurement</h3>
<div class="outline-text-3" id="text-1-2">
<p>
An second measurement is done in order to estimate the high frequency noise of the interferometer.
The measurement is done with a sampling time of \(T_s = 0.1\,ms\) and a duration of ~100s.
</p>
<div class="org-src-container">
<pre class="src src-matlab">load(<span class="org-string">'./mat/short_test_plastic.mat'</span>)
Ts = 1e<span class="org-type">-</span>4; <span class="org-comment">% [s]</span>
</pre>
</div>
<div class="org-src-container">
<pre class="src src-matlab">x = detrend(x, 0);
</pre>
</div>
<p>
The time domain measurement is shown in Figure <a href="#orgfb8bd83">6</a>.
</p>
<div id="orgfb8bd83" class="figure">
<p><img src="figs/short_meas_time_domain.png" alt="short_meas_time_domain.png" />
</p>
<p><span class="figure-number">Figure 6: </span>Time domain measurement with the high sampling rate</p>
</div>
<p>
The Power Spectral Density of the measured displacement is computed
</p>
<div class="org-src-container">
<pre class="src src-matlab">win = hann(ceil(length(x)<span class="org-type">/</span>20));
[p_2, f_2] = pwelch(x, win, [], [], 1<span class="org-type">/</span>Ts);
</pre>
</div>
</div>
</div>
<div id="outline-container-orgecead74" class="outline-3">
<h3 id="orgecead74"><span class="section-number-3">1.3</span> Obtained Amplitude Spectral Density of the measured displacement</h3>
<div class="outline-text-3" id="text-1-3">
<p>
The computed ASD of the two measurements are combined in Figure <a href="#org669cb34">7</a>.
</p>
<div id="org669cb34" class="figure">
<p><img src="figs/psd_combined.png" alt="psd_combined.png" />
</p>
<p><span class="figure-number">Figure 7: </span>Obtained Amplitude Spectral Density of the measured displacement</p>
</div>
</div>
</div>
</div>
<div id="outline-container-org14aa3d1" class="outline-2">
<h2 id="org14aa3d1"><span class="section-number-2">2</span> Effect of the &ldquo;bubble sheet&rdquo; and <b>Aluminium tube</b></h2>
<div class="outline-text-2" id="text-2">
<div id="orgbf4b90d" class="figure">
<p><img src="figs/IMG-7864.JPG" alt="IMG-7864.JPG" />
</p>
<p><span class="figure-number">Figure 8: </span>Aluminium tube used to protect the beam path from disturbances</p>
</div>
</div>
<div id="outline-container-org986c782" class="outline-3">
<h3 id="org986c782"><span class="section-number-3">2.1</span> Aluminium Tube and Bubble Sheet</h3>
<div class="outline-text-3" id="text-2-1">
<div class="org-src-container">
<pre class="src src-matlab">load(<span class="org-string">'./mat/short_test_plastic.mat'</span>);
Ts = 1e<span class="org-type">-</span>4; <span class="org-comment">% [s]</span>
</pre>
</div>
<div class="org-src-container">
<pre class="src src-matlab">x = detrend(x, 0);
</pre>
</div>
<div class="org-src-container">
<pre class="src src-matlab">win = hann(ceil(length(x)<span class="org-type">/</span>10));
[p_1, f_1] = pwelch(x, win, [], [], 1<span class="org-type">/</span>Ts);
</pre>
</div>
</div>
</div>
<div id="outline-container-orge3f9893" class="outline-3">
<h3 id="orge3f9893"><span class="section-number-3">2.2</span> Only Aluminium Tube</h3>
<div class="outline-text-3" id="text-2-2">
<div class="org-src-container">
<pre class="src src-matlab">load(<span class="org-string">'./mat/short_test_alu_tube.mat'</span>);
Ts = 1e<span class="org-type">-</span>4; <span class="org-comment">% [s]</span>
</pre>
</div>
<div class="org-src-container">
<pre class="src src-matlab">x = detrend(x, 0);
</pre>
</div>
<p>
The time domain measurement is shown in Figure <a href="#orgfb8bd83">6</a>.
</p>
<div class="org-src-container">
<pre class="src src-matlab">win = hann(ceil(length(x)<span class="org-type">/</span>10));
[p_2, f_2] = pwelch(x, win, [], [], 1<span class="org-type">/</span>Ts);
</pre>
</div>
</div>
</div>
<div id="outline-container-org9430d99" class="outline-3">
<h3 id="org9430d99"><span class="section-number-3">2.3</span> Nothing</h3>
<div class="outline-text-3" id="text-2-3">
<div class="org-src-container">
<pre class="src src-matlab">load(<span class="org-string">'./mat/short_test_without_material.mat'</span>);
Ts = 1e<span class="org-type">-</span>4; <span class="org-comment">% [s]</span>
</pre>
</div>
<div class="org-src-container">
<pre class="src src-matlab">x = detrend(x, 0);
</pre>
</div>
<p>
The time domain measurement is shown in Figure <a href="#orgfb8bd83">6</a>.
</p>
<div class="org-src-container">
<pre class="src src-matlab">win = hann(ceil(length(x)<span class="org-type">/</span>10));
[p_3, f_3] = pwelch(x, win, [], [], 1<span class="org-type">/</span>Ts);
</pre>
</div>
</div>
</div>
<div id="outline-container-orgf5b2d48" class="outline-3">
<h3 id="orgf5b2d48"><span class="section-number-3">2.4</span> Comparison</h3>
<div class="outline-text-3" id="text-2-4">
<div id="orgb09511f" class="figure">
<p><img src="figs/asd_noise_comp_bubble_aluminium.png" alt="asd_noise_comp_bubble_aluminium.png" />
</p>
<p><span class="figure-number">Figure 9: </span>Comparison of the noise ASD with and without bubble sheet</p>
</div>
</div>
</div>
</div>
</div>
<div id="postamble" class="status">
<p class="author">Author: Dehaeze Thomas</p>
<p class="date">Created: 2020-11-03 mar. 11:21</p>
</div>
</body>
</html>