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
|
\documentclass[a4paper, 11pt]{report}
\usepackage[top=3cm, bottom=3cm, left = 2cm, right = 2cm]{geometry}
\geometry{a4paper}
\usepackage[utf8]{inputenc}
\usepackage{textcomp}
\usepackage{graphicx}
\usepackage{amsmath,amssymb}
\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage{bm}
\usepackage[pdftex,bookmarks,colorlinks,breaklinks]{hyperref}
\usepackage{memhfixc}
\usepackage{pdfsync}
\usepackage{fancyhdr}
\pagestyle{fancy}
\usepackage{listings}
\usepackage{hyperref}
\usepackage{xcolor}
\usepackage{booktabs}
\usepackage{float}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{svg}
\usepackage{parskip} % spacing between paragraphs (Connor)
%hypersetup{linkcolor=black,citecolor=black,filecolor=black,urlcolor=black} % black links, for printed output
% For pdf_tex figures (connor)
\graphicspath{{./Figures/}}
% Fancy captions (also Connor)
\usepackage{caption}
\captionsetup{margin=0.5cm} % Sets a 1cm margin on both sides
\captionsetup{labelfont=bf}
% -- Custom 'note' command for adding editing comments in text
\newcommand{\note}[1]{\textcolor{red}{\textbf{[NOTE: #1]}}}
% -- Custom 'code' text for referring to program elements
\def\code#1{\texttt{#1}}
% -- Custom 'O' command for big-O notation
\def\O#1{\mathcal{O}(#1)}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\title{HPC Project 2: Langevin Dynamics Simulation}
\author{Reyhaneh Bahranifard, Connor Moore, Addison Olstad, Joe Ruse}
% \date{}
\begin{document}
\maketitle
\tableofcontents
\include{Chapters/introduction}
\include{Chapters/simulation}
% can you simulate enough particles for a long enough time to see all qualitative behaviour of the RMS displacement?
\include{Chapters/optimization}
% what is the order of complexity?
% How efficient is the multi-threading? How does the efficiency depend on the numbers of particles and sectors?
% We keep all threads alive for the whole loop over time steps. How efficient is the parallel processing of writing to disk, fetching PRNs and updating the velocities and positions? You can use VTune to find out.
\include{Chapters/results}
% How does the science look? (LD related results like MSD, energy, etc)
%What do you expect from the RMS displacement given Langevin’s results and our domain and BC?
% if time allows: implement a form of “thermostatting” to smooth over the initial configuration and prevent the rapid loss of particles.
\bibliographystyle{plain}
\bibliography{references}
\appendix
\include{Chapters/algorithms}
\end{document}
|