<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>2. Déploiement des enregistreurs on Le suivi acoustique passif</title><link>https://lucasvoirin.github.io/pam-workshop/fr/workshop/deployment/</link><description>Recent content in 2. Déploiement des enregistreurs on Le suivi acoustique passif</description><generator>Hugo -- gohugo.io</generator><language>fr</language><atom:link href="https://lucasvoirin.github.io/pam-workshop/fr/workshop/deployment/index.xml" rel="self" type="application/rss+xml"/><item><title>Matériel</title><link>https://lucasvoirin.github.io/pam-workshop/fr/workshop/deployment/equipment/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://lucasvoirin.github.io/pam-workshop/fr/workshop/deployment/equipment/</guid><description>&lt;p&gt;L&amp;rsquo;outil de base du suivi acoustique passif est l&amp;rsquo;enregistreur autonome.&lt;/p&gt;
&lt;p&gt;Il s&amp;rsquo;agit d&amp;rsquo;un appareil électronique programmable composé d&amp;rsquo;un système de capture du son, d&amp;rsquo;un système d&amp;rsquo;alimentation électrique et d&amp;rsquo;un système de stockage des données.&lt;/p&gt;

&lt;h2 class="relative group"&gt;Programmation des enregistrements
 &lt;div id="programmation-des-enregistrements" class="anchor"&gt;&lt;/div&gt;
 
&lt;/h2&gt;
&lt;p&gt;L&amp;rsquo;intérêt de l&amp;rsquo;enregistreur autonome repose principalement sur la possibilité de pouvoir le programmer. L&amp;rsquo;interface de programmation est différente selon les constructeurs et les modèles mais les options restent similaires.&lt;/p&gt;
&lt;p&gt;Il est généralement possible de programmer la fréquence et la durée des périodes d&amp;rsquo;enregistrement, mais aussi de baser les périodes sur le lever et coucher du soleil.&lt;/p&gt;</description></item><item><title>Réglages des enregistreurs</title><link>https://lucasvoirin.github.io/pam-workshop/fr/workshop/deployment/settings/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://lucasvoirin.github.io/pam-workshop/fr/workshop/deployment/settings/</guid><description>&lt;p&gt;Lors de la programmation d&amp;rsquo;un enregistreur, il est généralement nécessaire de spécifier certains paramètres acoustiques. Ces paramètres définissent la façon dont le micro de enregistre la pression sonore.&lt;/p&gt;

&lt;h2 class="relative group"&gt;Gain
 &lt;div id="gain" class="anchor"&gt;&lt;/div&gt;
 
&lt;/h2&gt;
&lt;p&gt;Le gain est une constante par laquelle l&amp;rsquo;enregistreur multiplie la puissance du signal reçu. Cela peut permettre d&amp;rsquo;augmenter la puissance de signaux faibles ou diminuer la puissance de signaux trop forts.&lt;/p&gt;
&lt;p&gt;Même si cela peut être tentant d&amp;rsquo;augmenter le gain pour obtenir des signaux plus forts, cela entraîne généralement une augmentation du bruit et diminue ainsi la qualité des enregistrements.&lt;/p&gt;</description></item><item><title>Numériser le signal</title><link>https://lucasvoirin.github.io/pam-workshop/fr/workshop/deployment/quantization/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://lucasvoirin.github.io/pam-workshop/fr/workshop/deployment/quantization/</guid><description>&lt;p&gt;Une onde sonore peut être représentée par un signal sinusoïdal.&lt;/p&gt;
&lt;details class="code-fold"&gt;
&lt;summary&gt;Code&lt;/summary&gt;
&lt;div class="highlight-wrapper"&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-r" data-lang="r"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="n"&gt;x&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;seq&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="m"&gt;0&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="m"&gt;4&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="m"&gt;0.01&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="n"&gt;y&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;sin&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="m"&gt;2&lt;/span&gt;&lt;span class="o"&gt;*&lt;/span&gt;&lt;span class="kc"&gt;pi&lt;/span&gt;&lt;span class="o"&gt;*&lt;/span&gt;&lt;span class="n"&gt;x&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="nf"&gt;plot&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;x&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="n"&gt;y&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="n"&gt;type&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;l&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="n"&gt;xlab&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;Temps&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;ylab&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;Pression&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;/details&gt;
&lt;img src="fr/unnamed-chunk-1-1.png" width="768" /&gt;
&lt;p&gt;Ce signal corespond aux variations de pression au cours du temps dans du milieu de propagation du son.&lt;/p&gt;
&lt;p&gt;Ce signal est dit &lt;strong&gt;analogique&lt;/strong&gt; car il varie continuellement au cours du temps.&lt;/p&gt;
&lt;p&gt;Pour traiter ce signal avec des appareils numériques, on ne peut pas le garder sous cette forme.
On doit créer un signal &lt;strong&gt;numérique&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Pour cela on doit discrétiser le signal sur le temps et sur l&amp;rsquo;amplitude.&lt;/p&gt;</description></item><item><title>Gestion de la batterie</title><link>https://lucasvoirin.github.io/pam-workshop/fr/workshop/deployment/battery/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://lucasvoirin.github.io/pam-workshop/fr/workshop/deployment/battery/</guid><description>&lt;h2 class="relative group"&gt;Évolution de la tension
 &lt;div id="évolution-de-la-tension" class="anchor"&gt;&lt;/div&gt;
 
&lt;/h2&gt;
&lt;figure&gt;&lt;img
 class="my-0 rounded-md"
 loading="lazy"
 decoding="async"
 fetchpriority="low"
 alt=""
 src="https://lucasvoirin.github.io/pam-workshop/fr/workshop/deployment/battery/tension.png"
 &gt;&lt;/figure&gt;

&lt;h2 class="relative group"&gt;Effet de la température
 &lt;div id="effet-de-la-température" class="anchor"&gt;&lt;/div&gt;
 
&lt;/h2&gt;
&lt;figure&gt;&lt;img
 class="my-0 rounded-md"
 loading="lazy"
 decoding="async"
 fetchpriority="low"
 alt=""
 src="https://lucasvoirin.github.io/pam-workshop/fr/workshop/deployment/battery/tension_temperature.png"
 &gt;&lt;/figure&gt;</description></item></channel></rss>