wk 44 additions

This commit is contained in:
Nareshkumar Rao 2021-11-05 19:32:55 +01:00
parent 61a878cfd0
commit c406c346c1
8 changed files with 64 additions and 9 deletions

3
.gitignore vendored
View File

@ -20,7 +20,6 @@
# *.ps
# *.eps
*.pdf
!Main.pdf
## Generated if empty string is given at "Please type another file name for output:"
.pdf
@ -262,4 +261,4 @@ TSWLatexianTemp*
*-tags.tex
# standalone packages
*.sta
*.sta

View File

@ -2,7 +2,38 @@
\section{Motivation}
\citep{protogerakis_discussion_2020}
\subsection{Transportation of Bulk Material}
It is necessary in several industries, including those of mining and manufacturing, to transport bulk material from one on-site location to another. In mining, it may be sand or gravel. In manufacturing, it may be powdered chemicals.
The transportation of this bulk material typically involves the use of a belt conveyor. These belt conveyors are designed especially with the purpose of containing bulk material, as well as applying the necessary forces to transport them. \citep{protogerakis_discussion_2020}\todo{remove test citation}
\subsection{Measuring Bulk Material Flow}
This transportation of bulk material flow introduces challenges into the processing engineering and automation ability of the facility. This work deals with the specific challenge of measuring bulk material flow on a conveyor.
Possessing this information is important for the proper control and regulation of the conveyor system, as well as for safety functions. Knowing when a belt is overloaded, running empty, or broken may prevent damage to people and machinery.
\subsection{Conventional Belt Scales}
\begin{figure}[h]
\begin{center}
\includegraphics[width=0.8\textwidth]{beltscale}
\caption{A conventional electronic belt scale. Source: \url{https://www.mts-waagen.de/}}
\end{center}
\end{figure}
The conventional method of measuring bulk material flow in use in the industry today the electronic belt scale. These scales use load cells to translate compression and tension into electrical signals.
These electronic belt scales are robust and proven in the field. However, there are also downsides with this approach.
Firstly, the retrofitting of these belt scales are difficult and costly. \todo{add more info}
Secondly, the cost of the units themselves are high, not including the necessary maintenance and servicing these units require. \todo{add cost examples}
\section{Aims of this Work}

View File

@ -6,4 +6,4 @@ Mr. N. Stuhrmann and Mr. M. Meilchen too have my gratitude for their tireless as
Thank you to Prof. Dr.-Ing. Ralf Beck for offering to be the second examiner of this thesis.
Finally I would like to thank XX for their proofreading of this work, and my partner I. Gvazdaityte whose everlasting support at home made this work possible.
Finally I would like to thank XX\todo{fill in proofreader} for their proofreading of this work, and my partner I. Gvazdaityte whose everlasting support made this work possible.

BIN
Main.pdf

Binary file not shown.

View File

@ -9,6 +9,7 @@
\usepackage[plain]{fancyref}
\usepackage{rotating}
\usepackage{siunitx}
\sisetup{locale = DE}
@ -37,11 +38,13 @@
\geometry{
a4paper,
total={170mm,257mm},
left=35mm,
inner=35mm,
top=15mm,
bottom=25mm,
right=25mm
outer=25mm
}
\usepackage{todonotes}
\setlength{\marginparwidth}{2cm}
\setlength{\parindent}{0pt}
\setlength{\parskip}{1em}
@ -52,7 +55,7 @@
\hypersetup{
pdftitle={Master Thesis - Nareshkumar Rao},
pdfsubject={Design eines Laserresonators zum Zweck der Kerr-Linsen-Modenkopplung},
pdfsubject={Measuring Bulk Material Flow using Commercially-Available LIDAR Sensors},
pdfauthor={Nareshkumar Rao},
pdfkeywords={LIDAR, conveyor belt}
}

View File

@ -9,6 +9,12 @@ Main.pdf: clean
$(PDF_CMD) Main.tex
$(PDF_CMD) Main.tex
clean:
rm -f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out *.brf *.blg *.bbl Main.pdf
clean: SHELL:=/bin/bash
clean:
@rm_exts=('*.synctex.gz' '*.ps' '*.dvi' '*.aux' '*.toc' '*.idx' '*.ind' '*.ilg' '*.log' '*.out' '*.brf' '*.blg' '*.bbl'); \
for i in "$${rm_exts[@]}"; \
do \
find . -name "$$i" -exec rm {} \;; \
done \

16
README.md Normal file
View File

@ -0,0 +1,16 @@
# Master Thesis - Latex Source
## Building
The provided Makefile runs pdflatex, and bibtex in order to build the Main.pdf
Simply run
```bash
make
```
To clean the directory from output files, use:
```bash
make clean
```

BIN
graphics/beltscale.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 545 KiB