Add results chapter, completely rework the graphics

This commit is contained in:
Nathanaël Restori 2012-10-20 11:06:59 +02:00
parent 1d19cc0aa6
commit 51231f78c7
33 changed files with 174431 additions and 389725 deletions

View File

@ -1,39 +0,0 @@
# Inspired by http://youinfinitesnake.blogspot.ch/2011/02/attractive-scientific-plots-with.html
# and http://www.gnuplotting.org/why-you-should-upgrade-to-gnuplot-4-4-3/
set terminal svg enhanced mouse size 1920,1440 rounded dashed
set output 'T-H.svg'
# Line style for axes
set style line 80 lt 0
set style line 80 lt rgb '#808080'
# Line style for grid
set style line 81 lt 3 # dashed
set style line 81 lt rgb '#808080' lw 0.5 # grey
set grid back linestyle 81
set border 3 back linestyle 80
set xtics nomirror
set ytics nomirror
set style line 1 linetype 1
set style line 2 linetype 1
set style line 1 linetype rgb '#A00000' linewidth 2 pointtype 7
set style line 2 linetype rgb '#00A000' linewidth 2 pointtype 9
set size 1,1
set origin 0,0
set xlabel 'Température'
set ylabel 'Humidité'
plot 'DATA-T-H.TSV' using 3:6:1 title 'Hr [%]' with points linestyle 1, \
'DATA-T-H.TSV' using 3:6:1 title 'Hr moyen [%]' smooth unique with linespoints linestyle 2
reset
set output
!gzip -S z T-H.svg

View File

@ -1,23 +1,18 @@
# Inspired by http://youinfinitesnake.blogspot.ch/2011/02/attractive-scientific-plots-with.html
# and http://www.gnuplotting.org/why-you-should-upgrade-to-gnuplot-4-4-3/
# and http://www.gnuplotting.org/attractive-plots/
set terminal epslatex size 5.8,8.2 color colortext 'phv,9' header '\definecolor{t}{rgb}{0.5,0.5,0.5}'
set format '\color{t}$%g$'
set output 'data.tex'
# Line style for axes
set style line 80 lt 0
set style line 80 lt rgb '#808080'
# Line style for grid
set style line 81 lt 3 # dashed
set style line 81 lt rgb '#808080' lw 0.5 # grey
set grid back linestyle 81
set border 3 back linestyle 80
set xtics nomirror
set ytics nomirror
# define axis
# remove border on top and right and set color to gray
set style line 11 lc rgb '#808080' lt 1
set border 3 back ls 11
set tics nomirror
# define grid
set style line 12 lc rgb '#808080' lt 0 lw 1
set grid back ls 12
set style line 1 linetype 1
set style line 2 linetype 1

View File

@ -1,22 +1,17 @@
# Inspired by http://youinfinitesnake.blogspot.ch/2011/02/attractive-scientific-plots-with.html
# and http://www.gnuplotting.org/why-you-should-upgrade-to-gnuplot-4-4-3/
# and http://www.gnuplotting.org/attractive-plots/
set terminal svg enhanced mouse size 1920,1440 rounded dashed
set output 'data.svg'
set terminal pngcairo size 960,1360 enhanced font 'Verdana,9'
set output 'data.png'
# Line style for axes
set style line 80 lt 0
set style line 80 lt rgb '#808080'
# Line style for grid
set style line 81 lt 3 # dashed
set style line 81 lt rgb '#808080' lw 0.5 # grey
set grid back linestyle 81
set border 3 back linestyle 80
set xtics nomirror
set ytics nomirror
# define axis
# remove border on top and right and set color to gray
set style line 11 lc rgb '#808080' lt 1
set border 3 back ls 11
set tics nomirror
# define grid
set style line 12 lc rgb '#808080' lt 0 lw 1
set grid back ls 12
set style line 1 linetype 1
set style line 2 linetype 1
@ -37,23 +32,23 @@ set timefmt '%Y-%m-%d %H:%M:%S' # but read in as datetime
set multiplot
set size 0.5,0.5
set origin 0,0.5
set size 1,0.25
set origin 0,0.75
set ylabel 'Température'
plot 'DATA.TSV' using 1:3 title 'T [°C]' with linespoints linestyle 1
set size 0.5,0.5
set origin 0,0
set size 1,0.25
set origin 0,0.5
set ylabel 'Pression'
plot 'DATA.TSV' using 1:($4/100) title 'P [hPa]' with linespoints linestyle 2
set size 0.5,0.5
set origin 0.5,0.5
set size 1,0.25
set origin 0,0.25
set ylabel 'Humidité'
plot 'DATA.TSV' using 1:6 title 'Hr [%]' with linespoints linestyle 3
set size 0.5,0.5
set origin 0.5,0
set size 1,0.25
set origin 0,0
set ylabel 'Luminosité'
plot 'DATA.TSV' using 1:7 title 'Lx [Lux]' with linespoints linestyle 4
@ -61,5 +56,3 @@ unset multiplot
reset
set output
!gzip -S z data.svg

View File

@ -3,21 +3,16 @@
set terminal epslatex size 5.8,4.1 color colortext 'phv,9' header '\definecolor{t}{rgb}{0.5,0.5,0.5}'
set format '\color{t}$%g$'
set output 'T-H.tex'
set output 't-h.tex'
# Line style for axes
set style line 80 lt 0
set style line 80 lt rgb '#808080'
# Line style for grid
set style line 81 lt 3 # dashed
set style line 81 lt rgb '#808080' lw 0.5 # grey
set grid back linestyle 81
set border 3 back linestyle 80
set xtics nomirror
set ytics nomirror
# define axis
# remove border on top and right and set color to gray
set style line 11 lc rgb '#808080' lt 1
set border 3 back ls 11
set tics nomirror
# define grid
set style line 12 lc rgb '#808080' lt 0 lw 1
set grid back ls 12
set style line 1 linetype 1
set style line 2 linetype 1
@ -30,8 +25,8 @@ set origin 0,0
set xlabel 'Température'
set ylabel 'Humidité'
plot 'DATA-T-H.TSV' using 3:6:1 title 'Hr [\%]' with points linestyle 1, \
'DATA-T-H.TSV' using 3:6:1 title 'Hr moyen [\%]' smooth unique with linespoints linestyle 2
plot 'T-H.TSV' using 3:6:1 title 'Hr [\%]' with points linestyle 1, \
'T-H.TSV' using 3:6:1 title 'Hr moyen [\%]' smooth unique with linespoints linestyle 2
reset

32
gnuplot/t-h.png.gpi Normal file
View File

@ -0,0 +1,32 @@
# Inspired by http://youinfinitesnake.blogspot.ch/2011/02/attractive-scientific-plots-with.html
# and http://www.gnuplotting.org/why-you-should-upgrade-to-gnuplot-4-4-3/
set terminal pngcairo size 960,680 enhanced font 'Verdana,9'
set output 't-h.png'
# define axis
# remove border on top and right and set color to gray
set style line 11 lc rgb '#808080' lt 1
set border 3 back ls 11
set tics nomirror
# define grid
set style line 12 lc rgb '#808080' lt 0 lw 1
set grid back ls 12
set style line 1 linetype 1
set style line 2 linetype 1
set style line 1 linetype rgb '#A00000' linewidth 2 pointtype 7
set style line 2 linetype rgb '#00A000' linewidth 2 pointtype 9
set size 1,1
set origin 0,0
set xlabel 'Température'
set ylabel 'Humidité'
plot 'T-H.TSV' using 3:6:1 title 'Hr [%]' with points linestyle 1, \
'T-H.TSV' using 3:6:1 title 'Hr moyen [%]' smooth unique with linespoints linestyle 2
reset
set output

View File

