diff --git a/.gitignore b/.gitignore index c489a05..ab1ddaa 100644 --- a/.gitignore +++ b/.gitignore @@ -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 \ No newline at end of file +*.sta diff --git a/2-Introduction/Introduction.tex b/2-Introduction/Introduction.tex index b799741..b7d9a56 100644 --- a/2-Introduction/Introduction.tex +++ b/2-Introduction/Introduction.tex @@ -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} diff --git a/6-Thanks/Thanks.tex b/6-Thanks/Thanks.tex index 30d7cb0..6faf621 100644 --- a/6-Thanks/Thanks.tex +++ b/6-Thanks/Thanks.tex @@ -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. \ No newline at end of file +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. \ No newline at end of file diff --git a/Main.pdf b/Main.pdf deleted file mode 100644 index 317ab9a..0000000 Binary files a/Main.pdf and /dev/null differ diff --git a/Main.tex b/Main.tex index e7f607c..cfc23e7 100644 --- a/Main.tex +++ b/Main.tex @@ -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} } diff --git a/Makefile b/Makefile index 05a1347..fa431a0 100644 --- a/Makefile +++ b/Makefile @@ -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 \ diff --git a/README.md b/README.md new file mode 100644 index 0000000..bc332e8 --- /dev/null +++ b/README.md @@ -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 +``` + diff --git a/graphics/beltscale.jpg b/graphics/beltscale.jpg new file mode 100644 index 0000000..2a1fe66 Binary files /dev/null and b/graphics/beltscale.jpg differ