Changeset 3076
- Timestamp:
- Jun 5, 2006, 12:40:52 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
documentation/user_manual/anuga_user_manual.tex
r3070 r3076 83 83 84 84 \begin{abstract} 85 \label{ abstract}85 \label{def:anuga} 86 86 87 87 \noindent \anuga\index{\anuga} is a hydrodynamic modelling tool that … … 147 147 requirements, as described in this manual, and to understand the 148 148 basic terminology of object-oriented programming. 149 150 \section{Structure of This Manual}151 152 FIXME (Ole): Isn't this superseded by the contents section?153 154 This manual is structured as follows:155 156 \begin{itemize}157 \item Background (What \anuga does)158 \item A \emph{Getting Started} section159 \item A detailed description of the public interface160 \item \anuga 's overall architecture, components and file formats161 \item Assumptions162 \end{itemize}163 164 149 165 150 \pagebreak … … 1068 1053 \section{Mesh Generation} 1069 1054 \refmodindex[pmesh.meshinterface]{pmesh.mesh\_interface}\label{sec:meshgeneration} 1055 1056 \begin{classdesc} {Mesh}{userSegments=None, 1057 userVertices=None, 1058 holes=None, 1059 regions=None, 1060 geo_reference=None} 1061 Module: \module{pmesh.mesh} 1062 1063 A class used to store a representation of a two-dimensional 1064 triangular mesh. The user may initialise the class by specifying 1065 lists of segments and/or vertices, using the parameters 1066 \code{userSegments} and \code{userVertices}, and may also specify 1067 lists of regions and/or holes, using the parameters \code{regions} 1068 and \code{holes}. 1069 \end{classdesc} 1070 1070 1071 \begin{funcdesc} {create\_mesh\_from\_regions}{bounding_polygon, 1071 1072 boundary_tags, … … 1089 1090 1090 1091 1091 \begin{funcdesc} {Mesh}{userSegments=None, 1092 userVertices=None, 1093 holes=None, 1094 regions=None, 1095 geo_reference=None} 1096 Module: \module{pmesh.mesh} 1097 1098 % Translate following into layman's language 1099 An instance of the class \class{Mesh} is used to store . This can 1100 then be used to build the outline of the mesh and then generate the 1101 mesh. 1092 \begin{funcdesc} {add_region}{} 1093 1094 \end{funcdesc} 1095 1096 \begin{funcdesc} {add_hole}{} 1097 1102 1098 \end{funcdesc} 1103 1099 … … 1105 1101 \begin{funcdesc} {add_region_from_polygon}{self, polygon, tags=None, 1106 1102 max_triangle_area=None, geo_reference=None} 1107 Module: \module{pmesh.mesh .Mesh}1103 Module: \module{pmesh.mesh} Class: \class{Mesh} 1108 1104 1109 1105 % Translate following into layman's language … … 1176 1172 Module: \refmodule{pyvolution.domain} 1177 1173 1178 1174 This class is used to create an instance of a data structure used to 1175 store and manipulate data associated with a mesh. The mesh is 1176 specified either by assigning the name of a meshfile to 1177 \code{source} or by 1179 1178 \end{classdesc} 1180 1179 … … 2198 2197 file_name = None} 2199 2198 2199 2200 2200 2201 Create instance from data points and associated attributes 2201 2202 … … 2344 2345 \chapter{Glossary} 2345 2346 2346 \begin{tabular}{|l|p{10cm}|c|} \hline 2347 \begin{tabular}{|l p{10cm}| c|} \hline 2348 \emph{Term} & \emph{Definition} & \emph{Page}\\ \hline 2349 2347 2350 \indexedbold{\anuga} & Name of software (joint development between ANU and 2348 GA) & \\2351 GA) & \pageref{def:anuga}\\ 2349 2352 2350 2353 \indexedbold{domain} & The domain of a function is the set of all input values to the … … 2403 2406 z) &\\ 2404 2407 2405 \indexedbold{ymomentum} & conserved quantity & \\ \hline 2406 2407 \end{tabular} 2408 2409 \begin{tabular}{|l|p{10cm}|c|} \hline 2408 \indexedbold{ymomentum} & conserved quantity & \\ 2409 2410 2410 2411 2411 2412 \indexedbold{resolution} & The maximal area of a triangular cell in a … … 2422 2423 2423 2424 NOTE: More can be read in the module utilities/polygon.py .... & 2424 \\ 2425 2425 \\ \hline 2426 2427 \end{tabular} 2428 2429 \begin{tabular}{|l p{10cm}|c|} \hline 2430 2431 \emph{Term} & \emph{Definition} & \emph{Page}\\ \hline 2426 2432 \indexedbold{easting} & A rectangular (x,y) coordinate measurement of distance east from a north-south reference line, 2427 2433 usually a meridian used as the axis of origin within a map zone or
Note: See TracChangeset
for help on using the changeset viewer.