-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.tex
137 lines (104 loc) · 2.77 KB
/
main.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
%% Package and Class "uiucthesis2018" for use with LaTeX2e.
\documentclass[edeposit,fullpage,11pt]{uiucthesis2018}
\usepackage[acronym,toc]{glossaries}
\makeglossaries
\include{acros}
\usepackage{xspace}
\usepackage{graphics}
\graphicspath{{images/}}
\usepackage{placeins}
\usepackage{booktabs} % nice rules (thick lines) for tables
\usepackage{microtype} % improves typography for PDF
\usepackage[hyphens]{url}
\usepackage[hidelinks]{hyperref}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{hhline}
\usepackage{amsmath}
\allowdisplaybreaks
\usepackage{color}
\usepackage{multirow}
\usepackage{siunitx}
\usepackage{booktabs}
\usepackage{threeparttable, tablefootnote}
\usepackage{environ}
\makeatletter
\usepackage{tabularx}
\usepackage{cleveref}
\usepackage{datatool}
\usepackage[numbers]{natbib}
\usepackage{notoccite}
\usepackage{tikz}
\title{Advancement and Verification of Moltres for Molten Salt Reactor Safety
Analysis}
\author{Sun Myung Park}
\department{Nuclear, Plasma \& Radiological Engineering}
%\schools{}
\msthesis
\advisor{Kathryn D. Huff}
\degreeyear{2020}
\committee{Assistant Professor Kathryn D. Huff, Advisor \\ Associate Professor
Tomasz Kozlowski}
\begin{document}
\maketitle
\frontmatter
%% Create an abstract that can also be used for the ProQuest abstract.
%% Note that ProQuest truncates their abstracts at 350 words.
\begin{abstract}
\input{abstract}
\end{abstract}
\chapter*{Acknowledgments}
\input{acks}
%% The thesis format requires the Table of Contents to come
%% before any other major sections, all of these sections after
%% the Table of Contents must be listed therein (i.e., use \chapter,
%% not \chapter*). Common sections to have between the Table of
%% Contents and the main text are:
%%
%% List of Tables
%% List of Figures
%% List Symbols and/or Abbreviations
%% etc.
\tableofcontents
\listoftables
\listoffigures
%% Create a List of Abbreviations. The left column
%% is 1 inch wide and left-justified
\printglossary[title=List of Abbreviations,type=\acronymtype,nonumberlist,
nogroupskip=true]
%% Create a List of Symbols. The left column
%% is 0.7 inch wide and centered
\pagebreak
\mainmatter
\glsresetall
\chapter{Introduction}
\label{chap:intro}
\input{introduction}
\chapter{Molten Salt Reactors}
\label{chap:msr}
\input{msr}
\chapter{Methodology}
\label{chap:model}
\input{model}
\chapter{Neutronics Results}
\label{chap:nts}
\input{neutronics}
\chapter{Coupled Neutronics/Thermal-Hydraulics Steady-State Results}
\label{chap:ss}
\input{steadystate}
\chapter{Transient Scenarios}
\label{chap:transient}
\input{transient}
\chapter{Conclusion}
\label{chap:conclusion}
\input{conclusion}
%
%\chapter*{Appendix}
%\label{chap:appendix}
%\input{appendix}
\backmatter
\bibliographystyle{ieeetr}
\bibliography{bibliography}
\end{document}
\endinput
%%