237 lines
		
	
	
		
			8.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			237 lines
		
	
	
		
			8.0 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-08-13 jeu. 09:43 -->
 | 
						|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
 | 
						|
<title>Measurement of Piezoelectric Amplifiers</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>
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
<div id="content">
 | 
						|
<h1 class="title">Measurement of Piezoelectric Amplifiers</h1>
 | 
						|
<div id="table-of-contents">
 | 
						|
<h2>Table of Contents</h2>
 | 
						|
<div id="text-table-of-contents">
 | 
						|
<ul>
 | 
						|
<li><a href="#org7cd0359">1. Effect of a change of capacitance</a>
 | 
						|
<ul>
 | 
						|
<li><a href="#org8d85654">1.1. Cedrat Technology</a></li>
 | 
						|
<li><a href="#org68ca424">1.2. PI</a></li>
 | 
						|
</ul>
 | 
						|
</li>
 | 
						|
<li><a href="#org050cae4">2. Effect of a change in Voltage level</a>
 | 
						|
<ul>
 | 
						|
<li><a href="#orga37be55">2.1. Cedrat Technology</a></li>
 | 
						|
<li><a href="#org84c2c10">2.2. PI</a></li>
 | 
						|
</ul>
 | 
						|
</li>
 | 
						|
<li><a href="#org0a60460">3. Comparison PI / Cedrat</a>
 | 
						|
<ul>
 | 
						|
<li><a href="#orgbed9e43">3.1. Results</a></li>
 | 
						|
</ul>
 | 
						|
</li>
 | 
						|
</ul>
 | 
						|
</div>
 | 
						|
</div>
 | 
						|
 | 
						|
<div id="outline-container-org7cd0359" class="outline-2">
 | 
						|
<h2 id="org7cd0359"><span class="section-number-2">1</span> Effect of a change of capacitance</h2>
 | 
						|
<div class="outline-text-2" id="text-1">
 | 
						|
</div>
 | 
						|
<div id="outline-container-org8d85654" class="outline-3">
 | 
						|
<h3 id="org8d85654"><span class="section-number-3">1.1</span> Cedrat Technology</h3>
 | 
						|
<div class="outline-text-3" id="text-1-1">
 | 
						|
<p>
 | 
						|
Load Data
 | 
						|
</p>
 | 
						|
<div class="org-src-container">
 | 
						|
<pre class="src src-matlab">piezo1 = load('mat/cedrat_la75b_med_1_stack.mat', 't', 'V_in', 'V_out');
 | 
						|
piezo2 = load('mat/cedrat_la75b_med_2_stack.mat', 't', 'V_in', 'V_out');
 | 
						|
piezo3 = load('mat/cedrat_la75b_med_3_stack.mat', 't', 'V_in', 'V_out');
 | 
						|
</pre>
 | 
						|
</div>
 | 
						|
 | 
						|
<p>
 | 
						|
Compute Coherence and Transfer functions
 | 
						|
</p>
 | 
						|
<div class="org-src-container">
 | 
						|
<pre class="src src-matlab">Ts = 1e-4;
 | 
						|
win = hann(ceil(0.1/Ts));
 | 
						|
 | 
						|
[tf_1, f_1] = tfestimate(piezo1.V_in, piezo1.V_out, win, [], [], 1/Ts);
 | 
						|
[co_1, ~] = mscohere(piezo1.V_in, piezo1.V_out, win, [], [], 1/Ts);
 | 
						|
 | 
						|
 | 
						|
[tf_2, f_2] = tfestimate(piezo2.V_in, piezo2.V_out, win, [], [], 1/Ts);
 | 
						|
[co_2, ~] = mscohere(piezo2.V_in, piezo2.V_out, win, [], [], 1/Ts);
 | 
						|
 | 
						|
 | 
						|
[tf_3, f_3] = tfestimate(piezo3.V_in, piezo3.V_out, win, [], [], 1/Ts);
 | 
						|
[co_3, ~] = mscohere(piezo3.V_in, piezo3.V_out, win, [], [], 1/Ts);
 | 
						|
</pre>
 | 
						|
</div>
 | 
						|
 | 
						|
 | 
						|
<div id="orgea0a250" class="figure">
 | 
						|
<p><img src="figs/change_capa_cedrat.png" alt="change_capa_cedrat.png" />
 | 
						|
</p>
 | 
						|
<p><span class="figure-number">Figure 1: </span>Effect of a change of the piezo capacitance on the Amplifier transfer function</p>
 | 
						|
</div>
 | 
						|
</div>
 | 
						|
</div>
 | 
						|
 | 
						|