@ -13,6 +13,7 @@
\usepackage[hidelinks]{hyperref}
\usepackage[acronym,toc,xindy]{glossaries}
\usepackage{glossary-list}
\usepackage{glossary-long}
\setmainlanguage{french}
@ -24,6 +25,7 @@
\bibliography{bibliographie.bib}
\renewcommand*{\glstextformat}{\textbf}
\newglossary[slg]{symbolslist}{syi}{syg}{Symboles}
\makeglossaries
\input{glossaire.tex}
@ -75,8 +77,22 @@ Les mots en \textbf{gras} sont des mots expliqués dans le glossaire ou des acro
Les textes écrits avec \verb|cette police d'écriture| sont des extraits de code.
\chapter{L'I²C}
Ce chapitre est basé sur un article de Wikipédia\footcite{i2c-wikipedia} ainsi qu'un autre article\footcite{i2c-aurel32}. Toutes les images ont été faites par \enquote{Emiaille} et sont sous licence \emph{Creative Commons paternité partage à lidentique 3.0 (non transposée)}.
\section{Le bus I²C}
Le bus l'I²C a été développé par Philips en 1982. La première norme (notée 1.0) a été publiée en 1992 et la dernière (noté 4.0) en 2012.
Le bus I²C a été développé par Philips en 1982. La première norme (notée 1.0) a été publiée en 1992 et la dernière (noté 4.0) en 2012.
Quelques exemples d'utilisations courantes utilisations\footcite{i2c-wikipedia-en}~:
\begin{itemize}
\item lire des données dans de la mémoire \gls{RAM}
\item contrôler deux convertisseurs de courant direct à continu et vice-versa
\item changer le contraste, la teinte ou la balance des couleurs d'un écran
\item changer le volume d'haut-parleurs intelligents
\item contrôler des écran \gls{OLED} ou \gls{LCD}
\item lire des capteurs
\item lire une \gls{horloge temps reel}
\item allumer ou éteindre une alimentation
\end{itemize}
\section{Les caractéristiques}
L'I²C a plusieurs caractéristiques intéressantes :
@ -103,6 +119,8 @@ Tous les équipements doivent être alimentés avec le même potentiel (pour avo
Les échanges ont toujours lieu entre un maître et un esclave et sont toujours débutés par le maître. Toute fois, rien n'empêche à un équipement de passer du status de maître au status d'esclave et vice-versa.
Pour permettre à plusieurs maîtres de pouvoir imposer un niveau haut ou un niveau bas sur les lignes en même temps, des sorties à collecteur ouvert (ou à drain ouvert pour des circuits CMOS) sont utilisées. Deux résistances \enquote{pull-up} tirent les lignes au niveau haut.
L'état logique \enquote{0} ou \enquote{LOW} est l'état \enquote{dominant} tandis que l'état logique \enquote{1} ou \enquote{HIGH} est l'état \enquote{récessif}. Cela veux dire que si un équipement impose l'état \enquote{LOW} et qu'un autre impose l'état \enquote{HIGH} la ligne sera à l'état LOW.
\begin{figure}[h]
@ -113,8 +131,6 @@ L'état logique \enquote{0} ou \enquote{LOW} est l'état \enquote{dominant} tand
\end{figure}
\section{Le protocole I²C}
Toutes les images ont été faites par \enquote{Emiaille} et sont sous licence \emph{Creative Commons paternité partage à lidentique 3.0 (non transposée)}.
\subsection{L'encodage}
Pour transmettre un bit, le maître doit d'abord placer la ligne SCL au niveau \enquote{LOW} puis placer la ligne SDA au niveau voulu (LOW pour transmettre un 1 ou \enquote{HIGH} pour transmettre un 0). Ensuite, il place la ligne SCL au niveau \enquote{HIGH} attend un temps défini par la vitesse et la norme utilisée puis replace la ligne SCL au niveau LOW. Un bit vient d'être transmis. Il recommence pour transmettre le bit suivant. Tant que la ligne SCL est au niveau \enquote{HIGH} la ligne SDA ne doit pas changer d'état.
\begin{figure}[h]
@ -211,7 +227,7 @@ Si les deux maîtres on envoyer exactement la même chose, il n'y aura pas de co
\chapter{Le matériel}
\section{Le choix de la plate-forme}
Il existe de nombreuse \gls{plate-forme} en robotique~: par exemple, le Boe-Bot de Parallax, utilisé dans les cours facultatifs de robotique de M. \textsc{Gardon}. J'ai fait le choix d'un Arduino car cette un plate-forme de plus en plus répandue, peu chère (20 € pour une carte programmable) et puissante. On trouve de nombreux exemples de \gls{DIY}, elle est programmable en \gls{C++} (donc il est possible d'utiliser des \glspl{bibliotheque}) et c'est du \gls{materiel libre}.
Il existe de nombreuse \gls{plate-forme} en robotique~: par exemple, le Boe-Bot de Parallax, utilisé dans les cours facultatifs de robotique de M. \textsc{Gardon}. J'ai fait le choix d'un Arduino car cette un plate-forme de plus en plus répandue, peu chère (20 € pour une carte programmable) et puissante. On trouve de nombreux exemples de \gls{DIY}\glsadd{DIYg}, elle est programmable en \gls{C++} (donc il est possible d'utiliser des \glspl{bibliotheque}) et c'est du \gls{materiel libre}.
\section{Les capteurs}
Il a été décidé de faire une station météo. Nous avons donc besoin d'un thermomètre (figure \ref{fig:BMP085}), d'un hygromètre (figure \ref{fig:BMP085} aussi), d'un baromètre (figure \ref{fig:TSL2561}) et d'un capteur de luminosité (figure \ref{fig:DHT22}). J'ai ajouté une horloge (figure \ref{fig:ChronoDot}) qui nous permettra d'avoir l'heure à laquelle les mesures ont été prises. Tous les capteurs ont été commandé sur le site d'Adafruit. L'hygromètre ne se connecte malheureusement pas en I²C, aucun capteur de ce type n'étant disponible.
@ -286,7 +302,7 @@ La fonction \verb|sensorsJsonCmd()| récupère les valeurs des capteurs puis les
Une fois téléchargée par le navigateur web, du JavaScript est exécuté. Ce JavaScript va télécharger la page \enquote{sensors.json} de manière régulière, analyser son contenu puis mettre à jour le tableau qui contient les valeurs.
\section{Tentative de réunion}
J'ai essayé de réunir les deux programmes en un seul en allégeant les \glspl{bibliotheque} concernant la partie web. J'ai essayé de supprimer tous les références au \gls{DHCP} et au \gls{DNS}. Cela a permis de faire passer le programme final en dessous des 32256 octets, mais il est apparu de drôles de choses : la programme gelait au bout de quelques secondes et la fonction \verb|setup()| était appelée en boucle.
J'ai essayé de réunir les deux programmes en un seul en allégeant les \glspl{bibliotheque} concernant la partie web. J'ai essayé de supprimer tous les références au \gls{DHCP}\glsadd{DHCPg} et au \gls{DNS}\glsadd{DNSg}. Cela a permis de faire passer le programme final en dessous des 32256 octets, mais il est apparu de drôles de choses : la programme gelait au bout de quelques secondes et la fonction \verb|setup()| était appelée en boucle.
J'ai aussi cherché s'il était possible de mettre un système d'exploitation sur l'Arduino et qu'il puisse charger les programmes sur la carte SD, mais je n'ai rien trouvé.
@ -296,23 +312,53 @@ Pour réaliser cette expérience, la station météo a été placée dans un sac
Un deuxième essais a donc été réalisé, sans sachet plastique cette fois ci. Le montage a été placé deux heures au frigo. Cette fois ci, la température s'est stabilisée à environ 5° Celsius mais on constate une chute de la puissance après environ une heure. Cela est probablement dû au fait que les piles ne fournissent plus d'énergie à basse température, la puissance raugmentant une fois sortie du frigo (voir la figure \ref{fig:2}).
Un autre essais a ensuite été réalisé. Cette fois-ci, les piles ont été remplacées par un adaptateur qui fournissait du 9 volts. La satation météo a été placée dans le frigo, pendant une nuit. Cette fois-ci, l'expérience c'est bien déroulée : il n'y a pas eu de perte de puissance.
Un autre essais a ensuite été réalisé. Cette fois-ci, les piles ont été remplacées par un adaptateur qui fournissait du 9 volts. La station météo a été placée dans le frigo, pendant une nuit. Cette fois-ci, l'expérience c'est bien déroulée : il n'y a pas eu de perte de puissance.
\section{Les résultats}
Premièrement, les graphiques sont disponibles à la figure \ref{fig:graphiques}
Sur la première figure (\ref{fig:graphiques}), on remarque plusieurs choses.
\begin{figure}[b]
Tout d'abord, la température commence par descendre de manière qui semble exponentielle (ce n'est pas très visible ici mais est clair sur un agrandissement) puis oscille de manière périodique entre 4 °C et 7.5 °C. On voit une légère augmentation de la température vers huit heure du matin.
La pression a diminué pendant la nuit, mais cela n'est pas lié au frigo.
L'humidité oscille aussi de manière périodique entre environ 40\% d'humidité et 70\% d'humidité après deux heures dans le frigo. On voit un grand pique vers huit heure du matin.
La luminosité est nulle tout au long de l'expérience sauf quand la station a été placée et retirée du frigo. On remarque un pique vers huit heure du matin. La porte a donc été ouverte à cette heure ci.
\begin{figure}[H]
\centering
\input{data/3/data.tex}
\caption{Les quatre graphiques}
\label{fig:graphiques}
\end{figure}
\begin{figure}[h]
\subsection{L'humidité en fonction de la température}
La figure \ref{fig:t-h} représente l'humidité en fonction de la température entre trois heure et quart du matin et sept heure de demi du matin. D'après les cours de monsieur \textsc{Bonnaz}, je m'attendais à voir une courbe de pente négative, symétrique à celle-ci. En effet : plus l'air est chaud, plus il peux accueillir de l'humidité donc l'humidité relative devrait diminuer. Mais ça ne fonctionne que si l'on part du principe que l'eau ne se condense que lorsque l'humidité atteint 100\% (ce qui était fait dans les exercices du cours).
Mais d'où peux donc venir cette différence ? Faisons un peu de calcul :
Par définition\footnote{Une table des symboles est disponible à la page \pageref{ref:symboles}} :
\[H = \frac{m}{V}\]
Or, \(m = M\cdot{}n\) (cours de chimie). Nous avons donc :
\[H = \frac{n}{V}\cdot{}M_{eau}\]
Or, \(\frac{n}{V} = \frac{P}{R\cdot{}T}\) (loi des gaz parfaits). Donc :
\[H_{\acute{e}q} = \frac{P_{\acute{e}q}\cdot{}M_{eau}}{R\cdot{}T}\]
Par définition :
\[H_r = \frac{H}{H_{\acute{e}q}}\]
En remaniant les formules, on trouve :
\[m = V\cdot{}H = V\cdot{}H_r\cdot{}H_{\acute{e}q} = V\cdot{}H_r\cdot{}\frac{P_{\acute{e}q}\cdot{}M_{eau}}{R\cdot{}T}\]
\glsadd{H}\glsadd{m}\glsadd{V}\glsadd{M}\glsadd{n}\glsadd{P}\glsadd{R}\glsadd{T}\glsadd{Hr}\glsadd{Heq}\glsadd{Peq}
Sachant que le frigo fait environ 200 litres, qu'à 4 °C l'humidité relative est de 43\% et que la pression à l'équilibre est de 813 Pa, qu'à 7 °C l'humidité relative est de 70\% et que la pression à l'équilibre est de 1002 Pa, on peux calculer la quantité d'eau gazeuse dans le frigo à 4 et 7 °C.
Á 4 °C, le frigo contient environ 0.55 grammes d'eau gazeuse et à 7 °C, il en contient 1.09 grammes.
Si l'on part du principe que le frigo est étanche, la pente de la courbe peux donc s'expliquer par le fait que 0.54 grammes d'eau s'évaporent et se condensent à chaque cyclique, ce qui est une quantité raisonnable.
\begin{figure}[H]
\centering
\input{data/3/T-H.tex}
\input{data/3/t-h.tex}
\caption{Humidité en fonction de la température}
\label{fig:T-H}
\label{fig:t-h}
\end{figure}
\listoffigures
@ -326,11 +372,11 @@ Premièrement, les graphiques sont disponibles à la figure \ref{fig:graphiques}
\printbibliography[heading=none,keyword=image]
\printglossary[type=\acronymtype,title=Acronymes,toctitle=Acronymes,style=altlist]
\glsadd{DHCPg}
\glsadd{DIYg}
\glsadd{DNSg}
\newpage
\printglossary[type=main,title=Glossaire,toctitle=Glossaire,style=altlist]
\newpage
\label{ref:symboles}
\printglossary[type=symbolslist,style=long3col]
\appendix
\appendixpage

View File

@ -81,3 +81,11 @@
url = "http://www.aurel32.net/elec/i2c.php",
keywords = "website"
}
@misc{i2c-wikipedia-en,
author = "Wikipédia",
title = "I²C",
url = "http://en.wikipedia.org/wiki/I²C",
keywords = "website"
}

File diff suppressed because it is too large Load Diff

BIN
latex/data/1/data.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 KiB

Binary file not shown.

File diff suppressed because it is too large Load Diff

BIN
latex/data/2/data.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

Binary file not shown.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

Can't render this file because it has a wrong number of fields in line 2.

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -1,120 +0,0 @@
% GNUPLOT: LaTeX picture with Postscript
\begingroup
\fontfamily{phv}%
\selectfont
\definecolor{t}{rgb}{0.5,0.5,0.5}
\makeatletter
\providecommand\color[2][]{%
\GenericError{(gnuplot) \space\space\space\@spaces}{%
Package color not loaded in conjunction with
terminal option `colourtext'%
}{See the gnuplot documentation for explanation.%
}{Either use 'blacktext' in gnuplot or load the package
color.sty in LaTeX.}%
\renewcommand\color[2][]{}%
}%
\providecommand\includegraphics[2][]{%
\GenericError{(gnuplot) \space\space\space\@spaces}{%
Package graphicx or graphics not loaded%
}{See the gnuplot documentation for explanation.%
}{The gnuplot epslatex terminal needs graphicx.sty or graphics.sty.}%
\renewcommand\includegraphics[2][]{}%
}%
\providecommand\rotatebox[2]{#2}%
\@ifundefined{ifGPcolor}{%
\newif\ifGPcolor
\GPcolortrue
}{}%
\@ifundefined{ifGPblacktext}{%
\newif\ifGPblacktext
\GPblacktextfalse
}{}%
% define a \g@addto@macro without @ in the name:
\let\gplgaddtomacro\g@addto@macro
% define empty templates for all commands taking text:
\gdef\gplbacktext{}%
\gdef\gplfronttext{}%
\makeatother
\ifGPblacktext
% no textcolor at all
\def\colorrgb#1{}%
\def\colorgray#1{}%
\else
% gray or color?
\ifGPcolor
\def\colorrgb#1{\color[rgb]{#1}}%
\def\colorgray#1{\color[gray]{#1}}%
\expandafter\def\csname LTw\endcsname{\color{white}}%
\expandafter\def\csname LTb\endcsname{\color{black}}%
\expandafter\def\csname LTa\endcsname{\color{black}}%
\expandafter\def\csname LT0\endcsname{\color[rgb]{1,0,0}}%
\expandafter\def\csname LT1\endcsname{\color[rgb]{0,1,0}}%
\expandafter\def\csname LT2\endcsname{\color[rgb]{0,0,1}}%
\expandafter\def\csname LT3\endcsname{\color[rgb]{1,0,1}}%
\expandafter\def\csname LT4\endcsname{\color[rgb]{0,1,1}}%
\expandafter\def\csname LT5\endcsname{\color[rgb]{1,1,0}}%
\expandafter\def\csname LT6\endcsname{\color[rgb]{0,0,0}}%
\expandafter\def\csname LT7\endcsname{\color[rgb]{1,0.3,0}}%
\expandafter\def\csname LT8\endcsname{\color[rgb]{0.5,0.5,0.5}}%
\else
% gray
\def\colorrgb#1{\color{black}}%
\def\colorgray#1{\color[gray]{#1}}%
\expandafter\def\csname LTw\endcsname{\color{white}}%
\expandafter\def\csname LTb\endcsname{\color{black}}%
\expandafter\def\csname LTa\endcsname{\color{black}}%
\expandafter\def\csname LT0\endcsname{\color{black}}%
\expandafter\def\csname LT1\endcsname{\color{black}}%
\expandafter\def\csname LT2\endcsname{\color{black}}%
\expandafter\def\csname LT3\endcsname{\color{black}}%
\expandafter\def\csname LT4\endcsname{\color{black}}%
\expandafter\def\csname LT5\endcsname{\color{black}}%
\expandafter\def\csname LT6\endcsname{\color{black}}%
\expandafter\def\csname LT7\endcsname{\color{black}}%
\expandafter\def\csname LT8\endcsname{\color{black}}%
\fi
\fi
\setlength{\unitlength}{0.0500bp}%
\begin{picture}(8352.00,5902.00)%
\gplgaddtomacro\gplbacktext{%
\colorrgb{0.50,0.50,0.50}%
\put(774,576){\makebox(0,0)[r]{\strut{}\color{t}$50$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,1428){\makebox(0,0)[r]{\strut{}\color{t}$55$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,2279){\makebox(0,0)[r]{\strut{}\color{t}$60$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,3131){\makebox(0,0)[r]{\strut{}\color{t}$65$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,3982){\makebox(0,0)[r]{\strut{}\color{t}$70$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,4834){\makebox(0,0)[r]{\strut{}\color{t}$75$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,5685){\makebox(0,0)[r]{\strut{}\color{t}$80$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,396){\makebox(0,0){\strut{}\color{t}$7.4$}}%
\colorrgb{0.50,0.50,0.50}%
\put(2311,396){\makebox(0,0){\strut{}\color{t}$7.6$}}%
\colorrgb{0.50,0.50,0.50}%
\put(3740,396){\makebox(0,0){\strut{}\color{t}$7.8$}}%
\colorrgb{0.50,0.50,0.50}%
\put(5169,396){\makebox(0,0){\strut{}\color{t}$8$}}%
\colorrgb{0.50,0.50,0.50}%
\put(6598,396){\makebox(0,0){\strut{}\color{t}$8.2$}}%
\colorrgb{0.50,0.50,0.50}%
\put(8027,396){\makebox(0,0){\strut{}\color{t}$8.4$}}%
\csname LTb\endcsname%
\put(144,3130){\rotatebox{-270}{\makebox(0,0){\strut{}Humidité}}}%
\put(4454,126){\makebox(0,0){\strut{}Température}}%
}%
\gplgaddtomacro\gplfronttext{%
\csname LTb\endcsname%
\put(7208,5532){\makebox(0,0)[r]{\strut{}Hr [\%]}}%
\csname LTb\endcsname%
\put(7208,5352){\makebox(0,0)[r]{\strut{}Hr moyen [\%]}}%
}%
\gplbacktext
\put(0,0){\includegraphics{data/3/T-H}}%
\gplfronttext
\end{picture}%
\endgroup

File diff suppressed because it is too large Load Diff

BIN
latex/data/3/data.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 101 KiB

Binary file not shown.

View File

@ -78,49 +78,51 @@
\begin{picture}(8352.00,11806.00)%
\gplgaddtomacro\gplbacktext{%
\colorrgb{0.50,0.50,0.50}%
\put(774,9430){\makebox(0,0)[r]{\strut{}\color{t}$6$}}%
\put(774,9430){\makebox(0,0)[r]{\strut{}\color{t}$2$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,9670){\makebox(0,0)[r]{\strut{}\color{t}$8$}}%
\put(774,9700){\makebox(0,0)[r]{\strut{}\color{t}$4$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,9910){\makebox(0,0)[r]{\strut{}\color{t}$10$}}%
\put(774,9970){\makebox(0,0)[r]{\strut{}\color{t}$6$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,10150){\makebox(0,0)[r]{\strut{}\color{t}$12$}}%
\put(774,10240){\makebox(0,0)[r]{\strut{}\color{t}$8$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,10390){\makebox(0,0)[r]{\strut{}\color{t}$14$}}%
\put(774,10510){\makebox(0,0)[r]{\strut{}\color{t}$10$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,10629){\makebox(0,0)[r]{\strut{}\color{t}$16$}}%
\put(774,10779){\makebox(0,0)[r]{\strut{}\color{t}$12$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,10869){\makebox(0,0)[r]{\strut{}\color{t}$18$}}%
\put(774,11049){\makebox(0,0)[r]{\strut{}\color{t}$14$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,11109){\makebox(0,0)[r]{\strut{}\color{t}$20$}}%
\put(774,11319){\makebox(0,0)[r]{\strut{}\color{t}$16$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,11349){\makebox(0,0)[r]{\strut{}\color{t}$22$}}%
\put(774,11589){\makebox(0,0)[r]{\strut{}\color{t}$18$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,11589){\makebox(0,0)[r]{\strut{}\color{t}$24$}}%
\put(882,9250){\makebox(0,0){\strut{}2200}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,9250){\makebox(0,0){\strut{}2100}}%
\put(1432,9250){\makebox(0,0){\strut{}2300}}%
\colorrgb{0.50,0.50,0.50}%
\put(1532,9250){\makebox(0,0){\strut{}2200}}%
\put(1981,9250){\makebox(0,0){\strut{}0000}}%
\colorrgb{0.50,0.50,0.50}%
\put(2181,9250){\makebox(0,0){\strut{}2300}}%
\put(2531,9250){\makebox(0,0){\strut{}0100}}%
\colorrgb{0.50,0.50,0.50}%
\put(2831,9250){\makebox(0,0){\strut{}0000}}%
\put(3080,9250){\makebox(0,0){\strut{}0200}}%
\colorrgb{0.50,0.50,0.50}%
\put(3480,9250){\makebox(0,0){\strut{}0100}}%
\put(3630,9250){\makebox(0,0){\strut{}0300}}%
\colorrgb{0.50,0.50,0.50}%
\put(4130,9250){\makebox(0,0){\strut{}0200}}%
\put(4180,9250){\makebox(0,0){\strut{}0400}}%
\colorrgb{0.50,0.50,0.50}%
\put(4779,9250){\makebox(0,0){\strut{}0300}}%
\put(4729,9250){\makebox(0,0){\strut{}0500}}%
\colorrgb{0.50,0.50,0.50}%
\put(5429,9250){\makebox(0,0){\strut{}0400}}%
\put(5279,9250){\makebox(0,0){\strut{}0600}}%
\colorrgb{0.50,0.50,0.50}%
\put(6078,9250){\makebox(0,0){\strut{}0500}}%
\put(5829,9250){\makebox(0,0){\strut{}0700}}%
\colorrgb{0.50,0.50,0.50}%
\put(6728,9250){\makebox(0,0){\strut{}0600}}%
\put(6378,9250){\makebox(0,0){\strut{}0800}}%
\colorrgb{0.50,0.50,0.50}%
\put(7377,9250){\makebox(0,0){\strut{}0700}}%
\put(6928,9250){\makebox(0,0){\strut{}0900}}%
\colorrgb{0.50,0.50,0.50}%
\put(8027,9250){\makebox(0,0){\strut{}0800}}%
\put(7477,9250){\makebox(0,0){\strut{}1000}}%
\colorrgb{0.50,0.50,0.50}%
\put(8027,9250){\makebox(0,0){\strut{}1100}}%
\csname LTb\endcsname%
\put(144,10509){\rotatebox{-270}{\makebox(0,0){\strut{}Température}}}%
\put(4454,8980){\makebox(0,0){\strut{}Temps [hhmm]}}%
@ -131,45 +133,49 @@
}%
\gplgaddtomacro\gplbacktext{%
\colorrgb{0.50,0.50,0.50}%
\put(882,6479){\makebox(0,0)[r]{\strut{}\color{t}$931$}}%
\put(882,6479){\makebox(0,0)[r]{\strut{}\color{t}$932$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,6787){\makebox(0,0)[r]{\strut{}\color{t}$932$}}%
\put(882,6787){\makebox(0,0)[r]{\strut{}\color{t}$933$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,7096){\makebox(0,0)[r]{\strut{}\color{t}$933$}}%
\put(882,7096){\makebox(0,0)[r]{\strut{}\color{t}$934$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,7404){\makebox(0,0)[r]{\strut{}\color{t}$934$}}%
\put(882,7404){\makebox(0,0)[r]{\strut{}\color{t}$935$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,7713){\makebox(0,0)[r]{\strut{}\color{t}$935$}}%
\put(882,7713){\makebox(0,0)[r]{\strut{}\color{t}$936$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,8021){\makebox(0,0)[r]{\strut{}\color{t}$936$}}%
\put(882,8021){\makebox(0,0)[r]{\strut{}\color{t}$937$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,8330){\makebox(0,0)[r]{\strut{}\color{t}$937$}}%
\put(882,8330){\makebox(0,0)[r]{\strut{}\color{t}$938$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,8638){\makebox(0,0)[r]{\strut{}\color{t}$938$}}%
\put(882,8638){\makebox(0,0)[r]{\strut{}\color{t}$939$}}%
\colorrgb{0.50,0.50,0.50}%
\put(990,6299){\makebox(0,0){\strut{}2100}}%
\put(990,6299){\makebox(0,0){\strut{}2200}}%
\colorrgb{0.50,0.50,0.50}%
\put(1630,6299){\makebox(0,0){\strut{}2200}}%
\put(1531,6299){\makebox(0,0){\strut{}2300}}%
\colorrgb{0.50,0.50,0.50}%
\put(2269,6299){\makebox(0,0){\strut{}2300}}%
\put(2073,6299){\makebox(0,0){\strut{}0000}}%
\colorrgb{0.50,0.50,0.50}%
\put(2909,6299){\makebox(0,0){\strut{}0000}}%
\put(2614,6299){\makebox(0,0){\strut{}0100}}%
\colorrgb{0.50,0.50,0.50}%
\put(3549,6299){\makebox(0,0){\strut{}0100}}%
\put(3155,6299){\makebox(0,0){\strut{}0200}}%
\colorrgb{0.50,0.50,0.50}%
\put(4189,6299){\makebox(0,0){\strut{}0200}}%
\put(3697,6299){\makebox(0,0){\strut{}0300}}%
\colorrgb{0.50,0.50,0.50}%
\put(4828,6299){\makebox(0,0){\strut{}0300}}%
\put(4238,6299){\makebox(0,0){\strut{}0400}}%
\colorrgb{0.50,0.50,0.50}%
\put(5468,6299){\makebox(0,0){\strut{}0400}}%
\put(4779,6299){\makebox(0,0){\strut{}0500}}%
\colorrgb{0.50,0.50,0.50}%
\put(6108,6299){\makebox(0,0){\strut{}0500}}%
\put(5320,6299){\makebox(0,0){\strut{}0600}}%
\colorrgb{0.50,0.50,0.50}%
\put(6748,6299){\makebox(0,0){\strut{}0600}}%
\put(5862,6299){\makebox(0,0){\strut{}0700}}%
\colorrgb{0.50,0.50,0.50}%
\put(7387,6299){\makebox(0,0){\strut{}0700}}%
\put(6403,6299){\makebox(0,0){\strut{}0800}}%
\colorrgb{0.50,0.50,0.50}%
\put(8027,6299){\makebox(0,0){\strut{}0800}}%
\put(6944,6299){\makebox(0,0){\strut{}0900}}%
\colorrgb{0.50,0.50,0.50}%
\put(7486,6299){\makebox(0,0){\strut{}1000}}%
\colorrgb{0.50,0.50,0.50}%
\put(8027,6299){\makebox(0,0){\strut{}1100}}%
\csname LTb\endcsname%
\put(144,7558){\rotatebox{-270}{\makebox(0,0){\strut{}Pression}}}%
\put(4508,6029){\makebox(0,0){\strut{}Temps [hhmm]}}%
@ -180,48 +186,58 @@
}%
\gplgaddtomacro\gplbacktext{%
\colorrgb{0.50,0.50,0.50}%
\put(882,3527){\makebox(0,0)[r]{\strut{}\color{t}$30$}}%
\put(774,3527){\makebox(0,0)[r]{\strut{}\color{t}$40$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,3836){\makebox(0,0)[r]{\strut{}\color{t}$40$}}%
\put(774,3743){\makebox(0,0)[r]{\strut{}\color{t}$45$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,4144){\makebox(0,0)[r]{\strut{}\color{t}$50$}}%
\put(774,3959){\makebox(0,0)[r]{\strut{}\color{t}$50$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,4453){\makebox(0,0)[r]{\strut{}\color{t}$60$}}%
\put(774,4175){\makebox(0,0)[r]{\strut{}\color{t}$55$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,4761){\makebox(0,0)[r]{\strut{}\color{t}$70$}}%
\put(774,4391){\makebox(0,0)[r]{\strut{}\color{t}$60$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,5070){\makebox(0,0)[r]{\strut{}\color{t}$80$}}%
\put(774,4607){\makebox(0,0)[r]{\strut{}\color{t}$65$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,5378){\makebox(0,0)[r]{\strut{}\color{t}$90$}}%
\put(774,4823){\makebox(0,0)[r]{\strut{}\color{t}$70$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,5687){\makebox(0,0)[r]{\strut{}\color{t}$100$}}%
\put(774,5039){\makebox(0,0)[r]{\strut{}\color{t}$75$}}%
\colorrgb{0.50,0.50,0.50}%
\put(990,3347){\makebox(0,0){\strut{}2100}}%
\put(774,5255){\makebox(0,0)[r]{\strut{}\color{t}$80$}}%
\colorrgb{0.50,0.50,0.50}%
\put(1630,3347){\makebox(0,0){\strut{}2200}}%
\put(774,5471){\makebox(0,0)[r]{\strut{}\color{t}$85$}}%
\colorrgb{0.50,0.50,0.50}%
\put(2269,3347){\makebox(0,0){\strut{}2300}}%
\put(774,5687){\makebox(0,0)[r]{\strut{}\color{t}$90$}}%
\colorrgb{0.50,0.50,0.50}%
\put(2909,3347){\makebox(0,0){\strut{}0000}}%
\put(882,3347){\makebox(0,0){\strut{}2200}}%
\colorrgb{0.50,0.50,0.50}%
\put(3549,3347){\makebox(0,0){\strut{}0100}}%
\put(1432,3347){\makebox(0,0){\strut{}2300}}%
\colorrgb{0.50,0.50,0.50}%
\put(4189,3347){\makebox(0,0){\strut{}0200}}%
\put(1981,3347){\makebox(0,0){\strut{}0000}}%
\colorrgb{0.50,0.50,0.50}%
\put(4828,3347){\makebox(0,0){\strut{}0300}}%
\put(2531,3347){\makebox(0,0){\strut{}0100}}%
\colorrgb{0.50,0.50,0.50}%
\put(5468,3347){\makebox(0,0){\strut{}0400}}%
\put(3080,3347){\makebox(0,0){\strut{}0200}}%
\colorrgb{0.50,0.50,0.50}%
\put(6108,3347){\makebox(0,0){\strut{}0500}}%
\put(3630,3347){\makebox(0,0){\strut{}0300}}%
\colorrgb{0.50,0.50,0.50}%
\put(6748,3347){\makebox(0,0){\strut{}0600}}%
\put(4180,3347){\makebox(0,0){\strut{}0400}}%
\colorrgb{0.50,0.50,0.50}%
\put(7387,3347){\makebox(0,0){\strut{}0700}}%
\put(4729,3347){\makebox(0,0){\strut{}0500}}%
\colorrgb{0.50,0.50,0.50}%
\put(8027,3347){\makebox(0,0){\strut{}0800}}%
\put(5279,3347){\makebox(0,0){\strut{}0600}}%
\colorrgb{0.50,0.50,0.50}%
\put(5829,3347){\makebox(0,0){\strut{}0700}}%
\colorrgb{0.50,0.50,0.50}%
\put(6378,3347){\makebox(0,0){\strut{}0800}}%
\colorrgb{0.50,0.50,0.50}%
\put(6928,3347){\makebox(0,0){\strut{}0900}}%
\colorrgb{0.50,0.50,0.50}%
\put(7477,3347){\makebox(0,0){\strut{}1000}}%
\colorrgb{0.50,0.50,0.50}%
\put(8027,3347){\makebox(0,0){\strut{}1100}}%
\csname LTb\endcsname%
\put(144,4607){\rotatebox{-270}{\makebox(0,0){\strut{}Humidité}}}%
\put(4508,3077){\makebox(0,0){\strut{}Temps [hhmm]}}%
\put(4454,3077){\makebox(0,0){\strut{}Temps [hhmm]}}%
}%
\gplgaddtomacro\gplfronttext{%
\csname LTb\endcsname%
@ -229,46 +245,58 @@
}%
\gplgaddtomacro\gplbacktext{%
\colorrgb{0.50,0.50,0.50}%
\put(774,576){\makebox(0,0)[r]{\strut{}\color{t}$0$}}%
\put(882,576){\makebox(0,0)[r]{\strut{}\color{t}$0$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,936){\makebox(0,0)[r]{\strut{}\color{t}$10$}}%
\put(882,792){\makebox(0,0)[r]{\strut{}\color{t}$20$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,1296){\makebox(0,0)[r]{\strut{}\color{t}$20$}}%
\put(882,1008){\makebox(0,0)[r]{\strut{}\color{t}$40$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,1656){\makebox(0,0)[r]{\strut{}\color{t}$30$}}%
\put(882,1224){\makebox(0,0)[r]{\strut{}\color{t}$60$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,2015){\makebox(0,0)[r]{\strut{}\color{t}$40$}}%
\put(882,1440){\makebox(0,0)[r]{\strut{}\color{t}$80$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,2375){\makebox(0,0)[r]{\strut{}\color{t}$50$}}%
\put(882,1656){\makebox(0,0)[r]{\strut{}\color{t}$100$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,2735){\makebox(0,0)[r]{\strut{}\color{t}$60$}}%
\put(882,1871){\makebox(0,0)[r]{\strut{}\color{t}$120$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,396){\makebox(0,0){\strut{}2100}}%
\put(882,2087){\makebox(0,0)[r]{\strut{}\color{t}$140$}}%
\colorrgb{0.50,0.50,0.50}%
\put(1532,396){\makebox(0,0){\strut{}2200}}%
\put(882,2303){\makebox(0,0)[r]{\strut{}\color{t}$160$}}%
\colorrgb{0.50,0.50,0.50}%
\put(2181,396){\makebox(0,0){\strut{}2300}}%
\put(882,2519){\makebox(0,0)[r]{\strut{}\color{t}$180$}}%
\colorrgb{0.50,0.50,0.50}%
\put(2831,396){\makebox(0,0){\strut{}0000}}%
\put(882,2735){\makebox(0,0)[r]{\strut{}\color{t}$200$}}%
\colorrgb{0.50,0.50,0.50}%
\put(3480,396){\makebox(0,0){\strut{}0100}}%
\put(990,396){\makebox(0,0){\strut{}2200}}%
\colorrgb{0.50,0.50,0.50}%
\put(4130,396){\makebox(0,0){\strut{}0200}}%
\put(1531,396){\makebox(0,0){\strut{}2300}}%
\colorrgb{0.50,0.50,0.50}%
\put(4779,396){\makebox(0,0){\strut{}0300}}%
\put(2073,396){\makebox(0,0){\strut{}0000}}%
\colorrgb{0.50,0.50,0.50}%
\put(5429,396){\makebox(0,0){\strut{}0400}}%
\put(2614,396){\makebox(0,0){\strut{}0100}}%
\colorrgb{0.50,0.50,0.50}%
\put(6078,396){\makebox(0,0){\strut{}0500}}%
\put(3155,396){\makebox(0,0){\strut{}0200}}%
\colorrgb{0.50,0.50,0.50}%
\put(6728,396){\makebox(0,0){\strut{}0600}}%
\put(3697,396){\makebox(0,0){\strut{}0300}}%
\colorrgb{0.50,0.50,0.50}%
\put(7377,396){\makebox(0,0){\strut{}0700}}%
\put(4238,396){\makebox(0,0){\strut{}0400}}%
\colorrgb{0.50,0.50,0.50}%
\put(8027,396){\makebox(0,0){\strut{}0800}}%
\put(4779,396){\makebox(0,0){\strut{}0500}}%
\colorrgb{0.50,0.50,0.50}%
\put(5320,396){\makebox(0,0){\strut{}0600}}%
\colorrgb{0.50,0.50,0.50}%
\put(5862,396){\makebox(0,0){\strut{}0700}}%
\colorrgb{0.50,0.50,0.50}%
\put(6403,396){\makebox(0,0){\strut{}0800}}%
\colorrgb{0.50,0.50,0.50}%
\put(6944,396){\makebox(0,0){\strut{}0900}}%
\colorrgb{0.50,0.50,0.50}%
\put(7486,396){\makebox(0,0){\strut{}1000}}%
\colorrgb{0.50,0.50,0.50}%
\put(8027,396){\makebox(0,0){\strut{}1100}}%
\csname LTb\endcsname%
\put(144,1655){\rotatebox{-270}{\makebox(0,0){\strut{}Luminosité}}}%
\put(4454,126){\makebox(0,0){\strut{}Temps [hhmm]}}%
\put(4508,126){\makebox(0,0){\strut{}Temps [hhmm]}}%
}%
\gplgaddtomacro\gplfronttext{%
\csname LTb\endcsname%

View File

@ -1,7 +1,7 @@
%!PS-Adobe-2.0 EPSF-2.0
%%Title: T-H.tex
%%Creator: gnuplot 4.6 patchlevel 0
%%CreationDate: Sun Oct 14 10:16:51 2012
%%Title: t-h.tex
%%Creator: gnuplot 4.6 patchlevel 1
%%CreationDate: Fri Oct 19 19:25:06 2012
%%DocumentFonts:
%%BoundingBox: 50 50 467 345
%%EndComments
@ -47,7 +47,7 @@ gnudict begin
} if
} def
%
% Gnuplot Prolog Version 4.4 (August 2010)
% Gnuplot Prolog Version 4.6 (September 2012)
%
%/SuppressPDFMark true def
%
@ -314,7 +314,8 @@ gnudict begin
/PatternFill {gsave /PFa [ 9 2 roll ] def
PFa 0 get PFa 2 get 2 div add PFa 1 get PFa 3 get 2 div add translate
PFa 2 get -2 div PFa 3 get -2 div PFa 2 get PFa 3 get Rec
gsave 1 setgray fill grestore clip
TransparentPatterns {} {gsave 1 setgray fill grestore} ifelse
clip
currentlinewidth 0.5 mul setlinewidth
/PFs PFa 2 get dup mul PFa 3 get dup mul add sqrt def
0 0 M PFa 5 get rotate PFs -2 div dup translate
@ -426,13 +427,13 @@ systemdict /pdfmark known not {
userdict /pdfmark systemdict /cleartomark get put
} if
SDict begin [
/Title (T-H.tex)
/Title (t-h.tex)
/Subject (gnuplot plot)
/Creator (gnuplot 4.6 patchlevel 0)
/Creator (gnuplot 4.6 patchlevel 1)
/Author (n4th4)
% /Producer (gnuplot)
% /Keywords ()
/CreationDate (Sun Oct 14 10:16:51 2012)
/CreationDate (Fri Oct 19 19:25:06 2012)
/DOCINFO pdfmark
end
} ifelse
@ -447,237 +448,221 @@ doclip
0 setgray
newpath
1.000 UL
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 1.000 UL
LTa
LCa setrgbcolor
0.50 0.50 0.50 C 0.500 UL
LT2
LC2 setrgbcolor
0.50 0.50 0.50 C 882 576 M
7145 0 V
stroke
1.000 UL
LTa
LCa setrgbcolor
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 882 576 M
63 0 V
stroke
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 1.000 UL
LTa
LCa setrgbcolor
0.50 0.50 0.50 C 0.500 UL
LT2
LC2 setrgbcolor
0.50 0.50 0.50 C 882 1306 M
7145 0 V
stroke
1.000 UL
LTa
LCa setrgbcolor
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 882 1306 M
63 0 V
stroke
LTa
LCa setrgbcolor
0.50 0.50 0.50 C 0.500 UL
LT2
LC2 setrgbcolor
0.50 0.50 0.50 C 882 2036 M
7145 0 V
stroke
1.000 UL
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 1.000 UL
LTa
LCa setrgbcolor
0.50 0.50 0.50 C 882 2036 M
7145 0 V
stroke
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 882 2036 M
63 0 V
stroke
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 1.000 UL
LTa
LCa setrgbcolor
0.50 0.50 0.50 C 0.500 UL
LT2
LC2 setrgbcolor
0.50 0.50 0.50 C 882 2766 M
7145 0 V
stroke
1.000 UL
LTa
LCa setrgbcolor
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 882 2766 M
63 0 V
stroke
LTa
LCa setrgbcolor
0.50 0.50 0.50 C 0.500 UL
LT2
LC2 setrgbcolor
0.50 0.50 0.50 C 882 3495 M
7145 0 V
stroke
1.000 UL
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 1.000 UL
LTa
LCa setrgbcolor
0.50 0.50 0.50 C 882 3495 M
7145 0 V
stroke
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 882 3495 M
63 0 V
stroke
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 1.000 UL
LTa
LCa setrgbcolor
0.50 0.50 0.50 C 0.500 UL
LT2
LC2 setrgbcolor
0.50 0.50 0.50 C 882 4225 M
7145 0 V
stroke
1.000 UL
LTa
LCa setrgbcolor
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 882 4225 M
63 0 V
stroke
LTa
LCa setrgbcolor
0.50 0.50 0.50 C 0.500 UL
LT2
LC2 setrgbcolor
0.50 0.50 0.50 C 882 4955 M
7145 0 V
stroke
1.000 UL
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 1.000 UL
LTa
LCa setrgbcolor
0.50 0.50 0.50 C 882 4955 M
7145 0 V
stroke
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 882 4955 M
63 0 V
stroke
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 1.000 UL
LTa
LCa setrgbcolor
0.50 0.50 0.50 C 0.500 UL
LT2
LC2 setrgbcolor
0.50 0.50 0.50 C 882 5685 M
7145 0 V
stroke
1.000 UL
LTa
LCa setrgbcolor
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 882 5685 M
63 0 V
stroke
LTa
LCa setrgbcolor
0.50 0.50 0.50 C 0.500 UL
LT2
LC2 setrgbcolor
0.50 0.50 0.50 C 882 576 M
0 5109 V
stroke
1.000 UL
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 1.000 UL
LTa
LCa setrgbcolor
0.50 0.50 0.50 C 882 576 M
0 5109 V
stroke
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 882 576 M
0 63 V
stroke
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 1.000 UL
LTa
LCa setrgbcolor
0.50 0.50 0.50 C 0.500 UL
LT2
LC2 setrgbcolor
0.50 0.50 0.50 C 1903 576 M
0 5109 V
stroke
1.000 UL
LTa
LCa setrgbcolor
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 1903 576 M
0 63 V
stroke
LTa
LCa setrgbcolor
0.50 0.50 0.50 C 0.500 UL
LT2
LC2 setrgbcolor
0.50 0.50 0.50 C 2923 576 M
0 5109 V
stroke
1.000 UL
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 1.000 UL
LTa
LCa setrgbcolor
0.50 0.50 0.50 C 2923 576 M
0 5109 V
stroke
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 2923 576 M
0 63 V
stroke
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 1.000 UL
LTa
LCa setrgbcolor
0.50 0.50 0.50 C 0.500 UL
LT2
LC2 setrgbcolor
0.50 0.50 0.50 C 3944 576 M
0 5109 V
stroke
1.000 UL
LTa
LCa setrgbcolor
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 3944 576 M
0 63 V
stroke
LTa
LCa setrgbcolor
0.50 0.50 0.50 C 0.500 UL
LT2
LC2 setrgbcolor
0.50 0.50 0.50 C 4965 576 M
0 5109 V
stroke
1.000 UL
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 1.000 UL
LTa
LCa setrgbcolor
0.50 0.50 0.50 C 4965 576 M
0 5109 V
stroke
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 4965 576 M
0 63 V
stroke
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 1.000 UL
LTa
LCa setrgbcolor
0.50 0.50 0.50 C 0.500 UL
LT2
LC2 setrgbcolor
0.50 0.50 0.50 C 5986 576 M
0 5109 V
stroke
1.000 UL
LTa
LCa setrgbcolor
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 5986 576 M
0 63 V
stroke
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 1.000 UL
LTa
LCa setrgbcolor
0.50 0.50 0.50 C 0.500 UL
LT2
LC2 setrgbcolor
0.50 0.50 0.50 C 7006 576 M
0 4686 V
0 360 R
0 63 V
stroke
1.000 UL
LTa
LCa setrgbcolor
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 7006 576 M
0 63 V
stroke
LTa
LCa setrgbcolor
0.50 0.50 0.50 C 0.500 UL
LT2
LC2 setrgbcolor
0.50 0.50 0.50 C 8027 576 M
0 5109 V
stroke
1.000 UL
LTa
LCa setrgbcolor
0.50 0.50 0.50 C 8027 576 M
0 63 V
stroke
LTa
LCa setrgbcolor
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 1.000 UL
LTa
LCa setrgbcolor
0.50 0.50 0.50 C 8027 576 M
0 5109 V
stroke
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 8027 576 M
0 63 V
stroke
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 1.000 UL
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 882 5685 M
882 576 L
7145 0 V
@ -688,8 +673,8 @@ LCb setrgbcolor
LTb
1.000 UP
1.000 UL
LTa
LCa setrgbcolor
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C 1.000 UP
2.000 UL
LT0
@ -11843,8 +11828,8 @@ LC0 setrgbcolor
7563 5352 TriUF
1.000 UP
1.000 UL
LTa
LCa setrgbcolor
LT0
LC0 setrgbcolor
0.50 0.50 0.50 C stroke
grestore
end

BIN
latex/data/3/t-h.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

View File

@ -120,7 +120,7 @@
\put(7208,5352){\makebox(0,0)[r]{\strut{}Hr moyen [\%]}}%
}%
\gplbacktext
\put(0,0){\includegraphics{data/4/T-H}}%
\put(0,0){\includegraphics{data/3/t-h}}%
\gplfronttext
\end{picture}%
\endgroup

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -1,309 +0,0 @@
% GNUPLOT: LaTeX picture with Postscript
\begingroup
\fontfamily{phv}%
\selectfont
\definecolor{t}{rgb}{0.5,0.5,0.5}
\makeatletter
\providecommand\color[2][]{%
\GenericError{(gnuplot) \space\space\space\@spaces}{%
Package color not loaded in conjunction with
terminal option `colourtext'%
}{See the gnuplot documentation for explanation.%
}{Either use 'blacktext' in gnuplot or load the package
color.sty in LaTeX.}%
\renewcommand\color[2][]{}%
}%
\providecommand\includegraphics[2][]{%
\GenericError{(gnuplot) \space\space\space\@spaces}{%
Package graphicx or graphics not loaded%
}{See the gnuplot documentation for explanation.%
}{The gnuplot epslatex terminal needs graphicx.sty or graphics.sty.}%
\renewcommand\includegraphics[2][]{}%
}%
\providecommand\rotatebox[2]{#2}%
\@ifundefined{ifGPcolor}{%
\newif\ifGPcolor
\GPcolortrue
}{}%
\@ifundefined{ifGPblacktext}{%
\newif\ifGPblacktext
\GPblacktextfalse
}{}%
% define a \g@addto@macro without @ in the name:
\let\gplgaddtomacro\g@addto@macro
% define empty templates for all commands taking text:
\gdef\gplbacktext{}%
\gdef\gplfronttext{}%
\makeatother
\ifGPblacktext
% no textcolor at all
\def\colorrgb#1{}%
\def\colorgray#1{}%
\else
% gray or color?
\ifGPcolor
\def\colorrgb#1{\color[rgb]{#1}}%
\def\colorgray#1{\color[gray]{#1}}%
\expandafter\def\csname LTw\endcsname{\color{white}}%
\expandafter\def\csname LTb\endcsname{\color{black}}%
\expandafter\def\csname LTa\endcsname{\color{black}}%
\expandafter\def\csname LT0\endcsname{\color[rgb]{1,0,0}}%
\expandafter\def\csname LT1\endcsname{\color[rgb]{0,1,0}}%
\expandafter\def\csname LT2\endcsname{\color[rgb]{0,0,1}}%
\expandafter\def\csname LT3\endcsname{\color[rgb]{1,0,1}}%
\expandafter\def\csname LT4\endcsname{\color[rgb]{0,1,1}}%
\expandafter\def\csname LT5\endcsname{\color[rgb]{1,1,0}}%
\expandafter\def\csname LT6\endcsname{\color[rgb]{0,0,0}}%
\expandafter\def\csname LT7\endcsname{\color[rgb]{1,0.3,0}}%
\expandafter\def\csname LT8\endcsname{\color[rgb]{0.5,0.5,0.5}}%
\else
% gray
\def\colorrgb#1{\color{black}}%
\def\colorgray#1{\color[gray]{#1}}%
\expandafter\def\csname LTw\endcsname{\color{white}}%
\expandafter\def\csname LTb\endcsname{\color{black}}%
\expandafter\def\csname LTa\endcsname{\color{black}}%
\expandafter\def\csname LT0\endcsname{\color{black}}%
\expandafter\def\csname LT1\endcsname{\color{black}}%
\expandafter\def\csname LT2\endcsname{\color{black}}%
\expandafter\def\csname LT3\endcsname{\color{black}}%
\expandafter\def\csname LT4\endcsname{\color{black}}%
\expandafter\def\csname LT5\endcsname{\color{black}}%
\expandafter\def\csname LT6\endcsname{\color{black}}%
\expandafter\def\csname LT7\endcsname{\color{black}}%
\expandafter\def\csname LT8\endcsname{\color{black}}%
\fi
\fi
\setlength{\unitlength}{0.0500bp}%
\begin{picture}(8352.00,11806.00)%
\gplgaddtomacro\gplbacktext{%
\colorrgb{0.50,0.50,0.50}%
\put(774,9430){\makebox(0,0)[r]{\strut{}\color{t}$2$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,9700){\makebox(0,0)[r]{\strut{}\color{t}$4$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,9970){\makebox(0,0)[r]{\strut{}\color{t}$6$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,10240){\makebox(0,0)[r]{\strut{}\color{t}$8$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,10510){\makebox(0,0)[r]{\strut{}\color{t}$10$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,10779){\makebox(0,0)[r]{\strut{}\color{t}$12$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,11049){\makebox(0,0)[r]{\strut{}\color{t}$14$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,11319){\makebox(0,0)[r]{\strut{}\color{t}$16$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,11589){\makebox(0,0)[r]{\strut{}\color{t}$18$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,9250){\makebox(0,0){\strut{}2200}}%
\colorrgb{0.50,0.50,0.50}%
\put(1432,9250){\makebox(0,0){\strut{}2300}}%
\colorrgb{0.50,0.50,0.50}%
\put(1981,9250){\makebox(0,0){\strut{}0000}}%
\colorrgb{0.50,0.50,0.50}%
\put(2531,9250){\makebox(0,0){\strut{}0100}}%
\colorrgb{0.50,0.50,0.50}%
\put(3080,9250){\makebox(0,0){\strut{}0200}}%
\colorrgb{0.50,0.50,0.50}%
\put(3630,9250){\makebox(0,0){\strut{}0300}}%
\colorrgb{0.50,0.50,0.50}%
\put(4180,9250){\makebox(0,0){\strut{}0400}}%
\colorrgb{0.50,0.50,0.50}%
\put(4729,9250){\makebox(0,0){\strut{}0500}}%
\colorrgb{0.50,0.50,0.50}%
\put(5279,9250){\makebox(0,0){\strut{}0600}}%
\colorrgb{0.50,0.50,0.50}%
\put(5829,9250){\makebox(0,0){\strut{}0700}}%
\colorrgb{0.50,0.50,0.50}%
\put(6378,9250){\makebox(0,0){\strut{}0800}}%
\colorrgb{0.50,0.50,0.50}%
\put(6928,9250){\makebox(0,0){\strut{}0900}}%
\colorrgb{0.50,0.50,0.50}%
\put(7477,9250){\makebox(0,0){\strut{}1000}}%
\colorrgb{0.50,0.50,0.50}%
\put(8027,9250){\makebox(0,0){\strut{}1100}}%
\csname LTb\endcsname%
\put(144,10509){\rotatebox{-270}{\makebox(0,0){\strut{}Température}}}%
\put(4454,8980){\makebox(0,0){\strut{}Temps [hhmm]}}%
}%
\gplgaddtomacro\gplfronttext{%
\csname LTb\endcsname%
\put(7208,11436){\makebox(0,0)[r]{\strut{}T [°C]}}%
}%
\gplgaddtomacro\gplbacktext{%
\colorrgb{0.50,0.50,0.50}%
\put(882,6479){\makebox(0,0)[r]{\strut{}\color{t}$932$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,6787){\makebox(0,0)[r]{\strut{}\color{t}$933$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,7096){\makebox(0,0)[r]{\strut{}\color{t}$934$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,7404){\makebox(0,0)[r]{\strut{}\color{t}$935$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,7713){\makebox(0,0)[r]{\strut{}\color{t}$936$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,8021){\makebox(0,0)[r]{\strut{}\color{t}$937$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,8330){\makebox(0,0)[r]{\strut{}\color{t}$938$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,8638){\makebox(0,0)[r]{\strut{}\color{t}$939$}}%
\colorrgb{0.50,0.50,0.50}%
\put(990,6299){\makebox(0,0){\strut{}2200}}%
\colorrgb{0.50,0.50,0.50}%
\put(1531,6299){\makebox(0,0){\strut{}2300}}%
\colorrgb{0.50,0.50,0.50}%
\put(2073,6299){\makebox(0,0){\strut{}0000}}%
\colorrgb{0.50,0.50,0.50}%
\put(2614,6299){\makebox(0,0){\strut{}0100}}%
\colorrgb{0.50,0.50,0.50}%
\put(3155,6299){\makebox(0,0){\strut{}0200}}%
\colorrgb{0.50,0.50,0.50}%
\put(3697,6299){\makebox(0,0){\strut{}0300}}%
\colorrgb{0.50,0.50,0.50}%
\put(4238,6299){\makebox(0,0){\strut{}0400}}%
\colorrgb{0.50,0.50,0.50}%
\put(4779,6299){\makebox(0,0){\strut{}0500}}%
\colorrgb{0.50,0.50,0.50}%
\put(5320,6299){\makebox(0,0){\strut{}0600}}%
\colorrgb{0.50,0.50,0.50}%
\put(5862,6299){\makebox(0,0){\strut{}0700}}%
\colorrgb{0.50,0.50,0.50}%
\put(6403,6299){\makebox(0,0){\strut{}0800}}%
\colorrgb{0.50,0.50,0.50}%
\put(6944,6299){\makebox(0,0){\strut{}0900}}%
\colorrgb{0.50,0.50,0.50}%
\put(7486,6299){\makebox(0,0){\strut{}1000}}%
\colorrgb{0.50,0.50,0.50}%
\put(8027,6299){\makebox(0,0){\strut{}1100}}%
\csname LTb\endcsname%
\put(144,7558){\rotatebox{-270}{\makebox(0,0){\strut{}Pression}}}%
\put(4508,6029){\makebox(0,0){\strut{}Temps [hhmm]}}%
}%
\gplgaddtomacro\gplfronttext{%
\csname LTb\endcsname%
\put(7208,8485){\makebox(0,0)[r]{\strut{}P [hPa]}}%
}%
\gplgaddtomacro\gplbacktext{%
\colorrgb{0.50,0.50,0.50}%
\put(774,3527){\makebox(0,0)[r]{\strut{}\color{t}$40$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,3743){\makebox(0,0)[r]{\strut{}\color{t}$45$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,3959){\makebox(0,0)[r]{\strut{}\color{t}$50$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,4175){\makebox(0,0)[r]{\strut{}\color{t}$55$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,4391){\makebox(0,0)[r]{\strut{}\color{t}$60$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,4607){\makebox(0,0)[r]{\strut{}\color{t}$65$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,4823){\makebox(0,0)[r]{\strut{}\color{t}$70$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,5039){\makebox(0,0)[r]{\strut{}\color{t}$75$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,5255){\makebox(0,0)[r]{\strut{}\color{t}$80$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,5471){\makebox(0,0)[r]{\strut{}\color{t}$85$}}%
\colorrgb{0.50,0.50,0.50}%
\put(774,5687){\makebox(0,0)[r]{\strut{}\color{t}$90$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,3347){\makebox(0,0){\strut{}2200}}%
\colorrgb{0.50,0.50,0.50}%
\put(1432,3347){\makebox(0,0){\strut{}2300}}%
\colorrgb{0.50,0.50,0.50}%
\put(1981,3347){\makebox(0,0){\strut{}0000}}%
\colorrgb{0.50,0.50,0.50}%
\put(2531,3347){\makebox(0,0){\strut{}0100}}%
\colorrgb{0.50,0.50,0.50}%
\put(3080,3347){\makebox(0,0){\strut{}0200}}%
\colorrgb{0.50,0.50,0.50}%
\put(3630,3347){\makebox(0,0){\strut{}0300}}%
\colorrgb{0.50,0.50,0.50}%
\put(4180,3347){\makebox(0,0){\strut{}0400}}%
\colorrgb{0.50,0.50,0.50}%
\put(4729,3347){\makebox(0,0){\strut{}0500}}%
\colorrgb{0.50,0.50,0.50}%
\put(5279,3347){\makebox(0,0){\strut{}0600}}%
\colorrgb{0.50,0.50,0.50}%
\put(5829,3347){\makebox(0,0){\strut{}0700}}%
\colorrgb{0.50,0.50,0.50}%
\put(6378,3347){\makebox(0,0){\strut{}0800}}%
\colorrgb{0.50,0.50,0.50}%
\put(6928,3347){\makebox(0,0){\strut{}0900}}%
\colorrgb{0.50,0.50,0.50}%
\put(7477,3347){\makebox(0,0){\strut{}1000}}%
\colorrgb{0.50,0.50,0.50}%
\put(8027,3347){\makebox(0,0){\strut{}1100}}%
\csname LTb\endcsname%
\put(144,4607){\rotatebox{-270}{\makebox(0,0){\strut{}Humidité}}}%
\put(4454,3077){\makebox(0,0){\strut{}Temps [hhmm]}}%
}%
\gplgaddtomacro\gplfronttext{%
\csname LTb\endcsname%
\put(7208,5534){\makebox(0,0)[r]{\strut{}Hr [\%]}}%
}%
\gplgaddtomacro\gplbacktext{%
\colorrgb{0.50,0.50,0.50}%
\put(882,576){\makebox(0,0)[r]{\strut{}\color{t}$0$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,792){\makebox(0,0)[r]{\strut{}\color{t}$20$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,1008){\makebox(0,0)[r]{\strut{}\color{t}$40$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,1224){\makebox(0,0)[r]{\strut{}\color{t}$60$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,1440){\makebox(0,0)[r]{\strut{}\color{t}$80$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,1656){\makebox(0,0)[r]{\strut{}\color{t}$100$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,1871){\makebox(0,0)[r]{\strut{}\color{t}$120$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,2087){\makebox(0,0)[r]{\strut{}\color{t}$140$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,2303){\makebox(0,0)[r]{\strut{}\color{t}$160$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,2519){\makebox(0,0)[r]{\strut{}\color{t}$180$}}%
\colorrgb{0.50,0.50,0.50}%
\put(882,2735){\makebox(0,0)[r]{\strut{}\color{t}$200$}}%
\colorrgb{0.50,0.50,0.50}%
\put(990,396){\makebox(0,0){\strut{}2200}}%
\colorrgb{0.50,0.50,0.50}%
\put(1531,396){\makebox(0,0){\strut{}2300}}%
\colorrgb{0.50,0.50,0.50}%
\put(2073,396){\makebox(0,0){\strut{}0000}}%
\colorrgb{0.50,0.50,0.50}%
\put(2614,396){\makebox(0,0){\strut{}0100}}%
\colorrgb{0.50,0.50,0.50}%
\put(3155,396){\makebox(0,0){\strut{}0200}}%
\colorrgb{0.50,0.50,0.50}%
\put(3697,396){\makebox(0,0){\strut{}0300}}%
\colorrgb{0.50,0.50,0.50}%
\put(4238,396){\makebox(0,0){\strut{}0400}}%
\colorrgb{0.50,0.50,0.50}%
\put(4779,396){\makebox(0,0){\strut{}0500}}%
\colorrgb{0.50,0.50,0.50}%
\put(5320,396){\makebox(0,0){\strut{}0600}}%
\colorrgb{0.50,0.50,0.50}%
\put(5862,396){\makebox(0,0){\strut{}0700}}%
\colorrgb{0.50,0.50,0.50}%
\put(6403,396){\makebox(0,0){\strut{}0800}}%
\colorrgb{0.50,0.50,0.50}%
\put(6944,396){\makebox(0,0){\strut{}0900}}%
\colorrgb{0.50,0.50,0.50}%
\put(7486,396){\makebox(0,0){\strut{}1000}}%
\colorrgb{0.50,0.50,0.50}%
\put(8027,396){\makebox(0,0){\strut{}1100}}%
\csname LTb\endcsname%
\put(144,1655){\rotatebox{-270}{\makebox(0,0){\strut{}Luminosité}}}%
\put(4508,126){\makebox(0,0){\strut{}Temps [hhmm]}}%
}%
\gplgaddtomacro\gplfronttext{%
\csname LTb\endcsname%
\put(7208,2582){\makebox(0,0)[r]{\strut{}Lx [Lux]}}%
}%
\gplbacktext
\put(0,0){\includegraphics{data/4/data}}%
\gplfronttext
\end{picture}%
\endgroup

View File

@ -41,6 +41,12 @@
description={ensemble de fonctions permettant de manipuler un capteur, un objet, une puce (etc.) plus facilement}
}
\newglossaryentry{horloge temps reel}
{
name=horloge temps réel,
description={horloge permettant un décompte très précis du temps, utilisée en électronique}
}
\newglossaryentry{materiel libre}
{
name=matériel libre,
@ -60,6 +66,21 @@
\newacronym{FSF}{FSF}{Free Software Foundation}
\newacronym{GPL}{GPL}{GNU General Public License}
\newacronym{JSON}{JSON}{JavaScript Object Notation}
\newacronym{LCD}{LCD}{Liquid Crystal Display}
\newacronym{NTP}{NTP}{Network Time Protocol}
\newacronym{OLED}{OLED}{Organic Light-Emitting Diode}
\newacronym{OSI}{OSI}{Open Source Initiative}
\newacronym{RAM}{RAM}{Random Access Memory}
\newacronym{TM}{TM}{Travail de Maturité}
\newglossaryentry{H}{name={\ensuremath{H}}, description={Humidité [g/m³]}, type=symbolslist}
\newglossaryentry{m}{name={\ensuremath{m}}, description={Masse de vapeur [g]}, type=symbolslist}
\newglossaryentry{V}{name={\ensuremath{V}}, description={Volume d'air [m³]}, type=symbolslist}
\newglossaryentry{M}{name={\ensuremath{M}}, description={Masse molaire [g/mol]}, type=symbolslist}
\newglossaryentry{n}{name={\ensuremath{n}}, description={Quantité de matière en moles [mol]}, type=symbolslist}
\newglossaryentry{P}{name={\ensuremath{P}}, description={Pression de vapeur [Pa]}, type=symbolslist}
\newglossaryentry{R}{name={\ensuremath{R}}, description={Constante universelle des gaz parfaits}, type=symbolslist}
\newglossaryentry{T}{name={\ensuremath{T}}, description={Température de l'air [K]}, type=symbolslist}
\newglossaryentry{Hr}{name={\ensuremath{H_r}}, description={Humidité relative}, type=symbolslist}
\newglossaryentry{Heq}{name={\ensuremath{H_{\acute{e}q}}}, description={Humidité à l'équilibre [g/m³]}, type=symbolslist}
\newglossaryentry{Peq}{name={\ensuremath{P_{\acute{e}q}}}, description={Pression de vapeur à l'équilibre [Pa]}, type=symbolslist}

View File

@ -2,10 +2,12 @@ $pdflatex = "xelatex -shell-escape";
$pdf_mode = "1";
push @generated_exts, 'glo', 'gls', 'glg';
push @generated_exts, 'syg', 'syi', 'slg';
push @generated_exts, 'acn', 'acr', 'alg';
$clean_ext .= ' %R.bbl %R-blx.bib %R.ist %R.nav %R.run.xml %R.snm %R.xdy %R.pyg';
add_cus_dep( 'glo', 'gls', 0, 'makeglossaries' );
add_cus_dep( 'syg', 'syi', 0, 'makeglossaries' );
sub makeglossaries {
system( "makeglossaries \"$_[0]\"" );
}