update 20180515

This commit is contained in:
acereca 2018-05-15 15:46:08 +02:00
parent e7dea67238
commit ea922f4c99
13 changed files with 465 additions and 390 deletions

View File

@ -8,7 +8,7 @@ lognum = 2
plt.ioff()
plt.style.use('bmh')
plt.figure(figsize=(19.2,10.8))
plt.figure(figsize=(11.88, 8.4))
data = pd.read_csv("./log_poticalib_ana_{:02d}.csv".format(lognum))
print(data)
@ -58,4 +58,5 @@ plt.title("PowerIt Calibration: Analog Potentiometer")
plt.legend()
#-plt.savefig("2kw_direct.png")
plt.tight_layout()
plt.savefig("adccalib_{:02d}.eps".format(lognum), format='eps', dpi=1000)

File diff suppressed because it is too large Load Diff

View File

@ -8,7 +8,7 @@ lognum = 2
plt.ioff()
plt.style.use('bmh')
plt.figure(figsize=(19.2,10.8))
plt.figure(figsize=(11.88, 8.40))
data = pd.read_csv("./log_poticalib_ana_{:02d}.csv".format(lognum))
print(data)
@ -58,4 +58,5 @@ plt.title("PowerIt Calibration: Analog Potentiometer")
plt.legend()
#-plt.savefig("2kw_direct.png")
plt.tight_layout()
plt.savefig("adccalib_{:02d}.eps".format(lognum), format='eps', dpi=1000)

3
parts/experiments.tex Normal file
View File

@ -0,0 +1,3 @@
%! TEX root = ../thesis.tex
\chapter{Experiments}
<contains the experimental observations defined in th theory>

View File

@ -1,4 +1,5 @@
%! TEX root = ../thesis.tex
\chapter{Preface}
hi
\chapter{Intro}
<containing intro to system and board>

3
parts/outlook.tex Normal file
View File

@ -0,0 +1,3 @@
%! TEX root = ../thesis.tex
\chapter{Outlook}

3
parts/results.tex Normal file
View File

@ -0,0 +1,3 @@
%! TEX root = ../thesis.tex
\chapter{Results}

3
parts/tasks.tex Normal file
View File

@ -0,0 +1,3 @@
%! TEX root ../thesis.tex
\chapter{Goals}
<containing the Goals defined beforehand>

3
parts/theory.tex Normal file
View File

@ -0,0 +1,3 @@
%! TEX root = ../thesis.tex
\chapter{Theory}
<containing the thoeretical evaluation of the Problem and excludes possible procedures used in the experimantal setup>

View File

@ -2,6 +2,7 @@
\input{tikz/tikzpreamble.tex}
\usepackage{titling}
\usepackage{xcolor}
\usepackage{hyperref}
\usepackage{tcolorbox}

31
tabs/registerbuffer.tex Normal file
View File

@ -0,0 +1,31 @@
%! TEX root ../thesis.tex
\begin{figure}
\centering
\begin{tabular}{l|l<{\ttfamily} l l l}
addr & name & type & size & perm \\
\hline
0x00 & onmask & byte & 1 & rw\\
0x01 & offmask & byte & 1 & rw\\
0x02 & anapot & 9bit & 2 & rw\\
0x04 & digipot & 9bit & 2 & rw\\
\hline
0x06 & TEMP\_SENSOR & float & 4 & r\\
0x0a & EXT\_AIN & float & 4 & r\\
0x0e & MONITOR\_48V & float & 4 & r\\
0x12 & MONITOR\_48I & float & 4 & r\\
0x16 & MONITOR\_8VBUS & float & 4 & r\\
0x1a & MONITOR\_8IBUS & float & 4 & r\\
0x1e & MONITOR\_8V\_0 & float & 4 & r\\
0x22 & MONITOR\_8V\_1 & float & 4 & r\\
0x26 & MONITOR\_8V\_2 & float & 4 & r\\
0x2a & MONITOR\_8V\_3 & float & 4 & r\\
0x2e & VDD\_1V8\_ANA & float & 4 & r\\
0x32 & VDD\_1V8\_IOUT\_ANA & float & 4 & r\\
0x36 & VDD\_1V8\_DIGI & float & 4 & r\\
0x3a & VDD\_1V8\_IOUT\_DIGI & float & 4 & r\\
\hline
0x3e & CommitHash & float & 4 & s\\
0x42 & CommitDirtyFlag & byte & 1 & s\\
0x43 & STM32UUID & 96bit & 12 & s\\
\end{tabular}
\end{figure}

View File

@ -40,7 +40,13 @@
\end{itemize}
\begin{figure}[b]
\centering
%\includegraphics[width=\textwidth]{data/m03_poticalib/adccalib_02.eps}
%\includegraphics[height=.4\textheight]{data/m02_adccalib_48/i48_adccalib.eps}
\caption{}
\label{}
\end{figure}
\begin{figure}[b]
\centering
\includegraphics[width=\textwidth]{data/m03_poticalib/adccalib_02.eps}
\caption{ Kurve der 1.8V Ausgangsspannung in Abhaengigkeit des angelegeten Widerstandes}
\label{}
\end{figure}

View File

@ -1,11 +1,30 @@
\documentclass[]{scrreprt}
\documentclass[notitlepage]{scrreprt}
\input{preamble}
\pretitle{\begin{center}\huge\bfseries}
\posttitle{\par\end{center}\vskip 0.5em}
\preauthor{\begin{center}\Large}
\postauthor{\end{center}}
\predate{\par\large\centering}
\postdate{\par\vspace{3cm}}
\author{Patrick Nisblé}
\title{$<$ on the calibration and regulation of a PowerIt, english$>$}
\title{$<$ on the calibration and regulation of a PowerIt, english $>$}
\begin{document}
\maketitle
\thispagestyle{empty}
\begin{abstract}
<fill in>
\end{abstract}
\tableofcontents
\include{./temp_content}
\include{./tabs/registerbuffer}
\include{parts/intro}
\include{parts/tasks}
\include{parts/theory}
\include{parts/experiments}
\include{parts/results}
\include{parts/outlook}
\end{document}