source: inundation/parallel/documentation/report.tex @ 2697

Last change on this file since 2697 was 2697, checked in by linda, 18 years ago

Started working on the report for the parallel computations

File size: 2.0 KB
Line 
1%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2% Format taken from anuga_user_manual.tex
3%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4
5
6% Complete documentation on the extended LaTeX markup used for Python
7% documentation is available in ``Documenting Python'', which is part
8% of the standard documentation for Python.  It may be found online
9% at:
10%
11%     http://www.python.org/doc/current/doc/doc.html
12
13
14%labels
15%Sections and subsections \label{sec: }
16%Chapters \label{ch: }
17%Equations \label{eq: }
18%Figures \label{fig: }
19
20\documentclass{manual}
21
22\usepackage{url}
23\usepackage{graphicx}
24
25%\input{definitions}
26
27\title{Report on the Parallelisation of ANUGA}
28\author{Linda Stals and Jack Kelly}
29
30% Please at least include a long-lived email address;
31% the rest is at your discretion.
32\authoraddress{Linda Stals \\
33  Email: \email{stals@maths.anu.edu.au}}
34
35%Draft date
36\date{\today}   % update before release!
37                % Use an explicit date so that reformatting
38                % doesn't cause a new date to be used.  Setting
39                % the date to \today can be used during draft
40                % stages to make it easier to handle versions.
41
42\release{1.0}   % release version; this is used to define the
43                % \version macro
44
45\makeindex          % tell \index to actually write the .idx file
46\makemodindex       % If this contains a lot of module sections.
47
48\setcounter{tocdepth}{3}
49\setcounter{secnumdepth}{3}
50
51\includeonly{parallel}
52
53\begin{document}
54\maketitle
55
56\begin{abstract}
57\end{abstract}
58
59\tableofcontents
60
61
62
63\include{parallel}
64\include{results}
65\include{visualisation}
66
67\begin{thebibliography}{10}
68
69\bibitem{gk:metis}
70George Karypis and Vipin Kumar.
71\newblock A fast and high quality multilevel scheme for partitioning irregular graphs.   
72\newblock {\em SIAM Journal on Scientific Computing}, 20(1):359--392, 1999.
73\newblock \url{http://www-users.cs.umn.edu/~karypis/publications/Papers/PDF/mlevel\_serial.pdf}
74\end{thebibliography}
75
76
77\end{document}
Note: See TracBrowser for help on using the repository browser.