<div id="outline-container-org68ca424" class="outline-3">
 | 
						|
<h3 id="org68ca424"><span class="section-number-3">1.2</span> PI</h3>
 | 
						|
<div class="outline-text-3" id="text-1-2">
 | 
						|
<div class="org-src-container">
 | 
						|
<pre class="src src-matlab">piezo1 = load('mat/pi_505_high.mat', 't', 'V_in', 'V_out');
 | 
						|
piezo2 = load('mat/pi_505_high_2_stacks.mat', 't', 'V_in', 'V_out');
 | 
						|
piezo3 = load('mat/pi_505_high_3_stacks.mat', 't', 'V_in', 'V_out');
 | 
						|
</pre>
 | 
						|
</div>
 | 
						|
 | 
						|
<div class="org-src-container">
 | 
						|
<pre class="src src-matlab">Ts = 1e-4;
 | 
						|
win = hann(ceil(0.1/Ts));
 | 
						|
 | 
						|
[tf_1, f_1] = tfestimate(piezo1.V_in, piezo1.V_out, win, [], [], 1/Ts);
 | 
						|
[co_1, ~] = mscohere(piezo1.V_in, piezo1.V_out, win, [], [], 1/Ts);
 | 
						|
 | 
						|
 | 
						|
[tf_2, f_2] = tfestimate(piezo2.V_in, piezo2.V_out, win, [], [], 1/Ts);
 | 
						|
[co_2, ~] = mscohere(piezo2.V_in, piezo2.V_out, win, [], [], 1/Ts);
 | 
						|
 | 
						|
 | 
						|
[tf_3, f_3] = tfestimate(piezo3.V_in, piezo3.V_out, win, [], [], 1/Ts);
 | 
						|
[co_3, ~] = mscohere(piezo3.V_in, piezo3.V_out, win, [], [], 1/Ts);
 | 
						|
</pre>
 | 
						|
</div>
 | 
						|
 | 
						|
 | 
						|
<div id="org2b2f935" class="figure">
 | 
						|
<p><img src="figs/change_capa_pi.png" alt="change_capa_pi.png" />
 | 
						|
</p>
 | 
						|
<p><span class="figure-number">Figure 2: </span>Effect of a change of the piezo capacitance on the Amplifier transfer function</p>
 | 
						|
</div>
 | 
						|
</div>
 | 
						|
</div>
 | 
						|
</div>
 | 
						|
 | 
						|
<div id="outline-container-org050cae4" class="outline-2">
 | 
						|
<h2 id="org050cae4"><span class="section-number-2">2</span> Effect of a change in Voltage level</h2>
 | 
						|
<div class="outline-text-2" id="text-2">
 | 
						|
</div>
 | 
						|
<div id="outline-container-orga37be55" class="outline-3">
 | 
						|
<h3 id="orga37be55"><span class="section-number-3">2.1</span> Cedrat Technology</h3>
 | 
						|
<div class="outline-text-3" id="text-2-1">
 | 
						|
<div class="org-src-container">
 | 
						|
<pre class="src src-matlab">hi = load('mat/cedrat_la75b_high_1_stack.mat', 't', 'V_in', 'V_out');
 | 
						|
me = load('mat/cedrat_la75b_med_1_stack.mat', 't', 'V_in', 'V_out');
 | 
						|
lo = load('mat/cedrat_la75b_low_1_stack.mat', 't', 'V_in', 'V_out');
 | 
						|
</pre>
 | 
						|
</div>
 | 
						|
 | 
						|
<div class="org-src-container">
 | 
						|
<pre class="src src-matlab">Ts = 1e-4;
 | 
						|
win = hann(ceil(0.1/Ts));
 | 
						|
 | 
						|
[tf_hi, f_hi] = tfestimate(hi.V_in, hi.V_out, win, [], [], 1/Ts);
 | 
						|
[co_hi, ~] = mscohere(hi.V_in, hi.V_out, win, [], [], 1/Ts);
 | 
						|
 | 
						|
[tf_me, f_me] = tfestimate(me.V_in, me.V_out, win, [], [], 1/Ts);
 | 
						|
[co_me, ~] = mscohere(me.V_in, me.V_out, win, [], [], 1/Ts);
 | 
						|
 | 
						|
[tf_lo, f_lo] = tfestimate(lo.V_in, lo.V_out, win, [], [], 1/Ts);
 | 
						|
[co_lo, ~] = mscohere(lo.V_in, lo.V_out, win, [], [], 1/Ts);
 | 
						|
</pre>
 | 
						|
</div>
 | 
						|
 | 
						|
 | 
						|
