-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
168 lines (136 loc) · 4.06 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
%% Package and Class "uiucthesis2021" for use with LaTeX2e.
\documentclass[edeposit,fullpage,12pt]{uiucthesis2021}
\doublespacing
\usepackage[acronym,toc]{glossaries}
\makeglossaries
\include{acros}
\usepackage{xspace}
\usepackage{graphicx}
\graphicspath{{images/}}
\usepackage[title,titletoc]{appendix}
\usepackage{placeins}
\usepackage{booktabs} % nice rules (thick lines) for tables
\usepackage{array}
\usepackage{microtype} % improves typography for PDF
\usepackage[hyphens]{url}
\usepackage[hidelinks]{hyperref}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{hhline}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{mathtools}
\allowdisplaybreaks
\usepackage{color}
\usepackage{multirow}
\usepackage{siunitx}
\usepackage{xfrac}
\usepackage{bm}
\usepackage{threeparttable, tablefootnote}
\usepackage{environ}
\makeatletter
\usepackage{tabularx}
\usepackage{float}
\usepackage{enumitem}
\usepackage{diagbox}
\usepackage{courier}
\usepackage{pdflscape}
\usepackage{cleveref}
\usepackage{datatool}
\usepackage[numbers]{natbib}
\usepackage{notoccite}
\usepackage{tikz}
\usepackage{tkz-euclide}
\usetikzlibrary{positioning, arrows, decorations, shapes}
\usetikzlibrary{shapes.geometric,arrows}
\definecolor{illiniblue}{HTML}{B1C6E2}
\definecolor{illiniorange}{HTML}{f8c2a2}
\definecolor{green}{HTML}{c2e2b1}
\tikzstyle{process} = [rectangle, rounded corners, thick, minimum width=7cm, minimum height=1cm, text centered, draw=black, fill=illiniblue, text width=18em]
\tikzstyle{object} = [ellipse, minimum width=2cm, thick, minimum height=2.2cm, text centered, draw=black, fill=illiniorange, text width=12em]
\tikzstyle{decision} = [diamond, thick, aspect=2, minimum width=2cm, minimum height=2cm, text centered, draw=black, fill=green, text width=6em]
\tikzstyle{arrow} = [thick,->,>=stealth]
\usepackage[ruled,linesnumbered,lined]{algorithm2e}
\SetArgSty{textrm}
\title{Advancement of Moltres for Multiphysics Molten Salt Reactor Modeling}
\author{Sun Myung Park}
\department{Nuclear, Plasma \& Radiological Engineering}
\prelim
\degreeyear{2023}
\committee{Dr Madicken Munk, Chair \\
Professor Rizwan Uddin \\
Associate Professor Tomasz Kozlowski \\
Professor Paul Fischer}
\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}
\addcontentsline{toc}{chapter}{Abstract}
%\begin{dedication}
%
%\end{dedication}
%\begin{acknowledgments}
%
%%\input{acks}
%
%\end{acknowledgments}
%\addcontentsline{toc}{chapter}{Acknowledgments}
%% 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.
{
\hypersetup{linkcolor=black}
\tableofcontents
}
%% 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}
\glsresetall
\chapter{Molten Salt Reactor Modeling}
\label{chap:lit}
\input{lit}
\glsresetall
\chapter{Description of Moltres and Assessment of its Current Capabilities}
\label{chap:moltres}
\input{moltres}
\glsresetall
\chapter{Verification of Moltres for Multiphysics Molten Salt
Reactor Modeling}
\label{chap:benchmark}
\input{benchmark}
\glsresetall
\chapter{Hybrid S$_\text{N}$-Diffusion Method for Improved Control Rod Modeling
in Neutron Diffusion Methods}
\label{chap:hybrid}
\input{hybrid}
\glsresetall
\chapter{Proposed Work}
\label{chap:proposedwork}
\input{proposed-work}
\glsresetall
\backmatter
\bibliographystyle{IEEEtran}
\bibliography{bibliography}
\end{document}
\endinput
%%