Changeset 2357


Ignore:
Timestamp:
Feb 8, 2006, 3:41:01 PM (18 years ago)
Author:
sexton
Message:

Howard's first stab at Sydney example

File:
1 edited

Legend:

Unmodified
Added
Removed
  • documentation/AnuGA_user_manual.tex

    r2356 r2357  
    459459
    460460\begin{itemize}
    461 \item{from a Windows command line} as in \texttt{python bedslope.py}
     461\item{from a Windows command line} as in \code{python bedslope.py}
    462462
    463463\item{within the Python IDLE environment}
     
    465465\item{within emacs}
    466466
    467 \item{from a Linux command line} as in \texttt{python bedslope.py}
     467\item{from a Linux command line} as in \code{python bedslope.py}
    468468\end{itemize}
    469469
    470470
    471 
     471\section{Example with real data}
     472
     473The following discussion builds on the \code{bedslope.py} example and shows
     474how, using the same basic outline, we can incorporate many more complex features.
     475
     476The chief difference is in the method used to create the mesh. Instead of imposing a mesh
     477structure on a rectangular grid, the technique used for this example involves building
     478mesh structures inside polygons.
     479
     480In its simplest form, the mesh is created within a
     481single polygon whose vertices are at geographical locations specified by the user.
     482A triangular mesh is created using points inside the polygon selected
     483through a random process, the
     484user specifying the \emph{resolution}---that is, the maximal area of a triangle used for triangulation.
     485
     486Figure XXX shows a simple example, in which the triangulation is carried out within a
     487pentagon. Instead of using the four tags \texttt{`left'}, \texttt{`right'}, \texttt{`bottom'} and
     488\texttt{`top'} to distinguish
     489boundary elements, the user can define tags appropriate to the configuration being modelled.
     490
     491While this offers more flexibility than the rectangular grid, it doesn't provide a way to
     492adapt to geographic
     493or other features in the landscape, for which we may require to vary the resolution. We achieve
     494more flexibility by extending this method, allowing the user to specify a number of
     495interior polygons which are triangulated separately, possibly using different resolutions.
     496See Figure XXX.
    472497
    473498\appendix
Note: See TracChangeset for help on using the changeset viewer.