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{\module{esys} User's Guide:\\ Solving Partial Differential Equations\\ with Escript and Finley} |
22 |
|
23 |
\ifpdf |
24 |
\pdfinfo { |
25 |
/Author (Lutz Gross et al (Editor)) |
26 |
/Title (escript User's Guide) |
27 |
/Keywords (escript, PDEs) |
28 |
} |
29 |
\fi |
30 |
|
31 |
\author{Lutz Gross\etal~(Editor)} |
32 |
\authoraddress{ |
33 |
Earth Systems Science Computational Centre (ESSCC) \\ |
34 |
School of Earth Sciences \\ |
35 |
The University of Queensland \\ |
36 |
Brisbane, Australia \\ |
37 |
Email: \email{esys@esscc.uq.edu.au} |
38 |
} |
39 |
\date{\today} |
40 |
\release{Revision: \RepVersion} |
41 |
\setreleaseinfo{Beta} |
42 |
\setshortversion{} |
43 |
|
44 |
\makeindex |
45 |
|
46 |
% the actual start of the document |
47 |
\begin{document} |
48 |
|
49 |
\maketitle |
50 |
|
51 |
\input{copyrights} |
52 |
|
53 |
\begin{abstract} |
54 |
\escript is a python-based environment for implementing mathematical models, in particular those based on coupled, non-linear, time-dependent partial differential equations. |
55 |
|
56 |
It consists of four major components |
57 |
\begin{itemize} |
58 |
\item \escript core library |
59 |
\item finite element solver \finley (which uses fast vendor-supplied solvers or our paso linear solver library) |
60 |
\item the meshing interface \pycad |
61 |
\item VTK visualization interface \pyvisi |
62 |
\item model library modellib |
63 |
\end{itemize} |
64 |
The current version supports parallelization through both MPI for distributed memory and OpenMP for distributed shared memory. |
65 |
\end{abstract} |
66 |
|
67 |
\tableofcontents |
68 |
|
69 |
\include{TutorialPDE} |
70 |
\include{execute} |
71 |
|
72 |
\include{escript} |
73 |
\include{linearPDE} |
74 |
|
75 |
\include{pycad} |
76 |
|
77 |
\include{pyvisi} |
78 |
|
79 |
\include{Models} |
80 |
|
81 |
\include{finley} |
82 |
|
83 |
|
84 |
%\input{modelframe} |
85 |
|
86 |
\include{appendix} |
87 |
|
88 |
\makemodindex |
89 |
|
90 |
\printindex |
91 |
%\input{guide.ind} |
92 |
|
93 |
\bibliographystyle{plain} |
94 |
\bibliography{esys} |
95 |
|
96 |
\end{document} |