summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bib.bib41
-rw-r--r--cv.cls91
-rw-r--r--cv.pdfbin0 -> 45385 bytes
-rw-r--r--cv.tex139
-rw-r--r--presentations.tex55
-rw-r--r--research.tex35
6 files changed, 361 insertions, 0 deletions
diff --git a/bib.bib b/bib.bib
new file mode 100644
index 0000000..689bdf3
--- /dev/null
+++ b/bib.bib
@@ -0,0 +1,41 @@
+@article{Chattopadhyay:2024bcv,
+ author = "Chattopadhyay, Chandrodoy and Ott, Josh and {Sch\"afer}, Thomas and Skokov, Vladimir V.",
+ title = "{Critical fluid dynamics in two and three dimensions}",
+ eprint = "2411.15994",
+ archivePrefix = "arXiv",
+ primaryClass = "nucl-th",
+ doi = "10.1103/PhysRevD.111.034026",
+ journal = "Phys. Rev. D",
+ volume = "111",
+ number = "3",
+ pages = "034026",
+ year = "2025"
+}
+
+@article{Chattopadhyay:2024jlh,
+ author = "Chattopadhyay, Chandrodoy and Ott, Josh and {Sch\"afer}, Thomas and Skokov, Vladimir V.",
+ title = "{Simulations of Stochastic Fluid Dynamics near a Critical Point in the Phase Diagram}",
+ eprint = "2403.10608",
+ archivePrefix = "arXiv",
+ primaryClass = "nucl-th",
+ doi = "10.1103/PhysRevLett.133.032301",
+ journal = "Phys. Rev. Lett.",
+ volume = "133",
+ number = "3",
+ pages = "032301",
+ year = "2024"
+}
+
+@article{Chattopadhyay:2023jfm,
+ author = "Chattopadhyay, Chandrodoy and Ott, Josh and {Sch\"afer}, Thomas and Skokov, Vladimir",
+ title = "{Dynamic scaling of order parameter fluctuations in model B}",
+ eprint = "2304.07279",
+ archivePrefix = "arXiv",
+ primaryClass = "nucl-th",
+ doi = "10.1103/PhysRevD.108.074004",
+ journal = "Phys. Rev. D",
+ volume = "108",
+ number = "7",
+ pages = "074004",
+ year = "2023"
+}
diff --git a/cv.cls b/cv.cls
new file mode 100644
index 0000000..508137d
--- /dev/null
+++ b/cv.cls
@@ -0,0 +1,91 @@
+\ProvidesClass{cv}[2025/04/25 v1.0 CV class]
+
+\LoadClass[11pt]{article}
+\usepackage[top=0.5in, left=0.5in, right=0.5in, bottom=0.5in]{geometry}
+
+\usepackage[backend=bibtex,maxcitenames=4,giveninits=true]{biblatex}
+\usepackage{tabto}
+\usepackage{changepage}
+\usepackage{hyperref}
+\usepackage{enumitem}
+\usepackage{calc}
+\usepackage{xifthen}
+\usepackage{fontspec}
+\setmainfont[BoldFont={Fira Sans SemiBold}]{Fira Sans Regular}
+\setmonofont[SizeFeatures={Size=10}]{FiraCode Nerd Font}
+
+\def \spacing {0.1in}
+\def \rightedge {0.3in}
+\def \tabspace {0.9in}
+\def \bullet {0.2in}
+
+\setlength{\parindent}{0pt}
+
+\newenvironment{extracurricular}[2]
+ {\tabto{\spacing}\textbf{#2}\hfill{\textsl{#1}}
+ \begin{adjustwidth}{\bullet}{\rightedge} }
+ {
+ \end{adjustwidth}
+ \vspace{0.3em}
+ }
+
+% type (optional)
+% title
+% event
+% location
+% date
+\newcommand\presentation[5][]{
+ {\tabto{\spacing}#3, {\small #4} \hfill \textsl{#5}}
+
+ {\tabto{\bullet}{``#2''} \ifthenelse{\isempty{#1}}{}{\footnotesize(#1)}}
+ \vspace{0.3em}
+}
+
+\newcommand\publication[1]{
+\citenames{#1} [arXiv:\texttt{\citefield{#1}{eprint}}]
+}
+
+\newbibmacro*{name:fixed-given-family}[4]{%
+ \usebibmacro{name:delim}{#2#3#1}%
+ \usebibmacro{name:hook}{#2#3#1}%
+ \mkbibcompletenamegivenfamily{%
+ {\mkbibnamegiven{#2}\isdot\bibnamedelimd}%
+ \ifdefvoid{#3}
+ {}
+ {\mkbibnameprefix{#3}\isdot
+ \ifprefchar
+ {}
+ {\ifuseprefix{\bibnamedelimc}{\bibnamedelimd}}}%
+ \mkbibnamefamily{#1}\isdot
+ \ifdefvoid{#4}{}{\bibnamedelimd\mkbibnamesuffix{#4}\isdot}}}
+
+\def\FormatName#1{%
+ \def\myname{Ott}%
+ \ifx\namepartfamily\myname
+ \textbf{#1}%
+ \else
+ #1%
+ \fi
+}
+
+\DeclareFieldFormat{title}{``#1''}
+
+\DeclareNameFormat{cvnames}{%
+ \renewcommand*{\multinamedelim}{\addcomma\addspace}%
+ \nameparts{#1}%
+ \usebibmacro{name:fixed-given-family}
+ {\FormatName\namepartfamily}
+ {\FormatName\namepartgiveni}
+ {\namepartprefix}
+ {\namepartsuffix}
+ \usebibmacro{name:andothers}%
+}
+
+\DeclareCiteCommand{\citenames}{}{%
+ \printnames[cvnames]{labelname}\adddot\addspace%
+ \usebibmacro{title}%
+ \usebibmacro{journal+issuetitle}%
+ \usebibmacro{note+pages}\adddot
+}{}{}
+
+\newcommand\header[1]{\vspace{0.2em} \textsc{\Large #1} \hrulefill \vspace{0.2em}}
diff --git a/cv.pdf b/cv.pdf
new file mode 100644
index 0000000..d4dbfd8
--- /dev/null
+++ b/cv.pdf
Binary files differ
diff --git a/cv.tex b/cv.tex
new file mode 100644
index 0000000..1b47156
--- /dev/null
+++ b/cv.tex
@@ -0,0 +1,139 @@
+\documentclass{cv}
+
+\addbibresource{bib.bib}
+
+\begin{document}
+
+\begin{center}
+ {\textbf{\LARGE Josh Ott}\par}
+
+ \vspace{0.2em}
+
+ Ph.D. Student, MIT Center for Theoretical Physics
+
+ \href{mailto:joott@mit.edu}{joott@mit.edu} $\cdot$
+ \href{https://www.github.com/joott}{github.com/joott}\\
+\end{center}
+\vspace{-0.6em}
+
+\header{Education}
+
+\begin{adjustwidth}{\spacing}{0in}
+ \textbf{Massachusetts Institute of Technology} \hfill \textsl{2025 --}
+
+ \tabto{\bullet}{Ph.D. in Physics}
+\end{adjustwidth}
+
+\begin{adjustwidth}{\spacing}{0in}
+ \textbf{North Carolina State University} \hfill \textsl{2021 -- 2025}
+
+ \tabto{\bullet}{B.S. Physics, B.S. Mathematics}
+
+ \tabto{\bullet} \textit{Summa cum laude}
+\end{adjustwidth}
+
+\header{Research Experience}
+
+\input{research.tex}
+
+\header{Publications}
+
+\vspace{-0.6em}
+
+\begin{itemize}[leftmargin=1.3em]
+ \item \publication{Chattopadhyay:2024bcv}
+ \item \publication{Chattopadhyay:2024jlh}
+ \item \publication{Chattopadhyay:2023jfm}
+\end{itemize}
+\vspace{-0.3em}
+
+\header{Awards}
+
+\begin{adjustwidth}{\spacing}{0in}
+ \textbf{Dean of Science Fellowship}
+ \hfill{\textsl{2025 -- 2028}}\\
+ \tabto{\spacing} Massachusetts Institute of Technology
+ \vspace{0.3em}
+
+ \textbf{Graduate Research Fellowship Honorable Mention}
+ \hfill{\textsl{2025}}\\
+ \tabto{\spacing} National Science Foundation
+ \vspace{0.3em}
+
+ \textbf{Outstanding Senior Award for Research}
+ \hfill{\textsl{2025}}\\
+ \tabto{\spacing} NCSU College of Sciences
+ \vspace{0.3em}
+
+ \textbf{Astronaut Scholarship}
+ \hfill{\textsl{2024}}\\
+ \tabto{\spacing} Astronaut Scholarship Foundation
+ \vspace{0.3em}
+
+ \textbf{McCormick Symposium Poster Award,}
+ \textit{first place}
+ \hfill{\textsl{2024}}\\
+ \tabto{\spacing} NCSU Department of Physics
+\end{adjustwidth}
+\vspace{0.6em}
+
+\header{Funding}
+
+\begin{adjustwidth}{\spacing}{0in}
+ \textbf{Provost's Professional Experience Program} (\$2,000),
+ North Carolina State University
+ \hfill \textsl{2024}
+
+ \textbf{NSF CERN REU} (\$5,000),
+ University of Michigan
+ \hfill \textsl{2024}
+
+ \textbf{Research Assistantship} (\$1,600),
+ NCSU Office of Undergraduate Research
+ \hfill \textsl{2023}
+\end{adjustwidth}
+\vspace{0.6em}
+
+\header{Presentations}
+
+\vspace{0.2em}
+\input{presentations.tex}
+\vspace{0.6em}
+
+\header{Relevant Courses}
+
+\vspace{-0.12in}
+
+\begin{description}[leftmargin=!,labelwidth=10pt]
+ \itemsep0em
+ \item [Physics:] Classical Mechanics I \& II $|$ Electromagnetism I \& II
+ $|$ Quantum Mechanics I \& II $|$ Thermal Physics
+ \item [Math:] Complex Variables* $|$ Introduction to Topology* $|$
+ Introduction to Manifold Theory* $|$ Lie Groups \& Lie Algebras* $|$
+ Probability \& Stochastic Processes*
+ \item [Computer Science:] C and Software Tools $|$ Data Structures and
+ Algorithms $|$ Theory of Computation $|$ Quantum Computing*
+\end{description}
+
+\vspace{-0.6em}
+*: Graduate course
+\vspace{0.6em}
+
+\header{Service}
+
+\begin{extracurricular}{}{Undergraduate DEI Committee}
+ Collaborated with other students to form a committee now proposing and
+ implementing departmental changes related to diversity, equity, and
+ inclusion to improve the physics community.
+\end{extracurricular}
+
+\begin{extracurricular}{08/2022 -- 05/2023}{President -- Society of Physics Students}
+ I worked with my fellow officers to organize club meetings and create a
+ welcoming environment for other physics students.
+ \vspace{-0.03in}
+ \begin{itemize}[leftmargin=15pt]
+ \item Awarded 2022--23 Notable Chapter by SPS National
+ \end{itemize}
+\end{extracurricular}
+
+\end{document}
diff --git a/presentations.tex b/presentations.tex
new file mode 100644
index 0000000..253ad3b
--- /dev/null
+++ b/presentations.tex
@@ -0,0 +1,55 @@
+{\large \bfseries \underline{Talks}}
+\vspace{0.3em}
+
+\presentation
+{How to simulate a boiling plasma of quarks and gluons}
+{NCSU Physics Department McCormick Symposium}
+{Raleigh, NC} {04/2025}
+
+\presentation
+{Simulating stochastic diffusion in critical fluids}
+{Mathematics Honors Presentations}
+{Raleigh, NC} {04/2025}
+
+\presentation
+{Simulating stochastic fluid dynamics near a critical point in the phase diagram}
+{APS Division of Nuclear Physics Fall Meeting}
+{Boston, MA} {10/2024}
+
+\presentation
+{Simulating the Critical Dynamics of Quark-Gluon Plasma}
+{Astronaut Scholar Technical Conference}
+{Houston, TX} {08/2024}
+
+\presentation
+{Graph-based Task Scheduling on Heterogeneous Resources}
+{University of Michigan CERN REU Final Presentations}
+{Geneva, CH} {08/2024}
+
+\presentation
+{Graph-based Task Scheduling on Heterogeneous Resources}
+{CERN Software Frameworks \& Tools Group Meeting}
+{Geneva, CH} {08/2024}
+
+\presentation
+{Simulating stochastic fluid dynamics with GPUs on Hazel}
+{HPC Research Symposium}
+{Raleigh, NC} {04/2024}
+
+{\large \bfseries \underline{Posters}}
+\vspace{0.3em}
+
+\presentation
+{Nonequilibrium dynamics in model H}
+{NCSU Spring Undergraduate Research Symposium}
+{Raleigh, NC} {04/2024}
+
+\presentation
+{Nonequilibrium dynamics in model H}
+{NCSU Physics Department McCormick Symposium}
+{Raleigh, NC} {04/2024}
+
+\presentation
+{Determination of proton mass from lattice QCD}
+{BNL Summer Symposium}
+{Upton, NY} {08/2023}
diff --git a/research.tex b/research.tex
new file mode 100644
index 0000000..b395596
--- /dev/null
+++ b/research.tex
@@ -0,0 +1,35 @@
+\begin{adjustwidth}{\spacing}{0in}
+ \textbf{North Carolina State University,} Undergraduate Researcher
+ \hfill \textsl{01/2022 --}
+
+ \textit{Advisors:} Prof.~Vladimir Skokov, Prof.~Thomas Sch\"afer
+ \begin{adjustwidth}{\bullet}{\rightedge}
+ Determined the dynamical critical exponent of the Model H universality
+ class non-perturbatively.
+
+ Applied fluid simulation methods to solve stochastic partial differential
+ equations on GPU.
+ \end{adjustwidth}
+\end{adjustwidth}
+
+\begin{adjustwidth}{\spacing}{0in}
+ \textbf{CERN,} Summent Student
+ \hfill \textsl{06/2024 -- 08/2024}
+
+ \textit{Advisors:} Dr.~Mateusz Fila, Dr.~Benedikt Hegner
+ \begin{adjustwidth}{\bullet}{\rightedge}
+ Contributed to the development of a task-scheduling framework in Julia
+ aimed at high-energy physics applications.
+ \end{adjustwidth}
+\end{adjustwidth}
+
+\begin{adjustwidth}{\spacing}{0in}
+ \textbf{Brookhaven National Laboratory,} DOE SULI Intern
+ \hfill \textsl{06/2023 -- 08/2023}
+
+ \textit{Advisor:} Dr.~Swagato Mukherjee
+ \begin{adjustwidth}{\bullet}{\rightedge}
+ Analyzed lattice QCD data to extract proton energies from hadron
+ correlators at various momenta.
+ \end{adjustwidth}
+\end{adjustwidth}