<div id="orgde72643" class="figure">
 | 
						|
<p><img src="figs/change_level_cedrat.png" alt="change_level_cedrat.png" />
 | 
						|
</p>
 | 
						|
<p><span class="figure-number">Figure 3: </span>Effect of a change of voltage level on the Amplifier transfer function</p>
 | 
						|
</div>
 | 
						|
</div>
 | 
						|
</div>
 | 
						|
 | 
						|
<div id="outline-container-org84c2c10" class="outline-3">
 | 
						|
<h3 id="org84c2c10"><span class="section-number-3">2.2</span> PI</h3>
 | 
						|
<div class="outline-text-3" id="text-2-2">
 | 
						|
<div class="org-src-container">
 | 
						|
<pre class="src src-matlab">hi = load('mat/pi_505_high.mat', 't', 'V_in', 'V_out');
 | 
						|
lo = load('mat/pi_505_low.mat', 't', 'V_in', 'V_out');
 | 
						|
</pre>
 | 
						|
</div>
 | 
						|
 | 
						|
<div class="org-src-container">
 | 
						|
<pre class="src src-matlab">Ts = 1e-4;
 | 
						|
win = hann(ceil(0.1/Ts));
 | 
						|
 | 
						|
[tf_hi, f_hi] = tfestimate(hi.V_in, hi.V_out, win, [], [], 1/Ts);
 | 
						|
[co_hi, ~] = mscohere(hi.V_in, hi.V_out, win, [], [], 1/Ts);
 | 
						|
 | 
						|
[tf_lo, f_lo] = tfestimate(lo.V_in, lo.V_out, win, [], [], 1/Ts);
 | 
						|
[co_lo, ~] = mscohere(lo.V_in, lo.V_out, win, [], [], 1/Ts);
 | 
						|
</pre>
 | 
						|
</div>
 | 
						|
 | 
						|
 | 
						|
<div id="orge91bdf4" class="figure">
 | 
						|
<p><img src="figs/change_level_pi.png" alt="change_level_pi.png" />
 | 
						|
</p>
 | 
						|
<p><span class="figure-number">Figure 4: </span>Effect of a change of voltage level on the Amplifier transfer function</p>
 | 
						|
</div>
 | 
						|
</div>
 | 
						|
</div>
 | 
						|
</div>
 | 
						|
 | 
						|
<div id="outline-container-org0a60460" class="outline-2">
 | 
						|
<h2 id="org0a60460"><span class="section-number-2">3</span> Comparison PI / Cedrat</h2>
 | 
						|
<div class="outline-text-2" id="text-3">
 | 
						|
</div>
 | 
						|
<div id="outline-container-orgbed9e43" class="outline-3">
 | 
						|
<h3 id="orgbed9e43"><span class="section-number-3">3.1</span> Results</h3>
 | 
						|
<div class="outline-text-3" id="text-3-1">
 | 
						|
<div class="org-src-container">
 | 
						|
<pre class="src src-matlab">ce_results = load('mat/cedrat_la75b_high_1_stack.mat', 't', 'V_in', 'V_out');
 | 
						|
pi_results = load('mat/pi_505_high.mat', 't', 'V_in', 'V_out');
 | 
						|
</pre>
 | 
						|
</div>
 | 
						|
 | 
						|
<div class="org-src-container">
 | 
						|
<pre class="src src-matlab">Ts = 1e-4;
 | 
						|
win = hann(ceil(0.1/Ts));
 | 
						|
 | 
						|
[tf_ce, f_ce] = tfestimate(ce_results.V_in, ce_results.V_out, win, [], [], 1/Ts);
 | 
						|
[tf_pi, f_pi] = tfestimate(pi_results.V_in, pi_results.V_out, win, [], [], 1/Ts);
 | 
						|
</pre>
 | 
						|
</div>
 | 
						|
 | 
						|
 | 
						|
<div id="orgcb60c2b" class="figure">
 | 
						|
<p><img src="figs/tf_amplifiers_comp.png" alt="tf_amplifiers_comp.png" />
 | 
						|
</p>
 | 
						|
<p><span class="figure-number">Figure 5: </span>Comparison of the two Amplifier transfer functions</p>
 | 
						|
</div>
 | 
						|
</div>
 | 
						|
</div>
 | 
						|
</div>
 | 
						|
</div>
 | 
						|
<div id="postamble" class="status">
 | 
						|
<p class="author">Author: Dehaeze Thomas</p>
 | 
						|
<p class="date">Created: 2020-08-13 jeu. 09:43</p>
 | 
						|
</div>
 | 
						|
</body>
 | 
						|
</html>
 |