-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy paththesis.tex
108 lines (85 loc) · 2.98 KB
/
thesis.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
\documentclass[12pt, a4paper]{report}
% Add paths to search for files. This should be before the imports.
\makeatletter
\def\input@path{%
{Classes/}%
}
\makeatother
% Define language as Australian when loading babel package
% This is primarily for the hyphenation
\PassOptionsToPackage{australian}{babel}
\usepackage{thesis}
\usepackage{preamble}
\setstretch{1.4}
% Get version number
\input{version}
\title{Liquid Dynamics and Crystal Melting of a Two Dimensional Molecule}
\author{Malcolm Ramsay}
\uni{The University of Sydney}
\dept{School of Chemistry}
% This is to put the version information on the title page, to replace with the
% crest upon submission/acceptance
\crest{\vspace{25mm}}
% \crest{\Huge\bf v\version}
%\crest{\includegraphics[width=25mm]{USYD_Logo}}
\principaladvisor{Professor Peter Harrowell}
\coprincipaladvisor{Dr Asaph Widmer-Cooper}
\tablespagefalse{}
\figurespagefalse{}
\addbibresource{bibliography/bibliography.bib}
\usepackage[style=iso]{datetime2}
\date{\today{}}
\begin{document}
\beforepreface{}
\contributionsignature
\abstract{
\input{99_Frontmatter/abstract}
}
\afterpreface{}
\chapter{Introduction} \label{sec:Introduction}
\input{00_Introduction/introduction}
\chapter{Methods} \label{sec:Methods}
\input{01_Methods/Molecular_Dynamics}
\input{01_Methods/Dynamics}
\input{01_Methods/Machine_Learning}
\input{01_Methods/Measuring_Melting}
\input{01_Methods/Simulation_Conditions}
\chapter{Dynamics of the Trimer Model} \label{sec:Dynamics}
\input{02_Dynamics/introduction}
\input{02_Dynamics/standard_dynamics}
\input{02_Dynamics/conclusion}
\chapter{Understanding Glassy Dynamics} \label{sec:Glassy_Dynamics}
\input{03_Glassy_Dynamics/introduction}
\input{03_Glassy_Dynamics/molecular_relaxation}
\input{03_Glassy_Dynamics/stokes_einstein_debye}
\input{03_Glassy_Dynamics/conclusion}
\chapter{Local Structure Identification Using Machine Learning} \label{sec:Machine_Learning}
\input{04_Machine_Learning/introduction}
\input{04_Machine_Learning/clustering}
\input{04_Machine_Learning/supervised_learning}
\input{04_Machine_Learning/conclusion}
\chapter{Modelling Crystal Melting Rates} \label{sec:Crystal_Melting}
\input{05_Crystal_Melting/introduction}
\input{05_Crystal_Melting/thermodynamics}
\input{05_Crystal_Melting/rates}
\input{05_Crystal_Melting/conclusion}
\chapter{Understanding Crystal Melting} \label{sec:Melting_Behaviour}
\input{06_Melting_Behaviour/introduction}
\input{06_Melting_Behaviour/static_analysis}
\input{06_Melting_Behaviour/dynamic_analysis}
\input{06_Melting_Behaviour/conclusion}
\chapter{Conclusion}
\input{07_Conclusion/conclusion}
{
\sloppy
\printbibliography[title={Literature Cited}, heading=bibintoc]{}
}
\begin{appendices}
\chapter{Computational Methods} \label{sec:computational_methods}
\input{08_Appendix/Computational_Methods}
\chapter{Software Projects} \label{sec:software_projects}
\input{08_Appendix/Projects}
\chapter{Code Snippets} \label{sec:code_snippets}
\input{08_Appendix/code_snippets}
\end{appendices}
\end{document}