1 |
|
2 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
3 |
% |
4 |
% Copyright (c) 2003-2008 by University of Queensland |
5 |
% Earth Systems Science Computational Center (ESSCC) |
6 |
% http://www.uq.edu.au/esscc |
7 |
% |
8 |
% Primary Business: Queensland, Australia |
9 |
% Licensed under the Open Software License version 3.0 |
10 |
% http://www.opensource.org/licenses/osl-3.0.php |
11 |
% |
12 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
13 |
|
14 |
|
15 |
\documentclass{manual} |
16 |
|
17 |
% grab the handy definitions and \usepackage statements etc |
18 |
\input{guide_defs} |
19 |
|
20 |
% title, author, etc stuff |
21 |
\title{\esys User's Guide: Solving Partial Differential Equations with Escript and Finley} |
22 |
|
23 |
\author{Lutz Gross\etal~(Editor)} |
24 |
\authoraddress{ |
25 |
Earth Systems Science Computational Centre (ESSCC) \\ |
26 |
The University of Queensland \\ |
27 |
Brisbane, Australia \\ |
28 |
Email: \email{esys@esscc.uq.edu.au} |
29 |
} |
30 |
\date{\today} |
31 |
\release{$Revision$} |
32 |
\setreleaseinfo{Beta} |
33 |
\setshortversion{} |
34 |
|
35 |
\makeindex |
36 |
|
37 |
% the actual start of the document |
38 |
\begin{document} |
39 |
|
40 |
\maketitle |
41 |
|
42 |
\input{copyrights} |
43 |
|
44 |
\begin{abstract} |
45 |
\escript is a python-based environment for implementing mathematical models, in particular those based on coupled, non-linear, time-dependent partial differential equations. |
46 |
|
47 |
It consists of four major components |
48 |
\begin{itemize} |
49 |
\item \escript core library |
50 |
\item finite element solver \finley (which uses fast vendor-supplied solvers or our paso linear solver library) |
51 |
\item the meshing interface \pycad |
52 |
\item VTK visualization interface \pyvisi |
53 |
\item model library modellib |
54 |
\end{itemize} |
55 |
The current version supports parallelization through both MPI for distributed memory and OpenMP for distributed shared memory. |
56 |
\end{abstract} |
57 |
|
58 |
\tableofcontents |
59 |
|
60 |
\include{TutorialPDE} |
61 |
\include{execute} |
62 |
|
63 |
\include{escript} |
64 |
\include{linearPDE} |
65 |
|
66 |
\include{pycad} |
67 |
|
68 |
\include{pyvisi} |
69 |
|
70 |
\include{Models} |
71 |
|
72 |
\include{finley} |
73 |
% \input{MPI} |
74 |
|
75 |
%\input{modelframe} |
76 |
|
77 |
\include{appendix} |
78 |
|
79 |
\makemodindex |
80 |
|
81 |
\printindex |
82 |
%\input{guide.ind} |
83 |
|
84 |
\bibliographystyle{plain} |
85 |
\bibliography{esys} |
86 |
|
87 |
\end{document} |